diff options
| author | 2006-08-24 11:47:08 +0200 | |
|---|---|---|
| committer | 2006-08-24 11:47:08 +0200 | |
| commit | e980c7ff1814b533f674eec535af6c5658b1bc62 (patch) | |
| tree | 178d0389a8d9e203cac609373fe6f7bf360e4530 /dmenu.h | |
| parent | Added tag 0.5 for changeset 4a0ecd881c4fc15de4a0bebd79308b064be020ef (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); |
