X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=draw.c;h=ced0dfd766501cb7365b6efadb83fd1d863ce93a;hp=f049b45b3e789b5e730cbadeba24a879306c78a5;hb=a923298d3577dca0e69fd70edbef56c7822258e3;hpb=1a25414ace62ff2cd616b8465af4bbe531b3697b diff --git a/draw.c b/draw.c index f049b45..ced0dfd 100644 --- a/draw.c +++ b/draw.c @@ -1,30 +1,10 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* See LICENSE file for copyright and license details. */ #include "dwm.h" #include /* static */ static void -drawcaret(unsigned long col[ColLast]) { - int x; - XGCValues gcv; - XPoint pt[3]; - - gcv.foreground = col[ColFG]; - XChangeGC(dpy, dc.gc, GCForeground, &gcv); - x = (dc.font.ascent + dc.font.descent) / 2; - pt[0].x = dc.x + 1; - pt[0].y = dc.y + 1 + x; - pt[1].x = 0; - pt[1].y = -x; - pt[2].x = x; - pt[2].y = 0; - XDrawLines(dpy, dc.drawable, dc.gc, pt, 3, CoordModePrevious); -} - -static void drawsquare(Bool filled, Bool empty, unsigned long col[ColLast]) { int x; XGCValues gcv; @@ -86,7 +66,7 @@ drawstatus(void) { dc.x += dc.w; } dc.w = blw; - drawtext(lt->symbol, dc.norm); + drawtext(getsymbol(), dc.norm); x = dc.x + dc.w; dc.w = textw(stext); dc.x = sw - dc.w; @@ -99,8 +79,7 @@ drawstatus(void) { dc.x = x; if(sel) { drawtext(sel->name, dc.sel); - if(sel->isversatile) - drawcaret(dc.sel); + drawsquare(sel->ismax, sel->isfloating, dc.sel); } else drawtext(NULL, dc.norm); @@ -114,7 +93,6 @@ drawtext(const char *text, unsigned long col[ColLast]) { int x, y, w, h; static char buf[256]; unsigned int len, olen; - XGCValues gcv; XRectangle r = { dc.x, dc.y, dc.w, dc.h }; XSetForeground(dpy, dc.gc, col[ColBG]); @@ -143,16 +121,11 @@ drawtext(const char *text, unsigned long col[ColLast]) { } if(w > dc.w) return; /* too long */ - gcv.foreground = col[ColFG]; - if(dc.font.set) { - XChangeGC(dpy, dc.gc, GCForeground, &gcv); + XSetForeground(dpy, dc.gc, col[ColFG]); + if(dc.font.set) XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len); - } - else { - gcv.font = dc.font.xfont->fid; - XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv); + else XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len); - } } unsigned int