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 ssize_t 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
;
1060 if (e
->type
== SelectionNotify
) {
1061 property
= e
->xselection
.property
;
1062 } else if(e
->type
== PropertyNotify
) {
1063 property
= e
->xproperty
.atom
;
1067 if (property
== None
)
1071 if (XGetWindowProperty(xw
.dpy
, xw
.win
, property
, ofs
,
1072 BUFSIZ
/4, False
, AnyPropertyType
,
1073 &type
, &format
, &nitems
, &rem
,
1075 fprintf(stderr
, "Clipboard allocation failed\n");
1079 if (e
->type
== PropertyNotify
&& nitems
== 0 && rem
== 0) {
1081 * If there is some PropertyNotify with no data, then
1082 * this is the signal of the selection owner that all
1083 * data has been transferred. We won't need to receive
1084 * PropertyNotify events anymore.
1086 MODBIT(xw
.attrs
.event_mask
, 0, PropertyChangeMask
);
1087 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
,
1091 if (type
== incratom
) {
1093 * Activate the PropertyNotify events so we receive
1094 * when the selection owner does send us the next
1097 MODBIT(xw
.attrs
.event_mask
, 1, PropertyChangeMask
);
1098 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
,
1102 * Deleting the property is the transfer start signal.
1104 XDeleteProperty(xw
.dpy
, xw
.win
, (int)property
);
1109 * As seen in getsel:
1110 * Line endings are inconsistent in the terminal and GUI world
1111 * copy and pasting. When receiving some selection data,
1112 * replace all '\n' with '\r'.
1113 * FIXME: Fix the computer world.
1116 last
= data
+ nitems
* format
/ 8;
1117 while ((repl
= memchr(repl
, '\n', last
- repl
))) {
1121 if (IS_SET(MODE_BRCKTPASTE
))
1122 ttywrite("\033[200~", 6);
1123 ttysend((char *)data
, nitems
* format
/ 8);
1124 if (IS_SET(MODE_BRCKTPASTE
))
1125 ttywrite("\033[201~", 6);
1127 /* number of 32-bit chunks returned */
1128 ofs
+= nitems
* format
/ 32;
1132 * Deleting the property again tells the selection owner to send the
1133 * next data chunk in the property.
1135 if (e
->type
== PropertyNotify
)
1136 XDeleteProperty(xw
.dpy
, xw
.win
, (int)property
);
1140 selpaste(const Arg
*dummy
)
1142 XConvertSelection(xw
.dpy
, XA_PRIMARY
, sel
.xtarget
, XA_PRIMARY
,
1143 xw
.win
, CurrentTime
);
1147 clipcopy(const Arg
*dummy
)
1151 if (sel
.clipboard
!= NULL
)
1152 free(sel
.clipboard
);
1154 if (sel
.primary
!= NULL
) {
1155 sel
.clipboard
= xstrdup(sel
.primary
);
1156 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1157 XSetSelectionOwner(xw
.dpy
, clipboard
, xw
.win
, CurrentTime
);
1162 clippaste(const Arg
*dummy
)
1166 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1167 XConvertSelection(xw
.dpy
, clipboard
, sel
.xtarget
, clipboard
,
1168 xw
.win
, CurrentTime
);
1176 sel
.mode
= SEL_IDLE
;
1178 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1182 selrequest(XEvent
*e
)
1184 XSelectionRequestEvent
*xsre
;
1185 XSelectionEvent xev
;
1186 Atom xa_targets
, string
, clipboard
;
1189 xsre
= (XSelectionRequestEvent
*) e
;
1190 xev
.type
= SelectionNotify
;
1191 xev
.requestor
= xsre
->requestor
;
1192 xev
.selection
= xsre
->selection
;
1193 xev
.target
= xsre
->target
;
1194 xev
.time
= xsre
->time
;
1195 if (xsre
->property
== None
)
1196 xsre
->property
= xsre
->target
;
1199 xev
.property
= None
;
1201 xa_targets
= XInternAtom(xw
.dpy
, "TARGETS", 0);
1202 if (xsre
->target
== xa_targets
) {
1203 /* respond with the supported type */
1204 string
= sel
.xtarget
;
1205 XChangeProperty(xsre
->display
, xsre
->requestor
, xsre
->property
,
1206 XA_ATOM
, 32, PropModeReplace
,
1207 (uchar
*) &string
, 1);
1208 xev
.property
= xsre
->property
;
1209 } else if (xsre
->target
== sel
.xtarget
|| xsre
->target
== XA_STRING
) {
1211 * xith XA_STRING non ascii characters may be incorrect in the
1212 * requestor. It is not our problem, use utf8.
1214 clipboard
= XInternAtom(xw
.dpy
, "CLIPBOARD", 0);
1215 if (xsre
->selection
== XA_PRIMARY
) {
1216 seltext
= sel
.primary
;
1217 } else if (xsre
->selection
== clipboard
) {
1218 seltext
= sel
.clipboard
;
1221 "Unhandled clipboard selection 0x%lx\n",
1225 if (seltext
!= NULL
) {
1226 XChangeProperty(xsre
->display
, xsre
->requestor
,
1227 xsre
->property
, xsre
->target
,
1229 (uchar
*)seltext
, strlen(seltext
));
1230 xev
.property
= xsre
->property
;
1234 /* all done, send a notification to the listener */
1235 if (!XSendEvent(xsre
->display
, xsre
->requestor
, 1, 0, (XEvent
*) &xev
))
1236 fprintf(stderr
, "Error sending SelectionNotify event\n");
1240 xsetsel(char *str
, Time t
)
1245 XSetSelectionOwner(xw
.dpy
, XA_PRIMARY
, xw
.win
, t
);
1246 if (XGetSelectionOwner(xw
.dpy
, XA_PRIMARY
) != xw
.win
)
1253 if (IS_SET(MODE_MOUSE
) && !(e
->xbutton
.state
& forceselmod
)) {
1258 if (e
->xbutton
.button
== Button2
) {
1260 } else if (e
->xbutton
.button
== Button1
) {
1261 if (sel
.mode
== SEL_READY
) {
1263 selcopy(e
->xbutton
.time
);
1266 sel
.mode
= SEL_IDLE
;
1267 tsetdirt(sel
.nb
.y
, sel
.ne
.y
);
1274 int oldey
, oldex
, oldsby
, oldsey
;
1276 if (IS_SET(MODE_MOUSE
) && !(e
->xbutton
.state
& forceselmod
)) {
1284 sel
.mode
= SEL_READY
;
1291 if (oldey
!= sel
.oe
.y
|| oldex
!= sel
.oe
.x
)
1292 tsetdirt(MIN(sel
.nb
.y
, oldsby
), MAX(sel
.ne
.y
, oldsey
));
1296 die(const char *errstr
, ...)
1300 va_start(ap
, errstr
);
1301 vfprintf(stderr
, errstr
, ap
);
1309 char **args
, *sh
, *prog
;
1310 const struct passwd
*pw
;
1311 char buf
[sizeof(long) * 8 + 1];
1314 if ((pw
= getpwuid(getuid())) == NULL
) {
1316 die("getpwuid:%s\n", strerror(errno
));
1318 die("who are you?\n");
1321 if (!(sh
= getenv("SHELL"))) {
1322 sh
= (pw
->pw_shell
[0]) ? pw
->pw_shell
: shell
;
1331 args
= (opt_cmd
) ? opt_cmd
: (char *[]) {prog
, NULL
};
1333 snprintf(buf
, sizeof(buf
), "%lu", xw
.win
);
1335 unsetenv("COLUMNS");
1337 unsetenv("TERMCAP");
1338 setenv("LOGNAME", pw
->pw_name
, 1);
1339 setenv("USER", pw
->pw_name
, 1);
1340 setenv("SHELL", sh
, 1);
1341 setenv("HOME", pw
->pw_dir
, 1);
1342 setenv("TERM", termname
, 1);
1343 setenv("WINDOWID", buf
, 1);
1345 signal(SIGCHLD
, SIG_DFL
);
1346 signal(SIGHUP
, SIG_DFL
);
1347 signal(SIGINT
, SIG_DFL
);
1348 signal(SIGQUIT
, SIG_DFL
);
1349 signal(SIGTERM
, SIG_DFL
);
1350 signal(SIGALRM
, SIG_DFL
);
1362 if ((p
= waitpid(pid
, &stat
, WNOHANG
)) < 0)
1363 die("Waiting for pid %hd failed: %s\n", pid
, strerror(errno
));
1368 if (!WIFEXITED(stat
) || WEXITSTATUS(stat
))
1369 die("child finished with error '%d'\n", stat
);
1377 char cmd
[_POSIX_ARG_MAX
], **p
, *q
, *s
;
1380 if ((n
= strlen(stty_args
)) > sizeof(cmd
)-1)
1381 die("incorrect stty parameters\n");
1382 memcpy(cmd
, stty_args
, n
);
1384 siz
= sizeof(cmd
) - n
;
1385 for (p
= opt_cmd
; p
&& (s
= *p
); ++p
) {
1386 if ((n
= strlen(s
)) > siz
-1)
1387 die("stty parameter length too long\n");
1389 q
= memcpy(q
, s
, n
);
1394 if (system(cmd
) != 0)
1395 perror("Couldn't call stty");
1402 struct winsize w
= {term
.row
, term
.col
, 0, 0};
1405 term
.mode
|= MODE_PRINT
;
1406 iofd
= (!strcmp(opt_io
, "-")) ?
1407 1 : open(opt_io
, O_WRONLY
| O_CREAT
, 0666);
1409 fprintf(stderr
, "Error opening %s:%s\n",
1410 opt_io
, strerror(errno
));
1415 if ((cmdfd
= open(opt_line
, O_RDWR
)) < 0)
1416 die("open line failed: %s\n", strerror(errno
));
1423 /* seems to work fine on linux, openbsd and freebsd */
1424 if (openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
1425 die("openpty failed: %s\n", strerror(errno
));
1427 switch (pid
= fork()) {
1429 die("fork failed\n");
1433 setsid(); /* create a new process group */
1437 if (ioctl(s
, TIOCSCTTY
, NULL
) < 0)
1438 die("ioctl TIOCSCTTY failed: %s\n", strerror(errno
));
1446 signal(SIGCHLD
, sigchld
);
1454 static char buf
[BUFSIZ
];
1455 static int buflen
= 0;
1457 int charsize
; /* size of utf8 char in bytes */
1461 /* append read bytes to unprocessed bytes */
1462 if ((ret
= read(cmdfd
, buf
+buflen
, LEN(buf
)-buflen
)) < 0)
1463 die("Couldn't read from shell: %s\n", strerror(errno
));
1465 /* process every complete utf8 char */
1468 while ((charsize
= utf8decode(ptr
, &unicodep
, buflen
))) {
1474 /* keep any uncomplete utf8 char for the next call */
1475 memmove(buf
, ptr
, buflen
);
1479 ttywrite(const char *s
, size_t n
)
1481 if (xwrite(cmdfd
, s
, n
) == -1)
1482 die("write error on tty: %s\n", strerror(errno
));
1486 ttysend(char *s
, size_t n
)
1492 if (IS_SET(MODE_ECHO
))
1493 while ((len
= utf8decode(s
, &u
, n
)) > 0) {
1505 w
.ws_row
= term
.row
;
1506 w
.ws_col
= term
.col
;
1507 w
.ws_xpixel
= xw
.tw
;
1508 w
.ws_ypixel
= xw
.th
;
1509 if (ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
1510 fprintf(stderr
, "Couldn't set window size: %s\n", strerror(errno
));
1518 for (i
= 0; i
< term
.row
-1; i
++) {
1519 for (j
= 0; j
< term
.col
-1; j
++) {
1520 if (term
.line
[i
][j
].mode
& attr
)
1529 tsetdirt(int top
, int bot
)
1533 LIMIT(top
, 0, term
.row
-1);
1534 LIMIT(bot
, 0, term
.row
-1);
1536 for (i
= top
; i
<= bot
; i
++)
1541 tsetdirtattr(int attr
)
1545 for (i
= 0; i
< term
.row
-1; i
++) {
1546 for (j
= 0; j
< term
.col
-1; j
++) {
1547 if (term
.line
[i
][j
].mode
& attr
) {
1558 tsetdirt(0, term
.row
-1);
1564 static TCursor c
[2];
1565 int alt
= IS_SET(MODE_ALTSCREEN
);
1567 if (mode
== CURSOR_SAVE
) {
1569 } else if (mode
== CURSOR_LOAD
) {
1571 tmoveto(c
[alt
].x
, c
[alt
].y
);
1580 term
.c
= (TCursor
){{
1584 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
1586 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
1587 for (i
= tabspaces
; i
< term
.col
; i
+= tabspaces
)
1590 term
.bot
= term
.row
- 1;
1591 term
.mode
= MODE_WRAP
;
1592 memset(term
.trantbl
, CS_USA
, sizeof(term
.trantbl
));
1595 for (i
= 0; i
< 2; i
++) {
1597 tcursor(CURSOR_SAVE
);
1598 tclearregion(0, 0, term
.col
-1, term
.row
-1);
1604 tnew(int col
, int row
)
1606 term
= (Term
){ .c
= { .attr
= { .fg
= defaultfg
, .bg
= defaultbg
} } };
1616 Line
*tmp
= term
.line
;
1618 term
.line
= term
.alt
;
1620 term
.mode
^= MODE_ALTSCREEN
;
1625 tscrolldown(int orig
, int n
)
1630 LIMIT(n
, 0, term
.bot
-orig
+1);
1632 tsetdirt(orig
, term
.bot
-n
);
1633 tclearregion(0, term
.bot
-n
+1, term
.col
-1, term
.bot
);
1635 for (i
= term
.bot
; i
>= orig
+n
; i
--) {
1636 temp
= term
.line
[i
];
1637 term
.line
[i
] = term
.line
[i
-n
];
1638 term
.line
[i
-n
] = temp
;
1645 tscrollup(int orig
, int n
)
1650 LIMIT(n
, 0, term
.bot
-orig
+1);
1652 tclearregion(0, orig
, term
.col
-1, orig
+n
-1);
1653 tsetdirt(orig
+n
, term
.bot
);
1655 for (i
= orig
; i
<= term
.bot
-n
; i
++) {
1656 temp
= term
.line
[i
];
1657 term
.line
[i
] = term
.line
[i
+n
];
1658 term
.line
[i
+n
] = temp
;
1661 selscroll(orig
, -n
);
1665 selscroll(int orig
, int n
)
1670 if (BETWEEN(sel
.ob
.y
, orig
, term
.bot
) || BETWEEN(sel
.oe
.y
, orig
, term
.bot
)) {
1671 if ((sel
.ob
.y
+= n
) > term
.bot
|| (sel
.oe
.y
+= n
) < term
.top
) {
1675 if (sel
.type
== SEL_RECTANGULAR
) {
1676 if (sel
.ob
.y
< term
.top
)
1677 sel
.ob
.y
= term
.top
;
1678 if (sel
.oe
.y
> term
.bot
)
1679 sel
.oe
.y
= term
.bot
;
1681 if (sel
.ob
.y
< term
.top
) {
1682 sel
.ob
.y
= term
.top
;
1685 if (sel
.oe
.y
> term
.bot
) {
1686 sel
.oe
.y
= term
.bot
;
1687 sel
.oe
.x
= term
.col
;
1695 tnewline(int first_col
)
1699 if (y
== term
.bot
) {
1700 tscrollup(term
.top
, 1);
1704 tmoveto(first_col
? 0 : term
.c
.x
, y
);
1710 char *p
= csiescseq
.buf
, *np
;
1719 csiescseq
.buf
[csiescseq
.len
] = '\0';
1720 while (p
< csiescseq
.buf
+csiescseq
.len
) {
1722 v
= strtol(p
, &np
, 10);
1725 if (v
== LONG_MAX
|| v
== LONG_MIN
)
1727 csiescseq
.arg
[csiescseq
.narg
++] = v
;
1729 if (*p
!= ';' || csiescseq
.narg
== ESC_ARG_SIZ
)
1733 csiescseq
.mode
[0] = *p
++;
1734 csiescseq
.mode
[1] = (p
< csiescseq
.buf
+csiescseq
.len
) ? *p
: '\0';
1737 /* for absolute user moves, when decom is set */
1739 tmoveato(int x
, int y
)
1741 tmoveto(x
, y
+ ((term
.c
.state
& CURSOR_ORIGIN
) ? term
.top
: 0));
1745 tmoveto(int x
, int y
)
1749 if (term
.c
.state
& CURSOR_ORIGIN
) {
1754 maxy
= term
.row
- 1;
1756 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
1757 term
.c
.x
= LIMIT(x
, 0, term
.col
-1);
1758 term
.c
.y
= LIMIT(y
, miny
, maxy
);
1762 tsetchar(Rune u
, Glyph
*attr
, int x
, int y
)
1764 static char *vt100_0
[62] = { /* 0x41 - 0x7e */
1765 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1766 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1767 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1768 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1769 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1770 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1771 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1772 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1776 * The table is proudly stolen from rxvt.
1778 if (term
.trantbl
[term
.charset
] == CS_GRAPHIC0
&&
1779 BETWEEN(u
, 0x41, 0x7e) && vt100_0
[u
- 0x41])
1780 utf8decode(vt100_0
[u
- 0x41], &u
, UTF_SIZ
);
1782 if (term
.line
[y
][x
].mode
& ATTR_WIDE
) {
1783 if (x
+1 < term
.col
) {
1784 term
.line
[y
][x
+1].u
= ' ';
1785 term
.line
[y
][x
+1].mode
&= ~ATTR_WDUMMY
;
1787 } else if (term
.line
[y
][x
].mode
& ATTR_WDUMMY
) {
1788 term
.line
[y
][x
-1].u
= ' ';
1789 term
.line
[y
][x
-1].mode
&= ~ATTR_WIDE
;
1793 term
.line
[y
][x
] = *attr
;
1794 term
.line
[y
][x
].u
= u
;
1798 tclearregion(int x1
, int y1
, int x2
, int y2
)
1804 temp
= x1
, x1
= x2
, x2
= temp
;
1806 temp
= y1
, y1
= y2
, y2
= temp
;
1808 LIMIT(x1
, 0, term
.col
-1);
1809 LIMIT(x2
, 0, term
.col
-1);
1810 LIMIT(y1
, 0, term
.row
-1);
1811 LIMIT(y2
, 0, term
.row
-1);
1813 for (y
= y1
; y
<= y2
; y
++) {
1815 for (x
= x1
; x
<= x2
; x
++) {
1816 gp
= &term
.line
[y
][x
];
1819 gp
->fg
= term
.c
.attr
.fg
;
1820 gp
->bg
= term
.c
.attr
.bg
;
1833 LIMIT(n
, 0, term
.col
- term
.c
.x
);
1837 size
= term
.col
- src
;
1838 line
= term
.line
[term
.c
.y
];
1840 memmove(&line
[dst
], &line
[src
], size
* sizeof(Glyph
));
1841 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
1850 LIMIT(n
, 0, term
.col
- term
.c
.x
);
1854 size
= term
.col
- dst
;
1855 line
= term
.line
[term
.c
.y
];
1857 memmove(&line
[dst
], &line
[src
], size
* sizeof(Glyph
));
1858 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
1862 tinsertblankline(int n
)
1864 if (BETWEEN(term
.c
.y
, term
.top
, term
.bot
))
1865 tscrolldown(term
.c
.y
, n
);
1871 if (BETWEEN(term
.c
.y
, term
.top
, term
.bot
))
1872 tscrollup(term
.c
.y
, n
);
1876 tdefcolor(int *attr
, int *npar
, int l
)
1881 switch (attr
[*npar
+ 1]) {
1882 case 2: /* direct color in RGB space */
1883 if (*npar
+ 4 >= l
) {
1885 "erresc(38): Incorrect number of parameters (%d)\n",
1889 r
= attr
[*npar
+ 2];
1890 g
= attr
[*npar
+ 3];
1891 b
= attr
[*npar
+ 4];
1893 if (!BETWEEN(r
, 0, 255) || !BETWEEN(g
, 0, 255) || !BETWEEN(b
, 0, 255))
1894 fprintf(stderr
, "erresc: bad rgb color (%u,%u,%u)\n",
1897 idx
= TRUECOLOR(r
, g
, b
);
1899 case 5: /* indexed color */
1900 if (*npar
+ 2 >= l
) {
1902 "erresc(38): Incorrect number of parameters (%d)\n",
1907 if (!BETWEEN(attr
[*npar
], 0, 255))
1908 fprintf(stderr
, "erresc: bad fgcolor %d\n", attr
[*npar
]);
1912 case 0: /* implemented defined (only foreground) */
1913 case 1: /* transparent */
1914 case 3: /* direct color in CMY space */
1915 case 4: /* direct color in CMYK space */
1918 "erresc(38): gfx attr %d unknown\n", attr
[*npar
]);
1926 tsetattr(int *attr
, int l
)
1931 for (i
= 0; i
< l
; i
++) {
1934 term
.c
.attr
.mode
&= ~(
1943 term
.c
.attr
.fg
= defaultfg
;
1944 term
.c
.attr
.bg
= defaultbg
;
1947 term
.c
.attr
.mode
|= ATTR_BOLD
;
1950 term
.c
.attr
.mode
|= ATTR_FAINT
;
1953 term
.c
.attr
.mode
|= ATTR_ITALIC
;
1956 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
1958 case 5: /* slow blink */
1960 case 6: /* rapid blink */
1961 term
.c
.attr
.mode
|= ATTR_BLINK
;
1964 term
.c
.attr
.mode
|= ATTR_REVERSE
;
1967 term
.c
.attr
.mode
|= ATTR_INVISIBLE
;
1970 term
.c
.attr
.mode
|= ATTR_STRUCK
;
1973 term
.c
.attr
.mode
&= ~(ATTR_BOLD
| ATTR_FAINT
);
1976 term
.c
.attr
.mode
&= ~ATTR_ITALIC
;
1979 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
1982 term
.c
.attr
.mode
&= ~ATTR_BLINK
;
1985 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
1988 term
.c
.attr
.mode
&= ~ATTR_INVISIBLE
;
1991 term
.c
.attr
.mode
&= ~ATTR_STRUCK
;
1994 if ((idx
= tdefcolor(attr
, &i
, l
)) >= 0)
1995 term
.c
.attr
.fg
= idx
;
1998 term
.c
.attr
.fg
= defaultfg
;
2001 if ((idx
= tdefcolor(attr
, &i
, l
)) >= 0)
2002 term
.c
.attr
.bg
= idx
;
2005 term
.c
.attr
.bg
= defaultbg
;
2008 if (BETWEEN(attr
[i
], 30, 37)) {
2009 term
.c
.attr
.fg
= attr
[i
] - 30;
2010 } else if (BETWEEN(attr
[i
], 40, 47)) {
2011 term
.c
.attr
.bg
= attr
[i
] - 40;
2012 } else if (BETWEEN(attr
[i
], 90, 97)) {
2013 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
2014 } else if (BETWEEN(attr
[i
], 100, 107)) {
2015 term
.c
.attr
.bg
= attr
[i
] - 100 + 8;
2018 "erresc(default): gfx attr %d unknown\n",
2019 attr
[i
]), csidump();
2027 tsetscroll(int t
, int b
)
2031 LIMIT(t
, 0, term
.row
-1);
2032 LIMIT(b
, 0, term
.row
-1);
2043 tsetmode(int priv
, int set
, int *args
, int narg
)
2048 for (lim
= args
+ narg
; args
< lim
; ++args
) {
2051 case 1: /* DECCKM -- Cursor key */
2052 MODBIT(term
.mode
, set
, MODE_APPCURSOR
);
2054 case 5: /* DECSCNM -- Reverse video */
2056 MODBIT(term
.mode
, set
, MODE_REVERSE
);
2057 if (mode
!= term
.mode
)
2060 case 6: /* DECOM -- Origin */
2061 MODBIT(term
.c
.state
, set
, CURSOR_ORIGIN
);
2064 case 7: /* DECAWM -- Auto wrap */
2065 MODBIT(term
.mode
, set
, MODE_WRAP
);
2067 case 0: /* Error (IGNORED) */
2068 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
2069 case 3: /* DECCOLM -- Column (IGNORED) */
2070 case 4: /* DECSCLM -- Scroll (IGNORED) */
2071 case 8: /* DECARM -- Auto repeat (IGNORED) */
2072 case 18: /* DECPFF -- Printer feed (IGNORED) */
2073 case 19: /* DECPEX -- Printer extent (IGNORED) */
2074 case 42: /* DECNRCM -- National characters (IGNORED) */
2075 case 12: /* att610 -- Start blinking cursor (IGNORED) */
2077 case 25: /* DECTCEM -- Text Cursor Enable Mode */
2078 MODBIT(term
.mode
, !set
, MODE_HIDE
);
2080 case 9: /* X10 mouse compatibility mode */
2081 xsetpointermotion(0);
2082 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2083 MODBIT(term
.mode
, set
, MODE_MOUSEX10
);
2085 case 1000: /* 1000: report button press */
2086 xsetpointermotion(0);
2087 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2088 MODBIT(term
.mode
, set
, MODE_MOUSEBTN
);
2090 case 1002: /* 1002: report motion on button press */
2091 xsetpointermotion(0);
2092 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2093 MODBIT(term
.mode
, set
, MODE_MOUSEMOTION
);
2095 case 1003: /* 1003: enable all mouse motions */
2096 xsetpointermotion(set
);
2097 MODBIT(term
.mode
, 0, MODE_MOUSE
);
2098 MODBIT(term
.mode
, set
, MODE_MOUSEMANY
);
2100 case 1004: /* 1004: send focus events to tty */
2101 MODBIT(term
.mode
, set
, MODE_FOCUS
);
2103 case 1006: /* 1006: extended reporting mode */
2104 MODBIT(term
.mode
, set
, MODE_MOUSESGR
);
2107 MODBIT(term
.mode
, set
, MODE_8BIT
);
2109 case 1049: /* swap screen & set/restore cursor as xterm */
2110 if (!allowaltscreen
)
2112 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
2114 case 47: /* swap screen */
2116 if (!allowaltscreen
)
2118 alt
= IS_SET(MODE_ALTSCREEN
);
2120 tclearregion(0, 0, term
.col
-1,
2123 if (set
^ alt
) /* set is always 1 or 0 */
2129 tcursor((set
) ? CURSOR_SAVE
: CURSOR_LOAD
);
2131 case 2004: /* 2004: bracketed paste mode */
2132 MODBIT(term
.mode
, set
, MODE_BRCKTPASTE
);
2134 /* Not implemented mouse modes. See comments there. */
2135 case 1001: /* mouse highlight mode; can hang the
2136 terminal by design when implemented. */
2137 case 1005: /* UTF-8 mouse mode; will confuse
2138 applications not supporting UTF-8
2140 case 1015: /* urxvt mangled mouse mode; incompatible
2141 and can be mistaken for other control
2145 "erresc: unknown private set/reset mode %d\n",
2151 case 0: /* Error (IGNORED) */
2153 case 2: /* KAM -- keyboard action */
2154 MODBIT(term
.mode
, set
, MODE_KBDLOCK
);
2156 case 4: /* IRM -- Insertion-replacement */
2157 MODBIT(term
.mode
, set
, MODE_INSERT
);
2159 case 12: /* SRM -- Send/Receive */
2160 MODBIT(term
.mode
, !set
, MODE_ECHO
);
2162 case 20: /* LNM -- Linefeed/new line */
2163 MODBIT(term
.mode
, set
, MODE_CRLF
);
2167 "erresc: unknown set/reset mode %d\n",
2181 switch (csiescseq
.mode
[0]) {
2184 fprintf(stderr
, "erresc: unknown csi ");
2188 case '@': /* ICH -- Insert <n> blank char */
2189 DEFAULT(csiescseq
.arg
[0], 1);
2190 tinsertblank(csiescseq
.arg
[0]);
2192 case 'A': /* CUU -- Cursor <n> Up */
2193 DEFAULT(csiescseq
.arg
[0], 1);
2194 tmoveto(term
.c
.x
, term
.c
.y
-csiescseq
.arg
[0]);
2196 case 'B': /* CUD -- Cursor <n> Down */
2197 case 'e': /* VPR --Cursor <n> Down */
2198 DEFAULT(csiescseq
.arg
[0], 1);
2199 tmoveto(term
.c
.x
, term
.c
.y
+csiescseq
.arg
[0]);
2201 case 'i': /* MC -- Media Copy */
2202 switch (csiescseq
.arg
[0]) {
2207 tdumpline(term
.c
.y
);
2213 term
.mode
&= ~MODE_PRINT
;
2216 term
.mode
|= MODE_PRINT
;
2220 case 'c': /* DA -- Device Attributes */
2221 if (csiescseq
.arg
[0] == 0)
2222 ttywrite(vtiden
, sizeof(vtiden
) - 1);
2224 case 'C': /* CUF -- Cursor <n> Forward */
2225 case 'a': /* HPR -- Cursor <n> Forward */
2226 DEFAULT(csiescseq
.arg
[0], 1);
2227 tmoveto(term
.c
.x
+csiescseq
.arg
[0], term
.c
.y
);
2229 case 'D': /* CUB -- Cursor <n> Backward */
2230 DEFAULT(csiescseq
.arg
[0], 1);
2231 tmoveto(term
.c
.x
-csiescseq
.arg
[0], term
.c
.y
);
2233 case 'E': /* CNL -- Cursor <n> Down and first col */
2234 DEFAULT(csiescseq
.arg
[0], 1);
2235 tmoveto(0, term
.c
.y
+csiescseq
.arg
[0]);
2237 case 'F': /* CPL -- Cursor <n> Up and first col */
2238 DEFAULT(csiescseq
.arg
[0], 1);
2239 tmoveto(0, term
.c
.y
-csiescseq
.arg
[0]);
2241 case 'g': /* TBC -- Tabulation clear */
2242 switch (csiescseq
.arg
[0]) {
2243 case 0: /* clear current tab stop */
2244 term
.tabs
[term
.c
.x
] = 0;
2246 case 3: /* clear all the tabs */
2247 memset(term
.tabs
, 0, term
.col
* sizeof(*term
.tabs
));
2253 case 'G': /* CHA -- Move to <col> */
2255 DEFAULT(csiescseq
.arg
[0], 1);
2256 tmoveto(csiescseq
.arg
[0]-1, term
.c
.y
);
2258 case 'H': /* CUP -- Move to <row> <col> */
2260 DEFAULT(csiescseq
.arg
[0], 1);
2261 DEFAULT(csiescseq
.arg
[1], 1);
2262 tmoveato(csiescseq
.arg
[1]-1, csiescseq
.arg
[0]-1);
2264 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
2265 DEFAULT(csiescseq
.arg
[0], 1);
2266 tputtab(csiescseq
.arg
[0]);
2268 case 'J': /* ED -- Clear screen */
2270 switch (csiescseq
.arg
[0]) {
2272 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
2273 if (term
.c
.y
< term
.row
-1) {
2274 tclearregion(0, term
.c
.y
+1, term
.col
-1,
2280 tclearregion(0, 0, term
.col
-1, term
.c
.y
-1);
2281 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
2284 tclearregion(0, 0, term
.col
-1, term
.row
-1);
2290 case 'K': /* EL -- Clear line */
2291 switch (csiescseq
.arg
[0]) {
2293 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1,
2297 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
2300 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
2304 case 'S': /* SU -- Scroll <n> line up */
2305 DEFAULT(csiescseq
.arg
[0], 1);
2306 tscrollup(term
.top
, csiescseq
.arg
[0]);
2308 case 'T': /* SD -- Scroll <n> line down */
2309 DEFAULT(csiescseq
.arg
[0], 1);
2310 tscrolldown(term
.top
, csiescseq
.arg
[0]);
2312 case 'L': /* IL -- Insert <n> blank lines */
2313 DEFAULT(csiescseq
.arg
[0], 1);
2314 tinsertblankline(csiescseq
.arg
[0]);
2316 case 'l': /* RM -- Reset Mode */
2317 tsetmode(csiescseq
.priv
, 0, csiescseq
.arg
, csiescseq
.narg
);
2319 case 'M': /* DL -- Delete <n> lines */
2320 DEFAULT(csiescseq
.arg
[0], 1);
2321 tdeleteline(csiescseq
.arg
[0]);
2323 case 'X': /* ECH -- Erase <n> char */
2324 DEFAULT(csiescseq
.arg
[0], 1);
2325 tclearregion(term
.c
.x
, term
.c
.y
,
2326 term
.c
.x
+ csiescseq
.arg
[0] - 1, term
.c
.y
);
2328 case 'P': /* DCH -- Delete <n> char */
2329 DEFAULT(csiescseq
.arg
[0], 1);
2330 tdeletechar(csiescseq
.arg
[0]);
2332 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
2333 DEFAULT(csiescseq
.arg
[0], 1);
2334 tputtab(-csiescseq
.arg
[0]);
2336 case 'd': /* VPA -- Move to <row> */
2337 DEFAULT(csiescseq
.arg
[0], 1);
2338 tmoveato(term
.c
.x
, csiescseq
.arg
[0]-1);
2340 case 'h': /* SM -- Set terminal mode */
2341 tsetmode(csiescseq
.priv
, 1, csiescseq
.arg
, csiescseq
.narg
);
2343 case 'm': /* SGR -- Terminal attribute (color) */
2344 tsetattr(csiescseq
.arg
, csiescseq
.narg
);
2346 case 'n': /* DSR – Device Status Report (cursor position) */
2347 if (csiescseq
.arg
[0] == 6) {
2348 len
= snprintf(buf
, sizeof(buf
),"\033[%i;%iR",
2349 term
.c
.y
+1, term
.c
.x
+1);
2353 case 'r': /* DECSTBM -- Set Scrolling Region */
2354 if (csiescseq
.priv
) {
2357 DEFAULT(csiescseq
.arg
[0], 1);
2358 DEFAULT(csiescseq
.arg
[1], term
.row
);
2359 tsetscroll(csiescseq
.arg
[0]-1, csiescseq
.arg
[1]-1);
2363 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
2364 tcursor(CURSOR_SAVE
);
2366 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
2367 tcursor(CURSOR_LOAD
);
2370 switch (csiescseq
.mode
[1]) {
2371 case 'q': /* DECSCUSR -- Set Cursor Style */
2372 DEFAULT(csiescseq
.arg
[0], 1);
2373 if (!BETWEEN(csiescseq
.arg
[0], 0, 6)) {
2376 xw
.cursor
= csiescseq
.arg
[0];
2392 for (i
= 0; i
< csiescseq
.len
; i
++) {
2393 c
= csiescseq
.buf
[i
] & 0xff;
2396 } else if (c
== '\n') {
2398 } else if (c
== '\r') {
2400 } else if (c
== 0x1b) {
2403 printf("(%02x)", c
);
2412 memset(&csiescseq
, 0, sizeof(csiescseq
));
2421 term
.esc
&= ~(ESC_STR_END
|ESC_STR
);
2423 par
= (narg
= strescseq
.narg
) ? atoi(strescseq
.args
[0]) : 0;
2425 switch (strescseq
.type
) {
2426 case ']': /* OSC -- Operating System Command */
2432 xsettitle(strescseq
.args
[1]);
2434 case 4: /* color set */
2437 p
= strescseq
.args
[2];
2439 case 104: /* color reset, here p = NULL */
2440 j
= (narg
> 1) ? atoi(strescseq
.args
[1]) : -1;
2441 if (xsetcolorname(j
, p
)) {
2442 fprintf(stderr
, "erresc: invalid color %s\n", p
);
2445 * TODO if defaultbg color is changed, borders
2453 case 'k': /* old title set compatibility */
2454 xsettitle(strescseq
.args
[0]);
2456 case 'P': /* DCS -- Device Control String */
2457 case '_': /* APC -- Application Program Command */
2458 case '^': /* PM -- Privacy Message */
2462 fprintf(stderr
, "erresc: unknown str ");
2470 char *p
= strescseq
.buf
;
2473 strescseq
.buf
[strescseq
.len
] = '\0';
2478 while (strescseq
.narg
< STR_ARG_SIZ
) {
2479 strescseq
.args
[strescseq
.narg
++] = p
;
2480 while ((c
= *p
) != ';' && c
!= '\0')
2494 printf("ESC%c", strescseq
.type
);
2495 for (i
= 0; i
< strescseq
.len
; i
++) {
2496 c
= strescseq
.buf
[i
] & 0xff;
2499 } else if (isprint(c
)) {
2501 } else if (c
== '\n') {
2503 } else if (c
== '\r') {
2505 } else if (c
== 0x1b) {
2508 printf("(%02x)", c
);
2517 memset(&strescseq
, 0, sizeof(strescseq
));
2521 tprinter(char *s
, size_t len
)
2523 if (iofd
!= -1 && xwrite(iofd
, s
, len
) < 0) {
2524 fprintf(stderr
, "Error writing in %s:%s\n",
2525 opt_io
, strerror(errno
));
2532 toggleprinter(const Arg
*arg
)
2534 term
.mode
^= MODE_PRINT
;
2538 printscreen(const Arg
*arg
)
2544 printsel(const Arg
*arg
)
2554 if ((ptr
= getsel())) {
2555 tprinter(ptr
, strlen(ptr
));
2566 bp
= &term
.line
[n
][0];
2567 end
= &bp
[MIN(tlinelen(n
), term
.col
) - 1];
2568 if (bp
!= end
|| bp
->u
!= ' ') {
2569 for ( ;bp
<= end
; ++bp
)
2570 tprinter(buf
, utf8encode(bp
->u
, buf
));
2580 for (i
= 0; i
< term
.row
; ++i
)
2590 while (x
< term
.col
&& n
--)
2591 for (++x
; x
< term
.col
&& !term
.tabs
[x
]; ++x
)
2594 while (x
> 0 && n
++)
2595 for (--x
; x
> 0 && !term
.tabs
[x
]; --x
)
2598 term
.c
.x
= LIMIT(x
, 0, term
.col
-1);
2604 if (ISCONTROL(u
)) { /* control code */
2609 } else if (u
!= '\n' && u
!= '\r' && u
!= '\t') {
2618 tdeftran(char ascii
)
2620 static char cs
[] = "0B";
2621 static int vcs
[] = {CS_GRAPHIC0
, CS_USA
};
2624 if ((p
= strchr(cs
, ascii
)) == NULL
) {
2625 fprintf(stderr
, "esc unhandled charset: ESC ( %c\n", ascii
);
2627 term
.trantbl
[term
.icharset
] = vcs
[p
- cs
];
2636 if (c
== '8') { /* DEC screen alignment test. */
2637 for (x
= 0; x
< term
.col
; ++x
) {
2638 for (y
= 0; y
< term
.row
; ++y
)
2639 tsetchar('E', &term
.c
.attr
, x
, y
);
2645 tstrsequence(uchar c
)
2648 case 0x90: /* DCS -- Device Control String */
2651 case 0x9f: /* APC -- Application Program Command */
2654 case 0x9e: /* PM -- Privacy Message */
2657 case 0x9d: /* OSC -- Operating System Command */
2663 term
.esc
|= ESC_STR
;
2667 tcontrolcode(uchar ascii
)
2674 tmoveto(term
.c
.x
-1, term
.c
.y
);
2677 tmoveto(0, term
.c
.y
);
2682 /* go to first col if the mode is set */
2683 tnewline(IS_SET(MODE_CRLF
));
2685 case '\a': /* BEL */
2686 if (term
.esc
& ESC_STR_END
) {
2687 /* backwards compatibility to xterm */
2690 if (!(xw
.state
& WIN_FOCUSED
))
2693 XkbBell(xw
.dpy
, xw
.win
, bellvolume
, (Atom
)NULL
);
2696 case '\033': /* ESC */
2698 term
.esc
&= ~(ESC_CSI
|ESC_ALTCHARSET
|ESC_TEST
);
2699 term
.esc
|= ESC_START
;
2701 case '\016': /* SO (LS1 -- Locking shift 1) */
2702 case '\017': /* SI (LS0 -- Locking shift 0) */
2703 term
.charset
= 1 - (ascii
- '\016');
2705 case '\032': /* SUB */
2706 tsetchar('?', &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2707 case '\030': /* CAN */
2710 case '\005': /* ENQ (IGNORED) */
2711 case '\000': /* NUL (IGNORED) */
2712 case '\021': /* XON (IGNORED) */
2713 case '\023': /* XOFF (IGNORED) */
2714 case 0177: /* DEL (IGNORED) */
2716 case 0x84: /* TODO: IND */
2718 case 0x85: /* NEL -- Next line */
2719 tnewline(1); /* always go to first col */
2721 case 0x88: /* HTS -- Horizontal tab stop */
2722 term
.tabs
[term
.c
.x
] = 1;
2724 case 0x8d: /* TODO: RI */
2725 case 0x8e: /* TODO: SS2 */
2726 case 0x8f: /* TODO: SS3 */
2727 case 0x98: /* TODO: SOS */
2729 case 0x9a: /* DECID -- Identify Terminal */
2730 ttywrite(vtiden
, sizeof(vtiden
) - 1);
2732 case 0x9b: /* TODO: CSI */
2733 case 0x9c: /* TODO: ST */
2735 case 0x90: /* DCS -- Device Control String */
2736 case 0x9f: /* APC -- Application Program Command */
2737 case 0x9e: /* PM -- Privacy Message */
2738 case 0x9d: /* OSC -- Operating System Command */
2739 tstrsequence(ascii
);
2742 /* only CAN, SUB, \a and C1 chars interrupt a sequence */
2743 term
.esc
&= ~(ESC_STR_END
|ESC_STR
);
2747 * returns 1 when the sequence is finished and it hasn't to read
2748 * more characters for this sequence, otherwise 0
2751 eschandle(uchar ascii
)
2755 term
.esc
|= ESC_CSI
;
2758 term
.esc
|= ESC_TEST
;
2760 case 'P': /* DCS -- Device Control String */
2761 case '_': /* APC -- Application Program Command */
2762 case '^': /* PM -- Privacy Message */
2763 case ']': /* OSC -- Operating System Command */
2764 case 'k': /* old title set compatibility */
2765 tstrsequence(ascii
);
2767 case 'n': /* LS2 -- Locking shift 2 */
2768 case 'o': /* LS3 -- Locking shift 3 */
2769 term
.charset
= 2 + (ascii
- 'n');
2771 case '(': /* GZD4 -- set primary charset G0 */
2772 case ')': /* G1D4 -- set secondary charset G1 */
2773 case '*': /* G2D4 -- set tertiary charset G2 */
2774 case '+': /* G3D4 -- set quaternary charset G3 */
2775 term
.icharset
= ascii
- '(';
2776 term
.esc
|= ESC_ALTCHARSET
;
2778 case 'D': /* IND -- Linefeed */
2779 if (term
.c
.y
== term
.bot
) {
2780 tscrollup(term
.top
, 1);
2782 tmoveto(term
.c
.x
, term
.c
.y
+1);
2785 case 'E': /* NEL -- Next line */
2786 tnewline(1); /* always go to first col */
2788 case 'H': /* HTS -- Horizontal tab stop */
2789 term
.tabs
[term
.c
.x
] = 1;
2791 case 'M': /* RI -- Reverse index */
2792 if (term
.c
.y
== term
.top
) {
2793 tscrolldown(term
.top
, 1);
2795 tmoveto(term
.c
.x
, term
.c
.y
-1);
2798 case 'Z': /* DECID -- Identify Terminal */
2799 ttywrite(vtiden
, sizeof(vtiden
) - 1);
2801 case 'c': /* RIS -- Reset to inital state */
2806 case '=': /* DECPAM -- Application keypad */
2807 term
.mode
|= MODE_APPKEYPAD
;
2809 case '>': /* DECPNM -- Normal keypad */
2810 term
.mode
&= ~MODE_APPKEYPAD
;
2812 case '7': /* DECSC -- Save Cursor */
2813 tcursor(CURSOR_SAVE
);
2815 case '8': /* DECRC -- Restore Cursor */
2816 tcursor(CURSOR_LOAD
);
2818 case '\\': /* ST -- String Terminator */
2819 if (term
.esc
& ESC_STR_END
)
2823 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2824 (uchar
) ascii
, isprint(ascii
)? ascii
:'.');
2838 len
= utf8encode(u
, c
);
2839 if ((width
= wcwidth(u
)) == -1) {
2840 memcpy(c
, "\357\277\275", 4); /* UTF_INVALID */
2844 if (IS_SET(MODE_PRINT
))
2846 control
= ISCONTROL(u
);
2849 * STR sequence must be checked before anything else
2850 * because it uses all following characters until it
2851 * receives a ESC, a SUB, a ST or any other C1 control
2854 if (term
.esc
& ESC_STR
) {
2855 if (u
== '\a' || u
== 030 || u
== 032 || u
== 033 ||
2857 term
.esc
&= ~(ESC_START
|ESC_STR
);
2858 term
.esc
|= ESC_STR_END
;
2859 } else if (strescseq
.len
+ len
< sizeof(strescseq
.buf
) - 1) {
2860 memmove(&strescseq
.buf
[strescseq
.len
], c
, len
);
2861 strescseq
.len
+= len
;
2865 * Here is a bug in terminals. If the user never sends
2866 * some code to stop the str or esc command, then st
2867 * will stop responding. But this is better than
2868 * silently failing with unknown characters. At least
2869 * then users will report back.
2871 * In the case users ever get fixed, here is the code:
2882 * Actions of control codes must be performed as soon they arrive
2883 * because they can be embedded inside a control sequence, and
2884 * they must not cause conflicts with sequences.
2889 * control codes are not shown ever
2892 } else if (term
.esc
& ESC_START
) {
2893 if (term
.esc
& ESC_CSI
) {
2894 csiescseq
.buf
[csiescseq
.len
++] = u
;
2895 if (BETWEEN(u
, 0x40, 0x7E)
2896 || csiescseq
.len
>= \
2897 sizeof(csiescseq
.buf
)-1) {
2903 } else if (term
.esc
& ESC_ALTCHARSET
) {
2905 } else if (term
.esc
& ESC_TEST
) {
2910 /* sequence already finished */
2914 * All characters which form part of a sequence are not
2919 if (sel
.ob
.x
!= -1 && BETWEEN(term
.c
.y
, sel
.ob
.y
, sel
.oe
.y
))
2922 gp
= &term
.line
[term
.c
.y
][term
.c
.x
];
2923 if (IS_SET(MODE_WRAP
) && (term
.c
.state
& CURSOR_WRAPNEXT
)) {
2924 gp
->mode
|= ATTR_WRAP
;
2926 gp
= &term
.line
[term
.c
.y
][term
.c
.x
];
2929 if (IS_SET(MODE_INSERT
) && term
.c
.x
+width
< term
.col
)
2930 memmove(gp
+width
, gp
, (term
.col
- term
.c
.x
- width
) * sizeof(Glyph
));
2932 if (term
.c
.x
+width
> term
.col
) {
2934 gp
= &term
.line
[term
.c
.y
][term
.c
.x
];
2937 tsetchar(u
, &term
.c
.attr
, term
.c
.x
, term
.c
.y
);
2940 gp
->mode
|= ATTR_WIDE
;
2941 if (term
.c
.x
+1 < term
.col
) {
2943 gp
[1].mode
= ATTR_WDUMMY
;
2946 if (term
.c
.x
+width
< term
.col
) {
2947 tmoveto(term
.c
.x
+width
, term
.c
.y
);
2949 term
.c
.state
|= CURSOR_WRAPNEXT
;
2954 tresize(int col
, int row
)
2957 int minrow
= MIN(row
, term
.row
);
2958 int mincol
= MIN(col
, term
.col
);
2962 if (col
< 1 || row
< 1) {
2964 "tresize: error resizing to %dx%d\n", col
, row
);
2969 * slide screen to keep cursor where we expect it -
2970 * tscrollup would work here, but we can optimize to
2971 * memmove because we're freeing the earlier lines
2973 for (i
= 0; i
<= term
.c
.y
- row
; i
++) {
2977 /* ensure that both src and dst are not NULL */
2979 memmove(term
.line
, term
.line
+ i
, row
* sizeof(Line
));
2980 memmove(term
.alt
, term
.alt
+ i
, row
* sizeof(Line
));
2982 for (i
+= row
; i
< term
.row
; i
++) {
2987 /* resize to new width */
2988 term
.specbuf
= xrealloc(term
.specbuf
, col
* sizeof(XftGlyphFontSpec
));
2990 /* resize to new height */
2991 term
.line
= xrealloc(term
.line
, row
* sizeof(Line
));
2992 term
.alt
= xrealloc(term
.alt
, row
* sizeof(Line
));
2993 term
.dirty
= xrealloc(term
.dirty
, row
* sizeof(*term
.dirty
));
2994 term
.tabs
= xrealloc(term
.tabs
, col
* sizeof(*term
.tabs
));
2996 /* resize each row to new width, zero-pad if needed */
2997 for (i
= 0; i
< minrow
; i
++) {
2998 term
.line
[i
] = xrealloc(term
.line
[i
], col
* sizeof(Glyph
));
2999 term
.alt
[i
] = xrealloc(term
.alt
[i
], col
* sizeof(Glyph
));
3002 /* allocate any new rows */
3003 for (/* i == minrow */; i
< row
; i
++) {
3004 term
.line
[i
] = xmalloc(col
* sizeof(Glyph
));
3005 term
.alt
[i
] = xmalloc(col
* sizeof(Glyph
));
3007 if (col
> term
.col
) {
3008 bp
= term
.tabs
+ term
.col
;
3010 memset(bp
, 0, sizeof(*term
.tabs
) * (col
- term
.col
));
3011 while (--bp
> term
.tabs
&& !*bp
)
3013 for (bp
+= tabspaces
; bp
< term
.tabs
+ col
; bp
+= tabspaces
)
3016 /* update terminal size */
3019 /* reset scrolling region */
3020 tsetscroll(0, row
-1);
3021 /* make use of the LIMIT in tmoveto */
3022 tmoveto(term
.c
.x
, term
.c
.y
);
3023 /* Clearing both screens (it makes dirty all lines) */
3025 for (i
= 0; i
< 2; i
++) {
3026 if (mincol
< col
&& 0 < minrow
) {
3027 tclearregion(mincol
, 0, col
- 1, minrow
- 1);
3029 if (0 < col
&& minrow
< row
) {
3030 tclearregion(0, minrow
, col
- 1, row
- 1);
3033 tcursor(CURSOR_LOAD
);
3039 xresize(int col
, int row
)
3041 xw
.tw
= MAX(1, col
* xw
.cw
);
3042 xw
.th
= MAX(1, row
* xw
.ch
);
3044 XFreePixmap(xw
.dpy
, xw
.buf
);
3045 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
3046 DefaultDepth(xw
.dpy
, xw
.scr
));
3047 XftDrawChange(xw
.draw
, xw
.buf
);
3048 xclear(0, 0, xw
.w
, xw
.h
);
3052 sixd_to_16bit(int x
)
3054 return x
== 0 ? 0 : 0x3737 + 0x2828 * x
;
3058 xloadcolor(int i
, const char *name
, Color
*ncolor
)
3060 XRenderColor color
= { .alpha
= 0xffff };
3063 if (BETWEEN(i
, 16, 255)) { /* 256 color */
3064 if (i
< 6*6*6+16) { /* same colors as xterm */
3065 color
.red
= sixd_to_16bit( ((i
-16)/36)%6 );
3066 color
.green
= sixd_to_16bit( ((i
-16)/6) %6 );
3067 color
.blue
= sixd_to_16bit( ((i
-16)/1) %6 );
3068 } else { /* greyscale */
3069 color
.red
= 0x0808 + 0x0a0a * (i
- (6*6*6+16));
3070 color
.green
= color
.blue
= color
.red
;
3072 return XftColorAllocValue(xw
.dpy
, xw
.vis
,
3073 xw
.cmap
, &color
, ncolor
);
3075 name
= colorname
[i
];
3077 return XftColorAllocName(xw
.dpy
, xw
.vis
, xw
.cmap
, name
, ncolor
);
3088 for (cp
= dc
.col
; cp
< &dc
.col
[LEN(dc
.col
)]; ++cp
)
3089 XftColorFree(xw
.dpy
, xw
.vis
, xw
.cmap
, cp
);
3092 for (i
= 0; i
< LEN(dc
.col
); i
++)
3093 if (!xloadcolor(i
, NULL
, &dc
.col
[i
])) {
3095 die("Could not allocate color '%s'\n", colorname
[i
]);
3097 die("Could not allocate color %d\n", i
);
3103 xsetcolorname(int x
, const char *name
)
3107 if (!BETWEEN(x
, 0, LEN(dc
.col
)))
3111 if (!xloadcolor(x
, name
, &ncolor
))
3114 XftColorFree(xw
.dpy
, xw
.vis
, xw
.cmap
, &dc
.col
[x
]);
3120 xtermclear(int col1
, int row1
, int col2
, int row2
)
3122 XftDrawRect(xw
.draw
,
3123 &dc
.col
[IS_SET(MODE_REVERSE
) ? defaultfg
: defaultbg
],
3124 borderpx
+ col1
* xw
.cw
,
3125 borderpx
+ row1
* xw
.ch
,
3126 (col2
-col1
+1) * xw
.cw
,
3127 (row2
-row1
+1) * xw
.ch
);
3131 * Absolute coordinates.
3134 xclear(int x1
, int y1
, int x2
, int y2
)
3136 XftDrawRect(xw
.draw
,
3137 &dc
.col
[IS_SET(MODE_REVERSE
)? defaultfg
: defaultbg
],
3138 x1
, y1
, x2
-x1
, y2
-y1
);
3144 XClassHint
class = {opt_class
? opt_class
: termname
, termname
};
3145 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
3146 XSizeHints
*sizeh
= NULL
;
3148 sizeh
= XAllocSizeHints();
3150 sizeh
->flags
= PSize
| PResizeInc
| PBaseSize
;
3151 sizeh
->height
= xw
.h
;
3152 sizeh
->width
= xw
.w
;
3153 sizeh
->height_inc
= xw
.ch
;
3154 sizeh
->width_inc
= xw
.cw
;
3155 sizeh
->base_height
= 2 * borderpx
;
3156 sizeh
->base_width
= 2 * borderpx
;
3158 sizeh
->flags
|= PMaxSize
| PMinSize
;
3159 sizeh
->min_width
= sizeh
->max_width
= xw
.w
;
3160 sizeh
->min_height
= sizeh
->max_height
= xw
.h
;
3162 if (xw
.gm
& (XValue
|YValue
)) {
3163 sizeh
->flags
|= USPosition
| PWinGravity
;
3166 sizeh
->win_gravity
= xgeommasktogravity(xw
.gm
);
3169 XSetWMProperties(xw
.dpy
, xw
.win
, NULL
, NULL
, NULL
, 0, sizeh
, &wm
,
3175 xgeommasktogravity(int mask
)
3177 switch (mask
& (XNegative
|YNegative
)) {
3179 return NorthWestGravity
;
3181 return NorthEastGravity
;
3183 return SouthWestGravity
;
3185 return SouthEastGravity
;
3189 xloadfont(Font
*f
, FcPattern
*pattern
)
3194 match
= FcFontMatch(NULL
, pattern
, &result
);
3198 if (!(f
->match
= XftFontOpenPattern(xw
.dpy
, match
))) {
3199 FcPatternDestroy(match
);
3204 f
->pattern
= FcPatternDuplicate(pattern
);
3206 f
->ascent
= f
->match
->ascent
;
3207 f
->descent
= f
->match
->descent
;
3209 f
->rbearing
= f
->match
->max_advance_width
;
3211 f
->height
= f
->ascent
+ f
->descent
;
3212 f
->width
= f
->lbearing
+ f
->rbearing
;
3218 xloadfonts(char *fontstr
, double fontsize
)
3224 if (fontstr
[0] == '-') {
3225 pattern
= XftXlfdParse(fontstr
, False
, False
);
3227 pattern
= FcNameParse((FcChar8
*)fontstr
);
3231 die("st: can't open font %s\n", fontstr
);
3234 FcPatternDel(pattern
, FC_PIXEL_SIZE
);
3235 FcPatternDel(pattern
, FC_SIZE
);
3236 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, (double)fontsize
);
3237 usedfontsize
= fontsize
;
3239 if (FcPatternGetDouble(pattern
, FC_PIXEL_SIZE
, 0, &fontval
) ==
3241 usedfontsize
= fontval
;
3242 } else if (FcPatternGetDouble(pattern
, FC_SIZE
, 0, &fontval
) ==
3247 * Default font size is 12, if none given. This is to
3248 * have a known usedfontsize value.
3250 FcPatternAddDouble(pattern
, FC_PIXEL_SIZE
, 12);
3253 defaultfontsize
= usedfontsize
;
3256 FcConfigSubstitute(0, pattern
, FcMatchPattern
);
3257 FcDefaultSubstitute(pattern
);
3259 if (xloadfont(&dc
.font
, pattern
))
3260 die("st: can't open font %s\n", fontstr
);
3262 if (usedfontsize
< 0) {
3263 FcPatternGetDouble(dc
.font
.match
->pattern
,
3264 FC_PIXEL_SIZE
, 0, &fontval
);
3265 usedfontsize
= fontval
;
3267 defaultfontsize
= fontval
;
3270 /* Setting character width and height. */
3271 xw
.cw
= ceilf(dc
.font
.width
* cwscale
);
3272 xw
.ch
= ceilf(dc
.font
.height
* chscale
);
3274 FcPatternDel(pattern
, FC_SLANT
);
3275 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ITALIC
);
3276 if (xloadfont(&dc
.ifont
, pattern
))
3277 die("st: can't open font %s\n", fontstr
);
3279 FcPatternDel(pattern
, FC_WEIGHT
);
3280 FcPatternAddInteger(pattern
, FC_WEIGHT
, FC_WEIGHT_BOLD
);
3281 if (xloadfont(&dc
.ibfont
, pattern
))
3282 die("st: can't open font %s\n", fontstr
);
3284 FcPatternDel(pattern
, FC_SLANT
);
3285 FcPatternAddInteger(pattern
, FC_SLANT
, FC_SLANT_ROMAN
);
3286 if (xloadfont(&dc
.bfont
, pattern
))
3287 die("st: can't open font %s\n", fontstr
);
3289 FcPatternDestroy(pattern
);
3293 xunloadfont(Font
*f
)
3295 XftFontClose(xw
.dpy
, f
->match
);
3296 FcPatternDestroy(f
->pattern
);
3298 FcFontSetDestroy(f
->set
);
3304 /* Free the loaded fonts in the font cache. */
3306 XftFontClose(xw
.dpy
, frc
[--frclen
].font
);
3308 xunloadfont(&dc
.font
);
3309 xunloadfont(&dc
.bfont
);
3310 xunloadfont(&dc
.ifont
);
3311 xunloadfont(&dc
.ibfont
);
3315 xzoom(const Arg
*arg
)
3319 larg
.f
= usedfontsize
+ arg
->f
;
3324 xzoomabs(const Arg
*arg
)
3327 xloadfonts(usedfont
, arg
->f
);
3334 xzoomreset(const Arg
*arg
)
3338 if (defaultfontsize
> 0) {
3339 larg
.f
= defaultfontsize
;
3350 pid_t thispid
= getpid();
3352 if (!(xw
.dpy
= XOpenDisplay(NULL
)))
3353 die("Can't open display\n");
3354 xw
.scr
= XDefaultScreen(xw
.dpy
);
3355 xw
.vis
= XDefaultVisual(xw
.dpy
, xw
.scr
);
3359 die("Could not init fontconfig.\n");
3361 usedfont
= (opt_font
== NULL
)? font
: opt_font
;
3362 xloadfonts(usedfont
, 0);
3365 xw
.cmap
= XDefaultColormap(xw
.dpy
, xw
.scr
);
3368 /* adjust fixed window geometry */
3369 xw
.w
= 2 * borderpx
+ term
.col
* xw
.cw
;
3370 xw
.h
= 2 * borderpx
+ term
.row
* xw
.ch
;
3371 if (xw
.gm
& XNegative
)
3372 xw
.l
+= DisplayWidth(xw
.dpy
, xw
.scr
) - xw
.w
- 2;
3373 if (xw
.gm
& YNegative
)
3374 xw
.t
+= DisplayWidth(xw
.dpy
, xw
.scr
) - xw
.h
- 2;
3377 xw
.attrs
.background_pixel
= dc
.col
[defaultbg
].pixel
;
3378 xw
.attrs
.border_pixel
= dc
.col
[defaultbg
].pixel
;
3379 xw
.attrs
.bit_gravity
= NorthWestGravity
;
3380 xw
.attrs
.event_mask
= FocusChangeMask
| KeyPressMask
3381 | ExposureMask
| VisibilityChangeMask
| StructureNotifyMask
3382 | ButtonMotionMask
| ButtonPressMask
| ButtonReleaseMask
;
3383 xw
.attrs
.colormap
= xw
.cmap
;
3385 if (!(opt_embed
&& (parent
= strtol(opt_embed
, NULL
, 0))))
3386 parent
= XRootWindow(xw
.dpy
, xw
.scr
);
3387 xw
.win
= XCreateWindow(xw
.dpy
, parent
, xw
.l
, xw
.t
,
3388 xw
.w
, xw
.h
, 0, XDefaultDepth(xw
.dpy
, xw
.scr
), InputOutput
,
3389 xw
.vis
, CWBackPixel
| CWBorderPixel
| CWBitGravity
3390 | CWEventMask
| CWColormap
, &xw
.attrs
);
3392 memset(&gcvalues
, 0, sizeof(gcvalues
));
3393 gcvalues
.graphics_exposures
= False
;
3394 dc
.gc
= XCreateGC(xw
.dpy
, parent
, GCGraphicsExposures
,
3396 xw
.buf
= XCreatePixmap(xw
.dpy
, xw
.win
, xw
.w
, xw
.h
,
3397 DefaultDepth(xw
.dpy
, xw
.scr
));
3398 XSetForeground(xw
.dpy
, dc
.gc
, dc
.col
[defaultbg
].pixel
);
3399 XFillRectangle(xw
.dpy
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
3401 /* Xft rendering context */
3402 xw
.draw
= XftDrawCreate(xw
.dpy
, xw
.buf
, xw
.vis
, xw
.cmap
);
3405 if ((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
3406 XSetLocaleModifiers("@im=local");
3407 if ((xw
.xim
= XOpenIM(xw
.dpy
, NULL
, NULL
, NULL
)) == NULL
) {
3408 XSetLocaleModifiers("@im=");
3409 if ((xw
.xim
= XOpenIM(xw
.dpy
,
3410 NULL
, NULL
, NULL
)) == NULL
) {
3411 die("XOpenIM failed. Could not open input"
3416 xw
.xic
= XCreateIC(xw
.xim
, XNInputStyle
, XIMPreeditNothing
3417 | XIMStatusNothing
, XNClientWindow
, xw
.win
,
3418 XNFocusWindow
, xw
.win
, NULL
);
3420 die("XCreateIC failed. Could not obtain input method.\n");
3422 /* white cursor, black outline */
3423 cursor
= XCreateFontCursor(xw
.dpy
, XC_xterm
);
3424 XDefineCursor(xw
.dpy
, xw
.win
, cursor
);
3425 XRecolorCursor(xw
.dpy
, cursor
,
3426 &(XColor
){.red
= 0xffff, .green
= 0xffff, .blue
= 0xffff},
3427 &(XColor
){.red
= 0x0000, .green
= 0x0000, .blue
= 0x0000});
3429 xw
.xembed
= XInternAtom(xw
.dpy
, "_XEMBED", False
);
3430 xw
.wmdeletewin
= XInternAtom(xw
.dpy
, "WM_DELETE_WINDOW", False
);
3431 xw
.netwmname
= XInternAtom(xw
.dpy
, "_NET_WM_NAME", False
);
3432 XSetWMProtocols(xw
.dpy
, xw
.win
, &xw
.wmdeletewin
, 1);
3434 xw
.netwmpid
= XInternAtom(xw
.dpy
, "_NET_WM_PID", False
);
3435 XChangeProperty(xw
.dpy
, xw
.win
, xw
.netwmpid
, XA_CARDINAL
, 32,
3436 PropModeReplace
, (uchar
*)&thispid
, 1);
3439 XMapWindow(xw
.dpy
, xw
.win
);
3441 XSync(xw
.dpy
, False
);
3445 xmakeglyphfontspecs(XftGlyphFontSpec
*specs
, const Glyph
*glyphs
, int len
, int x
, int y
)
3447 float winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
, xp
, yp
;
3448 ushort mode
, prevmode
= USHRT_MAX
;
3449 Font
*font
= &dc
.font
;
3450 int frcflags
= FRC_NORMAL
;
3451 float runewidth
= xw
.cw
;
3455 FcPattern
*fcpattern
, *fontpattern
;
3456 FcFontSet
*fcsets
[] = { NULL
};
3457 FcCharSet
*fccharset
;
3458 int i
, f
, numspecs
= 0;
3460 for (i
= 0, xp
= winx
, yp
= winy
+ font
->ascent
; i
< len
; ++i
) {
3461 /* Fetch rune and mode for current glyph. */
3463 mode
= glyphs
[i
].mode
;
3465 /* Skip dummy wide-character spacing. */
3466 if (mode
== ATTR_WDUMMY
)
3469 /* Determine font for glyph if different from previous glyph. */
3470 if (prevmode
!= mode
) {
3473 frcflags
= FRC_NORMAL
;
3474 runewidth
= xw
.cw
* ((mode
& ATTR_WIDE
) ? 2.0f
: 1.0f
);
3475 if ((mode
& ATTR_ITALIC
) && (mode
& ATTR_BOLD
)) {
3477 frcflags
= FRC_ITALICBOLD
;
3478 } else if (mode
& ATTR_ITALIC
) {
3480 frcflags
= FRC_ITALIC
;
3481 } else if (mode
& ATTR_BOLD
) {
3483 frcflags
= FRC_BOLD
;
3485 yp
= winy
+ font
->ascent
;
3488 /* Lookup character index with default font. */
3489 glyphidx
= XftCharIndex(xw
.dpy
, font
->match
, rune
);
3491 specs
[numspecs
].font
= font
->match
;
3492 specs
[numspecs
].glyph
= glyphidx
;
3493 specs
[numspecs
].x
= (short)xp
;
3494 specs
[numspecs
].y
= (short)yp
;
3500 /* Fallback on font cache, search the font cache for match. */
3501 for (f
= 0; f
< frclen
; f
++) {
3502 glyphidx
= XftCharIndex(xw
.dpy
, frc
[f
].font
, rune
);
3503 /* Everything correct. */
3504 if (glyphidx
&& frc
[f
].flags
== frcflags
)
3506 /* We got a default font for a not found glyph. */
3507 if (!glyphidx
&& frc
[f
].flags
== frcflags
3508 && frc
[f
].unicodep
== rune
) {
3513 /* Nothing was found. Use fontconfig to find matching font. */
3516 font
->set
= FcFontSort(0, font
->pattern
,
3518 fcsets
[0] = font
->set
;
3521 * Nothing was found in the cache. Now use
3522 * some dozen of Fontconfig calls to get the
3523 * font for one single character.
3525 * Xft and fontconfig are design failures.
3527 fcpattern
= FcPatternDuplicate(font
->pattern
);
3528 fccharset
= FcCharSetCreate();
3530 FcCharSetAddChar(fccharset
, rune
);
3531 FcPatternAddCharSet(fcpattern
, FC_CHARSET
,
3533 FcPatternAddBool(fcpattern
, FC_SCALABLE
, 1);
3535 FcConfigSubstitute(0, fcpattern
,
3537 FcDefaultSubstitute(fcpattern
);
3539 fontpattern
= FcFontSetMatch(0, fcsets
, 1,
3543 * Overwrite or create the new cache entry.
3545 if (frclen
>= LEN(frc
)) {
3546 frclen
= LEN(frc
) - 1;
3547 XftFontClose(xw
.dpy
, frc
[frclen
].font
);
3548 frc
[frclen
].unicodep
= 0;
3551 frc
[frclen
].font
= XftFontOpenPattern(xw
.dpy
,
3553 frc
[frclen
].flags
= frcflags
;
3554 frc
[frclen
].unicodep
= rune
;
3556 glyphidx
= XftCharIndex(xw
.dpy
, frc
[frclen
].font
, rune
);
3561 FcPatternDestroy(fcpattern
);
3562 FcCharSetDestroy(fccharset
);
3565 specs
[numspecs
].font
= frc
[f
].font
;
3566 specs
[numspecs
].glyph
= glyphidx
;
3567 specs
[numspecs
].x
= (short)xp
;
3568 specs
[numspecs
].y
= (short)(winy
+ frc
[f
].font
->ascent
);
3577 xdrawglyphfontspecs(const XftGlyphFontSpec
*specs
, Glyph base
, int len
, int x
, int y
)
3579 int charlen
= len
* ((base
.mode
& ATTR_WIDE
) ? 2 : 1);
3580 int winx
= borderpx
+ x
* xw
.cw
, winy
= borderpx
+ y
* xw
.ch
,
3581 width
= charlen
* xw
.cw
;
3582 Color
*fg
, *bg
, *temp
, revfg
, revbg
, truefg
, truebg
;
3583 XRenderColor colfg
, colbg
;
3586 /* Determine foreground and background colors based on mode. */
3587 if (base
.fg
== defaultfg
) {
3588 if (base
.mode
& ATTR_ITALIC
)
3589 base
.fg
= defaultitalic
;
3590 else if ((base
.mode
& ATTR_ITALIC
) && (base
.mode
& ATTR_BOLD
))
3591 base
.fg
= defaultitalic
;
3592 else if (base
.mode
& ATTR_UNDERLINE
)
3593 base
.fg
= defaultunderline
;
3596 if (IS_TRUECOL(base
.fg
)) {
3597 colfg
.alpha
= 0xffff;
3598 colfg
.red
= TRUERED(base
.fg
);
3599 colfg
.green
= TRUEGREEN(base
.fg
);
3600 colfg
.blue
= TRUEBLUE(base
.fg
);
3601 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &truefg
);
3604 fg
= &dc
.col
[base
.fg
];
3607 if (IS_TRUECOL(base
.bg
)) {
3608 colbg
.alpha
= 0xffff;
3609 colbg
.green
= TRUEGREEN(base
.bg
);
3610 colbg
.red
= TRUERED(base
.bg
);
3611 colbg
.blue
= TRUEBLUE(base
.bg
);
3612 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
, &truebg
);
3615 bg
= &dc
.col
[base
.bg
];
3618 /* Change basic system colors [0-7] to bright system colors [8-15] */
3619 if ((base
.mode
& ATTR_BOLD_FAINT
) == ATTR_BOLD
&& BETWEEN(base
.fg
, 0, 7))
3620 fg
= &dc
.col
[base
.fg
+ 8];
3622 if (IS_SET(MODE_REVERSE
)) {
3623 if (fg
== &dc
.col
[defaultfg
]) {
3624 fg
= &dc
.col
[defaultbg
];
3626 colfg
.red
= ~fg
->color
.red
;
3627 colfg
.green
= ~fg
->color
.green
;
3628 colfg
.blue
= ~fg
->color
.blue
;
3629 colfg
.alpha
= fg
->color
.alpha
;
3630 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
,
3635 if (bg
== &dc
.col
[defaultbg
]) {
3636 bg
= &dc
.col
[defaultfg
];
3638 colbg
.red
= ~bg
->color
.red
;
3639 colbg
.green
= ~bg
->color
.green
;
3640 colbg
.blue
= ~bg
->color
.blue
;
3641 colbg
.alpha
= bg
->color
.alpha
;
3642 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colbg
,
3648 if (base
.mode
& ATTR_REVERSE
) {
3654 if ((base
.mode
& ATTR_BOLD_FAINT
) == ATTR_FAINT
) {
3655 colfg
.red
= fg
->color
.red
/ 2;
3656 colfg
.green
= fg
->color
.green
/ 2;
3657 colfg
.blue
= fg
->color
.blue
/ 2;
3658 XftColorAllocValue(xw
.dpy
, xw
.vis
, xw
.cmap
, &colfg
, &revfg
);
3662 if (base
.mode
& ATTR_BLINK
&& term
.mode
& MODE_BLINK
)
3665 if (base
.mode
& ATTR_INVISIBLE
)
3668 /* Intelligent cleaning up of the borders. */
3670 xclear(0, (y
== 0)? 0 : winy
, borderpx
,
3671 winy
+ xw
.ch
+ ((y
>= term
.row
-1)? xw
.h
: 0));
3673 if (x
+ charlen
>= term
.col
) {
3674 xclear(winx
+ width
, (y
== 0)? 0 : winy
, xw
.w
,
3675 ((y
>= term
.row
-1)? xw
.h
: (winy
+ xw
.ch
)));
3678 xclear(winx
, 0, winx
+ width
, borderpx
);
3679 if (y
== term
.row
-1)
3680 xclear(winx
, winy
+ xw
.ch
, winx
+ width
, xw
.h
);
3682 /* Clean up the region we want to draw to. */
3683 XftDrawRect(xw
.draw
, bg
, winx
, winy
, width
, xw
.ch
);
3685 /* Set the clip region because Xft is sometimes dirty. */
3690 XftDrawSetClipRectangles(xw
.draw
, winx
, winy
, &r
, 1);
3692 /* Render the glyphs. */
3693 XftDrawGlyphFontSpec(xw
.draw
, fg
, specs
, len
);
3695 /* Render underline and strikethrough. */
3696 if (base
.mode
& ATTR_UNDERLINE
) {
3697 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ dc
.font
.ascent
+ 1,
3701 if (base
.mode
& ATTR_STRUCK
) {
3702 XftDrawRect(xw
.draw
, fg
, winx
, winy
+ 2 * dc
.font
.ascent
/ 3,
3706 /* Reset clip to none. */
3707 XftDrawSetClip(xw
.draw
, 0);
3711 xdrawglyph(Glyph g
, int x
, int y
)
3714 XftGlyphFontSpec spec
;
3715 numspecs
= xmakeglyphfontspecs(&spec
, &g
, 1, x
, y
);
3716 xdrawglyphfontspecs(&spec
, g
, numspecs
, x
, y
);
3722 static int oldx
= 0, oldy
= 0;
3724 Glyph g
= {' ', ATTR_NULL
, defaultbg
, defaultcs
};
3726 LIMIT(oldx
, 0, term
.col
-1);
3727 LIMIT(oldy
, 0, term
.row
-1);
3731 /* adjust position if in dummy */
3732 if (term
.line
[oldy
][oldx
].mode
& ATTR_WDUMMY
)
3734 if (term
.line
[term
.c
.y
][curx
].mode
& ATTR_WDUMMY
)
3737 g
.u
= term
.line
[term
.c
.y
][term
.c
.x
].u
;
3739 /* remove the old cursor */
3740 xdrawglyph(term
.line
[oldy
][oldx
], oldx
, oldy
);
3742 if (IS_SET(MODE_HIDE
))
3745 /* draw the new one */
3746 if (xw
.state
& WIN_FOCUSED
) {
3747 switch (xw
.cursor
) {
3748 case 0: /* Blinking Block */
3749 case 1: /* Blinking Block (Default) */
3750 case 2: /* Steady Block */
3751 if (IS_SET(MODE_REVERSE
)) {
3752 g
.mode
|= ATTR_REVERSE
;
3757 g
.mode
|= term
.line
[term
.c
.y
][curx
].mode
& ATTR_WIDE
;
3758 xdrawglyph(g
, term
.c
.x
, term
.c
.y
);
3760 case 3: /* Blinking Underline */
3761 case 4: /* Steady Underline */
3762 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3763 borderpx
+ curx
* xw
.cw
,
3764 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- cursorthickness
,
3765 xw
.cw
, cursorthickness
);
3767 case 5: /* Blinking bar */
3768 case 6: /* Steady bar */
3769 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3770 borderpx
+ curx
* xw
.cw
,
3771 borderpx
+ term
.c
.y
* xw
.ch
,
3772 cursorthickness
, xw
.ch
);
3776 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3777 borderpx
+ curx
* xw
.cw
,
3778 borderpx
+ term
.c
.y
* xw
.ch
,
3780 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3781 borderpx
+ curx
* xw
.cw
,
3782 borderpx
+ term
.c
.y
* xw
.ch
,
3784 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3785 borderpx
+ (curx
+ 1) * xw
.cw
- 1,
3786 borderpx
+ term
.c
.y
* xw
.ch
,
3788 XftDrawRect(xw
.draw
, &dc
.col
[defaultcs
],
3789 borderpx
+ curx
* xw
.cw
,
3790 borderpx
+ (term
.c
.y
+ 1) * xw
.ch
- 1,
3793 oldx
= curx
, oldy
= term
.c
.y
;
3802 Xutf8TextListToTextProperty(xw
.dpy
, &p
, 1, XUTF8StringStyle
,
3804 XSetWMName(xw
.dpy
, xw
.win
, &prop
);
3805 XSetTextProperty(xw
.dpy
, xw
.win
, &prop
, xw
.netwmname
);
3812 xsettitle(opt_title
? opt_title
: "st");
3825 drawregion(0, 0, term
.col
, term
.row
);
3826 XCopyArea(xw
.dpy
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.w
,
3828 XSetForeground(xw
.dpy
, dc
.gc
,
3829 dc
.col
[IS_SET(MODE_REVERSE
)?
3830 defaultfg
: defaultbg
].pixel
);
3834 drawregion(int x1
, int y1
, int x2
, int y2
)
3836 int i
, x
, y
, ox
, numspecs
;
3838 XftGlyphFontSpec
* specs
;
3839 int ena_sel
= sel
.ob
.x
!= -1 && sel
.alt
== IS_SET(MODE_ALTSCREEN
);
3841 if (!(xw
.state
& WIN_VISIBLE
))
3844 for (y
= y1
; y
< y2
; y
++) {
3848 xtermclear(0, y
, term
.col
, y
);
3851 specs
= term
.specbuf
;
3852 numspecs
= xmakeglyphfontspecs(specs
, &term
.line
[y
][x1
], x2
- x1
, x1
, y
);
3855 for (x
= x1
; x
< x2
&& i
< numspecs
; x
++) {
3856 new = term
.line
[y
][x
];
3857 if (new.mode
== ATTR_WDUMMY
)
3859 if (ena_sel
&& selected(x
, y
))
3860 new.mode
^= ATTR_REVERSE
;
3861 if (i
> 0 && ATTRCMP(base
, new)) {
3862 xdrawglyphfontspecs(specs
, base
, i
, ox
, y
);
3874 xdrawglyphfontspecs(specs
, base
, i
, ox
, y
);
3886 visibility(XEvent
*ev
)
3888 XVisibilityEvent
*e
= &ev
->xvisibility
;
3890 MODBIT(xw
.state
, e
->state
!= VisibilityFullyObscured
, WIN_VISIBLE
);
3896 xw
.state
&= ~WIN_VISIBLE
;
3900 xsetpointermotion(int set
)
3902 MODBIT(xw
.attrs
.event_mask
, set
, PointerMotionMask
);
3903 XChangeWindowAttributes(xw
.dpy
, xw
.win
, CWEventMask
, &xw
.attrs
);
3907 xseturgency(int add
)
3909 XWMHints
*h
= XGetWMHints(xw
.dpy
, xw
.win
);
3911 MODBIT(h
->flags
, add
, XUrgencyHint
);
3912 XSetWMHints(xw
.dpy
, xw
.win
, h
);
3919 XFocusChangeEvent
*e
= &ev
->xfocus
;
3921 if (e
->mode
== NotifyGrab
)
3924 if (ev
->type
== FocusIn
) {
3925 XSetICFocus(xw
.xic
);
3926 xw
.state
|= WIN_FOCUSED
;
3928 if (IS_SET(MODE_FOCUS
))
3929 ttywrite("\033[I", 3);
3931 XUnsetICFocus(xw
.xic
);
3932 xw
.state
&= ~WIN_FOCUSED
;
3933 if (IS_SET(MODE_FOCUS
))
3934 ttywrite("\033[O", 3);
3939 match(uint mask
, uint state
)
3941 return mask
== XK_ANY_MOD
|| mask
== (state
& ~ignoremod
);
3945 numlock(const Arg
*dummy
)
3951 kmap(KeySym k
, uint state
)
3956 /* Check for mapped keys out of X11 function keys. */
3957 for (i
= 0; i
< LEN(mappedkeys
); i
++) {
3958 if (mappedkeys
[i
] == k
)
3961 if (i
== LEN(mappedkeys
)) {
3962 if ((k
& 0xFFFF) < 0xFD00)
3966 for (kp
= key
; kp
< key
+ LEN(key
); kp
++) {
3970 if (!match(kp
->mask
, state
))
3973 if (IS_SET(MODE_APPKEYPAD
) ? kp
->appkey
< 0 : kp
->appkey
> 0)
3975 if (term
.numlock
&& kp
->appkey
== 2)
3978 if (IS_SET(MODE_APPCURSOR
) ? kp
->appcursor
< 0 : kp
->appcursor
> 0)
3981 if (IS_SET(MODE_CRLF
) ? kp
->crlf
< 0 : kp
->crlf
> 0)
3993 XKeyEvent
*e
= &ev
->xkey
;
3995 char buf
[32], *customkey
;
4001 if (IS_SET(MODE_KBDLOCK
))
4004 len
= XmbLookupString(xw
.xic
, e
, buf
, sizeof buf
, &ksym
, &status
);
4006 for (bp
= shortcuts
; bp
< shortcuts
+ LEN(shortcuts
); bp
++) {
4007 if (ksym
== bp
->keysym
&& match(bp
->mod
, e
->state
)) {
4008 bp
->func(&(bp
->arg
));
4013 /* 2. custom keys from config.h */
4014 if ((customkey
= kmap(ksym
, e
->state
))) {
4015 ttysend(customkey
, strlen(customkey
));
4019 /* 3. composed string from input method */
4022 if (len
== 1 && e
->state
& Mod1Mask
) {
4023 if (IS_SET(MODE_8BIT
)) {
4026 len
= utf8encode(c
, buf
);
4043 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
4045 if (e
->xclient
.message_type
== xw
.xembed
&& e
->xclient
.format
== 32) {
4046 if (e
->xclient
.data
.l
[1] == XEMBED_FOCUS_IN
) {
4047 xw
.state
|= WIN_FOCUSED
;
4049 } else if (e
->xclient
.data
.l
[1] == XEMBED_FOCUS_OUT
) {
4050 xw
.state
&= ~WIN_FOCUSED
;
4052 } else if (e
->xclient
.data
.l
[0] == xw
.wmdeletewin
) {
4053 /* Send SIGHUP to shell */
4060 cresize(int width
, int height
)
4069 col
= (xw
.w
- 2 * borderpx
) / xw
.cw
;
4070 row
= (xw
.h
- 2 * borderpx
) / xw
.ch
;
4080 if (e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
4083 cresize(e
->xconfigure
.width
, e
->xconfigure
.height
);
4090 int w
= xw
.w
, h
= xw
.h
;
4092 int xfd
= XConnectionNumber(xw
.dpy
), xev
, blinkset
= 0, dodraw
= 0;
4093 struct timespec drawtimeout
, *tv
= NULL
, now
, last
, lastblink
;
4096 /* Waiting for window mapping */
4098 XNextEvent(xw
.dpy
, &ev
);
4100 * XFilterEvent is required to be called after you using XOpenIM,
4101 * this is not unnecessary.It does not only filter the key event,
4102 * but some clientmessage for input method as well.
4104 if (XFilterEvent(&ev
, None
))
4106 if (ev
.type
== ConfigureNotify
) {
4107 w
= ev
.xconfigure
.width
;
4108 h
= ev
.xconfigure
.height
;
4110 } while (ev
.type
!= MapNotify
);
4115 clock_gettime(CLOCK_MONOTONIC
, &last
);
4118 for (xev
= actionfps
;;) {
4120 FD_SET(cmdfd
, &rfd
);
4123 if (pselect(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, tv
, NULL
) < 0) {
4126 die("select failed: %s\n", strerror(errno
));
4128 if (FD_ISSET(cmdfd
, &rfd
)) {
4131 blinkset
= tattrset(ATTR_BLINK
);
4133 MODBIT(term
.mode
, 0, MODE_BLINK
);
4137 if (FD_ISSET(xfd
, &rfd
))
4140 clock_gettime(CLOCK_MONOTONIC
, &now
);
4141 drawtimeout
.tv_sec
= 0;
4142 drawtimeout
.tv_nsec
= (1000 * 1E6
)/ xfps
;
4146 if (blinktimeout
&& TIMEDIFF(now
, lastblink
) > blinktimeout
) {
4147 tsetdirtattr(ATTR_BLINK
);
4148 term
.mode
^= MODE_BLINK
;
4152 deltatime
= TIMEDIFF(now
, last
);
4153 if (deltatime
> 1000 / (xev
? xfps
: actionfps
)) {
4159 while (XPending(xw
.dpy
)) {
4160 XNextEvent(xw
.dpy
, &ev
);
4161 if (XFilterEvent(&ev
, None
))
4163 if (handler
[ev
.type
])
4164 (handler
[ev
.type
])(&ev
);
4170 if (xev
&& !FD_ISSET(xfd
, &rfd
))
4172 if (!FD_ISSET(cmdfd
, &rfd
) && !FD_ISSET(xfd
, &rfd
)) {
4174 if (TIMEDIFF(now
, lastblink
) \
4176 drawtimeout
.tv_nsec
= 1000;
4178 drawtimeout
.tv_nsec
= (1E6
* \
4183 drawtimeout
.tv_sec
= \
4184 drawtimeout
.tv_nsec
/ 1E9
;
4185 drawtimeout
.tv_nsec
%= (long)1E9
;
4197 die("%s " VERSION
" (c) 2010-2015 st engineers\n"
4198 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
4199 " [-i] [-t title] [-w windowid] [-e command ...] [command ...]\n"
4200 " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
4201 " [-i] [-t title] [-w windowid] [-l line] [stty_args ...]\n",
4206 main(int argc
, char *argv
[])
4208 uint cols
= 80, rows
= 24;
4219 opt_class
= EARGF(usage());
4226 opt_font
= EARGF(usage());
4229 xw
.gm
= XParseGeometry(EARGF(usage()),
4230 &xw
.l
, &xw
.t
, &cols
, &rows
);
4236 opt_io
= EARGF(usage());
4239 opt_line
= EARGF(usage());
4242 opt_title
= EARGF(usage());
4245 opt_embed
= EARGF(usage());
4254 /* eat all remaining arguments */
4256 if (!opt_title
&& !opt_line
)
4257 opt_title
= basename(xstrdup(argv
[0]));
4259 setlocale(LC_CTYPE
, "");
4260 XSetLocaleModifiers("");
4261 tnew(MAX(cols
, 1), MAX(rows
, 1));