chiark / gitweb /
properly scroll user list
[disorder] / disobedience / menu.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
fb009628 3 * Copyright (C) 2006-2008 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
2c348789
RK
20/** @file disobedience/menu.c
21 * @brief Main menu
22 */
460b9539 23
24#include "disobedience.h"
25
26static GtkWidget *selectall_widget;
fb009628 27static GtkWidget *selectnone_widget;
460b9539 28static GtkWidget *properties_widget;
29
ac6bf2ba
RK
30/** @brief Main menu widgets */
31GtkItemFactory *mainmenufactory;
32
460b9539 33static void about_popup_got_version(void *v, const char *value);
34
2c348789
RK
35/** @brief Called when the quit option is activated
36 *
37 * Just exits.
38 */
460b9539 39static void quit_program(gpointer attribute((unused)) callback_data,
40 guint attribute((unused)) callback_action,
41 GtkWidget attribute((unused)) *menu_item) {
42 D(("quit_program"));
43 exit(0);
44}
45
46/* TODO can we have a single parameterized callback for all these */
2c348789
RK
47
48/** @brief Called when the select all option is activated
49 *
50 * Calls the per-tab select all function.
51 */
460b9539 52static void select_all(gpointer attribute((unused)) callback_data,
53 guint attribute((unused)) callback_action,
54 GtkWidget attribute((unused)) *menu_item) {
55 GtkWidget *tab = gtk_notebook_get_nth_page
56 (GTK_NOTEBOOK(tabs), gtk_notebook_current_page(GTK_NOTEBOOK(tabs)));
57 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
58
59 t->selectall_activate(tab);
60}
61
fb009628
RK
62/** @brief Called when the select none option is activated
63 *
64 * Calls the per-tab select none function.
65 */
66static void select_none(gpointer attribute((unused)) callback_data,
67 guint attribute((unused)) callback_action,
68 GtkWidget attribute((unused)) *menu_item) {
69 GtkWidget *tab = gtk_notebook_get_nth_page
70 (GTK_NOTEBOOK(tabs), gtk_notebook_current_page(GTK_NOTEBOOK(tabs)));
71 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
72
73 t->selectnone_activate(tab);
74}
75
2c348789
RK
76/** @brief Called when the track properties option is activated
77 *
78 * Calls the per-tab properties function.
79 */
460b9539 80static void properties_item(gpointer attribute((unused)) callback_data,
81 guint attribute((unused)) callback_action,
82 GtkWidget attribute((unused)) *menu_item) {
83 GtkWidget *tab = gtk_notebook_get_nth_page
84 (GTK_NOTEBOOK(tabs), gtk_notebook_current_page(GTK_NOTEBOOK(tabs)));
85 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
86
87 t->properties_activate(tab);
88}
89
73f1b9f3
RK
90/** @brief Called when the login option is activated */
91static void login(gpointer attribute((unused)) callback_data,
92 guint attribute((unused)) callback_action,
93 GtkWidget attribute((unused)) *menu_item) {
94 login_box();
95}
96
ffc4dbaf
RK
97/** @brief Called when the login option is activated */
98static void users(gpointer attribute((unused)) callback_data,
99 guint attribute((unused)) callback_action,
100 GtkWidget attribute((unused)) *menu_item) {
101 manage_users();
102}
103
46fb1b05
RK
104#if 0
105/** @brief Called when the settings option is activated */
106static void settings(gpointer attribute((unused)) callback_data,
107 guint attribute((unused)) callback_action,
108 GtkWidget attribute((unused)) *menu_item) {
109 popup_settings();
110}
111#endif
112
2c348789
RK
113/** @brief Update menu state
114 *
115 * Determines option sensitivity according to the current tab and adjusts the
116 * widgets accordingly. Knows about @ref DISORDER_CONNECTED so the callbacks
117 * need not.
118 */
460b9539 119void menu_update(int page) {
120 GtkWidget *tab = gtk_notebook_get_nth_page
121 (GTK_NOTEBOOK(tabs),
122 page < 0 ? gtk_notebook_current_page(GTK_NOTEBOOK(tabs)) : page);
123 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
124
125 assert(t != 0);
126 gtk_widget_set_sensitive(properties_widget,
e836b1aa 127 (t->properties_sensitive(tab)
8f763f1b 128 && (disorder_eclient_state(client) & DISORDER_CONNECTED)));
460b9539 129 gtk_widget_set_sensitive(selectall_widget,
130 t->selectall_sensitive(tab));
fb009628
RK
131 gtk_widget_set_sensitive(selectnone_widget,
132 t->selectnone_sensitive(tab));
61682944 133 /* TODO Users should only be sensitive if have RIGHT_ADMIN */
460b9539 134}
2c348789
RK
135
136/** @brief Fetch version in order to display the about... popup */
460b9539 137static void about_popup(gpointer attribute((unused)) callback_data,
138 guint attribute((unused)) callback_action,
139 GtkWidget attribute((unused)) *menu_item) {
140 D(("about_popup"));
141
142 gtk_label_set_text(GTK_LABEL(report_label), "getting server version");
143 disorder_eclient_version(client,
144 about_popup_got_version,
145 0);
146}
147
13affe66
RK
148static void manual_popup(gpointer attribute((unused)) callback_data,
149 guint attribute((unused)) callback_action,
150 GtkWidget attribute((unused)) *menu_item) {
151 D(("manual_popup"));
152
153 popup_help();
154}
155
883a4e96 156/** @brief Called when version arrives, displays about... popup */
460b9539 157static void about_popup_got_version(void attribute((unused)) *v,
158 const char *value) {
159 GtkWidget *w;
160 char *server_version_string;
54cca6d6 161 char *short_version_string;
413b30a4 162 GtkWidget *hbox, *vbox, *title;
460b9539 163
164 byte_xasprintf(&server_version_string, "Server version %s", value);
54cca6d6
RK
165 byte_xasprintf(&short_version_string, "Disobedience %s",
166 disorder_short_version_string);
413b30a4 167 w = gtk_dialog_new_with_buttons("About Disobedience",
460b9539 168 GTK_WINDOW(toplevel),
169 (GTK_DIALOG_MODAL
170 |GTK_DIALOG_DESTROY_WITH_PARENT),
171 GTK_STOCK_OK,
172 GTK_RESPONSE_ACCEPT,
173 (char *)NULL);
413b30a4
RK
174 hbox = gtk_hbox_new(FALSE/*homogeneous*/, 1/*padding*/);
175 vbox = gtk_vbox_new(FALSE/*homogeneous*/, 1/*padding*/);
176 gtk_box_pack_start(GTK_BOX(hbox),
177 gtk_image_new_from_pixbuf(find_image("duck.png")),
178 FALSE/*expand*/,
179 FALSE/*fill*/,
180 4/*padding*/);
181 gtk_box_pack_start(GTK_BOX(vbox),
54cca6d6 182 gtk_label_new(short_version_string),
413b30a4
RK
183 FALSE/*expand*/,
184 FALSE/*fill*/,
185 1/*padding*/);
186 gtk_box_pack_start(GTK_BOX(vbox),
187 gtk_label_new(server_version_string),
188 FALSE/*expand*/,
189 FALSE/*fill*/,
190 1/*padding*/);
191 gtk_box_pack_start(GTK_BOX(vbox),
8f9616f1 192 gtk_label_new("\xC2\xA9 2004-2008 Richard Kettlewell"),
413b30a4
RK
193 FALSE/*expand*/,
194 FALSE/*fill*/,
195 1/*padding*/);
196 gtk_box_pack_end(GTK_BOX(hbox),
197 vbox,
198 FALSE/*expand*/,
199 FALSE/*fill*/,
200 0/*padding*/);
201 title = gtk_label_new(0);
202 gtk_label_set_markup(GTK_LABEL(title),
203 "<span font_desc=\"Sans 36\">Disobedience</span>");
204 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(w)->vbox), title,
205 FALSE/*expand*/,
206 FALSE/*fill*/,
207 0/*padding*/);
208 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(w)->vbox), hbox,
209 FALSE/*expand*/,
210 FALSE/*fill*/,
211 0/*padding*/);
76fc02c5 212 set_tool_colors(w);
460b9539 213 gtk_widget_show_all(w);
214 gtk_dialog_run(GTK_DIALOG(w));
215 gtk_widget_destroy(w);
216}
217
2c348789 218/** @brief Create the menu bar widget */
460b9539 219GtkWidget *menubar(GtkWidget *w) {
d4ef4132
RK
220 GtkWidget *m;
221
460b9539 222 static const GtkItemFactoryEntry entries[] = {
2d504956 223 {
eb80584d 224 (char *)"/Server", /* path */
2d504956
RK
225 0, /* accelerator */
226 0, /* callback */
227 0, /* callback_action */
228 (char *)"<Branch>", /* item_type */
229 0 /* extra_data */
230 },
231 {
eb80584d 232 (char *)"/Server/Login", /* path */
2d504956
RK
233 (char *)"<CTRL>L", /* accelerator */
234 login, /* callback */
235 0, /* callback_action */
236 0, /* item_type */
237 0 /* extra_data */
238 },
ffc4dbaf 239 {
eb80584d 240 (char *)"/Server/Manage users", /* path */
ffc4dbaf
RK
241 0, /* accelerator */
242 users, /* callback */
243 0, /* callback_action */
244 0, /* item_type */
245 0 /* extra_data */
246 },
46fb1b05
RK
247#if 0
248 {
eb80584d 249 (char *)"/Server/Settings", /* path */
46fb1b05
RK
250 0, /* accelerator */
251 settings, /* callback */
252 0, /* callback_action */
253 0, /* item_type */
254 0 /* extra_data */
255 },
256#endif
2d504956 257 {
eb80584d 258 (char *)"/Server/Quit Disobedience", /* path */
2d504956
RK
259 (char *)"<CTRL>Q", /* accelerator */
260 quit_program, /* callback */
261 0, /* callback_action */
262 (char *)"<StockItem>", /* item_type */
263 GTK_STOCK_QUIT /* extra_data */
264 },
ac6bf2ba 265
2d504956
RK
266 {
267 (char *)"/Edit", /* path */
268 0, /* accelerator */
269 0, /* callback */
270 0, /* callback_action */
271 (char *)"<Branch>", /* item_type */
272 0 /* extra_data */
273 },
274 {
275 (char *)"/Edit/Select all tracks", /* path */
276 (char *)"<CTRL>A", /* accelerator */
277 select_all, /* callback */
278 0, /* callback_action */
279 0, /* item_type */
280 0 /* extra_data */
281 },
fb009628
RK
282 {
283 (char *)"/Edit/Deselect all tracks", /* path */
284 (char *)"<CTRL><SHIFT>A", /* accelerator */
285 select_none, /* callback */
286 0, /* callback_action */
287 0, /* item_type */
288 0 /* extra_data */
289 },
2d504956
RK
290 {
291 (char *)"/Edit/Track properties", /* path */
292 0, /* accelerator */
293 properties_item, /* callback */
294 0, /* callback_action */
295 0, /* item_type */
296 0 /* extra_data */
297 },
298
299 {
300 (char *)"/Control", /* path */
301 0, /* accelerator */
302 0, /* callback */
303 0, /* callback_action */
304 (char *)"<Branch>", /* item_type */
305 0 /* extra_data */
306 },
307 {
308 (char *)"/Control/Scratch", /* path */
309 (char *)"<CTRL>S", /* accelerator */
310 0, /* callback */
311 0, /* callback_action */
312 0, /* item_type */
313 0 /* extra_data */
314 },
685bdfbd
RK
315 {
316 (char *)"/Control/Playing", /* path */
317 (char *)"<CTRL>P", /* accelerator */
318 0, /* callback */
319 0, /* callback_action */
320 (char *)"<CheckItem>", /* item_type */
321 0 /* extra_data */
322 },
2d504956
RK
323 {
324 (char *)"/Control/Random play", /* path */
325 (char *)"<CTRL>R", /* accelerator */
326 0, /* callback */
685bdfbd
RK
327 0, /* callback_action */
328 (char *)"<CheckItem>", /* item_type */
329 0 /* extra_data */
330 },
331 {
332 (char *)"/Control/Network player", /* path */
333 (char *)"<CTRL>N", /* accelerator */
334 0, /* callback */
2d504956
RK
335 0, /* callback_action */
336 (char *)"<CheckItem>", /* item_type */
337 0 /* extra_data */
338 },
339
340 {
341 (char *)"/Help", /* path */
342 0, /* accelerator */
343 0, /* callback */
344 0, /* callback_action */
345 (char *)"<Branch>", /* item_type */
346 0 /* extra_data */
347 },
13affe66
RK
348 {
349 (char *)"/Help/Manual page", /* path */
350 0, /* accelerator */
351 manual_popup, /* callback */
352 0, /* callback_action */
353 0, /* item_type */
354 0 /* extra_data */
355 },
2d504956
RK
356 {
357 (char *)"/Help/About DisOrder", /* path */
358 0, /* accelerator */
359 about_popup, /* callback */
360 0, /* callback_action */
361 (char *)"<StockItem>", /* item_type */
362 GTK_STOCK_ABOUT /* extra_data */
363 },
460b9539 364 };
365
460b9539 366 GtkAccelGroup *accel = gtk_accel_group_new();
367
368 D(("add_menubar"));
369 /* TODO: item factories are deprecated in favour of some XML thing */
ac6bf2ba
RK
370 mainmenufactory = gtk_item_factory_new(GTK_TYPE_MENU_BAR, "<GdisorderMain>",
371 accel);
372 gtk_item_factory_create_items(mainmenufactory,
460b9539 373 sizeof entries / sizeof *entries,
374 (GtkItemFactoryEntry *)entries,
375 0);
376 gtk_window_add_accel_group(GTK_WINDOW(w), accel);
ac6bf2ba 377 selectall_widget = gtk_item_factory_get_widget(mainmenufactory,
39fe1014 378 "<GdisorderMain>/Edit/Select all tracks");
fb009628
RK
379 selectnone_widget = gtk_item_factory_get_widget(mainmenufactory,
380 "<GdisorderMain>/Edit/Deselect all tracks");
ac6bf2ba 381 properties_widget = gtk_item_factory_get_widget(mainmenufactory,
39fe1014 382 "<GdisorderMain>/Edit/Track properties");
460b9539 383 assert(selectall_widget != 0);
fb009628 384 assert(selectnone_widget != 0);
460b9539 385 assert(properties_widget != 0);
d4ef4132
RK
386 m = gtk_item_factory_get_widget(mainmenufactory,
387 "<GdisorderMain>");
388 set_tool_colors(m);
389 return m;
460b9539 390}
391
392/*
393Local Variables:
394c-basic-offset:2
395comment-column:40
396fill-column:79
397indent-tabs-mode:nil
398End:
399*/