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
, gchar
**strippedlabel
,
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
, gchar
**strippedlabel
,
191 gunichar shortcut
= 0;
195 g_assert(strippedlabel
!= NULL
);
198 *strippedlabel
= NULL
;
202 *strippedlabel
= g_strdup(label
);
204 i
= strchr(*strippedlabel
, '&');
206 /* there is an ampersand in the string */
208 /* you have to use a printable ascii character for shortcuts
209 don't allow space either, so you can have like "a & b"
211 if (VALID_SHORTCUT(*(i
+1))) {
212 shortcut
= g_unichar_tolower(g_utf8_get_char(i
+1));
213 *position
= i
- *strippedlabel
;
215 /* remove the & from the string */
216 for (; *i
!= '\0'; ++i
)
220 /* there is no ampersand, so find the first valid character to use
223 for (i
= *strippedlabel
; *i
!= '\0'; ++i
)
224 if (VALID_SHORTCUT(*i
)) {
225 *position
= i
- *strippedlabel
;
226 shortcut
= g_unichar_tolower(g_utf8_get_char(i
));
234 static void parse_menu_item(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
237 ObMenuParseState
*state
= data
;
241 if (parse_attr_string("label", node
, &label
)) {
244 for (node
= node
->children
; node
; node
= node
->next
)
245 if (!xmlStrcasecmp(node
->name
, (const xmlChar
*) "action")) {
246 ObAction
*a
= action_parse
247 (i
, doc
, node
, OB_USER_ACTION_MENU_SELECTION
);
249 acts
= g_slist_append(acts
, a
);
251 menu_add_normal(state
->parent
, -1, label
, acts
);
257 static void parse_menu_separator(ObParseInst
*i
,
258 xmlDocPtr doc
, xmlNodePtr node
,
261 ObMenuParseState
*state
= data
;
266 if (!parse_attr_string("label", node
, &label
))
269 menu_add_separator(state
->parent
, -1, label
);
274 static void parse_menu(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
277 ObMenuParseState
*state
= data
;
278 gchar
*name
= NULL
, *title
= NULL
, *script
= NULL
;
281 if (!parse_attr_string("id", node
, &name
))
282 goto parse_menu_fail
;
284 if (!g_hash_table_lookup(menu_hash
, name
)) {
285 if (!parse_attr_string("label", node
, &title
))
286 goto parse_menu_fail
;
288 if ((menu
= menu_new(name
, title
, NULL
))) {
289 menu
->pipe_creator
= state
->pipe_creator
;
290 if (parse_attr_string("execute", node
, &script
)) {
291 menu
->execute
= parse_expand_tilde(script
);
296 state
->parent
= menu
;
297 parse_tree(i
, doc
, node
->children
);
304 menu_add_submenu(state
->parent
, -1, name
);
312 ObMenu
* menu_new(const gchar
*name
, const gchar
*title
, gpointer data
)
316 self
= g_new0(ObMenu
, 1);
317 self
->name
= g_strdup(name
);
320 self
->shortcut
= parse_shortcut(title
, &self
->title
,
321 &self
->shortcut_position
);
323 g_hash_table_replace(menu_hash
, self
->name
, self
);
328 static void menu_destroy_hash_value(ObMenu
*self
)
330 /* make sure its not visible */
335 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
338 menu_frame_hide_all();
342 if (self
->destroy_func
)
343 self
->destroy_func(self
, self
->data
);
345 menu_clear_entries(self
);
348 g_free(self
->execute
);
353 void menu_free(ObMenu
*menu
)
355 g_hash_table_remove(menu_hash
, menu
->name
);
358 void menu_show(gchar
*name
, gint x
, gint y
, ObClient
*client
)
363 if (!(self
= menu_from_name(name
))
364 || keyboard_interactively_grabbed()) return;
366 /* if the requested menu is already the top visible menu, then don't
368 if (menu_frame_visible
) {
369 frame
= menu_frame_visible
->data
;
370 if (frame
->menu
== self
)
374 menu_frame_hide_all();
376 frame
= menu_frame_new(self
, client
);
377 if (!menu_frame_show_topmenu(frame
, x
, y
))
378 menu_frame_free(frame
);
379 else if (frame
->entries
) {
380 ObMenuEntryFrame
*e
= frame
->entries
->data
;
381 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
382 e
->entry
->data
.normal
.enabled
)
383 menu_frame_select(frame
, e
, FALSE
);
387 static ObMenuEntry
* menu_entry_new(ObMenu
*menu
, ObMenuEntryType type
, gint id
)
393 self
= g_new0(ObMenuEntry
, 1);
399 case OB_MENU_ENTRY_TYPE_NORMAL
:
400 self
->data
.normal
.enabled
= TRUE
;
402 case OB_MENU_ENTRY_TYPE_SUBMENU
:
403 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
410 void menu_entry_free(ObMenuEntry
*self
)
413 switch (self
->type
) {
414 case OB_MENU_ENTRY_TYPE_NORMAL
:
415 g_free(self
->data
.normal
.label
);
416 while (self
->data
.normal
.actions
) {
417 action_unref(self
->data
.normal
.actions
->data
);
418 self
->data
.normal
.actions
=
419 g_slist_delete_link(self
->data
.normal
.actions
,
420 self
->data
.normal
.actions
);
423 case OB_MENU_ENTRY_TYPE_SUBMENU
:
424 g_free(self
->data
.submenu
.name
);
426 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
434 void menu_clear_entries(ObMenu
*self
)
437 /* assert that the menu isn't visible */
442 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
444 g_assert(f
->menu
!= self
);
449 while (self
->entries
) {
450 menu_entry_free(self
->entries
->data
);
451 self
->entries
= g_list_delete_link(self
->entries
, self
->entries
);
455 void menu_entry_remove(ObMenuEntry
*self
)
457 self
->menu
->entries
= g_list_remove(self
->menu
->entries
, self
);
458 menu_entry_free(self
);
461 ObMenuEntry
* menu_add_normal(ObMenu
*self
, gint id
, const gchar
*label
,
466 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_NORMAL
, id
);
467 e
->data
.normal
.actions
= actions
;
469 menu_entry_set_label(e
, label
);
471 self
->entries
= g_list_append(self
->entries
, e
);
475 ObMenuEntry
* menu_add_submenu(ObMenu
*self
, gint id
, const gchar
*submenu
)
479 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SUBMENU
, id
);
480 e
->data
.submenu
.name
= g_strdup(submenu
);
482 self
->entries
= g_list_append(self
->entries
, e
);
486 ObMenuEntry
* menu_add_separator(ObMenu
*self
, gint id
, const gchar
*label
)
490 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SEPARATOR
, id
);
492 menu_entry_set_label(e
, label
);
494 self
->entries
= g_list_append(self
->entries
, e
);
498 void menu_set_update_func(ObMenu
*self
, ObMenuUpdateFunc func
)
500 self
->update_func
= func
;
503 void menu_set_execute_func(ObMenu
*self
, ObMenuExecuteFunc func
)
505 self
->execute_func
= func
;
508 void menu_set_destroy_func(ObMenu
*self
, ObMenuDestroyFunc func
)
510 self
->destroy_func
= func
;
513 ObMenuEntry
* menu_find_entry_id(ObMenu
*self
, gint id
)
515 ObMenuEntry
*ret
= NULL
;
518 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
519 ObMenuEntry
*e
= it
->data
;
529 void menu_find_submenus(ObMenu
*self
)
533 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
534 ObMenuEntry
*e
= it
->data
;
536 if (e
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
537 e
->data
.submenu
.submenu
= menu_from_name(e
->data
.submenu
.name
);
541 void menu_entry_set_label(ObMenuEntry
*self
, const gchar
*label
)
543 switch (self
->type
) {
544 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
545 g_free(self
->data
.separator
.label
);
546 self
->data
.separator
.label
= g_strdup(label
);
548 case OB_MENU_ENTRY_TYPE_NORMAL
:
549 g_free(self
->data
.normal
.label
);
550 self
->data
.normal
.shortcut
=
551 parse_shortcut(label
, &self
->data
.normal
.label
,
552 &self
->data
.normal
.shortcut_position
);
555 g_assert_not_reached();
559 void menu_show_all_shortcuts(ObMenu
*self
, gboolean show
)
561 self
->show_all_shortcuts
= show
;