Some style changes, less ifdefs.
[mikachu/openbox.git] / openbox / menu.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    menu.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
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.
11
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.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
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"
39 #include "imageload.h"
40
41 typedef struct _ObMenuParseState ObMenuParseState;
42
43 struct _ObMenuParseState
44 {
45     ObMenu *parent;
46     ObMenu *pipe_creator;
47 };
48
49 static GHashTable *menu_hash = NULL;
50 static ObtXmlInst *menu_parse_inst;
51 static ObMenuParseState menu_parse_state;
52 static gboolean menu_can_hide = FALSE;
53
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);
61
62 static void client_dest(ObClient *client, gpointer data)
63 {
64     /* menus can be associated with a client, so close any that are since
65        we are disappearing now */
66     menu_frame_hide_all_client(client);
67 }
68
69 void menu_startup(gboolean reconfig)
70 {
71     gboolean loaded = FALSE;
72     GSList *it;
73
74     menu_hash = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
75                                       (GDestroyNotify)menu_destroy_hash_value);
76
77     client_list_menu_startup(reconfig);
78     client_list_combined_menu_startup(reconfig);
79     client_menu_startup();
80
81     menu_parse_inst = obt_xml_instance_new();
82
83     menu_parse_state.parent = NULL;
84     menu_parse_state.pipe_creator = NULL;
85     obt_xml_register(menu_parse_inst, "menu", parse_menu, &menu_parse_state);
86     obt_xml_register(menu_parse_inst, "item", parse_menu_item,
87                      &menu_parse_state);
88     obt_xml_register(menu_parse_inst, "separator",
89                        parse_menu_separator, &menu_parse_state);
90
91     for (it = config_menu_files; it; it = g_slist_next(it)) {
92         if (obt_xml_load_config_file(menu_parse_inst,
93                                      "openbox",
94                                      it->data,
95                                      "openbox_menu"))
96         {
97             loaded = TRUE;
98             obt_xml_tree_from_root(menu_parse_inst);
99             obt_xml_close(menu_parse_inst);
100         } else
101             g_message(_("Unable to find a valid menu file \"%s\""),
102                       (const gchar*)it->data);
103     }
104     if (!loaded) {
105         if (obt_xml_load_config_file(menu_parse_inst,
106                                      "openbox",
107                                      "menu.xml",
108                                      "openbox_menu"))
109         {
110             obt_xml_tree_from_root(menu_parse_inst);
111             obt_xml_close(menu_parse_inst);
112         } else
113             g_message(_("Unable to find a valid menu file \"%s\""),
114                       "menu.xml");
115     }
116
117     g_assert(menu_parse_state.parent == NULL);
118
119     if (!reconfig)
120         client_add_destroy_notify(client_dest, NULL);
121 }
122
123 void menu_shutdown(gboolean reconfig)
124 {
125     if (!reconfig)
126         client_remove_destroy_notify(client_dest);
127
128     obt_xml_instance_unref(menu_parse_inst);
129     menu_parse_inst = NULL;
130
131     client_list_menu_shutdown(reconfig);
132     client_list_combined_menu_shutdown(reconfig);
133
134     menu_frame_hide_all();
135     g_hash_table_destroy(menu_hash);
136     menu_hash = NULL;
137 }
138
139 static gboolean menu_pipe_submenu(gpointer key, gpointer val, gpointer data)
140 {
141     ObMenu *menu = val;
142     return menu->pipe_creator != NULL;
143 }
144
145 static void clear_cache(gpointer key, gpointer val, gpointer data)
146 {
147     ObMenu *menu = val;
148     if (menu->execute)
149         menu_clear_entries(menu);
150 }
151
152 void menu_clear_pipe_caches(void)
153 {
154     /* delete any pipe menus' submenus */
155     g_hash_table_foreach_remove(menu_hash, menu_pipe_submenu, NULL);
156     /* empty the top level pipe menus */
157     g_hash_table_foreach(menu_hash, clear_cache, NULL);
158 }
159
160 void menu_pipe_execute(ObMenu *self)
161 {
162     gchar *output;
163     GError *err = NULL;
164
165     if (!self->execute)
166         return;
167     if (self->entries) /* the entries are already created and cached */
168         return;
169
170     if (!g_spawn_command_line_sync(self->execute, &output, NULL, NULL, &err)) {
171         g_message(_("Failed to execute command for pipe-menu \"%s\": %s"),
172                   self->execute, err->message);
173         g_error_free(err);
174         return;
175     }
176
177     if (obt_xml_load_mem(menu_parse_inst, output, strlen(output),
178                          "openbox_pipe_menu"))
179     {
180         menu_parse_state.pipe_creator = self;
181         menu_parse_state.parent = self;
182         obt_xml_tree_from_root(menu_parse_inst);
183         obt_xml_close(menu_parse_inst);
184     } else {
185         g_message(_("Invalid output from pipe-menu \"%s\""), self->execute);
186     }
187
188     g_free(output);
189 }
190
191 static ObMenu* menu_from_name(gchar *name)
192 {
193     ObMenu *self = NULL;
194
195     g_assert(name != NULL);
196
197     if (!(self = g_hash_table_lookup(menu_hash, name)))
198         g_message(_("Attempted to access menu \"%s\" but it does not exist"),
199                   name);
200     return self;
201 }
202
203 #define VALID_SHORTCUT(c) (((c) >= '0' && (c) <= '9') || \
204                            ((c) >= 'A' && (c) <= 'Z') || \
205                            ((c) >= 'a' && (c) <= 'z'))
206
207 static gunichar parse_shortcut(const gchar *label, gboolean allow_shortcut,
208                                gchar **strippedlabel, guint *position,
209                                gboolean *always_show)
210 {
211     gunichar shortcut = 0;
212
213     *position = 0;
214     *always_show = FALSE;
215
216     g_assert(strippedlabel != NULL);
217
218     if (label == NULL) {
219         *strippedlabel = NULL;
220     } else {
221         gchar *i;
222
223         *strippedlabel = g_strdup(label);
224
225         /* if allow_shortcut is false, then you can't use the '_', instead you
226            have to just use the first valid character
227         */
228
229         i = strchr(*strippedlabel, '_');
230         if (allow_shortcut && i != NULL) {
231             /* there is an underscore in the string */
232
233             /* you have to use a printable ascii character for shortcuts
234                don't allow space either, so you can have like "a _ b"
235             */
236             if (VALID_SHORTCUT(*(i+1)) || *(i+1) == '_') {
237                 /* Allow you to escape the first _ by putting __ */
238                 if (*(i+1) != '_') {
239                     shortcut = g_unichar_tolower(g_utf8_get_char(i+1));
240                     *position = i - *strippedlabel;
241                     *always_show = TRUE;
242                 }
243
244                 /* remove the '_' from the string */
245                 for (; *i != '\0'; ++i)
246                     *i = *(i+1);
247             } else if (*(i+1) == '\0') {
248                 /* no default shortcut if the '_' is the last character
249                    (eg. "Exit_") for menu entries that you don't want
250                    to be executed by mistake
251                 */
252                     *i = '\0';
253             }
254         } else {
255             /* there is no underscore, so find the first valid character to use
256                instead */
257
258             for (i = *strippedlabel; *i != '\0'; ++i)
259                 if (VALID_SHORTCUT(*i)) {
260                     *position = i - *strippedlabel;
261                     shortcut = g_unichar_tolower(g_utf8_get_char(i));
262                     break;
263                 }
264         }
265     }
266     return shortcut;
267 }
268
269 static void parse_menu_item(xmlNodePtr node,  gpointer data)
270 {
271     ObMenuParseState *state = data;
272     gchar *label;
273     gchar *icon;
274     ObMenuEntry *e;
275
276     if (state->parent) {
277         /* Don't try to extract "icon" attribute if icons in user-defined
278            menus are not enabled. */
279         if (!(config_menu_user_show_icons &&
280             obt_xml_attr_string(node, "icon", &icon)))
281         {
282             icon = NULL;
283         }
284
285         if (obt_xml_attr_string(node, "label", &label)) {
286             GSList *acts = NULL;
287
288             node = obt_xml_find_node(node->children, "action");
289             while (node) {
290                 ObActionsAct *action = actions_parse(node);
291                 if (action)
292                     acts = g_slist_append(acts, action);
293                 node = obt_xml_find_node(node->next, "action");
294             }
295             e = menu_add_normal(state->parent, -1, label, acts, TRUE);
296             
297             if (icon) { /* Icon will be used. */
298                 e->data.normal.icon = RrImageFetchFromFile(ob_rr_icons, icon);
299                 if (e->data.normal.icon)
300                     e->data.normal.icon_alpha = 0xff;
301                 g_free(icon);
302             }
303             g_free(label);
304         }
305     }
306 }
307
308 static void parse_menu_separator(xmlNodePtr node, gpointer data)
309 {
310     ObMenuParseState *state = data;
311
312     if (state->parent) {
313         gchar *label;
314
315         if (!obt_xml_attr_string(node, "label", &label))
316             label = NULL;
317
318         menu_add_separator(state->parent, -1, label);
319         g_free(label);
320     }
321 }
322
323 static void parse_menu(xmlNodePtr node, gpointer data)
324 {
325     ObMenuParseState *state = data;
326     gchar *name = NULL, *title = NULL, *script = NULL;
327     ObMenu *menu;
328
329     if (!obt_xml_attr_string(node, "id", &name))
330         goto parse_menu_fail;
331
332     if (!g_hash_table_lookup(menu_hash, name)) {
333         if (!obt_xml_attr_string(node, "label", &title))
334             goto parse_menu_fail;
335
336         if ((menu = menu_new(name, title, TRUE, NULL))) {
337             menu->pipe_creator = state->pipe_creator;
338             if (obt_xml_attr_string(node, "execute", &script)) {
339                 menu->execute = obt_paths_expand_tilde(script);
340             } else {
341                 ObMenu *old;
342
343                 old = state->parent;
344                 state->parent = menu;
345                 obt_xml_tree(menu_parse_inst, node->children);
346                 state->parent = old;
347             }
348         }
349     }
350
351     if (state->parent)
352         menu_add_submenu(state->parent, -1, name);
353
354 parse_menu_fail:
355     g_free(name);
356     g_free(title);
357     g_free(script);
358 }
359
360 ObMenu* menu_new(const gchar *name, const gchar *title,
361                  gboolean allow_shortcut_selection, gpointer data)
362 {
363     ObMenu *self;
364
365     self = g_new0(ObMenu, 1);
366     self->name = g_strdup(name);
367     self->data = data;
368
369     self->shortcut = parse_shortcut(title, allow_shortcut_selection,
370                                     &self->title, &self->shortcut_position,
371                                     &self->shortcut_always_show);
372
373     g_hash_table_replace(menu_hash, self->name, self);
374
375     /* Each menu has a single more_menu.  When the menu spills past what
376        can fit on the screen, a new menu frame entry is created from this
377        more_menu, and a new menu frame for the submenu is created for this
378        menu, also pointing to the more_menu.
379
380        This can be done multiple times using the same more_menu.
381
382        more_menu->more_menu will always be NULL, since there is only 1 for
383        each menu. */
384     self->more_menu = g_new0(ObMenu, 1);
385     self->more_menu->name = _("More...");
386     self->more_menu->title = _("More...");
387     self->more_menu->data = data;
388     self->more_menu->shortcut = g_unichar_tolower(g_utf8_get_char("M"));
389
390     return self;
391 }
392
393 static void menu_destroy_hash_value(ObMenu *self)
394 {
395     /* make sure its not visible */
396     {
397         GList *it;
398         ObMenuFrame *f;
399
400         for (it = menu_frame_visible; it; it = g_list_next(it)) {
401             f = it->data;
402             if (f->menu == self)
403                 menu_frame_hide_all();
404         }
405     }
406
407     if (self->destroy_func)
408         self->destroy_func(self, self->data);
409
410     menu_clear_entries(self);
411     g_free(self->name);
412     g_free(self->title);
413     g_free(self->execute);
414     g_free(self->more_menu);
415
416     g_free(self);
417 }
418
419 void menu_free(ObMenu *menu)
420 {
421     if (menu)
422         g_hash_table_remove(menu_hash, menu->name);
423 }
424
425 static gboolean menu_hide_delay_func(gpointer data)
426 {
427     menu_can_hide = TRUE;
428     return FALSE; /* no repeat */
429 }
430
431 void menu_show(gchar *name, gint x, gint y, gboolean mouse, ObClient *client)
432 {
433     ObMenu *self;
434     ObMenuFrame *frame;
435
436     if (!(self = menu_from_name(name)) ||
437         grab_on_keyboard() || grab_on_pointer()) return;
438
439     /* if the requested menu is already the top visible menu, then don't
440        bother */
441     if (menu_frame_visible) {
442         frame = menu_frame_visible->data;
443         if (frame->menu == self)
444             return;
445     }
446
447     menu_frame_hide_all();
448
449     /* clear the pipe menus when showing a new menu */
450     menu_clear_pipe_caches();
451
452     frame = menu_frame_new(self, 0, client);
453     if (!menu_frame_show_topmenu(frame, x, y, mouse))
454         menu_frame_free(frame);
455     else {
456         if (!mouse) {
457             /* select the first entry if it's not a submenu and we opened
458              * the menu with the keyboard, and skip all headers */
459             GList *it = frame->entries;
460             while (it) {
461                 ObMenuEntryFrame *e = it->data;
462                 if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL) {
463                     menu_frame_select(frame, e, FALSE);
464                     break;
465                 } else if (e->entry->type == OB_MENU_ENTRY_TYPE_SEPARATOR)
466                     it = g_list_next(it);
467                 else
468                     break;
469             }
470         }
471
472         /* reset the hide timer */
473         if (!mouse)
474             menu_can_hide = TRUE;
475         else {
476             menu_can_hide = FALSE;
477             obt_main_loop_timeout_add(ob_main_loop,
478                                       config_menu_hide_delay * 1000,
479                                       menu_hide_delay_func,
480                                       NULL, g_direct_equal, NULL);
481         }
482     }
483 }
484
485 gboolean menu_hide_delay_reached(void)
486 {
487     return menu_can_hide;
488 }
489
490 static ObMenuEntry* menu_entry_new(ObMenu *menu, ObMenuEntryType type, gint id)
491 {
492     ObMenuEntry *self;
493
494     g_assert(menu);
495
496     self = g_new0(ObMenuEntry, 1);
497     self->ref = 1;
498     self->type = type;
499     self->menu = menu;
500     self->id = id;
501
502     switch (type) {
503     case OB_MENU_ENTRY_TYPE_NORMAL:
504         self->data.normal.enabled = TRUE;
505         break;
506     case OB_MENU_ENTRY_TYPE_SUBMENU:
507     case OB_MENU_ENTRY_TYPE_SEPARATOR:
508         break;
509     }
510
511     return self;
512 }
513
514 void menu_entry_ref(ObMenuEntry *self)
515 {
516     ++self->ref;
517 }
518
519 void menu_entry_unref(ObMenuEntry *self)
520 {
521     if (self && --self->ref == 0) {
522         switch (self->type) {
523         case OB_MENU_ENTRY_TYPE_NORMAL:
524             RrImageUnref(self->data.normal.icon);
525             g_free(self->data.normal.label);
526             while (self->data.normal.actions) {
527                 actions_act_unref(self->data.normal.actions->data);
528                 self->data.normal.actions =
529                     g_slist_delete_link(self->data.normal.actions,
530                                         self->data.normal.actions);
531             }
532             break;
533         case OB_MENU_ENTRY_TYPE_SUBMENU:
534             g_free(self->data.submenu.name);
535             break;
536         case OB_MENU_ENTRY_TYPE_SEPARATOR:
537             g_free(self->data.separator.label);
538             break;
539         }
540
541         g_free(self);
542     }
543 }
544
545 void menu_clear_entries(ObMenu *self)
546 {
547 #ifdef DEBUG
548     /* assert that the menu isn't visible */
549     {
550         GList *it;
551         ObMenuFrame *f;
552
553         for (it = menu_frame_visible; it; it = g_list_next(it)) {
554             f = it->data;
555             g_assert(f->menu != self);
556         }
557     }
558 #endif
559
560     while (self->entries) {
561         menu_entry_unref(self->entries->data);
562         self->entries = g_list_delete_link(self->entries, self->entries);
563     }
564     self->more_menu->entries = self->entries; /* keep it in sync */
565 }
566
567 void menu_entry_remove(ObMenuEntry *self)
568 {
569     self->menu->entries = g_list_remove(self->menu->entries, self);
570     menu_entry_unref(self);
571 }
572
573 ObMenuEntry* menu_add_normal(ObMenu *self, gint id, const gchar *label,
574                              GSList *actions, gboolean allow_shortcut)
575 {
576     ObMenuEntry *e;
577
578     e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_NORMAL, id);
579     e->data.normal.actions = actions;
580
581     menu_entry_set_label(e, label, allow_shortcut);
582
583     self->entries = g_list_append(self->entries, e);
584     self->more_menu->entries = self->entries; /* keep it in sync */
585     return e;
586 }
587
588 ObMenuEntry* menu_get_more(ObMenu *self, guint show_from)
589 {
590     ObMenuEntry *e;
591     e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SUBMENU, -1);
592     /* points to itself */
593     e->data.submenu.name = g_strdup(self->name);
594     e->data.submenu.submenu = self;
595     e->data.submenu.show_from = show_from;
596     return e;
597 }
598
599 ObMenuEntry* menu_add_submenu(ObMenu *self, gint id, const gchar *submenu)
600 {
601     ObMenuEntry *e;
602
603     e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SUBMENU, id);
604     e->data.submenu.name = g_strdup(submenu);
605
606     self->entries = g_list_append(self->entries, e);
607     self->more_menu->entries = self->entries; /* keep it in sync */
608     return e;
609 }
610
611 ObMenuEntry* menu_add_separator(ObMenu *self, gint id, const gchar *label)
612 {
613     ObMenuEntry *e;
614
615     e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SEPARATOR, id);
616
617     menu_entry_set_label(e, label, FALSE);
618
619     self->entries = g_list_append(self->entries, e);
620     self->more_menu->entries = self->entries; /* keep it in sync */
621     return e;
622 }
623
624 void menu_set_show_func(ObMenu *self, ObMenuShowFunc func)
625 {
626     self->show_func = func;
627 }
628
629 void menu_set_hide_func(ObMenu *self, ObMenuHideFunc func)
630 {
631     self->hide_func = func;
632 }
633
634 void menu_set_update_func(ObMenu *self, ObMenuUpdateFunc func)
635 {
636     self->update_func = func;
637 }
638
639 void menu_set_execute_func(ObMenu *self, ObMenuExecuteFunc func)
640 {
641     self->execute_func = func;
642     self->more_menu->execute_func = func; /* keep it in sync */
643 }
644
645 void menu_set_destroy_func(ObMenu *self, ObMenuDestroyFunc func)
646 {
647     self->destroy_func = func;
648 }
649
650 void menu_set_place_func(ObMenu *self, ObMenuPlaceFunc func)
651 {
652     self->place_func = func;
653 }
654
655 ObMenuEntry* menu_find_entry_id(ObMenu *self, gint id)
656 {
657     ObMenuEntry *ret = NULL;
658     GList *it;
659
660     for (it = self->entries; it; it = g_list_next(it)) {
661         ObMenuEntry *e = it->data;
662
663         if (e->id == id) {
664             ret = e;
665             break;
666         }
667     }
668     return ret;
669 }
670
671 void menu_find_submenus(ObMenu *self)
672 {
673     GList *it;
674
675     for (it = self->entries; it; it = g_list_next(it)) {
676         ObMenuEntry *e = it->data;
677
678         if (e->type == OB_MENU_ENTRY_TYPE_SUBMENU)
679             e->data.submenu.submenu = menu_from_name(e->data.submenu.name);
680     }
681 }
682
683 void menu_entry_set_label(ObMenuEntry *self, const gchar *label,
684                           gboolean allow_shortcut)
685 {
686     switch (self->type) {
687     case OB_MENU_ENTRY_TYPE_SEPARATOR:
688         g_free(self->data.separator.label);
689         self->data.separator.label = g_strdup(label);
690         break;
691     case OB_MENU_ENTRY_TYPE_NORMAL:
692         g_free(self->data.normal.label);
693         self->data.normal.shortcut =
694             parse_shortcut(label, allow_shortcut, &self->data.normal.label,
695                            &self->data.normal.shortcut_position,
696                            &self->data.normal.shortcut_always_show);
697         break;
698     default:
699         g_assert_not_reached();
700     }
701 }
702
703 void menu_show_all_shortcuts(ObMenu *self, gboolean show)
704 {
705     self->show_all_shortcuts = show;
706 }