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 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
897 sel
.type
= SEL_REGULAR
;
898 sel
.oe
.x
= sel
.ob
.x
= x2col(e
->xbutton
.x
);
899 sel
.oe
.y
= sel
.ob
.y
= y2row(e
->xbutton
.y
);
902 * If the user clicks below predefined timeouts specific
903 * snapping behaviour is exposed.
905 if(TIMEDIFF(now
, sel
.tclick2
) <= tripleclicktimeout
) {
906 sel
.snap
= SNAP_LINE
;
907 } else if(TIMEDIFF(now
, sel
.tclick1
) <= doubleclicktimeout
) {
908 sel
.snap
= SNAP_WORD
;
912 selsnap(sel
.snap
, &sel
.ob
.x
, &sel
.ob
.y
, -1);
913 selsnap(sel
.snap
, &sel
.oe
.x
, &sel
.oe
.y
, +1);
917 * Draw selection, unless it's regular and we don't want to
918 * make clicks visible
922 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
925 sel
.tclick2
= sel
.tclick1
;
933 int x
, y
, bufsize
, size
, i
, ex
;
939 bufsize
= (term
.col
+1) * (sel
.ne
.y
-sel
.nb
.y
+1) * UTF_SIZ
;
940 ptr
= str
= xmalloc(bufsize
);
942 /* append every set & selected glyph to the selection */
943 for(y
= sel
.nb
.y
; y
< sel
.ne
.y
+ 1; y
++) {
944 gp
= &term
.line
[y
][0];
945 last
= gp
+ term
.col
;
947 while(--last
>= gp
&& !(selected(last
- gp
, y
) && \
948 strcmp(last
->c
, " ") != 0))
951 for(x
= 0; gp
<= last
; x
++, ++gp
) {
955 size
= utf8size(gp
->c
);
956 memcpy(ptr
, gp
->c
, size
);
961 * Copy and pasting of line endings is inconsistent
962 * in the inconsistent terminal and GUI world.
963 * The best solution seems like to produce '\n' when
964 * something is copied from st and convert '\n' to
965 * '\r', when something to be pasted is received by
967 * FIXME: Fix the computer world.
969 if(y
< sel
.ne
.y
&& !((gp
-1)->mode
& ATTR_WRAP
))
973 * If the last selected line expands in the selection
974 * after the visible text '\n' is appended.
978 while(--i
> 0 && term
.line
[y
][i
].c
[0] == ' ')
981 if(sel
.nb
.y
== sel
.ne
.y
&& sel
.ne
.x
< sel
.nb
.x
)
993 selnotify(XEvent
*e
) {
994 ulong nitems
, ofs
, rem
;
996 uchar
*data
, *last
, *repl
;
1001 if(XGetWindowProperty(xw
.dpy
, xw
.win
, XA_PRIMARY
, ofs
, BUFSIZ
/4,
1002 False
, AnyPropertyType
, &type
, &format
,
1003 &nitems
, &rem
, &data
)) {
1004 fprintf(stderr
, "Clipboard allocation failed\n");
1009 * As seen in selcopy:
1010 * Line endings are inconsistent in the terminal and GUI world
1011 * copy and pasting. When receiving some selection data,
1012 * replace all '\n' with '\r'.
1013 * FIXME: Fix the computer world.
1016 last
= data
+ nitems
* format
/ 8;
1017 while((repl
= memchr(repl
, '\n', last
- repl
))) {
1021 ttywrite((const char *)data
, nitems
* format
/ 8);
1023 /* number of 32-bit chunks returned */
1024 ofs
+= nitems
* format
/ 32;
1029 selpaste(const Arg
*dummy
) {
1030 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
1031 xw
.win
, CurrentTime
);
1035 clippaste(const Arg
*dummy
) {
1038 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1039 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, XA_PRIMARY
,
1040 xw
.win
, CurrentTime
);
1044 selclear(XEvent
*e
) {
1048 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1052 selrequest(XEvent
*e
) {
1053 XSelectionRequestEvent
*xsre
;
1054 XSelectionEvent xev
;
1055 Atom xa_targets
, string
;
1057 xsre
= (XSelectionRequestEvent
*) e
;
1058 xev
.type
= SelectionNotify
;
1059 xev
.requestor
= xsre
->requestor
;
1060 xev
.selection
= xsre
->selection
;
1061 xev
.target
= xsre
->target
;
1062 xev
.time
= xsre
->time
;
1064 xev
.property
= None
;
1066 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
1067 if(xsre
->target
== xa_targets
) {
1068 /* respond with the supported type */
1069 string
= sel
.xtarget
;
1070 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
1071 XA_ATOM
, 32, PropModeReplace
,
1072 (uchar
*) &string
, 1);
1073 xev
.property
= xsre
->property
;
1074 } else if(xsre
->target
== sel
.xtarget
&& sel
.clip
!= NULL
) {
1075 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
1076 xsre
->target
, 8, PropModeReplace
,
1077 (uchar
*) sel
.clip
, strlen(sel
.clip
));
1078 xev
.property
= xsre
->property
;
1081 /* all done, send a notification to the listener */
1082 if(!XSendEvent(xsre
->display
, xsre
->requestor
, True
, 0, (XEvent
*) &xev
))
1083 fprintf(stderr
, "Error sending SelectionNotify event\n");
1087 xsetsel(char *str
) {
1088 /* register the selection for both the clipboard and the primary */
1094 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, CurrentTime
);
1096 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1097 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
1101 brelease(XEvent
*e
) {
1102 if(IS_SET(MODE_MOUSE
)) {
1107 if(e
->xbutton
.button
== Button2
) {
1109 } else if(e
->xbutton
.button
== Button1
) {
1117 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1122 bmotion(XEvent
*e
) {
1123 int oldey
, oldex
, oldsby
, oldsey
;
1125 if(IS_SET(MODE_MOUSE
)) {
1140 if(oldey
!= sel
.oe
.y
|| oldex
!= sel
.oe
.x
)
1141 tsetdirt(MIN(sel
.nb
.y
, oldsby
), MAX(sel
.ne
.y
, oldsey
));
1145 die(const char *errstr
, ...) {
1148 va_start(ap
, errstr
);
1149 vfprintf(stderr
, errstr
, ap
);
1157 char *envshell
= getenv("SHELL");
1158 const struct passwd
*pass
= getpwuid(getuid());
1159 char buf
[sizeof(long) * 8 + 1];
1161 unsetenv("COLUMNS");
1163 unsetenv("TERMCAP");
1166 setenv("LOGNAME", pass
->pw_name
, 1);
1167 setenv("USER", pass
->pw_name
, 1);
1168 setenv("SHELL", pass
->pw_shell
, 0);
1169 setenv("HOME", pass
->pw_dir
, 0);
1172 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1173 setenv("WINDOWID", buf
, 1);
1175 signal(SIGCHLD
, SIG_DFL
);
1176 signal(SIGHUP
, SIG_DFL
);
1177 signal(SIGINT
, SIG_DFL
);
1178 signal(SIGQUIT
, SIG_DFL
);
1179 signal(SIGTERM
, SIG_DFL
);
1180 signal(SIGALRM
, SIG_DFL
);
1182 DEFAULT(envshell
, shell
);
1183 setenv("TERM", termname
, 1);
1184 args
= opt_cmd
? opt_cmd
: (char *[]){envshell
, "-i", NULL
};
1185 execvp(args
[0], args
);
1193 if(waitpid(pid
, &stat
, 0) < 0)
1194 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
1196 if(WIFEXITED(stat
)) {
1197 exit(WEXITSTATUS(stat
));
1206 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1208 /* seems to work fine on linux, openbsd and freebsd */
1209 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1210 die("openpty failed: %s\n", SERRNO
);
1212 switch(pid
= fork()) {
1214 die("fork failed\n");
1217 setsid(); /* create a new process group */
1218 dup2(s
, STDIN_FILENO
);
1219 dup2(s
, STDOUT_FILENO
);
1220 dup2(s
, STDERR_FILENO
);
1221 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1222 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
1230 signal(SIGCHLD
, sigchld
);
1232 iofd
= (!strcmp(opt_io
, "-")) ?
1234 open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1236 fprintf(stderr
, "Error opening %s:%s\n",
1237 opt_io
, strerror(errno
));
1247 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
1249 fprintf(stderr
, "\n");
1254 static char buf
[BUFSIZ
];
1255 static int buflen
= 0;
1258 int charsize
; /* size of utf8 char in bytes */
1262 /* append read bytes to unprocessed bytes */
1263 if((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1264 die("Couldn't read from shell: %s\n", SERRNO
);
1266 /* process every complete utf8 char */
1269 while(buflen
>= UTF_SIZ
|| isfullutf8(ptr
,buflen
)) {
1270 charsize
= utf8decode(ptr
, &utf8c
);
1271 utf8encode(&utf8c
, s
);
1277 /* keep any uncomplete utf8 char for the next call */
1278 memmove(buf
, ptr
, buflen
);
1282 ttywrite(const char *s
, size_t n
) {
1283 if(write(cmdfd
, s
, n
) == -1)
1284 die("write error on tty: %s\n", SERRNO
);
1291 w
.ws_row
= term
.row
;
1292 w
.ws_col
= term
.col
;
1293 w
.ws_xpixel
= xw
.tw
;
1294 w
.ws_ypixel
= xw
.th
;
1295 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1296 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
1300 tattrset(int attr
) {
1303 for(i
= 0; i
< term
.row
-1; i
++) {
1304 for(j
= 0; j
< term
.col
-1; j
++) {
1305 if(term
.line
[i
][j
].mode
& attr
)
1314 tsetdirt(int top
, int bot
) {
1317 LIMIT(top
, 0, term
.row
-1);
1318 LIMIT(bot
, 0, term
.row
-1);
1320 for(i
= top
; i
<= bot
; i
++)
1325 tsetdirtattr(int attr
) {
1328 for(i
= 0; i
< term
.row
-1; i
++) {
1329 for(j
= 0; j
< term
.col
-1; j
++) {
1330 if(term
.line
[i
][j
].mode
& attr
) {
1340 tsetdirt(0, term
.row
-1);
1347 if(mode
== CURSOR_SAVE
) {
1349 } else if(mode
== CURSOR_LOAD
) {
1359 term
.c
= (TCursor
){{
1363 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1365 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1366 for(i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1369 term
.bot
= term
.row
- 1;
1370 term
.mode
= MODE_WRAP
;
1372 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1374 tcursor(CURSOR_SAVE
);
1378 tnew(int col
, int row
) {
1379 memset(&term
, 0, sizeof(Term
));
1388 Line
*tmp
= term
.line
;
1390 term
.line
= term
.alt
;
1392 term
.mode
^= MODE_ALTSCREEN
;
1397 tscrolldown(int orig
, int n
) {
1401 LIMIT(n
, 0, term
.bot
-orig
+1);
1403 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
);
1405 for(i
= term
.bot
; i
>= orig
+n
; i
--) {
1406 temp
= term
.line
[i
];
1407 term
.line
[i
] = term
.line
[i
-n
];
1408 term
.line
[i
-n
] = temp
;
1411 term
.dirty
[i
-n
] = 1;
1418 tscrollup(int orig
, int n
) {
1421 LIMIT(n
, 0, term
.bot
-orig
+1);
1423 tclearregion(0, orig
, term
.col
-1, orig
+n
-1);
1425 for(i
= orig
; i
<= term
.bot
-n
; i
++) {
1426 temp
= term
.line
[i
];
1427 term
.line
[i
] = term
.line
[i
+n
];
1428 term
.line
[i
+n
] = temp
;
1431 term
.dirty
[i
+n
] = 1;
1434 selscroll(orig
, -n
);
1438 selscroll(int orig
, int n
) {
1442 if(BETWEEN(sel
.ob
.y
, orig
, term
.bot
) || BETWEEN(sel
.oe
.y
, orig
, term
.bot
)) {
1443 if((sel
.ob
.y
+= n
) > term
.bot
|| (sel
.oe
.y
+= n
) < term
.top
) {
1447 if(sel
.type
== SEL_RECTANGULAR
) {
1448 if(sel
.ob
.y
< term
.top
)
1449 sel
.ob
.y
= term
.top
;
1450 if(sel
.oe
.y
> term
.bot
)
1451 sel
.oe
.y
= term
.bot
;
1453 if(sel
.ob
.y
< term
.top
) {
1454 sel
.ob
.y
= term
.top
;
1457 if(sel
.oe
.y
> term
.bot
) {
1458 sel
.oe
.y
= term
.bot
;
1459 sel
.oe
.x
= term
.col
;
1467 tnewline(int first_col
) {
1471 tscrollup(term
.top
, 1);
1475 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1480 char *p
= csiescseq
.buf
, *np
;
1489 csiescseq
.buf
[csiescseq
.len
] = '\0';
1490 while(p
< csiescseq
.buf
+csiescseq
.len
) {
1492 v
= strtol(p
, &np
, 10);
1495 if(v
== LONG_MAX
|| v
== LONG_MIN
)
1497 csiescseq
.arg
[csiescseq
.narg
++] = v
;
1499 if(*p
!= ';' || csiescseq
.narg
== ESC_ARG_SIZ
)
1503 csiescseq
.mode
= *p
;
1506 /* for absolute user moves, when decom is set */
1508 tmoveato(int x
, int y
) {
1509 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1513 tmoveto(int x
, int y
) {
1516 if(term
.c
.state
& CURSOR_ORIGIN
) {
1521 maxy
= term
.row
- 1;
1523 LIMIT(x
, 0, term
.col
-1);
1524 LIMIT(y
, miny
, maxy
);
1525 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1531 tsetchar(char *c
, Glyph
*attr
, int x
, int y
) {
1532 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1533 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1534 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1535 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1536 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1537 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1538 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1539 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1540 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1544 * The table is proudly stolen from rxvt.
1546 if(attr
->mode
& ATTR_GFX
) {
1547 if(c
[0] >= 0x41 && c
[0] <= 0x7e
1548 && vt100_0
[c
[0] - 0x41]) {
1549 c
= vt100_0
[c
[0] - 0x41];
1554 term
.line
[y
][x
] = *attr
;
1555 memcpy(term
.line
[y
][x
].c
, c
, UTF_SIZ
);
1559 tclearregion(int x1
, int y1
, int x2
, int y2
) {
1563 temp
= x1
, x1
= x2
, x2
= temp
;
1565 temp
= y1
, y1
= y2
, y2
= temp
;
1567 LIMIT(x1
, 0, term
.col
-1);
1568 LIMIT(x2
, 0, term
.col
-1);
1569 LIMIT(y1
, 0, term
.row
-1);
1570 LIMIT(y2
, 0, term
.row
-1);
1572 for(y
= y1
; y
<= y2
; y
++) {
1574 for(x
= x1
; x
<= x2
; x
++) {
1577 term
.line
[y
][x
] = term
.c
.attr
;
1578 memcpy(term
.line
[y
][x
].c
, " ", 2);
1584 tdeletechar(int n
) {
1585 int src
= term
.c
.x
+ n
;
1587 int size
= term
.col
- src
;
1589 term
.dirty
[term
.c
.y
] = 1;
1591 if(src
>= term
.col
) {
1592 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1596 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1597 size
* sizeof(Glyph
));
1598 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1602 tinsertblank(int n
) {
1605 int size
= term
.col
- dst
;
1607 term
.dirty
[term
.c
.y
] = 1;
1609 if(dst
>= term
.col
) {
1610 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1614 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
],
1615 size
* sizeof(Glyph
));
1616 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
1620 tinsertblankline(int n
) {
1621 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1624 tscrolldown(term
.c
.y
, n
);
1628 tdeleteline(int n
) {
1629 if(term
.c
.y
< term
.top
|| term
.c
.y
> term
.bot
)
1632 tscrollup(term
.c
.y
, n
);
1636 tsetattr(int *attr
, int l
) {
1639 for(i
= 0; i
< l
; i
++) {
1642 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE \
1643 | ATTR_BOLD
| ATTR_ITALIC \
1645 term
.c
.attr
.fg
= defaultfg
;
1646 term
.c
.attr
.bg
= defaultbg
;
1649 term
.c
.attr
.mode
|= ATTR_BOLD
;
1652 term
.c
.attr
.mode
|= ATTR_ITALIC
;
1655 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
1657 case 5: /* slow blink */
1658 case 6: /* rapid blink */
1659 term
.c
.attr
.mode
|= ATTR_BLINK
;
1662 term
.c
.attr
.mode
|= ATTR_REVERSE
;
1666 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
1669 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
1672 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
1676 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
1679 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
1682 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1684 if(BETWEEN(attr
[i
], 0, 255)) {
1685 term
.c
.attr
.fg
= attr
[i
];
1688 "erresc: bad fgcolor %d\n",
1693 "erresc(38): gfx attr %d unknown\n",
1698 term
.c
.attr
.fg
= defaultfg
;
1701 if(i
+ 2 < l
&& attr
[i
+ 1] == 5) {
1703 if(BETWEEN(attr
[i
], 0, 255)) {
1704 term
.c
.attr
.bg
= attr
[i
];
1707 "erresc: bad bgcolor %d\n",
1712 "erresc(48): gfx attr %d unknown\n",
1717 term
.c
.attr
.bg
= defaultbg
;
1720 if(BETWEEN(attr
[i
], 30, 37)) {
1721 term
.c
.attr
.fg
= attr
[i
] - 30;
1722 } else if(BETWEEN(attr
[i
], 40, 47)) {
1723 term
.c
.attr
.bg
= attr
[i
] - 40;
1724 } else if(BETWEEN(attr
[i
], 90, 97)) {
1725 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
1726 } else if(BETWEEN(attr
[i
], 100, 107)) {
1727 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
1730 "erresc(default): gfx attr %d unknown\n",
1731 attr
[i
]), csidump();
1739 tsetscroll(int t
, int b
) {
1742 LIMIT(t
, 0, term
.row
-1);
1743 LIMIT(b
, 0, term
.row
-1);
1753 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
1756 tsetmode(bool priv
, bool set
, int *args
, int narg
) {
1760 for(lim
= args
+ narg
; args
< lim
; ++args
) {
1764 case 1: /* DECCKM -- Cursor key */
1765 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
1767 case 5: /* DECSCNM -- Reverse video */
1769 MODBIT(term
.mode
, set
, MODE_REVERSE
);
1770 if(mode
!= term
.mode
)
1771 redraw(REDRAW_TIMEOUT
);
1773 case 6: /* DECOM -- Origin */
1774 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
1777 case 7: /* DECAWM -- Auto wrap */
1778 MODBIT(term
.mode
, set
, MODE_WRAP
);
1780 case 0: /* Error (IGNORED) */
1781 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
1782 case 3: /* DECCOLM -- Column (IGNORED) */
1783 case 4: /* DECSCLM -- Scroll (IGNORED) */
1784 case 8: /* DECARM -- Auto repeat (IGNORED) */
1785 case 18: /* DECPFF -- Printer feed (IGNORED) */
1786 case 19: /* DECPEX -- Printer extent (IGNORED) */
1787 case 42: /* DECNRCM -- National characters (IGNORED) */
1788 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1790 case 25: /* DECTCEM -- Text Cursor Enable Mode */
1791 MODBIT(term
.mode
, !set
, MODE_HIDE
);
1793 case 9: /* X10 mouse compatibility mode */
1794 xsetpointermotion(0);
1795 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1796 MODBIT(term
.mode
, set
, MODE_MOUSEX10
);
1798 case 1000: /* 1000: report button press */
1799 xsetpointermotion(0);
1800 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1801 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
1803 case 1002: /* 1002: report motion on button press */
1804 xsetpointermotion(0);
1805 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1806 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
1808 case 1003: /* 1003: enable all mouse motions */
1809 xsetpointermotion(set
);
1810 MODBIT(term
.mode
, 0, MODE_MOUSE
);
1811 MODBIT(term
.mode
, set
, MODE_MOUSEMANY
);
1813 case 1004: /* 1004: send focus events to tty */
1814 MODBIT(term
.mode
, set
, MODE_FOCUS
);
1816 case 1006: /* 1006: extended reporting mode */
1817 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
1820 MODBIT(term
.mode
, set
, MODE_8BIT
);
1822 case 1049: /* = 1047 and 1048 */
1825 if (!allowaltscreen
)
1828 alt
= IS_SET(MODE_ALTSCREEN
);
1830 tclearregion(0, 0, term
.col
-1,
1833 if(set
^ alt
) /* set is always 1 or 0 */
1839 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
1841 /* Not implemented mouse modes. See comments there. */
1842 case 1001: /* mouse highlight mode; can hang the
1843 terminal by design when implemented. */
1844 case 1005: /* UTF-8 mouse mode; will confuse
1845 applications not supporting UTF-8
1847 case 1015: /* urxvt mangled mouse mode; incompatible
1848 and can be mistaken for other control
1852 "erresc: unknown private set/reset mode %d\n",
1858 case 0: /* Error (IGNORED) */
1860 case 2: /* KAM -- keyboard action */
1861 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
1863 case 4: /* IRM -- Insertion-replacement */
1864 MODBIT(term
.mode
, set
, MODE_INSERT
);
1866 case 12: /* SRM -- Send/Receive */
1867 MODBIT(term
.mode
, !set
, MODE_ECHO
);
1869 case 20: /* LNM -- Linefeed/new line */
1870 MODBIT(term
.mode
, set
, MODE_CRLF
);
1874 "erresc: unknown set/reset mode %d\n",
1884 switch(csiescseq
.mode
) {
1887 fprintf(stderr
, "erresc: unknown csi ");
1891 case '@': /* ICH -- Insert <n> blank char */
1892 DEFAULT(csiescseq
.arg
[0], 1);
1893 tinsertblank(csiescseq
.arg
[0]);
1895 case 'A': /* CUU -- Cursor <n> Up */
1896 DEFAULT(csiescseq
.arg
[0], 1);
1897 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
1899 case 'B': /* CUD -- Cursor <n> Down */
1900 case 'e': /* VPR --Cursor <n> Down */
1901 DEFAULT(csiescseq
.arg
[0], 1);
1902 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
1904 case 'c': /* DA -- Device Attributes */
1905 if(csiescseq
.arg
[0] == 0)
1906 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
1908 case 'C': /* CUF -- Cursor <n> Forward */
1909 case 'a': /* HPR -- Cursor <n> Forward */
1910 DEFAULT(csiescseq
.arg
[0], 1);
1911 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
1913 case 'D': /* CUB -- Cursor <n> Backward */
1914 DEFAULT(csiescseq
.arg
[0], 1);
1915 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
1917 case 'E': /* CNL -- Cursor <n> Down and first col */
1918 DEFAULT(csiescseq
.arg
[0], 1);
1919 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
1921 case 'F': /* CPL -- Cursor <n> Up and first col */
1922 DEFAULT(csiescseq
.arg
[0], 1);
1923 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
1925 case 'g': /* TBC -- Tabulation clear */
1926 switch(csiescseq
.arg
[0]) {
1927 case 0: /* clear current tab stop */
1928 term
.tabs
[term
.c
.x
] = 0;
1930 case 3: /* clear all the tabs */
1931 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1937 case 'G': /* CHA -- Move to <col> */
1939 DEFAULT(csiescseq
.arg
[0], 1);
1940 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
1942 case 'H': /* CUP -- Move to <row> <col> */
1944 DEFAULT(csiescseq
.arg
[0], 1);
1945 DEFAULT(csiescseq
.arg
[1], 1);
1946 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
1948 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
1949 DEFAULT(csiescseq
.arg
[0], 1);
1950 while(csiescseq
.arg
[0]--)
1953 case 'J': /* ED -- Clear screen */
1955 switch(csiescseq
.arg
[0]) {
1957 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1958 if(term
.c
.y
< term
.row
-1) {
1959 tclearregion(0, term
.c
.y
+1, term
.col
-1,
1965 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1);
1966 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1969 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1975 case 'K': /* EL -- Clear line */
1976 switch(csiescseq
.arg
[0]) {
1978 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
1982 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
1985 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
1989 case 'S': /* SU -- Scroll <n> line up */
1990 DEFAULT(csiescseq
.arg
[0], 1);
1991 tscrollup(term
.top
, csiescseq
.arg
[0]);
1993 case 'T': /* SD -- Scroll <n> line down */
1994 DEFAULT(csiescseq
.arg
[0], 1);
1995 tscrolldown(term
.top
, csiescseq
.arg
[0]);
1997 case 'L': /* IL -- Insert <n> blank lines */
1998 DEFAULT(csiescseq
.arg
[0], 1);
1999 tinsertblankline(csiescseq
.arg
[0]);
2001 case 'l': /* RM -- Reset Mode */
2002 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
2004 case 'M': /* DL -- Delete <n> lines */
2005 DEFAULT(csiescseq
.arg
[0], 1);
2006 tdeleteline(csiescseq
.arg
[0]);
2008 case 'X': /* ECH -- Erase <n> char */
2009 DEFAULT(csiescseq
.arg
[0], 1);
2010 tclearregion(term
.c
.x
, term
.c
.y
,
2011 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
);
2013 case 'P': /* DCH -- Delete <n> char */
2014 DEFAULT(csiescseq
.arg
[0], 1);
2015 tdeletechar(csiescseq
.arg
[0]);
2017 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
2018 DEFAULT(csiescseq
.arg
[0], 1);
2019 while(csiescseq
.arg
[0]--)
2022 case 'd': /* VPA -- Move to <row> */
2023 DEFAULT(csiescseq
.arg
[0], 1);
2024 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
2026 case 'h': /* SM -- Set terminal mode */
2027 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
2029 case 'm': /* SGR -- Terminal attribute (color) */
2030 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
2032 case 'r': /* DECSTBM -- Set Scrolling Region */
2033 if(csiescseq
.priv
) {
2036 DEFAULT(csiescseq
.arg
[0], 1);
2037 DEFAULT(csiescseq
.arg
[1], term
.row
);
2038 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
2042 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
2043 tcursor(CURSOR_SAVE
);
2045 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
2046 tcursor(CURSOR_LOAD
);
2057 for(i
= 0; i
< csiescseq
.len
; i
++) {
2058 c
= csiescseq
.buf
[i
] & 0xff;
2061 } else if(c
== '\n') {
2063 } else if(c
== '\r') {
2065 } else if(c
== 0x1b) {
2068 printf("(%02x)", c
);
2076 memset(&csiescseq
, 0, sizeof(csiescseq
));
2085 narg
= strescseq
.narg
;
2087 switch(strescseq
.type
) {
2088 case ']': /* OSC -- Operating System Command */
2089 switch(i
= atoi(strescseq
.args
[0])) {
2094 xsettitle(strescseq
.args
[1]);
2096 case 4: /* color set */
2099 p
= strescseq
.args
[2];
2101 case 104: /* color reset, here p = NULL */
2102 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
2103 if (!xsetcolorname(j
, p
)) {
2104 fprintf(stderr
, "erresc: invalid color %s\n", p
);
2107 * TODO if defaultbg color is changed, borders
2114 fprintf(stderr
, "erresc: unknown str ");
2119 case 'k': /* old title set compatibility */
2120 xsettitle(strescseq
.args
[0]);
2122 case 'P': /* DSC -- Device Control String */
2123 case '_': /* APC -- Application Program Command */
2124 case '^': /* PM -- Privacy Message */
2126 fprintf(stderr
, "erresc: unknown str ");
2135 char *p
= strescseq
.buf
;
2138 strescseq
.buf
[strescseq
.len
] = '\0';
2139 while(p
&& strescseq
.narg
< STR_ARG_SIZ
)
2140 strescseq
.args
[strescseq
.narg
++] = strsep(&p
, ";");
2148 printf("ESC%c", strescseq
.type
);
2149 for(i
= 0; i
< strescseq
.len
; i
++) {
2150 c
= strescseq
.buf
[i
] & 0xff;
2153 } else if(isprint(c
)) {
2155 } else if(c
== '\n') {
2157 } else if(c
== '\r') {
2159 } else if(c
== 0x1b) {
2162 printf("(%02x)", c
);
2170 memset(&strescseq
, 0, sizeof(strescseq
));
2174 tputtab(bool forward
) {
2180 for(++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
2185 for(--x
; x
> 0 && !term
.tabs
[x
]; --x
)
2188 tmoveto(x
, term
.c
.y
);
2192 techo(char *buf
, int len
) {
2193 for(; len
> 0; buf
++, len
--) {
2196 if(c
== '\033') { /* escape */
2199 } else if(c
< '\x20') { /* control code */
2200 if(c
!= '\n' && c
!= '\r' && c
!= '\t') {
2214 tputc(char *c
, int len
) {
2216 bool control
= ascii
< '\x20' || ascii
== 0177;
2219 if(xwrite(iofd
, c
, len
) < 0) {
2220 fprintf(stderr
, "Error writing in %s:%s\n",
2221 opt_io
, strerror(errno
));
2228 * STR sequences must be checked before anything else
2229 * because it can use some control codes as part of the sequence.
2231 if(term
.esc
& ESC_STR
) {
2234 term
.esc
= ESC_START
| ESC_STR_END
;
2236 case '\a': /* backwards compatibility to xterm */
2241 if(strescseq
.len
+ len
< sizeof(strescseq
.buf
) - 1) {
2242 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2243 strescseq
.len
+= len
;
2246 * Here is a bug in terminals. If the user never sends
2247 * some code to stop the str or esc command, then st
2248 * will stop responding. But this is better than
2249 * silently failing with unknown characters. At least
2250 * then users will report back.
2252 * In the case users ever get fixed, here is the code:
2264 * Actions of control codes must be performed as soon they arrive
2265 * because they can be embedded inside a control sequence, and
2266 * they must not cause conflicts with sequences.
2274 tmoveto(term
.c
.x
-1, term
.c
.y
);
2277 tmoveto(0, term
.c
.y
);
2282 /* go to first col if the mode is set */
2283 tnewline(IS_SET(MODE_CRLF
));
2285 case '\a': /* BEL */
2286 if(!(xw
.state
& WIN_FOCUSED
))
2289 case '\033': /* ESC */
2291 term
.esc
= ESC_START
;
2293 case '\016': /* SO */
2294 case '\017': /* SI */
2296 * Different charsets are hard to handle. Applications
2297 * should use the right alt charset escapes for the
2298 * only reason they still exist: line drawing. The
2299 * rest is incompatible history st should not support.
2302 case '\032': /* SUB */
2303 case '\030': /* CAN */
2306 case '\005': /* ENQ (IGNORED) */
2307 case '\000': /* NUL (IGNORED) */
2308 case '\021': /* XON (IGNORED) */
2309 case '\023': /* XOFF (IGNORED) */
2310 case 0177: /* DEL (IGNORED) */
2313 } else if(term
.esc
& ESC_START
) {
2314 if(term
.esc
& ESC_CSI
) {
2315 csiescseq
.buf
[csiescseq
.len
++] = ascii
;
2316 if(BETWEEN(ascii
, 0x40, 0x7E)
2317 || csiescseq
.len
>= \
2318 sizeof(csiescseq
.buf
)-1) {
2323 } else if(term
.esc
& ESC_STR_END
) {
2327 } else if(term
.esc
& ESC_ALTCHARSET
) {
2329 case '0': /* Line drawing set */
2330 term
.c
.attr
.mode
|= ATTR_GFX
;
2332 case 'B': /* USASCII */
2333 term
.c
.attr
.mode
&= ~ATTR_GFX
;
2335 case 'A': /* UK (IGNORED) */
2336 case '<': /* multinational charset (IGNORED) */
2337 case '5': /* Finnish (IGNORED) */
2338 case 'C': /* Finnish (IGNORED) */
2339 case 'K': /* German (IGNORED) */
2342 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2345 } else if(term
.esc
& ESC_TEST
) {
2346 if(ascii
== '8') { /* DEC screen alignment test. */
2347 char E
[UTF_SIZ
] = "E";
2350 for(x
= 0; x
< term
.col
; ++x
) {
2351 for(y
= 0; y
< term
.row
; ++y
)
2352 tsetchar(E
, &term
.c
.attr
, x
, y
);
2359 term
.esc
|= ESC_CSI
;
2362 term
.esc
|= ESC_TEST
;
2364 case 'P': /* DCS -- Device Control String */
2365 case '_': /* APC -- Application Program Command */
2366 case '^': /* PM -- Privacy Message */
2367 case ']': /* OSC -- Operating System Command */
2368 case 'k': /* old title set compatibility */
2370 strescseq
.type
= ascii
;
2371 term
.esc
|= ESC_STR
;
2373 case '(': /* set primary charset G0 */
2374 term
.esc
|= ESC_ALTCHARSET
;
2376 case ')': /* set secondary charset G1 (IGNORED) */
2377 case '*': /* set tertiary charset G2 (IGNORED) */
2378 case '+': /* set quaternary charset G3 (IGNORED) */
2381 case 'D': /* IND -- Linefeed */
2382 if(term
.c
.y
== term
.bot
) {
2383 tscrollup(term
.top
, 1);
2385 tmoveto(term
.c
.x
, term
.c
.y
+1);
2389 case 'E': /* NEL -- Next line */
2390 tnewline(1); /* always go to first col */
2393 case 'H': /* HTS -- Horizontal tab stop */
2394 term
.tabs
[term
.c
.x
] = 1;
2397 case 'M': /* RI -- Reverse index */
2398 if(term
.c
.y
== term
.top
) {
2399 tscrolldown(term
.top
, 1);
2401 tmoveto(term
.c
.x
, term
.c
.y
-1);
2405 case 'Z': /* DECID -- Identify Terminal */
2406 ttywrite(VT102ID
, sizeof(VT102ID
) - 1);
2409 case 'c': /* RIS -- Reset to inital state */
2414 case '=': /* DECPAM -- Application keypad */
2415 term
.mode
|= MODE_APPKEYPAD
;
2418 case '>': /* DECPNM -- Normal keypad */
2419 term
.mode
&= ~MODE_APPKEYPAD
;
2422 case '7': /* DECSC -- Save Cursor */
2423 tcursor(CURSOR_SAVE
);
2426 case '8': /* DECRC -- Restore Cursor */
2427 tcursor(CURSOR_LOAD
);
2430 case '\\': /* ST -- Stop */
2434 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2435 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2440 * All characters which form part of a sequence are not
2446 * Display control codes only if we are in graphic mode
2448 if(control
&& !(term
.c
.attr
.mode
& ATTR_GFX
))
2450 if(sel
.ob
.x
!= -1 && BETWEEN(term
.c
.y
, sel
.ob
.y
, sel
.oe
.y
))
2452 if(IS_SET(MODE_WRAP
) && (term
.c
.state
& CURSOR_WRAPNEXT
)) {
2453 term
.line
[term
.c
.y
][term
.c
.x
].mode
|= ATTR_WRAP
;
2457 if(IS_SET(MODE_INSERT
) && term
.c
.x
+1 < term
.col
) {
2458 memmove(&term
.line
[term
.c
.y
][term
.c
.x
+1],
2459 &term
.line
[term
.c
.y
][term
.c
.x
],
2460 (term
.col
- term
.c
.x
- 1) * sizeof(Glyph
));
2463 tsetchar(c
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2464 if(term
.c
.x
+1 < term
.col
) {
2465 tmoveto(term
.c
.x
+1, term
.c
.y
);
2467 term
.c
.state
|= CURSOR_WRAPNEXT
;
2472 tresize(int col
, int row
) {
2474 int minrow
= MIN(row
, term
.row
);
2475 int mincol
= MIN(col
, term
.col
);
2476 int slide
= term
.c
.y
- row
+ 1;
2480 if(col
< 1 || row
< 1)
2483 /* free unneeded rows */
2487 * slide screen to keep cursor where we expect it -
2488 * tscrollup would work here, but we can optimize to
2489 * memmove because we're freeing the earlier lines
2491 for(/* i = 0 */; i
< slide
; i
++) {
2495 memmove(term
.line
, term
.line
+ slide
, row
* sizeof(Line
));
2496 memmove(term
.alt
, term
.alt
+ slide
, row
* sizeof(Line
));
2498 for(i
+= row
; i
< term
.row
; i
++) {
2503 /* resize to new height */
2504 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
2505 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
2506 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
2507 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
2509 /* resize each row to new width, zero-pad if needed */
2510 for(i
= 0; i
< minrow
; i
++) {
2512 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
2513 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
2516 /* allocate any new rows */
2517 for(/* i == minrow */; i
< row
; i
++) {
2519 term
.line
[i
] = xcalloc(col
, sizeof(Glyph
));
2520 term
.alt
[i
] = xcalloc(col
, sizeof(Glyph
));
2522 if(col
> term
.col
) {
2523 bp
= term
.tabs
+ term
.col
;
2525 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
2526 while(--bp
> term
.tabs
&& !*bp
)
2528 for(bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
2531 /* update terminal size */
2534 /* reset scrolling region */
2535 tsetscroll(0, row
-1);
2536 /* make use of the LIMIT in tmoveto */
2537 tmoveto(term
.c
.x
, term
.c
.y
);
2538 /* Clearing both screens */
2541 if(mincol
< col
&& 0 < minrow
) {
2542 tclearregion(mincol
, 0, col
- 1, minrow
- 1);
2544 if(0 < col
&& minrow
< row
) {
2545 tclearregion(0, minrow
, col
- 1, row
- 1);
2548 } while(orig
!= term
.line
);
2554 xresize(int col
, int row
) {
2555 xw
.tw
= MAX(1, col
* xw
.cw
);
2556 xw
.th
= MAX(1, row
* xw
.ch
);
2558 XFreePixmap(xw
.dpy
, xw
.buf
);
2559 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2560 DefaultDepth(xw
.dpy
, xw
.scr
));
2561 XftDrawChange(xw
.draw
, xw
.buf
);
2562 xclear(0, 0, xw
.w
, xw
.h
);
2565 static inline ushort
2566 sixd_to_16bit(int x
) {
2567 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
2573 XRenderColor color
= { .alpha
= 0xffff };
2575 /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
2576 for(i
= 0; i
< LEN(colorname
); i
++) {
2579 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, colorname
[i
], &dc
.col
[i
])) {
2580 die("Could not allocate color '%s'\n", colorname
[i
]);
2584 /* load colors [16-255] ; same colors as xterm */
2585 for(i
= 16, r
= 0; r
< 6; r
++) {
2586 for(g
= 0; g
< 6; g
++) {
2587 for(b
= 0; b
< 6; b
++) {
2588 color
.red
= sixd_to_16bit(r
);
2589 color
.green
= sixd_to_16bit(g
);
2590 color
.blue
= sixd_to_16bit(b
);
2591 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &dc
.col
[i
])) {
2592 die("Could not allocate color %d\n", i
);
2599 for(r
= 0; r
< 24; r
++, i
++) {
2600 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
2601 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
,
2603 die("Could not allocate color %d\n", i
);
2609 xsetcolorname(int x
, const char *name
) {
2610 XRenderColor color
= { .alpha
= 0xffff };
2612 if (x
< 0 || x
> LEN(colorname
))
2615 if(16 <= x
&& x
< 16 + 216) {
2616 int r
= (x
- 16) / 36, g
= ((x
- 16) % 36) / 6, b
= (x
- 16) % 6;
2617 color
.red
= sixd_to_16bit(r
);
2618 color
.green
= sixd_to_16bit(g
);
2619 color
.blue
= sixd_to_16bit(b
);
2620 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2621 return 0; /* something went wrong */
2624 } else if (16 + 216 <= x
&& x
< 256) {
2625 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * (x
- (16 + 216));
2626 if(!XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &color
, &colour
))
2627 return 0; /* something went wrong */
2631 name
= colorname
[x
];
2634 if(!XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, &colour
))
2641 xtermclear(int col1
, int row1
, int col2
, int row2
) {
2642 XftDrawRect(xw
.draw
,
2643 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
2644 borderpx
+ col1
* xw
.cw
,
2645 borderpx
+ row1
* xw
.ch
,
2646 (col2
-col1
+1) * xw
.cw
,
2647 (row2
-row1
+1) * xw
.ch
);
2651 * Absolute coordinates.
2654 xclear(int x1
, int y1
, int x2
, int y2
) {
2655 XftDrawRect(xw
.draw
,
2656 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
2657 x1
, y1
, x2
-x1
, y2
-y1
);
2662 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
2663 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
2664 XSizeHints
*sizeh
= NULL
;
2666 sizeh
= XAllocSizeHints();
2667 if(xw
.isfixed
== False
) {
2668 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
2669 sizeh
->height
= xw
.h
;
2670 sizeh
->width
= xw
.w
;
2671 sizeh
->height_inc
= xw
.ch
;
2672 sizeh
->width_inc
= xw
.cw
;
2673 sizeh
->base_height
= 2 * borderpx
;
2674 sizeh
->base_width
= 2 * borderpx
;
2676 sizeh
->flags
= PMaxSize
| PMinSize
;
2677 sizeh
->min_width
= sizeh
->max_width
= xw
.fw
;
2678 sizeh
->min_height
= sizeh
->max_height
= xw
.fh
;
2681 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
, &class);
2686 xloadfont(Font
*f
, FcPattern
*pattern
) {
2690 match
= FcFontMatch(NULL
, pattern
, &result
);
2694 if(!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
2695 FcPatternDestroy(match
);
2700 f
->pattern
= FcPatternDuplicate(pattern
);
2702 f
->ascent
= f
->match
->ascent
;
2703 f
->descent
= f
->match
->descent
;
2705 f
->rbearing
= f
->match
->max_advance_width
;
2707 f
->height
= f
->ascent
+ f
->descent
;
2708 f
->width
= f
->lbearing
+ f
->rbearing
;
2714 xloadfonts(char *fontstr
, int fontsize
) {
2719 if(fontstr
[0] == '-') {
2720 pattern
= XftXlfdParse(fontstr
, False
, False
);
2722 pattern
= FcNameParse((FcChar8
*)fontstr
);
2726 die("st: can't open font %s\n", fontstr
);
2729 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
2730 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
2731 usedfontsize
= fontsize
;
2733 result
= FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
);
2734 if(result
== FcResultMatch
) {
2735 usedfontsize
= (int)fontval
;
2738 * Default font size is 12, if none given. This is to
2739 * have a known usedfontsize value.
2741 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
2746 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
2747 FcDefaultSubstitute(pattern
);
2749 if(xloadfont(&dc
.font
, pattern
))
2750 die("st: can't open font %s\n", fontstr
);
2752 /* Setting character width and height. */
2753 xw
.cw
= dc
.font
.width
;
2754 xw
.ch
= dc
.font
.height
;
2756 FcPatternDel(pattern
, FC_SLANT
);
2757 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
2758 if(xloadfont(&dc
.ifont
, pattern
))
2759 die("st: can't open font %s\n", fontstr
);
2761 FcPatternDel(pattern
, FC_WEIGHT
);
2762 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
2763 if(xloadfont(&dc
.ibfont
, pattern
))
2764 die("st: can't open font %s\n", fontstr
);
2766 FcPatternDel(pattern
, FC_SLANT
);
2767 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
2768 if(xloadfont(&dc
.bfont
, pattern
))
2769 die("st: can't open font %s\n", fontstr
);
2771 FcPatternDestroy(pattern
);
2775 xloadfontset(Font
*f
) {
2778 if(!(f
->set
= FcFontSort(0, f
->pattern
, FcTrue
, 0, &result
)))
2784 xunloadfont(Font
*f
) {
2785 XftFontClose(xw
.dpy
, f
->match
);
2786 FcPatternDestroy(f
->pattern
);
2788 FcFontSetDestroy(f
->set
);
2792 xunloadfonts(void) {
2796 * Free the loaded fonts in the font cache. This is done backwards
2799 for(i
= 0, ip
= frccur
; i
< frclen
; i
++, ip
--) {
2802 XftFontClose(xw
.dpy
, frc
[ip
].font
);
2807 xunloadfont(&dc
.font
);
2808 xunloadfont(&dc
.bfont
);
2809 xunloadfont(&dc
.ifont
);
2810 xunloadfont(&dc
.ibfont
);
2814 xzoom(const Arg
*arg
) {
2816 xloadfonts(usedfont
, usedfontsize
+ arg
->i
);
2828 if(!(xw
.dpy
= XOpenDisplay(NULL
)))
2829 die("Can't open display\n");
2830 xw
.scr
= XDefaultScreen(xw
.dpy
);
2831 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
2835 die("Could not init fontconfig.\n");
2837 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
2838 xloadfonts(usedfont
, 0);
2841 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
2844 /* adjust fixed window geometry */
2846 sw
= DisplayWidth(xw
.dpy
, xw
.scr
);
2847 sh
= DisplayHeight(xw
.dpy
, xw
.scr
);
2849 xw
.fx
= sw
+ xw
.fx
- xw
.fw
- 1;
2851 xw
.fy
= sh
+ xw
.fy
- xw
.fh
- 1;
2856 /* window - default size */
2857 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
2858 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
2864 xw
.attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
2865 xw
.attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
2866 xw
.attrs
.bit_gravity
= NorthWestGravity
;
2867 xw
.attrs
.event_mask
= FocusChangeMask
| KeyPressMask
2868 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
2869 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
2870 xw
.attrs
.colormap
= xw
.cmap
;
2872 parent
= opt_embed
? strtol(opt_embed
, NULL
, 0) : \
2873 XRootWindow(xw
.dpy
, xw
.scr
);
2874 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.fx
, xw
.fy
,
2875 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
2876 xw
.vis
, CWBackPixel
| CWBorderPixel
| CWBitGravity
2877 | CWEventMask
| CWColormap
, &xw
.attrs
);
2879 memset(&gcvalues
, 0, sizeof(gcvalues
));
2880 gcvalues
.graphics_exposures
= False
;
2881 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
2883 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
2884 DefaultDepth(xw
.dpy
, xw
.scr
));
2885 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
2886 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
2888 /* Xft rendering context */
2889 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
2892 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2893 XSetLocaleModifiers("@im=local");
2894 if((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
2895 XSetLocaleModifiers("@im=");
2896 if((xw
.xim
= XOpenIM(xw
.dpy
,
2897 NULL
, NULL
, NULL
)) == NULL
) {
2898 die("XOpenIM failed. Could not open input"
2903 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
2904 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
2905 XNFocusWindow
, xw
.win
, NULL
);
2907 die("XCreateIC failed. Could not obtain input method.\n");
2909 /* white cursor, black outline */
2910 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
2911 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
2912 XRecolorCursor(xw
.dpy
, cursor
,
2913 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
2914 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
2916 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
2917 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
2918 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
2921 XMapWindow(xw
.dpy
, xw
.win
);
2927 xdraws(char *s
, Glyph base
, int x
, int y
, int charlen
, int bytelen
) {
2928 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
2929 width
= charlen
* xw
.cw
, xp
, i
;
2931 int u8fl
, u8fblen
, u8cblen
, doesexist
;
2934 Font
*font
= &dc
.font
;
2936 FcPattern
*fcpattern
, *fontpattern
;
2937 FcFontSet
*fcsets
[] = { NULL
};
2938 FcCharSet
*fccharset
;
2939 Colour
*fg
, *bg
, *temp
, revfg
, revbg
;
2940 XRenderColor colfg
, colbg
;
2943 frcflags
= FRC_NORMAL
;
2945 if(base
.mode
& ATTR_ITALIC
) {
2946 if(base
.fg
== defaultfg
)
2947 base
.fg
= defaultitalic
;
2949 frcflags
= FRC_ITALIC
;
2950 } else if((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
)) {
2951 if(base
.fg
== defaultfg
)
2952 base
.fg
= defaultitalic
;
2954 frcflags
= FRC_ITALICBOLD
;
2955 } else if(base
.mode
& ATTR_UNDERLINE
) {
2956 if(base
.fg
== defaultfg
)
2957 base
.fg
= defaultunderline
;
2959 fg
= &dc
.col
[base
.fg
];
2960 bg
= &dc
.col
[base
.bg
];
2962 if(base
.mode
& ATTR_BOLD
) {
2963 if(BETWEEN(base
.fg
, 0, 7)) {
2964 /* basic system colors */
2965 fg
= &dc
.col
[base
.fg
+ 8];
2966 } else if(BETWEEN(base
.fg
, 16, 195)) {
2968 fg
= &dc
.col
[base
.fg
+ 36];
2969 } else if(BETWEEN(base
.fg
, 232, 251)) {
2971 fg
= &dc
.col
[base
.fg
+ 4];
2974 * Those ranges will not be brightened:
2975 * 8 - 15 – bright system colors
2976 * 196 - 231 – highest 256 color cube
2977 * 252 - 255 – brightest colors in greyscale
2980 frcflags
= FRC_BOLD
;
2983 if(IS_SET(MODE_REVERSE
)) {
2984 if(fg
== &dc
.col
[defaultfg
]) {
2985 fg
= &dc
.col
[defaultbg
];
2987 colfg
.red
= ~fg
->color
.red
;
2988 colfg
.green
= ~fg
->color
.green
;
2989 colfg
.blue
= ~fg
->color
.blue
;
2990 colfg
.alpha
= fg
->color
.alpha
;
2991 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
2995 if(bg
== &dc
.col
[defaultbg
]) {
2996 bg
= &dc
.col
[defaultfg
];
2998 colbg
.red
= ~bg
->color
.red
;
2999 colbg
.green
= ~bg
->color
.green
;
3000 colbg
.blue
= ~bg
->color
.blue
;
3001 colbg
.alpha
= bg
->color
.alpha
;
3002 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &revbg
);
3007 if(base
.mode
& ATTR_REVERSE
) {
3013 if(base
.mode
& ATTR_BLINK
&& term
.mode
& MODE_BLINK
)
3016 /* Intelligent cleaning up of the borders. */
3018 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
3019 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
3021 if(x
+ charlen
>= term
.col
) {
3022 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
3023 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
3026 xclear(winx
, 0, winx
+ width
, borderpx
);
3028 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
3030 /* Clean up the region we want to draw to. */
3031 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
3033 /* Set the clip region because Xft is sometimes dirty. */
3038 XftDrawSetClipRectangles(xw
.draw
, winx
, winy
, &r
, 1);
3040 for(xp
= winx
; bytelen
> 0;) {
3042 * Search for the range in the to be printed string of glyphs
3043 * that are in the main font. Then print that range. If
3044 * some glyph is found that is not in the font, do the
3052 u8cblen
= utf8decode(s
, &u8char
);
3056 doesexist
= XftCharIndex(xw
.dpy
, font
->match
, u8char
);
3057 if(!doesexist
|| bytelen
<= 0) {
3066 XftDrawStringUtf8(xw
.draw
, fg
,
3068 winy
+ font
->ascent
,
3071 xp
+= font
->width
* u8fl
;
3084 /* Search the font cache. */
3085 for(i
= 0; i
< frclen
; i
++, frp
--) {
3089 if(frc
[frp
].c
== u8char
3090 && frc
[frp
].flags
== frcflags
) {
3095 /* Nothing was found. */
3099 fcsets
[0] = font
->set
;
3102 * Nothing was found in the cache. Now use
3103 * some dozen of Fontconfig calls to get the
3104 * font for one single character.
3106 fcpattern
= FcPatternDuplicate(font
->pattern
);
3107 fccharset
= FcCharSetCreate();
3109 FcCharSetAddChar(fccharset
, u8char
);
3110 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
3112 FcPatternAddBool(fcpattern
, FC_SCALABLE
,
3115 FcConfigSubstitute(0, fcpattern
,
3117 FcDefaultSubstitute(fcpattern
);
3119 fontpattern
= FcFontSetMatch(0, fcsets
,
3120 FcTrue
, fcpattern
, &fcres
);
3123 * Overwrite or create the new cache entry.
3127 if(frccur
>= LEN(frc
))
3129 if(frclen
> LEN(frc
)) {
3131 XftFontClose(xw
.dpy
, frc
[frccur
].font
);
3134 frc
[frccur
].font
= XftFontOpenPattern(xw
.dpy
,
3136 frc
[frccur
].c
= u8char
;
3137 frc
[frccur
].flags
= frcflags
;
3139 FcPatternDestroy(fcpattern
);
3140 FcCharSetDestroy(fccharset
);
3145 XftDrawStringUtf8(xw
.draw
, fg
, frc
[frp
].font
,
3146 xp
, winy
+ frc
[frp
].font
->ascent
,
3147 (FcChar8
*)u8c
, u8cblen
);
3153 XftDrawStringUtf8(xw.draw, fg, font->set, winx,
3154 winy + font->ascent, (FcChar8 *)s, bytelen);
3157 if(base
.mode
& ATTR_UNDERLINE
) {
3158 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ font
->ascent
+ 1,
3162 /* Reset clip to none. */
3163 XftDrawSetClip(xw
.draw
, 0);
3168 static int oldx
= 0, oldy
= 0;
3170 Glyph g
= {{' '}, ATTR_NULL
, defaultbg
, defaultcs
};
3172 LIMIT(oldx
, 0, term
.col
-1);
3173 LIMIT(oldy
, 0, term
.row
-1);
3175 memcpy(g
.c
, term
.line
[term
.c
.y
][term
.c
.x
].c
, UTF_SIZ
);
3177 /* remove the old cursor */
3178 sl
= utf8size(term
.line
[oldy
][oldx
].c
);
3179 xdraws(term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
,
3182 /* draw the new one */
3183 if(!(IS_SET(MODE_HIDE
))) {
3184 if(xw
.state
& WIN_FOCUSED
) {
3185 if(IS_SET(MODE_REVERSE
)) {
3186 g
.mode
|= ATTR_REVERSE
;
3192 xdraws(g
.c
, g
, term
.c
.x
, term
.c
.y
, 1, sl
);
3194 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3195 borderpx
+ term
.c
.x
* xw
.cw
,
3196 borderpx
+ term
.c
.y
* xw
.ch
,
3198 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3199 borderpx
+ term
.c
.x
* xw
.cw
,
3200 borderpx
+ term
.c
.y
* xw
.ch
,
3202 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3203 borderpx
+ (term
.c
.x
+ 1) * xw
.cw
- 1,
3204 borderpx
+ term
.c
.y
* xw
.ch
,
3206 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3207 borderpx
+ term
.c
.x
* xw
.cw
,
3208 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- 1,
3211 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
3217 xsettitle(char *p
) {
3220 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
3222 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
3227 xsettitle(opt_title
? opt_title
: "st");
3231 redraw(int timeout
) {
3232 struct timespec tv
= {0, timeout
* 1000};
3238 nanosleep(&tv
, NULL
);
3239 XSync(xw
.dpy
, False
); /* necessary for a good tput flash */
3245 drawregion(0, 0, term
.col
, term
.row
);
3246 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
3248 XSetForeground(xw
.dpy
, dc
.gc
,
3249 dc
.col
[IS_SET(MODE_REVERSE
)?
3250 defaultfg
: defaultbg
].pixel
);
3254 drawregion(int x1
, int y1
, int x2
, int y2
) {
3255 int ic
, ib
, x
, y
, ox
, sl
;
3257 char buf
[DRAW_BUF_SIZ
];
3258 bool ena_sel
= sel
.ob
.x
!= -1;
3260 if(sel
.alt
^ IS_SET(MODE_ALTSCREEN
))
3263 if(!(xw
.state
& WIN_VISIBLE
))
3266 for(y
= y1
; y
< y2
; y
++) {
3270 xtermclear(0, y
, term
.col
, y
);
3272 base
= term
.line
[y
][0];
3274 for(x
= x1
; x
< x2
; x
++) {
3275 new = term
.line
[y
][x
];
3276 if(ena_sel
&& selected(x
, y
))
3277 new.mode
^= ATTR_REVERSE
;
3278 if(ib
> 0 && (ATTRCMP(base
, new)
3279 || ib
>= DRAW_BUF_SIZ
-UTF_SIZ
)) {
3280 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3288 sl
= utf8size(new.c
);
3289 memcpy(buf
+ib
, new.c
, sl
);
3294 xdraws(buf
, base
, ox
, y
, ic
, ib
);
3300 expose(XEvent
*ev
) {
3301 XExposeEvent
*e
= &ev
->xexpose
;
3303 if(xw
.state
& WIN_REDRAW
) {
3305 xw
.state
&= ~WIN_REDRAW
;
3311 visibility(XEvent
*ev
) {
3312 XVisibilityEvent
*e
= &ev
->xvisibility
;
3314 if(e
->state
== VisibilityFullyObscured
) {
3315 xw
.state
&= ~WIN_VISIBLE
;
3316 } else if(!(xw
.state
& WIN_VISIBLE
)) {
3317 /* need a full redraw for next Expose, not just a buf copy */
3318 xw
.state
|= WIN_VISIBLE
| WIN_REDRAW
;
3324 xw
.state
&= ~WIN_VISIBLE
;
3328 xsetpointermotion(int set
) {
3329 MODBIT(xw
.attrs
.event_mask
, set
, PointerMotionMask
);
3330 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
, &xw
.attrs
);
3334 xseturgency(int add
) {
3335 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3337 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
3338 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3344 XFocusChangeEvent
*e
= &ev
->xfocus
;
3346 if(e
->mode
== NotifyGrab
)
3349 if(ev
->type
== FocusIn
) {
3350 XSetICFocus(xw
.xic
);
3351 xw
.state
|= WIN_FOCUSED
;
3353 if(IS_SET(MODE_FOCUS
))
3354 ttywrite("\033[I", 3);
3356 XUnsetICFocus(xw
.xic
);
3357 xw
.state
&= ~WIN_FOCUSED
;
3358 if(IS_SET(MODE_FOCUS
))
3359 ttywrite("\033[O", 3);
3364 match(uint mask
, uint state
) {
3365 state
&= ~(ignoremod
);
3367 if(mask
== XK_NO_MOD
&& state
)
3369 if(mask
!= XK_ANY_MOD
&& mask
!= XK_NO_MOD
&& !state
)
3371 if((state
& mask
) != state
)
3377 numlock(const Arg
*dummy
) {
3382 kmap(KeySym k
, uint state
) {
3387 /* Check for mapped keys out of X11 function keys. */
3388 for(i
= 0; i
< LEN(mappedkeys
); i
++) {
3389 if(mappedkeys
[i
] == k
)
3392 if(i
== LEN(mappedkeys
)) {
3393 if((k
& 0xFFFF) < 0xFD00)
3397 for(kp
= key
; kp
< key
+ LEN(key
); kp
++) {
3403 if(!match(mask
, state
))
3406 if(kp
->appkey
> 0) {
3407 if(!IS_SET(MODE_APPKEYPAD
))
3409 if(term
.numlock
&& kp
->appkey
== 2)
3411 } else if(kp
->appkey
< 0 && IS_SET(MODE_APPKEYPAD
)) {
3415 if((kp
->appcursor
< 0 && IS_SET(MODE_APPCURSOR
)) ||
3417 && !IS_SET(MODE_APPCURSOR
))) {
3421 if((kp
->crlf
< 0 && IS_SET(MODE_CRLF
)) ||
3422 (kp
->crlf
> 0 && !IS_SET(MODE_CRLF
))) {
3433 kpress(XEvent
*ev
) {
3434 XKeyEvent
*e
= &ev
->xkey
;
3436 char xstr
[31], buf
[32], *customkey
, *cp
= buf
;
3442 if(IS_SET(MODE_KBDLOCK
))
3445 len
= XmbLookupString(xw
.xic
, e
, xstr
, sizeof(xstr
), &ksym
, &status
);
3446 e
->state
&= ~Mod2Mask
;
3448 for(bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
3449 if(ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
3450 bp
->func(&(bp
->arg
));
3455 /* 2. custom keys from config.h */
3456 if((customkey
= kmap(ksym
, e
->state
))) {
3457 len
= strlen(customkey
);
3458 memcpy(buf
, customkey
, len
);
3459 /* 3. hardcoded (overrides X lookup) */
3464 if(len
== 1 && e
->state
& Mod1Mask
) {
3465 if(IS_SET(MODE_8BIT
)) {
3468 ret
= utf8encode(&c
, cp
);
3477 memcpy(cp
, xstr
, len
);
3478 len
= cp
- buf
+ len
;
3482 if(IS_SET(MODE_ECHO
))
3488 cmessage(XEvent
*e
) {
3491 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
3493 if(e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
3494 if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
3495 xw
.state
|= WIN_FOCUSED
;
3497 } else if(e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
3498 xw
.state
&= ~WIN_FOCUSED
;
3500 } else if(e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
3501 /* Send SIGHUP to shell */
3508 cresize(int width
, int height
) {
3516 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
3517 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
3526 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
3529 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
3536 int xfd
= XConnectionNumber(xw
.dpy
), xev
, blinkset
= 0, dodraw
= 0;
3537 struct timeval drawtimeout
, *tv
= NULL
, now
, last
, lastblink
;
3539 gettimeofday(&lastblink
, NULL
);
3540 gettimeofday(&last
, NULL
);
3542 for(xev
= actionfps
;;) {
3544 FD_SET(cmdfd
, &rfd
);
3547 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
) < 0) {
3550 die("select failed: %s\n", SERRNO
);
3552 if(FD_ISSET(cmdfd
, &rfd
)) {
3555 blinkset
= tattrset(ATTR_BLINK
);
3556 if(!blinkset
&& term
.mode
& ATTR_BLINK
)
3557 term
.mode
&= ~(MODE_BLINK
);
3561 if(FD_ISSET(xfd
, &rfd
))
3564 gettimeofday(&now
, NULL
);
3565 drawtimeout
.tv_sec
= 0;
3566 drawtimeout
.tv_usec
= (1000/xfps
) * 1000;
3570 if(blinktimeout
&& TIMEDIFF(now
, lastblink
) > blinktimeout
) {
3571 tsetdirtattr(ATTR_BLINK
);
3572 term
.mode
^= MODE_BLINK
;
3573 gettimeofday(&lastblink
, NULL
);
3576 if(TIMEDIFF(now
, last
) \
3577 > (xev
? (1000/xfps
) : (1000/actionfps
))) {
3583 while(XPending(xw
.dpy
)) {
3584 XNextEvent(xw
.dpy
, &ev
);
3585 if(XFilterEvent(&ev
, None
))
3587 if(handler
[ev
.type
])
3588 (handler
[ev
.type
])(&ev
);
3594 if(xev
&& !FD_ISSET(xfd
, &rfd
))
3596 if(!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
)) {
3598 if(TIMEDIFF(now
, lastblink
) \
3600 drawtimeout
.tv_usec
= 1;
3602 drawtimeout
.tv_usec
= (1000 * \
3617 die("%s " VERSION
" (c) 2010-2013 st engineers\n" \
3618 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \
3619 " [-t title] [-w windowid] [-e command ...]\n", argv0
);
3623 main(int argc
, char *argv
[]) {
3628 xw
.fw
= xw
.fh
= xw
.fx
= xw
.fy
= 0;
3633 allowaltscreen
= false;
3636 opt_class
= EARGF(usage());
3639 /* eat all remaining arguments */
3642 if(argv
[1] != NULL
&& opt_title
== NULL
) {
3643 titles
= strdup(argv
[1]);
3644 opt_title
= basename(titles
);
3649 opt_font
= EARGF(usage());
3652 bitm
= XParseGeometry(EARGF(usage()), &xr
, &yr
, &wr
, &hr
);
3657 if(bitm
& WidthValue
)
3659 if(bitm
& HeightValue
)
3661 if(bitm
& XNegative
&& xw
.fx
== 0)
3663 if(bitm
& XNegative
&& xw
.fy
== 0)
3666 if(xw
.fh
!= 0 && xw
.fw
!= 0)
3670 opt_io
= EARGF(usage());
3673 opt_title
= EARGF(usage());
3676 opt_embed
= EARGF(usage());
3684 setlocale(LC_CTYPE
, "");
3685 XSetLocaleModifiers("");
3691 cresize(xw
.h
, xw
.w
);