X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmenu.h;h=081b3528db0f65f78a30cf78d50d3a9e3e43afed;hb=3fab044f347fbfdad27492802fe3e3628ff915da;hp=1c1b31d98f094324eba00434d53cef90f15133b0;hpb=6a237b91bcbc2c25f2bf8d368535430ba6a1bf26;p=chaz%2Fopenbox diff --git a/openbox/menu.h b/openbox/menu.h index 1c1b31d9..081b3528 100644 --- a/openbox/menu.h +++ b/openbox/menu.h @@ -3,29 +3,40 @@ #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 { 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 */); @@ -39,7 +50,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 { @@ -76,10 +92,16 @@ 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); MenuEntry *menu_entry_new_full(char *label, Action *action, @@ -87,7 +109,16 @@ MenuEntry *menu_entry_new_full(char *label, Action *action, 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); @@ -103,4 +134,5 @@ void menu_entry_fire(MenuEntry *self); void menu_render(Menu *self); +void menu_control_mouseover(MenuEntry *entry, gboolean enter); #endif