2006-10-06 11:52:57 +02:00
|
|
|
/* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
2006-08-04 09:35:27 +02:00
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
2006-08-04 10:23:36 +02:00
|
|
|
#include "dmenu.h"
|
2006-08-04 09:35:27 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
/* static */
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
static unsigned int
|
2006-09-12 10:59:00 +02:00
|
|
|
textnw(const char *text, unsigned int len) {
|
2006-08-04 10:23:36 +02:00
|
|
|
XRectangle r;
|
|
|
|
|
|
|
|
if(dc.font.set) {
|
|
|
|
XmbTextExtents(dc.font.set, text, len, NULL, &r);
|
|
|
|
return r.width;
|
|
|
|
}
|
|
|
|
return XTextWidth(dc.font.xfont, text, len);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
/* extern */
|
|
|
|
|
2006-08-04 09:35:27 +02:00
|
|
|
void
|
2006-09-12 10:59:00 +02:00
|
|
|
drawtext(const char *text, unsigned long col[ColLast]) {
|
2006-08-04 10:23:36 +02:00
|
|
|
int x, y, w, h;
|
2006-08-04 09:35:27 +02:00
|
|
|
static char buf[256];
|
2006-08-14 08:52:28 +02:00
|
|
|
unsigned int len, olen;
|
2006-08-25 07:54:20 +02:00
|
|
|
XGCValues gcv;
|
2006-08-04 10:23:36 +02:00
|
|
|
XRectangle r = { dc.x, dc.y, dc.w, dc.h };
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2006-08-25 14:45:17 +02:00
|
|
|
XSetForeground(dpy, dc.gc, col[ColBG]);
|
2006-08-04 10:23:36 +02:00
|
|
|
XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
|
2006-08-04 09:35:27 +02:00
|
|
|
if(!text)
|
|
|
|
return;
|
2006-08-25 14:45:17 +02:00
|
|
|
w = 0;
|
2006-08-14 08:52:28 +02:00
|
|
|
olen = len = strlen(text);
|
2006-11-26 15:49:33 +01:00
|
|
|
if(len >= sizeof buf)
|
|
|
|
len = sizeof buf - 1;
|
2006-08-04 09:35:27 +02:00
|
|
|
memcpy(buf, text, len);
|
|
|
|
buf[len] = 0;
|
2006-08-04 10:23:36 +02:00
|
|
|
h = dc.font.ascent + dc.font.descent;
|
|
|
|
y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
|
|
|
|
x = dc.x + (h / 2);
|
2006-08-04 09:35:27 +02:00
|
|
|
/* shorten text if necessary */
|
2006-08-04 10:23:36 +02:00
|
|
|
while(len && (w = textnw(buf, len)) > dc.w - h)
|
2006-08-04 09:35:27 +02:00
|
|
|
buf[--len] = 0;
|
2006-08-14 08:52:28 +02:00
|
|
|
if(len < olen) {
|
2006-08-14 10:56:57 +02:00
|
|
|
if(len > 1)
|
|
|
|
buf[len - 1] = '.';
|
|
|
|
if(len > 2)
|
|
|
|
buf[len - 2] = '.';
|
2006-08-14 08:52:28 +02:00
|
|
|
if(len > 3)
|
2006-08-14 10:56:57 +02:00
|
|
|
buf[len - 3] = '.';
|
2006-08-14 08:52:28 +02:00
|
|
|
}
|
2006-08-04 10:23:36 +02:00
|
|
|
if(w > dc.w)
|
2006-08-04 09:35:27 +02:00
|
|
|
return; /* too long */
|
2006-08-25 14:45:17 +02:00
|
|
|
gcv.foreground = col[ColFG];
|
2006-08-25 07:54:20 +02:00
|
|
|
if(dc.font.set) {
|
2006-08-25 14:45:17 +02:00
|
|
|
XChangeGC(dpy, dc.gc, GCForeground, &gcv);
|
|
|
|
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc,
|
2006-08-25 07:54:20 +02:00
|
|
|
x, y, buf, len);
|
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
else {
|
2006-08-25 07:54:20 +02:00
|
|
|
gcv.font = dc.font.xfont->fid;
|
2006-08-25 14:45:17 +02:00
|
|
|
XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv);
|
|
|
|
XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
unsigned long
|
2006-09-26 13:39:00 +02:00
|
|
|
getcolor(const char *colstr) {
|
2006-08-04 10:23:36 +02:00
|
|
|
Colormap cmap = DefaultColormap(dpy, screen);
|
2006-09-26 13:45:41 +02:00
|
|
|
XColor color;
|
2006-08-04 10:23:36 +02:00
|
|
|
|
2006-09-26 13:45:41 +02:00
|
|
|
if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
|
|
|
|
eprint("error, cannot allocate color '%s'\n", colstr);
|
2006-08-04 09:35:27 +02:00
|
|
|
return color.pixel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-12 10:59:00 +02:00
|
|
|
setfont(const char *fontstr) {
|
2006-12-07 14:38:31 +01:00
|
|
|
char *def, **missing;
|
2006-08-04 10:23:36 +02:00
|
|
|
int i, n;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
missing = NULL;
|
2006-08-04 10:23:36 +02:00
|
|
|
if(dc.font.set)
|
|
|
|
XFreeFontSet(dpy, dc.font.set);
|
|
|
|
dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
|
2006-12-05 10:31:20 +01:00
|
|
|
if(missing)
|
2006-08-04 09:35:27 +02:00
|
|
|
XFreeStringList(missing);
|
2006-08-04 10:23:36 +02:00
|
|
|
if(dc.font.set) {
|
2006-08-04 09:35:27 +02:00
|
|
|
XFontSetExtents *font_extents;
|
|
|
|
XFontStruct **xfonts;
|
|
|
|
char **font_names;
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.font.ascent = dc.font.descent = 0;
|
|
|
|
font_extents = XExtentsOfFontSet(dc.font.set);
|
|
|
|
n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
|
|
|
|
for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
|
|
|
|
if(dc.font.ascent < (*xfonts)->ascent)
|
|
|
|
dc.font.ascent = (*xfonts)->ascent;
|
|
|
|
if(dc.font.descent < (*xfonts)->descent)
|
|
|
|
dc.font.descent = (*xfonts)->descent;
|
2006-08-04 09:35:27 +02:00
|
|
|
xfonts++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2006-08-04 10:23:36 +02:00
|
|
|
if(dc.font.xfont)
|
|
|
|
XFreeFont(dpy, dc.font.xfont);
|
|
|
|
dc.font.xfont = NULL;
|
2006-12-08 10:41:16 +01:00
|
|
|
if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
|
2006-12-08 11:12:11 +01:00
|
|
|
eprint("error, cannot load font: '%s'\n", fontstr);
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.font.ascent = dc.font.xfont->ascent;
|
|
|
|
dc.font.descent = dc.font.xfont->descent;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.font.height = dc.font.ascent + dc.font.descent;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
2006-09-12 10:59:00 +02:00
|
|
|
textw(const char *text) {
|
2006-08-04 10:23:36 +02:00
|
|
|
return textnw(text, strlen(text)) + dc.font.height;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|