Xinqi Bao's Git

Split mode bits between Term and TermWindow
[st.git] / st.h
1 /* See LICENSE for license details. */
2
3 /* Arbitrary sizes */
4 #define UTF_SIZ 4
5
6 /* macros */
7 #define MIN(a, b) ((a) < (b) ? (a) : (b))
8 #define MAX(a, b) ((a) < (b) ? (b) : (a))
9 #define LEN(a) (sizeof(a) / sizeof(a)[0])
10 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
11 #define DIVCEIL(n, d) (((n) + ((d) - 1)) / (d))
12 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
13 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
14 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || \
15 (a).bg != (b).bg)
16 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + \
17 (t1.tv_nsec-t2.tv_nsec)/1E6)
18 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
19
20 #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
21 #define IS_TRUECOL(x) (1 << 24 & (x))
22
23 enum glyph_attribute {
24 ATTR_NULL = 0,
25 ATTR_BOLD = 1 << 0,
26 ATTR_FAINT = 1 << 1,
27 ATTR_ITALIC = 1 << 2,
28 ATTR_UNDERLINE = 1 << 3,
29 ATTR_BLINK = 1 << 4,
30 ATTR_REVERSE = 1 << 5,
31 ATTR_INVISIBLE = 1 << 6,
32 ATTR_STRUCK = 1 << 7,
33 ATTR_WRAP = 1 << 8,
34 ATTR_WIDE = 1 << 9,
35 ATTR_WDUMMY = 1 << 10,
36 ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
37 };
38
39 enum selection_mode {
40 SEL_IDLE = 0,
41 SEL_EMPTY = 1,
42 SEL_READY = 2
43 };
44
45 enum selection_type {
46 SEL_REGULAR = 1,
47 SEL_RECTANGULAR = 2
48 };
49
50 enum selection_snap {
51 SNAP_WORD = 1,
52 SNAP_LINE = 2
53 };
54
55 typedef unsigned char uchar;
56 typedef unsigned int uint;
57 typedef unsigned long ulong;
58 typedef unsigned short ushort;
59
60 typedef uint_least32_t Rune;
61
62 #define Glyph Glyph_
63 typedef struct {
64 Rune u; /* character code */
65 ushort mode; /* attribute flags */
66 uint32_t fg; /* foreground */
67 uint32_t bg; /* background */
68 } Glyph;
69
70 typedef Glyph *Line;
71
72 typedef struct {
73 Glyph attr; /* current char attributes */
74 int x;
75 int y;
76 char state;
77 } TCursor;
78
79 /* Internal representation of the screen */
80 typedef struct {
81 int row; /* nb row */
82 int col; /* nb col */
83 Line *line; /* screen */
84 Line *alt; /* alternate screen */
85 int *dirty; /* dirtyness of lines */
86 TCursor c; /* cursor */
87 int top; /* top scroll limit */
88 int bot; /* bottom scroll limit */
89 int mode; /* terminal mode flags */
90 int esc; /* escape state flags */
91 char trantbl[4]; /* charset table translation */
92 int charset; /* current charset */
93 int icharset; /* selected charset for sequence */
94 int *tabs;
95 } Term;
96
97 /* Purely graphic info */
98 typedef struct {
99 int tw, th; /* tty width and height */
100 int w, h; /* window width and height */
101 int ch; /* char height */
102 int cw; /* char width */
103 int mode; /* window state/mode flags */
104 int cursor; /* cursor style */
105 } TermWindow;
106
107 typedef struct {
108 int mode;
109 int type;
110 int snap;
111 /*
112 * Selection variables:
113 * nb – normalized coordinates of the beginning of the selection
114 * ne – normalized coordinates of the end of the selection
115 * ob – original coordinates of the beginning of the selection
116 * oe – original coordinates of the end of the selection
117 */
118 struct {
119 int x, y;
120 } nb, ne, ob, oe;
121
122 int alt;
123 } Selection;
124
125 typedef union {
126 int i;
127 uint ui;
128 float f;
129 const void *v;
130 } Arg;
131
132 void die(const char *, ...);
133 void redraw(void);
134
135 void iso14755(const Arg *);
136 void printscreen(const Arg *);
137 void printsel(const Arg *);
138 void sendbreak(const Arg *);
139 void toggleprinter(const Arg *);
140
141 int tattrset(int);
142 void tnew(int, int);
143 void tresize(int, int);
144 void tsetdirtattr(int);
145 void ttynew(char *, char *, char **);
146 size_t ttyread(void);
147 void ttyresize(int, int);
148 void ttywrite(const char *, size_t, int);
149
150 void resettitle(void);
151
152 void selclear(void);
153 void selinit(void);
154 void selstart(int, int, int);
155 void selextend(int, int, int, int);
156 void selnormalize(void);
157 int selected(int, int);
158 char *getsel(void);
159
160 size_t utf8decode(const char *, Rune *, size_t);
161 size_t utf8encode(Rune, char *);
162
163 void *xmalloc(size_t);
164 void *xrealloc(void *, size_t);
165 char *xstrdup(char *);
166
167 /* Globals */
168 extern Term term;
169 extern int cmdfd;
170 extern pid_t pid;
171 extern int oldbutton;
172
173 /* config.h globals */
174 extern char *shell;
175 extern char *utmp;
176 extern char *stty_args;
177 extern char *vtiden;
178 extern char *worddelimiters;
179 extern int allowaltscreen;
180 extern char *termname;
181 extern unsigned int tabspaces;
182 extern unsigned int defaultfg;
183 extern unsigned int defaultbg;