X-Git-Url: https://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/cdeaefaaa2dc75e59016e352fdfe5adf48190c6e..0bb241472bbe1e029f6045fc2c5596bceaf3818b:/xmenu.h diff --git a/xmenu.h b/xmenu.h index 0f32fac..04a4ddf 100644 --- a/xmenu.h +++ b/xmenu.h @@ -36,10 +36,13 @@ struct Config { int iconpadding; int horzpadding; - /* the values below are computed by xmenu */ + /* the values below are set by options */ + int monitor; + int posx, posy; /* rootmenu position */ + + /* the value below is computed by xmenu */ int iconsize; - int posx, posy; /* cursor position */ - int screenw, screenh; /* screen width and height */ + int screenw, screenh; /* screen width and height */ }; /* draw context structure */ @@ -70,6 +73,11 @@ struct 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 */ @@ -77,6 +85,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 */ Window win; /* menu window to map on the screen */ };