Xinqi Bao's Git
27c48cff365563dd308ffe02892e801b03588376
1 /* See LICENSE for license details. */
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 || \
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)))
20 #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
21 #define IS_TRUECOL(x) (1 << 24 & (x))
23 enum glyph_attribute
{
28 ATTR_UNDERLINE
= 1 << 3,
30 ATTR_REVERSE
= 1 << 5,
31 ATTR_INVISIBLE
= 1 << 6,
35 ATTR_WDUMMY
= 1 << 10,
36 ATTR_BOLD_FAINT
= ATTR_BOLD
| ATTR_FAINT
,
55 typedef unsigned char uchar
;
56 typedef unsigned int uint
;
57 typedef unsigned long ulong
;
58 typedef unsigned short ushort
;
60 typedef uint_least32_t Rune
;
64 Rune u
; /* character code */
65 ushort mode
; /* attribute flags */
66 uint32_t fg
; /* foreground */
67 uint32_t bg
; /* background */
73 Glyph attr
; /* current char attributes */
79 /* Internal representation of the screen */
83 Line
*line
; /* screen */
84 Line
*alt
; /* alternate screen */
85 int *dirty
; /* dirtyness of lines */
86 TCursor c
; /* cursor */
87 int ocx
; /* old cursor col */
88 int ocy
; /* old cursor row */
89 int top
; /* top scroll limit */
90 int bot
; /* bottom scroll limit */
91 int mode
; /* terminal mode flags */
92 int esc
; /* escape state flags */
93 char trantbl
[4]; /* charset table translation */
94 int charset
; /* current charset */
95 int icharset
; /* selected charset for sequence */
99 /* Purely graphic info */
101 int tw
, th
; /* tty width and height */
102 int w
, h
; /* window width and height */
103 int ch
; /* char height */
104 int cw
; /* char width */
105 int mode
; /* window state/mode flags */
106 int cursor
; /* cursor style */
114 * Selection variables:
115 * nb – normalized coordinates of the beginning of the selection
116 * ne – normalized coordinates of the end of the selection
117 * ob – original coordinates of the beginning of the selection
118 * oe – original coordinates of the end of the selection
134 void die(const char *, ...);
138 void iso14755(const Arg
*);
139 void printscreen(const Arg
*);
140 void printsel(const Arg
*);
141 void sendbreak(const Arg
*);
142 void toggleprinter(const Arg
*);
146 void tresize(int, int);
147 void tsetdirtattr(int);
148 void ttynew(char *, char *, char **);
149 size_t ttyread(void);
150 void ttyresize(int, int);
151 void ttywrite(const char *, size_t, int);
153 void resettitle(void);
157 void selstart(int, int, int);
158 void selextend(int, int, int, int);
159 void selnormalize(void);
160 int selected(int, int);
163 size_t utf8decode(const char *, Rune
*, size_t);
164 size_t utf8encode(Rune
, char *);
166 void *xmalloc(size_t);
167 void *xrealloc(void *, size_t);
168 char *xstrdup(char *);
174 extern int oldbutton
;
176 /* config.h globals */
179 extern char *stty_args
;
181 extern char *worddelimiters
;
182 extern int allowaltscreen
;
183 extern char *termname
;
184 extern unsigned int tabspaces
;
185 extern unsigned int defaultfg
;
186 extern unsigned int defaultbg
;