X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmenu.h;h=c6b36719f5de2eae160036ab231d902f30e1761f;hb=78a8680cd7379cc0d75af810dabe62c7a6c4a8b2;hp=2371dee011d01ad8f2ea3552a24f1e62e4b95d56;hpb=79a352a40bd16924b1ca3df49f6c82d77e956a0e;p=chaz%2Fopenbox diff --git a/openbox/menu.h b/openbox/menu.h index 2371dee0..c6b36719 100644 --- a/openbox/menu.h +++ b/openbox/menu.h @@ -3,33 +3,47 @@ #include "action.h" #include "render/render.h" +#include "geom.h" #include extern GHashTable *menu_map; +struct Menu; +struct MenuEntry; + +typedef void(*menu_controller_show)(struct Menu *self, int x, int y, Client *); +typedef void(*menu_controller_update)(struct Menu *self); +typedef void(*menu_controller_mouseover)(struct MenuEntry *self, + gboolean enter); + typedef struct Menu { + ObWindow obwin; + char *label; char *name; GList *entries; - /* GList *tail; */ - /* ? */ gboolean shown; gboolean invalid; struct Menu *parent; + + struct Menu *open_submenu; - /* waste o' pointers */ - void (*show)( /* some bummu */); + /* place a menu on screen */ + menu_controller_show show; void (*hide)( /* some bummu */); - void (*update)( /* some bummu */); - void (*mouseover)( /* some bummu */); + + /* render a menu */ + menu_controller_update update; + menu_controller_mouseover mouseover; void (*selected)( /* some bummu */); /* render stuff */ + Client *client; Window frame; Window title; Appearance *a_title; @@ -38,7 +52,12 @@ typedef struct Menu { Appearance *a_items; int bullet_w; int item_h; - int width; + Point location; + Size size; + + /* plugin stuff */ + char *plugin; + void *plugin_data; } Menu; typedef enum MenuEntryRenderType { @@ -75,17 +94,35 @@ typedef struct { void menu_startup(); void menu_shutdown(); -Menu *menu_new(char *label, char *name, Menu *parent); +#define menu_new(l, n, p) \ + menu_new_full(l, n, p, NULL, NULL) + +Menu *menu_new_full(char *label, char *name, Menu *parent, + menu_controller_show show, menu_controller_update update); void menu_free(char *name); void menu_show(char *name, int x, int y, Client *client); +void menu_show_full(Menu *menu, int x, int y, Client *client); + +void menu_hide(Menu *self); + +void menu_clear(Menu *self); MenuEntry *menu_entry_new_full(char *label, Action *action, MenuEntryRenderType render_type, gpointer submenu); #define menu_entry_new(label, action) \ - menu_entry_new_full(label, action, MenuEntryRenderType_None, NULL) +menu_entry_new_full(label, action, MenuEntryRenderType_None, NULL) + +#define menu_entry_new_separator(label) \ +menu_entry_new_full(label, NULL, MenuEntryRenderType_Separator, NULL) + +#define menu_entry_new_submenu(label, submenu) \ +menu_entry_new_full(label, NULL, MenuEntryRenderType_Submenu, submenu) + +#define menu_entry_new_boolean(label, action) \ +menu_entry_new_full(label, action, MenuEntryRenderType_Boolean, NULL) void menu_entry_free(MenuEntry *entry); @@ -97,4 +134,9 @@ MenuEntry *menu_find_entry(Menu *menu, Window win); void menu_entry_render(MenuEntry *self); +void menu_entry_fire(MenuEntry *self); + +void menu_render(Menu *self); + +void menu_control_mouseover(MenuEntry *entry, gboolean enter); #endif