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