X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Fmenu.c;h=3373616fef026758c2789ffe8bbe6872eefcc9e8;hb=f17b225daadb483b8736dc0e57a9def68e770ae9;hp=4a37d2c60849a709dc722d81f538eac43cfe66fb;hpb=79a352a40bd16924b1ca3df49f6c82d77e956a0e;p=chaz%2Fopenbox diff --git a/openbox/menu.c b/openbox/menu.c index 4a37d2c6..3373616f 100644 --- a/openbox/menu.c +++ b/openbox/menu.c @@ -1,15 +1,22 @@ #include "menu.h" #include "openbox.h" #include "stacking.h" +#include "grab.h" #include "render/theme.h" +#include "screen.h" +#include "geom.h" +#include "plugin.h" static GHashTable *menu_hash = NULL; -GHashTable *menu_map = NULL; +#define FRAME_EVENTMASK (ButtonPressMask |ButtonMotionMask | EnterWindowMask | \ + LeaveWindowMask) #define TITLE_EVENTMASK (ButtonPressMask | ButtonMotionMask) #define ENTRY_EVENTMASK (EnterWindowMask | LeaveWindowMask | \ ButtonPressMask | ButtonReleaseMask) +void menu_control_show(Menu *self, int x, int y, Client *client); + void menu_destroy_hash_key(gpointer data) { g_free(data); @@ -26,9 +33,11 @@ void menu_destroy_hash_value(Menu *self) g_free(self->label); g_free(self->name); - g_hash_table_remove(menu_map, &self->title); - g_hash_table_remove(menu_map, &self->frame); - g_hash_table_remove(menu_map, &self->items); + g_hash_table_remove(window_map, &self->title); + g_hash_table_remove(window_map, &self->frame); + g_hash_table_remove(window_map, &self->items); + + stacking_remove(self); appearance_free(self->a_title); XDestroyWindow(ob_display, self->title); @@ -43,7 +52,7 @@ void menu_entry_free(MenuEntry *self) g_free(self->label); action_free(self->action); - g_hash_table_remove(menu_map, &self->item); + g_hash_table_remove(window_map, &self->item); appearance_free(self->a_item); appearance_free(self->a_disabled); @@ -56,27 +65,76 @@ void menu_entry_free(MenuEntry *self) void menu_startup() { Menu *m; + Menu *s; + Menu *t; + Action *a; menu_hash = g_hash_table_new_full(g_str_hash, g_str_equal, menu_destroy_hash_key, (GDestroyNotify)menu_destroy_hash_value); - menu_map = g_hash_table_new(g_int_hash, g_int_equal); - - m = menu_new("sex menu", "root", NULL); - menu_add_entry(m, menu_entry_new("foo shit etc bleh", - action_from_string("restart"))); - menu_add_entry(m, menu_entry_new("more shit", - action_from_string("restart"))); - menu_add_entry(m, menu_entry_new("", - action_from_string("restart"))); - menu_add_entry(m, menu_entry_new("and yet more", - action_from_string("restart"))); + + m = menu_new(NULL, "root", NULL); + + a = action_from_string("execute"); + a->data.execute.path = g_strdup("xterm"); + menu_add_entry(m, menu_entry_new("xterm", a)); + a = action_from_string("restart"); + menu_add_entry(m, menu_entry_new("restart", a)); + menu_add_entry(m, menu_entry_new_separator("--")); + a = action_from_string("exit"); + menu_add_entry(m, menu_entry_new("exit", a)); + s = menu_new("subsex menu", "submenu", m); + a = action_from_string("execute"); + a->data.execute.path = g_strdup("xclock"); + menu_add_entry(s, menu_entry_new("xclock", a)); + + menu_add_entry(m, menu_entry_new_submenu("subz", s)); + + t = (Menu *)plugin_create("timed_menu"); + if (t) { + a = action_from_string("execute"); + a->data.execute.path = g_strdup("xeyes"); + menu_add_entry(t, menu_entry_new("xeyes", a)); + menu_add_entry(m, menu_entry_new_submenu("timed", t)); + } + + s = menu_new("empty", "chub", m); + menu_add_entry(m, menu_entry_new_submenu("empty", s)); + + s = menu_new("", "s-club", m); + menu_add_entry(m, menu_entry_new_submenu("empty", s)); + + s = menu_new(NULL, "h-club", m); + menu_add_entry(m, menu_entry_new_submenu("empty", s)); + + s = menu_new(NULL, "g-club", m); + + a = action_from_string("execute"); + a->data.execute.path = g_strdup("xterm"); + menu_add_entry(s, menu_entry_new("xterm", a)); + a = action_from_string("restart"); + menu_add_entry(s, menu_entry_new("restart", a)); + menu_add_entry(s, menu_entry_new_separator("--")); + a = action_from_string("exit"); + menu_add_entry(s, menu_entry_new("exit", a)); + + menu_add_entry(m, menu_entry_new_submenu("long", s)); + + m = menu_new(NULL, "client", NULL); + a = action_from_string("iconify"); + menu_add_entry(m, menu_entry_new("iconify", a)); + a = action_from_string("toggleshade"); + menu_add_entry(m, menu_entry_new("(un)shade", a)); + a = action_from_string("togglemaximizefull"); + menu_add_entry(m, menu_entry_new("(un)maximize", a)); + a = action_from_string("close"); + menu_add_entry(m, menu_entry_new("close", a)); + } void menu_shutdown() { g_hash_table_destroy(menu_hash); - g_hash_table_destroy(menu_map); } static Window createWindow(Window parent, unsigned long mask, @@ -88,28 +146,42 @@ static Window createWindow(Window parent, unsigned long mask, } -Menu *menu_new(char *label, char *name, Menu *parent) +Menu *menu_new_full(char *label, char *name, Menu *parent, + menu_controller_show show, menu_controller_update update) { XSetWindowAttributes attrib; Menu *self; self = g_new0(Menu, 1); + self->obwin.type = Window_Menu; self->label = g_strdup(label); self->name = g_strdup(name); self->parent = parent; + self->open_submenu = NULL; self->entries = NULL; self->shown = FALSE; - self->invalid = FALSE; - /* default controllers? */ + self->invalid = TRUE; + + /* default controllers */ + self->show = show; + self->hide = NULL; + self->update = update; + self->mouseover = NULL; + self->selected = NULL; + + self->plugin = NULL; + self->plugin_data = NULL; attrib.override_redirect = TRUE; - self->frame = createWindow(ob_root, CWOverrideRedirect, &attrib); + attrib.event_mask = FRAME_EVENTMASK; + self->frame = createWindow(ob_root, CWOverrideRedirect|CWEventMask, &attrib); attrib.event_mask = TITLE_EVENTMASK; self->title = createWindow(self->frame, CWEventMask, &attrib); self->items = createWindow(self->frame, 0, &attrib); XSetWindowBorderWidth(ob_display, self->frame, theme_bwidth); + XSetWindowBackground(ob_display, self->frame, theme_b_color->pixel); XSetWindowBorderWidth(ob_display, self->title, theme_bwidth); XSetWindowBorder(ob_display, self->frame, theme_b_color->pixel); XSetWindowBorder(ob_display, self->title, theme_b_color->pixel); @@ -120,10 +192,14 @@ Menu *menu_new(char *label, char *name, Menu *parent) self->a_title = appearance_copy(theme_a_menu_title); self->a_items = appearance_copy(theme_a_menu); - g_hash_table_insert(menu_map, &self->frame, self); - g_hash_table_insert(menu_map, &self->title, self); - g_hash_table_insert(menu_map, &self->items, self); + g_hash_table_insert(window_map, &self->frame, self); + g_hash_table_insert(window_map, &self->title, self); + g_hash_table_insert(window_map, &self->items, self); g_hash_table_insert(menu_hash, g_strdup(name), self); + + stacking_add(MENU_AS_WINDOW(self)); + stacking_raise(MENU_AS_WINDOW(self)); + return self; } @@ -164,7 +240,9 @@ void menu_add_entry(Menu *menu, MenuEntry *entry) { XSetWindowAttributes attrib; - g_assert(menu != NULL && entry != NULL && entry->item == None); + g_assert(menu != NULL); + g_assert(entry != NULL); + g_assert(entry->item == None); menu->entries = g_list_append(menu->entries, entry); entry->parent = menu; @@ -178,86 +256,63 @@ void menu_add_entry(Menu *menu, MenuEntry *entry) menu->invalid = TRUE; - g_hash_table_insert(menu_map, &entry->item, menu); + g_hash_table_insert(window_map, &entry->item, menu); } void menu_show(char *name, int x, int y, Client *client) { Menu *self; - GList *it; - int items_h; - int nitems = 0; /* each item, only one is used */ - int item_y; - + self = g_hash_table_lookup(menu_hash, name); if (!self) { g_warning("Attempted to show menu '%s' but it does not exist.", name); return; } + + menu_show_full(self, x, y, client); +} - self->width = 1; - self->item_h = 0; - - /* set texture data and size them mofos out */ - self->a_title->texture[0].data.text.string = self->label; - appearance_minsize(self->a_title, &self->title_min_w, &self->title_h); - self->title_min_w += theme_bevel * 2; - self->title_h += theme_bevel * 2; - self->width = MAX(self->width, self->title_min_w); - - for (it = self->entries; it; it = it->next) { - MenuEntry *e = it->data; - int h; +void menu_show_full(Menu *self, int x, int y, Client *client) +{ + g_assert(self != NULL); + + menu_render(self); + + self->client = client; - e->a_item->texture[0].data.text.string = e->label; - appearance_minsize(e->a_item, &e->min_w, &self->item_h); - self->width = MAX(self->width, e->min_w); + if (self->show) { + self->show(self, x, y, client); + } else { + menu_control_show(self, x, y, client); + } +} - e->a_disabled->texture[0].data.text.string = e->label; - appearance_minsize(e->a_disabled, &e->min_w, &h); - self->item_h = MAX(self->item_h, h); - self->width = MAX(self->width, e->min_w); - e->a_hilite->texture[0].data.text.string = e->label; - appearance_minsize(e->a_hilite, &e->min_w, &h); - self->item_h = MAX(self->item_h, h); - self->width = MAX(self->width, e->min_w); +void menu_hide(Menu *self) { + if (self->shown) { + XUnmapWindow(ob_display, self->frame); + self->shown = FALSE; + if (self->open_submenu) + menu_hide(self->open_submenu); + if (self->parent && self->parent->open_submenu == self) + self->parent->open_submenu = NULL; - e->min_w += theme_bevel * 2; - ++nitems; } - self->bullet_w = self->item_h + theme_bevel; - self->width += 2 * self->bullet_w; - self->item_h += theme_bevel * 2; - items_h = self->item_h * nitems; - - RECT_SET(self->a_title->area, 0, 0, self->width, self->title_h); - RECT_SET(self->a_title->texture[0].position, 0, 0, self->width, - self->title_h); - RECT_SET(self->a_items->area, 0, 0, self->width, items_h); - - XMoveResizeWindow(ob_display, self->frame, x, y, self->width, - self->title_h + items_h); - XMoveResizeWindow(ob_display, self->title, -theme_bwidth, -theme_bwidth, - self->width, self->title_h); - XMoveResizeWindow(ob_display, self->items, 0, self->title_h + theme_bwidth, - self->width, items_h); - - paint(self->title, self->a_title); - paint(self->items, self->a_items); - - item_y = 0; +} + +void menu_clear(Menu *self) { + GList *it; + for (it = self->entries; it; it = it->next) { - ((MenuEntry*)it->data)->y = item_y; - menu_entry_render(it->data); - item_y += self->item_h; + MenuEntry *entry = it->data; + menu_entry_free(entry); } - - stacking_raise_internal(self->frame); - XMapWindow(ob_display, self->frame); + self->entries = NULL; + self->invalid = TRUE; } + MenuEntry *menu_find_entry(Menu *menu, Window win) { GList *it; @@ -270,25 +325,72 @@ MenuEntry *menu_find_entry(Menu *menu, Window win) return NULL; } -void menu_entry_render(MenuEntry *self) +void menu_entry_fire(MenuEntry *self) { - Menu *menu = self->parent; - Appearance *a; + Menu *m; - a = !self->enabled ? self->a_disabled : - (self->hilite ? self->a_hilite : self->a_item); + if (self->action) { + self->action->data.any.c = self->parent->client; + self->action->func(&self->action->data); + + /* hide the whole thing */ + m = self->parent; + while (m->parent) m = m->parent; + menu_hide(m); + } +} - RECT_SET(a->area, 0, 0, menu->width, - menu->item_h); - RECT_SET(a->texture[0].position, menu->bullet_w, - 0, menu->width - 2 * menu->bullet_w, - menu->item_h); +/* + Default menu controller action for showing. +*/ - XMoveResizeWindow(ob_display, self->item, 0, self->y, - menu->width, menu->item_h); - a->surface.data.planar.parent = menu->a_items; - a->surface.data.planar.parentx = 0; - a->surface.data.planar.parenty = self->y; +void menu_control_show(Menu *self, int x, int y, Client *client) { + g_assert(!self->invalid); + + XMoveWindow(ob_display, self->frame, + MIN(x, screen_physical_size.width - self->size.width), + MIN(y, screen_physical_size.height - self->size.height)); + POINT_SET(self->location, + MIN(x, screen_physical_size.width - self->size.width), + MIN(y, screen_physical_size.height - self->size.height)); + + if (!self->shown) { + XMapWindow(ob_display, self->frame); + stacking_raise(MENU_AS_WINDOW(self)); + self->shown = TRUE; + } else if (self->shown && self->open_submenu) { + menu_hide(self->open_submenu); + } +} - paint(self->item, a); +void menu_control_mouseover(MenuEntry *self, gboolean enter) { + int x; + self->hilite = enter; + + if (enter) { + if (self->parent->open_submenu && self->submenu + != self->parent->open_submenu) + menu_hide(self->parent->open_submenu); + + if (self->submenu) { + self->parent->open_submenu = self->submenu; + + /* shouldn't be invalid since it must be displayed */ + g_assert(!self->parent->invalid); + /* TODO: I don't understand why these bevels should be here. + Something must be wrong in the width calculation */ + x = self->parent->location.x + self->parent->size.width + + theme_bevel; + + /* need to get the width. is this bad?*/ + menu_render(self->submenu); + + if (self->submenu->size.width + x > screen_physical_size.width) + x = self->parent->location.x - self->submenu->size.width - + theme_bevel; + + menu_show_full(self->submenu, x, + self->parent->location.y + self->y, NULL); + } + } }