]> icculus.org git repositories - mikachu/openbox.git/blob - plugins/menu/client_menu.c
make client-list-menu work too
[mikachu/openbox.git] / 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     e = menu_find_entry_id(menu, LAYER_TOP);
87     e->data.normal.enabled = !frame->client->above;
88
89     e = menu_find_entry_id(menu, LAYER_NORMAL);
90     e->data.normal.enabled = !(frame->client->above || frame->client->below);
91
92     e = menu_find_entry_id(menu, LAYER_BOTTOM);
93     e->data.normal.enabled = !frame->client->below;
94 }
95
96 static void send_to_update(ObMenuFrame *frame, gpointer data)
97 {
98     ObMenu *menu = frame->menu;
99     guint i;
100     GSList *acts;
101     ObAction *act;
102
103     menu_clear_entries(SEND_TO_MENU_NAME);
104
105     if (!frame->client)
106         return;
107
108     for (i = 0; i <= screen_num_desktops; ++i) {
109         gchar *name;
110         guint desk;
111
112         if (i >= screen_num_desktops) {
113             desk = DESKTOP_ALL;
114             name = _("All desktops");
115         } else {
116             desk = i;
117             name = screen_desktop_names[i];
118         }
119
120         act = action_from_string("SendToDesktop");
121         act->data.sendto.desk = desk;
122         act->data.sendto.follow = FALSE;
123         acts = g_slist_prepend(NULL, act);
124         menu_add_normal(SEND_TO_MENU_NAME, desk, name, acts);
125
126         if (frame->client->desktop == desk) {
127             ObMenuEntry *e = menu_find_entry_id(menu, desk);
128             g_assert(e);
129             e->data.normal.enabled = FALSE;
130         }
131     }
132 }
133
134 void plugin_startup()
135 {
136     GSList *acts;
137
138     menu_new(LAYER_MENU_NAME, _("Layer"), NULL);
139     menu_set_update_func(LAYER_MENU_NAME, layer_update);
140
141     acts = g_slist_prepend(NULL, action_from_string("SendToTopLayer"));
142     menu_add_normal(LAYER_MENU_NAME, LAYER_TOP, _("Always on top"), acts);
143
144     acts = g_slist_prepend(NULL, action_from_string("SendToNormalLayer"));
145     menu_add_normal(LAYER_MENU_NAME, LAYER_NORMAL, _("Normal"), acts);
146
147     acts = g_slist_prepend(NULL, action_from_string("SendToBottomLayer"));
148     menu_add_normal(LAYER_MENU_NAME, LAYER_BOTTOM, _("Always on bottom"),acts);
149
150
151     menu_new(SEND_TO_MENU_NAME, _("Send to desktop"), NULL);
152     menu_set_update_func(SEND_TO_MENU_NAME, send_to_update);
153
154
155     menu_new(CLIENT_MENU_NAME, _("Client menu"), NULL);
156     menu_set_update_func(CLIENT_MENU_NAME, client_update);
157
158     menu_add_submenu(CLIENT_MENU_NAME, CLIENT_SEND_TO, SEND_TO_MENU_NAME);
159
160     menu_add_submenu(CLIENT_MENU_NAME, CLIENT_LAYER, LAYER_MENU_NAME);
161
162     acts = g_slist_prepend(NULL, action_from_string("Iconify"));
163     menu_add_normal(CLIENT_MENU_NAME, CLIENT_ICONIFY, _("Iconify"), acts);
164
165     acts = g_slist_prepend(NULL, action_from_string("Maximize"));
166     menu_add_normal(CLIENT_MENU_NAME, CLIENT_MAXIMIZE, _("Maximize"), acts);
167
168     acts = g_slist_prepend(NULL, action_from_string("Raise"));
169     menu_add_normal(CLIENT_MENU_NAME, CLIENT_RAISE, _("Raise to top"), acts);
170
171     acts = g_slist_prepend(NULL, action_from_string("Lower"));
172     menu_add_normal(CLIENT_MENU_NAME, CLIENT_LOWER, _("Lower to bottom"),acts);
173
174     acts = g_slist_prepend(NULL, action_from_string("ToggleShade"));
175     menu_add_normal(CLIENT_MENU_NAME, CLIENT_SHADE, _("(Un)Shade"), acts);
176
177     acts = g_slist_prepend(NULL, action_from_string("ToggleDecorations"));
178     menu_add_normal(CLIENT_MENU_NAME, CLIENT_DECORATE, _("Decorate"), acts);
179
180     menu_add_separator(CLIENT_MENU_NAME, -1);
181
182     acts = g_slist_prepend(NULL, action_from_string("KeyboardMove"));
183     menu_add_normal(CLIENT_MENU_NAME, CLIENT_MOVE, _("Move"), acts);
184
185     acts = g_slist_prepend(NULL, action_from_string("KeyboardResize"));
186     menu_add_normal(CLIENT_MENU_NAME, CLIENT_RESIZE, _("Resize"), acts);
187
188     menu_add_separator(CLIENT_MENU_NAME, -1);
189
190     acts = g_slist_prepend(NULL, action_from_string("Close"));
191     menu_add_normal(CLIENT_MENU_NAME, CLIENT_CLOSE, _("Close"), acts);
192 }
193
194 void plugin_shutdown()
195 {
196     menu_free(LAYER_MENU_NAME);
197     menu_free(SEND_TO_MENU_NAME);
198     menu_free(CLIENT_MENU_NAME);
199 }