1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 client_menu.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
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.
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.
16 See the COPYING file for a copy of the GNU General Public License.
21 #include "menuframe.h"
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"
54 static void client_update(ObMenuFrame
*frame
, gpointer data
)
56 ObMenu
*menu
= frame
->menu
;
60 frame
->show_title
= FALSE
;
62 for (it
= menu
->entries
; it
; it
= g_list_next(it
)) {
64 if (e
->type
== OB_MENU_ENTRY_TYPE_NORMAL
)
65 e
->data
.normal
.enabled
= !!frame
->client
;
71 e
= menu_find_entry_id(menu
, CLIENT_ICONIFY
);
72 e
->data
.normal
.enabled
= frame
->client
->functions
& OB_CLIENT_FUNC_ICONIFY
;
74 e
= menu_find_entry_id(menu
, CLIENT_MAXIMIZE
);
75 e
->data
.normal
.label
= frame
->client
->max_vert
|| frame
->client
->max_horz
?
76 _("Restore") : _("Maximize");
77 e
->data
.normal
.enabled
=frame
->client
->functions
& OB_CLIENT_FUNC_MAXIMIZE
;
79 e
= menu_find_entry_id(menu
, CLIENT_SHADE
);
80 e
->data
.normal
.label
= frame
->client
->shaded
?
81 _("Roll down") : _("Roll up");
82 e
->data
.normal
.enabled
= frame
->client
->functions
& OB_CLIENT_FUNC_SHADE
;
84 e
= menu_find_entry_id(menu
, CLIENT_MOVE
);
85 e
->data
.normal
.enabled
= frame
->client
->functions
& OB_CLIENT_FUNC_MOVE
;
87 e
= menu_find_entry_id(menu
, CLIENT_RESIZE
);
88 e
->data
.normal
.enabled
= frame
->client
->functions
& OB_CLIENT_FUNC_RESIZE
;
90 e
= menu_find_entry_id(menu
, CLIENT_CLOSE
);
91 e
->data
.normal
.enabled
= frame
->client
->functions
& OB_CLIENT_FUNC_CLOSE
;
93 e
= menu_find_entry_id(menu
, CLIENT_DECORATE
);
94 e
->data
.normal
.enabled
= client_normal(frame
->client
);
97 static void layer_update(ObMenuFrame
*frame
, gpointer data
)
99 ObMenu
*menu
= frame
->menu
;
103 for (it
= menu
->entries
; it
; it
= g_list_next(it
)) {
105 if (e
->type
== OB_MENU_ENTRY_TYPE_NORMAL
)
106 e
->data
.normal
.enabled
= !!frame
->client
;
112 e
= menu_find_entry_id(menu
, LAYER_TOP
);
113 e
->data
.normal
.enabled
= !frame
->client
->above
;
115 e
= menu_find_entry_id(menu
, LAYER_NORMAL
);
116 e
->data
.normal
.enabled
= (frame
->client
->above
|| frame
->client
->below
);
118 e
= menu_find_entry_id(menu
, LAYER_BOTTOM
);
119 e
->data
.normal
.enabled
= !frame
->client
->below
;
122 static void send_to_update(ObMenuFrame
*frame
, gpointer data
)
124 ObMenu
*menu
= frame
->menu
;
129 menu_clear_entries(menu
);
134 for (i
= 0; i
<= screen_num_desktops
; ++i
) {
138 if (i
>= screen_num_desktops
) {
139 menu_add_separator(menu
, -1);
142 name
= _("All desktops");
145 name
= screen_desktop_names
[i
];
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 menu_add_normal(menu
, desk
, name
, acts
);
155 if (frame
->client
->desktop
== desk
) {
156 ObMenuEntry
*e
= menu_find_entry_id(menu
, desk
);
158 e
->data
.normal
.enabled
= FALSE
;
163 void client_menu_startup()
169 menu
= menu_new(LAYER_MENU_NAME
, _("Layer"), NULL
);
170 menu_set_update_func(menu
, layer_update
);
172 acts
= g_slist_prepend(NULL
, action_from_string
173 ("SendToTopLayer", OB_USER_ACTION_MENU_SELECTION
));
174 menu_add_normal(menu
, LAYER_TOP
, _("Always on top"), acts
);
176 acts
= g_slist_prepend(NULL
, action_from_string
177 ("SendToNormalLayer",
178 OB_USER_ACTION_MENU_SELECTION
));
179 menu_add_normal(menu
, LAYER_NORMAL
, _("Normal"), acts
);
181 acts
= g_slist_prepend(NULL
, action_from_string
182 ("SendToBottomLayer",
183 OB_USER_ACTION_MENU_SELECTION
));
184 menu_add_normal(menu
, LAYER_BOTTOM
, _("Always on bottom"),acts
);
187 menu
= menu_new(SEND_TO_MENU_NAME
, _("Send to desktop"), NULL
);
188 menu_set_update_func(menu
, send_to_update
);
191 menu
= menu_new(CLIENT_MENU_NAME
, _("Client menu"), NULL
);
192 menu_set_update_func(menu
, client_update
);
194 e
= menu_add_submenu(menu
, CLIENT_SEND_TO
, SEND_TO_MENU_NAME
);
195 e
->data
.normal
.mask
= ob_rr_theme
->desk_mask
;
196 e
->data
.normal
.mask_normal_color
= ob_rr_theme
->menu_color
;
197 e
->data
.normal
.mask_disabled_color
= ob_rr_theme
->menu_disabled_color
;
198 e
->data
.normal
.mask_selected_color
= ob_rr_theme
->menu_selected_color
;
200 menu_add_submenu(menu
, CLIENT_LAYER
, LAYER_MENU_NAME
);
202 acts
= g_slist_prepend(NULL
, action_from_string
203 ("Iconify", OB_USER_ACTION_MENU_SELECTION
));
204 e
= menu_add_normal(menu
, CLIENT_ICONIFY
, _("Iconify"), acts
);
205 e
->data
.normal
.mask
= ob_rr_theme
->iconify_mask
;
206 e
->data
.normal
.mask_normal_color
= ob_rr_theme
->menu_color
;
207 e
->data
.normal
.mask_disabled_color
= ob_rr_theme
->menu_disabled_color
;
208 e
->data
.normal
.mask_selected_color
= ob_rr_theme
->menu_selected_color
;
210 acts
= g_slist_prepend(NULL
, action_from_string
211 ("ToggleMaximizeFull",
212 OB_USER_ACTION_MENU_SELECTION
));
213 e
= menu_add_normal(menu
, CLIENT_MAXIMIZE
, "MAXIMIZE", acts
);
214 e
->data
.normal
.mask
= ob_rr_theme
->max_mask
;
215 e
->data
.normal
.mask_normal_color
= ob_rr_theme
->menu_color
;
216 e
->data
.normal
.mask_disabled_color
= ob_rr_theme
->menu_disabled_color
;
217 e
->data
.normal
.mask_selected_color
= ob_rr_theme
->menu_selected_color
;
219 acts
= g_slist_prepend(NULL
, action_from_string
220 ("Raise", OB_USER_ACTION_MENU_SELECTION
));
221 menu_add_normal(menu
, CLIENT_RAISE
, _("Raise to top"), acts
);
223 acts
= g_slist_prepend(NULL
, action_from_string
224 ("Lower", OB_USER_ACTION_MENU_SELECTION
));
225 menu_add_normal(menu
, CLIENT_LOWER
, _("Lower to bottom"),acts
);
227 acts
= g_slist_prepend(NULL
, action_from_string
228 ("ToggleShade", OB_USER_ACTION_MENU_SELECTION
));
229 e
= menu_add_normal(menu
, CLIENT_SHADE
, "SHADE", acts
);
230 e
->data
.normal
.mask
= ob_rr_theme
->shade_mask
;
231 e
->data
.normal
.mask_normal_color
= ob_rr_theme
->menu_color
;
232 e
->data
.normal
.mask_disabled_color
= ob_rr_theme
->menu_disabled_color
;
233 e
->data
.normal
.mask_selected_color
= ob_rr_theme
->menu_selected_color
;
235 acts
= g_slist_prepend(NULL
, action_from_string
236 ("ToggleDecorations",
237 OB_USER_ACTION_MENU_SELECTION
));
238 menu_add_normal(menu
, CLIENT_DECORATE
, _("Decorate"), acts
);
240 menu_add_separator(menu
, -1);
242 acts
= g_slist_prepend(NULL
, action_from_string
243 ("Move", OB_USER_ACTION_MENU_SELECTION
));
244 menu_add_normal(menu
, CLIENT_MOVE
, _("Move"), acts
);
246 acts
= g_slist_prepend(NULL
, action_from_string
247 ("Resize", OB_USER_ACTION_MENU_SELECTION
));
248 menu_add_normal(menu
, CLIENT_RESIZE
, _("Resize"), acts
);
250 menu_add_separator(menu
, -1);
252 acts
= g_slist_prepend(NULL
, action_from_string
253 ("Close", OB_USER_ACTION_MENU_SELECTION
));
254 e
= menu_add_normal(menu
, CLIENT_CLOSE
, _("Close"), acts
);
255 e
->data
.normal
.mask
= ob_rr_theme
->close_mask
;
256 e
->data
.normal
.mask_normal_color
= ob_rr_theme
->menu_color
;
257 e
->data
.normal
.mask_disabled_color
= ob_rr_theme
->menu_disabled_color
;
258 e
->data
.normal
.mask_selected_color
= ob_rr_theme
->menu_selected_color
;