diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-24 11:47:08 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-24 11:47:08 +0200 |
commit | e980c7ff1814b533f674eec535af6c5658b1bc62 (patch) | |
tree | 178d0389a8d9e203cac609373fe6f7bf360e4530 /dmenu.h | |
parent | 7848b53dc3c8c05bd2cf1f10d59db2310456acf7 (diff) |
migrated dmenu to use 4 instead of 3 colors
Diffstat (limited to 'dmenu.h')
-rw-r--r-- | dmenu.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -22,9 +22,8 @@ struct Fnt { struct DC { /* draw context */ int x, y, w, h; - unsigned long bg; - unsigned long fg; - unsigned long border; + unsigned long bg[2]; + unsigned long fg[2]; Drawable drawable; Fnt font; GC gc; @@ -35,7 +34,7 @@ extern Display *dpy; extern DC dc; /* draw.c */ -extern void drawtext(const char *text, Bool invert, Bool border); +extern void drawtext(const char *text, unsigned int colidx, Bool border); extern unsigned long getcolor(const char *colstr); extern void setfont(const char *fontstr); extern unsigned int textw(const char *text); |