2007-05-30 12:19:06 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2006-08-04 09:35:27 +02:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2006-12-07 14:38:31 +01:00
|
|
|
#define FONT "-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
|
2007-01-16 11:24:51 +01:00
|
|
|
#define NORMBGCOLOR "#eeeeee"
|
|
|
|
#define NORMFGCOLOR "#222222"
|
|
|
|
#define SELBGCOLOR "#006699"
|
|
|
|
#define SELFGCOLOR "#ffffff"
|
2006-12-05 13:30:37 +01:00
|
|
|
#define SPACE 30 /* px */
|
2006-08-04 10:23:36 +02:00
|
|
|
|
2006-08-25 14:45:17 +02:00
|
|
|
/* color */
|
|
|
|
enum { ColFG, ColBG, ColLast };
|
|
|
|
|
2007-02-22 18:16:35 +01:00
|
|
|
typedef struct {
|
2006-08-04 09:35:27 +02:00
|
|
|
int x, y, w, h;
|
2006-08-25 14:45:17 +02:00
|
|
|
unsigned long norm[ColLast];
|
|
|
|
unsigned long sel[ColLast];
|
2006-08-04 09:35:27 +02:00
|
|
|
Drawable drawable;
|
|
|
|
GC gc;
|
2007-02-22 18:16:35 +01:00
|
|
|
struct {
|
|
|
|
XFontStruct *xfont;
|
|
|
|
XFontSet set;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int height;
|
|
|
|
} font;
|
|
|
|
} DC; /* draw context */
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2007-02-24 14:07:40 +01:00
|
|
|
int screen;
|
|
|
|
Display *dpy;
|
|
|
|
DC dc; /* global drawing context */
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2007-02-20 13:54:00 +01:00
|
|
|
/* draw.c */
|
2007-02-24 14:07:40 +01:00
|
|
|
void drawtext(const char *text, unsigned long col[ColLast]);
|
|
|
|
unsigned int textw(const char *text);
|
|
|
|
unsigned int textnw(const char *text, unsigned int len);
|
2007-02-20 13:54:00 +01:00
|
|
|
|
2006-08-04 09:35:27 +02:00
|
|
|
/* util.c */
|
2007-02-24 14:07:40 +01:00
|
|
|
void *emalloc(unsigned int size); /* allocates memory, exits on error */
|
|
|
|
void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
|
|
|
|
char *estrdup(const char *str); /* duplicates str, exits on allocation error */
|