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.
27 #include "menuframe.h"
31 #include "client_menu.h"
32 #include "client_list_menu.h"
33 #include "client_list_combined_menu.h"
35 #include "parser/parse.h"
37 typedef struct _ObMenuParseState ObMenuParseState
;
39 struct _ObMenuParseState
45 static GHashTable
*menu_hash
= NULL
;
46 static ObParseInst
*menu_parse_inst
;
47 static ObMenuParseState menu_parse_state
;
49 static void menu_destroy_hash_value(ObMenu
*self
);
50 static void parse_menu_item(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
52 static void parse_menu_separator(ObParseInst
*i
,
53 xmlDocPtr doc
, xmlNodePtr node
,
55 static void parse_menu(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
57 static gunichar
parse_shortcut(const gchar
*label
, gboolean allow_shortcut
,
58 gchar
**strippedlabel
, guint
*position
);
61 static void client_dest(ObClient
*client
, gpointer data
)
63 /* menus can be associated with a client, so close any that are since
64 we are disappearing now */
65 menu_frame_hide_all_client(client
);
68 void menu_startup(gboolean reconfig
)
72 gboolean loaded
= FALSE
;
75 menu_hash
= g_hash_table_new_full(g_str_hash
, g_str_equal
, NULL
,
76 (GDestroyNotify
)menu_destroy_hash_value
);
78 client_list_menu_startup(reconfig
);
79 client_list_combined_menu_startup(reconfig
);
80 client_menu_startup();
82 menu_parse_inst
= parse_startup();
84 menu_parse_state
.parent
= NULL
;
85 menu_parse_state
.pipe_creator
= NULL
;
86 parse_register(menu_parse_inst
, "menu", parse_menu
, &menu_parse_state
);
87 parse_register(menu_parse_inst
, "item", parse_menu_item
,
89 parse_register(menu_parse_inst
, "separator",
90 parse_menu_separator
, &menu_parse_state
);
92 for (it
= config_menu_files
; it
; it
= g_slist_next(it
)) {
93 if (parse_load_menu(it
->data
, &doc
, &node
)) {
95 parse_tree(menu_parse_inst
, doc
, node
->children
);
98 g_message(_("Unable to find a valid menu file '%s'"),
99 (const gchar
*)it
->data
);
102 if (parse_load_menu("menu.xml", &doc
, &node
)) {
103 parse_tree(menu_parse_inst
, doc
, node
->children
);
106 g_message(_("Unable to find a valid menu file '%s'"),
110 g_assert(menu_parse_state
.parent
== NULL
);
113 client_add_destructor(client_dest
, NULL
);
116 void menu_shutdown(gboolean reconfig
)
119 client_remove_destructor(client_dest
);
121 parse_shutdown(menu_parse_inst
);
122 menu_parse_inst
= NULL
;
124 client_list_menu_shutdown(reconfig
);
125 client_list_combined_menu_shutdown(reconfig
);
127 menu_frame_hide_all();
128 g_hash_table_destroy(menu_hash
);
132 static gboolean
menu_pipe_submenu(gpointer key
, gpointer val
, gpointer data
)
135 return menu
->pipe_creator
== data
;
138 void menu_pipe_execute(ObMenu
*self
)
148 if (!g_spawn_command_line_sync(self
->execute
, &output
, NULL
, NULL
, &err
)) {
149 g_message(_("Failed to execute command for pipe-menu '%s': %s"),
150 self
->execute
, err
->message
);
155 if (parse_load_mem(output
, strlen(output
),
156 "openbox_pipe_menu", &doc
, &node
))
158 g_hash_table_foreach_remove(menu_hash
, menu_pipe_submenu
, self
);
159 menu_clear_entries(self
);
161 menu_parse_state
.pipe_creator
= self
;
162 menu_parse_state
.parent
= self
;
163 parse_tree(menu_parse_inst
, doc
, node
->children
);
166 g_message(_("Invalid output from pipe-menu '%s'"), self
->execute
);
172 static ObMenu
* menu_from_name(gchar
*name
)
176 g_assert(name
!= NULL
);
178 if (!(self
= g_hash_table_lookup(menu_hash
, name
)))
179 g_message(_("Attempted to access menu '%s' but it does not exist"),
184 #define VALID_SHORTCUT(c) (((c) >= '0' && (c) <= '9') || \
185 ((c) >= 'A' && (c) <= 'Z') || \
186 ((c) >= 'a' && (c) <= 'z'))
188 static gunichar
parse_shortcut(const gchar
*label
, gboolean allow_shortcut
,
189 gchar
**strippedlabel
, guint
*position
)
191 gunichar shortcut
= 0;
195 g_assert(strippedlabel
!= NULL
);
198 *strippedlabel
= NULL
;
202 *strippedlabel
= g_strdup(label
);
204 /* if allow_shortcut is false, then you can't use the &, instead you
205 have to just use the first valid character
208 i
= strchr(*strippedlabel
, '&');
209 if (allow_shortcut
&& i
!= NULL
) {
210 /* there is an ampersand in the string */
212 /* you have to use a printable ascii character for shortcuts
213 don't allow space either, so you can have like "a & b"
215 if (VALID_SHORTCUT(*(i
+1))) {
216 shortcut
= g_unichar_tolower(g_utf8_get_char(i
+1));
217 *position
= i
- *strippedlabel
;
219 /* remove the & from the string */
220 for (; *i
!= '\0'; ++i
)
224 /* there is no ampersand, so find the first valid character to use
227 for (i
= *strippedlabel
; *i
!= '\0'; ++i
)
228 if (VALID_SHORTCUT(*i
)) {
229 *position
= i
- *strippedlabel
;
230 shortcut
= g_unichar_tolower(g_utf8_get_char(i
));
238 static void parse_menu_item(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
241 ObMenuParseState
*state
= data
;
245 if (parse_attr_string("label", node
, &label
)) {
248 for (node
= node
->children
; node
; node
= node
->next
)
249 if (!xmlStrcasecmp(node
->name
, (const xmlChar
*) "action")) {
250 ObAction
*a
= action_parse
251 (i
, doc
, node
, OB_USER_ACTION_MENU_SELECTION
);
253 acts
= g_slist_append(acts
, a
);
255 menu_add_normal(state
->parent
, -1, label
, acts
, FALSE
);
261 static void parse_menu_separator(ObParseInst
*i
,
262 xmlDocPtr doc
, xmlNodePtr node
,
265 ObMenuParseState
*state
= data
;
270 if (!parse_attr_string("label", node
, &label
))
273 menu_add_separator(state
->parent
, -1, label
);
278 static void parse_menu(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
281 ObMenuParseState
*state
= data
;
282 gchar
*name
= NULL
, *title
= NULL
, *script
= NULL
;
285 if (!parse_attr_string("id", node
, &name
))
286 goto parse_menu_fail
;
288 if (!g_hash_table_lookup(menu_hash
, name
)) {
289 if (!parse_attr_string("label", node
, &title
))
290 goto parse_menu_fail
;
292 if ((menu
= menu_new(name
, title
, FALSE
, NULL
))) {
293 menu
->pipe_creator
= state
->pipe_creator
;
294 if (parse_attr_string("execute", node
, &script
)) {
295 menu
->execute
= parse_expand_tilde(script
);
300 state
->parent
= menu
;
301 parse_tree(i
, doc
, node
->children
);
308 menu_add_submenu(state
->parent
, -1, name
);
316 ObMenu
* menu_new(const gchar
*name
, const gchar
*title
,
317 gboolean allow_shortcut_selection
, gpointer data
)
321 self
= g_new0(ObMenu
, 1);
322 self
->name
= g_strdup(name
);
325 self
->shortcut
= parse_shortcut(title
, allow_shortcut_selection
,
326 &self
->title
, &self
->shortcut_position
);
328 g_hash_table_replace(menu_hash
, self
->name
, self
);
330 self
->more_menu
= g_new0(ObMenu
, 1);
331 self
->more_menu
->name
= _("More...");
332 self
->more_menu
->title
= _("More...");
333 self
->more_menu
->data
= data
;
334 self
->more_menu
->shortcut
= g_unichar_tolower(g_utf8_get_char("M"));
339 static void menu_destroy_hash_value(ObMenu
*self
)
341 /* make sure its not visible */
346 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
349 menu_frame_hide_all();
353 if (self
->destroy_func
)
354 self
->destroy_func(self
, self
->data
);
356 menu_clear_entries(self
);
359 g_free(self
->execute
);
360 g_free(self
->more_menu
);
365 void menu_free(ObMenu
*menu
)
368 g_hash_table_remove(menu_hash
, menu
->name
);
371 void menu_show(gchar
*name
, gint x
, gint y
, gint button
, ObClient
*client
)
376 if (!(self
= menu_from_name(name
))
377 || keyboard_interactively_grabbed()) return;
379 /* if the requested menu is already the top visible menu, then don't
381 if (menu_frame_visible
) {
382 frame
= menu_frame_visible
->data
;
383 if (frame
->menu
== self
)
387 menu_frame_hide_all();
389 frame
= menu_frame_new(self
, 0, client
);
390 if (!menu_frame_show_topmenu(frame
, x
, y
, button
))
391 menu_frame_free(frame
);
392 else if (frame
->entries
) {
393 /* select the first entry if it's not a submenu */
394 ObMenuEntryFrame
*e
= frame
->entries
->data
;
395 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
)
396 menu_frame_select(frame
, e
, FALSE
);
400 static ObMenuEntry
* menu_entry_new(ObMenu
*menu
, ObMenuEntryType type
, gint id
)
406 self
= g_new0(ObMenuEntry
, 1);
413 case OB_MENU_ENTRY_TYPE_NORMAL
:
414 self
->data
.normal
.enabled
= TRUE
;
416 case OB_MENU_ENTRY_TYPE_SUBMENU
:
417 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
424 void menu_entry_ref(ObMenuEntry
*self
)
429 void menu_entry_unref(ObMenuEntry
*self
)
431 if (self
&& --self
->ref
== 0) {
432 switch (self
->type
) {
433 case OB_MENU_ENTRY_TYPE_NORMAL
:
434 g_free(self
->data
.normal
.label
);
435 while (self
->data
.normal
.actions
) {
436 action_unref(self
->data
.normal
.actions
->data
);
437 self
->data
.normal
.actions
=
438 g_slist_delete_link(self
->data
.normal
.actions
,
439 self
->data
.normal
.actions
);
442 case OB_MENU_ENTRY_TYPE_SUBMENU
:
443 g_free(self
->data
.submenu
.name
);
445 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
453 void menu_clear_entries(ObMenu
*self
)
456 /* assert that the menu isn't visible */
461 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
463 g_assert(f
->menu
!= self
);
468 while (self
->entries
) {
469 menu_entry_unref(self
->entries
->data
);
470 self
->entries
= g_list_delete_link(self
->entries
, self
->entries
);
472 self
->more_menu
->entries
= self
->entries
; /* keep it in sync */
475 void menu_entry_remove(ObMenuEntry
*self
)
477 self
->menu
->entries
= g_list_remove(self
->menu
->entries
, self
);
478 menu_entry_unref(self
);
481 ObMenuEntry
* menu_add_normal(ObMenu
*self
, gint id
, const gchar
*label
,
482 GSList
*actions
, gboolean allow_shortcut
)
486 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_NORMAL
, id
);
487 e
->data
.normal
.actions
= actions
;
489 menu_entry_set_label(e
, label
, allow_shortcut
);
491 self
->entries
= g_list_append(self
->entries
, e
);
492 self
->more_menu
->entries
= self
->entries
; /* keep it in sync */
496 ObMenuEntry
* menu_get_more(ObMenu
*self
, guint show_from
)
499 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SUBMENU
, -1);
500 /* points to itself */
501 e
->data
.submenu
.name
= g_strdup(self
->name
);
502 e
->data
.submenu
.submenu
= self
;
503 e
->data
.submenu
.show_from
= show_from
;
507 ObMenuEntry
* menu_add_submenu(ObMenu
*self
, gint id
, const gchar
*submenu
)
511 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SUBMENU
, id
);
512 e
->data
.submenu
.name
= g_strdup(submenu
);
514 self
->entries
= g_list_append(self
->entries
, e
);
515 self
->more_menu
->entries
= self
->entries
; /* keep it in sync */
519 ObMenuEntry
* menu_add_separator(ObMenu
*self
, gint id
, const gchar
*label
)
523 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SEPARATOR
, id
);
525 menu_entry_set_label(e
, label
, FALSE
);
527 self
->entries
= g_list_append(self
->entries
, e
);
528 self
->more_menu
->entries
= self
->entries
; /* keep it in sync */
532 void menu_set_show_func(ObMenu
*self
, ObMenuShowFunc func
)
534 self
->show_func
= func
;
537 void menu_set_hide_func(ObMenu
*self
, ObMenuHideFunc func
)
539 self
->hide_func
= func
;
542 void menu_set_update_func(ObMenu
*self
, ObMenuUpdateFunc func
)
544 self
->update_func
= func
;
547 void menu_set_execute_func(ObMenu
*self
, ObMenuExecuteFunc func
)
549 self
->execute_func
= func
;
552 void menu_set_destroy_func(ObMenu
*self
, ObMenuDestroyFunc func
)
554 self
->destroy_func
= func
;
557 void menu_set_place_func(ObMenu
*self
, ObMenuPlaceFunc func
)
559 self
->place_func
= func
;
562 ObMenuEntry
* menu_find_entry_id(ObMenu
*self
, gint id
)
564 ObMenuEntry
*ret
= NULL
;
567 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
568 ObMenuEntry
*e
= it
->data
;
578 void menu_find_submenus(ObMenu
*self
)
582 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
583 ObMenuEntry
*e
= it
->data
;
585 if (e
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
586 e
->data
.submenu
.submenu
= menu_from_name(e
->data
.submenu
.name
);
590 void menu_entry_set_label(ObMenuEntry
*self
, const gchar
*label
,
591 gboolean allow_shortcut
)
593 switch (self
->type
) {
594 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
595 g_free(self
->data
.separator
.label
);
596 self
->data
.separator
.label
= g_strdup(label
);
598 case OB_MENU_ENTRY_TYPE_NORMAL
:
599 g_free(self
->data
.normal
.label
);
600 self
->data
.normal
.shortcut
=
601 parse_shortcut(label
, allow_shortcut
, &self
->data
.normal
.label
,
602 &self
->data
.normal
.shortcut_position
);
605 g_assert_not_reached();
609 void menu_show_all_shortcuts(ObMenu
*self
, gboolean show
)
611 self
->show_all_shortcuts
= show
;