aboutsummaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2017-10-10 12:17:25 -0500
committerDevin J. Pohly <djpohly@gmail.com>2018-02-25 21:53:24 -0600
commita09138afa57adb4b76dba8ca72dc7ee2642a5c8d (patch)
tree4d5db9a65174fa159b3bd7be8b67a7d445ed6f2c /st.h
parent626b0ae40c71b6c1e02ece79bf033432647381a6 (diff)
downloadst-patched-a09138afa57adb4b76dba8ca72dc7ee2642a5c8d.tar.bz2
st-patched-a09138afa57adb4b76dba8ca72dc7ee2642a5c8d.tar.xz
st-patched-a09138afa57adb4b76dba8ca72dc7ee2642a5c8d.zip
Move font/fontspec variables into x.c and XWindow
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'st.h')
-rw-r--r--st.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/st.h b/st.h
index ad94351..2199c13 100644
--- a/st.h
+++ b/st.h
@@ -92,6 +92,7 @@ typedef unsigned short ushort;
92 92
93typedef uint_least32_t Rune; 93typedef uint_least32_t Rune;
94 94
95#define Glyph Glyph_
95typedef struct { 96typedef struct {
96 Rune u; /* character code */ 97 Rune u; /* character code */
97 ushort mode; /* attribute flags */ 98 ushort mode; /* attribute flags */
@@ -100,7 +101,6 @@ typedef struct {
100} Glyph; 101} Glyph;
101 102
102typedef Glyph *Line; 103typedef Glyph *Line;
103typedef XftGlyphFontSpec GlyphFontSpec;
104 104
105typedef struct { 105typedef struct {
106 Glyph attr; /* current char attributes */ 106 Glyph attr; /* current char attributes */
@@ -116,7 +116,6 @@ typedef struct {
116 Line *line; /* screen */ 116 Line *line; /* screen */
117 Line *alt; /* alternate screen */ 117 Line *alt; /* alternate screen */
118 int *dirty; /* dirtyness of lines */ 118 int *dirty; /* dirtyness of lines */
119 GlyphFontSpec *specbuf; /* font spec buffer used for rendering */
120 TCursor c; /* cursor */ 119 TCursor c; /* cursor */
121 int top; /* top scroll limit */ 120 int top; /* top scroll limit */
122 int bot; /* bottom scroll limit */ 121 int bot; /* bottom scroll limit */
@@ -213,6 +212,7 @@ size_t utf8decode(char *, Rune *, size_t);
213size_t utf8encode(Rune, char *); 212size_t utf8encode(Rune, char *);
214 213
215void *xmalloc(size_t); 214void *xmalloc(size_t);
215void *xrealloc(void *, size_t);
216char *xstrdup(char *); 216char *xstrdup(char *);
217 217
218/* Globals */ 218/* Globals */
@@ -231,10 +231,6 @@ extern char *opt_name;
231extern char *opt_title; 231extern char *opt_title;
232extern int oldbutton; 232extern int oldbutton;
233 233
234extern char *usedfont;
235extern double usedfontsize;
236extern double defaultfontsize;
237
238/* config.h globals */ 234/* config.h globals */
239extern char font[]; 235extern char font[];
240extern int borderpx; 236extern int borderpx;