2006-08-04 09:35:27 +02:00
|
|
|
/*
|
|
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* 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
|
|
|
#include <X11/Xlocale.h>
|
2006-08-04 09:35:27 +02:00
|
|
|
|
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
|
|
|
|
textnw(const char *text, unsigned int len)
|
|
|
|
{
|
|
|
|
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-08-24 11:47:08 +02:00
|
|
|
drawtext(const char *text, unsigned int colidx, Bool border)
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
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-04 09:35:27 +02:00
|
|
|
XGCValues gcv;
|
2006-08-11 11:52:34 +02:00
|
|
|
XPoint points[5];
|
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-24 11:47:08 +02:00
|
|
|
XSetForeground(dpy, dc.gc, dc.bg[colidx]);
|
2006-08-04 10:23:36 +02:00
|
|
|
XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
|
2006-08-10 11:13:21 +02:00
|
|
|
|
2006-08-04 09:35:27 +02:00
|
|
|
w = 0;
|
2006-08-24 11:47:08 +02:00
|
|
|
XSetForeground(dpy, dc.gc, dc.fg[colidx]);
|
2006-08-11 11:52:34 +02:00
|
|
|
if(border) {
|
|
|
|
points[0].x = dc.x;
|
|
|
|
points[0].y = dc.y;
|
|
|
|
points[1].x = dc.w - 1;
|
|
|
|
points[1].y = 0;
|
|
|
|
points[2].x = 0;
|
|
|
|
points[2].y = dc.h - 1;
|
|
|
|
points[3].x = -(dc.w - 1);
|
|
|
|
points[3].y = 0;
|
|
|
|
points[4].x = 0;
|
|
|
|
points[4].y = -(dc.h - 1);
|
|
|
|
XDrawLines(dpy, dc.drawable, dc.gc, points, 5, CoordModePrevious);
|
|
|
|
}
|
2006-08-10 11:13:21 +02:00
|
|
|
|
2006-08-04 09:35:27 +02:00
|
|
|
if(!text)
|
|
|
|
return;
|
|
|
|
|
2006-08-14 08:52:28 +02:00
|
|
|
olen = len = strlen(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
if(len >= sizeof(buf))
|
|
|
|
len = sizeof(buf) - 1;
|
|
|
|
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 09:35:27 +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-24 11:47:08 +02:00
|
|
|
if(dc.font.set)
|
|
|
|
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
|
2006-08-04 09:35:27 +02:00
|
|
|
else {
|
2006-08-04 10:23:36 +02:00
|
|
|
gcv.font = dc.font.xfont->fid;
|
2006-08-24 11:47:08 +02:00
|
|
|
XChangeGC(dpy, dc.gc, 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
|
|
|
|
getcolor(const char *colstr)
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
2006-08-04 10:23:36 +02:00
|
|
|
Colormap cmap = DefaultColormap(dpy, screen);
|
2006-08-04 09:35:27 +02:00
|
|
|
XColor color;
|
2006-08-04 10:23:36 +02:00
|
|
|
|
2006-08-04 09:35:27 +02:00
|
|
|
XAllocNamedColor(dpy, cmap, colstr, &color, &color);
|
|
|
|
return color.pixel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-08-04 10:23:36 +02:00
|
|
|
setfont(const char *fontstr)
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
|
|
|
char **missing, *def;
|
2006-08-04 10:23:36 +02:00
|
|
|
int i, n;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
missing = NULL;
|
|
|
|
setlocale(LC_ALL, "");
|
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-08-04 09:35:27 +02:00
|
|
|
if(missing) {
|
|
|
|
XFreeStringList(missing);
|
2006-08-04 10:23:36 +02:00
|
|
|
if(dc.font.set) {
|
|
|
|
XFreeFontSet(dpy, dc.font.set);
|
|
|
|
dc.font.set = NULL;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
dc.font.xfont = XLoadQueryFont(dpy, fontstr);
|
|
|
|
if (!dc.font.xfont)
|
|
|
|
dc.font.xfont = XLoadQueryFont(dpy, "fixed");
|
|
|
|
if (!dc.font.xfont)
|
|
|
|
eprint("error, cannot init 'fixed' font\n");
|
|
|
|
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
|
|
|
|
textw(const char *text)
|
|
|
|
{
|
|
|
|
return textnw(text, strlen(text)) + dc.font.height;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|