Use the BSEARCH() macro in overlap placement
[openbox.git] / openbox / menu.c
blob7c49cedbe3d411b22b7fbb0647d7bb37aeeb332d
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 menu.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
20 #include "debug.h"
21 #include "menu.h"
22 #include "openbox.h"
23 #include "stacking.h"
24 #include "grab.h"
25 #include "client.h"
26 #include "config.h"
27 #include "actions.h"
28 #include "screen.h"
29 #include "menuframe.h"
30 #include "keyboard.h"
31 #include "geom.h"
32 #include "misc.h"
33 #include "client_menu.h"
34 #include "client_list_menu.h"
35 #include "client_list_combined_menu.h"
36 #include "gettext.h"
37 #include "obt/xml.h"
38 #include "obt/paths.h"
40 typedef struct _ObMenuParseState ObMenuParseState;
42 struct _ObMenuParseState
44 ObMenu *parent;
45 ObMenu *pipe_creator;
48 static GHashTable *menu_hash = NULL;
49 static ObtXmlInst *menu_parse_inst;
50 static ObMenuParseState menu_parse_state;
51 static gboolean menu_can_hide = FALSE;
52 static guint menu_timeout_id = 0;
54 static void menu_destroy_hash_value(ObMenu *self);
55 static void parse_menu_item(xmlNodePtr node, gpointer data);
56 static void parse_menu_separator(xmlNodePtr node, gpointer data);
57 static void parse_menu(xmlNodePtr node, gpointer data);
58 static gunichar parse_shortcut(const gchar *label, gboolean allow_shortcut,
59 gchar **strippedlabel, guint *position,
60 gboolean *always_show);
62 void menu_startup(gboolean reconfig)
64 gboolean loaded = FALSE;
65 GSList *it;
67 menu_hash = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
68 (GDestroyNotify)menu_destroy_hash_value);
70 client_list_menu_startup(reconfig);
71 client_list_combined_menu_startup(reconfig);
72 client_menu_startup();
74 menu_parse_inst = obt_xml_instance_new();
76 menu_parse_state.parent = NULL;
77 menu_parse_state.pipe_creator = NULL;
78 obt_xml_register(menu_parse_inst, "menu", parse_menu, &menu_parse_state);
79 obt_xml_register(menu_parse_inst, "item", parse_menu_item,
80 &menu_parse_state);
81 obt_xml_register(menu_parse_inst, "separator",
82 parse_menu_separator, &menu_parse_state);
84 for (it = config_menu_files; it; it = g_slist_next(it)) {
85 if (obt_xml_load_config_file(menu_parse_inst,
86 "openbox",
87 it->data,
88 "openbox_menu"))
90 loaded = TRUE;
91 obt_xml_tree_from_root(menu_parse_inst);
92 obt_xml_close(menu_parse_inst);
94 else if (obt_xml_load_file(menu_parse_inst,
95 it->data,
96 "openbox_menu"))
98 loaded = TRUE;
99 obt_xml_tree_from_root(menu_parse_inst);
100 obt_xml_close(menu_parse_inst);
102 else
103 g_message(_("Unable to find a valid menu file \"%s\""),
104 (const gchar*)it->data);
106 if (!loaded) {
107 if (obt_xml_load_config_file(menu_parse_inst,
108 "openbox",
109 "menu.xml",
110 "openbox_menu"))
112 obt_xml_tree_from_root(menu_parse_inst);
113 obt_xml_close(menu_parse_inst);
114 } else
115 g_message(_("Unable to find a valid menu file \"%s\""),
116 "menu.xml");
119 g_assert(menu_parse_state.parent == NULL);
122 void menu_shutdown(gboolean reconfig)
124 obt_xml_instance_unref(menu_parse_inst);
125 menu_parse_inst = NULL;
127 menu_frame_hide_all();
129 client_list_combined_menu_shutdown(reconfig);
130 client_list_menu_shutdown(reconfig);
132 g_hash_table_destroy(menu_hash);
133 menu_hash = NULL;
136 static gboolean menu_pipe_submenu(gpointer key, gpointer val, gpointer data)
138 ObMenu *menu = val;
139 return menu->pipe_creator != NULL;
142 static void clear_cache(gpointer key, gpointer val, gpointer data)
144 ObMenu *menu = val;
145 if (menu->execute)
146 menu_clear_entries(menu);
149 void menu_clear_pipe_caches(void)
151 /* delete any pipe menus' submenus */
152 g_hash_table_foreach_remove(menu_hash, menu_pipe_submenu, NULL);
153 /* empty the top level pipe menus */
154 g_hash_table_foreach(menu_hash, clear_cache, NULL);
157 void menu_pipe_execute(ObMenu *self)
159 gchar *output;
160 GError *err = NULL;
162 if (!self->execute)
163 return;
164 if (self->entries) /* the entries are already created and cached */
165 return;
167 if (!g_spawn_command_line_sync(self->execute, &output, NULL, NULL, &err)) {
168 g_message(_("Failed to execute command for pipe-menu \"%s\": %s"),
169 self->execute, err->message);
170 g_error_free(err);
171 return;
174 if (obt_xml_load_mem(menu_parse_inst, output, strlen(output),
175 "openbox_pipe_menu"))
177 menu_parse_state.pipe_creator = self;
178 menu_parse_state.parent = self;
179 obt_xml_tree_from_root(menu_parse_inst);
180 obt_xml_close(menu_parse_inst);
181 } else {
182 g_message(_("Invalid output from pipe-menu \"%s\""), self->execute);
185 g_free(output);
188 static ObMenu* menu_from_name(gchar *name)
190 ObMenu *self = NULL;
192 g_assert(name != NULL);
194 if (!(self = g_hash_table_lookup(menu_hash, name)))
195 g_message(_("Attempted to access menu \"%s\" but it does not exist"),
196 name);
197 return self;
200 #define VALID_SHORTCUT(c) (((c) >= '0' && (c) <= '9') || \
201 ((c) >= 'A' && (c) <= 'Z') || \
202 ((c) >= 'a' && (c) <= 'z'))
204 static gunichar parse_shortcut(const gchar *label, gboolean allow_shortcut,
205 gchar **strippedlabel, guint *position,
206 gboolean *always_show)
208 gunichar shortcut = 0;
210 *position = 0;
211 *always_show = FALSE;
213 g_assert(strippedlabel != NULL);
215 if (label == NULL) {
216 *strippedlabel = NULL;
217 } else {
218 gchar *i;
219 gboolean escape;
221 *strippedlabel = g_strdup(label);
223 /* if allow_shortcut is false, then you can't use the '_', instead you
224 have to just use the first valid character
227 /* allow __ to escape an underscore */
228 i = *strippedlabel;
229 do {
230 escape = FALSE;
231 i = strchr(i, '_');
232 if (i && *(i+1) == '_') {
233 gchar *j;
235 /* remove the escape '_' from the string */
236 for (j = i; *j != '\0'; ++j)
237 *j = *(j+1);
239 ++i;
240 escape = TRUE;
242 } while (escape);
244 if (allow_shortcut && i != NULL) {
245 /* there is an underscore in the string */
247 /* you have to use a printable ascii character for shortcuts
248 don't allow space either, so you can have like "a _ b"
250 if (VALID_SHORTCUT(*(i+1))) {
251 shortcut = g_unichar_tolower(g_utf8_get_char(i+1));
252 *position = i - *strippedlabel;
253 *always_show = TRUE;
255 /* remove the '_' from the string */
256 for (; *i != '\0'; ++i)
257 *i = *(i+1);
258 } else if (*(i+1) == '\0') {
259 /* no default shortcut if the '_' is the last character
260 (eg. "Exit_") for menu entries that you don't want
261 to be executed by mistake
263 *i = '\0';
265 } else {
266 /* there is no underscore, so find the first valid character to use
267 instead */
269 for (i = *strippedlabel; *i != '\0'; ++i)
270 if (VALID_SHORTCUT(*i)) {
271 *position = i - *strippedlabel;
272 shortcut = g_unichar_tolower(g_utf8_get_char(i));
273 break;
277 return shortcut;
280 static void parse_menu_item(xmlNodePtr node, gpointer data)
282 ObMenuParseState *state = data;
283 gchar *label;
284 gchar *icon;
285 ObMenuEntry *e;
287 if (state->parent) {
288 /* Don't try to extract "icon" attribute if icons in user-defined
289 menus are not enabled. */
291 if (obt_xml_attr_string_unstripped(node, "label", &label)) {
292 xmlNodePtr c;
293 GSList *acts = NULL;
295 c = obt_xml_find_node(node->children, "action");
296 while (c) {
297 ObActionsAct *action = actions_parse(c);
298 if (action)
299 acts = g_slist_append(acts, action);
300 c = obt_xml_find_node(c->next, "action");
302 e = menu_add_normal(state->parent, -1, label, acts, TRUE);
304 if (config_menu_show_icons &&
305 obt_xml_attr_string(node, "icon", &icon))
307 e->data.normal.icon = RrImageNewFromName(ob_rr_icons, icon);
309 if (e->data.normal.icon)
310 e->data.normal.icon_alpha = 0xff;
312 g_free(icon);
314 g_free(label);
319 static void parse_menu_separator(xmlNodePtr node, gpointer data)
321 ObMenuParseState *state = data;
323 if (state->parent) {
324 gchar *label;
326 if (!obt_xml_attr_string_unstripped(node, "label", &label))
327 label = NULL;
329 menu_add_separator(state->parent, -1, label);
330 g_free(label);
334 static void parse_menu(xmlNodePtr node, gpointer data)
336 ObMenuParseState *state = data;
337 gchar *name = NULL, *title = NULL, *script = NULL;
338 ObMenu *menu;
339 ObMenuEntry *e;
340 gchar *icon;
342 if (!obt_xml_attr_string(node, "id", &name))
343 goto parse_menu_fail;
345 if (!g_hash_table_lookup(menu_hash, name)) {
346 if (!obt_xml_attr_string_unstripped(node, "label", &title))
347 goto parse_menu_fail;
349 if ((menu = menu_new(name, title, TRUE, NULL))) {
350 menu->pipe_creator = state->pipe_creator;
351 if (obt_xml_attr_string(node, "execute", &script)) {
352 menu->execute = obt_paths_expand_tilde(script);
353 } else {
354 ObMenu *old;
356 old = state->parent;
357 state->parent = menu;
358 obt_xml_tree(menu_parse_inst, node->children);
359 state->parent = old;
364 if (state->parent) {
365 e = menu_add_submenu(state->parent, -1, name);
367 if (config_menu_show_icons &&
368 obt_xml_attr_string(node, "icon", &icon))
370 e->data.submenu.icon = RrImageNewFromName(ob_rr_icons, icon);
372 if (e->data.submenu.icon)
373 e->data.submenu.icon_alpha = 0xff;
375 g_free(icon);
379 parse_menu_fail:
380 g_free(name);
381 g_free(title);
382 g_free(script);
385 ObMenu* menu_new(const gchar *name, const gchar *title,
386 gboolean allow_shortcut_selection, gpointer data)
388 ObMenu *self;
390 self = g_slice_new0(ObMenu);
391 self->name = g_strdup(name);
392 self->data = data;
394 self->shortcut = parse_shortcut(title, allow_shortcut_selection,
395 &self->title, &self->shortcut_position,
396 &self->shortcut_always_show);
397 self->collate_key = g_utf8_collate_key(self->title, -1);
399 g_hash_table_replace(menu_hash, self->name, self);
401 /* Each menu has a single more_menu. When the menu spills past what
402 can fit on the screen, a new menu frame entry is created from this
403 more_menu, and a new menu frame for the submenu is created for this
404 menu, also pointing to the more_menu.
406 This can be done multiple times using the same more_menu.
408 more_menu->more_menu will always be NULL, since there is only 1 for
409 each menu. */
410 self->more_menu = g_slice_new0(ObMenu);
411 self->more_menu->name = _("More...");
412 self->more_menu->title = _("More...");
413 self->more_menu->collate_key = "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff";
414 self->more_menu->data = data;
415 self->more_menu->shortcut = g_unichar_tolower(g_utf8_get_char("M"));
417 return self;
420 static void menu_destroy_hash_value(ObMenu *self)
422 /* make sure its not visible */
424 GList *it;
425 ObMenuFrame *f;
427 for (it = menu_frame_visible; it; it = g_list_next(it)) {
428 f = it->data;
429 if (f->menu == self)
430 menu_frame_hide_all();
434 if (self->destroy_func)
435 self->destroy_func(self, self->data);
437 menu_clear_entries(self);
438 g_free(self->name);
439 g_free(self->title);
440 g_free(self->collate_key);
441 g_free(self->execute);
442 g_slice_free(ObMenu, self->more_menu);
444 g_slice_free(ObMenu, self);
447 void menu_free(ObMenu *menu)
449 if (menu)
450 g_hash_table_remove(menu_hash, menu->name);
453 static gboolean menu_hide_delay_func(gpointer data)
455 menu_can_hide = TRUE;
456 menu_timeout_id = 0;
457 return FALSE; /* no repeat */
460 void menu_show(gchar *name, gint x, gint y, gboolean mouse, ObClient *client)
462 ObMenu *self;
463 ObMenuFrame *frame;
465 if (!(self = menu_from_name(name)) ||
466 grab_on_keyboard() || grab_on_pointer()) return;
468 /* if the requested menu is already the top visible menu, then don't
469 bother */
470 if (menu_frame_visible) {
471 frame = menu_frame_visible->data;
472 if (frame->menu == self)
473 return;
476 menu_frame_hide_all();
478 /* clear the pipe menus when showing a new menu */
479 menu_clear_pipe_caches();
481 frame = menu_frame_new(self, 0, client);
482 if (!menu_frame_show_topmenu(frame, x, y, mouse))
483 menu_frame_free(frame);
484 else {
485 if (!mouse) {
486 /* select the first entry if it's not a submenu and we opened
487 * the menu with the keyboard, and skip all headers */
488 GList *it = frame->entries;
489 while (it) {
490 ObMenuEntryFrame *e = it->data;
491 if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL) {
492 menu_frame_select(frame, e, FALSE);
493 break;
494 } else if (e->entry->type == OB_MENU_ENTRY_TYPE_SEPARATOR)
495 it = g_list_next(it);
496 else
497 break;
501 /* reset the hide timer */
502 if (!mouse)
503 menu_can_hide = TRUE;
504 else {
505 menu_can_hide = FALSE;
506 if (menu_timeout_id) g_source_remove(menu_timeout_id);
507 menu_timeout_id = g_timeout_add_full(G_PRIORITY_DEFAULT,
508 config_menu_hide_delay,
509 menu_hide_delay_func,
510 NULL, NULL);
515 gboolean menu_hide_delay_reached(void)
517 return menu_can_hide;
520 static ObMenuEntry* menu_entry_new(ObMenu *menu, ObMenuEntryType type, gint id)
522 ObMenuEntry *self;
524 g_assert(menu);
526 self = g_slice_new0(ObMenuEntry);
527 self->ref = 1;
528 self->type = type;
529 self->menu = menu;
530 self->id = id;
532 switch (type) {
533 case OB_MENU_ENTRY_TYPE_NORMAL:
534 self->data.normal.enabled = TRUE;
535 break;
536 case OB_MENU_ENTRY_TYPE_SUBMENU:
537 case OB_MENU_ENTRY_TYPE_SEPARATOR:
538 break;
541 return self;
544 void menu_entry_ref(ObMenuEntry *self)
546 ++self->ref;
549 void menu_entry_unref(ObMenuEntry *self)
551 if (self && --self->ref == 0) {
552 switch (self->type) {
553 case OB_MENU_ENTRY_TYPE_NORMAL:
554 RrImageUnref(self->data.normal.icon);
555 g_free(self->data.normal.label);
556 g_free(self->data.normal.collate_key);
557 while (self->data.normal.actions) {
558 actions_act_unref(self->data.normal.actions->data);
559 self->data.normal.actions =
560 g_slist_delete_link(self->data.normal.actions,
561 self->data.normal.actions);
563 break;
564 case OB_MENU_ENTRY_TYPE_SUBMENU:
565 RrImageUnref(self->data.submenu.icon);
566 g_free(self->data.submenu.name);
567 break;
568 case OB_MENU_ENTRY_TYPE_SEPARATOR:
569 g_free(self->data.separator.label);
570 break;
573 g_slice_free(ObMenuEntry, self);
577 void menu_clear_entries(ObMenu *self)
579 #ifdef DEBUG
580 /* assert that the menu isn't visible */
582 GList *it;
583 ObMenuFrame *f;
585 for (it = menu_frame_visible; it; it = g_list_next(it)) {
586 f = it->data;
587 g_assert(f->menu != self);
590 #endif
592 while (self->entries) {
593 menu_entry_unref(self->entries->data);
594 self->entries = g_list_delete_link(self->entries, self->entries);
596 self->more_menu->entries = self->entries; /* keep it in sync */
599 void menu_entry_remove(ObMenuEntry *self)
601 self->menu->entries = g_list_remove(self->menu->entries, self);
602 menu_entry_unref(self);
605 ObMenuEntry* menu_add_normal(ObMenu *self, gint id, const gchar *label,
606 GSList *actions, gboolean allow_shortcut)
608 ObMenuEntry *e;
610 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_NORMAL, id);
611 e->data.normal.actions = actions;
613 menu_entry_set_label(e, label, allow_shortcut);
615 self->entries = g_list_append(self->entries, e);
616 self->more_menu->entries = self->entries; /* keep it in sync */
617 return e;
620 ObMenuEntry* menu_get_more(ObMenu *self, guint show_from)
622 ObMenuEntry *e;
623 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SUBMENU, -1);
624 /* points to itself */
625 e->data.submenu.name = g_strdup(self->name);
626 e->data.submenu.submenu = self;
627 e->data.submenu.show_from = show_from;
628 return e;
631 ObMenuEntry* menu_add_submenu(ObMenu *self, gint id, const gchar *submenu)
633 ObMenuEntry *e;
635 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SUBMENU, id);
636 e->data.submenu.name = g_strdup(submenu);
638 self->entries = g_list_append(self->entries, e);
639 self->more_menu->entries = self->entries; /* keep it in sync */
640 return e;
643 ObMenuEntry* menu_add_separator(ObMenu *self, gint id, const gchar *label)
645 ObMenuEntry *e;
647 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SEPARATOR, id);
649 menu_entry_set_label(e, label, FALSE);
651 self->entries = g_list_append(self->entries, e);
652 self->more_menu->entries = self->entries; /* keep it in sync */
653 return e;
656 void menu_set_show_func(ObMenu *self, ObMenuShowFunc func)
658 self->show_func = func;
661 void menu_set_hide_func(ObMenu *self, ObMenuHideFunc func)
663 self->hide_func = func;
666 void menu_set_update_func(ObMenu *self, ObMenuUpdateFunc func)
668 self->update_func = func;
671 void menu_set_execute_func(ObMenu *self, ObMenuExecuteFunc func)
673 self->execute_func = func;
674 self->more_menu->execute_func = func; /* keep it in sync */
677 void menu_set_cleanup_func(ObMenu *self, ObMenuCleanupFunc func)
679 self->cleanup_func = func;
682 void menu_set_destroy_func(ObMenu *self, ObMenuDestroyFunc func)
684 self->destroy_func = func;
687 void menu_set_place_func(ObMenu *self, ObMenuPlaceFunc func)
689 self->place_func = func;
692 ObMenuEntry* menu_find_entry_id(ObMenu *self, gint id)
694 ObMenuEntry *ret = NULL;
695 GList *it;
697 for (it = self->entries; it; it = g_list_next(it)) {
698 ObMenuEntry *e = it->data;
700 if (e->id == id) {
701 ret = e;
702 break;
705 return ret;
708 void menu_find_submenus(ObMenu *self)
710 GList *it;
712 for (it = self->entries; it; it = g_list_next(it)) {
713 ObMenuEntry *e = it->data;
715 if (e->type == OB_MENU_ENTRY_TYPE_SUBMENU)
716 e->data.submenu.submenu = menu_from_name(e->data.submenu.name);
720 void menu_entry_set_label(ObMenuEntry *self, const gchar *label,
721 gboolean allow_shortcut)
723 switch (self->type) {
724 case OB_MENU_ENTRY_TYPE_SEPARATOR:
725 g_free(self->data.separator.label);
726 self->data.separator.label = g_strdup(label);
727 break;
728 case OB_MENU_ENTRY_TYPE_NORMAL:
729 g_free(self->data.normal.label);
730 g_free(self->data.normal.collate_key);
731 self->data.normal.shortcut =
732 parse_shortcut(label, allow_shortcut, &self->data.normal.label,
733 &self->data.normal.shortcut_position,
734 &self->data.normal.shortcut_always_show);
735 self->data.normal.collate_key =
736 g_utf8_collate_key(self->data.normal.label, -1);
737 break;
738 default:
739 g_assert_not_reached();
743 void menu_show_all_shortcuts(ObMenu *self, gboolean show)
745 self->show_all_shortcuts = show;
748 static int sort_func(const void *a, const void *b) {
749 const ObMenuEntry *e[2] = {*(ObMenuEntry**)a, *(ObMenuEntry**)b};
750 const gchar *k[2];
751 gint i;
753 for (i = 0; i < 2; ++i) {
754 if (e[i]->type == OB_MENU_ENTRY_TYPE_NORMAL)
755 k[i] = e[i]->data.normal.collate_key;
756 else {
757 g_assert(e[i]->type == OB_MENU_ENTRY_TYPE_SUBMENU);
758 if (e[i]->data.submenu.submenu)
759 k[i] = e[i]->data.submenu.submenu->collate_key;
760 else
761 return -1; /* arbitrary really.. the submenu doesn't exist. */
764 return strcmp(k[0], k[1]);
768 @param start The first entry in the range to sort.
769 @param end The last entry in the range to sort.
771 static void sort_range(ObMenu *self, GList *start, GList *end, guint len)
773 ObMenuEntry **ar;
774 GList *it;
775 guint i;
776 if (!len) return;
778 ar = g_slice_alloc(sizeof(ObMenuEntry*) * len);
779 for (i = 0, it = start; it != g_list_next(end); ++i, it = g_list_next(it))
780 ar[i] = it->data;
781 qsort(ar, len, sizeof(ObMenuEntry*), sort_func);
782 for (i = 0, it = start; it != g_list_next(end); ++i, it = g_list_next(it))
783 it->data = ar[i];
784 g_slice_free1(sizeof(ObMenuEntry*) * len, ar);
787 void menu_sort_entries(ObMenu *self)
789 GList *it, *start, *end, *last;
790 guint len;
792 /* need the submenus to know their labels for sorting */
793 menu_find_submenus(self);
795 start = self->entries;
796 len = 0;
797 for (it = self->entries; it; it = g_list_next(it)) {
798 ObMenuEntry *e = it->data;
799 if (e->type == OB_MENU_ENTRY_TYPE_SEPARATOR) {
800 end = g_list_previous(it);
801 sort_range(self, start, end, len);
803 it = g_list_next(it); /* skip over the separator */
804 start = it;
805 len = 0;
807 else
808 len += 1;
809 last = it;
811 sort_range(self, start, last, len);