dwm/draw.c

236 lines
4.8 KiB
C
Raw Normal View History

2006-07-10 18:35:39 +02:00
/*
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include "dwm.h"
2006-07-10 18:35:39 +02:00
#include <stdio.h>
#include <string.h>
2006-07-13 01:30:55 +02:00
#include <X11/Xlocale.h>
/* static */
static void
drawborder(void)
{
XPoint points[5];
2006-07-20 12:18:06 +02:00
XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
XSetForeground(dpy, dc.gc, dc.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-07-15 17:19:19 +02:00
static unsigned int
textnw(char *text, unsigned int len)
2006-07-14 22:33:38 +02:00
{
2006-07-15 17:19:19 +02:00
XRectangle r;
2006-07-20 12:18:06 +02:00
2006-07-15 17:19:19 +02:00
if(dc.font.set) {
XmbTextExtents(dc.font.set, text, len, NULL, &r);
return r.width;
2006-07-14 22:33:38 +02:00
}
2006-07-15 17:19:19 +02:00
return XTextWidth(dc.font.xfont, text, len);
2006-07-14 22:33:38 +02:00
}
2006-07-15 17:19:19 +02:00
static void
drawtext(const char *text, Bool invert, Bool border)
2006-07-10 18:35:39 +02:00
{
2006-07-13 01:55:54 +02:00
int x, y, w, h;
2006-07-10 18:35:39 +02:00
static char buf[256];
2006-07-20 12:18:06 +02:00
unsigned int len;
2006-07-10 18:35:39 +02:00
XGCValues gcv;
2006-07-13 09:32:22 +02:00
XRectangle r = { dc.x, dc.y, dc.w, dc.h };
2006-07-10 18:35:39 +02:00
XSetForeground(dpy, dc.gc, invert ? dc.fg : dc.bg);
2006-07-13 09:32:22 +02:00
XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
2006-07-10 18:35:39 +02:00
2006-07-12 17:50:31 +02:00
w = 0;
if(border)
2006-07-13 09:32:22 +02:00
drawborder();
2006-07-10 18:35:39 +02:00
if(!text)
2006-07-10 18:35:39 +02:00
return;
len = strlen(text);
2006-07-10 18:35:39 +02:00
if(len >= sizeof(buf))
len = sizeof(buf) - 1;
memcpy(buf, text, len);
2006-07-10 18:35:39 +02:00
buf[len] = 0;
2006-07-13 09:32:22 +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-07-10 18:35:39 +02:00
/* shorten text if necessary */
2006-07-13 11:43:05 +02:00
while(len && (w = textnw(buf, len)) > dc.w - h)
2006-07-10 18:35:39 +02:00
buf[--len] = 0;
2006-07-13 09:32:22 +02:00
if(w > dc.w)
2006-07-10 18:35:39 +02:00
return; /* too long */
gcv.foreground = invert ? dc.bg : dc.fg;
gcv.background = invert ? dc.fg : dc.bg;
2006-07-13 09:32:22 +02:00
if(dc.font.set) {
XChangeGC(dpy, dc.gc, GCForeground | GCBackground, &gcv);
XmbDrawImageString(dpy, dc.drawable, dc.font.set, dc.gc,
2006-07-10 18:35:39 +02:00
x, y, buf, len);
}
else {
2006-07-13 09:32:22 +02:00
gcv.font = dc.font.xfont->fid;
XChangeGC(dpy, dc.gc, GCForeground | GCBackground | GCFont, &gcv);
XDrawImageString(dpy, dc.drawable, dc.gc, x, y, buf, len);
2006-07-10 18:35:39 +02:00
}
}
/* extern */
2006-07-15 17:19:19 +02:00
void
drawall()
{
Client *c;
for(c = clients; c; c = getnext(c->next))
2006-07-15 17:19:19 +02:00
drawtitle(c);
drawstatus();
}
void
drawstatus()
{
int i, x;
2006-07-15 17:19:19 +02:00
Bool istile = arrange == dotile;
dc.x = dc.y = 0;
dc.w = bw;
drawtext(NULL, !istile, False);
dc.w = 0;
for(i = 0; i < TLast; i++) {
dc.x += dc.w;
dc.w = textw(tags[i]);
if(istile)
drawtext(tags[i], (i == tsel), True);
else
drawtext(tags[i], (i != tsel), True);
}
x = dc.x + dc.w;
2006-07-15 17:19:19 +02:00
dc.w = textw(stext);
dc.x = bx + bw - dc.w;
drawtext(stext, !istile, False);
if(sel && ((dc.w = dc.x - x) >= bh)) {
dc.x = x;
drawtext(sel->name, istile, True);
}
2006-07-15 17:19:19 +02:00
XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
XSync(dpy, False);
2006-07-15 17:19:19 +02:00
}
void
drawtitle(Client *c)
{
int i;
Bool istile = arrange == dotile;
if(c == sel) {
drawstatus();
XUnmapWindow(dpy, c->title);
XSetWindowBorder(dpy, c->win, dc.fg);
return;
}
XSetWindowBorder(dpy, c->win, dc.bg);
XMapWindow(dpy, c->title);
dc.x = dc.y = 0;
dc.w = 0;
for(i = 0; i < TLast; i++) {
if(c->tags[i]) {
dc.x += dc.w;
dc.w = textw(c->tags[i]);
drawtext(c->tags[i], !istile, True);
}
}
dc.x += dc.w;
dc.w = textw(c->name);
drawtext(c->name, !istile, True);
XCopyArea(dpy, dc.drawable, c->title, dc.gc, 0, 0, c->tw, c->th, 0, 0);
XSync(dpy, False);
}
2006-07-13 11:43:05 +02:00
unsigned long
2006-07-14 22:54:09 +02:00
getcolor(const char *colstr)
2006-07-10 18:35:39 +02:00
{
2006-07-13 11:43:05 +02:00
Colormap cmap = DefaultColormap(dpy, screen);
2006-07-20 12:18:06 +02:00
XColor color;
2006-07-13 11:43:05 +02:00
2006-07-10 18:35:39 +02:00
XAllocNamedColor(dpy, cmap, colstr, &color, &color);
return color.pixel;
}
void
2006-07-14 22:54:09 +02:00
setfont(const char *fontstr)
2006-07-10 18:35:39 +02:00
{
char **missing, *def;
2006-07-13 01:55:54 +02:00
int i, n;
2006-07-10 18:35:39 +02:00
2006-07-11 11:27:56 +02:00
missing = NULL;
2006-07-10 18:35:39 +02:00
setlocale(LC_ALL, "");
2006-07-13 11:43:05 +02:00
if(dc.font.set)
XFreeFontSet(dpy, dc.font.set);
dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
2006-07-10 18:35:39 +02:00
if(missing) {
while(n--)
fprintf(stderr, "missing fontset: %s\n", missing[n]);
XFreeStringList(missing);
2006-07-13 11:43:05 +02:00
if(dc.font.set) {
XFreeFontSet(dpy, dc.font.set);
dc.font.set = NULL;
2006-07-10 18:35:39 +02:00
}
}
2006-07-13 11:43:05 +02:00
if(dc.font.set) {
2006-07-10 18:35:39 +02:00
XFontSetExtents *font_extents;
XFontStruct **xfonts;
char **font_names;
2006-07-13 11:43:05 +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-07-10 18:35:39 +02:00
xfonts++;
}
}
else {
2006-07-13 11:43:05 +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)
2006-07-15 16:30:50 +02:00
eprint("error, cannot init 'fixed' font\n");
2006-07-13 11:43:05 +02:00
dc.font.ascent = dc.font.xfont->ascent;
dc.font.descent = dc.font.xfont->descent;
2006-07-10 18:35:39 +02:00
}
2006-07-13 11:43:05 +02:00
dc.font.height = dc.font.ascent + dc.font.descent;
2006-07-10 18:35:39 +02:00
}
unsigned int
textw(char *text)
{
return textnw(text, strlen(text)) + dc.font.height;
}