aboutsummaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-12-22 16:08:48 -0800
committerMike Crute <mike@crute.us>2023-04-25 20:45:27 -0700
commit0ddcd0455171f2c52ae68d92bbddecb834350522 (patch)
treeb6c046074cccfbc5fbc5328d1a284d4021c767fc /st.h
parentba77c544805651604b722f2dafca867843868dd1 (diff)
downloadst-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.tar.bz2
st-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.tar.xz
st-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.zip
Apply st-boxdraw_v2-0.8.3
Diffstat (limited to 'st.h')
-rw-r--r--st.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/st.h b/st.h
index fd3b0d8..808f5f7 100644
--- a/st.h
+++ b/st.h
@@ -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
@@ -111,6 +112,14 @@ void *xmalloc(size_t);
111void *xrealloc(void *, size_t); 112void *xrealloc(void *, size_t);
112char *xstrdup(const char *); 113char *xstrdup(const char *);
113 114
115int isboxdraw(Rune);
116ushort boxdrawindex(const Glyph *);
117#ifdef XFT_VERSION
118/* only exposed to x.c, otherwise we'll need Xft.h for the types */
119void boxdraw_xinit(Display *, Colormap, XftDraw *, Visual *);
120void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int);
121#endif
122
114/* config.h globals */ 123/* config.h globals */
115extern char *utmp; 124extern char *utmp;
116extern char *scroll; 125extern char *scroll;
@@ -124,3 +133,4 @@ extern unsigned int tabspaces;
124extern unsigned int defaultfg; 133extern unsigned int defaultfg;
125extern unsigned int defaultbg; 134extern unsigned int defaultbg;
126extern unsigned int defaultcs; 135extern unsigned int defaultcs;
136extern const int boxdraw, boxdraw_bold, boxdraw_braille;