dotfiles-mirror/dwm/drw.h

107 lines
3 KiB
C
Raw Normal View History

2025-07-10 08:58:07 +03:30
/* See LICENSE file for copyright and license details. */
2026-02-05 03:05:24 +03:30
#if BAR_PANGO_PATCH
#include <pango/pango.h>
#include <pango/pangoxft.h>
#endif // BAR_PANGO_PATCH
2025-07-29 04:42:29 +03:30
2025-07-10 08:58:07 +03:30
typedef struct {
Cursor cursor;
} Cur;
typedef struct Fnt {
Display *dpy;
unsigned int h;
2026-02-05 03:05:24 +03:30
#if BAR_PANGO_PATCH
PangoLayout *layout;
#else
2025-07-10 08:58:07 +03:30
XftFont *xfont;
FcPattern *pattern;
struct Fnt *next;
2026-02-05 03:05:24 +03:30
#endif // BAR_PANGO_PATCH
2025-07-10 08:58:07 +03:30
} Fnt;
2025-07-29 04:42:29 +03:30
enum { ColFg, ColBg, ColBorder, ColFloat, ColCount }; /* Clr scheme index */
2025-07-10 08:58:07 +03:30
typedef XftColor Clr;
typedef struct {
unsigned int w, h;
Display *dpy;
int screen;
Window root;
2026-02-05 03:05:24 +03:30
#if BAR_ALPHA_PATCH
2025-07-29 04:42:29 +03:30
Visual *visual;
unsigned int depth;
Colormap cmap;
2026-02-05 03:05:24 +03:30
#endif // BAR_ALPHA_PATCH
2025-07-10 08:58:07 +03:30
Drawable drawable;
2026-02-05 03:05:24 +03:30
#if BAR_WINICON_PATCH
Picture picture;
#endif // BAR_WINICON_PATCH
2025-07-10 08:58:07 +03:30
GC gc;
Clr *scheme;
Fnt *fonts;
} Drw;
/* Drawable abstraction */
2026-02-05 03:05:24 +03:30
#if BAR_ALPHA_PATCH
2025-07-29 04:42:29 +03:30
Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h, Visual *visual, unsigned int depth, Colormap cmap);
2026-02-05 03:05:24 +03:30
#else
Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h);
#endif // BAR_ALPHA_PATCH
2025-07-10 08:58:07 +03:30
void drw_resize(Drw *drw, unsigned int w, unsigned int h);
void drw_free(Drw *drw);
/* Fnt abstraction */
2026-02-05 03:05:24 +03:30
#if BAR_PANGO_PATCH
Fnt *drw_font_create(Drw* drw, const char font[]);
void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h, Bool markup);
#else
2025-07-10 08:58:07 +03:30
Fnt *drw_fontset_create(Drw* drw, const char *fonts[], size_t fontcount);
void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h);
2026-02-05 03:05:24 +03:30
#endif // BAR_PANGO_PATCH
2025-07-29 04:42:29 +03:30
void drw_fontset_free(Fnt* set);
unsigned int drw_fontset_getwidth(Drw *drw, const char *text, Bool markup);
2025-07-10 08:58:07 +03:30
/* Colorscheme abstraction */
2025-07-29 04:42:29 +03:30
void drw_clr_create(
Drw *drw,
Clr *dest,
const char *clrname
2026-02-05 03:05:24 +03:30
#if BAR_ALPHA_PATCH
2025-07-29 04:42:29 +03:30
, unsigned int alpha
2026-02-05 03:05:24 +03:30
#endif // BAR_ALPHA_PATCH
2025-07-29 04:42:29 +03:30
);
Clr *drw_scm_create(
Drw *drw,
char *clrnames[],
2026-02-05 03:05:24 +03:30
#if BAR_ALPHA_PATCH
2025-07-29 04:42:29 +03:30
const unsigned int alphas[],
2026-02-05 03:05:24 +03:30
#endif // BAR_ALPHA_PATCH
2025-07-29 04:42:29 +03:30
size_t clrcount
);
2025-07-10 08:58:07 +03:30
/* Cursor abstraction */
Cur *drw_cur_create(Drw *drw, int shape);
void drw_cur_free(Drw *drw, Cur *cursor);
/* Drawing context manipulation */
2026-02-05 03:05:24 +03:30
#if !BAR_PANGO_PATCH
2025-07-10 08:58:07 +03:30
void drw_setfontset(Drw *drw, Fnt *set);
2026-02-05 03:05:24 +03:30
#endif // BAR_PANGO_PATCH
2025-07-10 08:58:07 +03:30
void drw_setscheme(Drw *drw, Clr *scm);
2026-02-05 03:05:24 +03:30
#if BAR_POWERLINE_TAGS_PATCH || BAR_POWERLINE_STATUS_PATCH
void drw_settrans(Drw *drw, Clr *psc, Clr *nsc);
#endif // BAR_POWERLINE_TAGS_PATCH | BAR_POWERLINE_STATUS_PATCH
2025-07-10 08:58:07 +03:30
/* Drawing functions */
void drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert);
2025-07-29 04:42:29 +03:30
int drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lpad, const char *text, int invert, Bool markup);
2026-02-05 03:05:24 +03:30
#if BAR_POWERLINE_TAGS_PATCH || BAR_POWERLINE_STATUS_PATCH
void drw_arrow(Drw *drw, int x, int y, unsigned int w, unsigned int h, int direction, int slash);
#endif // BAR_POWERLINE_TAGS_PATCH | BAR_POWERLINE_STATUS_PATCH
2025-07-10 08:58:07 +03:30
/* Map functions */
void drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h);
2025-07-29 04:42:29 +03:30