st.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* See LICENSE for license details. */
  2. #include <stdint.h>
  3. #include <sys/types.h>
  4. /* macros */
  5. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  6. #define MAX(a, b) ((a) < (b) ? (b) : (a))
  7. #define LEN(a) (sizeof(a) / sizeof(a)[0])
  8. #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
  9. #define DIVCEIL(n, d) (((n) + ((d) - 1)) / (d))
  10. #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
  11. #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
  12. #define ATTRCMP(a, b) (((a).mode & (~ATTR_WRAP) & (~ATTR_LIGA)) != ((b).mode & (~ATTR_WRAP) & (~ATTR_LIGA)) || \
  13. (a).fg != (b).fg || \
  14. (a).bg != (b).bg)
  15. #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + \
  16. (t1.tv_nsec-t2.tv_nsec)/1E6)
  17. #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
  18. #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
  19. #define IS_TRUECOL(x) (1 << 24 & (x))
  20. enum glyph_attribute {
  21. ATTR_NULL = 0,
  22. ATTR_BOLD = 1 << 0,
  23. ATTR_FAINT = 1 << 1,
  24. ATTR_ITALIC = 1 << 2,
  25. ATTR_UNDERLINE = 1 << 3,
  26. ATTR_BLINK = 1 << 4,
  27. ATTR_REVERSE = 1 << 5,
  28. ATTR_INVISIBLE = 1 << 6,
  29. ATTR_STRUCK = 1 << 7,
  30. ATTR_WRAP = 1 << 8,
  31. ATTR_WIDE = 1 << 9,
  32. ATTR_WDUMMY = 1 << 10,
  33. ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
  34. ATTR_LIGA = 1 << 11,
  35. };
  36. enum selection_mode {
  37. SEL_IDLE = 0,
  38. SEL_EMPTY = 1,
  39. SEL_READY = 2
  40. };
  41. enum selection_type {
  42. SEL_REGULAR = 1,
  43. SEL_RECTANGULAR = 2
  44. };
  45. enum selection_snap {
  46. SNAP_WORD = 1,
  47. SNAP_LINE = 2
  48. };
  49. typedef unsigned char uchar;
  50. typedef unsigned int uint;
  51. typedef unsigned long ulong;
  52. typedef unsigned short ushort;
  53. typedef uint_least32_t Rune;
  54. #define Glyph Glyph_
  55. typedef struct {
  56. Rune u; /* character code */
  57. ushort mode; /* attribute flags */
  58. uint32_t fg; /* foreground */
  59. uint32_t bg; /* background */
  60. } Glyph;
  61. typedef Glyph *Line;
  62. typedef union {
  63. int i;
  64. uint ui;
  65. float f;
  66. const void *v;
  67. const char *s;
  68. } Arg;
  69. void die(const char *, ...);
  70. void redraw(void);
  71. void draw(void);
  72. void kscrolldown(const Arg *);
  73. void kscrollup(const Arg *);
  74. void printscreen(const Arg *);
  75. void printsel(const Arg *);
  76. void sendbreak(const Arg *);
  77. void toggleprinter(const Arg *);
  78. int tattrset(int);
  79. void tnew(int, int);
  80. void tresize(int, int);
  81. void tsetdirtattr(int);
  82. void ttyhangup(void);
  83. int ttynew(char *, char *, char *, char **);
  84. size_t ttyread(void);
  85. void ttyresize(int, int);
  86. void ttywrite(const char *, size_t, int);
  87. void resettitle(void);
  88. void selclear(void);
  89. void selinit(void);
  90. void selstart(int, int, int);
  91. void selextend(int, int, int, int);
  92. int selected(int, int);
  93. char *getsel(void);
  94. size_t utf8encode(Rune, char *);
  95. void *xmalloc(size_t);
  96. void *xrealloc(void *, size_t);
  97. char *xstrdup(char *);
  98. /* config.h globals */
  99. extern char *utmp;
  100. extern char *scroll;
  101. extern char *stty_args;
  102. extern char *vtiden;
  103. extern wchar_t *worddelimiters;
  104. extern int allowaltscreen;
  105. extern int allowwindowops;
  106. extern char *termname;
  107. extern unsigned int tabspaces;
  108. extern unsigned int defaultfg;
  109. extern unsigned int defaultbg;
  110. extern float alpha;