]> Dogcows Code - chaz/openbox/blob - openbox/client_menu.c
cleanups for keyboard menu shotcuts. dont let & set a shortcut from stuff like menu...
[chaz/openbox] / openbox / client_menu.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 client_menu.c for the Openbox window manager
4 Copyright (c) 2003-2007 Dana Jansens
5
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.
10
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.
15
16 See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 #include "debug.h"
20 #include "menu.h"
21 #include "menuframe.h"
22 #include "screen.h"
23 #include "client.h"
24 #include "openbox.h"
25 #include "frame.h"
26 #include "gettext.h"
27
28 #include <glib.h>
29
30 #define CLIENT_MENU_NAME "client-menu"
31 #define SEND_TO_MENU_NAME "client-send-to-menu"
32 #define LAYER_MENU_NAME "client-layer-menu"
33
34 enum {
35 LAYER_TOP,
36 LAYER_NORMAL,
37 LAYER_BOTTOM
38 };
39
40 enum {
41 CLIENT_SEND_TO,
42 CLIENT_LAYER,
43 CLIENT_ICONIFY,
44 CLIENT_MAXIMIZE,
45 CLIENT_RAISE,
46 CLIENT_LOWER,
47 CLIENT_SHADE,
48 CLIENT_DECORATE,
49 CLIENT_MOVE,
50 CLIENT_RESIZE,
51 CLIENT_CLOSE
52 };
53
54 static void client_update(ObMenuFrame *frame, gpointer data)
55 {
56 ObMenu *menu = frame->menu;
57 ObMenuEntry *e;
58 GList *it;
59
60 for (it = menu->entries; it; it = g_list_next(it)) {
61 e = it->data;
62 if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
63 e->data.normal.enabled = !!frame->client;
64 }
65
66 if (!frame->client)
67 return;
68
69 e = menu_find_entry_id(menu, CLIENT_ICONIFY);
70 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_ICONIFY;
71
72 e = menu_find_entry_id(menu, CLIENT_MAXIMIZE);
73 menu_entry_set_label(e,
74 (frame->client->max_vert || frame->client->max_horz ?
75 _("Restor&e") : _("Maximiz&e")), TRUE);
76 e->data.normal.enabled =frame->client->functions & OB_CLIENT_FUNC_MAXIMIZE;
77
78 e = menu_find_entry_id(menu, CLIENT_SHADE);
79 menu_entry_set_label(e, (frame->client->shaded ?
80 _("&Roll down") : _("&Roll up")), TRUE);
81 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_SHADE;
82
83 e = menu_find_entry_id(menu, CLIENT_MOVE);
84 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_MOVE;
85
86 e = menu_find_entry_id(menu, CLIENT_RESIZE);
87 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_RESIZE;
88
89 e = menu_find_entry_id(menu, CLIENT_CLOSE);
90 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_CLOSE;
91
92 e = menu_find_entry_id(menu, CLIENT_DECORATE);
93 e->data.normal.enabled = client_normal(frame->client);
94 }
95
96 static void layer_update(ObMenuFrame *frame, gpointer data)
97 {
98 ObMenu *menu = frame->menu;
99 ObMenuEntry *e;
100 GList *it;
101
102 for (it = menu->entries; it; it = g_list_next(it)) {
103 e = it->data;
104 if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
105 e->data.normal.enabled = !!frame->client;
106 }
107
108 if (!frame->client)
109 return;
110
111 e = menu_find_entry_id(menu, LAYER_TOP);
112 e->data.normal.enabled = !frame->client->above;
113
114 e = menu_find_entry_id(menu, LAYER_NORMAL);
115 e->data.normal.enabled = (frame->client->above || frame->client->below);
116
117 e = menu_find_entry_id(menu, LAYER_BOTTOM);
118 e->data.normal.enabled = !frame->client->below;
119 }
120
121 static void send_to_update(ObMenuFrame *frame, gpointer data)
122 {
123 ObMenu *menu = frame->menu;
124 guint i;
125 GSList *acts;
126 ObAction *act;
127 ObMenuEntry *e;;
128
129 menu_clear_entries(menu);
130
131 if (!frame->client)
132 return;
133
134 for (i = 0; i <= screen_num_desktops; ++i) {
135 const gchar *name;
136 guint desk;
137
138 if (i >= screen_num_desktops) {
139 menu_add_separator(menu, -1, NULL);
140
141 desk = DESKTOP_ALL;
142 name = _("All desktops");
143 } else {
144 desk = i;
145 name = screen_desktop_names[i];
146 }
147
148 act = action_from_string("SendToDesktop",
149 OB_USER_ACTION_MENU_SELECTION);
150 act->data.sendto.desk = desk;
151 act->data.sendto.follow = FALSE;
152 acts = g_slist_prepend(NULL, act);
153 e = menu_add_normal(menu, desk, name, acts, FALSE);
154
155 if (frame->client->desktop == desk)
156 e->data.normal.enabled = FALSE;
157 }
158 }
159
160 void client_menu_startup()
161 {
162 GSList *acts;
163 ObMenu *menu;
164 ObMenuEntry *e;
165
166 menu = menu_new(LAYER_MENU_NAME, _("&Layer"), TRUE, NULL);
167 menu_show_all_shortcuts(menu, TRUE);
168 menu_set_update_func(menu, layer_update);
169
170 acts = g_slist_prepend(NULL, action_from_string
171 ("SendToTopLayer", OB_USER_ACTION_MENU_SELECTION));
172 menu_add_normal(menu, LAYER_TOP, _("Always on &top"), acts, TRUE);
173
174 acts = g_slist_prepend(NULL, action_from_string
175 ("SendToNormalLayer",
176 OB_USER_ACTION_MENU_SELECTION));
177 menu_add_normal(menu, LAYER_NORMAL, _("&Normal"), acts, TRUE);
178
179 acts = g_slist_prepend(NULL, action_from_string
180 ("SendToBottomLayer",
181 OB_USER_ACTION_MENU_SELECTION));
182 menu_add_normal(menu, LAYER_BOTTOM, _("Always on &bottom"),acts, TRUE);
183
184
185 menu = menu_new(SEND_TO_MENU_NAME, _("&Send to desktop"), TRUE, NULL);
186 menu_set_update_func(menu, send_to_update);
187
188
189 menu = menu_new(CLIENT_MENU_NAME, _("Client menu"), TRUE, NULL);
190 menu_show_all_shortcuts(menu, TRUE);
191 menu_set_update_func(menu, client_update);
192
193 menu_add_submenu(menu, CLIENT_SEND_TO, SEND_TO_MENU_NAME);
194
195 menu_add_submenu(menu, CLIENT_LAYER, LAYER_MENU_NAME);
196
197 acts = g_slist_prepend(NULL, action_from_string
198 ("Iconify", OB_USER_ACTION_MENU_SELECTION));
199 e = menu_add_normal(menu, CLIENT_ICONIFY, _("Ico&nify"), acts, TRUE);
200 e->data.normal.mask = ob_rr_theme->iconify_mask;
201 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
202 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
203 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
204
205 acts = g_slist_prepend(NULL, action_from_string
206 ("ToggleMaximizeFull",
207 OB_USER_ACTION_MENU_SELECTION));
208 e = menu_add_normal(menu, CLIENT_MAXIMIZE, "MAXIMIZE", acts, TRUE);
209 e->data.normal.mask = ob_rr_theme->max_mask;
210 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
211 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
212 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
213
214 acts = g_slist_prepend(NULL, action_from_string
215 ("Raise", OB_USER_ACTION_MENU_SELECTION));
216 menu_add_normal(menu, CLIENT_RAISE, _("Raise to &top"), acts, TRUE);
217
218 acts = g_slist_prepend(NULL, action_from_string
219 ("Lower", OB_USER_ACTION_MENU_SELECTION));
220 menu_add_normal(menu, CLIENT_LOWER, _("Lower to &bottom"),acts, TRUE);
221
222 acts = g_slist_prepend(NULL, action_from_string
223 ("ToggleShade", OB_USER_ACTION_MENU_SELECTION));
224 e = menu_add_normal(menu, CLIENT_SHADE, "SHADE", acts, TRUE);
225 e->data.normal.mask = ob_rr_theme->shade_mask;
226 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
227 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
228 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
229
230 acts = g_slist_prepend(NULL, action_from_string
231 ("ToggleDecorations",
232 OB_USER_ACTION_MENU_SELECTION));
233 menu_add_normal(menu, CLIENT_DECORATE, _("&Decorate"), acts, TRUE);
234
235 menu_add_separator(menu, -1, NULL);
236
237 acts = g_slist_prepend(NULL, action_from_string
238 ("Move", OB_USER_ACTION_MENU_SELECTION));
239 menu_add_normal(menu, CLIENT_MOVE, _("&Move"), acts, TRUE);
240
241 acts = g_slist_prepend(NULL, action_from_string
242 ("Resize", OB_USER_ACTION_MENU_SELECTION));
243 menu_add_normal(menu, CLIENT_RESIZE, _("Resi&ze"), acts, TRUE);
244
245 menu_add_separator(menu, -1, NULL);
246
247 acts = g_slist_prepend(NULL, action_from_string
248 ("Close", OB_USER_ACTION_MENU_SELECTION));
249 e = menu_add_normal(menu, CLIENT_CLOSE, _("&Close"), acts, TRUE);
250 e->data.normal.mask = ob_rr_theme->close_mask;
251 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
252 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
253 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
254 }
This page took 0.044859 seconds and 5 git commands to generate.