X-Git-Url: https://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/8902c43b920e55bb96fc7006e6a10f6a6abf332e..b6cf4847cedfc09ccad10db651e2e97d7ac89184:/xmenu.h diff --git a/xmenu.h b/xmenu.h index 11fd29f..bf5cb80 100644 --- a/xmenu.h +++ b/xmenu.h @@ -5,9 +5,10 @@ #define ITEMNEXT 1 /* macros */ -#define LEN(x) (sizeof (x) / sizeof (x[0])) -#define MAX(x,y) ((x)>(y)?(x):(y)) -#define MIN(x,y) ((x)<(y)?(x):(y)) +#define LEN(x) (sizeof (x) / sizeof (x[0])) +#define MAX(x,y) ((x)>(y)?(x):(y)) +#define MIN(x,y) ((x)<(y)?(x):(y)) +#define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b)) /* color enum */ enum {ColorFG, ColorBG, ColorLast}; @@ -17,28 +18,30 @@ enum {NetWMName, NetWMWindowType, NetWMWindowTypePopupMenu, NetLast}; /* configuration structure */ struct Config { + /* the values below are set by config.h */ const char *font; - const char *background_color; const char *foreground_color; const char *selbackground_color; const char *selforeground_color; const char *separator_color; const char *border_color; - int width_pixels; int height_pixels; int border_pixels; int separator_pixels; int gap_pixels; - int triangle_width; int triangle_height; - int iconpadding; + int horzpadding; - int cursx, cursy; /* cursor position */ - int screenw, screenh; /* screen width and height */ + /* the values below are set by options */ + int monitor; + int posx, posy; /* rootmenu position */ + + /* the value below is computed by xmenu */ + int iconsize; }; /* draw context structure */ @@ -49,7 +52,9 @@ struct DC { XftColor separator; GC gc; - XftFont *font; + + XftFont **fonts; + size_t nfonts; }; /* menu item structure */ @@ -63,9 +68,15 @@ struct Item { struct Item *prev; /* previous item */ struct Item *next; /* next item */ struct Menu *submenu; /* submenu spawned by clicking on item */ + Drawable sel, unsel; /* pixmap for selected and unselected item */ Imlib_Image icon; }; +/* monitor and cursor geometry structure */ +struct Monitor { + int x, y, w, h; /* monitor geometry */ +}; + /* menu structure */ struct Menu { struct Menu *parent; /* parent menu */ @@ -73,8 +84,7 @@ struct Menu { struct Item *list; /* list of items contained by the menu */ struct Item *selected; /* item currently selected in the menu */ int x, y, w, h; /* menu geometry */ + int drawn; /* whether the menu was already drawn */ unsigned level; /* menu level relative to root */ - Drawable pixmap; /* pixmap to draw the menu on */ - XftDraw *draw; Window win; /* menu window to map on the screen */ };