1 /* See LICENSE for licence details. */
14 #include <sys/ioctl.h>
15 #include <sys/select.h>
18 #include <sys/types.h>
22 #include <X11/Xatom.h>
24 #include <X11/Xutil.h>
25 #include <X11/cursorfont.h>
26 #include <X11/keysym.h>
27 #include <X11/Xft/Xft.h>
28 #include <fontconfig/fontconfig.h>
36 #define Draw XftDraw *
37 #define Colour XftColor
38 #define Colourmap Colormap
39 #define Rectangle XRectangle
43 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
45 #elif defined(__FreeBSD__) || defined(__DragonFly__)
51 #define XEMBED_FOCUS_IN 4
52 #define XEMBED_FOCUS_OUT 5
56 #define ESC_BUF_SIZ (128*UTF_SIZ)
57 #define ESC_ARG_SIZ 16
58 #define STR_BUF_SIZ ESC_BUF_SIZ
59 #define STR_ARG_SIZ ESC_ARG_SIZ
60 #define DRAW_BUF_SIZ 20*1024
61 #define XK_ANY_MOD UINT_MAX
63 #define XK_SWITCH_MOD (1<<13)
65 #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
68 #define SERRNO strerror(errno)
69 #define MIN(a, b) ((a) < (b) ? (a) : (b))
70 #define MAX(a, b) ((a) < (b) ? (b) : (a))
71 #define LEN(a) (sizeof(a) / sizeof(a[0]))
72 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
73 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
74 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
75 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
76 #define IS_SET(flag) ((term.mode & (flag)) != 0)
77 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
79 #define VT102ID "\033[?6c"
81 enum glyph_attribute
{
92 enum cursor_movement
{
110 MODE_MOUSEMOTION
= 64,
116 MODE_APPCURSOR
= 2048,
117 MODE_MOUSESGR
= 4096,
124 ESC_STR
= 4, /* DSC, OSC, PM, APC */
126 ESC_STR_END
= 16, /* a final string was encountered */
127 ESC_TEST
= 32, /* Enter in test mode */
136 enum selection_type
{
141 enum selection_snap
{
148 enum { B0
=1, B1
=2, B2
=4, B3
=8, B4
=16, B5
=32, B6
=64, B7
=128 };
150 typedef unsigned char uchar
;
151 typedef unsigned int uint
;
152 typedef unsigned long ulong
;
153 typedef unsigned short ushort
;
156 char c
[UTF_SIZ
]; /* character code */
157 uchar mode
; /* attribute flags */
158 ushort fg
; /* foreground */
159 ushort bg
; /* background */
165 Glyph attr
; /* current char attributes */
171 /* CSI Escape sequence structs */
172 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
174 char buf
[ESC_BUF_SIZ
]; /* raw string */
175 int len
; /* raw string length */
177 int arg
[ESC_ARG_SIZ
];
178 int narg
; /* nb of args */
182 /* STR Escape sequence structs */
183 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
185 char type
; /* ESC type ... */
186 char buf
[STR_BUF_SIZ
]; /* raw string */
187 int len
; /* raw string length */
188 char *args
[STR_ARG_SIZ
];
189 int narg
; /* nb of args */
192 /* Internal representation of the screen */
194 int row
; /* nb row */
195 int col
; /* nb col */
196 Line
*line
; /* screen */
197 Line
*alt
; /* alternate screen */
198 bool *dirty
; /* dirtyness of lines */
199 TCursor c
; /* cursor */
200 int top
; /* top scroll limit */
201 int bot
; /* bottom scroll limit */
202 int mode
; /* terminal mode flags */
203 int esc
; /* escape state flags */
204 bool numlock
; /* lock numbers in keyboard */
208 /* Purely graphic info */
214 Atom xembed
, wmdeletewin
;
220 bool isfixed
; /* is fixed geometry? */
221 int fx
, fy
, fw
, fh
; /* fixed geometry */
222 int tw
, th
; /* tty width and height */
223 int w
, h
; /* window width and height */
224 int ch
; /* char height */
225 int cw
; /* char width */
226 char state
; /* focus, redraw, visible */
233 /* three valued logic variables: 0 indifferent, 1 on, -1 off */
234 signed char appkey
; /* application keypad */
235 signed char appcursor
; /* application cursor */
236 signed char crlf
; /* crlf mode */
239 /* TODO: use better name for vars... */
252 struct timeval tclick1
;
253 struct timeval tclick2
;
266 void (*func
)(const Arg
*);
270 /* function definitions used in config.h */
271 static void clippaste(const Arg
*);
272 static void numlock(const Arg
*);
273 static void selpaste(const Arg
*);
274 static void xzoom(const Arg
*);
276 /* Config.h for applying patches and the configuration. */
292 /* Drawing Context */
294 Colour col
[LEN(colorname
) < 256 ? 256 : LEN(colorname
)];
295 Font font
, bfont
, ifont
, ibfont
;
299 static void die(const char *, ...);
300 static void draw(void);
301 static void redraw(int);
302 static void drawregion(int, int, int, int);
303 static void execsh(void);
304 static void sigchld(int);
305 static void run(void);
307 static void csidump(void);
308 static void csihandle(void);
309 static void csiparse(void);
310 static void csireset(void);
311 static void strdump(void);
312 static void strhandle(void);
313 static void strparse(void);
314 static void strreset(void);
316 static void tclearregion(int, int, int, int);
317 static void tcursor(int);
318 static void tdeletechar(int);
319 static void tdeleteline(int);
320 static void tinsertblank(int);
321 static void tinsertblankline(int);
322 static void tmoveto(int, int);
323 static void tmoveato(int x
, int y
);
324 static void tnew(int, int);
325 static void tnewline(int);
326 static void tputtab(bool);
327 static void tputc(char *, int);
328 static void treset(void);
329 static int tresize(int, int);
330 static void tscrollup(int, int);
331 static void tscrolldown(int, int);
332 static void tsetattr(int*, int);
333 static void tsetchar(char *, Glyph
*, int, int);
334 static void tsetscroll(int, int);
335 static void tswapscreen(void);
336 static void tsetdirt(int, int);
337 static void tsetmode(bool, bool, int *, int);
338 static void tfulldirt(void);
339 static void techo(char *, int);
341 static inline bool match(uint
, uint
);
342 static void ttynew(void);
343 static void ttyread(void);
344 static void ttyresize(void);
345 static void ttywrite(const char *, size_t);
347 static void xdraws(char *, Glyph
, int, int, int, int);
348 static void xhints(void);
349 static void xclear(int, int, int, int);
350 static void xdrawcursor(void);
351 static void xinit(void);
352 static void xloadcols(void);
353 static int xsetcolorname(int, const char *);
354 static int xloadfont(Font
*, FcPattern
*);
355 static void xloadfonts(char *, int);
356 static void xsettitle(char *);
357 static void xresettitle(void);
358 static void xseturgency(int);
359 static void xsetsel(char*);
360 static void xtermclear(int, int, int, int);
361 static void xunloadfonts(void);
362 static void xresize(int, int);
364 static void expose(XEvent
*);
365 static void visibility(XEvent
*);
366 static void unmap(XEvent
*);
367 static char *kmap(KeySym
, uint
);
368 static void kpress(XEvent
*);
369 static void cmessage(XEvent
*);
370 static void cresize(int, int);
371 static void resize(XEvent
*);
372 static void focus(XEvent
*);
373 static void brelease(XEvent
*);
374 static void bpress(XEvent
*);
375 static void bmotion(XEvent
*);
376 static void selnotify(XEvent
*);
377 static void selclear(XEvent
*);
378 static void selrequest(XEvent
*);
380 static void selinit(void);
381 static inline bool selected(int, int);
382 static void selcopy(void);
383 static void selscroll(int, int);
384 static void selsnap(int, int *, int *, int);
386 static int utf8decode(char *, long *);
387 static int utf8encode(long *, char *);
388 static int utf8size(char *);
389 static int isfullutf8(char *, int);
391 static ssize_t
xwrite(int, char *, size_t);
392 static void *xmalloc(size_t);
393 static void *xrealloc(void *, size_t);
394 static void *xcalloc(size_t, size_t);
396 static void (*handler
[LASTEvent
])(XEvent
*) = {
398 [ClientMessage
] = cmessage
,
399 [ConfigureNotify
] = resize
,
400 [VisibilityNotify
] = visibility
,
401 [UnmapNotify
] = unmap
,
405 [MotionNotify
] = bmotion
,
406 [ButtonPress
] = bpress
,
407 [ButtonRelease
] = brelease
,
408 [SelectionClear
] = selclear
,
409 [SelectionNotify
] = selnotify
,
410 [SelectionRequest
] = selrequest
,
417 static CSIEscape csiescseq
;
418 static STREscape strescseq
;
421 static Selection sel
;
422 static int iofd
= -1;
423 static char **opt_cmd
= NULL
;
424 static char *opt_io
= NULL
;
425 static char *opt_title
= NULL
;
426 static char *opt_embed
= NULL
;
427 static char *opt_class
= NULL
;
428 static char *opt_font
= NULL
;
430 static char *usedfont
= NULL
;
431 static int usedfontsize
= 0;
433 /* Font Ring Cache */
448 * Fontcache is a ring buffer, with frccur as current position and frclen as
449 * the current length of used elements.
452 static Fontcache frc
[1024];
453 static int frccur
= -1, frclen
= 0;
456 xwrite(int fd
, char *s
, size_t len
) {
460 ssize_t r
= write(fd
, s
, len
);
470 xmalloc(size_t len
) {
471 void *p
= malloc(len
);
474 die("Out of memory\n");
480 xrealloc(void *p
, size_t len
) {
481 if((p
= realloc(p
, len
)) == NULL
)
482 die("Out of memory\n");
488 xcalloc(size_t nmemb
, size_t size
) {
489 void *p
= calloc(nmemb
, size
);
492 die("Out of memory\n");
498 utf8decode(char *s
, long *u
) {
504 if(~c
& B7
) { /* 0xxxxxxx */
507 } else if((c
& (B7
|B6
|B5
)) == (B7
|B6
)) { /* 110xxxxx */
508 *u
= c
&(B4
|B3
|B2
|B1
|B0
);
510 } else if((c
& (B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) { /* 1110xxxx */
511 *u
= c
&(B3
|B2
|B1
|B0
);
513 } else if((c
& (B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
)) { /* 11110xxx */
520 for(i
= n
, ++s
; i
> 0; --i
, ++rtn
, ++s
) {
522 if((c
& (B7
|B6
)) != B7
) /* 10xxxxxx */
525 *u
|= c
& (B5
|B4
|B3
|B2
|B1
|B0
);
528 if((n
== 1 && *u
< 0x80) ||
529 (n
== 2 && *u
< 0x800) ||
530 (n
== 3 && *u
< 0x10000) ||
531 (*u
>= 0xD800 && *u
<= 0xDFFF)) {
543 utf8encode(long *u
, char *s
) {
551 *sp
= uc
; /* 0xxxxxxx */
553 } else if(*u
< 0x800) {
554 *sp
= (uc
>> 6) | (B7
|B6
); /* 110xxxxx */
556 } else if(uc
< 0x10000) {
557 *sp
= (uc
>> 12) | (B7
|B6
|B5
); /* 1110xxxx */
559 } else if(uc
<= 0x10FFFF) {
560 *sp
= (uc
>> 18) | (B7
|B6
|B5
|B4
); /* 11110xxx */
566 for(i
=n
,++sp
; i
>0; --i
,++sp
)
567 *sp
= ((uc
>> 6*(i
-1)) & (B5
|B4
|B3
|B2
|B1
|B0
)) | B7
; /* 10xxxxxx */
579 /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
580 UTF-8 otherwise return 0 */
582 isfullutf8(char *s
, int b
) {
590 } else if((*c1
&(B7
|B6
|B5
)) == (B7
|B6
) && b
== 1) {
592 } else if((*c1
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
) &&
594 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
))) {
596 } else if((*c1
&(B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
) &&
598 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
) ||
599 ((b
== 3) && (*c2
&(B7
|B6
)) == B7
&& (*c3
&(B7
|B6
)) == B7
))) {
612 } else if((c
&(B7
|B6
|B5
)) == (B7
|B6
)) {
614 } else if((c
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) {
623 memset(&sel
.tclick1
, 0, sizeof(sel
.tclick1
));
624 memset(&sel
.tclick2
, 0, sizeof(sel
.tclick2
));
628 sel
.xtarget
= XInternAtom(xw
.dpy
, "UTF8_STRING", 0);
629 if(sel
.xtarget
== None
)
630 sel
.xtarget
= XA_STRING
;
638 return LIMIT(x
, 0, term
.col
-1);
646 return LIMIT(y
, 0, term
.row
-1);
650 selected(int x
, int y
) {
653 if(sel
.ey
== y
&& sel
.by
== y
) {
654 bx
= MIN(sel
.bx
, sel
.ex
);
655 ex
= MAX(sel
.bx
, sel
.ex
);
657 return BETWEEN(x
, bx
, ex
);
660 if(sel
.type
== SEL_RECTANGULAR
) {
661 return ((sel
.b
.y
<= y
&& y
<= sel
.e
.y
)
662 && (sel
.b
.x
<= x
&& x
<= sel
.e
.x
));
664 return ((sel
.b
.y
< y
&& y
< sel
.e
.y
)
665 || (y
== sel
.e
.y
&& x
<= sel
.e
.x
))
666 || (y
== sel
.b
.y
&& x
>= sel
.b
.x
667 && (x
<= sel
.e
.x
|| sel
.b
.y
!= sel
.e
.y
));
671 selsnap(int mode
, int *x
, int *y
, int direction
) {
674 while(*x
> 0 && *x
< term
.col
-1
675 && term
.line
[*y
][*x
+ direction
].c
[0] != ' ') {
680 *x
= (direction
< 0) ? 0 : term
.col
- 1;
688 getbuttoninfo(XEvent
*e
) {
690 uint state
= e
->xbutton
.state
&~Button1Mask
;
692 sel
.alt
= IS_SET(MODE_ALTSCREEN
);
694 sel
.ex
= x2col(e
->xbutton
.x
);
695 sel
.ey
= y2row(e
->xbutton
.y
);
698 || (sel
.by
== sel
.ey
&& sel
.bx
< sel
.ex
)) {
699 selsnap(sel
.snap
, &sel
.bx
, &sel
.by
, -1);
700 selsnap(sel
.snap
, &sel
.ex
, &sel
.ey
, +1);
702 selsnap(sel
.snap
, &sel
.ex
, &sel
.ey
, -1);
703 selsnap(sel
.snap
, &sel
.bx
, &sel
.by
, +1);
706 sel
.b
.x
= sel
.by
< sel
.ey
? sel
.bx
: sel
.ex
;
707 sel
.b
.y
= MIN(sel
.by
, sel
.ey
);
708 sel
.e
.x
= sel
.by
< sel
.ey
? sel
.ex
: sel
.bx
;
709 sel
.e
.y
= MAX(sel
.by
, sel
.ey
);
711 sel
.type
= SEL_REGULAR
;
712 for(type
= 1; type
< LEN(selmasks
); ++type
) {
713 if(match(selmasks
[type
], state
)) {
721 mousereport(XEvent
*e
) {
722 int x
= x2col(e
->xbutton
.x
), y
= y2row(e
->xbutton
.y
),
723 button
= e
->xbutton
.button
, state
= e
->xbutton
.state
,
726 static int ob
, ox
, oy
;
729 if(e
->xbutton
.type
== MotionNotify
) {
730 if(!IS_SET(MODE_MOUSEMOTION
) || (x
== ox
&& y
== oy
))
734 } else if(!IS_SET(MODE_MOUSESGR
)
735 && (e
->xbutton
.type
== ButtonRelease
736 || button
== AnyButton
)) {
742 if(e
->xbutton
.type
== ButtonPress
) {
748 button
+= (state
& ShiftMask
? 4 : 0)
749 + (state
& Mod4Mask
? 8 : 0)
750 + (state
& ControlMask
? 16 : 0);
753 if(IS_SET(MODE_MOUSESGR
)) {
754 len
= snprintf(buf
, sizeof(buf
), "\033[<%d;%d;%d%c",
756 e
->xbutton
.type
== ButtonRelease
? 'm' : 'M');
757 } else if(x
< 223 && y
< 223) {
758 len
= snprintf(buf
, sizeof(buf
), "\033[M%c%c%c",
759 32+button
, 32+x
+1, 32+y
+1);
771 if(IS_SET(MODE_MOUSE
)) {
773 } else if(e
->xbutton
.button
== Button1
) {
774 gettimeofday(&now
, NULL
);
776 /* Clear previous selection, logically and visually. */
779 tsetdirt(sel
.b
.y
, sel
.e
.y
);
783 sel
.type
= SEL_REGULAR
;
784 sel
.ex
= sel
.bx
= x2col(e
->xbutton
.x
);
785 sel
.ey
= sel
.by
= y2row(e
->xbutton
.y
);
789 * If user clicks are fasst enough (e.g. below timeouts),
790 * we ignore if his hand slipped left or down and accidentally
791 * selected more; we are just snapping to whatever we're
794 if(TIMEDIFF(now
, sel
.tclick2
) <= tripleclicktimeout
) {
795 sel
.snap
= SNAP_LINE
;
796 } else if(TIMEDIFF(now
, sel
.tclick1
) <= doubleclicktimeout
) {
797 sel
.snap
= SNAP_WORD
;
801 selsnap(sel
.snap
, &sel
.bx
, &sel
.by
, -1);
802 selsnap(sel
.snap
, &sel
.ex
, &sel
.ey
, 1);
809 * Draw selection, unless it's regular and we don't want to
810 * make clicks visible
813 tsetdirt(sel
.b
.y
, sel
.e
.y
);
816 sel
.tclick2
= sel
.tclick1
;
818 } else if(e
->xbutton
.button
== Button4
) {
820 } else if(e
->xbutton
.button
== Button5
) {
828 int x
, y
, bufsize
, size
;
834 bufsize
= (term
.col
+1) * (sel
.e
.y
-sel
.b
.y
+1) * UTF_SIZ
;
835 ptr
= str
= xmalloc(bufsize
);
837 /* append every set & selected glyph to the selection */
838 for(y
= sel
.b
.y
; y
< sel
.e
.y
+ 1; y
++) {
839 gp
= &term
.line
[y
][0];
840 last
= gp
+ term
.col
;
842 while(--last
>= gp
&& !(selected(last
- gp
, y
) && \
843 strcmp(last
->c
, " ") != 0))
846 for(x
= 0; gp
<= last
; x
++, ++gp
) {
850 size
= utf8size(gp
->c
);
851 memcpy(ptr
, gp
->c
, size
);
856 * Copy and pasting of line endings is inconsistent
857 * in the inconsistent terminal and GUI world.
858 * The best solution seems like to produce '\n' when
859 * something is copied from st and convert '\n' to
860 * '\r', when something to be pasted is received by
862 * FIXME: Fix the computer world.
864 if(y
< sel
.e
.y
&& !((gp
-1)->mode
& ATTR_WRAP
))
873 selnotify(XEvent
*e
) {
874 ulong nitems
, ofs
, rem
;
876 uchar
*data
, *last
, *repl
;
881 if(XGetWindowProperty(xw
.dpy
, xw
.win
, XA_PRIMARY
, ofs
, BUFSIZ
/4,
882 False
, AnyPropertyType
, &type
, &format
,
883 &nitems
, &rem
, &data
)) {
884 fprintf(stderr
, "Clipboard allocation failed\n");
889 * As seen in selcopy:
890 * Line endings are inconsistent in the terminal and GUI world
891 * copy and pasting. When receiving some selection data,
892 * replace all '\n' with '\r'.
893 * FIXME: Fix the computer world.
896 last
= data
+ nitems
* format
/ 8;
897 while((repl
= memchr(repl
, '\n', last
- repl
))) {
901 ttywrite((const char *)data
, nitems
* format
/ 8);
903 /* number of 32-bit chunks returned */
904 ofs
+= nitems
* format
/ 32;
909 selpaste(const Arg
*dummy
) {
910 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
911 xw
.win
, CurrentTime
);
915 clippaste(const Arg
*dummy
) {
918 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
919 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, XA_PRIMARY
,
920 xw
.win
, CurrentTime
);
924 selclear(XEvent
*e
) {
928 tsetdirt(sel
.b
.y
, sel
.e
.y
);
932 selrequest(XEvent
*e
) {
933 XSelectionRequestEvent
*xsre
;
935 Atom xa_targets
, string
;
937 xsre
= (XSelectionRequestEvent
*) e
;
938 xev
.type
= SelectionNotify
;
939 xev
.requestor
= xsre
->requestor
;
940 xev
.selection
= xsre
->selection
;
941 xev
.target
= xsre
->target
;
942 xev
.time
= xsre
->time
;
946 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
947 if(xsre
->target
== xa_targets
) {
948 /* respond with the supported type */
949 string
= sel
.xtarget
;
950 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
951 XA_ATOM
, 32, PropModeReplace
,
952 (uchar
*) &string
, 1);
953 xev
.property
= xsre
->property
;
954 } else if(xsre
->target
== sel
.xtarget
&& sel
.clip
!= NULL
) {
955 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
956 xsre
->target
, 8, PropModeReplace
,
957 (uchar
*) sel
.clip
, strlen(sel
.clip
));
958 xev
.property
= xsre
->property
;
961 /* all done, send a notification to the listener */
962 if(!XSendEvent(xsre
->display
, xsre
->requestor
, True
, 0, (XEvent
*) &xev
))
963 fprintf(stderr
, "Error sending SelectionNotify event\n");
968 /* register the selection for both the clipboard and the primary */
974 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, CurrentTime
);
976 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
977 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
981 brelease(XEvent
*e
) {
982 if(IS_SET(MODE_MOUSE
)) {
987 if(e
->xbutton
.button
== Button2
) {
989 } else if(e
->xbutton
.button
== Button1
) {
992 term
.dirty
[sel
.ey
] = 1;
993 if(sel
.bx
== sel
.ex
&& sel
.by
== sel
.ey
) {
1002 bmotion(XEvent
*e
) {
1003 int oldey
, oldex
, oldsby
, oldsey
;
1005 if(IS_SET(MODE_MOUSE
)) {
1019 if(oldey
!= sel
.ey
|| oldex
!= sel
.ex
) {
1020 tsetdirt(MIN(sel
.b
.y
, oldsby
), MAX(sel
.e
.y
, oldsey
));
1025 die(const char *errstr
, ...) {
1028 va_start(ap
, errstr
);
1029 vfprintf(stderr
, errstr
, ap
);
1037 char *envshell
= getenv("SHELL");
1038 const struct passwd
*pass
= getpwuid(getuid());
1039 char buf
[sizeof(long) * 8 + 1];
1041 unsetenv("COLUMNS");
1043 unsetenv("TERMCAP");
1046 setenv("LOGNAME", pass
->pw_name
, 1);
1047 setenv("USER", pass
->pw_name
, 1);
1048 setenv("SHELL", pass
->pw_shell
, 0);
1049 setenv("HOME", pass
->pw_dir
, 0);
1052 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1053 setenv("WINDOWID", buf
, 1);
1055 signal(SIGCHLD
, SIG_DFL
);
1056 signal(SIGHUP
, SIG_DFL
);
1057 signal(SIGINT
, SIG_DFL
);
1058 signal(SIGQUIT
, SIG_DFL
);
1059 signal(SIGTERM
, SIG_DFL
);
1060 signal(SIGALRM
, SIG_DFL
);
1062 DEFAULT(envshell
, shell
);
1063 setenv("TERM", termname
, 1);
1064 args
= opt_cmd
? opt_cmd
: (char *[]){envshell
, "-i", NULL
};
1065 execvp(args
[0], args
);
1073 if(waitpid(pid
, &stat
, 0) < 0)
1074 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
1076 if(WIFEXITED(stat
)) {
1077 exit(WEXITSTATUS(stat
));
1086 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1088 /* seems to work fine on linux, openbsd and freebsd */
1089 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1090 die("openpty failed: %s\n", SERRNO
);
1092 switch(pid
= fork()) {
1094 die("fork failed\n");
1097 setsid(); /* create a new process group */
1098 dup2(s
, STDIN_FILENO
);
1099 dup2(s
, STDOUT_FILENO
);
1100 dup2(s
, STDERR_FILENO
);
1101 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1102 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
1110 signal(SIGCHLD
, sigchld
);
1112 iofd
= (!strcmp(opt_io
, "-")) ?
1114 open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1116 fprintf(stderr
, "Error opening %s:%s\n",
1117 opt_io
, strerror(errno
));
1127 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
1129 fprintf(stderr
, "\n");
1134 static char buf
[BUFSIZ
];
1135 static int buflen
= 0;
1138 int charsize
; /* size of utf8 char in bytes */
1142 /* append read bytes to unprocessed bytes */
1143 if((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1144 die("Couldn't read from shell: %s\n", SERRNO
);
1146 /* process every complete utf8 char */
1149 while(buflen
>= UTF_SIZ
|| isfullutf8(ptr
,buflen
)) {
1150 charsize
= utf8decode(ptr
, &utf8c
);
1151 utf8encode(&utf8c
, s
);
1157 /* keep any uncomplete utf8 char for the next call */
1158 memmove(buf
, ptr
, buflen
);
1162 ttywrite(const char *s
, size_t n
) {
1163 if(write(cmdfd
, s
, n
) == -1)
1164 die("write error on tty: %s\n", SERRNO
);
1171 w
.ws_row
= term
.row
;
1172 w
.ws_col
= term
.col
;
1173 w
.ws_xpixel
= xw
.tw
;
1174 w
.ws_ypixel
= xw
.th
;
1175 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1176 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
1180 tsetdirt(int top
, int bot
) {
1183 LIMIT(top
, 0, term
.row
-1);
1184 LIMIT(bot
, 0, term
.row
-1);
1186 for(i
= top
; i
<= bot
; i
++)
1192 tsetdirt(0, term
.row
-1);
1199 if(mode
== CURSOR_SAVE
) {
1201 } else if(mode
== CURSOR_LOAD
) {
1211 term
.c
= (TCursor
){{
1215 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1217 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1218 for(i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1221 term
.bot
= term
.row
- 1;
1222 term
.mode
= MODE_WRAP
;
1224 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1226 tcursor(CURSOR_SAVE
);
1230 tnew(int col
, int row
) {
1231 memset(&term
, 0, sizeof(Term
));
1240 Line
*tmp
= term
.line
;
1242 term
.line
= term
.alt
;
1244 term
.mode
^= MODE_ALTSCREEN
;
1249 tscrolldown(int orig
, int n
) {
1253 LIMIT(n
, 0, term
.bot
-orig
+1);
1255 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
);
1257 for(i
= term
.bot
; i
>= orig
+n
; i
--) {
1258 temp
= term
.line
[i
];
1259 term
.line
[i
] = term
.line
[i
-n
];
1260 term
.line
[i
-n
] = temp
;
1263 term
.dirty
[i
-n
] = 1;
1270 tscrollup(int orig
, int n
) {
1273 LIMIT(n
, 0, term
.bot
-orig
+1);
1275 tclearregion(0, orig
, term
.col
-1, orig
+n
-1);
1277 for(i
= orig
; i
<= term
.bot
-n
; i
++) {
1278 temp
= term
.line
[i
];
1279 term
.line
[i
] = term
.line
[i
+n
];
1280 term
.line
[i
+n
] = temp
;
1283 term
.dirty
[i
+n
] = 1;
1286 selscroll(orig
, -n
);
1290 selscroll(int orig
, int n
) {
1294 if(BETWEEN(sel
.by
, orig
, term
.bot
) || BETWEEN(sel
.ey
, orig
, term
.bot
)) {
1295 if((sel
.by
+= n
) > term
.bot
|| (sel
.ey
+= n
) < term
.top
) {
1299 if(sel
.type
== SEL_RECTANGULAR
) {
1300 if(sel
.by
< term
.top
)
1302 if(sel
.ey
> term
.bot
)
1305 if(sel
.by
< term
.top
) {
1309 if(sel
.ey
> term
.bot
) {
1314 sel
.b
.y
= sel
.by
, sel
.b
.x
= sel
.bx
;
1315 sel
.e
.y
= sel
.ey
, sel
.e
.x
= sel
.ex
;
1320 tnewline(int first_col
) {
1324 tscrollup(term
.top
, 1);
1328 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1333 char *p
= csiescseq
.buf
, *np
;
1342 csiescseq
.buf
[csiescseq
.len
] = '\0';
1343 while(p
< csiescseq
.buf
+csiescseq
.len
) {
1345 v
= strtol(p
, &np
, 10);
1348 if(v
== LONG_MAX
|| v
== LONG_MIN
)
1350 csiescseq
.arg
[csiescseq
.narg
++] = v
;
1352 if(*p
!= ';' || csiescseq
.narg
== ESC_ARG_SIZ
)
1356 csiescseq
.mode
= *p
;
1359 /* for absolute user moves, when decom is set */
1361 tmoveato(int x
, int y
) {
1362 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1366 tmoveto(int x
, int y
) {
1369 if(term
.c
.state
& CURSOR_ORIGIN
) {
1374 maxy
= term
.row
- 1;
1376 LIMIT(x
, 0, term
.col
-1);
1377 LIMIT(y
, miny
, maxy
);
1378 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1384 tsetchar(char *c
, Glyph
*attr
, int x
, int y
) {
1385 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1386 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1387 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1388 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1389 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1390 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1391 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1392 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1393 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1397 * The table is proudly stolen from rxvt.
1399 if(attr
->mode
& ATTR_GFX
) {
1400 if(c
[0] >= 0x41 && c
[0] <= 0x7e
1401 && vt100_0
[c
[0] - 0x41]) {
1402 c
= vt100_0
[c
[0] - 0x41];
1407 term
.line
[y
][x
] = *attr
;
1408 memcpy(term
.line
[y
][x
].c
, c
, UTF_SIZ
);
1412 tclearregion(int x1
, int y1
, int x2
, int y2
) {
1413 int x
, y
, temp
, mask
;
1416 temp
= x1
, x1
= x2
, x2
= temp
;
1418 temp
= y1
, y1
= y2
, y2
= temp
;
1420 LIMIT(x1
, 0, term
.col
-1);
1421 LIMIT(x2
, 0, term
.col
-1);
1422 LIMIT(y1
, 0, term
.row
-1);
1423 LIMIT(y2
, 0, term
.row
-1);
1425 for(y
= y1
; y
<= y2
; y
++) {
1427 for(x
= x1
; x
<= x2
; x
++) {
1428 mask
= selected(x
, y
) ? ATTR_REVERSE
: 0;
1429 term
.line
[y
][x
] = term
.c
.attr
;
1430 term
.line
[y
][x
].mode
^= mask
;
1431 memcpy(term
.line
[y
][x
].c
, " ", 2);
1437 tdeletechar(int n
) {
1438 int src
= term
.c
.x
+ n
;
1440 int size
= term
.col
- src
;
1442 term
.dirty
[term
.c
.y
] = 1;
1444 if(src
>= term
.col
) {
1445 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1449 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1450 size
* sizeof(Glyph
));
1451 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1455 tinsertblank(int n
) {
1458 int size
= term
.col
- dst
;
1460 term
.dirty
[term
.c
.y
] = 1;
1462 if(dst
>= term
.col
) {
1463 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1467 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1468 size
* sizeof(Glyph
));
1469 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
1473 tinsertblankline(int n
) {
1474 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1477 tscrolldown(term
.c
.y
, n
);
1481 tdeleteline(int n
) {
1482 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1485 tscrollup(term
.c
.y
, n
);
1489 tsetattr(int *attr
, int l
) {
1492 for(i
= 0; i
< l
; i
++) {
1495 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE \
1496 | ATTR_BOLD
| ATTR_ITALIC \
1498 term
.c
.attr
.fg
= defaultfg
;
1499 term
.c
.attr
.bg
= defaultbg
;
1502 term
.c
.attr
.mode
|= ATTR_BOLD
;
1505 term
.c
.attr
.mode
|= ATTR_ITALIC
;
1508 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
1510 case 5: /* slow blink */
1511 case 6: /* rapid blink */
1512 term
.c
.attr
.mode
|= ATTR_BLINK
;
1515 term
.c
.attr
.mode
|= ATTR_REVERSE
;
1519 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
1522 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
1525 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
1529 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
1532 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
1535 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1537 if(BETWEEN(attr
[i
], 0, 255)) {
1538 term
.c
.attr
.fg
= attr
[i
];
1541 "erresc: bad fgcolor %d\n",
1546 "erresc(38): gfx attr %d unknown\n",
1551 term
.c
.attr
.fg
= defaultfg
;
1554 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1556 if(BETWEEN(attr
[i
], 0, 255)) {
1557 term
.c
.attr
.bg
= attr
[i
];
1560 "erresc: bad bgcolor %d\n",
1565 "erresc(48): gfx attr %d unknown\n",
1570 term
.c
.attr
.bg
= defaultbg
;
1573 if(BETWEEN(attr
[i
], 30, 37)) {
1574 term
.c
.attr
.fg
= attr
[i
] - 30;
1575 } else if(BETWEEN(attr
[i
], 40, 47)) {
1576 term
.c
.attr
.bg
= attr
[i
] - 40;
1577 } else if(BETWEEN(attr
[i
], 90, 97)) {
1578 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
1579 } else if(BETWEEN(attr
[i
], 100, 107)) {
1580 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
1583 "erresc(default): gfx attr %d unknown\n",
1584 attr
[i
]), csidump();
1592 tsetscroll(int t
, int b
) {
1595 LIMIT(t
, 0, term
.row
-1);
1596 LIMIT(b
, 0, term
.row
-1);
1606 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
1609 tsetmode(bool priv
, bool set
, int *args
, int narg
) {
1613 for(lim
= args
+ narg
; args
< lim
; ++args
) {
1617 case 1: /* DECCKM -- Cursor key */
1618 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
1620 case 5: /* DECSCNM -- Reverse video */
1622 MODBIT(term
.mode
, set
, MODE_REVERSE
);
1623 if(mode
!= term
.mode
)
1624 redraw(REDRAW_TIMEOUT
);
1626 case 6: /* DECOM -- Origin */
1627 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
1630 case 7: /* DECAWM -- Auto wrap */
1631 MODBIT(term
.mode
, set
, MODE_WRAP
);
1633 case 0: /* Error (IGNORED) */
1634 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
1635 case 3: /* DECCOLM -- Column (IGNORED) */
1636 case 4: /* DECSCLM -- Scroll (IGNORED) */
1637 case 8: /* DECARM -- Auto repeat (IGNORED) */
1638 case 18: /* DECPFF -- Printer feed (IGNORED) */
1639 case 19: /* DECPEX -- Printer extent (IGNORED) */
1640 case 42: /* DECNRCM -- National characters (IGNORED) */
1641 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1643 case 25: /* DECTCEM -- Text Cursor Enable Mode */
1644 MODBIT(term
.mode
, !set
, MODE_HIDE
);
1646 case 1000: /* 1000,1002: enable xterm mouse report */
1647 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
1648 MODBIT(term
.mode
, 0, MODE_MOUSEMOTION
);
1651 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
1652 MODBIT(term
.mode
, 0, MODE_MOUSEBTN
);
1655 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
1658 MODBIT(term
.mode
, set
, MODE_8BIT
);
1660 case 1049: /* = 1047 and 1048 */
1663 if (!allowaltscreen
)
1666 alt
= IS_SET(MODE_ALTSCREEN
);
1668 tclearregion(0, 0, term
.col
-1,
1671 if(set
^ alt
) /* set is always 1 or 0 */
1677 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
1681 "erresc: unknown private set/reset mode %d\n",
1687 case 0: /* Error (IGNORED) */
1689 case 2: /* KAM -- keyboard action */
1690 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
1692 case 4: /* IRM -- Insertion-replacement */
1693 MODBIT(term
.mode
, set
, MODE_INSERT
);
1695 case 12: /* SRM -- Send/Receive */
1696 MODBIT(term
.mode
, !set
, MODE_ECHO
);
1698 case 20: /* LNM -- Linefeed/new line */
1699 MODBIT(term
.mode
, set
, MODE_CRLF
);
1703 "erresc: unknown set/reset mode %d\n",
1715 switch(csiescseq
.mode
) {
1718 fprintf(stderr
, "erresc: unknown csi ");
1722 case '@': /* ICH -- Insert <n> blank char */
1723 DEFAULT(csiescseq
.arg
[0], 1);
1724 tinsertblank(csiescseq
.arg
[0]);
1726 case 'A': /* CUU -- Cursor <n> Up */
1727 DEFAULT(csiescseq
.arg
[0], 1);
1728 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
1730 case 'B': /* CUD -- Cursor <n> Down */
1731 case 'e': /* VPR --Cursor <n> Down */
1732 DEFAULT(csiescseq
.arg
[0], 1);
1733 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
1735 case 'c': /* DA -- Device Attributes */
1736 if(csiescseq
.arg
[0] == 0)
1737 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
1739 case 'C': /* CUF -- Cursor <n> Forward */
1740 case 'a': /* HPR -- Cursor <n> Forward */
1741 DEFAULT(csiescseq
.arg
[0], 1);
1742 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
1744 case 'D': /* CUB -- Cursor <n> Backward */
1745 DEFAULT(csiescseq
.arg
[0], 1);
1746 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
1748 case 'E': /* CNL -- Cursor <n> Down and first col */
1749 DEFAULT(csiescseq
.arg
[0], 1);
1750 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
1752 case 'F': /* CPL -- Cursor <n> Up and first col */
1753 DEFAULT(csiescseq
.arg
[0], 1);
1754 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
1756 case 'g': /* TBC -- Tabulation clear */
1757 switch(csiescseq
.arg
[0]) {
1758 case 0: /* clear current tab stop */
1759 term
.tabs
[term
.c
.x
] = 0;
1761 case 3: /* clear all the tabs */
1762 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1768 case 'G': /* CHA -- Move to <col> */
1770 DEFAULT(csiescseq
.arg
[0], 1);
1771 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
1773 case 'H': /* CUP -- Move to <row> <col> */
1775 DEFAULT(csiescseq
.arg
[0], 1);
1776 DEFAULT(csiescseq
.arg
[1], 1);
1777 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
1779 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
1780 DEFAULT(csiescseq
.arg
[0], 1);
1781 while(csiescseq
.arg
[0]--)
1784 case 'J': /* ED -- Clear screen */
1786 switch(csiescseq
.arg
[0]) {
1788 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1789 if(term
.c
.y
< term
.row
-1) {
1790 tclearregion(0, term
.c
.y
+1, term
.col
-1,
1796 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1);
1797 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1800 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1806 case 'K': /* EL -- Clear line */
1807 switch(csiescseq
.arg
[0]) {
1809 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
1813 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1816 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
1820 case 'S': /* SU -- Scroll <n> line up */
1821 DEFAULT(csiescseq
.arg
[0], 1);
1822 tscrollup(term
.top
, csiescseq
.arg
[0]);
1824 case 'T': /* SD -- Scroll <n> line down */
1825 DEFAULT(csiescseq
.arg
[0], 1);
1826 tscrolldown(term
.top
, csiescseq
.arg
[0]);
1828 case 'L': /* IL -- Insert <n> blank lines */
1829 DEFAULT(csiescseq
.arg
[0], 1);
1830 tinsertblankline(csiescseq
.arg
[0]);
1832 case 'l': /* RM -- Reset Mode */
1833 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
1835 case 'M': /* DL -- Delete <n> lines */
1836 DEFAULT(csiescseq
.arg
[0], 1);
1837 tdeleteline(csiescseq
.arg
[0]);
1839 case 'X': /* ECH -- Erase <n> char */
1840 DEFAULT(csiescseq
.arg
[0], 1);
1841 tclearregion(term
.c
.x
, term
.c
.y
,
1842 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
);
1844 case 'P': /* DCH -- Delete <n> char */
1845 DEFAULT(csiescseq
.arg
[0], 1);
1846 tdeletechar(csiescseq
.arg
[0]);
1848 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
1849 DEFAULT(csiescseq
.arg
[0], 1);
1850 while(csiescseq
.arg
[0]--)
1853 case 'd': /* VPA -- Move to <row> */
1854 DEFAULT(csiescseq
.arg
[0], 1);
1855 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
1857 case 'h': /* SM -- Set terminal mode */
1858 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
1860 case 'm': /* SGR -- Terminal attribute (color) */
1861 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
1863 case 'r': /* DECSTBM -- Set Scrolling Region */
1864 if(csiescseq
.priv
) {
1867 DEFAULT(csiescseq
.arg
[0], 1);
1868 DEFAULT(csiescseq
.arg
[1], term
.row
);
1869 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
1873 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
1874 tcursor(CURSOR_SAVE
);
1876 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
1877 tcursor(CURSOR_LOAD
);
1888 for(i
= 0; i
< csiescseq
.len
; i
++) {
1889 c
= csiescseq
.buf
[i
] & 0xff;
1892 } else if(c
== '\n') {
1894 } else if(c
== '\r') {
1896 } else if(c
== 0x1b) {
1899 printf("(%02x)", c
);
1907 memset(&csiescseq
, 0, sizeof(csiescseq
));
1916 narg
= strescseq
.narg
;
1918 switch(strescseq
.type
) {
1919 case ']': /* OSC -- Operating System Command */
1920 switch(i
= atoi(strescseq
.args
[0])) {
1925 xsettitle(strescseq
.args
[1]);
1927 case 4: /* color set */
1930 p
= strescseq
.args
[2];
1932 case 104: /* color reset, here p = NULL */
1933 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
1934 if (!xsetcolorname(j
, p
)) {
1935 fprintf(stderr
, "erresc: invalid color %s\n", p
);
1938 * TODO if defaultbg color is changed, borders
1945 fprintf(stderr
, "erresc: unknown str ");
1950 case 'k': /* old title set compatibility */
1951 xsettitle(strescseq
.args
[0]);
1953 case 'P': /* DSC -- Device Control String */
1954 case '_': /* APC -- Application Program Command */
1955 case '^': /* PM -- Privacy Message */
1957 fprintf(stderr
, "erresc: unknown str ");
1966 char *p
= strescseq
.buf
;
1969 strescseq
.buf
[strescseq
.len
] = '\0';
1970 while(p
&& strescseq
.narg
< STR_ARG_SIZ
)
1971 strescseq
.args
[strescseq
.narg
++] = strsep(&p
, ";");
1979 printf("ESC%c", strescseq
.type
);
1980 for(i
= 0; i
< strescseq
.len
; i
++) {
1981 c
= strescseq
.buf
[i
] & 0xff;
1984 } else if(isprint(c
)) {
1986 } else if(c
== '\n') {
1988 } else if(c
== '\r') {
1990 } else if(c
== 0x1b) {
1993 printf("(%02x)", c
);
2001 memset(&strescseq
, 0, sizeof(strescseq
));
2005 tputtab(bool forward
) {
2011 for(++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
2016 for(--x
; x
> 0 && !term
.tabs
[x
]; --x
)
2019 tmoveto(x
, term
.c
.y
);
2023 techo(char *buf
, int len
) {
2024 for(; len
> 0; buf
++, len
--) {
2027 if(c
== '\033') { /* escape */
2030 } else if(c
< '\x20') { /* control code */
2031 if(c
!= '\n' && c
!= '\r' && c
!= '\t') {
2045 tputc(char *c
, int len
) {
2047 bool control
= ascii
< '\x20' || ascii
== 0177;
2050 if(xwrite(iofd
, c
, len
) < 0) {
2051 fprintf(stderr
, "Error writing in %s:%s\n",
2052 opt_io
, strerror(errno
));
2059 * STR sequences must be checked before anything else
2060 * because it can use some control codes as part of the sequence.
2062 if(term
.esc
& ESC_STR
) {
2065 term
.esc
= ESC_START
| ESC_STR_END
;
2067 case '\a': /* backwards compatibility to xterm */
2072 if(strescseq
.len
+ len
< sizeof(strescseq
.buf
) - 1) {
2073 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2074 strescseq
.len
+= len
;
2077 * Here is a bug in terminals. If the user never sends
2078 * some code to stop the str or esc command, then st
2079 * will stop responding. But this is better than
2080 * silently failing with unknown characters. At least
2081 * then users will report back.
2083 * In the case users ever get fixed, here is the code:
2095 * Actions of control codes must be performed as soon they arrive
2096 * because they can be embedded inside a control sequence, and
2097 * they must not cause conflicts with sequences.
2105 tmoveto(term
.c
.x
-1, term
.c
.y
);
2108 tmoveto(0, term
.c
.y
);
2113 /* go to first col if the mode is set */
2114 tnewline(IS_SET(MODE_CRLF
));
2116 case '\a': /* BEL */
2117 if(!(xw
.state
& WIN_FOCUSED
))
2120 case '\033': /* ESC */
2122 term
.esc
= ESC_START
;
2124 case '\016': /* SO */
2125 case '\017': /* SI */
2127 * Different charsets are hard to handle. Applications
2128 * should use the right alt charset escapes for the
2129 * only reason they still exist: line drawing. The
2130 * rest is incompatible history st should not support.
2133 case '\032': /* SUB */
2134 case '\030': /* CAN */
2137 case '\005': /* ENQ (IGNORED) */
2138 case '\000': /* NUL (IGNORED) */
2139 case '\021': /* XON (IGNORED) */
2140 case '\023': /* XOFF (IGNORED) */
2141 case 0177: /* DEL (IGNORED) */
2144 } else if(term
.esc
& ESC_START
) {
2145 if(term
.esc
& ESC_CSI
) {
2146 csiescseq
.buf
[csiescseq
.len
++] = ascii
;
2147 if(BETWEEN(ascii
, 0x40, 0x7E)
2148 || csiescseq
.len
>= \
2149 sizeof(csiescseq
.buf
)-1) {
2154 } else if(term
.esc
& ESC_STR_END
) {
2158 } else if(term
.esc
& ESC_ALTCHARSET
) {
2160 case '0': /* Line drawing set */
2161 term
.c
.attr
.mode
|= ATTR_GFX
;
2163 case 'B': /* USASCII */
2164 term
.c
.attr
.mode
&= ~ATTR_GFX
;
2166 case 'A': /* UK (IGNORED) */
2167 case '<': /* multinational charset (IGNORED) */
2168 case '5': /* Finnish (IGNORED) */
2169 case 'C': /* Finnish (IGNORED) */
2170 case 'K': /* German (IGNORED) */
2173 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2176 } else if(term
.esc
& ESC_TEST
) {
2177 if(ascii
== '8') { /* DEC screen alignment test. */
2178 char E
[UTF_SIZ
] = "E";
2181 for(x
= 0; x
< term
.col
; ++x
) {
2182 for(y
= 0; y
< term
.row
; ++y
)
2183 tsetchar(E
, &term
.c
.attr
, x
, y
);
2190 term
.esc
|= ESC_CSI
;
2193 term
.esc
|= ESC_TEST
;
2195 case 'P': /* DCS -- Device Control String */
2196 case '_': /* APC -- Application Program Command */
2197 case '^': /* PM -- Privacy Message */
2198 case ']': /* OSC -- Operating System Command */
2199 case 'k': /* old title set compatibility */
2201 strescseq
.type
= ascii
;
2202 term
.esc
|= ESC_STR
;
2204 case '(': /* set primary charset G0 */
2205 term
.esc
|= ESC_ALTCHARSET
;
2207 case ')': /* set secondary charset G1 (IGNORED) */
2208 case '*': /* set tertiary charset G2 (IGNORED) */
2209 case '+': /* set quaternary charset G3 (IGNORED) */
2212 case 'D': /* IND -- Linefeed */
2213 if(term
.c
.y
== term
.bot
) {
2214 tscrollup(term
.top
, 1);
2216 tmoveto(term
.c
.x
, term
.c
.y
+1);
2220 case 'E': /* NEL -- Next line */
2221 tnewline(1); /* always go to first col */
2224 case 'H': /* HTS -- Horizontal tab stop */
2225 term
.tabs
[term
.c
.x
] = 1;
2228 case 'M': /* RI -- Reverse index */
2229 if(term
.c
.y
== term
.top
) {
2230 tscrolldown(term
.top
, 1);
2232 tmoveto(term
.c
.x
, term
.c
.y
-1);
2236 case 'Z': /* DECID -- Identify Terminal */
2237 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
2240 case 'c': /* RIS -- Reset to inital state */
2245 case '=': /* DECPAM -- Application keypad */
2246 term
.mode
|= MODE_APPKEYPAD
;
2249 case '>': /* DECPNM -- Normal keypad */
2250 term
.mode
&= ~MODE_APPKEYPAD
;
2253 case '7': /* DECSC -- Save Cursor */
2254 tcursor(CURSOR_SAVE
);
2257 case '8': /* DECRC -- Restore Cursor */
2258 tcursor(CURSOR_LOAD
);
2261 case '\\': /* ST -- Stop */
2265 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2266 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2271 * All characters which form part of a sequence are not
2277 * Display control codes only if we are in graphic mode
2279 if(control
&& !(term
.c
.attr
.mode
& ATTR_GFX
))
2281 if(sel
.bx
!= -1 && BETWEEN(term
.c
.y
, sel
.by
, sel
.ey
))
2283 if(IS_SET(MODE_WRAP
) && (term
.c
.state
& CURSOR_WRAPNEXT
)) {
2284 term
.line
[term
.c
.y
][term
.c
.x
].mode
|= ATTR_WRAP
;
2288 if(IS_SET(MODE_INSERT
) && term
.c
.x
+1 < term
.col
) {
2289 memmove(&term
.line
[term
.c
.y
][term
.c
.x
+1],
2290 &term
.line
[term
.c
.y
][term
.c
.x
],
2291 (term
.col
- term
.c
.x
- 1) * sizeof(Glyph
));
2294 tsetchar(c
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2295 if(term
.c
.x
+1 < term
.col
) {
2296 tmoveto(term
.c
.x
+1, term
.c
.y
);
2298 term
.c
.state
|= CURSOR_WRAPNEXT
;
2303 tresize(int col
, int row
) {
2305 int minrow
= MIN(row
, term
.row
);
2306 int mincol
= MIN(col
, term
.col
);
2307 int slide
= term
.c
.y
- row
+ 1;
2311 if(col
< 1 || row
< 1)
2314 /* free unneeded rows */
2318 * slide screen to keep cursor where we expect it -
2319 * tscrollup would work here, but we can optimize to
2320 * memmove because we're freeing the earlier lines
2322 for(/* i = 0 */; i
< slide
; i
++) {
2326 memmove(term
.line
, term
.line
+ slide
, row
* sizeof(Line
));
2327 memmove(term
.alt
, term
.alt
+ slide
, row
* sizeof(Line
));
2329 for(i
+= row
; i
< term
.row
; i
++) {
2334 /* resize to new height */
2335 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
2336 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
2337 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
2338 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
2340 /* resize each row to new width, zero-pad if needed */
2341 for(i
= 0; i
< minrow
; i
++) {
2343 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
2344 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
2347 /* allocate any new rows */
2348 for(/* i == minrow */; i
< row
; i
++) {
2350 term
.line
[i
] = xcalloc(col
, sizeof(Glyph
));
2351 term
.alt
[i
] = xcalloc(col
, sizeof(Glyph
));
2353 if(col
> term
.col
) {
2354 bp
= term
.tabs
+ term
.col
;
2356 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
2357 while(--bp
> term
.tabs
&& !*bp
)
2359 for(bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
2362 /* update terminal size */
2365 /* reset scrolling region */
2366 tsetscroll(0, row
-1);
2367 /* make use of the LIMIT in tmoveto */
2368 tmoveto(term
.c
.x
, term
.c
.y
);
2369 /* Clearing both screens */
2372 if(mincol
< col
&& 0 < minrow
) {
2373 tclearregion(mincol
, 0, col
- 1, minrow
- 1);
2375 if(0 < col
&& minrow
< row
) {
2376 tclearregion(0, minrow
, col
- 1, row
- 1);
2379 } while(orig
!= term
.line
);
2385 xresize(int col
, int row
) {
2386 xw
.tw
= MAX(1, col
* xw
.cw
);
2387 xw
.th
= MAX(1, row
* xw
.ch
);
2389 XFreePixmap(xw
.dpy
, xw
.buf
);
2390 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2391 DefaultDepth(xw
.dpy
, xw
.scr
));
2392 XftDrawChange(xw
.draw
, xw
.buf
);
2393 xclear(0, 0, xw
.w
, xw
.h
);
2396 static inline ushort
2397 sixd_to_16bit(int x
) {
2398 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
2404 XRenderColor color
= { .alpha
= 0xffff };
2406 /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
2407 for(i
= 0; i
< LEN(colorname
); i
++) {
2410 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, colorname
[i
], &dc
.col
[i
])) {
2411 die("Could not allocate color '%s'\n", colorname
[i
]);
2415 /* load colors [16-255] ; same colors as xterm */
2416 for(i
= 16, r
= 0; r
< 6; r
++) {
2417 for(g
= 0; g
< 6; g
++) {
2418 for(b
= 0; b
< 6; b
++) {
2419 color
.red
= sixd_to_16bit(r
);
2420 color
.green
= sixd_to_16bit(g
);
2421 color
.blue
= sixd_to_16bit(b
);
2422 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &dc
.col
[i
])) {
2423 die("Could not allocate color %d\n", i
);
2430 for(r
= 0; r
< 24; r
++, i
++) {
2431 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
2432 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
,
2434 die("Could not allocate color %d\n", i
);
2440 xsetcolorname(int x
, const char *name
) {
2441 XRenderColor color
= { .alpha
= 0xffff };
2443 if (x
< 0 || x
> LEN(colorname
))
2446 if(16 <= x
&& x
< 16 + 216) {
2447 int r
= (x
- 16) / 36, g
= ((x
- 16) % 36) / 6, b
= (x
- 16) % 6;
2448 color
.red
= sixd_to_16bit(r
);
2449 color
.green
= sixd_to_16bit(g
);
2450 color
.blue
= sixd_to_16bit(b
);
2451 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2452 return 0; /* something went wrong */
2455 } else if (16 + 216 <= x
&& x
< 256) {
2456 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * (x
- (16 + 216));
2457 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2458 return 0; /* something went wrong */
2462 name
= colorname
[x
];
2465 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, &colour
))
2472 xtermclear(int col1
, int row1
, int col2
, int row2
) {
2473 XftDrawRect(xw
.draw
,
2474 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
2475 borderpx
+ col1
* xw
.cw
,
2476 borderpx
+ row1
* xw
.ch
,
2477 (col2
-col1
+1) * xw
.cw
,
2478 (row2
-row1
+1) * xw
.ch
);
2482 * Absolute coordinates.
2485 xclear(int x1
, int y1
, int x2
, int y2
) {
2486 XftDrawRect(xw
.draw
,
2487 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
2488 x1
, y1
, x2
-x1
, y2
-y1
);
2493 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
2494 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
2495 XSizeHints
*sizeh
= NULL
;
2497 sizeh
= XAllocSizeHints();
2498 if(xw
.isfixed
== False
) {
2499 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
2500 sizeh
->height
= xw
.h
;
2501 sizeh
->width
= xw
.w
;
2502 sizeh
->height_inc
= xw
.ch
;
2503 sizeh
->width_inc
= xw
.cw
;
2504 sizeh
->base_height
= 2 * borderpx
;
2505 sizeh
->base_width
= 2 * borderpx
;
2507 sizeh
->flags
= PMaxSize
| PMinSize
;
2508 sizeh
->min_width
= sizeh
->max_width
= xw
.fw
;
2509 sizeh
->min_height
= sizeh
->max_height
= xw
.fh
;
2512 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
, &class);
2517 xloadfont(Font
*f
, FcPattern
*pattern
) {
2521 match
= FcFontMatch(NULL
, pattern
, &result
);
2525 if(!(f
->set
= FcFontSort(0, match
, FcTrue
, 0, &result
))) {
2526 FcPatternDestroy(match
);
2530 if(!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
2531 FcPatternDestroy(match
);
2535 f
->pattern
= FcPatternDuplicate(pattern
);
2537 f
->ascent
= f
->match
->ascent
;
2538 f
->descent
= f
->match
->descent
;
2540 f
->rbearing
= f
->match
->max_advance_width
;
2542 f
->height
= f
->ascent
+ f
->descent
;
2543 f
->width
= f
->lbearing
+ f
->rbearing
;
2549 xloadfonts(char *fontstr
, int fontsize
) {
2554 if(fontstr
[0] == '-') {
2555 pattern
= XftXlfdParse(fontstr
, False
, False
);
2557 pattern
= FcNameParse((FcChar8
*)fontstr
);
2561 die("st: can't open font %s\n", fontstr
);
2564 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
2565 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
2566 usedfontsize
= fontsize
;
2568 result
= FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
);
2569 if(result
== FcResultMatch
) {
2570 usedfontsize
= (int)fontval
;
2573 * Default font size is 12, if none given. This is to
2574 * have a known usedfontsize value.
2576 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
2581 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
2582 FcDefaultSubstitute(pattern
);
2584 if(xloadfont(&dc
.font
, pattern
))
2585 die("st: can't open font %s\n", fontstr
);
2587 /* Setting character width and height. */
2588 xw
.cw
= dc
.font
.width
;
2589 xw
.ch
= dc
.font
.height
;
2591 FcPatternDel(pattern
, FC_SLANT
);
2592 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
2593 if(xloadfont(&dc
.ifont
, pattern
))
2594 die("st: can't open font %s\n", fontstr
);
2596 FcPatternDel(pattern
, FC_WEIGHT
);
2597 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
2598 if(xloadfont(&dc
.ibfont
, pattern
))
2599 die("st: can't open font %s\n", fontstr
);
2601 FcPatternDel(pattern
, FC_SLANT
);
2602 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
2603 if(xloadfont(&dc
.bfont
, pattern
))
2604 die("st: can't open font %s\n", fontstr
);
2606 FcPatternDestroy(pattern
);
2610 xunloadfonts(void) {
2614 * Free the loaded fonts in the font cache. This is done backwards
2617 for(i
= 0, ip
= frccur
; i
< frclen
; i
++, ip
--) {
2620 XftFontClose(xw
.dpy
, frc
[ip
].font
);
2625 XftFontClose(xw
.dpy
, dc
.font
.match
);
2626 FcPatternDestroy(dc
.font
.pattern
);
2627 FcFontSetDestroy(dc
.font
.set
);
2628 XftFontClose(xw
.dpy
, dc
.bfont
.match
);
2629 FcPatternDestroy(dc
.bfont
.pattern
);
2630 FcFontSetDestroy(dc
.bfont
.set
);
2631 XftFontClose(xw
.dpy
, dc
.ifont
.match
);
2632 FcPatternDestroy(dc
.ifont
.pattern
);
2633 FcFontSetDestroy(dc
.ifont
.set
);
2634 XftFontClose(xw
.dpy
, dc
.ibfont
.match
);
2635 FcPatternDestroy(dc
.ibfont
.pattern
);
2636 FcFontSetDestroy(dc
.ibfont
.set
);
2640 xzoom(const Arg
*arg
) {
2642 xloadfonts(usedfont
, usedfontsize
+ arg
->i
);
2649 XSetWindowAttributes attrs
;
2655 if(!(xw
.dpy
= XOpenDisplay(NULL
)))
2656 die("Can't open display\n");
2657 xw
.scr
= XDefaultScreen(xw
.dpy
);
2658 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
2662 die("Could not init fontconfig.\n");
2664 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
2665 xloadfonts(usedfont
, 0);
2668 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
2671 /* adjust fixed window geometry */
2673 sw
= DisplayWidth(xw
.dpy
, xw
.scr
);
2674 sh
= DisplayHeight(xw
.dpy
, xw
.scr
);
2676 xw
.fx
= sw
+ xw
.fx
- xw
.fw
- 1;
2678 xw
.fy
= sh
+ xw
.fy
- xw
.fh
- 1;
2683 /* window - default size */
2684 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
2685 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
2691 attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
2692 attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
2693 attrs
.bit_gravity
= NorthWestGravity
;
2694 attrs
.event_mask
= FocusChangeMask
| KeyPressMask
2695 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
2696 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
2697 attrs
.colormap
= xw
.cmap
;
2699 parent
= opt_embed
? strtol(opt_embed
, NULL
, 0) : \
2700 XRootWindow(xw
.dpy
, xw
.scr
);
2701 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.fx
, xw
.fy
,
2702 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
2704 CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2708 memset(&gcvalues
, 0, sizeof(gcvalues
));
2709 gcvalues
.graphics_exposures
= False
;
2710 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
2712 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2713 DefaultDepth(xw
.dpy
, xw
.scr
));
2714 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
2715 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
2717 /* Xft rendering context */
2718 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
2721 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2722 XSetLocaleModifiers("@im=local");
2723 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2724 XSetLocaleModifiers("@im=");
2725 if((xw
.xim
= XOpenIM(xw
.dpy
,
2726 NULL
, NULL
, NULL
)) == NULL
) {
2727 die("XOpenIM failed. Could not open input"
2732 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
2733 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
2734 XNFocusWindow
, xw
.win
, NULL
);
2736 die("XCreateIC failed. Could not obtain input method.\n");
2738 /* white cursor, black outline */
2739 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
2740 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
2741 XRecolorCursor(xw
.dpy
, cursor
,
2742 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
2743 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
2745 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
2746 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
2747 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
2750 XMapWindow(xw
.dpy
, xw
.win
);
2756 xdraws(char *s
, Glyph base
, int x
, int y
, int charlen
, int bytelen
) {
2757 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
2758 width
= charlen
* xw
.cw
, xp
, i
;
2760 int u8fl
, u8fblen
, u8cblen
, doesexist
;
2763 Font
*font
= &dc
.font
;
2765 FcPattern
*fcpattern
, *fontpattern
;
2766 FcFontSet
*fcsets
[] = { NULL
};
2767 FcCharSet
*fccharset
;
2768 Colour
*fg
, *bg
, *temp
, revfg
, revbg
;
2769 XRenderColor colfg
, colbg
;
2772 frcflags
= FRC_NORMAL
;
2774 if(base
.mode
& ATTR_ITALIC
) {
2775 if(base
.fg
== defaultfg
)
2776 base
.fg
= defaultitalic
;
2778 frcflags
= FRC_ITALIC
;
2779 } else if((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
)) {
2780 if(base
.fg
== defaultfg
)
2781 base
.fg
= defaultitalic
;
2783 frcflags
= FRC_ITALICBOLD
;
2784 } else if(base
.mode
& ATTR_UNDERLINE
) {
2785 if(base
.fg
== defaultfg
)
2786 base
.fg
= defaultunderline
;
2788 fg
= &dc
.col
[base
.fg
];
2789 bg
= &dc
.col
[base
.bg
];
2791 if(base
.mode
& ATTR_BOLD
) {
2792 if(BETWEEN(base
.fg
, 0, 7)) {
2793 /* basic system colors */
2794 fg
= &dc
.col
[base
.fg
+ 8];
2795 } else if(BETWEEN(base
.fg
, 16, 195)) {
2797 fg
= &dc
.col
[base
.fg
+ 36];
2798 } else if(BETWEEN(base
.fg
, 232, 251)) {
2800 fg
= &dc
.col
[base
.fg
+ 4];
2803 * Those ranges will not be brightened:
2804 * 8 - 15 – bright system colors
2805 * 196 - 231 – highest 256 color cube
2806 * 252 - 255 – brightest colors in greyscale
2809 frcflags
= FRC_BOLD
;
2812 if(IS_SET(MODE_REVERSE
)) {
2813 if(fg
== &dc
.col
[defaultfg
]) {
2814 fg
= &dc
.col
[defaultbg
];
2816 colfg
.red
= ~fg
->color
.red
;
2817 colfg
.green
= ~fg
->color
.green
;
2818 colfg
.blue
= ~fg
->color
.blue
;
2819 colfg
.alpha
= fg
->color
.alpha
;
2820 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
2824 if(bg
== &dc
.col
[defaultbg
]) {
2825 bg
= &dc
.col
[defaultfg
];
2827 colbg
.red
= ~bg
->color
.red
;
2828 colbg
.green
= ~bg
->color
.green
;
2829 colbg
.blue
= ~bg
->color
.blue
;
2830 colbg
.alpha
= bg
->color
.alpha
;
2831 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &revbg
);
2836 if(base
.mode
& ATTR_REVERSE
) {
2842 /* Intelligent cleaning up of the borders. */
2844 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
2845 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
2847 if(x
+ charlen
>= term
.col
) {
2848 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
2849 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
2852 xclear(winx
, 0, winx
+ width
, borderpx
);
2854 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
2856 /* Clean up the region we want to draw to. */
2857 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
2859 /* Set the clip region because Xft is sometimes dirty. */
2864 XftDrawSetClipRectangles(xw
.draw
, winx
, winy
, &r
, 1);
2866 fcsets
[0] = font
->set
;
2867 for(xp
= winx
; bytelen
> 0;) {
2869 * Search for the range in the to be printed string of glyphs
2870 * that are in the main font. Then print that range. If
2871 * some glyph is found that is not in the font, do the
2879 u8cblen
= utf8decode(s
, &u8char
);
2883 doesexist
= XftCharIndex(xw
.dpy
, font
->match
, u8char
);
2884 if(!doesexist
|| bytelen
<= 0) {
2893 XftDrawStringUtf8(xw
.draw
, fg
,
2895 winy
+ font
->ascent
,
2898 xp
+= font
->width
* u8fl
;
2911 /* Search the font cache. */
2912 for(i
= 0; i
< frclen
; i
++, frp
--) {
2916 if(frc
[frp
].c
== u8char
2917 && frc
[frp
].flags
== frcflags
) {
2922 /* Nothing was found. */
2925 * Nothing was found in the cache. Now use
2926 * some dozen of Fontconfig calls to get the
2927 * font for one single character.
2929 fcpattern
= FcPatternDuplicate(font
->pattern
);
2930 fccharset
= FcCharSetCreate();
2932 FcCharSetAddChar(fccharset
, u8char
);
2933 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
2935 FcPatternAddBool(fcpattern
, FC_SCALABLE
,
2938 FcConfigSubstitute(0, fcpattern
,
2940 FcDefaultSubstitute(fcpattern
);
2942 fontpattern
= FcFontSetMatch(0, fcsets
,
2943 FcTrue
, fcpattern
, &fcres
);
2946 * Overwrite or create the new cache entry.
2950 if(frccur
>= LEN(frc
))
2952 if(frclen
> LEN(frc
)) {
2954 XftFontClose(xw
.dpy
, frc
[frccur
].font
);
2957 frc
[frccur
].font
= XftFontOpenPattern(xw
.dpy
,
2959 frc
[frccur
].c
= u8char
;
2960 frc
[frccur
].flags
= frcflags
;
2962 FcPatternDestroy(fcpattern
);
2963 FcCharSetDestroy(fccharset
);
2968 XftDrawStringUtf8(xw
.draw
, fg
, frc
[frp
].font
,
2969 xp
, winy
+ frc
[frp
].font
->ascent
,
2970 (FcChar8
*)u8c
, u8cblen
);
2976 XftDrawStringUtf8(xw.draw, fg, font->set, winx,
2977 winy + font->ascent, (FcChar8 *)s, bytelen);
2980 if(base
.mode
& ATTR_UNDERLINE
) {
2981 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ font
->ascent
+ 1,
2985 /* Reset clip to none. */
2986 XftDrawSetClip(xw
.draw
, 0);
2991 static int oldx
= 0, oldy
= 0;
2993 Glyph g
= {{' '}, ATTR_NULL
, defaultbg
, defaultcs
};
2995 LIMIT(oldx
, 0, term
.col
-1);
2996 LIMIT(oldy
, 0, term
.row
-1);
2998 memcpy(g
.c
, term
.line
[term
.c
.y
][term
.c
.x
].c
, UTF_SIZ
);
3000 /* remove the old cursor */
3001 sl
= utf8size(term
.line
[oldy
][oldx
].c
);
3002 xdraws(term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
,
3005 /* draw the new one */
3006 if(!(IS_SET(MODE_HIDE
))) {
3007 if(xw
.state
& WIN_FOCUSED
) {
3008 if(IS_SET(MODE_REVERSE
)) {
3009 g
.mode
|= ATTR_REVERSE
;
3015 xdraws(g
.c
, g
, term
.c
.x
, term
.c
.y
, 1, sl
);
3017 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3018 borderpx
+ term
.c
.x
* xw
.cw
,
3019 borderpx
+ term
.c
.y
* xw
.ch
,
3021 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3022 borderpx
+ term
.c
.x
* xw
.cw
,
3023 borderpx
+ term
.c
.y
* xw
.ch
,
3025 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3026 borderpx
+ (term
.c
.x
+ 1) * xw
.cw
- 1,
3027 borderpx
+ term
.c
.y
* xw
.ch
,
3029 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3030 borderpx
+ term
.c
.x
* xw
.cw
,
3031 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- 1,
3034 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
3040 xsettitle(char *p
) {
3043 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
3045 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
3050 xsettitle(opt_title
? opt_title
: "st");
3054 redraw(int timeout
) {
3055 struct timespec tv
= {0, timeout
* 1000};
3061 nanosleep(&tv
, NULL
);
3062 XSync(xw
.dpy
, False
); /* necessary for a good tput flash */
3068 drawregion(0, 0, term
.col
, term
.row
);
3069 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
3071 XSetForeground(xw
.dpy
, dc
.gc
,
3072 dc
.col
[IS_SET(MODE_REVERSE
)?
3073 defaultfg
: defaultbg
].pixel
);
3077 drawregion(int x1
, int y1
, int x2
, int y2
) {
3078 int ic
, ib
, x
, y
, ox
, sl
;
3080 char buf
[DRAW_BUF_SIZ
];
3081 bool ena_sel
= sel
.bx
!= -1;
3083 if(sel
.alt
^ IS_SET(MODE_ALTSCREEN
))
3086 if(!(xw
.state
& WIN_VISIBLE
))
3089 for(y
= y1
; y
< y2
; y
++) {
3093 xtermclear(0, y
, term
.col
, y
);
3095 base
= term
.line
[y
][0];
3097 for(x
= x1
; x
< x2
; x
++) {
3098 new = term
.line
[y
][x
];
3099 if(ena_sel
&& selected(x
, y
))
3100 new.mode
^= ATTR_REVERSE
;
3101 if(ib
> 0 && (ATTRCMP(base
, new)
3102 || ib
>= DRAW_BUF_SIZ
-UTF_SIZ
)) {
3103 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3111 sl
= utf8size(new.c
);
3112 memcpy(buf
+ib
, new.c
, sl
);
3117 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3123 expose(XEvent
*ev
) {
3124 XExposeEvent
*e
= &ev
->xexpose
;
3126 if(xw
.state
& WIN_REDRAW
) {
3128 xw
.state
&= ~WIN_REDRAW
;
3134 visibility(XEvent
*ev
) {
3135 XVisibilityEvent
*e
= &ev
->xvisibility
;
3137 if(e
->state
== VisibilityFullyObscured
) {
3138 xw
.state
&= ~WIN_VISIBLE
;
3139 } else if(!(xw
.state
& WIN_VISIBLE
)) {
3140 /* need a full redraw for next Expose, not just a buf copy */
3141 xw
.state
|= WIN_VISIBLE
| WIN_REDRAW
;
3147 xw
.state
&= ~WIN_VISIBLE
;
3151 xseturgency(int add
) {
3152 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3154 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
3155 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3161 XFocusChangeEvent
*e
= &ev
->xfocus
;
3163 if(e
->mode
== NotifyGrab
)
3166 if(ev
->type
== FocusIn
) {
3167 XSetICFocus(xw
.xic
);
3168 xw
.state
|= WIN_FOCUSED
;
3171 XUnsetICFocus(xw
.xic
);
3172 xw
.state
&= ~WIN_FOCUSED
;
3177 match(uint mask
, uint state
) {
3178 state
&= ~(ignoremod
);
3180 if(mask
== XK_NO_MOD
&& state
)
3182 if(mask
!= XK_ANY_MOD
&& mask
!= XK_NO_MOD
&& !state
)
3184 if((state
& mask
) != state
)
3190 numlock(const Arg
*dummy
) {
3195 kmap(KeySym k
, uint state
) {
3200 /* Check for mapped keys out of X11 function keys. */
3201 for(i
= 0; i
< LEN(mappedkeys
); i
++) {
3202 if(mappedkeys
[i
] == k
)
3205 if(i
== LEN(mappedkeys
)) {
3206 if((k
& 0xFFFF) < 0xFD00)
3210 for(kp
= key
; kp
< key
+ LEN(key
); kp
++) {
3216 if(!match(mask
, state
))
3219 if(kp
->appkey
> 0) {
3220 if(!IS_SET(MODE_APPKEYPAD
))
3222 if(term
.numlock
&& kp
->appkey
== 2)
3224 } else if(kp
->appkey
< 0 && IS_SET(MODE_APPKEYPAD
)) {
3228 if((kp
->appcursor
< 0 && IS_SET(MODE_APPCURSOR
)) ||
3230 && !IS_SET(MODE_APPCURSOR
))) {
3234 if((kp
->crlf
< 0 && IS_SET(MODE_CRLF
)) ||
3235 (kp
->crlf
> 0 && !IS_SET(MODE_CRLF
))) {
3246 kpress(XEvent
*ev
) {
3247 XKeyEvent
*e
= &ev
->xkey
;
3249 char xstr
[31], buf
[32], *customkey
, *cp
= buf
;
3255 if(IS_SET(MODE_KBDLOCK
))
3258 len
= XmbLookupString(xw
.xic
, e
, xstr
, sizeof(xstr
), &ksym
, &status
);
3259 e
->state
&= ~Mod2Mask
;
3261 for(bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
3262 if(ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
3263 bp
->func(&(bp
->arg
));
3268 /* 2. custom keys from config.h */
3269 if((customkey
= kmap(ksym
, e
->state
))) {
3270 len
= strlen(customkey
);
3271 memcpy(buf
, customkey
, len
);
3272 /* 3. hardcoded (overrides X lookup) */
3277 if(len
== 1 && e
->state
& Mod1Mask
) {
3278 if(IS_SET(MODE_8BIT
)) {
3281 ret
= utf8encode(&c
, cp
);
3290 memcpy(cp
, xstr
, len
);
3291 len
= cp
- buf
+ len
;
3295 if(IS_SET(MODE_ECHO
))
3301 cmessage(XEvent
*e
) {
3304 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
3306 if(e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
3307 if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
3308 xw
.state
|= WIN_FOCUSED
;
3310 } else if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
3311 xw
.state
&= ~WIN_FOCUSED
;
3313 } else if(e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
3314 /* Send SIGHUP to shell */
3321 cresize(int width
, int height
) {
3329 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
3330 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
3339 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
3342 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
3349 int xfd
= XConnectionNumber(xw
.dpy
), xev
;
3350 struct timeval drawtimeout
, *tv
= NULL
, now
, last
;
3352 gettimeofday(&last
, NULL
);
3354 for(xev
= actionfps
;;) {
3356 FD_SET(cmdfd
, &rfd
);
3358 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
) < 0) {
3361 die("select failed: %s\n", SERRNO
);
3364 gettimeofday(&now
, NULL
);
3365 drawtimeout
.tv_sec
= 0;
3366 drawtimeout
.tv_usec
= (1000/xfps
) * 1000;
3369 if(FD_ISSET(cmdfd
, &rfd
))
3372 if(FD_ISSET(xfd
, &rfd
))
3375 if(TIMEDIFF(now
, last
) > \
3376 (xev
? (1000/xfps
) : (1000/actionfps
))) {
3377 while(XPending(xw
.dpy
)) {
3378 XNextEvent(xw
.dpy
, &ev
);
3379 if(XFilterEvent(&ev
, None
))
3381 if(handler
[ev
.type
])
3382 (handler
[ev
.type
])(&ev
);
3389 if(xev
&& !FD_ISSET(xfd
, &rfd
))
3391 if(!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
))
3399 die("%s " VERSION
" (c) 2010-2013 st engineers\n" \
3400 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \
3401 " [-t title] [-w windowid] [-e command ...]\n", argv0
);
3405 main(int argc
, char *argv
[]) {
3409 xw
.fw
= xw
.fh
= xw
.fx
= xw
.fy
= 0;
3414 allowaltscreen
= false;
3417 opt_class
= EARGF(usage());
3420 /* eat all remaining arguments */
3425 opt_font
= EARGF(usage());
3428 bitm
= XParseGeometry(EARGF(usage()), &xr
, &yr
, &wr
, &hr
);
3433 if(bitm
& WidthValue
)
3435 if(bitm
& HeightValue
)
3437 if(bitm
& XNegative
&& xw
.fx
== 0)
3439 if(bitm
& XNegative
&& xw
.fy
== 0)
3442 if(xw
.fh
!= 0 && xw
.fw
!= 0)
3446 opt_io
= EARGF(usage());
3449 opt_title
= EARGF(usage());
3452 opt_embed
= EARGF(usage());
3460 setlocale(LC_CTYPE
, "");
3461 XSetLocaleModifiers("");
3467 cresize(xw
.h
, xw
.w
);