diff options
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -33,6 +33,7 @@ enum glyph_attribute { | |||
33 | ATTR_WRAP = 1 << 8, | 33 | ATTR_WRAP = 1 << 8, |
34 | ATTR_WIDE = 1 << 9, | 34 | ATTR_WIDE = 1 << 9, |
35 | ATTR_WDUMMY = 1 << 10, | 35 | ATTR_WDUMMY = 1 << 10, |
36 | ATTR_BOXDRAW = 1 << 11, | ||
36 | ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT, | 37 | ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT, |
37 | }; | 38 | }; |
38 | 39 | ||
@@ -114,6 +115,14 @@ void *xmalloc(size_t); | |||
114 | void *xrealloc(void *, size_t); | 115 | void *xrealloc(void *, size_t); |
115 | char *xstrdup(char *); | 116 | char *xstrdup(char *); |
116 | 117 | ||
118 | int isboxdraw(Rune); | ||
119 | ushort boxdrawindex(const Glyph *); | ||
120 | #ifdef XFT_VERSION | ||
121 | /* only exposed to x.c, otherwise we'll need Xft.h for the types */ | ||
122 | void boxdraw_xinit(Display *, Colormap, XftDraw *, Visual *); | ||
123 | void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int); | ||
124 | #endif | ||
125 | |||
117 | /* config.h globals */ | 126 | /* config.h globals */ |
118 | extern char *utmp; | 127 | extern char *utmp; |
119 | extern char *stty_args; | 128 | extern char *stty_args; |
@@ -124,3 +133,4 @@ extern char *termname; | |||
124 | extern unsigned int tabspaces; | 133 | extern unsigned int tabspaces; |
125 | extern unsigned int defaultfg; | 134 | extern unsigned int defaultfg; |
126 | extern unsigned int defaultbg; | 135 | extern unsigned int defaultbg; |
136 | extern const int boxdraw, boxdraw_bold, boxdraw_braille; | ||