dmenu/dmenu.h

45 lines
1 KiB
C
Raw Normal View History

2007-01-02 09:41:13 -05:00
/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
2006-08-04 03:35:27 -04:00
* See LICENSE file for license details.
*/
#include <X11/Xlib.h>
2006-12-07 08:38:31 -05:00
#define FONT "-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
2007-01-16 05:24:51 -05:00
#define NORMBGCOLOR "#eeeeee"
#define NORMFGCOLOR "#222222"
#define SELBGCOLOR "#006699"
#define SELFGCOLOR "#ffffff"
2006-12-05 07:30:37 -05:00
#define SPACE 30 /* px */
2006-08-04 04:23:36 -04:00
/* color */
enum { ColFG, ColBG, ColLast };
2006-08-04 03:35:27 -04:00
typedef struct DC DC;
typedef struct Fnt Fnt;
struct Fnt {
XFontStruct *xfont;
XFontSet set;
int ascent;
int descent;
int height;
};
2006-09-11 07:18:09 -04:00
struct DC {
2006-08-04 03:35:27 -04:00
int x, y, w, h;
unsigned long norm[ColLast];
unsigned long sel[ColLast];
2006-08-04 03:35:27 -04:00
Drawable drawable;
Fnt font;
GC gc;
2006-09-11 07:18:09 -04:00
}; /* draw context */
2006-08-04 03:35:27 -04:00
2006-08-04 04:23:36 -04:00
extern int screen;
extern Display *dpy;
2006-09-11 07:18:09 -04:00
extern DC dc; /* global drawing context */
2006-08-04 03:35:27 -04:00
/* util.c */
2006-09-11 07:18:09 -04:00
extern void *emalloc(unsigned int size); /* allocates memory, exits on error */
extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
extern char *estrdup(const char *str); /* duplicates str, exits on allocation error */