]> Dogcows Code - chaz/openbox/blob - plugins/menu/client_menu.c
c9ec591654d8d757d12f25b1a828e57d83a76c6e
[chaz/openbox] / plugins / menu / client_menu.c
1 #include "kernel/debug.h"
2 #include "kernel/menu.h"
3 #include "kernel/menuframe.h"
4 #include "kernel/screen.h"
5 #include "kernel/client.h"
6 #include "kernel/openbox.h"
7 #include "kernel/frame.h"
8 #include "gettext.h"
9
10 #include <glib.h>
11
12 #define CLIENT_MENU_NAME "client-menu"
13 #define SEND_TO_MENU_NAME "client-send-to-menu"
14 #define LAYER_MENU_NAME "client-layer-menu"
15
16 enum {
17 LAYER_TOP,
18 LAYER_NORMAL,
19 LAYER_BOTTOM
20 };
21
22 enum {
23 CLIENT_SEND_TO,
24 CLIENT_LAYER,
25 CLIENT_ICONIFY,
26 CLIENT_MAXIMIZE,
27 CLIENT_RAISE,
28 CLIENT_LOWER,
29 CLIENT_SHADE,
30 CLIENT_DECORATE,
31 CLIENT_MOVE,
32 CLIENT_RESIZE,
33 CLIENT_CLOSE
34 };
35
36 void plugin_setup_config() { }
37
38 static void client_update(ObMenuFrame *frame, gpointer data)
39 {
40 ObMenu *menu = frame->menu;
41 ObMenuEntry *e;
42 GList *it;
43
44 frame->show_title = FALSE;
45
46 for (it = menu->entries; it; it = g_list_next(it)) {
47 e = it->data;
48 if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
49 e->data.normal.enabled = !!frame->client;
50 }
51
52 if (!frame->client)
53 return;
54
55 e = menu_find_entry_id(menu, CLIENT_ICONIFY);
56 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_ICONIFY;
57
58 e = menu_find_entry_id(menu, CLIENT_MAXIMIZE);
59 e->data.normal.enabled =frame->client->functions & OB_CLIENT_FUNC_MAXIMIZE;
60
61 e = menu_find_entry_id(menu, CLIENT_SHADE);
62 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_SHADE;
63
64 e = menu_find_entry_id(menu, CLIENT_MOVE);
65 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_MOVE;
66
67 e = menu_find_entry_id(menu, CLIENT_RESIZE);
68 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_RESIZE;
69
70 e = menu_find_entry_id(menu, CLIENT_CLOSE);
71 e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_CLOSE;
72 }
73
74 static void layer_update(ObMenuFrame *frame, gpointer data)
75 {
76 ObMenu *menu = frame->menu;
77 ObMenuEntry *e;
78 GList *it;
79
80 for (it = menu->entries; it; it = g_list_next(it)) {
81 e = it->data;
82 if (e->type == OB_MENU_ENTRY_TYPE_NORMAL)
83 e->data.normal.enabled = !!frame->client;
84 }
85 }
86
87 static void send_to_update(ObMenuFrame *frame, gpointer data)
88 {
89 ObMenu *menu = frame->menu;
90 guint i;
91 GSList *acts;
92 ObAction *act;
93
94 menu_clear_entries(SEND_TO_MENU_NAME);
95
96 if (!frame->client)
97 return;
98
99 for (i = 0; i <= screen_num_desktops; ++i) {
100 gchar *name;
101 guint desk;
102
103 if (i >= screen_num_desktops) {
104 desk = DESKTOP_ALL;
105 name = _("All desktops");
106 } else {
107 desk = i;
108 name = screen_desktop_names[i];
109 }
110
111 act = action_from_string("SendToDesktop");
112 act->data.sendto.desk = desk;
113 act->data.sendto.follow = FALSE;
114 acts = g_slist_prepend(NULL, act);
115 menu_add_normal(SEND_TO_MENU_NAME, desk, name, acts);
116
117 if (frame->client->desktop == desk) {
118 ObMenuEntry *e = menu_find_entry_id(menu, desk);
119 g_assert(e);
120 e->data.normal.enabled = FALSE;
121 }
122 }
123 }
124
125 void plugin_startup()
126 {
127 GSList *acts;
128
129 menu_new(LAYER_MENU_NAME, _("Layer"), NULL);
130 menu_set_update_func(LAYER_MENU_NAME, layer_update);
131
132 acts = g_slist_prepend(NULL, action_from_string("SendToTopLayer"));
133 menu_add_normal(LAYER_MENU_NAME, LAYER_TOP, _("Always on top"), acts);
134
135 acts = g_slist_prepend(NULL, action_from_string("SendToNormalLayer"));
136 menu_add_normal(LAYER_MENU_NAME, LAYER_NORMAL, _("Normal"), acts);
137
138 acts = g_slist_prepend(NULL, action_from_string("SendToBottomLayer"));
139 menu_add_normal(LAYER_MENU_NAME, LAYER_BOTTOM, _("Always on bottom"),acts);
140
141
142 menu_new(SEND_TO_MENU_NAME, _("Send to desktop"), NULL);
143 menu_set_update_func(SEND_TO_MENU_NAME, send_to_update);
144
145
146 menu_new(CLIENT_MENU_NAME, _("Client menu"), NULL);
147 menu_set_update_func(CLIENT_MENU_NAME, client_update);
148
149 menu_add_submenu(CLIENT_MENU_NAME, CLIENT_SEND_TO, SEND_TO_MENU_NAME);
150
151 menu_add_submenu(CLIENT_MENU_NAME, CLIENT_LAYER, LAYER_MENU_NAME);
152
153 acts = g_slist_prepend(NULL, action_from_string("Iconify"));
154 menu_add_normal(CLIENT_MENU_NAME, CLIENT_ICONIFY, _("Iconify"), acts);
155
156 acts = g_slist_prepend(NULL, action_from_string("Maximize"));
157 menu_add_normal(CLIENT_MENU_NAME, CLIENT_MAXIMIZE, _("Maximize"), acts);
158
159 acts = g_slist_prepend(NULL, action_from_string("Raise"));
160 menu_add_normal(CLIENT_MENU_NAME, CLIENT_RAISE, _("Raise to top"), acts);
161
162 acts = g_slist_prepend(NULL, action_from_string("Lower"));
163 menu_add_normal(CLIENT_MENU_NAME, CLIENT_LOWER, _("Lower to bottom"),acts);
164
165 acts = g_slist_prepend(NULL, action_from_string("ToggleShade"));
166 menu_add_normal(CLIENT_MENU_NAME, CLIENT_SHADE, _("(Un)Shade"), acts);
167
168 acts = g_slist_prepend(NULL, action_from_string("ToggleDecorations"));
169 menu_add_normal(CLIENT_MENU_NAME, CLIENT_DECORATE, _("Decorate"), acts);
170
171 menu_add_separator(CLIENT_MENU_NAME, -1);
172
173 acts = g_slist_prepend(NULL, action_from_string("KeyboardMove"));
174 menu_add_normal(CLIENT_MENU_NAME, CLIENT_MOVE, _("Move"), acts);
175
176 acts = g_slist_prepend(NULL, action_from_string("KeyboardResize"));
177 menu_add_normal(CLIENT_MENU_NAME, CLIENT_RESIZE, _("Resize"), acts);
178
179 menu_add_separator(CLIENT_MENU_NAME, -1);
180
181 acts = g_slist_prepend(NULL, action_from_string("Close"));
182 menu_add_normal(CLIENT_MENU_NAME, CLIENT_CLOSE, _("Close"), acts);
183 }
184
185 void plugin_shutdown()
186 {
187 menu_free(LAYER_MENU_NAME);
188 menu_free(SEND_TO_MENU_NAME);
189 menu_free(CLIENT_MENU_NAME);
190 }
This page took 0.045412 seconds and 3 git commands to generate.