changes to the client menu, which entries are there, and reorganizing, and renaming.
[dana/openbox.git] / 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_RESTORE,
45     CLIENT_MAXIMIZE,
46     CLIENT_SHADE,
47     CLIENT_DECORATE,
48     CLIENT_MOVE,
49     CLIENT_RESIZE,
50     CLIENT_CLOSE
51 };
52
53 static gboolean client_update(ObMenuFrame *frame, gpointer data)
54 {
55     ObMenu *menu = frame->menu;
56     ObMenuEntry *e;
57     GList *it;
58
59     if (frame->client == NULL || !client_normal(frame->client))
60         return FALSE; /* don't show the menu */
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 = TRUE;
66     }
67
68     e = menu_find_entry_id(menu, CLIENT_ICONIFY);
69     e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_ICONIFY;
70
71     e = menu_find_entry_id(menu, CLIENT_RESTORE);
72     e->data.normal.enabled =frame->client->max_horz || frame->client->max_vert;
73
74     e = menu_find_entry_id(menu, CLIENT_MAXIMIZE);
75     e->data.normal.enabled =
76         (frame->client->functions & OB_CLIENT_FUNC_MAXIMIZE) &&
77         !frame->client->max_horz && !frame->client->max_vert;
78
79     e = menu_find_entry_id(menu, CLIENT_SHADE);
80     e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_SHADE;
81
82     e = menu_find_entry_id(menu, CLIENT_MOVE);
83     e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_MOVE;
84
85     e = menu_find_entry_id(menu, CLIENT_RESIZE);
86     e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_RESIZE;
87
88     e = menu_find_entry_id(menu, CLIENT_CLOSE);
89     e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_CLOSE;
90
91     e = menu_find_entry_id(menu, CLIENT_DECORATE);
92     e->data.normal.enabled = client_normal(frame->client);
93     return TRUE; /* show the menu */
94 }
95
96 static gboolean layer_update(ObMenuFrame *frame, gpointer data)
97 {
98     ObMenu *menu = frame->menu;
99     ObMenuEntry *e;
100     GList *it;
101
102     if (frame->client == NULL || !client_normal(frame->client))
103         return FALSE; /* don't show the menu */
104
105     for (it = menu->entries; it; it = g_list_next(it)) {
106         e = it->data;
107         if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
108             e->data.normal.enabled = TRUE;
109     }
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     return TRUE; /* show the menu */
120 }
121
122 static gboolean send_to_update(ObMenuFrame *frame, gpointer data)
123 {
124     ObMenu *menu = frame->menu;
125     guint i;
126     GSList *acts;
127     ObAction *act;
128     ObMenuEntry *e;;
129
130     menu_clear_entries(menu);
131
132     if (frame->client == NULL || !client_normal(frame->client))
133         return FALSE; /* don't show the menu */
134
135     for (i = 0; i <= screen_num_desktops; ++i) {
136         const gchar *name;
137         guint desk;
138
139         if (i >= screen_num_desktops) {
140             menu_add_separator(menu, -1, NULL);
141
142             desk = DESKTOP_ALL;
143             name = _("All desktops");
144         } else {
145             desk = i;
146             name = screen_desktop_names[i];
147         }
148
149         act = action_from_string("SendToDesktop",
150                                  OB_USER_ACTION_MENU_SELECTION);
151         act->data.sendto.desk = desk;
152         act->data.sendto.follow = FALSE;
153         acts = g_slist_prepend(NULL, act);
154         e = menu_add_normal(menu, desk, name, acts, FALSE);
155         if (desk == DESKTOP_ALL) {
156             e->data.normal.mask = ob_rr_theme->desk_mask;
157             e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
158             e->data.normal.mask_selected_color =
159                 ob_rr_theme->menu_selected_color;
160             e->data.normal.mask_disabled_color =
161                 ob_rr_theme->menu_disabled_color;
162             e->data.normal.mask_disabled_selected_color =
163                 ob_rr_theme->menu_disabled_selected_color;
164         }
165
166         if (frame->client->desktop == desk)
167             e->data.normal.enabled = FALSE;
168     }
169     return TRUE; /* show the menu */
170 }
171
172 static void client_menu_place(ObMenuFrame *frame, gint *x, gint *y,
173                               gint button, gpointer data)
174 {
175     gint dx, dy;
176
177     if (button == 0 && frame->client) {
178         *x = frame->client->frame->area.x;
179
180         /* try below the titlebar */
181         *y = frame->client->frame->area.y + frame->client->frame->size.top -
182             frame->client->frame->bwidth;
183         menu_frame_move_on_screen(frame, *x, *y, &dx, &dy);
184         if (dy != 0) {
185             /* try above the titlebar */
186             *y = frame->client->frame->area.y + frame->client->frame->bwidth -
187                 frame->area.height;
188             menu_frame_move_on_screen(frame, *x, *y, &dx, &dy);
189         }
190         if (dy != 0) {
191             /* didnt fit either way, use move on screen's values */
192             *y = frame->client->frame->area.y + frame->client->frame->size.top;
193             menu_frame_move_on_screen(frame, *x, *y, &dx, &dy);
194         }
195
196         *x += dx;
197         *y += dy;
198     } else {
199         gint myx, myy;
200
201         myx = *x;
202         myy = *y;
203
204         /* try to the bottom right of the cursor */
205         menu_frame_move_on_screen(frame, myx, myy, &dx, &dy);
206         if (dx != 0 || dy != 0) {
207             /* try to the bottom left of the cursor */
208             myx = *x - frame->area.width;
209             myy = *y;
210             menu_frame_move_on_screen(frame, myx, myy, &dx, &dy);
211         }
212         if (dx != 0 || dy != 0) {
213             /* try to the top right of the cursor */
214             myx = *x;
215             myy = *y - frame->area.height;
216             menu_frame_move_on_screen(frame, myx, myy, &dx, &dy);
217         }
218         if (dx != 0 || dy != 0) {
219             /* try to the top left of the cursor */
220             myx = *x - frame->area.width;
221             myy = *y - frame->area.height;
222             menu_frame_move_on_screen(frame, myx, myy, &dx, &dy);
223         }
224         if (dx != 0 || dy != 0) {
225             /* if didnt fit on either side so just use what it says */
226             myx = *x;
227             myy = *y;
228             menu_frame_move_on_screen(frame, myx, myy, &dx, &dy);
229         }
230         *x = myx + dx;
231         *y = myy + dy;
232     }
233 }
234
235 void client_menu_startup()
236 {
237     GSList *acts;
238     ObMenu *menu;
239     ObMenuEntry *e;
240
241     menu = menu_new(LAYER_MENU_NAME, _("&Layer"), TRUE, NULL);
242     menu_show_all_shortcuts(menu, TRUE);
243     menu_set_update_func(menu, layer_update);
244
245     acts = g_slist_prepend(NULL, action_from_string
246                            ("SendToTopLayer", OB_USER_ACTION_MENU_SELECTION));
247     menu_add_normal(menu, LAYER_TOP, _("Always on &top"), acts, TRUE);
248
249     acts = g_slist_prepend(NULL, action_from_string
250                            ("SendToNormalLayer",
251                             OB_USER_ACTION_MENU_SELECTION));
252     menu_add_normal(menu, LAYER_NORMAL, _("&Normal"), acts, TRUE);
253
254     acts = g_slist_prepend(NULL, action_from_string
255                            ("SendToBottomLayer",
256                             OB_USER_ACTION_MENU_SELECTION));
257     menu_add_normal(menu, LAYER_BOTTOM, _("Always on &bottom"),acts, TRUE);
258
259
260     menu = menu_new(SEND_TO_MENU_NAME, _("&Send to desktop"), TRUE, NULL);
261     menu_set_update_func(menu, send_to_update);
262
263
264     menu = menu_new(CLIENT_MENU_NAME, _("Client menu"), TRUE, NULL);
265     menu_show_all_shortcuts(menu, TRUE);
266     menu_set_update_func(menu, client_update);
267     menu_set_place_func(menu, client_menu_place);
268
269     acts = g_slist_prepend(NULL, action_from_string
270                            ("ToggleMaximizeFull",
271                             OB_USER_ACTION_MENU_SELECTION));
272     e = menu_add_normal(menu, CLIENT_RESTORE, _("R&estore"), acts, TRUE);
273     e->data.normal.mask = ob_rr_theme->max_toggled_mask; 
274     e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
275     e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
276     e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
277     e->data.normal.mask_disabled_selected_color =
278         ob_rr_theme->menu_disabled_selected_color;
279
280     acts = g_slist_prepend(NULL, action_from_string
281                            ("Move", OB_USER_ACTION_MENU_SELECTION));
282     menu_add_normal(menu, CLIENT_MOVE, _("&Move"), acts, TRUE);
283
284     acts = g_slist_prepend(NULL, action_from_string
285                            ("Resize", OB_USER_ACTION_MENU_SELECTION));
286     menu_add_normal(menu, CLIENT_RESIZE, _("Resi&ze"), acts, TRUE);
287
288     acts = g_slist_prepend(NULL, action_from_string
289                            ("Iconify", OB_USER_ACTION_MENU_SELECTION));
290     e = menu_add_normal(menu, CLIENT_ICONIFY, _("Ico&nify"), acts, TRUE);
291     e->data.normal.mask = ob_rr_theme->iconify_mask;
292     e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
293     e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
294     e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
295     e->data.normal.mask_disabled_selected_color =
296         ob_rr_theme->menu_disabled_selected_color;
297
298     acts = g_slist_prepend(NULL, action_from_string
299                            ("ToggleMaximizeFull",
300                             OB_USER_ACTION_MENU_SELECTION));
301     e = menu_add_normal(menu, CLIENT_MAXIMIZE, _("Ma&ximize"), acts, TRUE);
302     e->data.normal.mask = ob_rr_theme->max_mask; 
303     e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
304     e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
305     e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
306     e->data.normal.mask_disabled_selected_color =
307         ob_rr_theme->menu_disabled_selected_color;
308
309     acts = g_slist_prepend(NULL, action_from_string
310                            ("ToggleShade", OB_USER_ACTION_MENU_SELECTION));
311     e = menu_add_normal(menu, CLIENT_SHADE, _("&Roll up/down"), acts, TRUE);
312     e->data.normal.mask = ob_rr_theme->shade_mask;
313     e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
314     e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
315     e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
316     e->data.normal.mask_disabled_selected_color =
317         ob_rr_theme->menu_disabled_selected_color;
318
319     acts = g_slist_prepend(NULL, action_from_string
320                            ("ToggleDecorations",
321                             OB_USER_ACTION_MENU_SELECTION));
322     menu_add_normal(menu, CLIENT_DECORATE, _("Un/&Decorate"), acts, TRUE);
323
324     menu_add_separator(menu, -1, NULL);
325
326     menu_add_submenu(menu, CLIENT_SEND_TO, SEND_TO_MENU_NAME);
327
328     menu_add_submenu(menu, CLIENT_LAYER, LAYER_MENU_NAME);
329
330     menu_add_separator(menu, -1, NULL);
331
332     acts = g_slist_prepend(NULL, action_from_string
333                            ("Close", OB_USER_ACTION_MENU_SELECTION));
334     e = menu_add_normal(menu, CLIENT_CLOSE, _("&Close"), acts, TRUE);
335     e->data.normal.mask = ob_rr_theme->close_mask;
336     e->data.normal.mask_normal_color = ob_rr_theme->menu_color;
337     e->data.normal.mask_selected_color = ob_rr_theme->menu_selected_color;
338     e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color;
339     e->data.normal.mask_disabled_selected_color =
340         ob_rr_theme->menu_disabled_selected_color;
341 }