]> Dogcows Code - chaz/openbox/blobdiff - openbox/menu.h
track window groups
[chaz/openbox] / openbox / menu.h
index d7d27c2cd9da602db381fb393046aeccea496a29..b3e712c3241479b9fd232b81f0e213f8e4379479 100644 (file)
@@ -1,10 +1,12 @@
 #ifndef __menu_h
 #define __menu_h
 
+#include "action.h"
 #include <glib.h>
 
-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);
This page took 0.021487 seconds and 4 git commands to generate.