2013-04-17 21:21:47 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
2013-06-16 15:20:29 +02:00
|
|
|
typedef struct {
|
|
|
|
Cursor cursor;
|
|
|
|
} Cur;
|
|
|
|
|
2016-05-22 22:33:56 +02:00
|
|
|
typedef struct Fnt {
|
2015-03-06 05:26:11 +01:00
|
|
|
Display *dpy;
|
2013-04-17 21:21:47 +02:00
|
|
|
unsigned int h;
|
2015-03-06 05:26:11 +01:00
|
|
|
XftFont *xfont;
|
|
|
|
FcPattern *pattern;
|
2016-05-22 22:33:56 +02:00
|
|
|
struct Fnt *next;
|
2013-04-17 21:21:47 +02:00
|
|
|
} Fnt;
|
|
|
|
|
2018-03-14 17:44:53 +01:00
|
|
|
enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
|
2017-11-03 21:20:48 +01:00
|
|
|
typedef XftColor Clr;
|
2013-06-16 15:20:29 +02:00
|
|
|
|
2013-04-17 21:21:47 +02:00
|
|
|
typedef struct {
|
|
|
|
unsigned int w, h;
|
|
|
|
Display *dpy;
|
|
|
|
int screen;
|
2013-06-16 15:20:29 +02:00
|
|
|
Window root;
|
2020-10-28 14:31:09 +01:00
|
|
|
Visual *visual;
|
|
|
|
unsigned int depth;
|
|
|
|
Colormap cmap;
|
2013-06-16 15:20:29 +02:00
|
|
|
Drawable drawable;
|
2013-04-17 21:21:47 +02:00
|
|
|
GC gc;
|
2017-11-03 21:20:48 +01:00
|
|
|
Clr *scheme;
|
2016-05-22 22:33:56 +02:00
|
|
|
Fnt *fonts;
|
2013-04-17 21:21:47 +02:00
|
|
|
} Drw;
|
|
|
|
|
|
|
|
/* Drawable abstraction */
|
2020-10-28 14:31:09 +01:00
|
|
|
Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h, Visual *visual, unsigned int depth, Colormap cmap);
|
2016-05-22 22:33:56 +02:00
|
|
|
void drw_resize(Drw *drw, unsigned int w, unsigned int h);
|
|
|
|
void drw_free(Drw *drw);
|
2013-04-17 21:21:47 +02:00
|
|
|
|
|
|
|
/* Fnt abstraction */
|
2016-05-22 22:33:56 +02:00
|
|
|
Fnt *drw_fontset_create(Drw* drw, const char *fonts[], size_t fontcount);
|
|
|
|
void drw_fontset_free(Fnt* set);
|
|
|
|
unsigned int drw_fontset_getwidth(Drw *drw, const char *text);
|
|
|
|
void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h);
|
2013-04-17 21:21:47 +02:00
|
|
|
|
2016-05-22 22:33:56 +02:00
|
|
|
/* Colorscheme abstraction */
|
2020-10-28 14:31:09 +01:00
|
|
|
void drw_clr_create(Drw *drw, Clr *dest, const char *clrname, unsigned int alpha);
|
|
|
|
Clr *drw_scm_create(Drw *drw, const char *clrnames[], const unsigned int alphas[], size_t clrcount);
|
2013-06-16 15:20:29 +02:00
|
|
|
|
|
|
|
/* Cursor abstraction */
|
2016-05-22 22:33:56 +02:00
|
|
|
Cur *drw_cur_create(Drw *drw, int shape);
|
|
|
|
void drw_cur_free(Drw *drw, Cur *cursor);
|
2013-04-17 21:21:47 +02:00
|
|
|
|
|
|
|
/* Drawing context manipulation */
|
2016-05-22 22:33:56 +02:00
|
|
|
void drw_setfontset(Drw *drw, Fnt *set);
|
2017-11-03 21:20:48 +01:00
|
|
|
void drw_setscheme(Drw *drw, Clr *scm);
|
2013-04-17 21:21:47 +02:00
|
|
|
|
|
|
|
/* Drawing functions */
|
2016-05-22 22:33:56 +02:00
|
|
|
void drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert);
|
|
|
|
int drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lpad, const char *text, int invert);
|
2013-04-17 21:21:47 +02:00
|
|
|
|
|
|
|
/* Map functions */
|
2016-05-22 22:33:56 +02:00
|
|
|
void drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h);
|