diff options
| author | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-06-17 17:47:59 +0100 |
|---|---|---|
| committer | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-06-17 17:47:59 +0100 |
| commit | fbc7e6ddb8617683dff6e9cba96ae4b8d33d18ef (patch) | |
| tree | 68a7a95a9294aeb7d9cd539a56c8a58386e58606 /drw.h | |
| parent | bb1b2fe60ac3cc6e8a494f6b57c806c0f24d06ea (diff) | |
remove most of bar, remove patches
Diffstat (limited to 'drw.h')
| -rw-r--r-- | drw.h | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -34,8 +34,6 @@ void drw_free(Drw *drw); /* Fnt abstraction */ 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); -unsigned int drw_fontset_getwidth_clamp(Drw *drw, const char *text, unsigned int n); void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h); /* Colorscheme abstraction */ @@ -45,14 +43,3 @@ Clr *drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount); /* Cursor abstraction */ Cur *drw_cur_create(Drw *drw, int shape); void drw_cur_free(Drw *drw, Cur *cursor); - -/* Drawing context manipulation */ -void drw_setfontset(Drw *drw, Fnt *set); -void drw_setscheme(Drw *drw, Clr *scm); - -/* Drawing functions */ -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); - -/* Map functions */ -void drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h); |
