Xinqi Bao's Git
2 * (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
3 * See LICENSE file for license details.
8 #include <X11/Xlocale.h>
13 textnw(const char *text
, unsigned int len
)
18 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
21 return XTextWidth(dc
.font
.xfont
, text
, len
);
27 drawtext(const char *text
, unsigned long col
[ColLast
])
31 unsigned int len
, olen
;
33 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
35 XSetForeground(dpy
, dc
.gc
, col
[ColBG
]);
36 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
42 olen
= len
= strlen(text
);
43 if(len
>= sizeof(buf
))
44 len
= sizeof(buf
) - 1;
45 memcpy(buf
, text
, len
);
48 h
= dc
.font
.ascent
+ dc
.font
.descent
;
49 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
52 /* shorten text if necessary */
53 while(len
&& (w
= textnw(buf
, len
)) > dc
.w
- h
)
65 return; /* too long */
67 gcv
.foreground
= col
[ColFG
];
69 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
70 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
,
74 gcv
.font
= dc
.font
.xfont
->fid
;
75 XChangeGC(dpy
, dc
.gc
, GCForeground
| GCFont
, &gcv
);
76 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
81 getcolor(const char *colstr
)
83 Colormap cmap
= DefaultColormap(dpy
, screen
);
86 XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
);
91 setfont(const char *fontstr
)
97 setlocale(LC_ALL
, "");
99 XFreeFontSet(dpy
, dc
.font
.set
);
100 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
102 XFreeStringList(missing
);
104 XFreeFontSet(dpy
, dc
.font
.set
);
109 XFontSetExtents
*font_extents
;
110 XFontStruct
**xfonts
;
113 dc
.font
.ascent
= dc
.font
.descent
= 0;
114 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
115 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
116 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
117 if(dc
.font
.ascent
< (*xfonts
)->ascent
)
118 dc
.font
.ascent
= (*xfonts
)->ascent
;
119 if(dc
.font
.descent
< (*xfonts
)->descent
)
120 dc
.font
.descent
= (*xfonts
)->descent
;
126 XFreeFont(dpy
, dc
.font
.xfont
);
127 dc
.font
.xfont
= NULL
;
128 dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
);
130 dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed");
132 eprint("error, cannot init 'fixed' font\n");
133 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
134 dc
.font
.descent
= dc
.font
.xfont
->descent
;
136 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
140 textw(const char *text
)
142 return textnw(text
, strlen(text
)) + dc
.font
.height
;