]> git.armaanb.net Git - dmenu.git/commitdiff
migrated dmenu to use 4 instead of 3 colors
authorAnselm R. Garbe <arg@10kloc.org>
Thu, 24 Aug 2006 09:47:08 +0000 (11:47 +0200)
committerAnselm R. Garbe <arg@10kloc.org>
Thu, 24 Aug 2006 09:47:08 +0000 (11:47 +0200)
config.arg.h
config.default.h
config.mk
dmenu.h
draw.c
main.c

index 066c1a41166e78948cbeea6cf062c4f01bb22ccf..5dbbb7ccf5315b4f4eb5373a16a58794f6539658 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #define FONT                   "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
-#define BGCOLOR                        "#666699"
-#define FGCOLOR                        "#eeeeee"
-#define BORDERCOLOR            "#9999CC"
+#define NORMBGCOLOR            "#666699"
+#define NORMFGCOLOR            "#eeeeee"
+#define SELBGCOLOR             "#eeeeee"
+#define SELFGCOLOR             "#666699"
index cf1baeac621e667ba9783827e7c1fe354a4071b6..6949cea0e89de0c207040d8e3c2cb275d1438db5 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #define FONT                   "fixed"
-#define BGCOLOR                        "#666699"
-#define FGCOLOR                        "#eeeeee"
-#define BORDERCOLOR            "#9999CC"
+#define NORMBGCOLOR            "#666699"
+#define NORMFGCOLOR            "#eeeeee"
+#define SELBGCOLOR             "#eeeeee"
+#define SELBFCOLOR             "#666699"
index fd06d4be9547027b117847d52960c591a6161698..889afec0e269d4cb1923b7bb837eb4731e88c32c 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dmenu version
-VERSION = 0.5
+VERSION = 0.6
 
 # Customize below to fit your system
 
diff --git a/dmenu.h b/dmenu.h
index 2a8796f23a7424f2ffcc3631bb142aa415e8b7fd..a739fa53764dcd354653eeff4099d3b3d0049545 100644 (file)
--- a/dmenu.h
+++ b/dmenu.h
@@ -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);
diff --git a/draw.c b/draw.c
index 38ae8c38d6677482acb3022ea5b4a5c786b94f0f..6802403f8742ef446848a9cde9ff79744322e329 100644 (file)
--- a/draw.c
+++ b/draw.c
@@ -24,7 +24,7 @@ textnw(const char *text, unsigned int len)
 /* extern */
 
 void
-drawtext(const char *text, Bool invert, Bool border)
+drawtext(const char *text, unsigned int colidx, Bool border)
 {
        int x, y, w, h;
        static char buf[256];
@@ -33,10 +33,11 @@ drawtext(const char *text, Bool invert, Bool border)
        XPoint points[5];
        XRectangle r = { dc.x, dc.y, dc.w, dc.h };
 
-       XSetForeground(dpy, dc.gc, invert ? dc.fg : dc.bg);
+       XSetForeground(dpy, dc.gc, dc.bg[colidx]);
        XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
 
        w = 0;
+       XSetForeground(dpy, dc.gc, dc.fg[colidx]);
        if(border) {
                points[0].x = dc.x;
                points[0].y = dc.y;
@@ -48,7 +49,6 @@ drawtext(const char *text, Bool invert, Bool border)
                points[3].y = 0;
                points[4].x = 0;
                points[4].y = -(dc.h - 1);
-               XSetForeground(dpy, dc.gc, dc.border);
                XDrawLines(dpy, dc.drawable, dc.gc, points, 5, CoordModePrevious);
        }
 
@@ -80,17 +80,12 @@ drawtext(const char *text, Bool invert, Bool border)
        if(w > dc.w)
                return; /* too long */
 
-       gcv.foreground = invert ? dc.bg : dc.fg;
-       gcv.background = invert ? dc.fg : dc.bg;
-       if(dc.font.set) {
-               XChangeGC(dpy, dc.gc, GCForeground | GCBackground, &gcv);
-               XmbDrawImageString(dpy, dc.drawable, dc.font.set, dc.gc,
-                               x, y, buf, len);
-       }
+       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 | GCBackground | GCFont, &gcv);
-               XDrawImageString(dpy, dc.drawable, dc.gc, x, y, buf, len);
+               XChangeGC(dpy, dc.gc, GCFont, &gcv);
+               XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
        }
 }
 
diff --git a/main.c b/main.c
index 840a7bc4e05af8b3b17f6c05b2ac962ce7b85db9..c3cad1d85c5909d29856fab7402965b68bf454b0 100644 (file)
--- a/main.c
+++ b/main.c
@@ -77,17 +77,17 @@ drawmenu()
        dc.y = 0;
        dc.w = mw;
        dc.h = mh;
-       drawtext(NULL, False, False);
+       drawtext(NULL, 0, False);
 
        /* print command */
        if(cmdw && item)
                dc.w = cmdw;
-       drawtext(text[0] ? text : NULL, False, False);
+       drawtext(text[0] ? text : NULL, 0, False);
        dc.x += cmdw;
 
        if(curr) {
                dc.w = SPACE;
-               drawtext((curr && curr->left) ? "<" : NULL, False, False);
+               drawtext((curr && curr->left) ? "<" : NULL, 0, False);
                dc.x += dc.w;
 
                /* determine maximum items */
@@ -95,13 +95,13 @@ drawmenu()
                        dc.w = textw(i->text);
                        if(dc.w > mw / 3)
                                dc.w = mw / 3;
-                       drawtext(i->text, sel == i, sel == i);
+                       drawtext(i->text, sel == i ? 1 : 0, sel == i);
                        dc.x += dc.w;
                }
 
                dc.x = mw - SPACE;
                dc.w = SPACE;
-               drawtext(next ? ">" : NULL, False, False);
+               drawtext(next ? ">" : NULL, 0, False);
        }
        XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0);
        XFlush(dpy);
@@ -315,9 +315,10 @@ main(int argc, char *argv[])
                usleep(1000);
 
        /* style */
-       dc.bg = getcolor(BGCOLOR);
-       dc.fg = getcolor(FGCOLOR);
-       dc.border = getcolor(BORDERCOLOR);
+       dc.bg[0] = getcolor(NORMBGCOLOR);
+       dc.fg[0] = getcolor(NORMFGCOLOR);
+       dc.bg[1] = getcolor(SELBGCOLOR);
+       dc.fg[1] = getcolor(SELFGCOLOR);
        setfont(FONT);
 
        wa.override_redirect = 1;