summaryrefslogtreecommitdiff
path: root/openbox/menu.c
diff options
context:
space:
mode:
authorScott Moynes <smoynes@nexus.carleton.ca>2003-03-29 03:18:11 +0000
committerScott Moynes <smoynes@nexus.carleton.ca>2003-03-29 03:18:11 +0000
commita116f2c6310db702e377e9cd1a95c9a980aba5ae (patch)
tree1e92192f3f75f013c31abb2dd4e417cc4912822a /openbox/menu.c
parent7f5514aeb7bb8d84c7b038a08a57ee2d55e310f1 (diff)
Menu data structures basically completed.
Need the engine support still, parser, and controllers.
Diffstat (limited to 'openbox/menu.c')
-rw-r--r--openbox/menu.c65
1 files changed, 59 insertions, 6 deletions
diff --git a/openbox/menu.c b/openbox/menu.c
index bd6cf065..a23cb29b 100644
--- a/openbox/menu.c
+++ b/openbox/menu.c
@@ -1,28 +1,81 @@
#include <glib.h>
#include "menu.h"
+#include <assert.h>
-Menu *menu_new(char *label, Menu *parent)
+GHashTable *menu_hash = NULL;
+
+void menu_destroy_hash_key(const gpointer data)
+{
+ g_free(data);
+}
+
+void menu_free_entries(const Menu *menu)
+{
+ GList *it;
+
+ for (it = menu->entries; it; it = it->next)
+ menu_entry_free((MenuEntry *)it->data);
+
+ g_list_free(menu->entries);
+}
+
+void menu_destroy_hash_value(const gpointer data)
+{
+ const Menu *del_menu = (Menu *)data;
+
+ g_free(del_menu->label);
+ g_free(del_menu->name);
+
+ menu_free_entries(del_menu);
+}
+
+void menu_entry_free(const MenuEntry *entry)
+{
+ g_free(entry->label);
+ g_free(entry->render_data);
+}
+
+void menu_startup()
+{
+ menu_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
+ menu_destroy_hash_key,
+ menu_destroy_hash_value);
+}
+
+void menu_shutdown()
{
- Menu *new_menu = g_new(Menu, 1);
- new_menu->label = g_strdup(lable);
+ g_hash_table_destroy(menu_hash);
+}
+
+Menu *menu_new(const char *label, const char *name, Menu *parent)
+{
+ Menu *new_menu = g_new0(Menu, 1);
+ new_menu->label = g_strdup(label);
+ new_menu->name = g_strdup(name);
new_menu->parent = parent;
new_menu->entries = NULL;
- new_menu->tail = NULL;
new_menu->shown = FALSE;
new_menu->invalid = FALSE;
/* default controllers? */
+ g_hash_table_insert(menu_hash, g_strdup(name), new_menu);
return new_menu;
}
-MenuEntry *menu_entry_new_full(char *label, Action *action,
- MenuEntryRenderType render_type,
+void menu_free(const char *name)
+{
+ g_hash_table_remove(menu_hash, name);
+}
+
+MenuEntry *menu_entry_new_full(const char *label, Action *action,
+ const MenuEntryRenderType render_type,
gpointer render_data, gpointer submenu)
{
MenuEntry *menu_entry = g_new(MenuEntry, 1);
menu_entry->label = g_strdup(label);
+ menu_entry->render_type = render_type;
menu_entry->action.func = action->func;
menu_entry->action.data = action->data; //watch out. copying Client * ptr