1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 menu.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
26 #include "menuframe.h"
29 #include "client_menu.h"
30 #include "client_list_menu.h"
31 #include "parser/parse.h"
33 typedef struct _ObMenuParseState ObMenuParseState
;
35 struct _ObMenuParseState
41 static GHashTable
*menu_hash
= NULL
;
42 static ObParseInst
*menu_parse_inst
;
43 static ObMenuParseState menu_parse_state
;
45 static void menu_destroy_hash_value(ObMenu
*self
);
46 static void parse_menu_item(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
48 static void parse_menu_separator(ObParseInst
*i
,
49 xmlDocPtr doc
, xmlNodePtr node
,
51 static void parse_menu(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
54 static void client_dest(ObClient
*client
, gpointer data
)
56 /* menus can be associated with a client, so close any that are since
57 we are disappearing now */
58 menu_frame_hide_all_client(client
);
61 void menu_startup(gboolean reconfig
)
65 gboolean loaded
= FALSE
;
68 menu_hash
= g_hash_table_new_full(g_str_hash
, g_str_equal
, NULL
,
69 (GDestroyNotify
)menu_destroy_hash_value
);
71 client_list_menu_startup();
72 client_menu_startup();
74 menu_parse_inst
= parse_startup();
76 menu_parse_state
.parent
= NULL
;
77 menu_parse_state
.pipe_creator
= NULL
;
78 parse_register(menu_parse_inst
, "menu", parse_menu
, &menu_parse_state
);
79 parse_register(menu_parse_inst
, "item", parse_menu_item
,
81 parse_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 (parse_load_menu(it
->data
, &doc
, &node
)) {
87 parse_tree(menu_parse_inst
, doc
, node
->children
);
92 if (parse_load_menu("menu.xml", &doc
, &node
)) {
93 parse_tree(menu_parse_inst
, doc
, node
->children
);
98 g_assert(menu_parse_state
.parent
== NULL
);
101 client_add_destructor(client_dest
, NULL
);
104 void menu_shutdown(gboolean reconfig
)
107 client_remove_destructor(client_dest
);
109 parse_shutdown(menu_parse_inst
);
110 menu_parse_inst
= NULL
;
112 menu_frame_hide_all();
113 g_hash_table_destroy(menu_hash
);
117 static gboolean
menu_pipe_submenu(gpointer key
, gpointer val
, gpointer data
)
120 return menu
->pipe_creator
== data
;
123 void menu_pipe_execute(ObMenu
*self
)
133 if (!g_spawn_command_line_sync(self
->execute
, &output
, NULL
, NULL
, &err
)) {
134 g_warning("Failed to execute command for pipe-menu: %s", err
->message
);
139 if (parse_load_mem(output
, strlen(output
),
140 "openbox_pipe_menu", &doc
, &node
))
142 g_hash_table_foreach_remove(menu_hash
, menu_pipe_submenu
, self
);
143 menu_clear_entries(self
);
145 menu_parse_state
.pipe_creator
= self
;
146 menu_parse_state
.parent
= self
;
147 parse_tree(menu_parse_inst
, doc
, node
->children
);
150 g_warning("Invalid output from pipe-menu: %s", self
->execute
);
156 static ObMenu
* menu_from_name(gchar
*name
)
160 g_assert(name
!= NULL
);
162 if (!(self
= g_hash_table_lookup(menu_hash
, name
)))
163 g_warning("Attempted to access menu '%s' but it does not exist.",
168 static void parse_menu_item(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
171 ObMenuParseState
*state
= data
;
175 if (parse_attr_string("label", node
, &label
)) {
178 for (node
= node
->children
; node
; node
= node
->next
)
179 if (!xmlStrcasecmp(node
->name
, (const xmlChar
*) "action")) {
180 ObAction
*a
= action_parse
181 (i
, doc
, node
, OB_USER_ACTION_MENU_SELECTION
);
183 acts
= g_slist_append(acts
, a
);
185 menu_add_normal(state
->parent
, -1, label
, acts
);
191 static void parse_menu_separator(ObParseInst
*i
,
192 xmlDocPtr doc
, xmlNodePtr node
,
195 ObMenuParseState
*state
= data
;
198 menu_add_separator(state
->parent
, -1);
201 static void parse_menu(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
204 ObMenuParseState
*state
= data
;
205 gchar
*name
= NULL
, *title
= NULL
, *script
= NULL
;
208 if (!parse_attr_string("id", node
, &name
))
209 goto parse_menu_fail
;
211 if (!g_hash_table_lookup(menu_hash
, name
)) {
212 if (!parse_attr_string("label", node
, &title
))
213 goto parse_menu_fail
;
215 if ((menu
= menu_new(name
, title
, NULL
))) {
216 menu
->pipe_creator
= state
->pipe_creator
;
217 if (parse_attr_string("execute", node
, &script
)) {
218 menu
->execute
= parse_expand_tilde(script
);
223 state
->parent
= menu
;
224 parse_tree(i
, doc
, node
->children
);
231 menu_add_submenu(state
->parent
, -1, name
);
239 ObMenu
* menu_new(gchar
*name
, gchar
*title
, gpointer data
)
243 self
= g_new0(ObMenu
, 1);
244 self
->name
= g_strdup(name
);
245 self
->title
= g_strdup(title
);
248 g_hash_table_replace(menu_hash
, self
->name
, self
);
253 static void menu_destroy_hash_value(ObMenu
*self
)
255 /* make sure its not visible */
260 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
263 menu_frame_hide_all();
267 if (self
->destroy_func
)
268 self
->destroy_func(self
, self
->data
);
270 menu_clear_entries(self
);
273 g_free(self
->execute
);
278 void menu_free(ObMenu
*menu
)
280 g_hash_table_remove(menu_hash
, menu
->name
);
283 void menu_show(gchar
*name
, gint x
, gint y
, ObClient
*client
)
289 if (!(self
= menu_from_name(name
))) return;
291 /* if the requested menu is already the top visible menu, then don't
293 if (menu_frame_visible
) {
294 frame
= menu_frame_visible
->data
;
295 if (frame
->menu
== self
)
299 menu_frame_hide_all();
301 frame
= menu_frame_new(self
, client
);
302 if (client
&& x
< 0 && y
< 0) {
303 x
= client
->frame
->area
.x
+ client
->frame
->size
.left
;
304 y
= client
->frame
->area
.y
+ client
->frame
->size
.top
;
305 menu_frame_move(frame
, x
, y
);
307 menu_frame_move(frame
,
308 x
- ob_rr_theme
->bwidth
, y
- ob_rr_theme
->bwidth
);
309 for (i
= 0; i
< screen_num_monitors
; ++i
) {
310 Rect
*a
= screen_physical_area_monitor(i
);
311 if (RECT_CONTAINS(*a
, x
, y
)) {
316 if (!menu_frame_show(frame
, NULL
))
317 menu_frame_free(frame
);
318 else if (frame
->entries
) {
319 ObMenuEntryFrame
*e
= frame
->entries
->data
;
320 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
321 e
->entry
->data
.normal
.enabled
)
322 menu_frame_select(frame
, e
);
326 static ObMenuEntry
* menu_entry_new(ObMenu
*menu
, ObMenuEntryType type
, gint id
)
332 self
= g_new0(ObMenuEntry
, 1);
338 case OB_MENU_ENTRY_TYPE_NORMAL
:
339 self
->data
.normal
.enabled
= TRUE
;
341 case OB_MENU_ENTRY_TYPE_SUBMENU
:
342 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
349 void menu_entry_free(ObMenuEntry
*self
)
352 switch (self
->type
) {
353 case OB_MENU_ENTRY_TYPE_NORMAL
:
354 g_free(self
->data
.normal
.label
);
355 while (self
->data
.normal
.actions
) {
356 action_unref(self
->data
.normal
.actions
->data
);
357 self
->data
.normal
.actions
=
358 g_slist_delete_link(self
->data
.normal
.actions
,
359 self
->data
.normal
.actions
);
362 case OB_MENU_ENTRY_TYPE_SUBMENU
:
363 g_free(self
->data
.submenu
.name
);
365 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
373 void menu_clear_entries(ObMenu
*self
)
376 /* assert that the menu isn't visible */
381 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
383 g_assert(f
->menu
!= self
);
388 while (self
->entries
) {
389 menu_entry_free(self
->entries
->data
);
390 self
->entries
= g_list_delete_link(self
->entries
, self
->entries
);
394 void menu_entry_remove(ObMenuEntry
*self
)
396 self
->menu
->entries
= g_list_remove(self
->menu
->entries
, self
);
397 menu_entry_free(self
);
400 ObMenuEntry
* menu_add_normal(ObMenu
*self
, gint id
, gchar
*label
,
405 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_NORMAL
, id
);
406 e
->data
.normal
.label
= g_strdup(label
);
407 e
->data
.normal
.actions
= actions
;
409 self
->entries
= g_list_append(self
->entries
, e
);
413 ObMenuEntry
* menu_add_submenu(ObMenu
*self
, gint id
, gchar
*submenu
)
417 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SUBMENU
, id
);
418 e
->data
.submenu
.name
= g_strdup(submenu
);
420 self
->entries
= g_list_append(self
->entries
, e
);
424 ObMenuEntry
* menu_add_separator(ObMenu
*self
, gint id
)
428 e
= menu_entry_new(self
, OB_MENU_ENTRY_TYPE_SEPARATOR
, id
);
430 self
->entries
= g_list_append(self
->entries
, e
);
434 void menu_set_update_func(ObMenu
*self
, ObMenuUpdateFunc func
)
436 self
->update_func
= func
;
439 void menu_set_execute_func(ObMenu
*self
, ObMenuExecuteFunc func
)
441 self
->execute_func
= func
;
444 void menu_set_destroy_func(ObMenu
*self
, ObMenuDestroyFunc func
)
446 self
->destroy_func
= func
;
449 ObMenuEntry
* menu_find_entry_id(ObMenu
*self
, gint id
)
451 ObMenuEntry
*ret
= NULL
;
454 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
455 ObMenuEntry
*e
= it
->data
;
465 void menu_find_submenus(ObMenu
*self
)
469 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
470 ObMenuEntry
*e
= it
->data
;
472 if (e
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
473 e
->data
.submenu
.submenu
= menu_from_name(e
->data
.submenu
.name
);