]> Dogcows Code - chaz/openbox/blob - openbox/menu.c
don't menu menus jump around at all anymore. open them on screen in the first place
[chaz/openbox] / 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 Ben 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 "client.h"
25 #include "config.h"
26 #include "screen.h"
27 #include "menuframe.h"
28 #include "keyboard.h"
29 #include "geom.h"
30 #include "misc.h"
31 #include "client_menu.h"
32 #include "client_list_menu.h"
33 #include "client_list_combined_menu.h"
34 #include "parser/parse.h"
35
36 typedef struct _ObMenuParseState ObMenuParseState;
37
38 struct _ObMenuParseState
39 {
40 ObMenu *parent;
41 ObMenu *pipe_creator;
42 };
43
44 static GHashTable *menu_hash = NULL;
45 static ObParseInst *menu_parse_inst;
46 static ObMenuParseState menu_parse_state;
47
48 static void menu_destroy_hash_value(ObMenu *self);
49 static void parse_menu_item(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
50 gpointer data);
51 static void parse_menu_separator(ObParseInst *i,
52 xmlDocPtr doc, xmlNodePtr node,
53 gpointer data);
54 static void parse_menu(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
55 gpointer data);
56
57 static void client_dest(ObClient *client, gpointer data)
58 {
59 /* menus can be associated with a client, so close any that are since
60 we are disappearing now */
61 menu_frame_hide_all_client(client);
62 }
63
64 void menu_startup(gboolean reconfig)
65 {
66 xmlDocPtr doc;
67 xmlNodePtr node;
68 gboolean loaded = FALSE;
69 GSList *it;
70
71 menu_hash = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
72 (GDestroyNotify)menu_destroy_hash_value);
73
74 client_list_menu_startup(reconfig);
75 client_list_combined_menu_startup(reconfig);
76 client_menu_startup();
77
78 menu_parse_inst = parse_startup();
79
80 menu_parse_state.parent = NULL;
81 menu_parse_state.pipe_creator = NULL;
82 parse_register(menu_parse_inst, "menu", parse_menu, &menu_parse_state);
83 parse_register(menu_parse_inst, "item", parse_menu_item,
84 &menu_parse_state);
85 parse_register(menu_parse_inst, "separator",
86 parse_menu_separator, &menu_parse_state);
87
88 for (it = config_menu_files; it; it = g_slist_next(it)) {
89 if (parse_load_menu(it->data, &doc, &node)) {
90 loaded = TRUE;
91 parse_tree(menu_parse_inst, doc, node->children);
92 xmlFreeDoc(doc);
93 }
94 }
95 if (!loaded) {
96 if (parse_load_menu("menu.xml", &doc, &node)) {
97 parse_tree(menu_parse_inst, doc, node->children);
98 xmlFreeDoc(doc);
99 }
100 }
101
102 g_assert(menu_parse_state.parent == NULL);
103
104 if (!reconfig)
105 client_add_destructor(client_dest, NULL);
106 }
107
108 void menu_shutdown(gboolean reconfig)
109 {
110 if (!reconfig)
111 client_remove_destructor(client_dest);
112
113 parse_shutdown(menu_parse_inst);
114 menu_parse_inst = NULL;
115
116 client_list_menu_shutdown(reconfig);
117 client_list_combined_menu_shutdown(reconfig);
118
119 menu_frame_hide_all();
120 g_hash_table_destroy(menu_hash);
121 menu_hash = NULL;
122 }
123
124 static gboolean menu_pipe_submenu(gpointer key, gpointer val, gpointer data)
125 {
126 ObMenu *menu = val;
127 return menu->pipe_creator == data;
128 }
129
130 void menu_pipe_execute(ObMenu *self)
131 {
132 xmlDocPtr doc;
133 xmlNodePtr node;
134 gchar *output;
135 GError *err = NULL;
136
137 if (!self->execute)
138 return;
139
140 if (!g_spawn_command_line_sync(self->execute, &output, NULL, NULL, &err)) {
141 g_warning("Failed to execute command for pipe-menu: %s", err->message);
142 g_error_free(err);
143 return;
144 }
145
146 if (parse_load_mem(output, strlen(output),
147 "openbox_pipe_menu", &doc, &node))
148 {
149 g_hash_table_foreach_remove(menu_hash, menu_pipe_submenu, self);
150 menu_clear_entries(self);
151
152 menu_parse_state.pipe_creator = self;
153 menu_parse_state.parent = self;
154 parse_tree(menu_parse_inst, doc, node->children);
155 xmlFreeDoc(doc);
156 } else {
157 g_warning("Invalid output from pipe-menu: %s", self->execute);
158 }
159
160 g_free(output);
161 }
162
163 static ObMenu* menu_from_name(gchar *name)
164 {
165 ObMenu *self = NULL;
166
167 g_assert(name != NULL);
168
169 if (!(self = g_hash_table_lookup(menu_hash, name)))
170 g_warning("Attempted to access menu '%s' but it does not exist.",
171 name);
172 return self;
173 }
174
175 static void parse_menu_item(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
176 gpointer data)
177 {
178 ObMenuParseState *state = data;
179 gchar *label;
180
181 if (state->parent) {
182 if (parse_attr_string("label", node, &label)) {
183 GSList *acts = NULL;
184
185 for (node = node->children; node; node = node->next)
186 if (!xmlStrcasecmp(node->name, (const xmlChar*) "action")) {
187 ObAction *a = action_parse
188 (i, doc, node, OB_USER_ACTION_MENU_SELECTION);
189 if (a)
190 acts = g_slist_append(acts, a);
191 }
192 menu_add_normal(state->parent, -1, label, acts);
193 g_free(label);
194 }
195 }
196 }
197
198 static void parse_menu_separator(ObParseInst *i,
199 xmlDocPtr doc, xmlNodePtr node,
200 gpointer data)
201 {
202 ObMenuParseState *state = data;
203
204 if (state->parent)
205 menu_add_separator(state->parent, -1);
206 }
207
208 static void parse_menu(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
209 gpointer data)
210 {
211 ObMenuParseState *state = data;
212 gchar *name = NULL, *title = NULL, *script = NULL;
213 ObMenu *menu;
214
215 if (!parse_attr_string("id", node, &name))
216 goto parse_menu_fail;
217
218 if (!g_hash_table_lookup(menu_hash, name)) {
219 if (!parse_attr_string("label", node, &title))
220 goto parse_menu_fail;
221
222 if ((menu = menu_new(name, title, NULL))) {
223 menu->pipe_creator = state->pipe_creator;
224 if (parse_attr_string("execute", node, &script)) {
225 menu->execute = parse_expand_tilde(script);
226 } else {
227 ObMenu *old;
228
229 old = state->parent;
230 state->parent = menu;
231 parse_tree(i, doc, node->children);
232 state->parent = old;
233 }
234 }
235 }
236
237 if (state->parent)
238 menu_add_submenu(state->parent, -1, name);
239
240 parse_menu_fail:
241 g_free(name);
242 g_free(title);
243 g_free(script);
244 }
245
246 ObMenu* menu_new(const gchar *name, const gchar *title, gpointer data)
247 {
248 ObMenu *self;
249
250 self = g_new0(ObMenu, 1);
251 self->name = g_strdup(name);
252 self->title = g_strdup(title);
253 self->data = data;
254
255 g_hash_table_replace(menu_hash, self->name, self);
256
257 return self;
258 }
259
260 static void menu_destroy_hash_value(ObMenu *self)
261 {
262 /* make sure its not visible */
263 {
264 GList *it;
265 ObMenuFrame *f;
266
267 for (it = menu_frame_visible; it; it = g_list_next(it)) {
268 f = it->data;
269 if (f->menu == self)
270 menu_frame_hide_all();
271 }
272 }
273
274 if (self->destroy_func)
275 self->destroy_func(self, self->data);
276
277 menu_clear_entries(self);
278 g_free(self->name);
279 g_free(self->title);
280 g_free(self->execute);
281
282 g_free(self);
283 }
284
285 void menu_free(ObMenu *menu)
286 {
287 g_hash_table_remove(menu_hash, menu->name);
288 }
289
290 void menu_show(gchar *name, gint x, gint y, ObClient *client)
291 {
292 ObMenu *self;
293 ObMenuFrame *frame;
294
295 if (!(self = menu_from_name(name))
296 || keyboard_interactively_grabbed()) return;
297
298 /* if the requested menu is already the top visible menu, then don't
299 bother */
300 if (menu_frame_visible) {
301 frame = menu_frame_visible->data;
302 if (frame->menu == self)
303 return;
304 }
305
306 menu_frame_hide_all();
307
308 frame = menu_frame_new(self, client);
309 if (!menu_frame_show_topmenu(frame, x, y))
310 menu_frame_free(frame);
311 else if (frame->entries) {
312 ObMenuEntryFrame *e = frame->entries->data;
313 if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL &&
314 e->entry->data.normal.enabled)
315 menu_frame_select(frame, e);
316 }
317 }
318
319 static ObMenuEntry* menu_entry_new(ObMenu *menu, ObMenuEntryType type, gint id)
320 {
321 ObMenuEntry *self;
322
323 g_assert(menu);
324
325 self = g_new0(ObMenuEntry, 1);
326 self->type = type;
327 self->menu = menu;
328 self->id = id;
329
330 switch (type) {
331 case OB_MENU_ENTRY_TYPE_NORMAL:
332 self->data.normal.enabled = TRUE;
333 break;
334 case OB_MENU_ENTRY_TYPE_SUBMENU:
335 case OB_MENU_ENTRY_TYPE_SEPARATOR:
336 break;
337 }
338
339 return self;
340 }
341
342 void menu_entry_free(ObMenuEntry *self)
343 {
344 if (self) {
345 switch (self->type) {
346 case OB_MENU_ENTRY_TYPE_NORMAL:
347 g_free(self->data.normal.label);
348 while (self->data.normal.actions) {
349 action_unref(self->data.normal.actions->data);
350 self->data.normal.actions =
351 g_slist_delete_link(self->data.normal.actions,
352 self->data.normal.actions);
353 }
354 break;
355 case OB_MENU_ENTRY_TYPE_SUBMENU:
356 g_free(self->data.submenu.name);
357 break;
358 case OB_MENU_ENTRY_TYPE_SEPARATOR:
359 break;
360 }
361
362 g_free(self);
363 }
364 }
365
366 void menu_clear_entries(ObMenu *self)
367 {
368 #ifdef DEBUG
369 /* assert that the menu isn't visible */
370 {
371 GList *it;
372 ObMenuFrame *f;
373
374 for (it = menu_frame_visible; it; it = g_list_next(it)) {
375 f = it->data;
376 g_assert(f->menu != self);
377 }
378 }
379 #endif
380
381 while (self->entries) {
382 menu_entry_free(self->entries->data);
383 self->entries = g_list_delete_link(self->entries, self->entries);
384 }
385 }
386
387 void menu_entry_remove(ObMenuEntry *self)
388 {
389 self->menu->entries = g_list_remove(self->menu->entries, self);
390 menu_entry_free(self);
391 }
392
393 ObMenuEntry* menu_add_normal(ObMenu *self, gint id, const gchar *label,
394 GSList *actions)
395 {
396 ObMenuEntry *e;
397
398 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_NORMAL, id);
399 e->data.normal.label = g_strdup(label);
400 e->data.normal.actions = actions;
401
402 self->entries = g_list_append(self->entries, e);
403 return e;
404 }
405
406 ObMenuEntry* menu_add_submenu(ObMenu *self, gint id, const gchar *submenu)
407 {
408 ObMenuEntry *e;
409
410 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SUBMENU, id);
411 e->data.submenu.name = g_strdup(submenu);
412
413 self->entries = g_list_append(self->entries, e);
414 return e;
415 }
416
417 ObMenuEntry* menu_add_separator(ObMenu *self, gint id)
418 {
419 ObMenuEntry *e;
420
421 e = menu_entry_new(self, OB_MENU_ENTRY_TYPE_SEPARATOR, id);
422
423 self->entries = g_list_append(self->entries, e);
424 return e;
425 }
426
427 void menu_set_update_func(ObMenu *self, ObMenuUpdateFunc func)
428 {
429 self->update_func = func;
430 }
431
432 void menu_set_execute_func(ObMenu *self, ObMenuExecuteFunc func)
433 {
434 self->execute_func = func;
435 }
436
437 void menu_set_destroy_func(ObMenu *self, ObMenuDestroyFunc func)
438 {
439 self->destroy_func = func;
440 }
441
442 ObMenuEntry* menu_find_entry_id(ObMenu *self, gint id)
443 {
444 ObMenuEntry *ret = NULL;
445 GList *it;
446
447 for (it = self->entries; it; it = g_list_next(it)) {
448 ObMenuEntry *e = it->data;
449
450 if (e->id == id) {
451 ret = e;
452 break;
453 }
454 }
455 return ret;
456 }
457
458 void menu_find_submenus(ObMenu *self)
459 {
460 GList *it;
461
462 for (it = self->entries; it; it = g_list_next(it)) {
463 ObMenuEntry *e = it->data;
464
465 if (e->type == OB_MENU_ENTRY_TYPE_SUBMENU)
466 e->data.submenu.submenu = menu_from_name(e->data.submenu.name);
467 }
468 }
This page took 0.060108 seconds and 5 git commands to generate.