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
|
|
|
|
2006-08-25 08:45:17 -04:00
|
|
|
/* color */
|
|
|
|
enum { ColFG, ColBG, ColLast };
|
|
|
|
|
2007-02-22 12:16:35 -05:00
|
|
|
typedef struct {
|
2006-08-04 03:35:27 -04:00
|
|
|
int x, y, w, h;
|
2006-08-25 08:45:17 -04:00
|
|
|
unsigned long norm[ColLast];
|
|
|
|
unsigned long sel[ColLast];
|
2006-08-04 03:35:27 -04:00
|
|
|
Drawable drawable;
|
|
|
|
GC gc;
|
2007-02-22 12:16:35 -05:00
|
|
|
struct {
|
|
|
|
XFontStruct *xfont;
|
|
|
|
XFontSet set;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int height;
|
|
|
|
} font;
|
|
|
|
} DC; /* 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
|
|
|
|
2007-02-20 07:54:00 -05:00
|
|
|
/* draw.c */
|
|
|
|
extern void drawtext(const char *text, unsigned long col[ColLast]);
|
|
|
|
extern unsigned int textw(const char *text);
|
|
|
|
extern unsigned int textnw(const char *text, unsigned int len);
|
|
|
|
|
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 */
|