]> Dogcows Code - chaz/openbox/blob - openbox/client_menu.c
change resize binding
[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")));
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")));
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);
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"), 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);
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);
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);
183
184
185 menu = menu_new(SEND_TO_MENU_NAME, _("&Send to desktop"), NULL);
186 menu_show_all_shortcuts(menu, TRUE);
187 menu_set_update_func(menu, send_to_update);
188
189
190 menu = menu_new(CLIENT_MENU_NAME, _("Client menu"), NULL);
191 menu_show_all_shortcuts(menu, TRUE);
192 menu_set_update_func(menu, client_update);
193
194 menu_add_submenu(menu, CLIENT_SEND_TO, SEND_TO_MENU_NAME);
195
196 menu_add_submenu(menu, CLIENT_LAYER, LAYER_MENU_NAME);
197
198 acts = g_slist_prepend(NULL, action_from_string
199 ("Iconify", OB_USER_ACTION_MENU_SELECTION));
200 e = menu_add_normal(menu, CLIENT_ICONIFY, _("Ico&nify"), acts);
201 e->data.normal.mask = ob_rr_theme->iconify_mask;
202 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
203 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
204 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
205
206 acts = g_slist_prepend(NULL, action_from_string
207 ("ToggleMaximizeFull",
208 OB_USER_ACTION_MENU_SELECTION));
209 e = menu_add_normal(menu, CLIENT_MAXIMIZE, "MAXIMIZE", acts);
210 e->data.normal.mask = ob_rr_theme->max_mask;
211 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
212 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
213 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
214
215 acts = g_slist_prepend(NULL, action_from_string
216 ("Raise", OB_USER_ACTION_MENU_SELECTION));
217 menu_add_normal(menu, CLIENT_RAISE, _("Raise to &top"), acts);
218
219 acts = g_slist_prepend(NULL, action_from_string
220 ("Lower", OB_USER_ACTION_MENU_SELECTION));
221 menu_add_normal(menu, CLIENT_LOWER, _("Lower to &bottom"),acts);
222
223 acts = g_slist_prepend(NULL, action_from_string
224 ("ToggleShade", OB_USER_ACTION_MENU_SELECTION));
225 e = menu_add_normal(menu, CLIENT_SHADE, "SHADE", acts);
226 e->data.normal.mask = ob_rr_theme->shade_mask;
227 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
228 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
229 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
230
231 acts = g_slist_prepend(NULL, action_from_string
232 ("ToggleDecorations",
233 OB_USER_ACTION_MENU_SELECTION));
234 menu_add_normal(menu, CLIENT_DECORATE, _("&Decorate"), acts);
235
236 menu_add_separator(menu, -1, NULL);
237
238 acts = g_slist_prepend(NULL, action_from_string
239 ("Move", OB_USER_ACTION_MENU_SELECTION));
240 menu_add_normal(menu, CLIENT_MOVE, _("&Move"), acts);
241
242 acts = g_slist_prepend(NULL, action_from_string
243 ("Resize", OB_USER_ACTION_MENU_SELECTION));
244 menu_add_normal(menu, CLIENT_RESIZE, _("Resi&ze"), acts);
245
246 menu_add_separator(menu, -1, NULL);
247
248 acts = g_slist_prepend(NULL, action_from_string
249 ("Close", OB_USER_ACTION_MENU_SELECTION));
250 e = menu_add_normal(menu, CLIENT_CLOSE, _("&Close"), acts);
251 e->data.normal.mask = ob_rr_theme->close_mask;
252 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
253 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
254 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
255 }
This page took 0.045736 seconds and 5 git commands to generate.