2007-01-02 14:41:13 +00:00
|
|
|
/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
2006-08-04 07:35:27 +00:00
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2006-12-07 13:38:31 +00:00
|
|
|
#define FONT "-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
|
2007-01-16 10:24:51 +00:00
|
|
|
#define NORMBGCOLOR "#eeeeee"
|
|
|
|
#define NORMFGCOLOR "#222222"
|
|
|
|
#define SELBGCOLOR "#006699"
|
|
|
|
#define SELFGCOLOR "#ffffff"
|
2006-12-05 12:30:37 +00:00
|
|
|
#define SPACE 30 /* px */
|
2006-08-04 08:23:36 +00:00
|
|
|
|
2006-08-25 12:45:17 +00:00
|
|
|
/* color */
|
|
|
|
enum { ColFG, ColBG, ColLast };
|
|
|
|
|
2007-02-22 17:16:35 +00:00
|
|
|
typedef struct {
|
2006-08-04 07:35:27 +00:00
|
|
|
int x, y, w, h;
|
2006-08-25 12:45:17 +00:00
|
|
|
unsigned long norm[ColLast];
|
|
|
|
unsigned long sel[ColLast];
|
2006-08-04 07:35:27 +00:00
|
|
|
Drawable drawable;
|
|
|
|
GC gc;
|
2007-02-22 17:16:35 +00:00
|
|
|
struct {
|
|
|
|
XFontStruct *xfont;
|
|
|
|
XFontSet set;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int height;
|
|
|
|
} font;
|
|
|
|
} DC; /* draw context */
|
2006-08-04 07:35:27 +00:00
|
|
|
|
2007-02-24 13:07:40 +00:00
|
|
|
int screen;
|
|
|
|
Display *dpy;
|
|
|
|
DC dc; /* global drawing context */
|
2006-08-04 07:35:27 +00:00
|
|
|
|
2007-02-20 12:54:00 +00:00
|
|
|
/* draw.c */
|
2007-02-24 13:07:40 +00: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 12:54:00 +00:00
|
|
|
|
2006-08-04 07:35:27 +00:00
|
|
|
/* util.c */
|
2007-02-24 13:07:40 +00: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 */
|