X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmenu.h;h=b3e712c3241479b9fd232b81f0e213f8e4379479;hb=63b0c5616ffe67aa021234abe6635adb9c91879b;hp=d7d27c2cd9da602db381fb393046aeccea496a29;hpb=3443454f33f88e10f187b78594ecfb5c09e1448d;p=chaz%2Fopenbox diff --git a/openbox/menu.h b/openbox/menu.h index d7d27c2c..b3e712c3 100644 --- a/openbox/menu.h +++ b/openbox/menu.h @@ -1,10 +1,12 @@ #ifndef __menu_h #define __menu_h +#include "action.h" #include -typedef struct { +typedef struct Menu { char *label; + char *name; GList *entries; /* GList *tail; */ @@ -13,7 +15,7 @@ typedef struct { gboolean shown; gboolean invalid; - Menu *parent; + struct Menu *parent; /* waste o' pointers */ void (*show)( /* some bummu */); @@ -25,12 +27,12 @@ typedef struct { typedef enum MenuEntryRenderType { MenuEntryRenderType_None = 0, - MenuEntryRenderType_Submenu 1 << 0, - MenuEntryRenderType_Boolean 1 << 1, - MenuEntryRenderType_Separator 1 << 2, + MenuEntryRenderType_Submenu = 1 << 0, + MenuEntryRenderType_Boolean = 1 << 1, + MenuEntryRenderType_Separator = 1 << 2, - MenuEntryRenderType_Other 1 << 7 -} MenuEntryType; + MenuEntryRenderType_Other = 1 << 7 +} MenuEntryRenderType; typedef struct { @@ -42,19 +44,23 @@ typedef struct { MenuEntryRenderType render_type; gboolean enabled; gboolean boolean_value; - gpointer render_data; + gpointer render_data; /* where the engine can store anything it likes */ Menu *submenu; } MenuEntry; -Menu *menu_new(char *label, Menu *parent); -MenuEntry *menu_entry_new_full(char *label, Action *action, - MenuEntryRenderType render_type, - gpointer render_data, gpointer submenu); +Menu *menu_new(const char *label, const char *name, Menu *parent); +void menu_free(const char *name); + +MenuEntry *menu_entry_new_full(const char *label, Action *action, + const MenuEntryRenderType render_type, + gpointer render_data, gpointer submenu); #define menu_entry_new(label, action) \ menu_entry_new(label, action, MenuEntryRenderType_None, NULL, NULL) +void menu_entry_free(const MenuEntry *entry); + void menu_entry_set_submenu(MenuEntry *entry, Menu *submenu); void menu_add_entry(Menu *menu, MenuEntry *entry);