st.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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_BOXDRAW = 1 << 11,
  34. ATTR_LIGA = 1 << 12,
  35. ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
  36. };
  37. enum drawing_mode {
  38. DRAW_NONE = 0,
  39. DRAW_BG = 1 << 0,
  40. DRAW_FG = 1 << 1,
  41. };
  42. enum selection_mode {
  43. SEL_IDLE = 0,
  44. SEL_EMPTY = 1,
  45. SEL_READY = 2
  46. };
  47. enum selection_type {
  48. SEL_REGULAR = 1,
  49. SEL_RECTANGULAR = 2
  50. };
  51. enum selection_snap {
  52. SNAP_WORD = 1,
  53. SNAP_LINE = 2
  54. };
  55. typedef unsigned char uchar;
  56. typedef unsigned int uint;
  57. typedef unsigned long ulong;
  58. typedef unsigned short ushort;
  59. typedef uint_least32_t Rune;
  60. #define Glyph Glyph_
  61. typedef struct {
  62. Rune u; /* character code */
  63. ushort mode; /* attribute flags */
  64. uint32_t fg; /* foreground */
  65. uint32_t bg; /* background */
  66. } Glyph;
  67. typedef Glyph *Line;
  68. typedef union {
  69. int i;
  70. uint ui;
  71. float f;
  72. const void *v;
  73. } Arg;
  74. typedef struct {
  75. uint b;
  76. uint mask;
  77. void (*func)(const Arg *);
  78. const Arg arg;
  79. } MouseKey;
  80. void die(const char *, ...);
  81. void redraw(void);
  82. void draw(void);
  83. void externalpipe(const Arg *);
  84. void iso14755(const Arg *);
  85. void kscrolldown(const Arg *);
  86. void kscrollup(const Arg *);
  87. void printscreen(const Arg *);
  88. void printsel(const Arg *);
  89. void sendbreak(const Arg *);
  90. void toggleprinter(const Arg *);
  91. int tattrset(int);
  92. int tisaltscr(void);
  93. void tnew(int, int);
  94. void tresize(int, int);
  95. void tsetdirtattr(int);
  96. void ttyhangup(void);
  97. int ttynew(char *, char *, char *, char **);
  98. size_t ttyread(void);
  99. void ttyresize(int, int);
  100. void ttywrite(const char *, size_t, int);
  101. void resettitle(void);
  102. void selclear(void);
  103. void selinit(void);
  104. void selstart(int, int, int);
  105. void selextend(int, int, int, int);
  106. int selected(int, int);
  107. char *getsel(void);
  108. size_t utf8encode(Rune, char *);
  109. void *xmalloc(size_t);
  110. void *xrealloc(void *, size_t);
  111. char *xstrdup(char *);
  112. int isboxdraw(Rune);
  113. ushort boxdrawindex(const Glyph *);
  114. #ifdef XFT_VERSION
  115. /* only exposed to x.c, otherwise we'll need Xft.h for the types */
  116. void boxdraw_xinit(Display *, Colormap, XftDraw *, Visual *);
  117. void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int);
  118. #endif
  119. /* config.h globals */
  120. extern char *utmp;
  121. extern char *stty_args;
  122. extern char *vtiden;
  123. extern wchar_t *worddelimiters;
  124. extern int allowaltscreen;
  125. extern char *termname;
  126. extern unsigned int tabspaces;
  127. extern unsigned int defaultfg;
  128. extern unsigned int defaultbg;
  129. extern unsigned int defaultcs;
  130. extern const int boxdraw, boxdraw_bold, boxdraw_braille;
  131. extern float alpha;
  132. extern MouseKey mkeys[];
  133. extern int ximspot_update_interval;