1 /* See LICENSE for licence details. */
2 #define _XOPEN_SOURCE 600
13 #include <sys/ioctl.h>
14 #include <sys/select.h>
16 #include <sys/types.h>
19 #include <X11/Xatom.h>
21 #include <X11/Xutil.h>
22 #include <X11/cursorfont.h>
23 #include <X11/keysym.h>
30 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
32 #elif defined(__FreeBSD__) || defined(__DragonFly__)
37 "st-" VERSION ", (c) 2010-2011 st engineers\n" \
38 "usage: st [-t title] [-c class] [-v] [-e command...]\n"
41 #define ESC_TITLE_SIZ 256
42 #define ESC_BUF_SIZ 256
43 #define ESC_ARG_SIZ 16
44 #define DRAW_BUF_SIZ 1024
47 #define SERRNO strerror(errno)
48 #define MIN(a, b) ((a) < (b) ? (a) : (b))
49 #define MAX(a, b) ((a) < (b) ? (b) : (a))
50 #define LEN(a) (sizeof(a) / sizeof(a[0]))
51 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
52 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
53 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
54 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
55 #define IS_SET(flag) (term.mode & (flag))
56 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
57 #define X2COL(x) (((x) - BORDER)/xw.cw)
58 #define Y2ROW(y) (((y) - BORDER)/xw.ch)
60 /* Attribute, Cursor, Character state, Terminal mode, Screen draw mode */
61 enum { ATTR_NULL
=0 , ATTR_REVERSE
=1 , ATTR_UNDERLINE
=2, ATTR_BOLD
=4, ATTR_GFX
=8 };
62 enum { CURSOR_UP
, CURSOR_DOWN
, CURSOR_LEFT
, CURSOR_RIGHT
,
63 CURSOR_SAVE
, CURSOR_LOAD
};
64 enum { CURSOR_DEFAULT
= 0, CURSOR_HIDE
= 1, CURSOR_WRAPNEXT
= 2 };
65 enum { GLYPH_SET
=1, GLYPH_DIRTY
=2 };
66 enum { MODE_WRAP
=1, MODE_INSERT
=2, MODE_APPKEYPAD
=4, MODE_ALTSCREEN
=8,
67 MODE_CRLF
=16, MODE_MOUSE
=32 };
68 enum { ESC_START
=1, ESC_CSI
=2, ESC_OSC
=4, ESC_TITLE
=8, ESC_ALTCHARSET
=16 };
69 enum { WIN_VISIBLE
=1, WIN_REDRAW
=2, WIN_FOCUSED
=4 };
72 enum { B0
=1, B1
=2, B2
=4, B3
=8, B4
=16, B5
=32, B6
=64, B7
=128 };
75 char c
[UTF_SIZ
]; /* character code */
76 char mode
; /* attribute flags */
77 int fg
; /* foreground */
78 int bg
; /* background */
79 char state
; /* state flags */
85 Glyph attr
; /* current char attributes */
91 /* CSI Escape sequence structs */
92 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
94 char buf
[ESC_BUF_SIZ
]; /* raw string */
95 int len
; /* raw string length */
98 int narg
; /* nb of args */
102 /* Internal representation of the screen */
104 int row
; /* nb row */
105 int col
; /* nb col */
106 Line
* line
; /* screen */
107 Line
* alt
; /* alternate screen */
108 TCursor c
; /* cursor */
109 int top
; /* top scroll limit */
110 int bot
; /* bottom scroll limit */
111 int mode
; /* terminal mode flags */
112 int esc
; /* escape state flags */
113 char title
[ESC_TITLE_SIZ
];
117 /* Purely graphic info */
126 int w
; /* window width */
127 int h
; /* window height */
128 int bufw
; /* pixmap width */
129 int bufh
; /* pixmap height */
130 int ch
; /* char height */
131 int cw
; /* char width */
132 char state
; /* focus, redraw, visible */
141 /* Drawing Context */
143 unsigned long col
[256];
154 /* TODO: use better name for vars... */
159 struct {int x
, y
;} b
, e
;
162 struct timeval tclick1
;
163 struct timeval tclick2
;
168 static void die(const char*, ...);
169 static void draw(void);
170 static void drawregion(int, int, int, int);
171 static void execsh(void);
172 static void sigchld(int);
173 static void run(void);
175 static void csidump(void);
176 static void csihandle(void);
177 static void csiparse(void);
178 static void csireset(void);
180 static void tclearregion(int, int, int, int);
181 static void tcursor(int);
182 static void tdeletechar(int);
183 static void tdeleteline(int);
184 static void tinsertblank(int);
185 static void tinsertblankline(int);
186 static void tmoveto(int, int);
187 static void tnew(int, int);
188 static void tnewline(int);
189 static void tputtab(void);
190 static void tputc(char*);
191 static void treset(void);
192 static int tresize(int, int);
193 static void tscrollup(int, int);
194 static void tscrolldown(int, int);
195 static void tsetattr(int*, int);
196 static void tsetchar(char*);
197 static void tsetscroll(int, int);
198 static void tswapscreen(void);
200 static void ttynew(void);
201 static void ttyread(void);
202 static void ttyresize(int, int);
203 static void ttywrite(const char *, size_t);
205 static void xdraws(char *, Glyph
, int, int, int, int);
206 static void xhints(void);
207 static void xclear(int, int, int, int);
208 static void xdrawcursor(void);
209 static void xinit(void);
210 static void xloadcols(void);
211 static void xseturgency(int);
212 static void xsetsel(char*);
213 static void xresize(int, int);
215 static void expose(XEvent
*);
216 static void visibility(XEvent
*);
217 static void unmap(XEvent
*);
218 static char* kmap(KeySym
, unsigned int state
);
219 static void kpress(XEvent
*);
220 static void resize(XEvent
*);
221 static void focus(XEvent
*);
222 static void brelease(XEvent
*);
223 static void bpress(XEvent
*);
224 static void bmotion(XEvent
*);
225 static void selnotify(XEvent
*);
226 static void selrequest(XEvent
*);
228 static void selinit(void);
229 static inline int selected(int, int);
230 static void selcopy(void);
231 static void selpaste();
233 static int utf8decode(char *, long *);
234 static int utf8encode(long *, char *);
235 static int utf8size(char *);
236 static int isfullutf8(char *, int);
238 static void (*handler
[LASTEvent
])(XEvent
*) = {
240 [ConfigureNotify
] = resize
,
241 [VisibilityNotify
] = visibility
,
242 [UnmapNotify
] = unmap
,
246 [MotionNotify
] = bmotion
,
247 [ButtonPress
] = bpress
,
248 [ButtonRelease
] = brelease
,
249 [SelectionNotify
] = selnotify
,
250 [SelectionRequest
] = selrequest
,
257 static CSIEscape escseq
;
260 static Selection sel
;
261 static char **opt_cmd
= NULL
;
262 static char *opt_title
= NULL
;
263 static char *opt_class
= NULL
;
266 utf8decode(char *s
, long *u
) {
272 if(~c
&B7
) { /* 0xxxxxxx */
275 } else if((c
&(B7
|B6
|B5
)) == (B7
|B6
)) { /* 110xxxxx */
276 *u
= c
&(B4
|B3
|B2
|B1
|B0
);
278 } else if((c
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) { /* 1110xxxx */
279 *u
= c
&(B3
|B2
|B1
|B0
);
281 } else if((c
&(B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
)) { /* 11110xxx */
286 for(i
=n
,++s
; i
>0; --i
,++rtn
,++s
) {
288 if((c
&(B7
|B6
)) != B7
) /* 10xxxxxx */
291 *u
|= c
&(B5
|B4
|B3
|B2
|B1
|B0
);
293 if((n
== 1 && *u
< 0x80) ||
294 (n
== 2 && *u
< 0x800) ||
295 (n
== 3 && *u
< 0x10000) ||
296 (*u
>= 0xD800 && *u
<= 0xDFFF))
305 utf8encode(long *u
, char *s
) {
310 sp
= (unsigned char*) s
;
313 *sp
= uc
; /* 0xxxxxxx */
315 } else if(*u
< 0x800) {
316 *sp
= (uc
>> 6) | (B7
|B6
); /* 110xxxxx */
318 } else if(uc
< 0x10000) {
319 *sp
= (uc
>> 12) | (B7
|B6
|B5
); /* 1110xxxx */
321 } else if(uc
<= 0x10FFFF) {
322 *sp
= (uc
>> 18) | (B7
|B6
|B5
|B4
); /* 11110xxx */
327 for(i
=n
,++sp
; i
>0; --i
,++sp
)
328 *sp
= ((uc
>> 6*(i
-1)) & (B5
|B4
|B3
|B2
|B1
|B0
)) | B7
; /* 10xxxxxx */
338 /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
339 UTF-8 otherwise return 0 */
341 isfullutf8(char *s
, int b
) {
342 unsigned char *c1
, *c2
, *c3
;
344 c1
= (unsigned char *) s
;
345 c2
= (unsigned char *) ++s
;
346 c3
= (unsigned char *) ++s
;
349 else if((*c1
&(B7
|B6
|B5
)) == (B7
|B6
) && b
== 1)
351 else if((*c1
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
) &&
353 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
)))
355 else if((*c1
&(B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
) &&
357 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
) ||
358 ((b
== 3) && (*c2
&(B7
|B6
)) == B7
&& (*c3
&(B7
|B6
)) == B7
)))
366 unsigned char c
= *s
;
370 else if((c
&(B7
|B6
|B5
)) == (B7
|B6
))
372 else if((c
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
))
380 sel
.tclick1
.tv_sec
= 0;
381 sel
.tclick1
.tv_usec
= 0;
385 sel
.xtarget
= XInternAtom(xw
.dpy
, "UTF8_STRING", 0);
386 if(sel
.xtarget
== None
)
387 sel
.xtarget
= XA_STRING
;
391 selected(int x
, int y
) {
392 if(sel
.ey
== y
&& sel
.by
== y
) {
393 int bx
= MIN(sel
.bx
, sel
.ex
);
394 int ex
= MAX(sel
.bx
, sel
.ex
);
395 return BETWEEN(x
, bx
, ex
);
397 return ((sel
.b
.y
< y
&&y
< sel
.e
.y
) || (y
==sel
.e
.y
&& x
<=sel
.e
.x
))
398 || (y
==sel
.b
.y
&& x
>=sel
.b
.x
&& (x
<=sel
.e
.x
|| sel
.b
.y
!=sel
.e
.y
));
402 getbuttoninfo(XEvent
*e
, int *b
, int *x
, int *y
) {
404 *b
= e
->xbutton
.button
;
406 *x
= X2COL(e
->xbutton
.x
);
407 *y
= Y2ROW(e
->xbutton
.y
);
408 sel
.b
.x
= sel
.by
< sel
.ey
? sel
.bx
: sel
.ex
;
409 sel
.b
.y
= MIN(sel
.by
, sel
.ey
);
410 sel
.e
.x
= sel
.by
< sel
.ey
? sel
.ex
: sel
.bx
;
411 sel
.e
.y
= MAX(sel
.by
, sel
.ey
);
415 mousereport(XEvent
*e
) {
416 int x
= X2COL(e
->xbutton
.x
);
417 int y
= Y2ROW(e
->xbutton
.y
);
418 int button
= e
->xbutton
.button
;
419 int state
= e
->xbutton
.state
;
420 char buf
[] = { '\033', '[', 'M', 0, 32+x
+1, 32+y
+1 };
422 if(!IS_SET(MODE_MOUSE
))
426 if(e
->xbutton
.type
== ButtonRelease
|| button
== AnyButton
)
434 buf
[3] = 32 + button
+ (state
& ShiftMask
? 4 : 0)
435 + (state
& Mod4Mask
? 8 : 0)
436 + (state
& ControlMask
? 16 : 0);
438 ttywrite(buf
, sizeof(buf
));
445 sel
.ex
= sel
.bx
= X2COL(e
->xbutton
.x
);
446 sel
.ey
= sel
.by
= Y2ROW(e
->xbutton
.y
);
452 int x
, y
, sz
, sl
, ls
= 0;
457 sz
= (term
.col
+1) * (sel
.e
.y
-sel
.b
.y
+1) * UTF_SIZ
;
458 ptr
= str
= malloc(sz
);
459 for(y
= 0; y
< term
.row
; y
++) {
460 for(x
= 0; x
< term
.col
; x
++)
461 if(term
.line
[y
][x
].state
& GLYPH_SET
&& (ls
= selected(x
, y
))) {
462 sl
= utf8size(term
.line
[y
][x
].c
);
463 memcpy(ptr
, term
.line
[y
][x
].c
, sl
);
466 if(ls
&& y
< sel
.e
.y
)
475 selnotify(XEvent
*e
) {
476 unsigned long nitems
;
477 unsigned long ofs
, rem
;
484 if(XGetWindowProperty(xw
.dpy
, xw
.win
, XA_PRIMARY
, ofs
, BUFSIZ
/4,
485 False
, AnyPropertyType
, &type
, &format
,
486 &nitems
, &rem
, &data
)) {
487 fprintf(stderr
, "Clipboard allocation failed\n");
490 ttywrite((const char *) data
, nitems
* format
/ 8);
492 /* number of 32-bit chunks returned */
493 ofs
+= nitems
* format
/ 32;
499 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
, xw
.win
, CurrentTime
);
503 selrequest(XEvent
*e
) {
504 XSelectionRequestEvent
*xsre
;
508 xsre
= (XSelectionRequestEvent
*) e
;
509 xev
.type
= SelectionNotify
;
510 xev
.requestor
= xsre
->requestor
;
511 xev
.selection
= xsre
->selection
;
512 xev
.target
= xsre
->target
;
513 xev
.time
= xsre
->time
;
517 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
518 if(xsre
->target
== xa_targets
) {
519 /* respond with the supported type */
520 Atom string
= sel
.xtarget
;
521 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
522 XA_ATOM
, 32, PropModeReplace
,
523 (unsigned char *) &string
, 1);
524 xev
.property
= xsre
->property
;
525 } else if(xsre
->target
== sel
.xtarget
) {
526 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
527 xsre
->target
, 8, PropModeReplace
,
528 (unsigned char *) sel
.clip
, strlen(sel
.clip
));
529 xev
.property
= xsre
->property
;
532 /* all done, send a notification to the listener */
533 if(!XSendEvent(xsre
->display
, xsre
->requestor
, True
, 0, (XEvent
*) &xev
))
534 fprintf(stderr
, "Error sending SelectionNotify event\n");
539 /* register the selection for both the clipboard and the primary */
545 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, CurrentTime
);
547 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
548 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
554 brelease(XEvent
*e
) {
558 getbuttoninfo(e
, &b
, &sel
.ex
, &sel
.ey
);
560 if(sel
.bx
== sel
.ex
&& sel
.by
== sel
.ey
) {
566 gettimeofday(&now
, NULL
);
568 if(TIMEDIFF(now
, sel
.tclick2
) <= TRIPLECLICK_TIMEOUT
) {
569 /* triple click on the line */
570 sel
.b
.x
= sel
.bx
= 0;
571 sel
.e
.x
= sel
.ex
= term
.col
;
572 sel
.b
.y
= sel
.e
.y
= sel
.ey
;
574 } else if(TIMEDIFF(now
, sel
.tclick1
) <= DOUBLECLICK_TIMEOUT
) {
575 /* double click to select word */
577 while(term
.line
[sel
.ey
][sel
.bx
-1].state
& GLYPH_SET
&&
578 term
.line
[sel
.ey
][sel
.bx
-1].c
[0] != ' ') sel
.bx
--;
580 while(term
.line
[sel
.ey
][sel
.ex
+1].state
& GLYPH_SET
&&
581 term
.line
[sel
.ey
][sel
.ex
+1].c
[0] != ' ') sel
.ex
++;
583 sel
.b
.y
= sel
.e
.y
= sel
.ey
;
589 memcpy(&sel
.tclick2
, &sel
.tclick1
, sizeof(struct timeval
));
590 gettimeofday(&sel
.tclick1
, NULL
);
599 getbuttoninfo(e
, NULL
, &sel
.ex
, &sel
.ey
);
601 if(oldey
!= sel
.ey
|| oldex
!= sel
.ex
) {
602 int starty
= MIN(oldey
, sel
.ey
);
603 int endy
= MAX(oldey
, sel
.ey
);
604 drawregion(0, (starty
> 0 ? starty
: 0), term
.col
, (sel
.ey
< term
.row
? endy
+1 : term
.row
));
610 die(const char *errstr
, ...) {
613 va_start(ap
, errstr
);
614 vfprintf(stderr
, errstr
, ap
);
622 char *envshell
= getenv("SHELL");
624 DEFAULT(envshell
, "sh");
625 putenv("TERM="TNAME
);
626 args
= opt_cmd
? opt_cmd
: (char*[]){envshell
, "-i", NULL
};
627 execvp(args
[0], args
);
634 if(waitpid(pid
, &stat
, 0) < 0)
635 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
637 exit(WEXITSTATUS(stat
));
646 /* seems to work fine on linux, openbsd and freebsd */
647 struct winsize w
= {term
.row
, term
.col
, 0, 0};
648 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
649 die("openpty failed: %s\n", SERRNO
);
651 switch(pid
= fork()) {
653 die("fork failed\n");
656 setsid(); /* create a new process group */
657 dup2(s
, STDIN_FILENO
);
658 dup2(s
, STDOUT_FILENO
);
659 dup2(s
, STDERR_FILENO
);
660 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
661 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
669 signal(SIGCHLD
, sigchld
);
676 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
678 fprintf(stderr
, "\n");
683 static char buf
[BUFSIZ
];
684 static int buflen
= 0;
687 int charsize
; /* size of utf8 char in bytes */
691 /* append read bytes to unprocessed bytes */
692 if((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
693 die("Couldn't read from shell: %s\n", SERRNO
);
695 /* process every complete utf8 char */
698 while(buflen
>= UTF_SIZ
|| isfullutf8(ptr
,buflen
)) {
699 charsize
= utf8decode(ptr
, &utf8c
);
700 utf8encode(&utf8c
, s
);
706 /* keep any uncomplete utf8 char for the next call */
707 memmove(buf
, ptr
, buflen
);
711 ttywrite(const char *s
, size_t n
) {
712 if(write(cmdfd
, s
, n
) == -1)
713 die("write error on tty: %s\n", SERRNO
);
717 ttyresize(int x
, int y
) {
722 w
.ws_xpixel
= w
.ws_ypixel
= 0;
723 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
724 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
731 if(mode
== CURSOR_SAVE
)
733 else if(mode
== CURSOR_LOAD
)
734 term
.c
= c
, tmoveto(c
.x
, c
.y
);
743 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
745 term
.top
= 0, term
.bot
= term
.row
- 1;
746 term
.mode
= MODE_WRAP
;
747 tclearregion(0, 0, term
.col
-1, term
.row
-1);
751 tnew(int col
, int row
) {
752 /* set screen size */
753 term
.row
= row
, term
.col
= col
;
754 term
.line
= malloc(term
.row
* sizeof(Line
));
755 term
.alt
= malloc(term
.row
* sizeof(Line
));
756 for(row
= 0 ; row
< term
.row
; row
++) {
757 term
.line
[row
] = malloc(term
.col
* sizeof(Glyph
));
758 term
.alt
[row
] = malloc(term
.col
* sizeof(Glyph
));
766 Line
* tmp
= term
.line
;
767 term
.line
= term
.alt
;
769 term
.mode
^= MODE_ALTSCREEN
;
773 tscrolldown(int orig
, int n
) {
777 LIMIT(n
, 0, term
.bot
-orig
+1);
779 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
);
781 for(i
= term
.bot
; i
>= orig
+n
; i
--) {
783 term
.line
[i
] = term
.line
[i
-n
];
784 term
.line
[i
-n
] = temp
;
789 tscrollup(int orig
, int n
) {
792 LIMIT(n
, 0, term
.bot
-orig
+1);
794 tclearregion(0, orig
, term
.col
-1, orig
+n
-1);
796 for(i
= orig
; i
<= term
.bot
-n
; i
++) {
798 term
.line
[i
] = term
.line
[i
+n
];
799 term
.line
[i
+n
] = temp
;
804 tnewline(int first_col
) {
807 tscrollup(term
.top
, 1);
810 tmoveto(first_col
? 0 : term
.c
.x
, y
);
816 char *p
= escseq
.buf
;
820 escseq
.priv
= 1, p
++;
822 while(p
< escseq
.buf
+escseq
.len
) {
824 escseq
.arg
[escseq
.narg
] *= 10;
825 escseq
.arg
[escseq
.narg
] += *p
++ - '0'/*, noarg = 0 */;
827 if(*p
== ';' && escseq
.narg
+1 < ESC_ARG_SIZ
)
838 tmoveto(int x
, int y
) {
839 LIMIT(x
, 0, term
.col
-1);
840 LIMIT(y
, 0, term
.row
-1);
841 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
848 term
.line
[term
.c
.y
][term
.c
.x
] = term
.c
.attr
;
849 memcpy(term
.line
[term
.c
.y
][term
.c
.x
].c
, c
, UTF_SIZ
);
850 term
.line
[term
.c
.y
][term
.c
.x
].state
|= GLYPH_SET
;
854 tclearregion(int x1
, int y1
, int x2
, int y2
) {
858 temp
= x1
, x1
= x2
, x2
= temp
;
860 temp
= y1
, y1
= y2
, y2
= temp
;
862 LIMIT(x1
, 0, term
.col
-1);
863 LIMIT(x2
, 0, term
.col
-1);
864 LIMIT(y1
, 0, term
.row
-1);
865 LIMIT(y2
, 0, term
.row
-1);
867 for(y
= y1
; y
<= y2
; y
++)
868 for(x
= x1
; x
<= x2
; x
++)
869 term
.line
[y
][x
].state
= 0;
874 int src
= term
.c
.x
+ n
;
876 int size
= term
.col
- src
;
878 if(src
>= term
.col
) {
879 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
882 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
], size
* sizeof(Glyph
));
883 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
887 tinsertblank(int n
) {
890 int size
= term
.col
- dst
;
892 if(dst
>= term
.col
) {
893 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
896 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
], size
* sizeof(Glyph
));
897 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
901 tinsertblankline(int n
) {
902 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
905 tscrolldown(term
.c
.y
, n
);
910 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
913 tscrollup(term
.c
.y
, n
);
917 tsetattr(int *attr
, int l
) {
920 for(i
= 0; i
< l
; i
++) {
923 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE
| ATTR_BOLD
);
924 term
.c
.attr
.fg
= DefaultFG
;
925 term
.c
.attr
.bg
= DefaultBG
;
928 term
.c
.attr
.mode
|= ATTR_BOLD
;
931 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
934 term
.c
.attr
.mode
|= ATTR_REVERSE
;
937 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
940 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
943 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
946 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
948 if(BETWEEN(attr
[i
], 0, 255))
949 term
.c
.attr
.fg
= attr
[i
];
951 fprintf(stderr
, "erresc: bad fgcolor %d\n", attr
[i
]);
954 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
957 term
.c
.attr
.fg
= DefaultFG
;
960 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
962 if(BETWEEN(attr
[i
], 0, 255))
963 term
.c
.attr
.bg
= attr
[i
];
965 fprintf(stderr
, "erresc: bad bgcolor %d\n", attr
[i
]);
968 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
971 term
.c
.attr
.bg
= DefaultBG
;
974 if(BETWEEN(attr
[i
], 30, 37))
975 term
.c
.attr
.fg
= attr
[i
] - 30;
976 else if(BETWEEN(attr
[i
], 40, 47))
977 term
.c
.attr
.bg
= attr
[i
] - 40;
978 else if(BETWEEN(attr
[i
], 90, 97))
979 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
980 else if(BETWEEN(attr
[i
], 100, 107))
981 term
.c
.attr
.fg
= attr
[i
] - 100 + 8;
983 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]), csidump();
991 tsetscroll(int t
, int b
) {
994 LIMIT(t
, 0, term
.row
-1);
995 LIMIT(b
, 0, term
.row
-1);
1007 switch(escseq
.mode
) {
1010 fprintf(stderr
, "erresc: unknown csi ");
1014 case '@': /* ICH -- Insert <n> blank char */
1015 DEFAULT(escseq
.arg
[0], 1);
1016 tinsertblank(escseq
.arg
[0]);
1018 case 'A': /* CUU -- Cursor <n> Up */
1020 DEFAULT(escseq
.arg
[0], 1);
1021 tmoveto(term
.c
.x
, term
.c
.y
-escseq
.arg
[0]);
1023 case 'B': /* CUD -- Cursor <n> Down */
1024 DEFAULT(escseq
.arg
[0], 1);
1025 tmoveto(term
.c
.x
, term
.c
.y
+escseq
.arg
[0]);
1027 case 'C': /* CUF -- Cursor <n> Forward */
1029 DEFAULT(escseq
.arg
[0], 1);
1030 tmoveto(term
.c
.x
+escseq
.arg
[0], term
.c
.y
);
1032 case 'D': /* CUB -- Cursor <n> Backward */
1033 DEFAULT(escseq
.arg
[0], 1);
1034 tmoveto(term
.c
.x
-escseq
.arg
[0], term
.c
.y
);
1036 case 'E': /* CNL -- Cursor <n> Down and first col */
1037 DEFAULT(escseq
.arg
[0], 1);
1038 tmoveto(0, term
.c
.y
+escseq
.arg
[0]);
1040 case 'F': /* CPL -- Cursor <n> Up and first col */
1041 DEFAULT(escseq
.arg
[0], 1);
1042 tmoveto(0, term
.c
.y
-escseq
.arg
[0]);
1044 case 'G': /* CHA -- Move to <col> */
1045 case '`': /* XXX: HPA -- same? */
1046 DEFAULT(escseq
.arg
[0], 1);
1047 tmoveto(escseq
.arg
[0]-1, term
.c
.y
);
1049 case 'H': /* CUP -- Move to <row> <col> */
1050 case 'f': /* XXX: HVP -- same? */
1051 DEFAULT(escseq
.arg
[0], 1);
1052 DEFAULT(escseq
.arg
[1], 1);
1053 tmoveto(escseq
.arg
[1]-1, escseq
.arg
[0]-1);
1055 /* XXX: (CSI n I) CHT -- Cursor Forward Tabulation <n> tab stops */
1056 case 'J': /* ED -- Clear screen */
1057 switch(escseq
.arg
[0]) {
1059 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1060 if(term
.c
.y
< term
.row
-1)
1061 tclearregion(0, term
.c
.y
+1, term
.col
-1, term
.row
-1);
1065 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1);
1066 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1069 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1075 case 'K': /* EL -- Clear line */
1076 switch(escseq
.arg
[0]) {
1078 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1081 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1084 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
1088 case 'S': /* SU -- Scroll <n> line up */
1089 DEFAULT(escseq
.arg
[0], 1);
1090 tscrollup(term
.top
, escseq
.arg
[0]);
1092 case 'T': /* SD -- Scroll <n> line down */
1093 DEFAULT(escseq
.arg
[0], 1);
1094 tscrolldown(term
.top
, escseq
.arg
[0]);
1096 case 'L': /* IL -- Insert <n> blank lines */
1097 DEFAULT(escseq
.arg
[0], 1);
1098 tinsertblankline(escseq
.arg
[0]);
1100 case 'l': /* RM -- Reset Mode */
1102 switch(escseq
.arg
[0]) {
1104 term
.mode
&= ~MODE_APPKEYPAD
;
1106 case 5: /* TODO: DECSCNM -- Remove reverse video */
1109 term
.mode
&= ~MODE_WRAP
;
1111 case 12: /* att610 -- Stop blinking cursor (IGNORED) */
1114 term
.mode
&= ~MODE_CRLF
;
1117 term
.c
.state
|= CURSOR_HIDE
;
1119 case 1000: /* disable X11 xterm mouse reporting */
1120 term
.mode
&= ~MODE_MOUSE
;
1122 case 1049: /* = 1047 and 1048 */
1124 if(IS_SET(MODE_ALTSCREEN
)) {
1125 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1128 if(escseq
.arg
[0] == 1047)
1131 tcursor(CURSOR_LOAD
);
1137 switch(escseq
.arg
[0]) {
1139 term
.mode
&= ~MODE_INSERT
;
1146 case 'M': /* DL -- Delete <n> lines */
1147 DEFAULT(escseq
.arg
[0], 1);
1148 tdeleteline(escseq
.arg
[0]);
1150 case 'X': /* ECH -- Erase <n> char */
1151 DEFAULT(escseq
.arg
[0], 1);
1152 tclearregion(term
.c
.x
, term
.c
.y
, term
.c
.x
+ escseq
.arg
[0], term
.c
.y
);
1154 case 'P': /* DCH -- Delete <n> char */
1155 DEFAULT(escseq
.arg
[0], 1);
1156 tdeletechar(escseq
.arg
[0]);
1158 /* XXX: (CSI n Z) CBT -- Cursor Backward Tabulation <n> tab stops */
1159 case 'd': /* VPA -- Move to <row> */
1160 DEFAULT(escseq
.arg
[0], 1);
1161 tmoveto(term
.c
.x
, escseq
.arg
[0]-1);
1163 case 'h': /* SM -- Set terminal mode */
1165 switch(escseq
.arg
[0]) {
1167 term
.mode
|= MODE_APPKEYPAD
;
1169 case 5: /* DECSCNM -- Reverve video */
1170 /* TODO: set REVERSE on the whole screen (f) */
1173 term
.mode
|= MODE_WRAP
;
1176 term
.mode
|= MODE_CRLF
;
1178 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1179 /* fallthrough for xterm cvvis = CSI [ ? 12 ; 25 h */
1180 if(escseq
.narg
> 1 && escseq
.arg
[1] != 25)
1183 term
.c
.state
&= ~CURSOR_HIDE
;
1185 case 1000: /* enable X11 xterm mouse reporting */
1186 term
.mode
|= MODE_MOUSE
;
1188 case 1049: /* = 1047 and 1048 */
1190 if(IS_SET(MODE_ALTSCREEN
))
1191 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1194 if(escseq
.arg
[0] == 1047)
1197 tcursor(CURSOR_SAVE
);
1199 default: goto unknown
;
1202 switch(escseq
.arg
[0]) {
1204 term
.mode
|= MODE_INSERT
;
1206 default: goto unknown
;
1210 case 'm': /* SGR -- Terminal attribute (color) */
1211 tsetattr(escseq
.arg
, escseq
.narg
);
1213 case 'r': /* DECSTBM -- Set Scrolling Region */
1217 DEFAULT(escseq
.arg
[0], 1);
1218 DEFAULT(escseq
.arg
[1], term
.row
);
1219 tsetscroll(escseq
.arg
[0]-1, escseq
.arg
[1]-1);
1223 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
1224 tcursor(CURSOR_SAVE
);
1226 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
1227 tcursor(CURSOR_LOAD
);
1235 printf("ESC [ %s", escseq
.priv
? "? " : "");
1237 for(i
= 0; i
< escseq
.narg
; i
++)
1238 printf("%d ", escseq
.arg
[i
]);
1240 putchar(escseq
.mode
);
1246 memset(&escseq
, 0, sizeof(escseq
));
1251 int space
= TAB
- term
.c
.x
% TAB
;
1252 tmoveto(term
.c
.x
+ space
, term
.c
.y
);
1258 if(term
.esc
& ESC_START
) {
1259 if(term
.esc
& ESC_CSI
) {
1260 escseq
.buf
[escseq
.len
++] = ascii
;
1261 if(BETWEEN(ascii
, 0x40, 0x7E) || escseq
.len
>= ESC_BUF_SIZ
) {
1263 csiparse(), csihandle();
1265 /* TODO: handle other OSC */
1266 } else if(term
.esc
& ESC_OSC
) {
1269 term
.esc
= ESC_START
| ESC_TITLE
;
1271 } else if(term
.esc
& ESC_TITLE
) {
1272 if(ascii
== '\a' || term
.titlelen
+1 >= ESC_TITLE_SIZ
) {
1274 term
.title
[term
.titlelen
] = '\0';
1275 XStoreName(xw
.dpy
, xw
.win
, term
.title
);
1277 term
.title
[term
.titlelen
++] = ascii
;
1279 } else if(term
.esc
& ESC_ALTCHARSET
) {
1281 case '0': /* Line drawing crap */
1282 term
.c
.attr
.mode
|= ATTR_GFX
;
1284 case 'B': /* Back to regular text */
1285 term
.c
.attr
.mode
&= ~ATTR_GFX
;
1288 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
1294 term
.esc
|= ESC_CSI
;
1297 term
.esc
|= ESC_OSC
;
1300 term
.esc
|= ESC_ALTCHARSET
;
1302 case 'D': /* IND -- Linefeed */
1303 if(term
.c
.y
== term
.bot
)
1304 tscrollup(term
.top
, 1);
1306 tmoveto(term
.c
.x
, term
.c
.y
+1);
1309 case 'E': /* NEL -- Next line */
1310 tnewline(1); /* always go to first col */
1313 case 'M': /* RI -- Reverse index */
1314 if(term
.c
.y
== term
.top
)
1315 tscrolldown(term
.top
, 1);
1317 tmoveto(term
.c
.x
, term
.c
.y
-1);
1320 case 'c': /* RIS -- Reset to inital state */
1324 case '=': /* DECPAM -- Application keypad */
1325 term
.mode
|= MODE_APPKEYPAD
;
1328 case '>': /* DECPNM -- Normal keypad */
1329 term
.mode
&= ~MODE_APPKEYPAD
;
1332 case '7': /* DECSC -- Save Cursor */
1333 tcursor(CURSOR_SAVE
);
1336 case '8': /* DECRC -- Restore Cursor */
1337 tcursor(CURSOR_LOAD
);
1341 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
1342 (unsigned char) ascii
, isprint(ascii
)?ascii
:'.');
1352 tmoveto(term
.c
.x
-1, term
.c
.y
);
1355 tmoveto(0, term
.c
.y
);
1360 /* go to first col if the mode is set */
1361 tnewline(IS_SET(MODE_CRLF
));
1364 if(!(xw
.state
& WIN_FOCUSED
))
1369 term
.esc
= ESC_START
;
1372 if(IS_SET(MODE_WRAP
) && term
.c
.state
& CURSOR_WRAPNEXT
)
1373 tnewline(1); /* always go to first col */
1375 if(term
.c
.x
+1 < term
.col
)
1376 tmoveto(term
.c
.x
+1, term
.c
.y
);
1378 term
.c
.state
|= CURSOR_WRAPNEXT
;
1384 tresize(int col
, int row
) {
1386 int minrow
= MIN(row
, term
.row
);
1387 int mincol
= MIN(col
, term
.col
);
1388 int slide
= term
.c
.y
- row
+ 1;
1390 if(col
< 1 || row
< 1)
1393 /* free unneeded rows */
1396 /* slide screen to keep cursor where we expect it -
1397 * tscrollup would work here, but we can optimize to
1398 * memmove because we're freeing the earlier lines */
1399 for(/* i = 0 */; i
< slide
; i
++) {
1403 memmove(term
.line
, term
.line
+ slide
, row
* sizeof(Line
));
1404 memmove(term
.alt
, term
.alt
+ slide
, row
* sizeof(Line
));
1406 for(i
+= row
; i
< term
.row
; i
++) {
1411 /* resize to new height */
1412 term
.line
= realloc(term
.line
, row
* sizeof(Line
));
1413 term
.alt
= realloc(term
.alt
, row
* sizeof(Line
));
1415 /* resize each row to new width, zero-pad if needed */
1416 for(i
= 0; i
< minrow
; i
++) {
1417 term
.line
[i
] = realloc(term
.line
[i
], col
* sizeof(Glyph
));
1418 term
.alt
[i
] = realloc(term
.alt
[i
], col
* sizeof(Glyph
));
1419 for(x
= mincol
; x
< col
; x
++) {
1420 term
.line
[i
][x
].state
= 0;
1421 term
.alt
[i
][x
].state
= 0;
1425 /* allocate any new rows */
1426 for(/* i == minrow */; i
< row
; i
++) {
1427 term
.line
[i
] = calloc(col
, sizeof(Glyph
));
1428 term
.alt
[i
] = calloc(col
, sizeof(Glyph
));
1431 /* update terminal size */
1432 term
.col
= col
, term
.row
= row
;
1433 /* make use of the LIMIT in tmoveto */
1434 tmoveto(term
.c
.x
, term
.c
.y
);
1435 /* reset scrolling region */
1436 tsetscroll(0, row
-1);
1441 xresize(int col
, int row
) {
1447 xw
.bufw
= MAX(1, col
* xw
.cw
);
1448 xw
.bufh
= MAX(1, row
* xw
.ch
);
1449 newbuf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.bufw
, xw
.bufh
, XDefaultDepth(xw
.dpy
, xw
.scr
));
1450 XCopyArea(xw
.dpy
, xw
.buf
, newbuf
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
, 0, 0);
1451 XFreePixmap(xw
.dpy
, xw
.buf
);
1452 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[DefaultBG
]);
1454 XFillRectangle(xw
.dpy
, newbuf
, dc
.gc
, oldw
, 0,
1455 xw
.bufw
-oldw
, MIN(xw
.bufh
, oldh
));
1456 else if(xw
.bufw
< oldw
&& (BORDER
> 0 || xw
.w
> xw
.bufw
))
1457 XClearArea(xw
.dpy
, xw
.win
, BORDER
+xw
.bufw
, BORDER
,
1458 xw
.w
-xw
.bufh
-BORDER
, BORDER
+MIN(xw
.bufh
, oldh
),
1461 XFillRectangle(xw
.dpy
, newbuf
, dc
.gc
, 0, oldh
,
1462 xw
.bufw
, xw
.bufh
-oldh
);
1463 else if(xw
.bufh
< oldh
&& (BORDER
> 0 || xw
.h
> xw
.bufh
))
1464 XClearArea(xw
.dpy
, xw
.win
, BORDER
, BORDER
+xw
.bufh
,
1465 xw
.w
-2*BORDER
, xw
.h
-xw
.bufh
-BORDER
,
1474 unsigned long white
= WhitePixel(xw
.dpy
, xw
.scr
);
1476 for(i
= 0; i
< 16; i
++) {
1477 if(!XAllocNamedColor(xw
.dpy
, xw
.cmap
, colorname
[i
], &color
, &color
)) {
1479 fprintf(stderr
, "Could not allocate color '%s'\n", colorname
[i
]);
1481 dc
.col
[i
] = color
.pixel
;
1484 /* same colors as xterm */
1485 for(r
= 0; r
< 6; r
++)
1486 for(g
= 0; g
< 6; g
++)
1487 for(b
= 0; b
< 6; b
++) {
1488 color
.red
= r
== 0 ? 0 : 0x3737 + 0x2828 * r
;
1489 color
.green
= g
== 0 ? 0 : 0x3737 + 0x2828 * g
;
1490 color
.blue
= b
== 0 ? 0 : 0x3737 + 0x2828 * b
;
1491 if(!XAllocColor(xw
.dpy
, xw
.cmap
, &color
)) {
1493 fprintf(stderr
, "Could not allocate color %d\n", i
);
1495 dc
.col
[i
] = color
.pixel
;
1499 for(r
= 0; r
< 24; r
++, i
++) {
1500 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
1501 if (!XAllocColor(xw
.dpy
, xw
.cmap
, &color
)) {
1503 fprintf(stderr
, "Could not allocate color %d\n", i
);
1505 dc
.col
[i
] = color
.pixel
;
1510 xclear(int x1
, int y1
, int x2
, int y2
) {
1511 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[DefaultBG
]);
1512 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
,
1513 x1
* xw
.cw
, y1
* xw
.ch
,
1514 (x2
-x1
+1) * xw
.cw
, (y2
-y1
+1) * xw
.ch
);
1519 XClassHint
class = {opt_class
? opt_class
: TNAME
, TNAME
};
1520 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
1522 .flags
= PSize
| PResizeInc
| PBaseSize
,
1525 .height_inc
= xw
.ch
,
1527 .base_height
= 2*BORDER
,
1528 .base_width
= 2*BORDER
,
1530 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, &size
, &wm
, &class);
1534 xinitfont(char *fontstr
) {
1536 char *def
, **missing
;
1540 set
= XCreateFontSet(xw
.dpy
, fontstr
, &missing
, &n
, &def
);
1543 fprintf(stderr
, "st: missing fontset: %s\n", missing
[n
]);
1544 XFreeStringList(missing
);
1550 xgetfontinfo(XFontSet set
, int *ascent
, int *descent
, short *lbearing
, short *rbearing
) {
1551 XFontStruct
**xfonts
;
1555 *ascent
= *descent
= *lbearing
= *rbearing
= 0;
1556 n
= XFontsOfFontSet(set
, &xfonts
, &font_names
);
1557 for(i
= 0; i
< n
; i
++) {
1558 *ascent
= MAX(*ascent
, (*xfonts
)->ascent
);
1559 *descent
= MAX(*descent
, (*xfonts
)->descent
);
1560 *lbearing
= MAX(*lbearing
, (*xfonts
)->min_bounds
.lbearing
);
1561 *rbearing
= MAX(*rbearing
, (*xfonts
)->max_bounds
.rbearing
);
1567 initfonts(char *fontstr
, char *bfontstr
) {
1568 if((dc
.font
.set
= xinitfont(fontstr
)) == NULL
||
1569 (dc
.bfont
.set
= xinitfont(bfontstr
)) == NULL
)
1570 die("Can't load font %s\n", dc
.font
.set
? BOLDFONT
: FONT
);
1571 xgetfontinfo(dc
.font
.set
, &dc
.font
.ascent
, &dc
.font
.descent
,
1572 &dc
.font
.lbearing
, &dc
.font
.rbearing
);
1573 xgetfontinfo(dc
.bfont
.set
, &dc
.bfont
.ascent
, &dc
.bfont
.descent
,
1574 &dc
.bfont
.lbearing
, &dc
.bfont
.rbearing
);
1579 XSetWindowAttributes attrs
;
1582 if(!(xw
.dpy
= XOpenDisplay(NULL
)))
1583 die("Can't open display\n");
1584 xw
.scr
= XDefaultScreen(xw
.dpy
);
1587 initfonts(FONT
, BOLDFONT
);
1589 /* XXX: Assuming same size for bold font */
1590 xw
.cw
= dc
.font
.rbearing
- dc
.font
.lbearing
;
1591 xw
.ch
= dc
.font
.ascent
+ dc
.font
.descent
;
1594 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
1597 /* window - default size */
1598 xw
.bufh
= 24 * xw
.ch
;
1599 xw
.bufw
= 80 * xw
.cw
;
1600 xw
.h
= xw
.bufh
+ 2*BORDER
;
1601 xw
.w
= xw
.bufw
+ 2*BORDER
;
1603 attrs
.background_pixel
= dc
.col
[DefaultBG
];
1604 attrs
.border_pixel
= dc
.col
[DefaultBG
];
1605 attrs
.bit_gravity
= NorthWestGravity
;
1606 attrs
.event_mask
= FocusChangeMask
| KeyPressMask
1607 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
1608 | PointerMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
1609 attrs
.colormap
= xw
.cmap
;
1611 xw
.win
= XCreateWindow(xw
.dpy
, XRootWindow(xw
.dpy
, xw
.scr
), 0, 0,
1612 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
1613 XDefaultVisual(xw
.dpy
, xw
.scr
),
1614 CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
1617 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.bufw
, xw
.bufh
, XDefaultDepth(xw
.dpy
, xw
.scr
));
1621 xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
);
1622 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
1623 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
1624 XNFocusWindow
, xw
.win
, NULL
);
1626 dc
.gc
= XCreateGC(xw
.dpy
, xw
.win
, 0, NULL
);
1628 /* white cursor, black outline */
1629 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
1630 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
1631 XRecolorCursor(xw
.dpy
, cursor
,
1632 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
1633 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
1635 XStoreName(xw
.dpy
, xw
.win
, opt_title
? opt_title
: "st");
1636 XMapWindow(xw
.dpy
, xw
.win
);
1642 xdraws(char *s
, Glyph base
, int x
, int y
, int charlen
, int bytelen
) {
1643 unsigned long xfg
, xbg
;
1644 int winx
= x
*xw
.cw
, winy
= y
*xw
.ch
+ dc
.font
.ascent
, width
= charlen
*xw
.cw
;
1647 if(base
.mode
& ATTR_REVERSE
)
1648 xfg
= dc
.col
[base
.bg
], xbg
= dc
.col
[base
.fg
];
1650 xfg
= dc
.col
[base
.fg
], xbg
= dc
.col
[base
.bg
];
1652 XSetBackground(xw
.dpy
, dc
.gc
, xbg
);
1653 XSetForeground(xw
.dpy
, dc
.gc
, xfg
);
1655 if(base
.mode
& ATTR_GFX
) {
1656 for(i
= 0; i
< bytelen
; i
++) {
1657 char c
= gfx
[(unsigned int)s
[i
] % 256];
1660 else if(s
[i
] > 0x5f)
1665 XmbDrawImageString(xw
.dpy
, xw
.buf
, base
.mode
& ATTR_BOLD
? dc
.bfont
.set
: dc
.font
.set
,
1666 dc
.gc
, winx
, winy
, s
, bytelen
);
1668 if(base
.mode
& ATTR_UNDERLINE
)
1669 XDrawLine(xw
.dpy
, xw
.buf
, dc
.gc
, winx
, winy
+1, winx
+width
-1, winy
+1);
1674 static int oldx
= 0;
1675 static int oldy
= 0;
1677 Glyph g
= {{' '}, ATTR_NULL
, DefaultBG
, DefaultCS
, 0};
1679 LIMIT(oldx
, 0, term
.col
-1);
1680 LIMIT(oldy
, 0, term
.row
-1);
1682 if(term
.line
[term
.c
.y
][term
.c
.x
].state
& GLYPH_SET
)
1683 memcpy(g
.c
, term
.line
[term
.c
.y
][term
.c
.x
].c
, UTF_SIZ
);
1685 /* remove the old cursor */
1686 if(term
.line
[oldy
][oldx
].state
& GLYPH_SET
) {
1687 sl
= utf8size(term
.line
[oldy
][oldx
].c
);
1688 xdraws(term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
, oldy
, 1, sl
);
1690 xclear(oldx
, oldy
, oldx
, oldy
);
1692 /* draw the new one */
1693 if(!(term
.c
.state
& CURSOR_HIDE
) && (xw
.state
& WIN_FOCUSED
)) {
1695 xdraws(g
.c
, g
, term
.c
.x
, term
.c
.y
, 1, sl
);
1696 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
1702 drawregion(0, 0, term
.col
, term
.row
);
1706 drawregion(int x1
, int y1
, int x2
, int y2
) {
1707 int ic
, ib
, x
, y
, ox
, sl
;
1709 char buf
[DRAW_BUF_SIZ
];
1711 if(!(xw
.state
& WIN_VISIBLE
))
1714 xclear(x1
, y1
, x2
-1, y2
-1);
1715 for(y
= y1
; y
< y2
; y
++) {
1716 base
= term
.line
[y
][0];
1718 for(x
= x1
; x
< x2
; x
++) {
1719 new = term
.line
[y
][x
];
1720 if(sel
.bx
!= -1 && *(new.c
) && selected(x
, y
))
1721 new.mode
^= ATTR_REVERSE
;
1722 if(ib
> 0 && (!(new.state
& GLYPH_SET
) || ATTRCMP(base
, new) ||
1723 ib
>= DRAW_BUF_SIZ
-UTF_SIZ
)) {
1724 xdraws(buf
, base
, ox
, y
, ic
, ib
);
1727 if(new.state
& GLYPH_SET
) {
1732 sl
= utf8size(new.c
);
1733 memcpy(buf
+ib
, new.c
, sl
);
1739 xdraws(buf
, base
, ox
, y
, ic
, ib
);
1742 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
, BORDER
, BORDER
);
1746 expose(XEvent
*ev
) {
1747 XExposeEvent
*e
= &ev
->xexpose
;
1748 if(xw
.state
& WIN_REDRAW
) {
1750 xw
.state
&= ~WIN_REDRAW
;
1754 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, e
->x
-BORDER
, e
->y
-BORDER
,
1755 e
->width
, e
->height
, e
->x
, e
->y
);
1759 visibility(XEvent
*ev
) {
1760 XVisibilityEvent
*e
= &ev
->xvisibility
;
1761 if(e
->state
== VisibilityFullyObscured
)
1762 xw
.state
&= ~WIN_VISIBLE
;
1763 else if(!(xw
.state
& WIN_VISIBLE
))
1764 /* need a full redraw for next Expose, not just a buf copy */
1765 xw
.state
|= WIN_VISIBLE
| WIN_REDRAW
;
1770 xw
.state
&= ~WIN_VISIBLE
;
1774 xseturgency(int add
) {
1775 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
1776 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
1777 XSetWMHints(xw
.dpy
, xw
.win
, h
);
1783 if(ev
->type
== FocusIn
) {
1784 xw
.state
|= WIN_FOCUSED
;
1787 xw
.state
&= ~WIN_FOCUSED
;
1792 kmap(KeySym k
, unsigned int state
) {
1794 for(i
= 0; i
< LEN(key
); i
++)
1795 if(key
[i
].k
== k
&& (key
[i
].mask
== 0 || key
[i
].mask
& state
))
1796 return (char*)key
[i
].s
;
1801 kpress(XEvent
*ev
) {
1802 XKeyEvent
*e
= &ev
->xkey
;
1811 meta
= e
->state
& Mod1Mask
;
1812 shift
= e
->state
& ShiftMask
;
1813 len
= XmbLookupString(xw
.xic
, e
, buf
, sizeof(buf
), &ksym
, &status
);
1815 /* 1. custom keys from config.h */
1816 if((customkey
= kmap(ksym
, e
->state
)))
1817 ttywrite(customkey
, strlen(customkey
));
1818 /* 2. hardcoded (overrides X lookup) */
1825 /* XXX: shift up/down doesn't work */
1826 sprintf(buf
, "\033%c%c", IS_SET(MODE_APPKEYPAD
) ? 'O' : '[', (shift
? "dacb":"DACB")[ksym
- XK_Left
]);
1834 if(IS_SET(MODE_CRLF
))
1835 ttywrite("\r\n", 2);
1842 if(meta
&& len
== 1)
1843 ttywrite("\033", 1);
1854 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
1857 xw
.w
= e
->xconfigure
.width
;
1858 xw
.h
= e
->xconfigure
.height
;
1859 col
= (xw
.w
- 2*BORDER
) / xw
.cw
;
1860 row
= (xw
.h
- 2*BORDER
) / xw
.ch
;
1861 if(col
== term
.col
&& row
== term
.row
)
1863 if(tresize(col
, row
))
1865 ttyresize(col
, row
);
1873 int xfd
= XConnectionNumber(xw
.dpy
);
1877 FD_SET(cmdfd
, &rfd
);
1879 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, NULL
) < 0) {
1882 die("select failed: %s\n", SERRNO
);
1884 if(FD_ISSET(cmdfd
, &rfd
)) {
1888 while(XPending(xw
.dpy
)) {
1889 XNextEvent(xw
.dpy
, &ev
);
1890 if(XFilterEvent(&ev
, xw
.win
))
1892 if(handler
[ev
.type
])
1893 (handler
[ev
.type
])(&ev
);
1899 main(int argc
, char *argv
[]) {
1902 for(i
= 1; i
< argc
; i
++) {
1903 switch(argv
[i
][0] != '-' || argv
[i
][2] ? -1 : argv
[i
][1]) {
1905 if(++i
< argc
) opt_title
= argv
[i
];
1908 if(++i
< argc
) opt_class
= argv
[i
];
1911 /* eat every remaining arguments */
1912 if(++i
< argc
) opt_cmd
= &argv
[i
];
1921 setlocale(LC_CTYPE
, "");