comparison dwm.h @ 352:5a8bdc3b37cb

back to 3 colors
author Anselm R. Garbe <arg@10kloc.org>
date Fri, 25 Aug 2006 07:54:49 +0200
parents b10852dbbffe
children 8a06efe5b563
comparison
equal deleted inserted replaced
351:d822b5fbe11e 352:5a8bdc3b37cb
34 XFontStruct *xfont; 34 XFontStruct *xfont;
35 } Fnt; 35 } Fnt;
36 36
37 typedef struct { /* draw context */ 37 typedef struct { /* draw context */
38 int x, y, w, h; 38 int x, y, w, h;
39 unsigned long bg[2]; 39 unsigned long bg;
40 unsigned long fg[2]; 40 unsigned long fg;
41 unsigned long border;
41 Drawable drawable; 42 Drawable drawable;
42 Fnt font; 43 Fnt font;
43 GC gc; 44 GC gc;
44 } DC; 45 } DC;
45 46