summaryrefslogtreecommitdiff
path: root/drw.h
diff options
context:
space:
mode:
authorJulian T <julian@T410.mynet>2018-09-05 21:26:17 +0200
committerJulian T <julian@T410.mynet>2018-09-05 21:26:17 +0200
commitc65cccf6c83150736d4ad7edfa15a0fc6994ff14 (patch)
tree091f73717f14c4b6c4a780029242b89a0abd9b00 /drw.h
Added source
Diffstat (limited to 'drw.h')
-rw-r--r--drw.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/drw.h b/drw.h
new file mode 100644
index 0000000..e3b8515
--- /dev/null
+++ b/drw.h
@@ -0,0 +1,74 @@
+/* See LICENSE file for copyright and license details. */
+#define DRW_FONT_CACHE_SIZE 32
+
+typedef struct {
+ unsigned long pix;
+ XftColor rgb;
+} Clr;
+
+typedef struct {
+ Cursor cursor;
+} Cur;
+
+typedef struct {
+ Display *dpy;
+ int ascent;
+ int descent;
+ unsigned int h;
+ XftFont *xfont;
+ FcPattern *pattern;
+} Fnt;
+
+typedef struct {
+ Clr *fg;
+ Clr *bg;
+ Clr *border;
+} ClrScheme;
+
+typedef struct {
+ unsigned int w, h;
+ Display *dpy;
+ int screen;
+ Window root;
+ Drawable drawable;
+ GC gc;
+ ClrScheme *scheme;
+ size_t fontcount;
+ Fnt *fonts[DRW_FONT_CACHE_SIZE];
+} Drw;
+
+typedef struct {
+ unsigned int w;
+ unsigned int h;
+} Extnts;
+
+/* Drawable abstraction */
+Drw *drw_create(Display *, int, Window, unsigned int, unsigned int);
+void drw_resize(Drw *, unsigned int, unsigned int);
+void drw_free(Drw *);
+
+/* Fnt abstraction */
+Fnt *drw_font_create(Drw *, const char *);
+void drw_load_fonts(Drw *, const char *[], size_t);
+void drw_font_free(Fnt *);
+void drw_font_getexts(Fnt *, const char *, unsigned int, Extnts *);
+unsigned int drw_font_getexts_width(Fnt *, const char *, unsigned int);
+
+/* Colour abstraction */
+Clr *drw_clr_create(Drw *, const char *);
+void drw_clr_free(Clr *);
+
+/* Cursor abstraction */
+Cur *drw_cur_create(Drw *, int);
+void drw_cur_free(Drw *, Cur *);
+
+/* Drawing context manipulation */
+void drw_setfont(Drw *, Fnt *);
+void drw_setscheme(Drw *, ClrScheme *);
+
+/* Drawing functions */
+void drw_rect(Drw *, int, int, unsigned int, unsigned int, int, int, int);
+int drw_text(Drw *, int, int, unsigned int, unsigned int, const char *, int);
+
+/* Map functions */
+void drw_map(Drw *, Window, int, int, unsigned int, unsigned int);