dmenu/dmenu.h

53 lines
1.3 KiB
C
Raw Normal View History

2006-10-06 11:52:57 +02:00
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
2006-08-04 09:35:27 +02:00
* See LICENSE file for license details.
*/
#include <X11/Xlib.h>
#include <X11/Xlocale.h>
#define FONT "fixed"
#define NORMBGCOLOR "#333366"
#define NORMFGCOLOR "#cccccc"
#define SELBGCOLOR "#666699"
#define SELFGCOLOR "#eeeeee"
2006-08-04 10:23:36 +02:00
#define SPACE 30 /* px */
/* color */
enum { ColFG, ColBG, ColLast };
2006-08-04 09:35:27 +02:00
typedef struct DC DC;
typedef struct Fnt Fnt;
struct Fnt {
XFontStruct *xfont;
XFontSet set;
int ascent;
int descent;
int height;
};
2006-09-11 13:18:09 +02:00
struct DC {
2006-08-04 09:35:27 +02:00
int x, y, w, h;
unsigned long norm[ColLast];
unsigned long sel[ColLast];
2006-08-04 09:35:27 +02:00
Drawable drawable;
Fnt font;
GC gc;
2006-09-11 13:18:09 +02:00
}; /* draw context */
2006-08-04 09:35:27 +02:00
2006-08-04 10:23:36 +02:00
extern int screen;
extern Display *dpy;
2006-09-11 13:18:09 +02:00
extern DC dc; /* global drawing context */
2006-08-04 09:35:27 +02:00
/* draw.c */
2006-09-11 13:18:09 +02:00
extern void drawtext(const char *text,
unsigned long col[ColLast]); /* draws text with the defined color tuple */
2006-09-26 13:39:00 +02:00
extern unsigned long getcolor(const char *colstr); /* returns color of colstr */
2006-09-11 13:18:09 +02:00
extern void setfont(const char *fontstr); /* sets global font */
extern unsigned int textw(const char *text); /* returns width of text in px */
2006-08-04 09:35:27 +02:00
/* util.c */
2006-09-11 13:18:09 +02: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 */