1 /* See LICENSE for licence details. */
14 #include <sys/ioctl.h>
15 #include <sys/select.h>
18 #include <sys/types.h>
23 #include <X11/Xatom.h>
25 #include <X11/Xutil.h>
26 #include <X11/cursorfont.h>
27 #include <X11/keysym.h>
28 #include <X11/Xft/Xft.h>
29 #include <fontconfig/fontconfig.h>
37 #define Draw XftDraw *
38 #define Colour XftColor
39 #define Colourmap Colormap
40 #define Rectangle XRectangle
44 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
46 #elif defined(__FreeBSD__) || defined(__DragonFly__)
52 #define XEMBED_FOCUS_IN 4
53 #define XEMBED_FOCUS_OUT 5
57 #define ESC_BUF_SIZ (128*UTF_SIZ)
58 #define ESC_ARG_SIZ 16
59 #define STR_BUF_SIZ ESC_BUF_SIZ
60 #define STR_ARG_SIZ ESC_ARG_SIZ
61 #define DRAW_BUF_SIZ 20*1024
62 #define XK_ANY_MOD UINT_MAX
64 #define XK_SWITCH_MOD (1<<13)
66 #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
69 #define SERRNO strerror(errno)
70 #define MIN(a, b) ((a) < (b) ? (a) : (b))
71 #define MAX(a, b) ((a) < (b) ? (b) : (a))
72 #define LEN(a) (sizeof(a) / sizeof(a[0]))
73 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
74 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
75 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
76 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
77 #define IS_SET(flag) ((term.mode & (flag)) != 0)
78 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
80 #define VT102ID "\033[?6c"
82 enum glyph_attribute
{
93 enum cursor_movement
{
111 MODE_MOUSEMOTION
= 64,
116 MODE_APPCURSOR
= 2048,
117 MODE_MOUSESGR
= 4096,
122 MODE_MOUSEX10
= 131072,
123 MODE_MOUSEMANY
= 262144,
124 MODE_MOUSE
= MODE_MOUSEBTN
|MODE_MOUSEMOTION
|MODE_MOUSEX10\
131 ESC_STR
= 4, /* DSC, OSC, PM, APC */
133 ESC_STR_END
= 16, /* a final string was encountered */
134 ESC_TEST
= 32, /* Enter in test mode */
143 enum selection_type
{
148 enum selection_snap
{
155 enum { B0
=1, B1
=2, B2
=4, B3
=8, B4
=16, B5
=32, B6
=64, B7
=128 };
157 typedef unsigned char uchar
;
158 typedef unsigned int uint
;
159 typedef unsigned long ulong
;
160 typedef unsigned short ushort
;
163 char c
[UTF_SIZ
]; /* character code */
164 uchar mode
; /* attribute flags */
165 ushort fg
; /* foreground */
166 ushort bg
; /* background */
172 Glyph attr
; /* current char attributes */
178 /* CSI Escape sequence structs */
179 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
181 char buf
[ESC_BUF_SIZ
]; /* raw string */
182 int len
; /* raw string length */
184 int arg
[ESC_ARG_SIZ
];
185 int narg
; /* nb of args */
189 /* STR Escape sequence structs */
190 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
192 char type
; /* ESC type ... */
193 char buf
[STR_BUF_SIZ
]; /* raw string */
194 int len
; /* raw string length */
195 char *args
[STR_ARG_SIZ
];
196 int narg
; /* nb of args */
199 /* Internal representation of the screen */
201 int row
; /* nb row */
202 int col
; /* nb col */
203 Line
*line
; /* screen */
204 Line
*alt
; /* alternate screen */
205 bool *dirty
; /* dirtyness of lines */
206 TCursor c
; /* cursor */
207 int top
; /* top scroll limit */
208 int bot
; /* bottom scroll limit */
209 int mode
; /* terminal mode flags */
210 int esc
; /* escape state flags */
211 bool numlock
; /* lock numbers in keyboard */
215 /* Purely graphic info */
221 Atom xembed
, wmdeletewin
;
226 XSetWindowAttributes attrs
;
228 bool isfixed
; /* is fixed geometry? */
229 int fx
, fy
, fw
, fh
; /* fixed geometry */
230 int tw
, th
; /* tty width and height */
231 int w
, h
; /* window width and height */
232 int ch
; /* char height */
233 int cw
; /* char width */
234 char state
; /* focus, redraw, visible */
247 /* three valued logic variables: 0 indifferent, 1 on, -1 off */
248 signed char appkey
; /* application keypad */
249 signed char appcursor
; /* application cursor */
250 signed char crlf
; /* crlf mode */
258 * Selection variables:
259 * nb – normalized coordinates of the beginning of the selection
260 * ne – normalized coordinates of the end of the selection
261 * ob – original coordinates of the beginning of the selection
262 * oe – original coordinates of the end of the selection
271 struct timeval tclick1
;
272 struct timeval tclick2
;
285 void (*func
)(const Arg
*);
289 /* function definitions used in config.h */
290 static void clippaste(const Arg
*);
291 static void numlock(const Arg
*);
292 static void selpaste(const Arg
*);
293 static void xzoom(const Arg
*);
295 /* Config.h for applying patches and the configuration. */
311 /* Drawing Context */
313 Colour col
[LEN(colorname
) < 256 ? 256 : LEN(colorname
)];
314 Font font
, bfont
, ifont
, ibfont
;
318 static void die(const char *, ...);
319 static void draw(void);
320 static void redraw(int);
321 static void drawregion(int, int, int, int);
322 static void execsh(void);
323 static void sigchld(int);
324 static void run(void);
326 static void csidump(void);
327 static void csihandle(void);
328 static void csiparse(void);
329 static void csireset(void);
330 static void strdump(void);
331 static void strhandle(void);
332 static void strparse(void);
333 static void strreset(void);
335 static int tattrset(int);
336 static void tclearregion(int, int, int, int);
337 static void tcursor(int);
338 static void tdeletechar(int);
339 static void tdeleteline(int);
340 static void tinsertblank(int);
341 static void tinsertblankline(int);
342 static void tmoveto(int, int);
343 static void tmoveato(int x
, int y
);
344 static void tnew(int, int);
345 static void tnewline(int);
346 static void tputtab(bool);
347 static void tputc(char *, int);
348 static void treset(void);
349 static int tresize(int, int);
350 static void tscrollup(int, int);
351 static void tscrolldown(int, int);
352 static void tsetattr(int*, int);
353 static void tsetchar(char *, Glyph
*, int, int);
354 static void tsetscroll(int, int);
355 static void tswapscreen(void);
356 static void tsetdirt(int, int);
357 static void tsetdirtattr(int);
358 static void tsetmode(bool, bool, int *, int);
359 static void tfulldirt(void);
360 static void techo(char *, int);
362 static inline bool match(uint
, uint
);
363 static void ttynew(void);
364 static void ttyread(void);
365 static void ttyresize(void);
366 static void ttywrite(const char *, size_t);
368 static void xdraws(char *, Glyph
, int, int, int, int);
369 static void xhints(void);
370 static void xclear(int, int, int, int);
371 static void xdrawcursor(void);
372 static void xinit(void);
373 static void xloadcols(void);
374 static int xsetcolorname(int, const char *);
375 static int xloadfont(Font
*, FcPattern
*);
376 static void xloadfonts(char *, int);
377 static int xloadfontset(Font
*);
378 static void xsettitle(char *);
379 static void xresettitle(void);
380 static void xsetpointermotion(int);
381 static void xseturgency(int);
382 static void xsetsel(char*);
383 static void xtermclear(int, int, int, int);
384 static void xunloadfont(Font
*f
);
385 static void xunloadfonts(void);
386 static void xresize(int, int);
388 static void expose(XEvent
*);
389 static void visibility(XEvent
*);
390 static void unmap(XEvent
*);
391 static char *kmap(KeySym
, uint
);
392 static void kpress(XEvent
*);
393 static void cmessage(XEvent
*);
394 static void cresize(int, int);
395 static void resize(XEvent
*);
396 static void focus(XEvent
*);
397 static void brelease(XEvent
*);
398 static void bpress(XEvent
*);
399 static void bmotion(XEvent
*);
400 static void selnotify(XEvent
*);
401 static void selclear(XEvent
*);
402 static void selrequest(XEvent
*);
404 static void selinit(void);
405 static void selsort(void);
406 static inline bool selected(int, int);
407 static void selcopy(void);
408 static void selscroll(int, int);
409 static void selsnap(int, int *, int *, int);
411 static int utf8decode(char *, long *);
412 static int utf8encode(long *, char *);
413 static int utf8size(char *);
414 static int isfullutf8(char *, int);
416 static ssize_t
xwrite(int, char *, size_t);
417 static void *xmalloc(size_t);
418 static void *xrealloc(void *, size_t);
419 static void *xcalloc(size_t, size_t);
421 static void (*handler
[LASTEvent
])(XEvent
*) = {
423 [ClientMessage
] = cmessage
,
424 [ConfigureNotify
] = resize
,
425 [VisibilityNotify
] = visibility
,
426 [UnmapNotify
] = unmap
,
430 [MotionNotify
] = bmotion
,
431 [ButtonPress
] = bpress
,
432 [ButtonRelease
] = brelease
,
433 [SelectionClear
] = selclear
,
434 [SelectionNotify
] = selnotify
,
435 [SelectionRequest
] = selrequest
,
442 static CSIEscape csiescseq
;
443 static STREscape strescseq
;
446 static Selection sel
;
447 static int iofd
= -1;
448 static char **opt_cmd
= NULL
;
449 static char *opt_io
= NULL
;
450 static char *opt_title
= NULL
;
451 static char *opt_embed
= NULL
;
452 static char *opt_class
= NULL
;
453 static char *opt_font
= NULL
;
454 static int oldbutton
= 3; /* button event on startup: 3 = release */
456 static char *usedfont
= NULL
;
457 static int usedfontsize
= 0;
459 /* Font Ring Cache */
474 * Fontcache is a ring buffer, with frccur as current position and frclen as
475 * the current length of used elements.
478 static Fontcache frc
[1024];
479 static int frccur
= -1, frclen
= 0;
482 xwrite(int fd
, char *s
, size_t len
) {
486 ssize_t r
= write(fd
, s
, len
);
496 xmalloc(size_t len
) {
497 void *p
= malloc(len
);
500 die("Out of memory\n");
506 xrealloc(void *p
, size_t len
) {
507 if((p
= realloc(p
, len
)) == NULL
)
508 die("Out of memory\n");
514 xcalloc(size_t nmemb
, size_t size
) {
515 void *p
= calloc(nmemb
, size
);
518 die("Out of memory\n");
524 utf8decode(char *s
, long *u
) {
530 if(~c
& B7
) { /* 0xxxxxxx */
533 } else if((c
& (B7
|B6
|B5
)) == (B7
|B6
)) { /* 110xxxxx */
534 *u
= c
&(B4
|B3
|B2
|B1
|B0
);
536 } else if((c
& (B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) { /* 1110xxxx */
537 *u
= c
&(B3
|B2
|B1
|B0
);
539 } else if((c
& (B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
)) { /* 11110xxx */
546 for(i
= n
, ++s
; i
> 0; --i
, ++rtn
, ++s
) {
548 if((c
& (B7
|B6
)) != B7
) /* 10xxxxxx */
551 *u
|= c
& (B5
|B4
|B3
|B2
|B1
|B0
);
554 if((n
== 1 && *u
< 0x80) ||
555 (n
== 2 && *u
< 0x800) ||
556 (n
== 3 && *u
< 0x10000) ||
557 (*u
>= 0xD800 && *u
<= 0xDFFF)) {
569 utf8encode(long *u
, char *s
) {
577 *sp
= uc
; /* 0xxxxxxx */
579 } else if(*u
< 0x800) {
580 *sp
= (uc
>> 6) | (B7
|B6
); /* 110xxxxx */
582 } else if(uc
< 0x10000) {
583 *sp
= (uc
>> 12) | (B7
|B6
|B5
); /* 1110xxxx */
585 } else if(uc
<= 0x10FFFF) {
586 *sp
= (uc
>> 18) | (B7
|B6
|B5
|B4
); /* 11110xxx */
592 for(i
=n
,++sp
; i
>0; --i
,++sp
)
593 *sp
= ((uc
>> 6*(i
-1)) & (B5
|B4
|B3
|B2
|B1
|B0
)) | B7
; /* 10xxxxxx */
605 /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
606 UTF-8 otherwise return 0 */
608 isfullutf8(char *s
, int b
) {
616 } else if((*c1
&(B7
|B6
|B5
)) == (B7
|B6
) && b
== 1) {
618 } else if((*c1
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
) &&
620 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
))) {
622 } else if((*c1
&(B7
|B6
|B5
|B4
|B3
)) == (B7
|B6
|B5
|B4
) &&
624 ((b
== 2) && (*c2
&(B7
|B6
)) == B7
) ||
625 ((b
== 3) && (*c2
&(B7
|B6
)) == B7
&& (*c3
&(B7
|B6
)) == B7
))) {
638 } else if((c
&(B7
|B6
|B5
)) == (B7
|B6
)) {
640 } else if((c
&(B7
|B6
|B5
|B4
)) == (B7
|B6
|B5
)) {
649 memset(&sel
.tclick1
, 0, sizeof(sel
.tclick1
));
650 memset(&sel
.tclick2
, 0, sizeof(sel
.tclick2
));
654 sel
.xtarget
= XInternAtom(xw
.dpy
, "UTF8_STRING", 0);
655 if(sel
.xtarget
== None
)
656 sel
.xtarget
= XA_STRING
;
664 return LIMIT(x
, 0, term
.col
-1);
672 return LIMIT(y
, 0, term
.row
-1);
677 if(sel
.ob
.y
== sel
.oe
.y
) {
678 sel
.nb
.x
= MIN(sel
.ob
.x
, sel
.oe
.x
);
679 sel
.ne
.x
= MAX(sel
.ob
.x
, sel
.oe
.x
);
681 sel
.nb
.x
= sel
.ob
.y
< sel
.oe
.y
? sel
.ob
.x
: sel
.oe
.x
;
682 sel
.ne
.x
= sel
.ob
.y
< sel
.oe
.y
? sel
.oe
.x
: sel
.ob
.x
;
684 sel
.nb
.y
= MIN(sel
.ob
.y
, sel
.oe
.y
);
685 sel
.ne
.y
= MAX(sel
.ob
.y
, sel
.oe
.y
);
689 selected(int x
, int y
) {
690 if(sel
.ne
.y
== y
&& sel
.nb
.y
== y
)
691 return BETWEEN(x
, sel
.nb
.x
, sel
.ne
.x
);
693 if(sel
.type
== SEL_RECTANGULAR
) {
694 return ((sel
.nb
.y
<= y
&& y
<= sel
.ne
.y
)
695 && (sel
.nb
.x
<= x
&& x
<= sel
.ne
.x
));
698 return ((sel
.nb
.y
< y
&& y
< sel
.ne
.y
)
699 || (y
== sel
.ne
.y
&& x
<= sel
.ne
.x
))
700 || (y
== sel
.nb
.y
&& x
>= sel
.nb
.x
701 && (x
<= sel
.ne
.x
|| sel
.nb
.y
!= sel
.ne
.y
));
705 selsnap(int mode
, int *x
, int *y
, int direction
) {
711 * Snap around if the word wraps around at the end or
712 * beginning of a line.
715 if(direction
< 0 && *x
<= 0) {
716 if(*y
> 0 && term
.line
[*y
- 1][term
.col
-1].mode
724 if(direction
> 0 && *x
>= term
.col
-1) {
725 if(*y
< term
.row
-1 && term
.line
[*y
][*x
].mode
734 if(strchr(worddelimiters
,
735 term
.line
[*y
][*x
+ direction
].c
[0])) {
744 * Snap around if the the previous line or the current one
745 * has set ATTR_WRAP at its end. Then the whole next or
746 * previous line will be selected.
748 *x
= (direction
< 0) ? 0 : term
.col
- 1;
749 if(direction
< 0 && *y
> 0) {
750 for(; *y
> 0; *y
+= direction
) {
751 if(!(term
.line
[*y
-1][term
.col
-1].mode
756 } else if(direction
> 0 && *y
< term
.row
-1) {
757 for(; *y
< term
.row
; *y
+= direction
) {
758 if(!(term
.line
[*y
][term
.col
-1].mode
767 * Select the whole line when the end of line is reached.
771 while(--i
> 0 && term
.line
[*y
][i
].c
[0] == ' ')
781 getbuttoninfo(XEvent
*e
) {
783 uint state
= e
->xbutton
.state
&~Button1Mask
;
785 sel
.alt
= IS_SET(MODE_ALTSCREEN
);
787 sel
.oe
.x
= x2col(e
->xbutton
.x
);
788 sel
.oe
.y
= y2row(e
->xbutton
.y
);
790 if(sel
.ob
.y
< sel
.oe
.y
791 || (sel
.ob
.y
== sel
.oe
.y
&& sel
.ob
.x
< sel
.oe
.x
)) {
792 selsnap(sel
.snap
, &sel
.ob
.x
, &sel
.ob
.y
, -1);
793 selsnap(sel
.snap
, &sel
.oe
.x
, &sel
.oe
.y
, +1);
795 selsnap(sel
.snap
, &sel
.oe
.x
, &sel
.oe
.y
, -1);
796 selsnap(sel
.snap
, &sel
.ob
.x
, &sel
.ob
.y
, +1);
800 sel
.type
= SEL_REGULAR
;
801 for(type
= 1; type
< LEN(selmasks
); ++type
) {
802 if(match(selmasks
[type
], state
)) {
810 mousereport(XEvent
*e
) {
811 int x
= x2col(e
->xbutton
.x
), y
= y2row(e
->xbutton
.y
),
812 button
= e
->xbutton
.button
, state
= e
->xbutton
.state
,
818 if(e
->xbutton
.type
== MotionNotify
) {
819 if(x
== ox
&& y
== oy
)
821 if(!IS_SET(MODE_MOUSEMOTION
) && !IS_SET(MODE_MOUSEMANY
))
823 /* MOUSE_MOTION: no reporting if no button is pressed */
824 if(IS_SET(MODE_MOUSEMOTION
) && oldbutton
== 3)
827 button
= oldbutton
+ 32;
830 } else if(!IS_SET(MODE_MOUSESGR
)
831 && (e
->xbutton
.type
== ButtonRelease
832 || button
== AnyButton
)) {
838 if(e
->xbutton
.type
== ButtonPress
) {
845 if(!IS_SET(MODE_MOUSEX10
)) {
846 button
+= (state
& ShiftMask
? 4 : 0)
847 + (state
& Mod4Mask
? 8 : 0)
848 + (state
& ControlMask
? 16 : 0);
852 if(IS_SET(MODE_MOUSESGR
)) {
853 len
= snprintf(buf
, sizeof(buf
), "\033[<%d;%d;%d%c",
855 e
->xbutton
.type
== ButtonRelease
? 'm' : 'M');
856 } else if(x
< 223 && y
< 223) {
857 len
= snprintf(buf
, sizeof(buf
), "\033[M%c%c%c",
858 IS_SET(MODE_MOUSEX10
)? button
-1 : 32+button
,
872 if(IS_SET(MODE_MOUSE
)) {
877 for(mk
= mshortcuts
; mk
< mshortcuts
+ LEN(mshortcuts
); mk
++) {
878 if(e
->xbutton
.button
== mk
->b
879 && match(mk
->mask
, e
->xbutton
.state
)) {
880 ttywrite(mk
->s
, strlen(mk
->s
));
881 if(IS_SET(MODE_ECHO
))
882 techo(mk
->s
, strlen(mk
->s
));
887 if(e
->xbutton
.button
== Button1
) {
888 gettimeofday(&now
, NULL
);
890 /* Clear previous selection, logically and visually. */
893 sel
.type
= SEL_REGULAR
;
894 sel
.oe
.x
= sel
.ob
.x
= x2col(e
->xbutton
.x
);
895 sel
.oe
.y
= sel
.ob
.y
= y2row(e
->xbutton
.y
);
898 * If the user clicks below predefined timeouts specific
899 * snapping behaviour is exposed.
901 if(TIMEDIFF(now
, sel
.tclick2
) <= tripleclicktimeout
) {
902 sel
.snap
= SNAP_LINE
;
903 } else if(TIMEDIFF(now
, sel
.tclick1
) <= doubleclicktimeout
) {
904 sel
.snap
= SNAP_WORD
;
908 selsnap(sel
.snap
, &sel
.ob
.x
, &sel
.ob
.y
, -1);
909 selsnap(sel
.snap
, &sel
.oe
.x
, &sel
.oe
.y
, +1);
913 * Draw selection, unless it's regular and we don't want to
914 * make clicks visible
918 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
920 sel
.tclick2
= sel
.tclick1
;
928 int x
, y
, bufsize
, size
, i
, ex
;
934 bufsize
= (term
.col
+1) * (sel
.ne
.y
-sel
.nb
.y
+1) * UTF_SIZ
;
935 ptr
= str
= xmalloc(bufsize
);
937 /* append every set & selected glyph to the selection */
938 for(y
= sel
.nb
.y
; y
< sel
.ne
.y
+ 1; y
++) {
939 gp
= &term
.line
[y
][0];
940 last
= gp
+ term
.col
;
942 while(--last
>= gp
&& !(selected(last
- gp
, y
) && \
943 strcmp(last
->c
, " ") != 0))
946 for(x
= 0; gp
<= last
; x
++, ++gp
) {
950 size
= utf8size(gp
->c
);
951 memcpy(ptr
, gp
->c
, size
);
956 * Copy and pasting of line endings is inconsistent
957 * in the inconsistent terminal and GUI world.
958 * The best solution seems like to produce '\n' when
959 * something is copied from st and convert '\n' to
960 * '\r', when something to be pasted is received by
962 * FIXME: Fix the computer world.
964 if(y
< sel
.ne
.y
&& !((gp
-1)->mode
& ATTR_WRAP
))
968 * If the last selected line expands in the selection
969 * after the visible text '\n' is appended.
973 while(--i
> 0 && term
.line
[y
][i
].c
[0] == ' ')
976 if(sel
.nb
.y
== sel
.ne
.y
&& sel
.ne
.x
< sel
.nb
.x
)
988 selnotify(XEvent
*e
) {
989 ulong nitems
, ofs
, rem
;
991 uchar
*data
, *last
, *repl
;
996 if(XGetWindowProperty(xw
.dpy
, xw
.win
, XA_PRIMARY
, ofs
, BUFSIZ
/4,
997 False
, AnyPropertyType
, &type
, &format
,
998 &nitems
, &rem
, &data
)) {
999 fprintf(stderr
, "Clipboard allocation failed\n");
1004 * As seen in selcopy:
1005 * Line endings are inconsistent in the terminal and GUI world
1006 * copy and pasting. When receiving some selection data,
1007 * replace all '\n' with '\r'.
1008 * FIXME: Fix the computer world.
1011 last
= data
+ nitems
* format
/ 8;
1012 while((repl
= memchr(repl
, '\n', last
- repl
))) {
1016 ttywrite((const char *)data
, nitems
* format
/ 8);
1018 /* number of 32-bit chunks returned */
1019 ofs
+= nitems
* format
/ 32;
1024 selpaste(const Arg
*dummy
) {
1025 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
1026 xw
.win
, CurrentTime
);
1030 clippaste(const Arg
*dummy
) {
1033 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1034 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, XA_PRIMARY
,
1035 xw
.win
, CurrentTime
);
1039 selclear(XEvent
*e
) {
1043 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1047 selrequest(XEvent
*e
) {
1048 XSelectionRequestEvent
*xsre
;
1049 XSelectionEvent xev
;
1050 Atom xa_targets
, string
;
1052 xsre
= (XSelectionRequestEvent
*) e
;
1053 xev
.type
= SelectionNotify
;
1054 xev
.requestor
= xsre
->requestor
;
1055 xev
.selection
= xsre
->selection
;
1056 xev
.target
= xsre
->target
;
1057 xev
.time
= xsre
->time
;
1059 xev
.property
= None
;
1061 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
1062 if(xsre
->target
== xa_targets
) {
1063 /* respond with the supported type */
1064 string
= sel
.xtarget
;
1065 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
1066 XA_ATOM
, 32, PropModeReplace
,
1067 (uchar
*) &string
, 1);
1068 xev
.property
= xsre
->property
;
1069 } else if(xsre
->target
== sel
.xtarget
&& sel
.clip
!= NULL
) {
1070 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
1071 xsre
->target
, 8, PropModeReplace
,
1072 (uchar
*) sel
.clip
, strlen(sel
.clip
));
1073 xev
.property
= xsre
->property
;
1076 /* all done, send a notification to the listener */
1077 if(!XSendEvent(xsre
->display
, xsre
->requestor
, True
, 0, (XEvent
*) &xev
))
1078 fprintf(stderr
, "Error sending SelectionNotify event\n");
1082 xsetsel(char *str
) {
1083 /* register the selection for both the clipboard and the primary */
1089 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, CurrentTime
);
1091 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1092 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
1096 brelease(XEvent
*e
) {
1097 if(IS_SET(MODE_MOUSE
)) {
1102 if(e
->xbutton
.button
== Button2
) {
1104 } else if(e
->xbutton
.button
== Button1
) {
1112 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1117 bmotion(XEvent
*e
) {
1118 int oldey
, oldex
, oldsby
, oldsey
;
1120 if(IS_SET(MODE_MOUSE
)) {
1135 if(oldey
!= sel
.oe
.y
|| oldex
!= sel
.oe
.x
)
1136 tsetdirt(MIN(sel
.nb
.y
, oldsby
), MAX(sel
.ne
.y
, oldsey
));
1140 die(const char *errstr
, ...) {
1143 va_start(ap
, errstr
);
1144 vfprintf(stderr
, errstr
, ap
);
1152 char *envshell
= getenv("SHELL");
1153 const struct passwd
*pass
= getpwuid(getuid());
1154 char buf
[sizeof(long) * 8 + 1];
1156 unsetenv("COLUMNS");
1158 unsetenv("TERMCAP");
1161 setenv("LOGNAME", pass
->pw_name
, 1);
1162 setenv("USER", pass
->pw_name
, 1);
1163 setenv("SHELL", pass
->pw_shell
, 0);
1164 setenv("HOME", pass
->pw_dir
, 0);
1167 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1168 setenv("WINDOWID", buf
, 1);
1170 signal(SIGCHLD
, SIG_DFL
);
1171 signal(SIGHUP
, SIG_DFL
);
1172 signal(SIGINT
, SIG_DFL
);
1173 signal(SIGQUIT
, SIG_DFL
);
1174 signal(SIGTERM
, SIG_DFL
);
1175 signal(SIGALRM
, SIG_DFL
);
1177 DEFAULT(envshell
, shell
);
1178 setenv("TERM", termname
, 1);
1179 args
= opt_cmd
? opt_cmd
: (char *[]){envshell
, "-i", NULL
};
1180 execvp(args
[0], args
);
1188 if(waitpid(pid
, &stat
, 0) < 0)
1189 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
1191 if(WIFEXITED(stat
)) {
1192 exit(WEXITSTATUS(stat
));
1201 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1203 /* seems to work fine on linux, openbsd and freebsd */
1204 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1205 die("openpty failed: %s\n", SERRNO
);
1207 switch(pid
= fork()) {
1209 die("fork failed\n");
1212 setsid(); /* create a new process group */
1213 dup2(s
, STDIN_FILENO
);
1214 dup2(s
, STDOUT_FILENO
);
1215 dup2(s
, STDERR_FILENO
);
1216 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1217 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
1225 signal(SIGCHLD
, sigchld
);
1227 iofd
= (!strcmp(opt_io
, "-")) ?
1229 open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1231 fprintf(stderr
, "Error opening %s:%s\n",
1232 opt_io
, strerror(errno
));
1242 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
1244 fprintf(stderr
, "\n");
1249 static char buf
[BUFSIZ
];
1250 static int buflen
= 0;
1253 int charsize
; /* size of utf8 char in bytes */
1257 /* append read bytes to unprocessed bytes */
1258 if((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1259 die("Couldn't read from shell: %s\n", SERRNO
);
1261 /* process every complete utf8 char */
1264 while(buflen
>= UTF_SIZ
|| isfullutf8(ptr
,buflen
)) {
1265 charsize
= utf8decode(ptr
, &utf8c
);
1266 utf8encode(&utf8c
, s
);
1272 /* keep any uncomplete utf8 char for the next call */
1273 memmove(buf
, ptr
, buflen
);
1277 ttywrite(const char *s
, size_t n
) {
1278 if(write(cmdfd
, s
, n
) == -1)
1279 die("write error on tty: %s\n", SERRNO
);
1286 w
.ws_row
= term
.row
;
1287 w
.ws_col
= term
.col
;
1288 w
.ws_xpixel
= xw
.tw
;
1289 w
.ws_ypixel
= xw
.th
;
1290 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1291 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
1295 tattrset(int attr
) {
1298 for(i
= 0; i
< term
.row
-1; i
++) {
1299 for(j
= 0; j
< term
.col
-1; j
++) {
1300 if(term
.line
[i
][j
].mode
& attr
)
1309 tsetdirt(int top
, int bot
) {
1312 LIMIT(top
, 0, term
.row
-1);
1313 LIMIT(bot
, 0, term
.row
-1);
1315 for(i
= top
; i
<= bot
; i
++)
1320 tsetdirtattr(int attr
) {
1323 for(i
= 0; i
< term
.row
-1; i
++) {
1324 for(j
= 0; j
< term
.col
-1; j
++) {
1325 if(term
.line
[i
][j
].mode
& attr
) {
1335 tsetdirt(0, term
.row
-1);
1342 if(mode
== CURSOR_SAVE
) {
1344 } else if(mode
== CURSOR_LOAD
) {
1354 term
.c
= (TCursor
){{
1358 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1360 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1361 for(i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1364 term
.bot
= term
.row
- 1;
1365 term
.mode
= MODE_WRAP
;
1367 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1369 tcursor(CURSOR_SAVE
);
1373 tnew(int col
, int row
) {
1374 memset(&term
, 0, sizeof(Term
));
1383 Line
*tmp
= term
.line
;
1385 term
.line
= term
.alt
;
1387 term
.mode
^= MODE_ALTSCREEN
;
1392 tscrolldown(int orig
, int n
) {
1396 LIMIT(n
, 0, term
.bot
-orig
+1);
1398 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
);
1400 for(i
= term
.bot
; i
>= orig
+n
; i
--) {
1401 temp
= term
.line
[i
];
1402 term
.line
[i
] = term
.line
[i
-n
];
1403 term
.line
[i
-n
] = temp
;
1406 term
.dirty
[i
-n
] = 1;
1413 tscrollup(int orig
, int n
) {
1416 LIMIT(n
, 0, term
.bot
-orig
+1);
1418 tclearregion(0, orig
, term
.col
-1, orig
+n
-1);
1420 for(i
= orig
; i
<= term
.bot
-n
; i
++) {
1421 temp
= term
.line
[i
];
1422 term
.line
[i
] = term
.line
[i
+n
];
1423 term
.line
[i
+n
] = temp
;
1426 term
.dirty
[i
+n
] = 1;
1429 selscroll(orig
, -n
);
1433 selscroll(int orig
, int n
) {
1437 if(BETWEEN(sel
.ob
.y
, orig
, term
.bot
) || BETWEEN(sel
.oe
.y
, orig
, term
.bot
)) {
1438 if((sel
.ob
.y
+= n
) > term
.bot
|| (sel
.oe
.y
+= n
) < term
.top
) {
1442 if(sel
.type
== SEL_RECTANGULAR
) {
1443 if(sel
.ob
.y
< term
.top
)
1444 sel
.ob
.y
= term
.top
;
1445 if(sel
.oe
.y
> term
.bot
)
1446 sel
.oe
.y
= term
.bot
;
1448 if(sel
.ob
.y
< term
.top
) {
1449 sel
.ob
.y
= term
.top
;
1452 if(sel
.oe
.y
> term
.bot
) {
1453 sel
.oe
.y
= term
.bot
;
1454 sel
.oe
.x
= term
.col
;
1462 tnewline(int first_col
) {
1466 tscrollup(term
.top
, 1);
1470 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1475 char *p
= csiescseq
.buf
, *np
;
1484 csiescseq
.buf
[csiescseq
.len
] = '\0';
1485 while(p
< csiescseq
.buf
+csiescseq
.len
) {
1487 v
= strtol(p
, &np
, 10);
1490 if(v
== LONG_MAX
|| v
== LONG_MIN
)
1492 csiescseq
.arg
[csiescseq
.narg
++] = v
;
1494 if(*p
!= ';' || csiescseq
.narg
== ESC_ARG_SIZ
)
1498 csiescseq
.mode
= *p
;
1501 /* for absolute user moves, when decom is set */
1503 tmoveato(int x
, int y
) {
1504 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1508 tmoveto(int x
, int y
) {
1511 if(term
.c
.state
& CURSOR_ORIGIN
) {
1516 maxy
= term
.row
- 1;
1518 LIMIT(x
, 0, term
.col
-1);
1519 LIMIT(y
, miny
, maxy
);
1520 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1526 tsetchar(char *c
, Glyph
*attr
, int x
, int y
) {
1527 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1528 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1529 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1530 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1531 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1532 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1533 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1534 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1535 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1539 * The table is proudly stolen from rxvt.
1541 if(attr
->mode
& ATTR_GFX
) {
1542 if(c
[0] >= 0x41 && c
[0] <= 0x7e
1543 && vt100_0
[c
[0] - 0x41]) {
1544 c
= vt100_0
[c
[0] - 0x41];
1549 term
.line
[y
][x
] = *attr
;
1550 memcpy(term
.line
[y
][x
].c
, c
, UTF_SIZ
);
1554 tclearregion(int x1
, int y1
, int x2
, int y2
) {
1558 temp
= x1
, x1
= x2
, x2
= temp
;
1560 temp
= y1
, y1
= y2
, y2
= temp
;
1562 LIMIT(x1
, 0, term
.col
-1);
1563 LIMIT(x2
, 0, term
.col
-1);
1564 LIMIT(y1
, 0, term
.row
-1);
1565 LIMIT(y2
, 0, term
.row
-1);
1567 for(y
= y1
; y
<= y2
; y
++) {
1569 for(x
= x1
; x
<= x2
; x
++) {
1572 term
.line
[y
][x
] = term
.c
.attr
;
1573 memcpy(term
.line
[y
][x
].c
, " ", 2);
1579 tdeletechar(int n
) {
1580 int src
= term
.c
.x
+ n
;
1582 int size
= term
.col
- src
;
1584 term
.dirty
[term
.c
.y
] = 1;
1586 if(src
>= term
.col
) {
1587 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1591 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1592 size
* sizeof(Glyph
));
1593 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1597 tinsertblank(int n
) {
1600 int size
= term
.col
- dst
;
1602 term
.dirty
[term
.c
.y
] = 1;
1604 if(dst
>= term
.col
) {
1605 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1609 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1610 size
* sizeof(Glyph
));
1611 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
1615 tinsertblankline(int n
) {
1616 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1619 tscrolldown(term
.c
.y
, n
);
1623 tdeleteline(int n
) {
1624 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1627 tscrollup(term
.c
.y
, n
);
1631 tsetattr(int *attr
, int l
) {
1634 for(i
= 0; i
< l
; i
++) {
1637 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE \
1638 | ATTR_BOLD
| ATTR_ITALIC \
1640 term
.c
.attr
.fg
= defaultfg
;
1641 term
.c
.attr
.bg
= defaultbg
;
1644 term
.c
.attr
.mode
|= ATTR_BOLD
;
1647 term
.c
.attr
.mode
|= ATTR_ITALIC
;
1650 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
1652 case 5: /* slow blink */
1653 case 6: /* rapid blink */
1654 term
.c
.attr
.mode
|= ATTR_BLINK
;
1657 term
.c
.attr
.mode
|= ATTR_REVERSE
;
1661 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
1664 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
1667 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
1671 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
1674 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
1677 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1679 if(BETWEEN(attr
[i
], 0, 255)) {
1680 term
.c
.attr
.fg
= attr
[i
];
1683 "erresc: bad fgcolor %d\n",
1688 "erresc(38): gfx attr %d unknown\n",
1693 term
.c
.attr
.fg
= defaultfg
;
1696 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1698 if(BETWEEN(attr
[i
], 0, 255)) {
1699 term
.c
.attr
.bg
= attr
[i
];
1702 "erresc: bad bgcolor %d\n",
1707 "erresc(48): gfx attr %d unknown\n",
1712 term
.c
.attr
.bg
= defaultbg
;
1715 if(BETWEEN(attr
[i
], 30, 37)) {
1716 term
.c
.attr
.fg
= attr
[i
] - 30;
1717 } else if(BETWEEN(attr
[i
], 40, 47)) {
1718 term
.c
.attr
.bg
= attr
[i
] - 40;
1719 } else if(BETWEEN(attr
[i
], 90, 97)) {
1720 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
1721 } else if(BETWEEN(attr
[i
], 100, 107)) {
1722 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
1725 "erresc(default): gfx attr %d unknown\n",
1726 attr
[i
]), csidump();
1734 tsetscroll(int t
, int b
) {
1737 LIMIT(t
, 0, term
.row
-1);
1738 LIMIT(b
, 0, term
.row
-1);
1748 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
1751 tsetmode(bool priv
, bool set
, int *args
, int narg
) {
1755 for(lim
= args
+ narg
; args
< lim
; ++args
) {
1759 case 1: /* DECCKM -- Cursor key */
1760 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
1762 case 5: /* DECSCNM -- Reverse video */
1764 MODBIT(term
.mode
, set
, MODE_REVERSE
);
1765 if(mode
!= term
.mode
)
1766 redraw(REDRAW_TIMEOUT
);
1768 case 6: /* DECOM -- Origin */
1769 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
1772 case 7: /* DECAWM -- Auto wrap */
1773 MODBIT(term
.mode
, set
, MODE_WRAP
);
1775 case 0: /* Error (IGNORED) */
1776 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
1777 case 3: /* DECCOLM -- Column (IGNORED) */
1778 case 4: /* DECSCLM -- Scroll (IGNORED) */
1779 case 8: /* DECARM -- Auto repeat (IGNORED) */
1780 case 18: /* DECPFF -- Printer feed (IGNORED) */
1781 case 19: /* DECPEX -- Printer extent (IGNORED) */
1782 case 42: /* DECNRCM -- National characters (IGNORED) */
1783 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1785 case 25: /* DECTCEM -- Text Cursor Enable Mode */
1786 MODBIT(term
.mode
, !set
, MODE_HIDE
);
1788 case 9: /* X10 mouse compatibility mode */
1789 xsetpointermotion(0);
1790 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1791 MODBIT(term
.mode
, set
, MODE_MOUSEX10
);
1793 case 1000: /* 1000: report button press */
1794 xsetpointermotion(0);
1795 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1796 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
1798 case 1002: /* 1002: report motion on button press */
1799 xsetpointermotion(0);
1800 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1801 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
1803 case 1003: /* 1003: enable all mouse motions */
1804 xsetpointermotion(set
);
1805 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1806 MODBIT(term
.mode
, set
, MODE_MOUSEMANY
);
1808 case 1004: /* 1004: send focus events to tty */
1809 MODBIT(term
.mode
, set
, MODE_FOCUS
);
1811 case 1006: /* 1006: extended reporting mode */
1812 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
1815 MODBIT(term
.mode
, set
, MODE_8BIT
);
1817 case 1049: /* = 1047 and 1048 */
1820 if (!allowaltscreen
)
1823 alt
= IS_SET(MODE_ALTSCREEN
);
1825 tclearregion(0, 0, term
.col
-1,
1828 if(set
^ alt
) /* set is always 1 or 0 */
1834 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
1836 /* Not implemented mouse modes. See comments there. */
1837 case 1001: /* mouse highlight mode; can hang the
1838 terminal by design when implemented. */
1839 case 1005: /* UTF-8 mouse mode; will confuse
1840 applications not supporting UTF-8
1842 case 1015: /* urxvt mangled mouse mode; incompatible
1843 and can be mistaken for other control
1847 "erresc: unknown private set/reset mode %d\n",
1853 case 0: /* Error (IGNORED) */
1855 case 2: /* KAM -- keyboard action */
1856 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
1858 case 4: /* IRM -- Insertion-replacement */
1859 MODBIT(term
.mode
, set
, MODE_INSERT
);
1861 case 12: /* SRM -- Send/Receive */
1862 MODBIT(term
.mode
, !set
, MODE_ECHO
);
1864 case 20: /* LNM -- Linefeed/new line */
1865 MODBIT(term
.mode
, set
, MODE_CRLF
);
1869 "erresc: unknown set/reset mode %d\n",
1879 switch(csiescseq
.mode
) {
1882 fprintf(stderr
, "erresc: unknown csi ");
1886 case '@': /* ICH -- Insert <n> blank char */
1887 DEFAULT(csiescseq
.arg
[0], 1);
1888 tinsertblank(csiescseq
.arg
[0]);
1890 case 'A': /* CUU -- Cursor <n> Up */
1891 DEFAULT(csiescseq
.arg
[0], 1);
1892 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
1894 case 'B': /* CUD -- Cursor <n> Down */
1895 case 'e': /* VPR --Cursor <n> Down */
1896 DEFAULT(csiescseq
.arg
[0], 1);
1897 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
1899 case 'c': /* DA -- Device Attributes */
1900 if(csiescseq
.arg
[0] == 0)
1901 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
1903 case 'C': /* CUF -- Cursor <n> Forward */
1904 case 'a': /* HPR -- Cursor <n> Forward */
1905 DEFAULT(csiescseq
.arg
[0], 1);
1906 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
1908 case 'D': /* CUB -- Cursor <n> Backward */
1909 DEFAULT(csiescseq
.arg
[0], 1);
1910 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
1912 case 'E': /* CNL -- Cursor <n> Down and first col */
1913 DEFAULT(csiescseq
.arg
[0], 1);
1914 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
1916 case 'F': /* CPL -- Cursor <n> Up and first col */
1917 DEFAULT(csiescseq
.arg
[0], 1);
1918 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
1920 case 'g': /* TBC -- Tabulation clear */
1921 switch(csiescseq
.arg
[0]) {
1922 case 0: /* clear current tab stop */
1923 term
.tabs
[term
.c
.x
] = 0;
1925 case 3: /* clear all the tabs */
1926 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1932 case 'G': /* CHA -- Move to <col> */
1934 DEFAULT(csiescseq
.arg
[0], 1);
1935 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
1937 case 'H': /* CUP -- Move to <row> <col> */
1939 DEFAULT(csiescseq
.arg
[0], 1);
1940 DEFAULT(csiescseq
.arg
[1], 1);
1941 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
1943 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
1944 DEFAULT(csiescseq
.arg
[0], 1);
1945 while(csiescseq
.arg
[0]--)
1948 case 'J': /* ED -- Clear screen */
1950 switch(csiescseq
.arg
[0]) {
1952 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1953 if(term
.c
.y
< term
.row
-1) {
1954 tclearregion(0, term
.c
.y
+1, term
.col
-1,
1960 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1);
1961 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1964 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1970 case 'K': /* EL -- Clear line */
1971 switch(csiescseq
.arg
[0]) {
1973 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
1977 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1980 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
1984 case 'S': /* SU -- Scroll <n> line up */
1985 DEFAULT(csiescseq
.arg
[0], 1);
1986 tscrollup(term
.top
, csiescseq
.arg
[0]);
1988 case 'T': /* SD -- Scroll <n> line down */
1989 DEFAULT(csiescseq
.arg
[0], 1);
1990 tscrolldown(term
.top
, csiescseq
.arg
[0]);
1992 case 'L': /* IL -- Insert <n> blank lines */
1993 DEFAULT(csiescseq
.arg
[0], 1);
1994 tinsertblankline(csiescseq
.arg
[0]);
1996 case 'l': /* RM -- Reset Mode */
1997 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
1999 case 'M': /* DL -- Delete <n> lines */
2000 DEFAULT(csiescseq
.arg
[0], 1);
2001 tdeleteline(csiescseq
.arg
[0]);
2003 case 'X': /* ECH -- Erase <n> char */
2004 DEFAULT(csiescseq
.arg
[0], 1);
2005 tclearregion(term
.c
.x
, term
.c
.y
,
2006 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
);
2008 case 'P': /* DCH -- Delete <n> char */
2009 DEFAULT(csiescseq
.arg
[0], 1);
2010 tdeletechar(csiescseq
.arg
[0]);
2012 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
2013 DEFAULT(csiescseq
.arg
[0], 1);
2014 while(csiescseq
.arg
[0]--)
2017 case 'd': /* VPA -- Move to <row> */
2018 DEFAULT(csiescseq
.arg
[0], 1);
2019 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
2021 case 'h': /* SM -- Set terminal mode */
2022 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
2024 case 'm': /* SGR -- Terminal attribute (color) */
2025 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
2027 case 'r': /* DECSTBM -- Set Scrolling Region */
2028 if(csiescseq
.priv
) {
2031 DEFAULT(csiescseq
.arg
[0], 1);
2032 DEFAULT(csiescseq
.arg
[1], term
.row
);
2033 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
2037 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
2038 tcursor(CURSOR_SAVE
);
2040 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
2041 tcursor(CURSOR_LOAD
);
2052 for(i
= 0; i
< csiescseq
.len
; i
++) {
2053 c
= csiescseq
.buf
[i
] & 0xff;
2056 } else if(c
== '\n') {
2058 } else if(c
== '\r') {
2060 } else if(c
== 0x1b) {
2063 printf("(%02x)", c
);
2071 memset(&csiescseq
, 0, sizeof(csiescseq
));
2080 narg
= strescseq
.narg
;
2082 switch(strescseq
.type
) {
2083 case ']': /* OSC -- Operating System Command */
2084 switch(i
= atoi(strescseq
.args
[0])) {
2089 xsettitle(strescseq
.args
[1]);
2091 case 4: /* color set */
2094 p
= strescseq
.args
[2];
2096 case 104: /* color reset, here p = NULL */
2097 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
2098 if (!xsetcolorname(j
, p
)) {
2099 fprintf(stderr
, "erresc: invalid color %s\n", p
);
2102 * TODO if defaultbg color is changed, borders
2109 fprintf(stderr
, "erresc: unknown str ");
2114 case 'k': /* old title set compatibility */
2115 xsettitle(strescseq
.args
[0]);
2117 case 'P': /* DSC -- Device Control String */
2118 case '_': /* APC -- Application Program Command */
2119 case '^': /* PM -- Privacy Message */
2121 fprintf(stderr
, "erresc: unknown str ");
2130 char *p
= strescseq
.buf
;
2133 strescseq
.buf
[strescseq
.len
] = '\0';
2134 while(p
&& strescseq
.narg
< STR_ARG_SIZ
)
2135 strescseq
.args
[strescseq
.narg
++] = strsep(&p
, ";");
2143 printf("ESC%c", strescseq
.type
);
2144 for(i
= 0; i
< strescseq
.len
; i
++) {
2145 c
= strescseq
.buf
[i
] & 0xff;
2148 } else if(isprint(c
)) {
2150 } else if(c
== '\n') {
2152 } else if(c
== '\r') {
2154 } else if(c
== 0x1b) {
2157 printf("(%02x)", c
);
2165 memset(&strescseq
, 0, sizeof(strescseq
));
2169 tputtab(bool forward
) {
2175 for(++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
2180 for(--x
; x
> 0 && !term
.tabs
[x
]; --x
)
2183 tmoveto(x
, term
.c
.y
);
2187 techo(char *buf
, int len
) {
2188 for(; len
> 0; buf
++, len
--) {
2191 if(c
== '\033') { /* escape */
2194 } else if(c
< '\x20') { /* control code */
2195 if(c
!= '\n' && c
!= '\r' && c
!= '\t') {
2209 tputc(char *c
, int len
) {
2211 bool control
= ascii
< '\x20' || ascii
== 0177;
2214 if(xwrite(iofd
, c
, len
) < 0) {
2215 fprintf(stderr
, "Error writing in %s:%s\n",
2216 opt_io
, strerror(errno
));
2223 * STR sequences must be checked before anything else
2224 * because it can use some control codes as part of the sequence.
2226 if(term
.esc
& ESC_STR
) {
2229 term
.esc
= ESC_START
| ESC_STR_END
;
2231 case '\a': /* backwards compatibility to xterm */
2236 if(strescseq
.len
+ len
< sizeof(strescseq
.buf
) - 1) {
2237 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2238 strescseq
.len
+= len
;
2241 * Here is a bug in terminals. If the user never sends
2242 * some code to stop the str or esc command, then st
2243 * will stop responding. But this is better than
2244 * silently failing with unknown characters. At least
2245 * then users will report back.
2247 * In the case users ever get fixed, here is the code:
2259 * Actions of control codes must be performed as soon they arrive
2260 * because they can be embedded inside a control sequence, and
2261 * they must not cause conflicts with sequences.
2269 tmoveto(term
.c
.x
-1, term
.c
.y
);
2272 tmoveto(0, term
.c
.y
);
2277 /* go to first col if the mode is set */
2278 tnewline(IS_SET(MODE_CRLF
));
2280 case '\a': /* BEL */
2281 if(!(xw
.state
& WIN_FOCUSED
))
2284 case '\033': /* ESC */
2286 term
.esc
= ESC_START
;
2288 case '\016': /* SO */
2289 case '\017': /* SI */
2291 * Different charsets are hard to handle. Applications
2292 * should use the right alt charset escapes for the
2293 * only reason they still exist: line drawing. The
2294 * rest is incompatible history st should not support.
2297 case '\032': /* SUB */
2298 case '\030': /* CAN */
2301 case '\005': /* ENQ (IGNORED) */
2302 case '\000': /* NUL (IGNORED) */
2303 case '\021': /* XON (IGNORED) */
2304 case '\023': /* XOFF (IGNORED) */
2305 case 0177: /* DEL (IGNORED) */
2308 } else if(term
.esc
& ESC_START
) {
2309 if(term
.esc
& ESC_CSI
) {
2310 csiescseq
.buf
[csiescseq
.len
++] = ascii
;
2311 if(BETWEEN(ascii
, 0x40, 0x7E)
2312 || csiescseq
.len
>= \
2313 sizeof(csiescseq
.buf
)-1) {
2318 } else if(term
.esc
& ESC_STR_END
) {
2322 } else if(term
.esc
& ESC_ALTCHARSET
) {
2324 case '0': /* Line drawing set */
2325 term
.c
.attr
.mode
|= ATTR_GFX
;
2327 case 'B': /* USASCII */
2328 term
.c
.attr
.mode
&= ~ATTR_GFX
;
2330 case 'A': /* UK (IGNORED) */
2331 case '<': /* multinational charset (IGNORED) */
2332 case '5': /* Finnish (IGNORED) */
2333 case 'C': /* Finnish (IGNORED) */
2334 case 'K': /* German (IGNORED) */
2337 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2340 } else if(term
.esc
& ESC_TEST
) {
2341 if(ascii
== '8') { /* DEC screen alignment test. */
2342 char E
[UTF_SIZ
] = "E";
2345 for(x
= 0; x
< term
.col
; ++x
) {
2346 for(y
= 0; y
< term
.row
; ++y
)
2347 tsetchar(E
, &term
.c
.attr
, x
, y
);
2354 term
.esc
|= ESC_CSI
;
2357 term
.esc
|= ESC_TEST
;
2359 case 'P': /* DCS -- Device Control String */
2360 case '_': /* APC -- Application Program Command */
2361 case '^': /* PM -- Privacy Message */
2362 case ']': /* OSC -- Operating System Command */
2363 case 'k': /* old title set compatibility */
2365 strescseq
.type
= ascii
;
2366 term
.esc
|= ESC_STR
;
2368 case '(': /* set primary charset G0 */
2369 term
.esc
|= ESC_ALTCHARSET
;
2371 case ')': /* set secondary charset G1 (IGNORED) */
2372 case '*': /* set tertiary charset G2 (IGNORED) */
2373 case '+': /* set quaternary charset G3 (IGNORED) */
2376 case 'D': /* IND -- Linefeed */
2377 if(term
.c
.y
== term
.bot
) {
2378 tscrollup(term
.top
, 1);
2380 tmoveto(term
.c
.x
, term
.c
.y
+1);
2384 case 'E': /* NEL -- Next line */
2385 tnewline(1); /* always go to first col */
2388 case 'H': /* HTS -- Horizontal tab stop */
2389 term
.tabs
[term
.c
.x
] = 1;
2392 case 'M': /* RI -- Reverse index */
2393 if(term
.c
.y
== term
.top
) {
2394 tscrolldown(term
.top
, 1);
2396 tmoveto(term
.c
.x
, term
.c
.y
-1);
2400 case 'Z': /* DECID -- Identify Terminal */
2401 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
2404 case 'c': /* RIS -- Reset to inital state */
2409 case '=': /* DECPAM -- Application keypad */
2410 term
.mode
|= MODE_APPKEYPAD
;
2413 case '>': /* DECPNM -- Normal keypad */
2414 term
.mode
&= ~MODE_APPKEYPAD
;
2417 case '7': /* DECSC -- Save Cursor */
2418 tcursor(CURSOR_SAVE
);
2421 case '8': /* DECRC -- Restore Cursor */
2422 tcursor(CURSOR_LOAD
);
2425 case '\\': /* ST -- Stop */
2429 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2430 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2435 * All characters which form part of a sequence are not
2441 * Display control codes only if we are in graphic mode
2443 if(control
&& !(term
.c
.attr
.mode
& ATTR_GFX
))
2445 if(sel
.ob
.x
!= -1 && BETWEEN(term
.c
.y
, sel
.ob
.y
, sel
.oe
.y
))
2447 if(IS_SET(MODE_WRAP
) && (term
.c
.state
& CURSOR_WRAPNEXT
)) {
2448 term
.line
[term
.c
.y
][term
.c
.x
].mode
|= ATTR_WRAP
;
2452 if(IS_SET(MODE_INSERT
) && term
.c
.x
+1 < term
.col
) {
2453 memmove(&term
.line
[term
.c
.y
][term
.c
.x
+1],
2454 &term
.line
[term
.c
.y
][term
.c
.x
],
2455 (term
.col
- term
.c
.x
- 1) * sizeof(Glyph
));
2458 tsetchar(c
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2459 if(term
.c
.x
+1 < term
.col
) {
2460 tmoveto(term
.c
.x
+1, term
.c
.y
);
2462 term
.c
.state
|= CURSOR_WRAPNEXT
;
2467 tresize(int col
, int row
) {
2469 int minrow
= MIN(row
, term
.row
);
2470 int mincol
= MIN(col
, term
.col
);
2471 int slide
= term
.c
.y
- row
+ 1;
2475 if(col
< 1 || row
< 1)
2478 /* free unneeded rows */
2482 * slide screen to keep cursor where we expect it -
2483 * tscrollup would work here, but we can optimize to
2484 * memmove because we're freeing the earlier lines
2486 for(/* i = 0 */; i
< slide
; i
++) {
2490 memmove(term
.line
, term
.line
+ slide
, row
* sizeof(Line
));
2491 memmove(term
.alt
, term
.alt
+ slide
, row
* sizeof(Line
));
2493 for(i
+= row
; i
< term
.row
; i
++) {
2498 /* resize to new height */
2499 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
2500 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
2501 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
2502 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
2504 /* resize each row to new width, zero-pad if needed */
2505 for(i
= 0; i
< minrow
; i
++) {
2507 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
2508 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
2511 /* allocate any new rows */
2512 for(/* i == minrow */; i
< row
; i
++) {
2514 term
.line
[i
] = xcalloc(col
, sizeof(Glyph
));
2515 term
.alt
[i
] = xcalloc(col
, sizeof(Glyph
));
2517 if(col
> term
.col
) {
2518 bp
= term
.tabs
+ term
.col
;
2520 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
2521 while(--bp
> term
.tabs
&& !*bp
)
2523 for(bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
2526 /* update terminal size */
2529 /* reset scrolling region */
2530 tsetscroll(0, row
-1);
2531 /* make use of the LIMIT in tmoveto */
2532 tmoveto(term
.c
.x
, term
.c
.y
);
2533 /* Clearing both screens */
2536 if(mincol
< col
&& 0 < minrow
) {
2537 tclearregion(mincol
, 0, col
- 1, minrow
- 1);
2539 if(0 < col
&& minrow
< row
) {
2540 tclearregion(0, minrow
, col
- 1, row
- 1);
2543 } while(orig
!= term
.line
);
2549 xresize(int col
, int row
) {
2550 xw
.tw
= MAX(1, col
* xw
.cw
);
2551 xw
.th
= MAX(1, row
* xw
.ch
);
2553 XFreePixmap(xw
.dpy
, xw
.buf
);
2554 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2555 DefaultDepth(xw
.dpy
, xw
.scr
));
2556 XftDrawChange(xw
.draw
, xw
.buf
);
2557 xclear(0, 0, xw
.w
, xw
.h
);
2560 static inline ushort
2561 sixd_to_16bit(int x
) {
2562 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
2568 XRenderColor color
= { .alpha
= 0xffff };
2570 /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
2571 for(i
= 0; i
< LEN(colorname
); i
++) {
2574 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, colorname
[i
], &dc
.col
[i
])) {
2575 die("Could not allocate color '%s'\n", colorname
[i
]);
2579 /* load colors [16-255] ; same colors as xterm */
2580 for(i
= 16, r
= 0; r
< 6; r
++) {
2581 for(g
= 0; g
< 6; g
++) {
2582 for(b
= 0; b
< 6; b
++) {
2583 color
.red
= sixd_to_16bit(r
);
2584 color
.green
= sixd_to_16bit(g
);
2585 color
.blue
= sixd_to_16bit(b
);
2586 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &dc
.col
[i
])) {
2587 die("Could not allocate color %d\n", i
);
2594 for(r
= 0; r
< 24; r
++, i
++) {
2595 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
2596 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
,
2598 die("Could not allocate color %d\n", i
);
2604 xsetcolorname(int x
, const char *name
) {
2605 XRenderColor color
= { .alpha
= 0xffff };
2607 if (x
< 0 || x
> LEN(colorname
))
2610 if(16 <= x
&& x
< 16 + 216) {
2611 int r
= (x
- 16) / 36, g
= ((x
- 16) % 36) / 6, b
= (x
- 16) % 6;
2612 color
.red
= sixd_to_16bit(r
);
2613 color
.green
= sixd_to_16bit(g
);
2614 color
.blue
= sixd_to_16bit(b
);
2615 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2616 return 0; /* something went wrong */
2619 } else if (16 + 216 <= x
&& x
< 256) {
2620 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * (x
- (16 + 216));
2621 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2622 return 0; /* something went wrong */
2626 name
= colorname
[x
];
2629 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, &colour
))
2636 xtermclear(int col1
, int row1
, int col2
, int row2
) {
2637 XftDrawRect(xw
.draw
,
2638 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
2639 borderpx
+ col1
* xw
.cw
,
2640 borderpx
+ row1
* xw
.ch
,
2641 (col2
-col1
+1) * xw
.cw
,
2642 (row2
-row1
+1) * xw
.ch
);
2646 * Absolute coordinates.
2649 xclear(int x1
, int y1
, int x2
, int y2
) {
2650 XftDrawRect(xw
.draw
,
2651 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
2652 x1
, y1
, x2
-x1
, y2
-y1
);
2657 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
2658 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
2659 XSizeHints
*sizeh
= NULL
;
2661 sizeh
= XAllocSizeHints();
2662 if(xw
.isfixed
== False
) {
2663 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
2664 sizeh
->height
= xw
.h
;
2665 sizeh
->width
= xw
.w
;
2666 sizeh
->height_inc
= xw
.ch
;
2667 sizeh
->width_inc
= xw
.cw
;
2668 sizeh
->base_height
= 2 * borderpx
;
2669 sizeh
->base_width
= 2 * borderpx
;
2671 sizeh
->flags
= PMaxSize
| PMinSize
;
2672 sizeh
->min_width
= sizeh
->max_width
= xw
.fw
;
2673 sizeh
->min_height
= sizeh
->max_height
= xw
.fh
;
2676 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
, &class);
2681 xloadfont(Font
*f
, FcPattern
*pattern
) {
2685 match
= FcFontMatch(NULL
, pattern
, &result
);
2689 if(!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
2690 FcPatternDestroy(match
);
2695 f
->pattern
= FcPatternDuplicate(pattern
);
2697 f
->ascent
= f
->match
->ascent
;
2698 f
->descent
= f
->match
->descent
;
2700 f
->rbearing
= f
->match
->max_advance_width
;
2702 f
->height
= f
->ascent
+ f
->descent
;
2703 f
->width
= f
->lbearing
+ f
->rbearing
;
2709 xloadfonts(char *fontstr
, int fontsize
) {
2714 if(fontstr
[0] == '-') {
2715 pattern
= XftXlfdParse(fontstr
, False
, False
);
2717 pattern
= FcNameParse((FcChar8
*)fontstr
);
2721 die("st: can't open font %s\n", fontstr
);
2724 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
2725 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
2726 usedfontsize
= fontsize
;
2728 result
= FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
);
2729 if(result
== FcResultMatch
) {
2730 usedfontsize
= (int)fontval
;
2733 * Default font size is 12, if none given. This is to
2734 * have a known usedfontsize value.
2736 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
2741 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
2742 FcDefaultSubstitute(pattern
);
2744 if(xloadfont(&dc
.font
, pattern
))
2745 die("st: can't open font %s\n", fontstr
);
2747 /* Setting character width and height. */
2748 xw
.cw
= dc
.font
.width
;
2749 xw
.ch
= dc
.font
.height
;
2751 FcPatternDel(pattern
, FC_SLANT
);
2752 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
2753 if(xloadfont(&dc
.ifont
, pattern
))
2754 die("st: can't open font %s\n", fontstr
);
2756 FcPatternDel(pattern
, FC_WEIGHT
);
2757 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
2758 if(xloadfont(&dc
.ibfont
, pattern
))
2759 die("st: can't open font %s\n", fontstr
);
2761 FcPatternDel(pattern
, FC_SLANT
);
2762 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
2763 if(xloadfont(&dc
.bfont
, pattern
))
2764 die("st: can't open font %s\n", fontstr
);
2766 FcPatternDestroy(pattern
);
2770 xloadfontset(Font
*f
) {
2773 if(!(f
->set
= FcFontSort(0, f
->pattern
, FcTrue
, 0, &result
)))
2779 xunloadfont(Font
*f
) {
2780 XftFontClose(xw
.dpy
, f
->match
);
2781 FcPatternDestroy(f
->pattern
);
2783 FcFontSetDestroy(f
->set
);
2787 xunloadfonts(void) {
2791 * Free the loaded fonts in the font cache. This is done backwards
2794 for(i
= 0, ip
= frccur
; i
< frclen
; i
++, ip
--) {
2797 XftFontClose(xw
.dpy
, frc
[ip
].font
);
2802 xunloadfont(&dc
.font
);
2803 xunloadfont(&dc
.bfont
);
2804 xunloadfont(&dc
.ifont
);
2805 xunloadfont(&dc
.ibfont
);
2809 xzoom(const Arg
*arg
) {
2811 xloadfonts(usedfont
, usedfontsize
+ arg
->i
);
2823 if(!(xw
.dpy
= XOpenDisplay(NULL
)))
2824 die("Can't open display\n");
2825 xw
.scr
= XDefaultScreen(xw
.dpy
);
2826 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
2830 die("Could not init fontconfig.\n");
2832 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
2833 xloadfonts(usedfont
, 0);
2836 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
2839 /* adjust fixed window geometry */
2841 sw
= DisplayWidth(xw
.dpy
, xw
.scr
);
2842 sh
= DisplayHeight(xw
.dpy
, xw
.scr
);
2844 xw
.fx
= sw
+ xw
.fx
- xw
.fw
- 1;
2846 xw
.fy
= sh
+ xw
.fy
- xw
.fh
- 1;
2851 /* window - default size */
2852 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
2853 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
2859 xw
.attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
2860 xw
.attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
2861 xw
.attrs
.bit_gravity
= NorthWestGravity
;
2862 xw
.attrs
.event_mask
= FocusChangeMask
| KeyPressMask
2863 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
2864 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
2865 xw
.attrs
.colormap
= xw
.cmap
;
2867 parent
= opt_embed
? strtol(opt_embed
, NULL
, 0) : \
2868 XRootWindow(xw
.dpy
, xw
.scr
);
2869 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.fx
, xw
.fy
,
2870 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
2871 xw
.vis
, CWBackPixel
| CWBorderPixel
| CWBitGravity
2872 | CWEventMask
| CWColormap
, &xw
.attrs
);
2874 memset(&gcvalues
, 0, sizeof(gcvalues
));
2875 gcvalues
.graphics_exposures
= False
;
2876 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
2878 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2879 DefaultDepth(xw
.dpy
, xw
.scr
));
2880 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
2881 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
2883 /* Xft rendering context */
2884 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
2887 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2888 XSetLocaleModifiers("@im=local");
2889 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2890 XSetLocaleModifiers("@im=");
2891 if((xw
.xim
= XOpenIM(xw
.dpy
,
2892 NULL
, NULL
, NULL
)) == NULL
) {
2893 die("XOpenIM failed. Could not open input"
2898 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
2899 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
2900 XNFocusWindow
, xw
.win
, NULL
);
2902 die("XCreateIC failed. Could not obtain input method.\n");
2904 /* white cursor, black outline */
2905 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
2906 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
2907 XRecolorCursor(xw
.dpy
, cursor
,
2908 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
2909 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
2911 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
2912 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
2913 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
2916 XMapWindow(xw
.dpy
, xw
.win
);
2922 xdraws(char *s
, Glyph base
, int x
, int y
, int charlen
, int bytelen
) {
2923 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
2924 width
= charlen
* xw
.cw
, xp
, i
;
2926 int u8fl
, u8fblen
, u8cblen
, doesexist
;
2929 Font
*font
= &dc
.font
;
2931 FcPattern
*fcpattern
, *fontpattern
;
2932 FcFontSet
*fcsets
[] = { NULL
};
2933 FcCharSet
*fccharset
;
2934 Colour
*fg
, *bg
, *temp
, revfg
, revbg
;
2935 XRenderColor colfg
, colbg
;
2938 frcflags
= FRC_NORMAL
;
2940 if(base
.mode
& ATTR_ITALIC
) {
2941 if(base
.fg
== defaultfg
)
2942 base
.fg
= defaultitalic
;
2944 frcflags
= FRC_ITALIC
;
2945 } else if((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
)) {
2946 if(base
.fg
== defaultfg
)
2947 base
.fg
= defaultitalic
;
2949 frcflags
= FRC_ITALICBOLD
;
2950 } else if(base
.mode
& ATTR_UNDERLINE
) {
2951 if(base
.fg
== defaultfg
)
2952 base
.fg
= defaultunderline
;
2954 fg
= &dc
.col
[base
.fg
];
2955 bg
= &dc
.col
[base
.bg
];
2957 if(base
.mode
& ATTR_BOLD
) {
2958 if(BETWEEN(base
.fg
, 0, 7)) {
2959 /* basic system colors */
2960 fg
= &dc
.col
[base
.fg
+ 8];
2961 } else if(BETWEEN(base
.fg
, 16, 195)) {
2963 fg
= &dc
.col
[base
.fg
+ 36];
2964 } else if(BETWEEN(base
.fg
, 232, 251)) {
2966 fg
= &dc
.col
[base
.fg
+ 4];
2969 * Those ranges will not be brightened:
2970 * 8 - 15 – bright system colors
2971 * 196 - 231 – highest 256 color cube
2972 * 252 - 255 – brightest colors in greyscale
2975 frcflags
= FRC_BOLD
;
2978 if(IS_SET(MODE_REVERSE
)) {
2979 if(fg
== &dc
.col
[defaultfg
]) {
2980 fg
= &dc
.col
[defaultbg
];
2982 colfg
.red
= ~fg
->color
.red
;
2983 colfg
.green
= ~fg
->color
.green
;
2984 colfg
.blue
= ~fg
->color
.blue
;
2985 colfg
.alpha
= fg
->color
.alpha
;
2986 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
2990 if(bg
== &dc
.col
[defaultbg
]) {
2991 bg
= &dc
.col
[defaultfg
];
2993 colbg
.red
= ~bg
->color
.red
;
2994 colbg
.green
= ~bg
->color
.green
;
2995 colbg
.blue
= ~bg
->color
.blue
;
2996 colbg
.alpha
= bg
->color
.alpha
;
2997 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &revbg
);
3002 if(base
.mode
& ATTR_REVERSE
) {
3008 if(base
.mode
& ATTR_BLINK
&& term
.mode
& MODE_BLINK
)
3011 /* Intelligent cleaning up of the borders. */
3013 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
3014 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
3016 if(x
+ charlen
>= term
.col
) {
3017 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
3018 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
3021 xclear(winx
, 0, winx
+ width
, borderpx
);
3023 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
3025 /* Clean up the region we want to draw to. */
3026 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
3028 /* Set the clip region because Xft is sometimes dirty. */
3033 XftDrawSetClipRectangles(xw
.draw
, winx
, winy
, &r
, 1);
3035 for(xp
= winx
; bytelen
> 0;) {
3037 * Search for the range in the to be printed string of glyphs
3038 * that are in the main font. Then print that range. If
3039 * some glyph is found that is not in the font, do the
3047 u8cblen
= utf8decode(s
, &u8char
);
3051 doesexist
= XftCharIndex(xw
.dpy
, font
->match
, u8char
);
3052 if(!doesexist
|| bytelen
<= 0) {
3061 XftDrawStringUtf8(xw
.draw
, fg
,
3063 winy
+ font
->ascent
,
3066 xp
+= font
->width
* u8fl
;
3079 /* Search the font cache. */
3080 for(i
= 0; i
< frclen
; i
++, frp
--) {
3084 if(frc
[frp
].c
== u8char
3085 && frc
[frp
].flags
== frcflags
) {
3090 /* Nothing was found. */
3094 fcsets
[0] = font
->set
;
3097 * Nothing was found in the cache. Now use
3098 * some dozen of Fontconfig calls to get the
3099 * font for one single character.
3101 fcpattern
= FcPatternDuplicate(font
->pattern
);
3102 fccharset
= FcCharSetCreate();
3104 FcCharSetAddChar(fccharset
, u8char
);
3105 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
3107 FcPatternAddBool(fcpattern
, FC_SCALABLE
,
3110 FcConfigSubstitute(0, fcpattern
,
3112 FcDefaultSubstitute(fcpattern
);
3114 fontpattern
= FcFontSetMatch(0, fcsets
,
3115 FcTrue
, fcpattern
, &fcres
);
3118 * Overwrite or create the new cache entry.
3122 if(frccur
>= LEN(frc
))
3124 if(frclen
> LEN(frc
)) {
3126 XftFontClose(xw
.dpy
, frc
[frccur
].font
);
3129 frc
[frccur
].font
= XftFontOpenPattern(xw
.dpy
,
3131 frc
[frccur
].c
= u8char
;
3132 frc
[frccur
].flags
= frcflags
;
3134 FcPatternDestroy(fcpattern
);
3135 FcCharSetDestroy(fccharset
);
3140 XftDrawStringUtf8(xw
.draw
, fg
, frc
[frp
].font
,
3141 xp
, winy
+ frc
[frp
].font
->ascent
,
3142 (FcChar8
*)u8c
, u8cblen
);
3148 XftDrawStringUtf8(xw.draw, fg, font->set, winx,
3149 winy + font->ascent, (FcChar8 *)s, bytelen);
3152 if(base
.mode
& ATTR_UNDERLINE
) {
3153 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ font
->ascent
+ 1,
3157 /* Reset clip to none. */
3158 XftDrawSetClip(xw
.draw
, 0);
3163 static int oldx
= 0, oldy
= 0;
3165 Glyph g
= {{' '}, ATTR_NULL
, defaultbg
, defaultcs
};
3167 LIMIT(oldx
, 0, term
.col
-1);
3168 LIMIT(oldy
, 0, term
.row
-1);
3170 memcpy(g
.c
, term
.line
[term
.c
.y
][term
.c
.x
].c
, UTF_SIZ
);
3172 /* remove the old cursor */
3173 sl
= utf8size(term
.line
[oldy
][oldx
].c
);
3174 xdraws(term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
,
3177 /* draw the new one */
3178 if(!(IS_SET(MODE_HIDE
))) {
3179 if(xw
.state
& WIN_FOCUSED
) {
3180 if(IS_SET(MODE_REVERSE
)) {
3181 g
.mode
|= ATTR_REVERSE
;
3187 xdraws(g
.c
, g
, term
.c
.x
, term
.c
.y
, 1, sl
);
3189 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3190 borderpx
+ term
.c
.x
* xw
.cw
,
3191 borderpx
+ term
.c
.y
* xw
.ch
,
3193 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3194 borderpx
+ term
.c
.x
* xw
.cw
,
3195 borderpx
+ term
.c
.y
* xw
.ch
,
3197 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3198 borderpx
+ (term
.c
.x
+ 1) * xw
.cw
- 1,
3199 borderpx
+ term
.c
.y
* xw
.ch
,
3201 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3202 borderpx
+ term
.c
.x
* xw
.cw
,
3203 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- 1,
3206 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
3212 xsettitle(char *p
) {
3215 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
3217 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
3222 xsettitle(opt_title
? opt_title
: "st");
3226 redraw(int timeout
) {
3227 struct timespec tv
= {0, timeout
* 1000};
3233 nanosleep(&tv
, NULL
);
3234 XSync(xw
.dpy
, False
); /* necessary for a good tput flash */
3240 drawregion(0, 0, term
.col
, term
.row
);
3241 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
3243 XSetForeground(xw
.dpy
, dc
.gc
,
3244 dc
.col
[IS_SET(MODE_REVERSE
)?
3245 defaultfg
: defaultbg
].pixel
);
3249 drawregion(int x1
, int y1
, int x2
, int y2
) {
3250 int ic
, ib
, x
, y
, ox
, sl
;
3252 char buf
[DRAW_BUF_SIZ
];
3253 bool ena_sel
= sel
.ob
.x
!= -1;
3255 if(sel
.alt
^ IS_SET(MODE_ALTSCREEN
))
3258 if(!(xw
.state
& WIN_VISIBLE
))
3261 for(y
= y1
; y
< y2
; y
++) {
3265 xtermclear(0, y
, term
.col
, y
);
3267 base
= term
.line
[y
][0];
3269 for(x
= x1
; x
< x2
; x
++) {
3270 new = term
.line
[y
][x
];
3271 if(ena_sel
&& selected(x
, y
))
3272 new.mode
^= ATTR_REVERSE
;
3273 if(ib
> 0 && (ATTRCMP(base
, new)
3274 || ib
>= DRAW_BUF_SIZ
-UTF_SIZ
)) {
3275 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3283 sl
= utf8size(new.c
);
3284 memcpy(buf
+ib
, new.c
, sl
);
3289 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3295 expose(XEvent
*ev
) {
3296 XExposeEvent
*e
= &ev
->xexpose
;
3298 if(xw
.state
& WIN_REDRAW
) {
3300 xw
.state
&= ~WIN_REDRAW
;
3306 visibility(XEvent
*ev
) {
3307 XVisibilityEvent
*e
= &ev
->xvisibility
;
3309 if(e
->state
== VisibilityFullyObscured
) {
3310 xw
.state
&= ~WIN_VISIBLE
;
3311 } else if(!(xw
.state
& WIN_VISIBLE
)) {
3312 /* need a full redraw for next Expose, not just a buf copy */
3313 xw
.state
|= WIN_VISIBLE
| WIN_REDRAW
;
3319 xw
.state
&= ~WIN_VISIBLE
;
3323 xsetpointermotion(int set
) {
3324 MODBIT(xw
.attrs
.event_mask
, set
, PointerMotionMask
);
3325 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
, &xw
.attrs
);
3329 xseturgency(int add
) {
3330 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3332 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
3333 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3339 XFocusChangeEvent
*e
= &ev
->xfocus
;
3341 if(e
->mode
== NotifyGrab
)
3344 if(ev
->type
== FocusIn
) {
3345 XSetICFocus(xw
.xic
);
3346 xw
.state
|= WIN_FOCUSED
;
3348 if(IS_SET(MODE_FOCUS
))
3349 ttywrite("\033[I", 3);
3351 XUnsetICFocus(xw
.xic
);
3352 xw
.state
&= ~WIN_FOCUSED
;
3353 if(IS_SET(MODE_FOCUS
))
3354 ttywrite("\033[O", 3);
3359 match(uint mask
, uint state
) {
3360 state
&= ~ignoremod
;
3362 if(mask
== XK_NO_MOD
&& state
)
3364 if(mask
!= XK_ANY_MOD
&& mask
!= XK_NO_MOD
&& !state
)
3366 if(mask
== XK_ANY_MOD
)
3368 return state
== mask
;
3372 numlock(const Arg
*dummy
) {
3377 kmap(KeySym k
, uint state
) {
3382 /* Check for mapped keys out of X11 function keys. */
3383 for(i
= 0; i
< LEN(mappedkeys
); i
++) {
3384 if(mappedkeys
[i
] == k
)
3387 if(i
== LEN(mappedkeys
)) {
3388 if((k
& 0xFFFF) < 0xFD00)
3392 for(kp
= key
; kp
< key
+ LEN(key
); kp
++) {
3398 if(!match(mask
, state
))
3401 if(kp
->appkey
> 0) {
3402 if(!IS_SET(MODE_APPKEYPAD
))
3404 if(term
.numlock
&& kp
->appkey
== 2)
3406 } else if(kp
->appkey
< 0 && IS_SET(MODE_APPKEYPAD
)) {
3410 if((kp
->appcursor
< 0 && IS_SET(MODE_APPCURSOR
)) ||
3412 && !IS_SET(MODE_APPCURSOR
))) {
3416 if((kp
->crlf
< 0 && IS_SET(MODE_CRLF
)) ||
3417 (kp
->crlf
> 0 && !IS_SET(MODE_CRLF
))) {
3428 kpress(XEvent
*ev
) {
3429 XKeyEvent
*e
= &ev
->xkey
;
3431 char xstr
[31], buf
[32], *customkey
, *cp
= buf
;
3437 if(IS_SET(MODE_KBDLOCK
))
3440 len
= XmbLookupString(xw
.xic
, e
, xstr
, sizeof(xstr
), &ksym
, &status
);
3441 e
->state
&= ~Mod2Mask
;
3443 for(bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
3444 if(ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
3445 bp
->func(&(bp
->arg
));
3450 /* 2. custom keys from config.h */
3451 if((customkey
= kmap(ksym
, e
->state
))) {
3452 len
= strlen(customkey
);
3453 memcpy(buf
, customkey
, len
);
3454 /* 3. hardcoded (overrides X lookup) */
3459 if(len
== 1 && e
->state
& Mod1Mask
) {
3460 if(IS_SET(MODE_8BIT
)) {
3463 ret
= utf8encode(&c
, cp
);
3472 memcpy(cp
, xstr
, len
);
3473 len
= cp
- buf
+ len
;
3477 if(IS_SET(MODE_ECHO
))
3483 cmessage(XEvent
*e
) {
3486 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
3488 if(e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
3489 if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
3490 xw
.state
|= WIN_FOCUSED
;
3492 } else if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
3493 xw
.state
&= ~WIN_FOCUSED
;
3495 } else if(e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
3496 /* Send SIGHUP to shell */
3503 cresize(int width
, int height
) {
3511 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
3512 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
3521 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
3524 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
3531 int xfd
= XConnectionNumber(xw
.dpy
), xev
, blinkset
= 0, dodraw
= 0;
3532 struct timeval drawtimeout
, *tv
= NULL
, now
, last
, lastblink
;
3534 gettimeofday(&lastblink
, NULL
);
3535 gettimeofday(&last
, NULL
);
3537 for(xev
= actionfps
;;) {
3539 FD_SET(cmdfd
, &rfd
);
3542 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
) < 0) {
3545 die("select failed: %s\n", SERRNO
);
3547 if(FD_ISSET(cmdfd
, &rfd
)) {
3550 blinkset
= tattrset(ATTR_BLINK
);
3551 if(!blinkset
&& term
.mode
& ATTR_BLINK
)
3552 term
.mode
&= ~(MODE_BLINK
);
3556 if(FD_ISSET(xfd
, &rfd
))
3559 gettimeofday(&now
, NULL
);
3560 drawtimeout
.tv_sec
= 0;
3561 drawtimeout
.tv_usec
= (1000/xfps
) * 1000;
3565 if(blinktimeout
&& TIMEDIFF(now
, lastblink
) > blinktimeout
) {
3566 tsetdirtattr(ATTR_BLINK
);
3567 term
.mode
^= MODE_BLINK
;
3568 gettimeofday(&lastblink
, NULL
);
3571 if(TIMEDIFF(now
, last
) \
3572 > (xev
? (1000/xfps
) : (1000/actionfps
))) {
3578 while(XPending(xw
.dpy
)) {
3579 XNextEvent(xw
.dpy
, &ev
);
3580 if(XFilterEvent(&ev
, None
))
3582 if(handler
[ev
.type
])
3583 (handler
[ev
.type
])(&ev
);
3589 if(xev
&& !FD_ISSET(xfd
, &rfd
))
3591 if(!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
)) {
3593 if(TIMEDIFF(now
, lastblink
) \
3595 drawtimeout
.tv_usec
= 1;
3597 drawtimeout
.tv_usec
= (1000 * \
3612 die("%s " VERSION
" (c) 2010-2013 st engineers\n" \
3613 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \
3614 " [-t title] [-w windowid] [-e command ...]\n", argv0
);
3618 main(int argc
, char *argv
[]) {
3623 xw
.fw
= xw
.fh
= xw
.fx
= xw
.fy
= 0;
3628 allowaltscreen
= false;
3631 opt_class
= EARGF(usage());
3634 /* eat all remaining arguments */
3637 if(argv
[1] != NULL
&& opt_title
== NULL
) {
3638 titles
= strdup(argv
[1]);
3639 opt_title
= basename(titles
);
3644 opt_font
= EARGF(usage());
3647 bitm
= XParseGeometry(EARGF(usage()), &xr
, &yr
, &wr
, &hr
);
3652 if(bitm
& WidthValue
)
3654 if(bitm
& HeightValue
)
3656 if(bitm
& XNegative
&& xw
.fx
== 0)
3658 if(bitm
& XNegative
&& xw
.fy
== 0)
3661 if(xw
.fh
!= 0 && xw
.fw
!= 0)
3665 opt_io
= EARGF(usage());
3668 opt_title
= EARGF(usage());
3671 opt_embed
= EARGF(usage());
3679 setlocale(LC_CTYPE
, "");
3680 XSetLocaleModifiers("");
3686 cresize(xw
.h
, xw
.w
);