chiark / gitweb /
start to create menu items corresponding to control items
[disorder] / disobedience / menu.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
73f1b9f3 3 * Copyright (C) 2006, 2007 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;
27static GtkWidget *properties_widget;
28
ac6bf2ba
RK
29/** @brief Main menu widgets */
30GtkItemFactory *mainmenufactory;
31
460b9539 32static void about_popup_got_version(void *v, const char *value);
33
2c348789
RK
34/** @brief Called when the quit option is activated
35 *
36 * Just exits.
37 */
460b9539 38static void quit_program(gpointer attribute((unused)) callback_data,
39 guint attribute((unused)) callback_action,
40 GtkWidget attribute((unused)) *menu_item) {
41 D(("quit_program"));
42 exit(0);
43}
44
45/* TODO can we have a single parameterized callback for all these */
2c348789
RK
46
47/** @brief Called when the select all option is activated
48 *
49 * Calls the per-tab select all function.
50 */
460b9539 51static void select_all(gpointer attribute((unused)) callback_data,
52 guint attribute((unused)) callback_action,
53 GtkWidget attribute((unused)) *menu_item) {
54 GtkWidget *tab = gtk_notebook_get_nth_page
55 (GTK_NOTEBOOK(tabs), gtk_notebook_current_page(GTK_NOTEBOOK(tabs)));
56 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
57
58 t->selectall_activate(tab);
59}
60
2c348789
RK
61/** @brief Called when the track properties option is activated
62 *
63 * Calls the per-tab properties function.
64 */
460b9539 65static void properties_item(gpointer attribute((unused)) callback_data,
66 guint attribute((unused)) callback_action,
67 GtkWidget attribute((unused)) *menu_item) {
68 GtkWidget *tab = gtk_notebook_get_nth_page
69 (GTK_NOTEBOOK(tabs), gtk_notebook_current_page(GTK_NOTEBOOK(tabs)));
70 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
71
72 t->properties_activate(tab);
73}
74
73f1b9f3
RK
75/** @brief Called when the login option is activated */
76static void login(gpointer attribute((unused)) callback_data,
77 guint attribute((unused)) callback_action,
78 GtkWidget attribute((unused)) *menu_item) {
79 login_box();
80}
81
2c348789
RK
82/** @brief Update menu state
83 *
84 * Determines option sensitivity according to the current tab and adjusts the
85 * widgets accordingly. Knows about @ref DISORDER_CONNECTED so the callbacks
86 * need not.
87 */
460b9539 88void menu_update(int page) {
89 GtkWidget *tab = gtk_notebook_get_nth_page
90 (GTK_NOTEBOOK(tabs),
91 page < 0 ? gtk_notebook_current_page(GTK_NOTEBOOK(tabs)) : page);
92 const struct tabtype *t = g_object_get_data(G_OBJECT(tab), "type");
93
94 assert(t != 0);
95 gtk_widget_set_sensitive(properties_widget,
e836b1aa 96 (t->properties_sensitive(tab)
8f763f1b 97 && (disorder_eclient_state(client) & DISORDER_CONNECTED)));
460b9539 98 gtk_widget_set_sensitive(selectall_widget,
99 t->selectall_sensitive(tab));
100}
2c348789
RK
101
102/** @brief Fetch version in order to display the about... popup */
460b9539 103static void about_popup(gpointer attribute((unused)) callback_data,
104 guint attribute((unused)) callback_action,
105 GtkWidget attribute((unused)) *menu_item) {
106 D(("about_popup"));
107
108 gtk_label_set_text(GTK_LABEL(report_label), "getting server version");
109 disorder_eclient_version(client,
110 about_popup_got_version,
111 0);
112}
113
2c348789 114/** @brief Callde when version arrives, displays about... popup */
460b9539 115static void about_popup_got_version(void attribute((unused)) *v,
116 const char *value) {
117 GtkWidget *w;
118 char *server_version_string;
119
120 byte_xasprintf(&server_version_string, "Server version %s", value);
121 w = gtk_dialog_new_with_buttons("About DisOrder",
122 GTK_WINDOW(toplevel),
123 (GTK_DIALOG_MODAL
124 |GTK_DIALOG_DESTROY_WITH_PARENT),
125 GTK_STOCK_OK,
126 GTK_RESPONSE_ACCEPT,
127 (char *)NULL);
128 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(w)->vbox),
129 gtk_label_new("DisOrder client " VERSION));
130 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(w)->vbox),
131 gtk_label_new(server_version_string));
132 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(w)->vbox),
eb525fcd 133 gtk_label_new("(c) 2004-2007 Richard Kettlewell"));
460b9539 134 gtk_widget_show_all(w);
135 gtk_dialog_run(GTK_DIALOG(w));
136 gtk_widget_destroy(w);
137}
138
2c348789 139/** @brief Create the menu bar widget */
460b9539 140GtkWidget *menubar(GtkWidget *w) {
141 static const GtkItemFactoryEntry entries[] = {
142 { (char *)"/File", 0, 0, 0, (char *)"<Branch>", 0 },
73f1b9f3
RK
143 { (char *)"/File/Login", (char *)"<CTRL>L", login, 0,
144 0, 0 },
39fe1014 145 { (char *)"/File/Quit Disobedience", (char *)"<CTRL>Q", quit_program, 0,
460b9539 146 (char *)"<StockItem>", GTK_STOCK_QUIT },
ac6bf2ba 147
460b9539 148 { (char *)"/Edit", 0, 0, 0, (char *)"<Branch>", 0 },
39fe1014 149 { (char *)"/Edit/Select all tracks", (char *)"<CTRL>A", select_all, 0,
460b9539 150 0, 0 },
39fe1014 151 { (char *)"/Edit/Track properties", 0, properties_item, 0,
460b9539 152 0, 0 },
ac6bf2ba
RK
153
154 { (char *)"/Control", 0, 0, 0, (char *)"<Branch>", 0 },
155 { (char *)"/Control/Scratch", (char *)"<CTRL>S", 0, 0, 0, 0 },
156
460b9539 157 { (char *)"/Help", 0, 0, 0, (char *)"<Branch>", 0 },
158 { (char *)"/Help/About DisOrder", 0, about_popup, 0,
159 (char *)"<StockItem>", GTK_STOCK_ABOUT },
160 };
161
460b9539 162 GtkAccelGroup *accel = gtk_accel_group_new();
163
164 D(("add_menubar"));
165 /* TODO: item factories are deprecated in favour of some XML thing */
ac6bf2ba
RK
166 mainmenufactory = gtk_item_factory_new(GTK_TYPE_MENU_BAR, "<GdisorderMain>",
167 accel);
168 gtk_item_factory_create_items(mainmenufactory,
460b9539 169 sizeof entries / sizeof *entries,
170 (GtkItemFactoryEntry *)entries,
171 0);
172 gtk_window_add_accel_group(GTK_WINDOW(w), accel);
ac6bf2ba 173 selectall_widget = gtk_item_factory_get_widget(mainmenufactory,
39fe1014 174 "<GdisorderMain>/Edit/Select all tracks");
ac6bf2ba 175 properties_widget = gtk_item_factory_get_widget(mainmenufactory,
39fe1014 176 "<GdisorderMain>/Edit/Track properties");
460b9539 177 assert(selectall_widget != 0);
178 assert(properties_widget != 0);
ac6bf2ba 179 return gtk_item_factory_get_widget(mainmenufactory,
460b9539 180 "<GdisorderMain>");
181 /* menu bar had better not expand vertically if the window is too big */
182}
183
184/*
185Local Variables:
186c-basic-offset:2
187comment-column:40
188fill-column:79
189indent-tabs-mode:nil
190End:
191*/