]> Dogcows Code - chaz/openbox/blob - openbox/client_menu.c
use const char*'s when we should be
[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 Ben 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 frame->show_title = FALSE;
61
62 for (it = menu->entries; it; it = g_list_next(it)) {
63 e = it->data;
64 if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
65 e->data.normal.enabled = !!frame->client;
66 }
67
68 if (!frame->client)
69 return;
70
71 e = menu_find_entry_id(menu, CLIENT_ICONIFY);
72 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_ICONIFY;
73
74 e = menu_find_entry_id(menu, CLIENT_MAXIMIZE);
75 g_free(e->data.normal.label);
76 e->data.normal.label =
77 g_strdup(frame->client->max_vert || frame->client->max_horz ?
78 _("Restore") : _("Maximize"));
79 e->data.normal.enabled =frame->client->functions & OB_CLIENT_FUNC_MAXIMIZE;
80
81 e = menu_find_entry_id(menu, CLIENT_SHADE);
82 g_free(e->data.normal.label);
83 e->data.normal.label = g_strdup(frame->client->shaded ?
84 _("Roll down") : _("Roll up"));
85 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_SHADE;
86
87 e = menu_find_entry_id(menu, CLIENT_MOVE);
88 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_MOVE;
89
90 e = menu_find_entry_id(menu, CLIENT_RESIZE);
91 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_RESIZE;
92
93 e = menu_find_entry_id(menu, CLIENT_CLOSE);
94 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_CLOSE;
95
96 e = menu_find_entry_id(menu, CLIENT_DECORATE);
97 e->data.normal.enabled = client_normal(frame->client);
98 }
99
100 static void layer_update(ObMenuFrame *frame, gpointer data)
101 {
102 ObMenu *menu = frame->menu;
103 ObMenuEntry *e;
104 GList *it;
105
106 for (it = menu->entries; it; it = g_list_next(it)) {
107 e = it->data;
108 if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
109 e->data.normal.enabled = !!frame->client;
110 }
111
112 if (!frame->client)
113 return;
114
115 e = menu_find_entry_id(menu, LAYER_TOP);
116 e->data.normal.enabled = !frame->client->above;
117
118 e = menu_find_entry_id(menu, LAYER_NORMAL);
119 e->data.normal.enabled = (frame->client->above || frame->client->below);
120
121 e = menu_find_entry_id(menu, LAYER_BOTTOM);
122 e->data.normal.enabled = !frame->client->below;
123 }
124
125 static void send_to_update(ObMenuFrame *frame, gpointer data)
126 {
127 ObMenu *menu = frame->menu;
128 guint i;
129 GSList *acts;
130 ObAction *act;
131 ObMenuEntry *e;;
132
133 menu_clear_entries(menu);
134
135 if (!frame->client)
136 return;
137
138 for (i = 0; i <= screen_num_desktops; ++i) {
139 const gchar *name;
140 guint desk;
141
142 if (i >= screen_num_desktops) {
143 menu_add_separator(menu, -1);
144
145 desk = DESKTOP_ALL;
146 name = _("All desktops");
147 } else {
148 desk = i;
149 name = screen_desktop_names[i];
150 }
151
152 act = action_from_string("SendToDesktop",
153 OB_USER_ACTION_MENU_SELECTION);
154 act->data.sendto.desk = desk;
155 act->data.sendto.follow = FALSE;
156 acts = g_slist_prepend(NULL, act);
157 e = menu_add_normal(menu, desk, name, acts);
158
159 if (frame->client->desktop == desk)
160 e->data.normal.enabled = FALSE;
161 }
162 }
163
164 void client_menu_startup()
165 {
166 GSList *acts;
167 ObMenu *menu;
168 ObMenuEntry *e;
169
170 menu = menu_new(LAYER_MENU_NAME, _("Layer"), NULL);
171 menu_set_update_func(menu, layer_update);
172
173 acts = g_slist_prepend(NULL, action_from_string
174 ("SendToTopLayer", OB_USER_ACTION_MENU_SELECTION));
175 menu_add_normal(menu, LAYER_TOP, _("Always on top"), acts);
176
177 acts = g_slist_prepend(NULL, action_from_string
178 ("SendToNormalLayer",
179 OB_USER_ACTION_MENU_SELECTION));
180 menu_add_normal(menu, LAYER_NORMAL, _("Normal"), acts);
181
182 acts = g_slist_prepend(NULL, action_from_string
183 ("SendToBottomLayer",
184 OB_USER_ACTION_MENU_SELECTION));
185 menu_add_normal(menu, LAYER_BOTTOM, _("Always on bottom"),acts);
186
187
188 menu = menu_new(SEND_TO_MENU_NAME, _("Send to desktop"), NULL);
189 menu_set_update_func(menu, send_to_update);
190
191
192 menu = menu_new(CLIENT_MENU_NAME, _("Client menu"), NULL);
193 menu_set_update_func(menu, client_update);
194
195 e = menu_add_submenu(menu, CLIENT_SEND_TO, SEND_TO_MENU_NAME);
196 e->data.normal.mask = ob_rr_theme->desk_mask;
197 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
198 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
199 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
200
201 menu_add_submenu(menu, CLIENT_LAYER, LAYER_MENU_NAME);
202
203 acts = g_slist_prepend(NULL, action_from_string
204 ("Iconify", OB_USER_ACTION_MENU_SELECTION));
205 e = menu_add_normal(menu, CLIENT_ICONIFY, _("Iconify"), acts);
206 e->data.normal.mask = ob_rr_theme->iconify_mask;
207 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
208 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
209 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
210
211 acts = g_slist_prepend(NULL, action_from_string
212 ("ToggleMaximizeFull",
213 OB_USER_ACTION_MENU_SELECTION));
214 e = menu_add_normal(menu, CLIENT_MAXIMIZE, "MAXIMIZE", acts);
215 e->data.normal.mask = ob_rr_theme->max_mask;
216 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
217 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
218 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
219
220 acts = g_slist_prepend(NULL, action_from_string
221 ("Raise", OB_USER_ACTION_MENU_SELECTION));
222 menu_add_normal(menu, CLIENT_RAISE, _("Raise to top"), acts);
223
224 acts = g_slist_prepend(NULL, action_from_string
225 ("Lower", OB_USER_ACTION_MENU_SELECTION));
226 menu_add_normal(menu, CLIENT_LOWER, _("Lower to bottom"),acts);
227
228 acts = g_slist_prepend(NULL, action_from_string
229 ("ToggleShade", OB_USER_ACTION_MENU_SELECTION));
230 e = menu_add_normal(menu, CLIENT_SHADE, "SHADE", acts);
231 e->data.normal.mask = ob_rr_theme->shade_mask;
232 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
233 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
234 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
235
236 acts = g_slist_prepend(NULL, action_from_string
237 ("ToggleDecorations",
238 OB_USER_ACTION_MENU_SELECTION));
239 menu_add_normal(menu, CLIENT_DECORATE, _("Decorate"), acts);
240
241 menu_add_separator(menu, -1);
242
243 acts = g_slist_prepend(NULL, action_from_string
244 ("Move", OB_USER_ACTION_MENU_SELECTION));
245 menu_add_normal(menu, CLIENT_MOVE, _("Move"), acts);
246
247 acts = g_slist_prepend(NULL, action_from_string
248 ("Resize", OB_USER_ACTION_MENU_SELECTION));
249 menu_add_normal(menu, CLIENT_RESIZE, _("Resize"), acts);
250
251 menu_add_separator(menu, -1);
252
253 acts = g_slist_prepend(NULL, action_from_string
254 ("Close", OB_USER_ACTION_MENU_SELECTION));
255 e = menu_add_normal(menu, CLIENT_CLOSE, _("Close"), acts);
256 e->data.normal.mask = ob_rr_theme->close_mask;
257 e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
258 e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
259 e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
260 }
This page took 0.04464 seconds and 5 git commands to generate.