1 /* See LICENSE for license 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 <X11/XKBlib.h>
30 #include <fontconfig/fontconfig.h>
42 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
44 #elif defined(__FreeBSD__) || defined(__DragonFly__)
50 #define XEMBED_FOCUS_IN 4
51 #define XEMBED_FOCUS_OUT 5
54 #define UTF_INVALID 0xFFFD
56 #define ESC_BUF_SIZ (128*UTF_SIZ)
57 #define ESC_ARG_SIZ 16
58 #define STR_BUF_SIZ ESC_BUF_SIZ
59 #define STR_ARG_SIZ ESC_ARG_SIZ
60 #define XK_ANY_MOD UINT_MAX
62 #define XK_SWITCH_MOD (1<<13)
65 #define MIN(a, b) ((a) < (b) ? (a) : (b))
66 #define MAX(a, b) ((a) < (b) ? (b) : (a))
67 #define LEN(a) (sizeof(a) / sizeof(a)[0])
68 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
69 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
70 #define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == '\177')
71 #define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f))
72 #define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c))
73 #define ISDELIM(u) (utf8strchr(worddelimiters, u) != NULL)
74 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
75 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
76 #define IS_SET(flag) ((term.mode & (flag)) != 0)
77 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_nsec-t2.tv_nsec)/1E6)
78 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
80 #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
81 #define IS_TRUECOL(x) (1 << 24 & (x))
82 #define TRUERED(x) (((x) & 0xff0000) >> 8)
83 #define TRUEGREEN(x) (((x) & 0xff00))
84 #define TRUEBLUE(x) (((x) & 0xff) << 8)
87 enum glyph_attribute
{
92 ATTR_UNDERLINE
= 1 << 3,
94 ATTR_REVERSE
= 1 << 5,
95 ATTR_INVISIBLE
= 1 << 6,
99 ATTR_WDUMMY
= 1 << 10,
100 ATTR_BOLD_FAINT
= ATTR_BOLD
| ATTR_FAINT
,
103 enum cursor_movement
{
116 MODE_INSERT
= 1 << 1,
117 MODE_APPKEYPAD
= 1 << 2,
118 MODE_ALTSCREEN
= 1 << 3,
120 MODE_MOUSEBTN
= 1 << 5,
121 MODE_MOUSEMOTION
= 1 << 6,
122 MODE_REVERSE
= 1 << 7,
123 MODE_KBDLOCK
= 1 << 8,
126 MODE_APPCURSOR
= 1 << 11,
127 MODE_MOUSESGR
= 1 << 12,
129 MODE_BLINK
= 1 << 14,
130 MODE_FBLINK
= 1 << 15,
131 MODE_FOCUS
= 1 << 16,
132 MODE_MOUSEX10
= 1 << 17,
133 MODE_MOUSEMANY
= 1 << 18,
134 MODE_BRCKTPASTE
= 1 << 19,
135 MODE_PRINT
= 1 << 20,
136 MODE_MOUSE
= MODE_MOUSEBTN
|MODE_MOUSEMOTION
|MODE_MOUSEX10\
153 ESC_STR
= 4, /* DCS, OSC, PM, APC */
155 ESC_STR_END
= 16, /* a final string was encountered */
156 ESC_TEST
= 32, /* Enter in test mode */
164 enum selection_mode
{
170 enum selection_type
{
175 enum selection_snap
{
180 typedef unsigned char uchar
;
181 typedef unsigned int uint
;
182 typedef unsigned long ulong
;
183 typedef unsigned short ushort
;
185 typedef uint_least32_t Rune
;
187 typedef XftDraw
*Draw
;
188 typedef XftColor Color
;
191 Rune u
; /* character code */
192 ushort mode
; /* attribute flags */
193 uint32_t fg
; /* foreground */
194 uint32_t bg
; /* background */
200 Glyph attr
; /* current char attributes */
206 /* CSI Escape sequence structs */
207 /* ESC '[' [[ [<priv>] <arg> [;]] <mode> [<mode>]] */
209 char buf
[ESC_BUF_SIZ
]; /* raw string */
210 int len
; /* raw string length */
212 int arg
[ESC_ARG_SIZ
];
213 int narg
; /* nb of args */
217 /* STR Escape sequence structs */
218 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
220 char type
; /* ESC type ... */
221 char buf
[STR_BUF_SIZ
]; /* raw string */
222 int len
; /* raw string length */
223 char *args
[STR_ARG_SIZ
];
224 int narg
; /* nb of args */
227 /* Internal representation of the screen */
229 int row
; /* nb row */
230 int col
; /* nb col */
231 Line
*line
; /* screen */
232 Line
*alt
; /* alternate screen */
233 int *dirty
; /* dirtyness of lines */
234 XftGlyphFontSpec
*specbuf
; /* font spec buffer used for rendering */
235 TCursor c
; /* cursor */
236 int top
; /* top scroll limit */
237 int bot
; /* bottom scroll limit */
238 int mode
; /* terminal mode flags */
239 int esc
; /* escape state flags */
240 char trantbl
[4]; /* charset table translation */
241 int charset
; /* current charset */
242 int icharset
; /* selected charset for sequence */
243 int numlock
; /* lock numbers in keyboard */
247 /* Purely graphic info */
253 Atom xembed
, wmdeletewin
, netwmname
, netwmpid
;
258 XSetWindowAttributes attrs
;
260 int isfixed
; /* is fixed geometry? */
261 int l
, t
; /* left and top offset */
262 int gm
; /* geometry mask */
263 int tw
, th
; /* tty width and height */
264 int w
, h
; /* window width and height */
265 int ch
; /* char height */
266 int cw
; /* char width */
267 char state
; /* focus, redraw, visible */
268 int cursor
; /* cursor style */
281 /* three valued logic variables: 0 indifferent, 1 on, -1 off */
282 signed char appkey
; /* application keypad */
283 signed char appcursor
; /* application cursor */
284 signed char crlf
; /* crlf mode */
292 * Selection variables:
293 * nb – normalized coordinates of the beginning of the selection
294 * ne – normalized coordinates of the end of the selection
295 * ob – original coordinates of the beginning of the selection
296 * oe – original coordinates of the end of the selection
302 char *primary
, *clipboard
;
305 struct timespec tclick1
;
306 struct timespec tclick2
;
319 void (*func
)(const Arg
*);
323 /* function definitions used in config.h */
324 static void clipcopy(const Arg
*);
325 static void clippaste(const Arg
*);
326 static void numlock(const Arg
*);
327 static void selpaste(const Arg
*);
328 static void xzoom(const Arg
*);
329 static void xzoomabs(const Arg
*);
330 static void xzoomreset(const Arg
*);
331 static void printsel(const Arg
*);
332 static void printscreen(const Arg
*) ;
333 static void toggleprinter(const Arg
*);
335 /* Config.h for applying patches and the configuration. */
351 /* Drawing Context */
353 Color col
[MAX(LEN(colorname
), 256)];
354 Font font
, bfont
, ifont
, ibfont
;
358 static void die(const char *, ...);
359 static void draw(void);
360 static void redraw(void);
361 static void drawregion(int, int, int, int);
362 static void execsh(void);
363 static void stty(void);
364 static void sigchld(int);
365 static void run(void);
367 static void csidump(void);
368 static void csihandle(void);
369 static void csiparse(void);
370 static void csireset(void);
371 static int eschandle(uchar
);
372 static void strdump(void);
373 static void strhandle(void);
374 static void strparse(void);
375 static void strreset(void);
377 static int tattrset(int);
378 static void tprinter(char *, size_t);
379 static void tdumpsel(void);
380 static void tdumpline(int);
381 static void tdump(void);
382 static void tclearregion(int, int, int, int);
383 static void tcursor(int);
384 static void tdeletechar(int);
385 static void tdeleteline(int);
386 static void tinsertblank(int);
387 static void tinsertblankline(int);
388 static int tlinelen(int);
389 static void tmoveto(int, int);
390 static void tmoveato(int, int);
391 static void tnew(int, int);
392 static void tnewline(int);
393 static void tputtab(int);
394 static void tputc(Rune
);
395 static void treset(void);
396 static void tresize(int, int);
397 static void tscrollup(int, int);
398 static void tscrolldown(int, int);
399 static void tsetattr(int *, int);
400 static void tsetchar(Rune
, Glyph
*, int, int);
401 static void tsetscroll(int, int);
402 static void tswapscreen(void);
403 static void tsetdirt(int, int);
404 static void tsetdirtattr(int);
405 static void tsetmode(int, int, int *, int);
406 static void tfulldirt(void);
407 static void techo(Rune
);
408 static void tcontrolcode(uchar
);
409 static void tdectest(char );
410 static int32_t tdefcolor(int *, int *, int);
411 static void tdeftran(char);
412 static inline int match(uint
, uint
);
413 static void ttynew(void);
414 static void ttyread(void);
415 static void ttyresize(void);
416 static void ttysend(char *, size_t);
417 static void ttywrite(const char *, size_t);
418 static void tstrsequence(uchar
);
420 static inline ushort
sixd_to_16bit(int);
421 static int xmakeglyphfontspecs(XftGlyphFontSpec
*, const Glyph
*, int, int, int);
422 static void xdrawglyphfontspecs(const XftGlyphFontSpec
*, Glyph
, int, int, int);
423 static void xdrawglyph(Glyph
, int, int);
424 static void xhints(void);
425 static void xclear(int, int, int, int);
426 static void xdrawcursor(void);
427 static void xinit(void);
428 static void xloadcols(void);
429 static int xsetcolorname(int, const char *);
430 static int xgeommasktogravity(int);
431 static int xloadfont(Font
*, FcPattern
*);
432 static void xloadfonts(char *, double);
433 static void xsettitle(char *);
434 static void xresettitle(void);
435 static void xsetpointermotion(int);
436 static void xseturgency(int);
437 static void xsetsel(char *, Time
);
438 static void xtermclear(int, int, int, int);
439 static void xunloadfont(Font
*);
440 static void xunloadfonts(void);
441 static void xresize(int, int);
443 static void expose(XEvent
*);
444 static void visibility(XEvent
*);
445 static void unmap(XEvent
*);
446 static char *kmap(KeySym
, uint
);
447 static void kpress(XEvent
*);
448 static void cmessage(XEvent
*);
449 static void cresize(int, int);
450 static void resize(XEvent
*);
451 static void focus(XEvent
*);
452 static void brelease(XEvent
*);
453 static void bpress(XEvent
*);
454 static void bmotion(XEvent
*);
455 static void propnotify(XEvent
*);
456 static void selnotify(XEvent
*);
457 static void selclear(XEvent
*);
458 static void selrequest(XEvent
*);
460 static void selinit(void);
461 static void selnormalize(void);
462 static inline int selected(int, int);
463 static char *getsel(void);
464 static void selcopy(Time
);
465 static void selscroll(int, int);
466 static void selsnap(int *, int *, int);
467 static int x2col(int);
468 static int y2row(int);
469 static void getbuttoninfo(XEvent
*);
470 static void mousereport(XEvent
*);
472 static size_t utf8decode(char *, Rune
*, size_t);
473 static Rune
utf8decodebyte(char, size_t *);
474 static size_t utf8encode(Rune
, char *);
475 static char utf8encodebyte(Rune
, size_t);
476 static char *utf8strchr(char *s
, Rune u
);
477 static size_t utf8validate(Rune
*, size_t);
479 static ssize_t
xwrite(int, const char *, size_t);
480 static void *xmalloc(size_t);
481 static void *xrealloc(void *, size_t);
482 static char *xstrdup(char *);
484 static void usage(void);
486 static void (*handler
[LASTEvent
])(XEvent
*) = {
488 [ClientMessage
] = cmessage
,
489 [ConfigureNotify
] = resize
,
490 [VisibilityNotify
] = visibility
,
491 [UnmapNotify
] = unmap
,
495 [MotionNotify
] = bmotion
,
496 [ButtonPress
] = bpress
,
497 [ButtonRelease
] = brelease
,
499 * Uncomment if you want the selection to disappear when you select something
500 * different in another window.
502 /* [SelectionClear] = selclear, */
503 [SelectionNotify
] = selnotify
,
505 * PropertyNotify is only turned on when there is some INCR transfer happening
506 * for the selection retrieval.
508 [PropertyNotify
] = propnotify
,
509 [SelectionRequest
] = selrequest
,
516 static CSIEscape csiescseq
;
517 static STREscape strescseq
;
520 static Selection sel
;
522 static char **opt_cmd
= NULL
;
523 static char *opt_io
= NULL
;
524 static char *opt_title
= NULL
;
525 static char *opt_embed
= NULL
;
526 static char *opt_class
= NULL
;
527 static char *opt_font
= NULL
;
528 static char *opt_line
= NULL
;
529 static int oldbutton
= 3; /* button event on startup: 3 = release */
531 static char *usedfont
= NULL
;
532 static double usedfontsize
= 0;
533 static double defaultfontsize
= 0;
535 static uchar utfbyte
[UTF_SIZ
+ 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
536 static uchar utfmask
[UTF_SIZ
+ 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
537 static Rune utfmin
[UTF_SIZ
+ 1] = { 0, 0, 0x80, 0x800, 0x10000};
538 static Rune utfmax
[UTF_SIZ
+ 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
540 /* Font Ring Cache */
554 /* Fontcache is an array now. A new font will be appended to the array. */
555 static Fontcache frc
[16];
556 static int frclen
= 0;
559 xwrite(int fd
, const char *s
, size_t len
)
564 r
= write(fd
, s
, len
);
576 void *p
= malloc(len
);
579 die("Out of memory\n");
585 xrealloc(void *p
, size_t len
)
587 if ((p
= realloc(p
, len
)) == NULL
)
588 die("Out of memory\n");
596 if ((s
= strdup(s
)) == NULL
)
597 die("Out of memory\n");
603 utf8decode(char *c
, Rune
*u
, size_t clen
)
605 size_t i
, j
, len
, type
;
611 udecoded
= utf8decodebyte(c
[0], &len
);
612 if (!BETWEEN(len
, 1, UTF_SIZ
))
614 for (i
= 1, j
= 1; i
< clen
&& j
< len
; ++i
, ++j
) {
615 udecoded
= (udecoded
<< 6) | utf8decodebyte(c
[i
], &type
);
622 utf8validate(u
, len
);
627 utf8decodebyte(char c
, size_t *i
)
629 for (*i
= 0; *i
< LEN(utfmask
); ++(*i
))
630 if (((uchar
)c
& utfmask
[*i
]) == utfbyte
[*i
])
631 return (uchar
)c
& ~utfmask
[*i
];
636 utf8encode(Rune u
, char *c
)
640 len
= utf8validate(&u
, 0);
643 for (i
= len
- 1; i
!= 0; --i
) {
644 c
[i
] = utf8encodebyte(u
, 0);
647 c
[0] = utf8encodebyte(u
, len
);
652 utf8encodebyte(Rune u
, size_t i
)
654 return utfbyte
[i
] | (u
& ~utfmask
[i
]);
658 utf8strchr(char *s
, Rune u
)
664 for (i
= 0, j
= 0; i
< len
; i
+= j
) {
665 if (!(j
= utf8decode(&s
[i
], &r
, len
- i
)))
674 utf8validate(Rune
*u
, size_t i
)
676 if (!BETWEEN(*u
, utfmin
[i
], utfmax
[i
]) || BETWEEN(*u
, 0xD800, 0xDFFF))
678 for (i
= 1; *u
> utfmax
[i
]; ++i
)
686 memset(&sel
.tclick1
, 0, sizeof(sel
.tclick1
));
687 memset(&sel
.tclick2
, 0, sizeof(sel
.tclick2
));
691 sel
.clipboard
= NULL
;
692 sel
.xtarget
= XInternAtom(xw
.dpy
, "UTF8_STRING", 0);
693 if (sel
.xtarget
== None
)
694 sel
.xtarget
= XA_STRING
;
703 return LIMIT(x
, 0, term
.col
-1);
712 return LIMIT(y
, 0, term
.row
-1);
720 if (term
.line
[y
][i
- 1].mode
& ATTR_WRAP
)
723 while (i
> 0 && term
.line
[y
][i
- 1].u
== ' ')
734 if (sel
.type
== SEL_REGULAR
&& sel
.ob
.y
!= sel
.oe
.y
) {
735 sel
.nb
.x
= sel
.ob
.y
< sel
.oe
.y
? sel
.ob
.x
: sel
.oe
.x
;
736 sel
.ne
.x
= sel
.ob
.y
< sel
.oe
.y
? sel
.oe
.x
: sel
.ob
.x
;
738 sel
.nb
.x
= MIN(sel
.ob
.x
, sel
.oe
.x
);
739 sel
.ne
.x
= MAX(sel
.ob
.x
, sel
.oe
.x
);
741 sel
.nb
.y
= MIN(sel
.ob
.y
, sel
.oe
.y
);
742 sel
.ne
.y
= MAX(sel
.ob
.y
, sel
.oe
.y
);
744 selsnap(&sel
.nb
.x
, &sel
.nb
.y
, -1);
745 selsnap(&sel
.ne
.x
, &sel
.ne
.y
, +1);
747 /* expand selection over line breaks */
748 if (sel
.type
== SEL_RECTANGULAR
)
750 i
= tlinelen(sel
.nb
.y
);
753 if (tlinelen(sel
.ne
.y
) <= sel
.ne
.x
)
754 sel
.ne
.x
= term
.col
- 1;
758 selected(int x
, int y
)
760 if (sel
.mode
== SEL_EMPTY
)
763 if (sel
.type
== SEL_RECTANGULAR
)
764 return BETWEEN(y
, sel
.nb
.y
, sel
.ne
.y
)
765 && BETWEEN(x
, sel
.nb
.x
, sel
.ne
.x
);
767 return BETWEEN(y
, sel
.nb
.y
, sel
.ne
.y
)
768 && (y
!= sel
.nb
.y
|| x
>= sel
.nb
.x
)
769 && (y
!= sel
.ne
.y
|| x
<= sel
.ne
.x
);
773 selsnap(int *x
, int *y
, int direction
)
775 int newx
, newy
, xt
, yt
;
776 int delim
, prevdelim
;
782 * Snap around if the word wraps around at the end or
783 * beginning of a line.
785 prevgp
= &term
.line
[*y
][*x
];
786 prevdelim
= ISDELIM(prevgp
->u
);
788 newx
= *x
+ direction
;
790 if (!BETWEEN(newx
, 0, term
.col
- 1)) {
792 newx
= (newx
+ term
.col
) % term
.col
;
793 if (!BETWEEN(newy
, 0, term
.row
- 1))
799 yt
= newy
, xt
= newx
;
800 if (!(term
.line
[yt
][xt
].mode
& ATTR_WRAP
))
804 if (newx
>= tlinelen(newy
))
807 gp
= &term
.line
[newy
][newx
];
808 delim
= ISDELIM(gp
->u
);
809 if (!(gp
->mode
& ATTR_WDUMMY
) && (delim
!= prevdelim
810 || (delim
&& gp
->u
!= prevgp
->u
)))
821 * Snap around if the the previous line or the current one
822 * has set ATTR_WRAP at its end. Then the whole next or
823 * previous line will be selected.
825 *x
= (direction
< 0) ? 0 : term
.col
- 1;
827 for (; *y
> 0; *y
+= direction
) {
828 if (!(term
.line
[*y
-1][term
.col
-1].mode
833 } else if (direction
> 0) {
834 for (; *y
< term
.row
-1; *y
+= direction
) {
835 if (!(term
.line
[*y
][term
.col
-1].mode
846 getbuttoninfo(XEvent
*e
)
849 uint state
= e
->xbutton
.state
& ~(Button1Mask
| forceselmod
);
851 sel
.alt
= IS_SET(MODE_ALTSCREEN
);
853 sel
.oe
.x
= x2col(e
->xbutton
.x
);
854 sel
.oe
.y
= y2row(e
->xbutton
.y
);
857 sel
.type
= SEL_REGULAR
;
858 for (type
= 1; type
< LEN(selmasks
); ++type
) {
859 if (match(selmasks
[type
], state
)) {
867 mousereport(XEvent
*e
)
869 int x
= x2col(e
->xbutton
.x
), y
= y2row(e
->xbutton
.y
),
870 button
= e
->xbutton
.button
, state
= e
->xbutton
.state
,
876 if (e
->xbutton
.type
== MotionNotify
) {
877 if (x
== ox
&& y
== oy
)
879 if (!IS_SET(MODE_MOUSEMOTION
) && !IS_SET(MODE_MOUSEMANY
))
881 /* MOUSE_MOTION: no reporting if no button is pressed */
882 if (IS_SET(MODE_MOUSEMOTION
) && oldbutton
== 3)
885 button
= oldbutton
+ 32;
889 if (!IS_SET(MODE_MOUSESGR
) && e
->xbutton
.type
== ButtonRelease
) {
896 if (e
->xbutton
.type
== ButtonPress
) {
900 } else if (e
->xbutton
.type
== ButtonRelease
) {
902 /* MODE_MOUSEX10: no button release reporting */
903 if (IS_SET(MODE_MOUSEX10
))
905 if (button
== 64 || button
== 65)
910 if (!IS_SET(MODE_MOUSEX10
)) {
911 button
+= ((state
& ShiftMask
) ? 4 : 0)
912 + ((state
& Mod4Mask
) ? 8 : 0)
913 + ((state
& ControlMask
) ? 16 : 0);
916 if (IS_SET(MODE_MOUSESGR
)) {
917 len
= snprintf(buf
, sizeof(buf
), "\033[<%d;%d;%d%c",
919 e
->xbutton
.type
== ButtonRelease
? 'm' : 'M');
920 } else if (x
< 223 && y
< 223) {
921 len
= snprintf(buf
, sizeof(buf
), "\033[M%c%c%c",
922 32+button
, 32+x
+1, 32+y
+1);
936 if (IS_SET(MODE_MOUSE
) && !(e
->xbutton
.state
& forceselmod
)) {
941 for (mk
= mshortcuts
; mk
< mshortcuts
+ LEN(mshortcuts
); mk
++) {
942 if (e
->xbutton
.button
== mk
->b
943 && match(mk
->mask
, e
->xbutton
.state
)) {
944 ttysend(mk
->s
, strlen(mk
->s
));
949 if (e
->xbutton
.button
== Button1
) {
950 clock_gettime(CLOCK_MONOTONIC
, &now
);
952 /* Clear previous selection, logically and visually. */
954 sel
.mode
= SEL_EMPTY
;
955 sel
.type
= SEL_REGULAR
;
956 sel
.oe
.x
= sel
.ob
.x
= x2col(e
->xbutton
.x
);
957 sel
.oe
.y
= sel
.ob
.y
= y2row(e
->xbutton
.y
);
960 * If the user clicks below predefined timeouts specific
961 * snapping behaviour is exposed.
963 if (TIMEDIFF(now
, sel
.tclick2
) <= tripleclicktimeout
) {
964 sel
.snap
= SNAP_LINE
;
965 } else if (TIMEDIFF(now
, sel
.tclick1
) <= doubleclicktimeout
) {
966 sel
.snap
= SNAP_WORD
;
973 sel
.mode
= SEL_READY
;
974 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
975 sel
.tclick2
= sel
.tclick1
;
984 int y
, bufsize
, lastx
, linelen
;
990 bufsize
= (term
.col
+1) * (sel
.ne
.y
-sel
.nb
.y
+1) * UTF_SIZ
;
991 ptr
= str
= xmalloc(bufsize
);
993 /* append every set & selected glyph to the selection */
994 for (y
= sel
.nb
.y
; y
<= sel
.ne
.y
; y
++) {
995 linelen
= tlinelen(y
);
997 if (sel
.type
== SEL_RECTANGULAR
) {
998 gp
= &term
.line
[y
][sel
.nb
.x
];
1001 gp
= &term
.line
[y
][sel
.nb
.y
== y
? sel
.nb
.x
: 0];
1002 lastx
= (sel
.ne
.y
== y
) ? sel
.ne
.x
: term
.col
-1;
1004 last
= &term
.line
[y
][MIN(lastx
, linelen
-1)];
1005 while (last
>= gp
&& last
->u
== ' ')
1008 for ( ; gp
<= last
; ++gp
) {
1009 if (gp
->mode
& ATTR_WDUMMY
)
1012 ptr
+= utf8encode(gp
->u
, ptr
);
1016 * Copy and pasting of line endings is inconsistent
1017 * in the inconsistent terminal and GUI world.
1018 * The best solution seems like to produce '\n' when
1019 * something is copied from st and convert '\n' to
1020 * '\r', when something to be pasted is received by
1022 * FIXME: Fix the computer world.
1024 if ((y
< sel
.ne
.y
|| lastx
>= linelen
) && !(last
->mode
& ATTR_WRAP
))
1034 xsetsel(getsel(), t
);
1038 propnotify(XEvent
*e
)
1040 XPropertyEvent
*xpev
;
1041 Atom clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1043 xpev
= &e
->xproperty
;
1044 if (xpev
->state
== PropertyNewValue
&&
1045 (xpev
->atom
== XA_PRIMARY
||
1046 xpev
->atom
== clipboard
)) {
1052 selnotify(XEvent
*e
)
1054 ulong nitems
, ofs
, rem
;
1056 uchar
*data
, *last
, *repl
;
1057 Atom type
, incratom
, property
;
1059 incratom
= XInternAtom(xw
.dpy
, "INCR", 0);
1062 if (e
->type
== SelectionNotify
) {
1063 property
= e
->xselection
.property
;
1064 } else if(e
->type
== PropertyNotify
) {
1065 property
= e
->xproperty
.atom
;
1069 if (property
== None
)
1073 if (XGetWindowProperty(xw
.dpy
, xw
.win
, property
, ofs
,
1074 BUFSIZ
/4, False
, AnyPropertyType
,
1075 &type
, &format
, &nitems
, &rem
,
1077 fprintf(stderr
, "Clipboard allocation failed\n");
1081 if (e
->type
== PropertyNotify
&& nitems
== 0 && rem
== 0) {
1083 * If there is some PropertyNotify with no data, then
1084 * this is the signal of the selection owner that all
1085 * data has been transferred. We won't need to receive
1086 * PropertyNotify events anymore.
1088 MODBIT(xw
.attrs
.event_mask
, 0, PropertyChangeMask
);
1089 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
,
1093 if (type
== incratom
) {
1095 * Activate the PropertyNotify events so we receive
1096 * when the selection owner does send us the next
1099 MODBIT(xw
.attrs
.event_mask
, 1, PropertyChangeMask
);
1100 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
,
1104 * Deleting the property is the transfer start signal.
1106 XDeleteProperty(xw
.dpy
, xw
.win
, (int)property
);
1111 * As seen in getsel:
1112 * Line endings are inconsistent in the terminal and GUI world
1113 * copy and pasting. When receiving some selection data,
1114 * replace all '\n' with '\r'.
1115 * FIXME: Fix the computer world.
1118 last
= data
+ nitems
* format
/ 8;
1119 while ((repl
= memchr(repl
, '\n', last
- repl
))) {
1123 if (IS_SET(MODE_BRCKTPASTE
))
1124 ttywrite("\033[200~", 6);
1125 ttysend((char *)data
, nitems
* format
/ 8);
1126 if (IS_SET(MODE_BRCKTPASTE
))
1127 ttywrite("\033[201~", 6);
1129 /* number of 32-bit chunks returned */
1130 ofs
+= nitems
* format
/ 32;
1134 * Deleting the property again tells the selection owner to send the
1135 * next data chunk in the property.
1137 if (e
->type
== PropertyNotify
)
1138 XDeleteProperty(xw
.dpy
, xw
.win
, (int)property
);
1142 selpaste(const Arg
*dummy
)
1144 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
1145 xw
.win
, CurrentTime
);
1149 clipcopy(const Arg
*dummy
)
1153 if (sel
.clipboard
!= NULL
)
1154 free(sel
.clipboard
);
1156 if (sel
.primary
!= NULL
) {
1157 sel
.clipboard
= xstrdup(sel
.primary
);
1158 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1159 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
1164 clippaste(const Arg
*dummy
)
1168 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1169 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, clipboard
,
1170 xw
.win
, CurrentTime
);
1178 sel
.mode
= SEL_IDLE
;
1180 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1184 selrequest(XEvent
*e
)
1186 XSelectionRequestEvent
*xsre
;
1187 XSelectionEvent xev
;
1188 Atom xa_targets
, string
, clipboard
;
1191 xsre
= (XSelectionRequestEvent
*) e
;
1192 xev
.type
= SelectionNotify
;
1193 xev
.requestor
= xsre
->requestor
;
1194 xev
.selection
= xsre
->selection
;
1195 xev
.target
= xsre
->target
;
1196 xev
.time
= xsre
->time
;
1197 if (xsre
->property
== None
)
1198 xsre
->property
= xsre
->target
;
1201 xev
.property
= None
;
1203 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
1204 if (xsre
->target
== xa_targets
) {
1205 /* respond with the supported type */
1206 string
= sel
.xtarget
;
1207 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
1208 XA_ATOM
, 32, PropModeReplace
,
1209 (uchar
*) &string
, 1);
1210 xev
.property
= xsre
->property
;
1211 } else if (xsre
->target
== sel
.xtarget
|| xsre
->target
== XA_STRING
) {
1213 * xith XA_STRING non ascii characters may be incorrect in the
1214 * requestor. It is not our problem, use utf8.
1216 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1217 if (xsre
->selection
== XA_PRIMARY
) {
1218 seltext
= sel
.primary
;
1219 } else if (xsre
->selection
== clipboard
) {
1220 seltext
= sel
.clipboard
;
1223 "Unhandled clipboard selection 0x%lx\n",
1227 if (seltext
!= NULL
) {
1228 XChangeProperty(xsre
->display
, xsre
->requestor
,
1229 xsre
->property
, xsre
->target
,
1231 (uchar
*)seltext
, strlen(seltext
));
1232 xev
.property
= xsre
->property
;
1236 /* all done, send a notification to the listener */
1237 if (!XSendEvent(xsre
->display
, xsre
->requestor
, 1, 0, (XEvent
*) &xev
))
1238 fprintf(stderr
, "Error sending SelectionNotify event\n");
1242 xsetsel(char *str
, Time t
)
1247 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, t
);
1248 if (XGetSelectionOwner(xw
.dpy
, XA_PRIMARY
) != xw
.win
)
1255 if (IS_SET(MODE_MOUSE
) && !(e
->xbutton
.state
& forceselmod
)) {
1260 if (e
->xbutton
.button
== Button2
) {
1262 } else if (e
->xbutton
.button
== Button1
) {
1263 if (sel
.mode
== SEL_READY
) {
1265 selcopy(e
->xbutton
.time
);
1268 sel
.mode
= SEL_IDLE
;
1269 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1276 int oldey
, oldex
, oldsby
, oldsey
;
1278 if (IS_SET(MODE_MOUSE
) && !(e
->xbutton
.state
& forceselmod
)) {
1286 sel
.mode
= SEL_READY
;
1293 if (oldey
!= sel
.oe
.y
|| oldex
!= sel
.oe
.x
)
1294 tsetdirt(MIN(sel
.nb
.y
, oldsby
), MAX(sel
.ne
.y
, oldsey
));
1298 die(const char *errstr
, ...)
1302 va_start(ap
, errstr
);
1303 vfprintf(stderr
, errstr
, ap
);
1311 char **args
, *sh
, *prog
;
1312 const struct passwd
*pw
;
1313 char buf
[sizeof(long) * 8 + 1];
1316 if ((pw
= getpwuid(getuid())) == NULL
) {
1318 die("getpwuid:%s\n", strerror(errno
));
1320 die("who are you?\n");
1323 if (!(sh
= getenv("SHELL"))) {
1324 sh
= (pw
->pw_shell
[0]) ? pw
->pw_shell
: shell
;
1333 args
= (opt_cmd
) ? opt_cmd
: (char *[]) {prog
, NULL
};
1335 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1337 unsetenv("COLUMNS");
1339 unsetenv("TERMCAP");
1340 setenv("LOGNAME", pw
->pw_name
, 1);
1341 setenv("USER", pw
->pw_name
, 1);
1342 setenv("SHELL", sh
, 1);
1343 setenv("HOME", pw
->pw_dir
, 1);
1344 setenv("TERM", termname
, 1);
1345 setenv("WINDOWID", buf
, 1);
1347 signal(SIGCHLD
, SIG_DFL
);
1348 signal(SIGHUP
, SIG_DFL
);
1349 signal(SIGINT
, SIG_DFL
);
1350 signal(SIGQUIT
, SIG_DFL
);
1351 signal(SIGTERM
, SIG_DFL
);
1352 signal(SIGALRM
, SIG_DFL
);
1364 if ((p
= waitpid(pid
, &stat
, WNOHANG
)) < 0)
1365 die("Waiting for pid %hd failed: %s\n", pid
, strerror(errno
));
1370 if (!WIFEXITED(stat
) || WEXITSTATUS(stat
))
1371 die("child finished with error '%d'\n", stat
);
1379 char cmd
[_POSIX_ARG_MAX
], **p
, *q
, *s
;
1382 if ((n
= strlen(stty_args
)) > sizeof(cmd
)-1)
1383 die("incorrect stty parameters\n");
1384 memcpy(cmd
, stty_args
, n
);
1386 siz
= sizeof(cmd
) - n
;
1387 for (p
= opt_cmd
; p
&& (s
= *p
); ++p
) {
1388 if ((n
= strlen(s
)) > siz
-1)
1389 die("stty parameter length too long\n");
1391 q
= memcpy(q
, s
, n
);
1396 if (system(cmd
) != 0)
1397 perror("Couldn't call stty");
1404 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1407 term
.mode
|= MODE_PRINT
;
1408 iofd
= (!strcmp(opt_io
, "-")) ?
1409 1 : open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1411 fprintf(stderr
, "Error opening %s:%s\n",
1412 opt_io
, strerror(errno
));
1417 if ((cmdfd
= open(opt_line
, O_RDWR
)) < 0)
1418 die("open line failed: %s\n", strerror(errno
));
1425 /* seems to work fine on linux, openbsd and freebsd */
1426 if (openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1427 die("openpty failed: %s\n", strerror(errno
));
1429 switch (pid
= fork()) {
1431 die("fork failed\n");
1435 setsid(); /* create a new process group */
1439 if (ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1440 die("ioctl TIOCSCTTY failed: %s\n", strerror(errno
));
1448 signal(SIGCHLD
, sigchld
);
1456 static char buf
[BUFSIZ
];
1457 static int buflen
= 0;
1459 int charsize
; /* size of utf8 char in bytes */
1463 /* append read bytes to unprocessed bytes */
1464 if ((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1465 die("Couldn't read from shell: %s\n", strerror(errno
));
1467 /* process every complete utf8 char */
1470 while ((charsize
= utf8decode(ptr
, &unicodep
, buflen
))) {
1476 /* keep any uncomplete utf8 char for the next call */
1477 memmove(buf
, ptr
, buflen
);
1481 ttywrite(const char *s
, size_t n
)
1488 * Remember that we are using a pty, which might be a modem line.
1489 * Writing too much will clog the line. That's why we are doing this
1491 * FIXME: Migrate the world to Plan 9.
1495 FD_SET(cmdfd
, &wfd
);
1499 /* Check if we can write. */
1500 if (pselect(cmdfd
+1, NULL
, &wfd
, NULL
, &tv
, NULL
) < 0) {
1503 die("select failed: %s\n", strerror(errno
));
1505 if(!FD_ISSET(cmdfd
, &wfd
)) {
1506 /* No, then free some buffer space. */
1510 * Only write 256 bytes at maximum. This seems to be a
1511 * reasonable value for a serial line. Bigger values
1512 * might clog the I/O.
1514 r
= write(cmdfd
, s
, (n
< 256)? n
: 256);
1516 die("write error on tty: %s\n",
1521 * We weren't able to write out everything.
1522 * This means the buffer is getting full
1529 /* All bytes have been written. */
1537 ttysend(char *s
, size_t n
)
1543 if (IS_SET(MODE_ECHO
))
1544 while ((len
= utf8decode(s
, &u
, n
)) > 0) {
1556 w
.ws_row
= term
.row
;
1557 w
.ws_col
= term
.col
;
1558 w
.ws_xpixel
= xw
.tw
;
1559 w
.ws_ypixel
= xw
.th
;
1560 if (ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1561 fprintf(stderr
, "Couldn't set window size: %s\n", strerror(errno
));
1569 for (i
= 0; i
< term
.row
-1; i
++) {
1570 for (j
= 0; j
< term
.col
-1; j
++) {
1571 if (term
.line
[i
][j
].mode
& attr
)
1580 tsetdirt(int top
, int bot
)
1584 LIMIT(top
, 0, term
.row
-1);
1585 LIMIT(bot
, 0, term
.row
-1);
1587 for (i
= top
; i
<= bot
; i
++)
1592 tsetdirtattr(int attr
)
1596 for (i
= 0; i
< term
.row
-1; i
++) {
1597 for (j
= 0; j
< term
.col
-1; j
++) {
1598 if (term
.line
[i
][j
].mode
& attr
) {
1609 tsetdirt(0, term
.row
-1);
1615 static TCursor c
[2];
1616 int alt
= IS_SET(MODE_ALTSCREEN
);
1618 if (mode
== CURSOR_SAVE
) {
1620 } else if (mode
== CURSOR_LOAD
) {
1622 tmoveto(c
[alt
].x
, c
[alt
].y
);
1631 term
.c
= (TCursor
){{
1635 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1637 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1638 for (i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1641 term
.bot
= term
.row
- 1;
1642 term
.mode
= MODE_WRAP
;
1643 memset(term
.trantbl
, CS_USA
, sizeof(term
.trantbl
));
1646 for (i
= 0; i
< 2; i
++) {
1648 tcursor(CURSOR_SAVE
);
1649 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1655 tnew(int col
, int row
)
1657 term
= (Term
){ .c
= { .attr
= { .fg
= defaultfg
, .bg
= defaultbg
} } };
1667 Line
*tmp
= term
.line
;
1669 term
.line
= term
.alt
;
1671 term
.mode
^= MODE_ALTSCREEN
;
1676 tscrolldown(int orig
, int n
)
1681 LIMIT(n
, 0, term
.bot
-orig
+1);
1683 tsetdirt(orig
, term
.bot
-n
);
1684 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
);
1686 for (i
= term
.bot
; i
>= orig
+n
; i
--) {
1687 temp
= term
.line
[i
];
1688 term
.line
[i
] = term
.line
[i
-n
];
1689 term
.line
[i
-n
] = temp
;
1696 tscrollup(int orig
, int n
)
1701 LIMIT(n
, 0, term
.bot
-orig
+1);
1703 tclearregion(0, orig
, term
.col
-1, orig
+n
-1);
1704 tsetdirt(orig
+n
, term
.bot
);
1706 for (i
= orig
; i
<= term
.bot
-n
; i
++) {
1707 temp
= term
.line
[i
];
1708 term
.line
[i
] = term
.line
[i
+n
];
1709 term
.line
[i
+n
] = temp
;
1712 selscroll(orig
, -n
);
1716 selscroll(int orig
, int n
)
1721 if (BETWEEN(sel
.ob
.y
, orig
, term
.bot
) || BETWEEN(sel
.oe
.y
, orig
, term
.bot
)) {
1722 if ((sel
.ob
.y
+= n
) > term
.bot
|| (sel
.oe
.y
+= n
) < term
.top
) {
1726 if (sel
.type
== SEL_RECTANGULAR
) {
1727 if (sel
.ob
.y
< term
.top
)
1728 sel
.ob
.y
= term
.top
;
1729 if (sel
.oe
.y
> term
.bot
)
1730 sel
.oe
.y
= term
.bot
;
1732 if (sel
.ob
.y
< term
.top
) {
1733 sel
.ob
.y
= term
.top
;
1736 if (sel
.oe
.y
> term
.bot
) {
1737 sel
.oe
.y
= term
.bot
;
1738 sel
.oe
.x
= term
.col
;
1746 tnewline(int first_col
)
1750 if (y
== term
.bot
) {
1751 tscrollup(term
.top
, 1);
1755 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1761 char *p
= csiescseq
.buf
, *np
;
1770 csiescseq
.buf
[csiescseq
.len
] = '\0';
1771 while (p
< csiescseq
.buf
+csiescseq
.len
) {
1773 v
= strtol(p
, &np
, 10);
1776 if (v
== LONG_MAX
|| v
== LONG_MIN
)
1778 csiescseq
.arg
[csiescseq
.narg
++] = v
;
1780 if (*p
!= ';' || csiescseq
.narg
== ESC_ARG_SIZ
)
1784 csiescseq
.mode
[0] = *p
++;
1785 csiescseq
.mode
[1] = (p
< csiescseq
.buf
+csiescseq
.len
) ? *p
: '\0';
1788 /* for absolute user moves, when decom is set */
1790 tmoveato(int x
, int y
)
1792 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1796 tmoveto(int x
, int y
)
1800 if (term
.c
.state
& CURSOR_ORIGIN
) {
1805 maxy
= term
.row
- 1;
1807 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1808 term
.c
.x
= LIMIT(x
, 0, term
.col
-1);
1809 term
.c
.y
= LIMIT(y
, miny
, maxy
);
1813 tsetchar(Rune u
, Glyph
*attr
, int x
, int y
)
1815 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1816 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1817 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1818 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1819 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1820 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1821 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1822 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1823 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1827 * The table is proudly stolen from rxvt.
1829 if (term
.trantbl
[term
.charset
] == CS_GRAPHIC0
&&
1830 BETWEEN(u
, 0x41, 0x7e) && vt100_0
[u
- 0x41])
1831 utf8decode(vt100_0
[u
- 0x41], &u
, UTF_SIZ
);
1833 if (term
.line
[y
][x
].mode
& ATTR_WIDE
) {
1834 if (x
+1 < term
.col
) {
1835 term
.line
[y
][x
+1].u
= ' ';
1836 term
.line
[y
][x
+1].mode
&= ~ATTR_WDUMMY
;
1838 } else if (term
.line
[y
][x
].mode
& ATTR_WDUMMY
) {
1839 term
.line
[y
][x
-1].u
= ' ';
1840 term
.line
[y
][x
-1].mode
&= ~ATTR_WIDE
;
1844 term
.line
[y
][x
] = *attr
;
1845 term
.line
[y
][x
].u
= u
;
1849 tclearregion(int x1
, int y1
, int x2
, int y2
)
1855 temp
= x1
, x1
= x2
, x2
= temp
;
1857 temp
= y1
, y1
= y2
, y2
= temp
;
1859 LIMIT(x1
, 0, term
.col
-1);
1860 LIMIT(x2
, 0, term
.col
-1);
1861 LIMIT(y1
, 0, term
.row
-1);
1862 LIMIT(y2
, 0, term
.row
-1);
1864 for (y
= y1
; y
<= y2
; y
++) {
1866 for (x
= x1
; x
<= x2
; x
++) {
1867 gp
= &term
.line
[y
][x
];
1870 gp
->fg
= term
.c
.attr
.fg
;
1871 gp
->bg
= term
.c
.attr
.bg
;
1884 LIMIT(n
, 0, term
.col
- term
.c
.x
);
1888 size
= term
.col
- src
;
1889 line
= term
.line
[term
.c
.y
];
1891 memmove(&line
[dst
], &line
[src
], size
* sizeof(Glyph
));
1892 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1901 LIMIT(n
, 0, term
.col
- term
.c
.x
);
1905 size
= term
.col
- dst
;
1906 line
= term
.line
[term
.c
.y
];
1908 memmove(&line
[dst
], &line
[src
], size
* sizeof(Glyph
));
1909 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
1913 tinsertblankline(int n
)
1915 if (BETWEEN(term
.c
.y
, term
.top
, term
.bot
))
1916 tscrolldown(term
.c
.y
, n
);
1922 if (BETWEEN(term
.c
.y
, term
.top
, term
.bot
))
1923 tscrollup(term
.c
.y
, n
);
1927 tdefcolor(int *attr
, int *npar
, int l
)
1932 switch (attr
[*npar
+ 1]) {
1933 case 2: /* direct color in RGB space */
1934 if (*npar
+ 4 >= l
) {
1936 "erresc(38): Incorrect number of parameters (%d)\n",
1940 r
= attr
[*npar
+ 2];
1941 g
= attr
[*npar
+ 3];
1942 b
= attr
[*npar
+ 4];
1944 if (!BETWEEN(r
, 0, 255) || !BETWEEN(g
, 0, 255) || !BETWEEN(b
, 0, 255))
1945 fprintf(stderr
, "erresc: bad rgb color (%u,%u,%u)\n",
1948 idx
= TRUECOLOR(r
, g
, b
);
1950 case 5: /* indexed color */
1951 if (*npar
+ 2 >= l
) {
1953 "erresc(38): Incorrect number of parameters (%d)\n",
1958 if (!BETWEEN(attr
[*npar
], 0, 255))
1959 fprintf(stderr
, "erresc: bad fgcolor %d\n", attr
[*npar
]);
1963 case 0: /* implemented defined (only foreground) */
1964 case 1: /* transparent */
1965 case 3: /* direct color in CMY space */
1966 case 4: /* direct color in CMYK space */
1969 "erresc(38): gfx attr %d unknown\n", attr
[*npar
]);
1977 tsetattr(int *attr
, int l
)
1982 for (i
= 0; i
< l
; i
++) {
1985 term
.c
.attr
.mode
&= ~(
1994 term
.c
.attr
.fg
= defaultfg
;
1995 term
.c
.attr
.bg
= defaultbg
;
1998 term
.c
.attr
.mode
|= ATTR_BOLD
;
2001 term
.c
.attr
.mode
|= ATTR_FAINT
;
2004 term
.c
.attr
.mode
|= ATTR_ITALIC
;
2007 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
2009 case 5: /* slow blink */
2011 case 6: /* rapid blink */
2012 term
.c
.attr
.mode
|= ATTR_BLINK
;
2015 term
.c
.attr
.mode
|= ATTR_REVERSE
;
2018 term
.c
.attr
.mode
|= ATTR_INVISIBLE
;
2021 term
.c
.attr
.mode
|= ATTR_STRUCK
;
2024 term
.c
.attr
.mode
&= ~(ATTR_BOLD
| ATTR_FAINT
);
2027 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
2030 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
2033 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
2036 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
2039 term
.c
.attr
.mode
&= ~ATTR_INVISIBLE
;
2042 term
.c
.attr
.mode
&= ~ATTR_STRUCK
;
2045 if ((idx
= tdefcolor(attr
, &i
, l
)) >= 0)
2046 term
.c
.attr
.fg
= idx
;
2049 term
.c
.attr
.fg
= defaultfg
;
2052 if ((idx
= tdefcolor(attr
, &i
, l
)) >= 0)
2053 term
.c
.attr
.bg
= idx
;
2056 term
.c
.attr
.bg
= defaultbg
;
2059 if (BETWEEN(attr
[i
], 30, 37)) {
2060 term
.c
.attr
.fg
= attr
[i
] - 30;
2061 } else if (BETWEEN(attr
[i
], 40, 47)) {
2062 term
.c
.attr
.bg
= attr
[i
] - 40;
2063 } else if (BETWEEN(attr
[i
], 90, 97)) {
2064 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
2065 } else if (BETWEEN(attr
[i
], 100, 107)) {
2066 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
2069 "erresc(default): gfx attr %d unknown\n",
2070 attr
[i
]), csidump();
2078 tsetscroll(int t
, int b
)
2082 LIMIT(t
, 0, term
.row
-1);
2083 LIMIT(b
, 0, term
.row
-1);
2094 tsetmode(int priv
, int set
, int *args
, int narg
)
2099 for (lim
= args
+ narg
; args
< lim
; ++args
) {
2102 case 1: /* DECCKM -- Cursor key */
2103 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
2105 case 5: /* DECSCNM -- Reverse video */
2107 MODBIT(term
.mode
, set
, MODE_REVERSE
);
2108 if (mode
!= term
.mode
)
2111 case 6: /* DECOM -- Origin */
2112 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
2115 case 7: /* DECAWM -- Auto wrap */
2116 MODBIT(term
.mode
, set
, MODE_WRAP
);
2118 case 0: /* Error (IGNORED) */
2119 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
2120 case 3: /* DECCOLM -- Column (IGNORED) */
2121 case 4: /* DECSCLM -- Scroll (IGNORED) */
2122 case 8: /* DECARM -- Auto repeat (IGNORED) */
2123 case 18: /* DECPFF -- Printer feed (IGNORED) */
2124 case 19: /* DECPEX -- Printer extent (IGNORED) */
2125 case 42: /* DECNRCM -- National characters (IGNORED) */
2126 case 12: /* att610 -- Start blinking cursor (IGNORED) */
2128 case 25: /* DECTCEM -- Text Cursor Enable Mode */
2129 MODBIT(term
.mode
, !set
, MODE_HIDE
);
2131 case 9: /* X10 mouse compatibility mode */
2132 xsetpointermotion(0);
2133 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2134 MODBIT(term
.mode
, set
, MODE_MOUSEX10
);
2136 case 1000: /* 1000: report button press */
2137 xsetpointermotion(0);
2138 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2139 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
2141 case 1002: /* 1002: report motion on button press */
2142 xsetpointermotion(0);
2143 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2144 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
2146 case 1003: /* 1003: enable all mouse motions */
2147 xsetpointermotion(set
);
2148 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2149 MODBIT(term
.mode
, set
, MODE_MOUSEMANY
);
2151 case 1004: /* 1004: send focus events to tty */
2152 MODBIT(term
.mode
, set
, MODE_FOCUS
);
2154 case 1006: /* 1006: extended reporting mode */
2155 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
2158 MODBIT(term
.mode
, set
, MODE_8BIT
);
2160 case 1049: /* swap screen & set/restore cursor as xterm */
2161 if (!allowaltscreen
)
2163 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
2165 case 47: /* swap screen */
2167 if (!allowaltscreen
)
2169 alt
= IS_SET(MODE_ALTSCREEN
);
2171 tclearregion(0, 0, term
.col
-1,
2174 if (set
^ alt
) /* set is always 1 or 0 */
2180 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
2182 case 2004: /* 2004: bracketed paste mode */
2183 MODBIT(term
.mode
, set
, MODE_BRCKTPASTE
);
2185 /* Not implemented mouse modes. See comments there. */
2186 case 1001: /* mouse highlight mode; can hang the
2187 terminal by design when implemented. */
2188 case 1005: /* UTF-8 mouse mode; will confuse
2189 applications not supporting UTF-8
2191 case 1015: /* urxvt mangled mouse mode; incompatible
2192 and can be mistaken for other control
2196 "erresc: unknown private set/reset mode %d\n",
2202 case 0: /* Error (IGNORED) */
2204 case 2: /* KAM -- keyboard action */
2205 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
2207 case 4: /* IRM -- Insertion-replacement */
2208 MODBIT(term
.mode
, set
, MODE_INSERT
);
2210 case 12: /* SRM -- Send/Receive */
2211 MODBIT(term
.mode
, !set
, MODE_ECHO
);
2213 case 20: /* LNM -- Linefeed/new line */
2214 MODBIT(term
.mode
, set
, MODE_CRLF
);
2218 "erresc: unknown set/reset mode %d\n",
2232 switch (csiescseq
.mode
[0]) {
2235 fprintf(stderr
, "erresc: unknown csi ");
2239 case '@': /* ICH -- Insert <n> blank char */
2240 DEFAULT(csiescseq
.arg
[0], 1);
2241 tinsertblank(csiescseq
.arg
[0]);
2243 case 'A': /* CUU -- Cursor <n> Up */
2244 DEFAULT(csiescseq
.arg
[0], 1);
2245 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
2247 case 'B': /* CUD -- Cursor <n> Down */
2248 case 'e': /* VPR --Cursor <n> Down */
2249 DEFAULT(csiescseq
.arg
[0], 1);
2250 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
2252 case 'i': /* MC -- Media Copy */
2253 switch (csiescseq
.arg
[0]) {
2258 tdumpline(term
.c
.y
);
2264 term
.mode
&= ~MODE_PRINT
;
2267 term
.mode
|= MODE_PRINT
;
2271 case 'c': /* DA -- Device Attributes */
2272 if (csiescseq
.arg
[0] == 0)
2273 ttywrite(vtiden
, sizeof(vtiden
) - 1);
2275 case 'C': /* CUF -- Cursor <n> Forward */
2276 case 'a': /* HPR -- Cursor <n> Forward */
2277 DEFAULT(csiescseq
.arg
[0], 1);
2278 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
2280 case 'D': /* CUB -- Cursor <n> Backward */
2281 DEFAULT(csiescseq
.arg
[0], 1);
2282 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
2284 case 'E': /* CNL -- Cursor <n> Down and first col */
2285 DEFAULT(csiescseq
.arg
[0], 1);
2286 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
2288 case 'F': /* CPL -- Cursor <n> Up and first col */
2289 DEFAULT(csiescseq
.arg
[0], 1);
2290 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
2292 case 'g': /* TBC -- Tabulation clear */
2293 switch (csiescseq
.arg
[0]) {
2294 case 0: /* clear current tab stop */
2295 term
.tabs
[term
.c
.x
] = 0;
2297 case 3: /* clear all the tabs */
2298 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
2304 case 'G': /* CHA -- Move to <col> */
2306 DEFAULT(csiescseq
.arg
[0], 1);
2307 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
2309 case 'H': /* CUP -- Move to <row> <col> */
2311 DEFAULT(csiescseq
.arg
[0], 1);
2312 DEFAULT(csiescseq
.arg
[1], 1);
2313 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
2315 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
2316 DEFAULT(csiescseq
.arg
[0], 1);
2317 tputtab(csiescseq
.arg
[0]);
2319 case 'J': /* ED -- Clear screen */
2321 switch (csiescseq
.arg
[0]) {
2323 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
2324 if (term
.c
.y
< term
.row
-1) {
2325 tclearregion(0, term
.c
.y
+1, term
.col
-1,
2331 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1);
2332 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
2335 tclearregion(0, 0, term
.col
-1, term
.row
-1);
2341 case 'K': /* EL -- Clear line */
2342 switch (csiescseq
.arg
[0]) {
2344 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
2348 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
2351 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
2355 case 'S': /* SU -- Scroll <n> line up */
2356 DEFAULT(csiescseq
.arg
[0], 1);
2357 tscrollup(term
.top
, csiescseq
.arg
[0]);
2359 case 'T': /* SD -- Scroll <n> line down */
2360 DEFAULT(csiescseq
.arg
[0], 1);
2361 tscrolldown(term
.top
, csiescseq
.arg
[0]);
2363 case 'L': /* IL -- Insert <n> blank lines */
2364 DEFAULT(csiescseq
.arg
[0], 1);
2365 tinsertblankline(csiescseq
.arg
[0]);
2367 case 'l': /* RM -- Reset Mode */
2368 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
2370 case 'M': /* DL -- Delete <n> lines */
2371 DEFAULT(csiescseq
.arg
[0], 1);
2372 tdeleteline(csiescseq
.arg
[0]);
2374 case 'X': /* ECH -- Erase <n> char */
2375 DEFAULT(csiescseq
.arg
[0], 1);
2376 tclearregion(term
.c
.x
, term
.c
.y
,
2377 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
);
2379 case 'P': /* DCH -- Delete <n> char */
2380 DEFAULT(csiescseq
.arg
[0], 1);
2381 tdeletechar(csiescseq
.arg
[0]);
2383 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
2384 DEFAULT(csiescseq
.arg
[0], 1);
2385 tputtab(-csiescseq
.arg
[0]);
2387 case 'd': /* VPA -- Move to <row> */
2388 DEFAULT(csiescseq
.arg
[0], 1);
2389 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
2391 case 'h': /* SM -- Set terminal mode */
2392 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
2394 case 'm': /* SGR -- Terminal attribute (color) */
2395 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
2397 case 'n': /* DSR – Device Status Report (cursor position) */
2398 if (csiescseq
.arg
[0] == 6) {
2399 len
= snprintf(buf
, sizeof(buf
),"\033[%i;%iR",
2400 term
.c
.y
+1, term
.c
.x
+1);
2404 case 'r': /* DECSTBM -- Set Scrolling Region */
2405 if (csiescseq
.priv
) {
2408 DEFAULT(csiescseq
.arg
[0], 1);
2409 DEFAULT(csiescseq
.arg
[1], term
.row
);
2410 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
2414 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
2415 tcursor(CURSOR_SAVE
);
2417 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
2418 tcursor(CURSOR_LOAD
);
2421 switch (csiescseq
.mode
[1]) {
2422 case 'q': /* DECSCUSR -- Set Cursor Style */
2423 DEFAULT(csiescseq
.arg
[0], 1);
2424 if (!BETWEEN(csiescseq
.arg
[0], 0, 6)) {
2427 xw
.cursor
= csiescseq
.arg
[0];
2443 for (i
= 0; i
< csiescseq
.len
; i
++) {
2444 c
= csiescseq
.buf
[i
] & 0xff;
2447 } else if (c
== '\n') {
2449 } else if (c
== '\r') {
2451 } else if (c
== 0x1b) {
2454 printf("(%02x)", c
);
2463 memset(&csiescseq
, 0, sizeof(csiescseq
));
2472 term
.esc
&= ~(ESC_STR_END
|ESC_STR
);
2474 par
= (narg
= strescseq
.narg
) ? atoi(strescseq
.args
[0]) : 0;
2476 switch (strescseq
.type
) {
2477 case ']': /* OSC -- Operating System Command */
2483 xsettitle(strescseq
.args
[1]);
2485 case 4: /* color set */
2488 p
= strescseq
.args
[2];
2490 case 104: /* color reset, here p = NULL */
2491 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
2492 if (xsetcolorname(j
, p
)) {
2493 fprintf(stderr
, "erresc: invalid color %s\n", p
);
2496 * TODO if defaultbg color is changed, borders
2504 case 'k': /* old title set compatibility */
2505 xsettitle(strescseq
.args
[0]);
2507 case 'P': /* DCS -- Device Control String */
2508 case '_': /* APC -- Application Program Command */
2509 case '^': /* PM -- Privacy Message */
2513 fprintf(stderr
, "erresc: unknown str ");
2521 char *p
= strescseq
.buf
;
2524 strescseq
.buf
[strescseq
.len
] = '\0';
2529 while (strescseq
.narg
< STR_ARG_SIZ
) {
2530 strescseq
.args
[strescseq
.narg
++] = p
;
2531 while ((c
= *p
) != ';' && c
!= '\0')
2545 printf("ESC%c", strescseq
.type
);
2546 for (i
= 0; i
< strescseq
.len
; i
++) {
2547 c
= strescseq
.buf
[i
] & 0xff;
2550 } else if (isprint(c
)) {
2552 } else if (c
== '\n') {
2554 } else if (c
== '\r') {
2556 } else if (c
== 0x1b) {
2559 printf("(%02x)", c
);
2568 memset(&strescseq
, 0, sizeof(strescseq
));
2572 tprinter(char *s
, size_t len
)
2574 if (iofd
!= -1 && xwrite(iofd
, s
, len
) < 0) {
2575 fprintf(stderr
, "Error writing in %s:%s\n",
2576 opt_io
, strerror(errno
));
2583 toggleprinter(const Arg
*arg
)
2585 term
.mode
^= MODE_PRINT
;
2589 printscreen(const Arg
*arg
)
2595 printsel(const Arg
*arg
)
2605 if ((ptr
= getsel())) {
2606 tprinter(ptr
, strlen(ptr
));
2617 bp
= &term
.line
[n
][0];
2618 end
= &bp
[MIN(tlinelen(n
), term
.col
) - 1];
2619 if (bp
!= end
|| bp
->u
!= ' ') {
2620 for ( ;bp
<= end
; ++bp
)
2621 tprinter(buf
, utf8encode(bp
->u
, buf
));
2631 for (i
= 0; i
< term
.row
; ++i
)
2641 while (x
< term
.col
&& n
--)
2642 for (++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
2645 while (x
> 0 && n
++)
2646 for (--x
; x
> 0 && !term
.tabs
[x
]; --x
)
2649 term
.c
.x
= LIMIT(x
, 0, term
.col
-1);
2655 if (ISCONTROL(u
)) { /* control code */
2660 } else if (u
!= '\n' && u
!= '\r' && u
!= '\t') {
2669 tdeftran(char ascii
)
2671 static char cs
[] = "0B";
2672 static int vcs
[] = {CS_GRAPHIC0
, CS_USA
};
2675 if ((p
= strchr(cs
, ascii
)) == NULL
) {
2676 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2678 term
.trantbl
[term
.icharset
] = vcs
[p
- cs
];
2687 if (c
== '8') { /* DEC screen alignment test. */
2688 for (x
= 0; x
< term
.col
; ++x
) {
2689 for (y
= 0; y
< term
.row
; ++y
)
2690 tsetchar('E', &term
.c
.attr
, x
, y
);
2696 tstrsequence(uchar c
)
2699 case 0x90: /* DCS -- Device Control String */
2702 case 0x9f: /* APC -- Application Program Command */
2705 case 0x9e: /* PM -- Privacy Message */
2708 case 0x9d: /* OSC -- Operating System Command */
2714 term
.esc
|= ESC_STR
;
2718 tcontrolcode(uchar ascii
)
2725 tmoveto(term
.c
.x
-1, term
.c
.y
);
2728 tmoveto(0, term
.c
.y
);
2733 /* go to first col if the mode is set */
2734 tnewline(IS_SET(MODE_CRLF
));
2736 case '\a': /* BEL */
2737 if (term
.esc
& ESC_STR_END
) {
2738 /* backwards compatibility to xterm */
2741 if (!(xw
.state
& WIN_FOCUSED
))
2744 XkbBell(xw
.dpy
, xw
.win
, bellvolume
, (Atom
)NULL
);
2747 case '\033': /* ESC */
2749 term
.esc
&= ~(ESC_CSI
|ESC_ALTCHARSET
|ESC_TEST
);
2750 term
.esc
|= ESC_START
;
2752 case '\016': /* SO (LS1 -- Locking shift 1) */
2753 case '\017': /* SI (LS0 -- Locking shift 0) */
2754 term
.charset
= 1 - (ascii
- '\016');
2756 case '\032': /* SUB */
2757 tsetchar('?', &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2758 case '\030': /* CAN */
2761 case '\005': /* ENQ (IGNORED) */
2762 case '\000': /* NUL (IGNORED) */
2763 case '\021': /* XON (IGNORED) */
2764 case '\023': /* XOFF (IGNORED) */
2765 case 0177: /* DEL (IGNORED) */
2767 case 0x84: /* TODO: IND */
2769 case 0x85: /* NEL -- Next line */
2770 tnewline(1); /* always go to first col */
2772 case 0x88: /* HTS -- Horizontal tab stop */
2773 term
.tabs
[term
.c
.x
] = 1;
2775 case 0x8d: /* TODO: RI */
2776 case 0x8e: /* TODO: SS2 */
2777 case 0x8f: /* TODO: SS3 */
2778 case 0x98: /* TODO: SOS */
2780 case 0x9a: /* DECID -- Identify Terminal */
2781 ttywrite(vtiden
, sizeof(vtiden
) - 1);
2783 case 0x9b: /* TODO: CSI */
2784 case 0x9c: /* TODO: ST */
2786 case 0x90: /* DCS -- Device Control String */
2787 case 0x9f: /* APC -- Application Program Command */
2788 case 0x9e: /* PM -- Privacy Message */
2789 case 0x9d: /* OSC -- Operating System Command */
2790 tstrsequence(ascii
);
2793 /* only CAN, SUB, \a and C1 chars interrupt a sequence */
2794 term
.esc
&= ~(ESC_STR_END
|ESC_STR
);
2798 * returns 1 when the sequence is finished and it hasn't to read
2799 * more characters for this sequence, otherwise 0
2802 eschandle(uchar ascii
)
2806 term
.esc
|= ESC_CSI
;
2809 term
.esc
|= ESC_TEST
;
2811 case 'P': /* DCS -- Device Control String */
2812 case '_': /* APC -- Application Program Command */
2813 case '^': /* PM -- Privacy Message */
2814 case ']': /* OSC -- Operating System Command */
2815 case 'k': /* old title set compatibility */
2816 tstrsequence(ascii
);
2818 case 'n': /* LS2 -- Locking shift 2 */
2819 case 'o': /* LS3 -- Locking shift 3 */
2820 term
.charset
= 2 + (ascii
- 'n');
2822 case '(': /* GZD4 -- set primary charset G0 */
2823 case ')': /* G1D4 -- set secondary charset G1 */
2824 case '*': /* G2D4 -- set tertiary charset G2 */
2825 case '+': /* G3D4 -- set quaternary charset G3 */
2826 term
.icharset
= ascii
- '(';
2827 term
.esc
|= ESC_ALTCHARSET
;
2829 case 'D': /* IND -- Linefeed */
2830 if (term
.c
.y
== term
.bot
) {
2831 tscrollup(term
.top
, 1);
2833 tmoveto(term
.c
.x
, term
.c
.y
+1);
2836 case 'E': /* NEL -- Next line */
2837 tnewline(1); /* always go to first col */
2839 case 'H': /* HTS -- Horizontal tab stop */
2840 term
.tabs
[term
.c
.x
] = 1;
2842 case 'M': /* RI -- Reverse index */
2843 if (term
.c
.y
== term
.top
) {
2844 tscrolldown(term
.top
, 1);
2846 tmoveto(term
.c
.x
, term
.c
.y
-1);
2849 case 'Z': /* DECID -- Identify Terminal */
2850 ttywrite(vtiden
, sizeof(vtiden
) - 1);
2852 case 'c': /* RIS -- Reset to inital state */
2857 case '=': /* DECPAM -- Application keypad */
2858 term
.mode
|= MODE_APPKEYPAD
;
2860 case '>': /* DECPNM -- Normal keypad */
2861 term
.mode
&= ~MODE_APPKEYPAD
;
2863 case '7': /* DECSC -- Save Cursor */
2864 tcursor(CURSOR_SAVE
);
2866 case '8': /* DECRC -- Restore Cursor */
2867 tcursor(CURSOR_LOAD
);
2869 case '\\': /* ST -- String Terminator */
2870 if (term
.esc
& ESC_STR_END
)
2874 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2875 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2889 len
= utf8encode(u
, c
);
2890 if ((width
= wcwidth(u
)) == -1) {
2891 memcpy(c
, "\357\277\275", 4); /* UTF_INVALID */
2895 if (IS_SET(MODE_PRINT
))
2897 control
= ISCONTROL(u
);
2900 * STR sequence must be checked before anything else
2901 * because it uses all following characters until it
2902 * receives a ESC, a SUB, a ST or any other C1 control
2905 if (term
.esc
& ESC_STR
) {
2906 if (u
== '\a' || u
== 030 || u
== 032 || u
== 033 ||
2908 term
.esc
&= ~(ESC_START
|ESC_STR
);
2909 term
.esc
|= ESC_STR_END
;
2910 } else if (strescseq
.len
+ len
< sizeof(strescseq
.buf
) - 1) {
2911 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2912 strescseq
.len
+= len
;
2916 * Here is a bug in terminals. If the user never sends
2917 * some code to stop the str or esc command, then st
2918 * will stop responding. But this is better than
2919 * silently failing with unknown characters. At least
2920 * then users will report back.
2922 * In the case users ever get fixed, here is the code:
2933 * Actions of control codes must be performed as soon they arrive
2934 * because they can be embedded inside a control sequence, and
2935 * they must not cause conflicts with sequences.
2940 * control codes are not shown ever
2943 } else if (term
.esc
& ESC_START
) {
2944 if (term
.esc
& ESC_CSI
) {
2945 csiescseq
.buf
[csiescseq
.len
++] = u
;
2946 if (BETWEEN(u
, 0x40, 0x7E)
2947 || csiescseq
.len
>= \
2948 sizeof(csiescseq
.buf
)-1) {
2954 } else if (term
.esc
& ESC_ALTCHARSET
) {
2956 } else if (term
.esc
& ESC_TEST
) {
2961 /* sequence already finished */
2965 * All characters which form part of a sequence are not
2970 if (sel
.ob
.x
!= -1 && BETWEEN(term
.c
.y
, sel
.ob
.y
, sel
.oe
.y
))
2973 gp
= &term
.line
[term
.c
.y
][term
.c
.x
];
2974 if (IS_SET(MODE_WRAP
) && (term
.c
.state
& CURSOR_WRAPNEXT
)) {
2975 gp
->mode
|= ATTR_WRAP
;
2977 gp
= &term
.line
[term
.c
.y
][term
.c
.x
];
2980 if (IS_SET(MODE_INSERT
) && term
.c
.x
+width
< term
.col
)
2981 memmove(gp
+width
, gp
, (term
.col
- term
.c
.x
- width
) * sizeof(Glyph
));
2983 if (term
.c
.x
+width
> term
.col
) {
2985 gp
= &term
.line
[term
.c
.y
][term
.c
.x
];
2988 tsetchar(u
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2991 gp
->mode
|= ATTR_WIDE
;
2992 if (term
.c
.x
+1 < term
.col
) {
2994 gp
[1].mode
= ATTR_WDUMMY
;
2997 if (term
.c
.x
+width
< term
.col
) {
2998 tmoveto(term
.c
.x
+width
, term
.c
.y
);
3000 term
.c
.state
|= CURSOR_WRAPNEXT
;
3005 tresize(int col
, int row
)
3008 int minrow
= MIN(row
, term
.row
);
3009 int mincol
= MIN(col
, term
.col
);
3013 if (col
< 1 || row
< 1) {
3015 "tresize: error resizing to %dx%d\n", col
, row
);
3020 * slide screen to keep cursor where we expect it -
3021 * tscrollup would work here, but we can optimize to
3022 * memmove because we're freeing the earlier lines
3024 for (i
= 0; i
<= term
.c
.y
- row
; i
++) {
3028 /* ensure that both src and dst are not NULL */
3030 memmove(term
.line
, term
.line
+ i
, row
* sizeof(Line
));
3031 memmove(term
.alt
, term
.alt
+ i
, row
* sizeof(Line
));
3033 for (i
+= row
; i
< term
.row
; i
++) {
3038 /* resize to new width */
3039 term
.specbuf
= xrealloc(term
.specbuf
, col
* sizeof(XftGlyphFontSpec
));
3041 /* resize to new height */
3042 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
3043 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
3044 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
3045 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
3047 /* resize each row to new width, zero-pad if needed */
3048 for (i
= 0; i
< minrow
; i
++) {
3049 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
3050 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
3053 /* allocate any new rows */
3054 for (/* i == minrow */; i
< row
; i
++) {
3055 term
.line
[i
] = xmalloc(col
* sizeof(Glyph
));
3056 term
.alt
[i
] = xmalloc(col
* sizeof(Glyph
));
3058 if (col
> term
.col
) {
3059 bp
= term
.tabs
+ term
.col
;
3061 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
3062 while (--bp
> term
.tabs
&& !*bp
)
3064 for (bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
3067 /* update terminal size */
3070 /* reset scrolling region */
3071 tsetscroll(0, row
-1);
3072 /* make use of the LIMIT in tmoveto */
3073 tmoveto(term
.c
.x
, term
.c
.y
);
3074 /* Clearing both screens (it makes dirty all lines) */
3076 for (i
= 0; i
< 2; i
++) {
3077 if (mincol
< col
&& 0 < minrow
) {
3078 tclearregion(mincol
, 0, col
- 1, minrow
- 1);
3080 if (0 < col
&& minrow
< row
) {
3081 tclearregion(0, minrow
, col
- 1, row
- 1);
3084 tcursor(CURSOR_LOAD
);
3090 xresize(int col
, int row
)
3092 xw
.tw
= MAX(1, col
* xw
.cw
);
3093 xw
.th
= MAX(1, row
* xw
.ch
);
3095 XFreePixmap(xw
.dpy
, xw
.buf
);
3096 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
3097 DefaultDepth(xw
.dpy
, xw
.scr
));
3098 XftDrawChange(xw
.draw
, xw
.buf
);
3099 xclear(0, 0, xw
.w
, xw
.h
);
3103 sixd_to_16bit(int x
)
3105 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
3109 xloadcolor(int i
, const char *name
, Color
*ncolor
)
3111 XRenderColor color
= { .alpha
= 0xffff };
3114 if (BETWEEN(i
, 16, 255)) { /* 256 color */
3115 if (i
< 6*6*6+16) { /* same colors as xterm */
3116 color
.red
= sixd_to_16bit( ((i
-16)/36)%6 );
3117 color
.green
= sixd_to_16bit( ((i
-16)/6) %6 );
3118 color
.blue
= sixd_to_16bit( ((i
-16)/1) %6 );
3119 } else { /* greyscale */
3120 color
.red
= 0x0808 + 0x0a0a * (i
- (6*6*6+16));
3121 color
.green
= color
.blue
= color
.red
;
3123 return XftColorAllocValue(xw
.dpy
, xw
.vis
,
3124 xw
.cmap
, &color
, ncolor
);
3126 name
= colorname
[i
];
3128 return XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, ncolor
);
3139 for (cp
= dc
.col
; cp
< &dc
.col
[LEN(dc
.col
)]; ++cp
)
3140 XftColorFree(xw
.dpy
, xw
.vis
, xw
.cmap
, cp
);
3143 for (i
= 0; i
< LEN(dc
.col
); i
++)
3144 if (!xloadcolor(i
, NULL
, &dc
.col
[i
])) {
3146 die("Could not allocate color '%s'\n", colorname
[i
]);
3148 die("Could not allocate color %d\n", i
);
3154 xsetcolorname(int x
, const char *name
)
3158 if (!BETWEEN(x
, 0, LEN(dc
.col
)))
3162 if (!xloadcolor(x
, name
, &ncolor
))
3165 XftColorFree(xw
.dpy
, xw
.vis
, xw
.cmap
, &dc
.col
[x
]);
3171 xtermclear(int col1
, int row1
, int col2
, int row2
)
3173 XftDrawRect(xw
.draw
,
3174 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
3175 borderpx
+ col1
* xw
.cw
,
3176 borderpx
+ row1
* xw
.ch
,
3177 (col2
-col1
+1) * xw
.cw
,
3178 (row2
-row1
+1) * xw
.ch
);
3182 * Absolute coordinates.
3185 xclear(int x1
, int y1
, int x2
, int y2
)
3187 XftDrawRect(xw
.draw
,
3188 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
3189 x1
, y1
, x2
-x1
, y2
-y1
);
3195 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
3196 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
3197 XSizeHints
*sizeh
= NULL
;
3199 sizeh
= XAllocSizeHints();
3201 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
3202 sizeh
->height
= xw
.h
;
3203 sizeh
->width
= xw
.w
;
3204 sizeh
->height_inc
= xw
.ch
;
3205 sizeh
->width_inc
= xw
.cw
;
3206 sizeh
->base_height
= 2 * borderpx
;
3207 sizeh
->base_width
= 2 * borderpx
;
3209 sizeh
->flags
|= PMaxSize
| PMinSize
;
3210 sizeh
->min_width
= sizeh
->max_width
= xw
.w
;
3211 sizeh
->min_height
= sizeh
->max_height
= xw
.h
;
3213 if (xw
.gm
& (XValue
|YValue
)) {
3214 sizeh
->flags
|= USPosition
| PWinGravity
;
3217 sizeh
->win_gravity
= xgeommasktogravity(xw
.gm
);
3220 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
,
3226 xgeommasktogravity(int mask
)
3228 switch (mask
& (XNegative
|YNegative
)) {
3230 return NorthWestGravity
;
3232 return NorthEastGravity
;
3234 return SouthWestGravity
;
3236 return SouthEastGravity
;
3240 xloadfont(Font
*f
, FcPattern
*pattern
)
3245 match
= FcFontMatch(NULL
, pattern
, &result
);
3249 if (!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
3250 FcPatternDestroy(match
);
3255 f
->pattern
= FcPatternDuplicate(pattern
);
3257 f
->ascent
= f
->match
->ascent
;
3258 f
->descent
= f
->match
->descent
;
3260 f
->rbearing
= f
->match
->max_advance_width
;
3262 f
->height
= f
->ascent
+ f
->descent
;
3263 f
->width
= f
->lbearing
+ f
->rbearing
;
3269 xloadfonts(char *fontstr
, double fontsize
)
3275 if (fontstr
[0] == '-') {
3276 pattern
= XftXlfdParse(fontstr
, False
, False
);
3278 pattern
= FcNameParse((FcChar8
*)fontstr
);
3282 die("st: can't open font %s\n", fontstr
);
3285 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
3286 FcPatternDel(pattern
, FC_SIZE
);
3287 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
3288 usedfontsize
= fontsize
;
3290 if (FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
) ==
3292 usedfontsize
= fontval
;
3293 } else if (FcPatternGetDouble(pattern
, FC_SIZE
, 0, &fontval
) ==
3298 * Default font size is 12, if none given. This is to
3299 * have a known usedfontsize value.
3301 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
3304 defaultfontsize
= usedfontsize
;
3307 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
3308 FcDefaultSubstitute(pattern
);
3310 if (xloadfont(&dc
.font
, pattern
))
3311 die("st: can't open font %s\n", fontstr
);
3313 if (usedfontsize
< 0) {
3314 FcPatternGetDouble(dc
.font
.match
->pattern
,
3315 FC_PIXEL_SIZE
, 0, &fontval
);
3316 usedfontsize
= fontval
;
3318 defaultfontsize
= fontval
;
3321 /* Setting character width and height. */
3322 xw
.cw
= ceilf(dc
.font
.width
* cwscale
);
3323 xw
.ch
= ceilf(dc
.font
.height
* chscale
);
3325 FcPatternDel(pattern
, FC_SLANT
);
3326 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
3327 if (xloadfont(&dc
.ifont
, pattern
))
3328 die("st: can't open font %s\n", fontstr
);
3330 FcPatternDel(pattern
, FC_WEIGHT
);
3331 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
3332 if (xloadfont(&dc
.ibfont
, pattern
))
3333 die("st: can't open font %s\n", fontstr
);
3335 FcPatternDel(pattern
, FC_SLANT
);
3336 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
3337 if (xloadfont(&dc
.bfont
, pattern
))
3338 die("st: can't open font %s\n", fontstr
);
3340 FcPatternDestroy(pattern
);
3344 xunloadfont(Font
*f
)
3346 XftFontClose(xw
.dpy
, f
->match
);
3347 FcPatternDestroy(f
->pattern
);
3349 FcFontSetDestroy(f
->set
);
3355 /* Free the loaded fonts in the font cache. */
3357 XftFontClose(xw
.dpy
, frc
[--frclen
].font
);
3359 xunloadfont(&dc
.font
);
3360 xunloadfont(&dc
.bfont
);
3361 xunloadfont(&dc
.ifont
);
3362 xunloadfont(&dc
.ibfont
);
3366 xzoom(const Arg
*arg
)
3370 larg
.f
= usedfontsize
+ arg
->f
;
3375 xzoomabs(const Arg
*arg
)
3378 xloadfonts(usedfont
, arg
->f
);
3385 xzoomreset(const Arg
*arg
)
3389 if (defaultfontsize
> 0) {
3390 larg
.f
= defaultfontsize
;
3401 pid_t thispid
= getpid();
3403 if (!(xw
.dpy
= XOpenDisplay(NULL
)))
3404 die("Can't open display\n");
3405 xw
.scr
= XDefaultScreen(xw
.dpy
);
3406 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
3410 die("Could not init fontconfig.\n");
3412 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
3413 xloadfonts(usedfont
, 0);
3416 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
3419 /* adjust fixed window geometry */
3420 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
3421 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
3422 if (xw
.gm
& XNegative
)
3423 xw
.l
+= DisplayWidth(xw
.dpy
, xw
.scr
) - xw
.w
- 2;
3424 if (xw
.gm
& YNegative
)
3425 xw
.t
+= DisplayWidth(xw
.dpy
, xw
.scr
) - xw
.h
- 2;
3428 xw
.attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
3429 xw
.attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
3430 xw
.attrs
.bit_gravity
= NorthWestGravity
;
3431 xw
.attrs
.event_mask
= FocusChangeMask
| KeyPressMask
3432 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
3433 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
3434 xw
.attrs
.colormap
= xw
.cmap
;
3436 if (!(opt_embed
&& (parent
= strtol(opt_embed
, NULL
, 0))))
3437 parent
= XRootWindow(xw
.dpy
, xw
.scr
);
3438 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.l
, xw
.t
,
3439 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
3440 xw
.vis
, CWBackPixel
| CWBorderPixel
| CWBitGravity
3441 | CWEventMask
| CWColormap
, &xw
.attrs
);
3443 memset(&gcvalues
, 0, sizeof(gcvalues
));
3444 gcvalues
.graphics_exposures
= False
;
3445 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
3447 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
3448 DefaultDepth(xw
.dpy
, xw
.scr
));
3449 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
3450 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
3452 /* Xft rendering context */
3453 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
3456 if ((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
3457 XSetLocaleModifiers("@im=local");
3458 if ((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
3459 XSetLocaleModifiers("@im=");
3460 if ((xw
.xim
= XOpenIM(xw
.dpy
,
3461 NULL
, NULL
, NULL
)) == NULL
) {
3462 die("XOpenIM failed. Could not open input"
3467 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
3468 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
3469 XNFocusWindow
, xw
.win
, NULL
);
3471 die("XCreateIC failed. Could not obtain input method.\n");
3473 /* white cursor, black outline */
3474 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
3475 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
3476 XRecolorCursor(xw
.dpy
, cursor
,
3477 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
3478 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
3480 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
3481 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
3482 xw
.netwmname
= XInternAtom(xw
.dpy
, "_NET_WM_NAME", False
);
3483 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
3485 xw
.netwmpid
= XInternAtom(xw
.dpy
, "_NET_WM_PID", False
);
3486 XChangeProperty(xw
.dpy
, xw
.win
, xw
.netwmpid
, XA_CARDINAL
, 32,
3487 PropModeReplace
, (uchar
*)&thispid
, 1);
3490 XMapWindow(xw
.dpy
, xw
.win
);
3492 XSync(xw
.dpy
, False
);
3496 xmakeglyphfontspecs(XftGlyphFontSpec
*specs
, const Glyph
*glyphs
, int len
, int x
, int y
)
3498 float winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
, xp
, yp
;
3499 ushort mode
, prevmode
= USHRT_MAX
;
3500 Font
*font
= &dc
.font
;
3501 int frcflags
= FRC_NORMAL
;
3502 float runewidth
= xw
.cw
;
3506 FcPattern
*fcpattern
, *fontpattern
;
3507 FcFontSet
*fcsets
[] = { NULL
};
3508 FcCharSet
*fccharset
;
3509 int i
, f
, numspecs
= 0;
3511 for (i
= 0, xp
= winx
, yp
= winy
+ font
->ascent
; i
< len
; ++i
) {
3512 /* Fetch rune and mode for current glyph. */
3514 mode
= glyphs
[i
].mode
;
3516 /* Skip dummy wide-character spacing. */
3517 if (mode
== ATTR_WDUMMY
)
3520 /* Determine font for glyph if different from previous glyph. */
3521 if (prevmode
!= mode
) {
3524 frcflags
= FRC_NORMAL
;
3525 runewidth
= xw
.cw
* ((mode
& ATTR_WIDE
) ? 2.0f
: 1.0f
);
3526 if ((mode
& ATTR_ITALIC
) && (mode
& ATTR_BOLD
)) {
3528 frcflags
= FRC_ITALICBOLD
;
3529 } else if (mode
& ATTR_ITALIC
) {
3531 frcflags
= FRC_ITALIC
;
3532 } else if (mode
& ATTR_BOLD
) {
3534 frcflags
= FRC_BOLD
;
3536 yp
= winy
+ font
->ascent
;
3539 /* Lookup character index with default font. */
3540 glyphidx
= XftCharIndex(xw
.dpy
, font
->match
, rune
);
3542 specs
[numspecs
].font
= font
->match
;
3543 specs
[numspecs
].glyph
= glyphidx
;
3544 specs
[numspecs
].x
= (short)xp
;
3545 specs
[numspecs
].y
= (short)yp
;
3551 /* Fallback on font cache, search the font cache for match. */
3552 for (f
= 0; f
< frclen
; f
++) {
3553 glyphidx
= XftCharIndex(xw
.dpy
, frc
[f
].font
, rune
);
3554 /* Everything correct. */
3555 if (glyphidx
&& frc
[f
].flags
== frcflags
)
3557 /* We got a default font for a not found glyph. */
3558 if (!glyphidx
&& frc
[f
].flags
== frcflags
3559 && frc
[f
].unicodep
== rune
) {
3564 /* Nothing was found. Use fontconfig to find matching font. */
3567 font
->set
= FcFontSort(0, font
->pattern
,
3569 fcsets
[0] = font
->set
;
3572 * Nothing was found in the cache. Now use
3573 * some dozen of Fontconfig calls to get the
3574 * font for one single character.
3576 * Xft and fontconfig are design failures.
3578 fcpattern
= FcPatternDuplicate(font
->pattern
);
3579 fccharset
= FcCharSetCreate();
3581 FcCharSetAddChar(fccharset
, rune
);
3582 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
3584 FcPatternAddBool(fcpattern
, FC_SCALABLE
, 1);
3586 FcConfigSubstitute(0, fcpattern
,
3588 FcDefaultSubstitute(fcpattern
);
3590 fontpattern
= FcFontSetMatch(0, fcsets
, 1,
3594 * Overwrite or create the new cache entry.
3596 if (frclen
>= LEN(frc
)) {
3597 frclen
= LEN(frc
) - 1;
3598 XftFontClose(xw
.dpy
, frc
[frclen
].font
);
3599 frc
[frclen
].unicodep
= 0;
3602 frc
[frclen
].font
= XftFontOpenPattern(xw
.dpy
,
3604 frc
[frclen
].flags
= frcflags
;
3605 frc
[frclen
].unicodep
= rune
;
3607 glyphidx
= XftCharIndex(xw
.dpy
, frc
[frclen
].font
, rune
);
3612 FcPatternDestroy(fcpattern
);
3613 FcCharSetDestroy(fccharset
);
3616 specs
[numspecs
].font
= frc
[f
].font
;
3617 specs
[numspecs
].glyph
= glyphidx
;
3618 specs
[numspecs
].x
= (short)xp
;
3619 specs
[numspecs
].y
= (short)(winy
+ frc
[f
].font
->ascent
);
3628 xdrawglyphfontspecs(const XftGlyphFontSpec
*specs
, Glyph base
, int len
, int x
, int y
)
3630 int charlen
= len
* ((base
.mode
& ATTR_WIDE
) ? 2 : 1);
3631 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
3632 width
= charlen
* xw
.cw
;
3633 Color
*fg
, *bg
, *temp
, revfg
, revbg
, truefg
, truebg
;
3634 XRenderColor colfg
, colbg
;
3637 /* Determine foreground and background colors based on mode. */
3638 if (base
.fg
== defaultfg
) {
3639 if (base
.mode
& ATTR_ITALIC
)
3640 base
.fg
= defaultitalic
;
3641 else if ((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
))
3642 base
.fg
= defaultitalic
;
3643 else if (base
.mode
& ATTR_UNDERLINE
)
3644 base
.fg
= defaultunderline
;
3647 if (IS_TRUECOL(base
.fg
)) {
3648 colfg
.alpha
= 0xffff;
3649 colfg
.red
= TRUERED(base
.fg
);
3650 colfg
.green
= TRUEGREEN(base
.fg
);
3651 colfg
.blue
= TRUEBLUE(base
.fg
);
3652 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &truefg
);
3655 fg
= &dc
.col
[base
.fg
];
3658 if (IS_TRUECOL(base
.bg
)) {
3659 colbg
.alpha
= 0xffff;
3660 colbg
.green
= TRUEGREEN(base
.bg
);
3661 colbg
.red
= TRUERED(base
.bg
);
3662 colbg
.blue
= TRUEBLUE(base
.bg
);
3663 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &truebg
);
3666 bg
= &dc
.col
[base
.bg
];
3669 /* Change basic system colors [0-7] to bright system colors [8-15] */
3670 if ((base
.mode
& ATTR_BOLD_FAINT
) == ATTR_BOLD
&& BETWEEN(base
.fg
, 0, 7))
3671 fg
= &dc
.col
[base
.fg
+ 8];
3673 if (IS_SET(MODE_REVERSE
)) {
3674 if (fg
== &dc
.col
[defaultfg
]) {
3675 fg
= &dc
.col
[defaultbg
];
3677 colfg
.red
= ~fg
->color
.red
;
3678 colfg
.green
= ~fg
->color
.green
;
3679 colfg
.blue
= ~fg
->color
.blue
;
3680 colfg
.alpha
= fg
->color
.alpha
;
3681 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
,
3686 if (bg
== &dc
.col
[defaultbg
]) {
3687 bg
= &dc
.col
[defaultfg
];
3689 colbg
.red
= ~bg
->color
.red
;
3690 colbg
.green
= ~bg
->color
.green
;
3691 colbg
.blue
= ~bg
->color
.blue
;
3692 colbg
.alpha
= bg
->color
.alpha
;
3693 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
,
3699 if (base
.mode
& ATTR_REVERSE
) {
3705 if ((base
.mode
& ATTR_BOLD_FAINT
) == ATTR_FAINT
) {
3706 colfg
.red
= fg
->color
.red
/ 2;
3707 colfg
.green
= fg
->color
.green
/ 2;
3708 colfg
.blue
= fg
->color
.blue
/ 2;
3709 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
3713 if (base
.mode
& ATTR_BLINK
&& term
.mode
& MODE_BLINK
)
3716 if (base
.mode
& ATTR_INVISIBLE
)
3719 /* Intelligent cleaning up of the borders. */
3721 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
3722 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
3724 if (x
+ charlen
>= term
.col
) {
3725 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
3726 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
3729 xclear(winx
, 0, winx
+ width
, borderpx
);
3730 if (y
== term
.row
-1)
3731 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
3733 /* Clean up the region we want to draw to. */
3734 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
3736 /* Set the clip region because Xft is sometimes dirty. */
3741 XftDrawSetClipRectangles(xw
.draw
, winx
, winy
, &r
, 1);
3743 /* Render the glyphs. */
3744 XftDrawGlyphFontSpec(xw
.draw
, fg
, specs
, len
);
3746 /* Render underline and strikethrough. */
3747 if (base
.mode
& ATTR_UNDERLINE
) {
3748 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ dc
.font
.ascent
+ 1,
3752 if (base
.mode
& ATTR_STRUCK
) {
3753 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ 2 * dc
.font
.ascent
/ 3,
3757 /* Reset clip to none. */
3758 XftDrawSetClip(xw
.draw
, 0);
3762 xdrawglyph(Glyph g
, int x
, int y
)
3765 XftGlyphFontSpec spec
;
3766 numspecs
= xmakeglyphfontspecs(&spec
, &g
, 1, x
, y
);
3767 xdrawglyphfontspecs(&spec
, g
, numspecs
, x
, y
);
3773 static int oldx
= 0, oldy
= 0;
3775 Glyph g
= {' ', ATTR_NULL
, defaultbg
, defaultcs
};
3777 LIMIT(oldx
, 0, term
.col
-1);
3778 LIMIT(oldy
, 0, term
.row
-1);
3782 /* adjust position if in dummy */
3783 if (term
.line
[oldy
][oldx
].mode
& ATTR_WDUMMY
)
3785 if (term
.line
[term
.c
.y
][curx
].mode
& ATTR_WDUMMY
)
3788 g
.u
= term
.line
[term
.c
.y
][term
.c
.x
].u
;
3790 /* remove the old cursor */
3791 xdrawglyph(term
.line
[oldy
][oldx
], oldx
, oldy
);
3793 if (IS_SET(MODE_HIDE
))
3796 /* draw the new one */
3797 if (xw
.state
& WIN_FOCUSED
) {
3798 switch (xw
.cursor
) {
3799 case 0: /* Blinking Block */
3800 case 1: /* Blinking Block (Default) */
3801 case 2: /* Steady Block */
3802 if (IS_SET(MODE_REVERSE
)) {
3803 g
.mode
|= ATTR_REVERSE
;
3808 g
.mode
|= term
.line
[term
.c
.y
][curx
].mode
& ATTR_WIDE
;
3809 xdrawglyph(g
, term
.c
.x
, term
.c
.y
);
3811 case 3: /* Blinking Underline */
3812 case 4: /* Steady Underline */
3813 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3814 borderpx
+ curx
* xw
.cw
,
3815 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- cursorthickness
,
3816 xw
.cw
, cursorthickness
);
3818 case 5: /* Blinking bar */
3819 case 6: /* Steady bar */
3820 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3821 borderpx
+ curx
* xw
.cw
,
3822 borderpx
+ term
.c
.y
* xw
.ch
,
3823 cursorthickness
, xw
.ch
);
3827 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3828 borderpx
+ curx
* xw
.cw
,
3829 borderpx
+ term
.c
.y
* xw
.ch
,
3831 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3832 borderpx
+ curx
* xw
.cw
,
3833 borderpx
+ term
.c
.y
* xw
.ch
,
3835 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3836 borderpx
+ (curx
+ 1) * xw
.cw
- 1,
3837 borderpx
+ term
.c
.y
* xw
.ch
,
3839 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3840 borderpx
+ curx
* xw
.cw
,
3841 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- 1,
3844 oldx
= curx
, oldy
= term
.c
.y
;
3853 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
3855 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
3856 XSetTextProperty(xw
.dpy
, xw
.win
, &prop
, xw
.netwmname
);
3863 xsettitle(opt_title
? opt_title
: "st");
3876 drawregion(0, 0, term
.col
, term
.row
);
3877 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
3879 XSetForeground(xw
.dpy
, dc
.gc
,
3880 dc
.col
[IS_SET(MODE_REVERSE
)?
3881 defaultfg
: defaultbg
].pixel
);
3885 drawregion(int x1
, int y1
, int x2
, int y2
)
3887 int i
, x
, y
, ox
, numspecs
;
3889 XftGlyphFontSpec
* specs
;
3890 int ena_sel
= sel
.ob
.x
!= -1 && sel
.alt
== IS_SET(MODE_ALTSCREEN
);
3892 if (!(xw
.state
& WIN_VISIBLE
))
3895 for (y
= y1
; y
< y2
; y
++) {
3899 xtermclear(0, y
, term
.col
, y
);
3902 specs
= term
.specbuf
;
3903 numspecs
= xmakeglyphfontspecs(specs
, &term
.line
[y
][x1
], x2
- x1
, x1
, y
);
3906 for (x
= x1
; x
< x2
&& i
< numspecs
; x
++) {
3907 new = term
.line
[y
][x
];
3908 if (new.mode
== ATTR_WDUMMY
)
3910 if (ena_sel
&& selected(x
, y
))
3911 new.mode
^= ATTR_REVERSE
;
3912 if (i
> 0 && ATTRCMP(base
, new)) {
3913 xdrawglyphfontspecs(specs
, base
, i
, ox
, y
);
3925 xdrawglyphfontspecs(specs
, base
, i
, ox
, y
);
3937 visibility(XEvent
*ev
)
3939 XVisibilityEvent
*e
= &ev
->xvisibility
;
3941 MODBIT(xw
.state
, e
->state
!= VisibilityFullyObscured
, WIN_VISIBLE
);
3947 xw
.state
&= ~WIN_VISIBLE
;
3951 xsetpointermotion(int set
)
3953 MODBIT(xw
.attrs
.event_mask
, set
, PointerMotionMask
);
3954 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
, &xw
.attrs
);
3958 xseturgency(int add
)
3960 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3962 MODBIT(h
->flags
, add
, XUrgencyHint
);
3963 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3970 XFocusChangeEvent
*e
= &ev
->xfocus
;
3972 if (e
->mode
== NotifyGrab
)
3975 if (ev
->type
== FocusIn
) {
3976 XSetICFocus(xw
.xic
);
3977 xw
.state
|= WIN_FOCUSED
;
3979 if (IS_SET(MODE_FOCUS
))
3980 ttywrite("\033[I", 3);
3982 XUnsetICFocus(xw
.xic
);
3983 xw
.state
&= ~WIN_FOCUSED
;
3984 if (IS_SET(MODE_FOCUS
))
3985 ttywrite("\033[O", 3);
3990 match(uint mask
, uint state
)
3992 return mask
== XK_ANY_MOD
|| mask
== (state
& ~ignoremod
);
3996 numlock(const Arg
*dummy
)
4002 kmap(KeySym k
, uint state
)
4007 /* Check for mapped keys out of X11 function keys. */
4008 for (i
= 0; i
< LEN(mappedkeys
); i
++) {
4009 if (mappedkeys
[i
] == k
)
4012 if (i
== LEN(mappedkeys
)) {
4013 if ((k
& 0xFFFF) < 0xFD00)
4017 for (kp
= key
; kp
< key
+ LEN(key
); kp
++) {
4021 if (!match(kp
->mask
, state
))
4024 if (IS_SET(MODE_APPKEYPAD
) ? kp
->appkey
< 0 : kp
->appkey
> 0)
4026 if (term
.numlock
&& kp
->appkey
== 2)
4029 if (IS_SET(MODE_APPCURSOR
) ? kp
->appcursor
< 0 : kp
->appcursor
> 0)
4032 if (IS_SET(MODE_CRLF
) ? kp
->crlf
< 0 : kp
->crlf
> 0)
4044 XKeyEvent
*e
= &ev
->xkey
;
4046 char buf
[32], *customkey
;
4052 if (IS_SET(MODE_KBDLOCK
))
4055 len
= XmbLookupString(xw
.xic
, e
, buf
, sizeof buf
, &ksym
, &status
);
4057 for (bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
4058 if (ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
4059 bp
->func(&(bp
->arg
));
4064 /* 2. custom keys from config.h */
4065 if ((customkey
= kmap(ksym
, e
->state
))) {
4066 ttysend(customkey
, strlen(customkey
));
4070 /* 3. composed string from input method */
4073 if (len
== 1 && e
->state
& Mod1Mask
) {
4074 if (IS_SET(MODE_8BIT
)) {
4077 len
= utf8encode(c
, buf
);
4094 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
4096 if (e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
4097 if (e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
4098 xw
.state
|= WIN_FOCUSED
;
4100 } else if (e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
4101 xw
.state
&= ~WIN_FOCUSED
;
4103 } else if (e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
4104 /* Send SIGHUP to shell */
4111 cresize(int width
, int height
)
4120 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
4121 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
4131 if (e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
4134 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
4141 int w
= xw
.w
, h
= xw
.h
;
4143 int xfd
= XConnectionNumber(xw
.dpy
), xev
, blinkset
= 0, dodraw
= 0;
4144 struct timespec drawtimeout
, *tv
= NULL
, now
, last
, lastblink
;
4147 /* Waiting for window mapping */
4149 XNextEvent(xw
.dpy
, &ev
);
4151 * XFilterEvent is required to be called after you using XOpenIM,
4152 * this is not unnecessary.It does not only filter the key event,
4153 * but some clientmessage for input method as well.
4155 if (XFilterEvent(&ev
, None
))
4157 if (ev
.type
== ConfigureNotify
) {
4158 w
= ev
.xconfigure
.width
;
4159 h
= ev
.xconfigure
.height
;
4161 } while (ev
.type
!= MapNotify
);
4166 clock_gettime(CLOCK_MONOTONIC
, &last
);
4169 for (xev
= actionfps
;;) {
4171 FD_SET(cmdfd
, &rfd
);
4174 if (pselect(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
, NULL
) < 0) {
4177 die("select failed: %s\n", strerror(errno
));
4179 if (FD_ISSET(cmdfd
, &rfd
)) {
4182 blinkset
= tattrset(ATTR_BLINK
);
4184 MODBIT(term
.mode
, 0, MODE_BLINK
);
4188 if (FD_ISSET(xfd
, &rfd
))
4191 clock_gettime(CLOCK_MONOTONIC
, &now
);
4192 drawtimeout
.tv_sec
= 0;
4193 drawtimeout
.tv_nsec
= (1000 * 1E6
)/ xfps
;
4197 if (blinktimeout
&& TIMEDIFF(now
, lastblink
) > blinktimeout
) {
4198 tsetdirtattr(ATTR_BLINK
);
4199 term
.mode
^= MODE_BLINK
;
4203 deltatime
= TIMEDIFF(now
, last
);
4204 if (deltatime
> 1000 / (xev
? xfps
: actionfps
)) {
4210 while (XPending(xw
.dpy
)) {
4211 XNextEvent(xw
.dpy
, &ev
);
4212 if (XFilterEvent(&ev
, None
))
4214 if (handler
[ev
.type
])
4215 (handler
[ev
.type
])(&ev
);
4221 if (xev
&& !FD_ISSET(xfd
, &rfd
))
4223 if (!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
)) {
4225 if (TIMEDIFF(now
, lastblink
) \
4227 drawtimeout
.tv_nsec
= 1000;
4229 drawtimeout
.tv_nsec
= (1E6
* \
4234 drawtimeout
.tv_sec
= \
4235 drawtimeout
.tv_nsec
/ 1E9
;
4236 drawtimeout
.tv_nsec
%= (long)1E9
;
4248 die("%s " VERSION
" (c) 2010-2015 st engineers\n"
4249 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
4250 " [-i] [-t title] [-w windowid] [-e command ...] [command ...]\n"
4251 " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
4252 " [-i] [-t title] [-w windowid] [-l line] [stty_args ...]\n",
4257 main(int argc
, char *argv
[])
4259 uint cols
= 80, rows
= 24;
4270 opt_class
= EARGF(usage());
4277 opt_font
= EARGF(usage());
4280 xw
.gm
= XParseGeometry(EARGF(usage()),
4281 &xw
.l
, &xw
.t
, &cols
, &rows
);
4287 opt_io
= EARGF(usage());
4290 opt_line
= EARGF(usage());
4293 opt_title
= EARGF(usage());
4296 opt_embed
= EARGF(usage());
4305 /* eat all remaining arguments */
4307 if (!opt_title
&& !opt_line
)
4308 opt_title
= basename(xstrdup(argv
[0]));
4310 setlocale(LC_CTYPE
, "");
4311 XSetLocaleModifiers("");
4312 tnew(MAX(cols
, 1), MAX(rows
, 1));