]> Dogcows Code - chaz/openbox/blob - openbox/client_list_combined_menu.c
make the combined client list menu not suck quite as bad
[chaz/openbox] / openbox / client_list_combined_menu.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 client_list_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 "openbox.h"
21 #include "menu.h"
22 #include "menuframe.h"
23 #include "action.h"
24 #include "screen.h"
25 #include "client.h"
26 #include "focus.h"
27 #include "config.h"
28 #include "gettext.h"
29
30 #include <glib.h>
31
32 #define MENU_NAME "client-list-combined-menu"
33
34 ObMenu *combined_menu;
35
36 static void self_update(ObMenuFrame *frame, gpointer data)
37 {
38 ObMenu *menu = frame->menu;
39 ObMenuEntry *e;
40 GList *it;
41 gint i;
42 gboolean icons = FALSE;
43 guint desktop;
44
45 menu_clear_entries(menu);
46
47 for (desktop = 0; desktop < screen_num_desktops; desktop++) {
48 gboolean empty = TRUE;
49
50 menu_add_separator(menu, -1);
51 e = menu_add_normal(menu, -1, NULL, NULL);
52 e->data.normal.enabled = FALSE;
53 e->data.normal.label = g_strdup(screen_desktop_names[desktop]);
54 menu_add_separator(menu, -1);
55 for (it = focus_order[desktop], i = 0; it; it = g_list_next(it), ++i) {
56 ObClient *c = it->data;
57 if (client_normal(c) && (!c->skip_taskbar || c->iconic)) {
58 GSList *acts = NULL;
59 ObAction* act;
60 const ObClientIcon *icon;
61
62 empty = FALSE;
63
64 if (!icons && c->iconic) {
65 icons = TRUE;
66 menu_add_separator(menu, -1);
67 }
68
69 act = action_from_string("Activate",
70 OB_USER_ACTION_MENU_SELECTION);
71 act->data.activate.any.c = c;
72 acts = g_slist_append(acts, act);
73 act = action_from_string("Desktop",
74 OB_USER_ACTION_MENU_SELECTION);
75 act->data.desktop.desk = desktop;
76 acts = g_slist_append(acts, act);
77 e = menu_add_normal(menu, i, (c->iconic ?
78 c->icon_title : c->title), acts);
79
80 if (config_menu_client_list_icons
81 && (icon = client_icon(c, 32, 32))) {
82 e->data.normal.icon_width = icon->width;
83 e->data.normal.icon_height = icon->height;
84 e->data.normal.icon_data = icon->data;
85 }
86 }
87 }
88 icons = FALSE;
89
90 if (empty) {
91 /* no entries */
92
93 GSList *acts = NULL;
94 ObAction* act;
95 ObMenuEntry *e;
96
97 act = action_from_string("Desktop", OB_USER_ACTION_MENU_SELECTION);
98 act->data.desktop.desk = desktop;
99 acts = g_slist_append(acts, act);
100 e = menu_add_normal(menu, 0, _("Go there..."), acts);
101 if (desktop == screen_desktop)
102 e->data.normal.enabled = FALSE;
103 }
104 }
105 }
106
107 /* executes it using the client in the actions, since we set that
108 when we make the actions! */
109 static void menu_execute(ObMenuEntry *self, guint state, gpointer data,
110 Time time)
111 {
112 ObAction *a;
113
114 if (self->data.normal.actions) {
115 a = self->data.normal.actions->data;
116 action_run(self->data.normal.actions, a->data.any.c, state, time);
117 }
118 }
119
120 static void client_dest(ObClient *client, gpointer data)
121 {
122 /* This concise function removes all references to a closed
123 * client in the client_list_menu, so we don't have to check
124 * in client.c */
125 GList *eit;
126 for (eit = combined_menu->entries; eit; eit = g_list_next(eit)) {
127 ObMenuEntry *meit = eit->data;
128 if (meit->type == OB_MENU_ENTRY_TYPE_NORMAL &&
129 meit->data.normal.actions)
130 {
131 ObAction *a = meit->data.normal.actions->data;
132 ObClient *c = a->data.any.c;
133 if (c == client)
134 a->data.any.c = NULL;
135 }
136 }
137 }
138
139 void client_list_combined_menu_startup(gboolean reconfig)
140 {
141 if (!reconfig)
142 client_add_destructor(client_dest, NULL);
143
144 combined_menu = menu_new(MENU_NAME, _("Windows"), NULL);
145 menu_set_update_func(combined_menu, self_update);
146 menu_set_execute_func(combined_menu, menu_execute);
147 }
148
149 void client_list_combined_menu_shutdown(gboolean reconfig)
150 {
151 if (!reconfig)
152 client_remove_destructor(client_dest);
153 }
This page took 0.044406 seconds and 5 git commands to generate.