X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmenu.h;h=b3e712c3241479b9fd232b81f0e213f8e4379479;hb=5f42ecfacbbf0bcfe43137c51a20b60d8ea368e3;hp=d1a99dcfde0eb8082935b3476ef33cf9d4eca1ef;hpb=22be74583bcf40fd5e762eb818676aa12f7152c4;p=chaz%2Fopenbox diff --git a/openbox/menu.h b/openbox/menu.h index d1a99dcf..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 Menu { char *label; + char *name; GList *entries; /* GList *tail; */ @@ -25,12 +27,12 @@ typedef struct Menu { 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);