chiark / gitweb /
Check rights for menu items too
[disorder] / disobedience / disobedience.h
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/disobedience.h
21 * @brief Header file for Disobedience, the DisOrder GTK+ client
22 */
460b9539 23
24#ifndef DISOBEDIENCE_H
25#define DISOBEDIENCE_H
26
05b75f8d 27#include "common.h"
460b9539 28
460b9539 29#include <time.h>
460b9539 30#include <ctype.h>
31#include <errno.h>
32#include <math.h>
33
34#include "mem.h"
35#include "log.h"
36#include "eclient.h"
37#include "printf.h"
38#include "cache.h"
39#include "queue.h"
40#include "printf.h"
41#include "vector.h"
42#include "trackname.h"
43#include "syscalls.h"
44#include "defs.h"
45#include "configuration.h"
46#include "hash.h"
47#include "selection.h"
53fa91bb 48#include "kvp.h"
3569ddb8 49#include "eventdist.h"
460b9539 50
51#include <glib.h>
52#include <gtk/gtk.h>
53#include <gdk-pixbuf/gdk-pixbuf.h>
54
55/* Types ------------------------------------------------------------------- */
56
57struct queuelike;
58struct choosenode;
c3df9503 59struct progress_window;
460b9539 60
2c348789
RK
61/** @brief Callback data structure
62 *
63 * This program is extremely heavily callback-driven. Rather than have
64 * numerous different callback structures we have a single one which can be
65 * interpreted adequately both by success and error handlers.
66 */
460b9539 67struct callbackdata {
68 void (*onerror)(struct callbackdata *cbd,
69 int code,
70 const char *msg); /* called on error */
71 union {
72 const char *key; /* gtkqueue.c op_part_lookup */
73 struct choosenode *choosenode; /* gtkchoose.c got_files/got_dirs */
74 struct queuelike *ql; /* gtkqueue.c queuelike_completed */
75 struct prefdata *f; /* properties.c */
4aa8a0a4 76 const char *user; /* users.c */
0d719587
RK
77 struct {
78 const char *user, *email; /* users.c */
79 } edituser;
460b9539 80 } u;
81};
82
2c348789
RK
83/** @brief Per-tab callbacks
84 *
85 * Some of the options in the main menu depend on which tab is displayed, so we
86 * have some callbacks to set them appropriately.
87 */
460b9539 88struct tabtype {
89 int (*properties_sensitive)(GtkWidget *tab);
90 int (*selectall_sensitive)(GtkWidget *tab);
fb009628 91 int (*selectnone_sensitive)(GtkWidget *tab);
460b9539 92 void (*properties_activate)(GtkWidget *tab);
93 void (*selectall_activate)(GtkWidget *tab);
fb009628 94 void (*selectnone_activate)(GtkWidget *tab);
460b9539 95};
96
73f1b9f3
RK
97/** @brief Button definitions */
98struct button {
99 const gchar *stock;
100 void (*clicked)(GtkButton *button, gpointer userdata);
101 const char *tip;
f44417cf 102 GtkWidget *widget;
73f1b9f3
RK
103};
104
460b9539 105/* Variables --------------------------------------------------------------- */
106
107extern GMainLoop *mainloop;
108extern GtkWidget *toplevel; /* top level window */
109extern GtkWidget *report_label; /* label for progress indicator */
110extern GtkWidget *tabs; /* main tabs */
111extern disorder_eclient *client; /* main client */
112
113extern unsigned long last_state; /* last reported state */
6f09d54d 114extern rights_type last_rights; /* last reported rights bitmap */
460b9539 115extern int playing; /* true if playing some track */
116extern int volume_l, volume_r; /* current volume */
117extern double goesupto; /* volume upper bound */
118extern int choosealpha; /* break up choose by letter */
348ef780 119extern GtkTooltips *tips;
a99c4e9a
RK
120extern int rtp_supported;
121extern int rtp_is_running;
ac6bf2ba 122extern GtkItemFactory *mainmenufactory;
460b9539 123
10e226b3
RK
124extern const disorder_eclient_log_callbacks log_callbacks;
125
460b9539 126/* Functions --------------------------------------------------------------- */
127
128disorder_eclient *gtkclient(void);
129/* Configure C for use in GTK+ programs */
130
131void popup_protocol_error(int code,
132 const char *msg);
133/* Report an error */
134
16e145a5 135void properties(int ntracks, const char **tracks);
460b9539 136/* Pop up a properties window for a list of tracks */
137
d4ef4132 138GtkWidget *scroll_widget(GtkWidget *child);
460b9539 139/* Wrap a widget up for scrolling */
140
e18c4734
RK
141GtkWidget *frame_widget(GtkWidget *w, const char *title);
142
460b9539 143GdkPixbuf *find_image(const char *name);
144/* Get the pixbuf for an image. Returns a null pointer if it cannot be
145 * found. */
146
043d60b1 147void popup_msg(GtkMessageType mt, const char *msg);
34239ce4 148void popup_submsg(GtkWidget *parent, GtkMessageType mt, const char *msg);
460b9539 149
043d60b1 150void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
73f1b9f3 151
c3df9503
RK
152struct progress_window *progress_window_new(const char *title);
153/* Pop up a progress window */
154
155void progress_window_progress(struct progress_window *pw,
156 int progress,
157 int limit);
158/* Report current progress */
159
fcc8b9f7
RK
160GtkWidget *iconbutton(const char *path, const char *tip);
161
f44417cf 162GtkWidget *create_buttons(struct button *buttons,
73f1b9f3 163 size_t nbuttons);
f44417cf 164GtkWidget *create_buttons_box(struct button *buttons,
ffc4dbaf
RK
165 size_t nbuttons,
166 GtkWidget *box);
73f1b9f3 167
7c30fc75 168void logged_in(void);
73f1b9f3 169
10e226b3
RK
170void all_update(void);
171/* Update everything */
460b9539 172
173/* Main menu */
174
175GtkWidget *menubar(GtkWidget *w);
176/* Create the menu bar */
177
178void menu_update(int page);
179/* Called whenever the main menu might need to change. PAGE is the current
180 * page if known or -1 otherwise. */
181
c73bd6c1 182void users_set_sensitive(int sensitive);
460b9539 183
184/* Controls */
185
186GtkWidget *control_widget(void);
187/* Make the controls widget */
188
fb44b59e
RK
189extern int suppress_actions;
190
4eb1f430 191/* Queue/Recent/Added */
460b9539 192
193GtkWidget *queue_widget(void);
194GtkWidget *recent_widget(void);
4eb1f430
RK
195GtkWidget *added_widget(void);
196/* Create widgets for displaying the queue, the recently played list and the
197 * newly added tracks list */
460b9539 198
460b9539 199void queue_select_all(struct queuelike *ql);
fb009628
RK
200void queue_select_none(struct queuelike *ql);
201/* Select all/none on some queue */
460b9539 202
203void queue_properties(struct queuelike *ql);
204/* Pop up properties of selected items in some queue */
205
460b9539 206int queued(const char *track);
207/* Return nonzero iff TRACK is queued or playing */
208
209void namepart_update(const char *track,
210 const char *context,
211 const char *part);
212/* Called when a namepart might have changed */
213
460b9539 214/* Choose */
215
216GtkWidget *choose_widget(void);
217/* Create a widget for choosing tracks */
218
219void choose_update(void);
220/* Called when we think the choose tree might need updating */
221
53fa91bb
RK
222void play_completed(void *v,
223 const char *error);
224
a99c4e9a
RK
225/* Login details */
226
73f1b9f3
RK
227void login_box(void);
228
e9e8a16d
RK
229GtkWidget *login_window;
230
ffc4dbaf
RK
231/* User management */
232
233void manage_users(void);
234
13affe66
RK
235/* Help */
236
237void popup_help(void);
238
a99c4e9a
RK
239/* RTP */
240
241int rtp_running(void);
242void start_rtp(void);
243void stop_rtp(void);
244
f486ea18 245/* Settings */
d4ef4132 246
33288048
RK
247void init_styles(void);
248extern GtkStyle *layout_style;
249extern GtkStyle *title_style;
250extern GtkStyle *even_style;
251extern GtkStyle *odd_style;
252extern GtkStyle *active_style;
253extern GtkStyle *tool_style;
254extern GtkStyle *search_style;
255extern GtkStyle *drag_style;
d4ef4132 256
f486ea18
RK
257extern const char *browser;
258
259void save_settings(void);
260void load_settings(void);
d4ef4132 261void set_tool_colors(GtkWidget *w);
46fb1b05 262void popup_settings(void);
d4ef4132 263
e9b70a84 264/* Widget leakage debugging rubbish ---------------------------------------- */
265
266#if MDEBUG
267#define NW(what) do { \
268 if(++current##what % 100 > max##what) { \
269 fprintf(stderr, "%s:%d: %d %s\n", \
270 __FILE__, __LINE__, current##what, #what); \
271 max##what = current##what; \
272 } \
273} while(0)
274#define WT(what) static int current##what, max##what
275#define DW(what) (--current##what)
276#else
1a48886f
RK
277#define NW(what) do { } while(0)
278#define DW(what) do { } while(0)
e9b70a84 279#define WT(what) struct neverused
280#endif
281
e1d4a32b 282#if MTRACK
283extern const char *mtag;
284#define MTAG(x) do { mtag = x; } while(0)
285#define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
286#define MTAG_POP() mtag = save_mtag; } while(0)
287#else
288#define MTAG(x) do { } while(0)
289#define MTAG_PUSH(x) do {} while(0)
290#define MTAG_POP() do {} while(0)
291#endif
292
460b9539 293#endif /* DISOBEDIENCE_H */
294
295/*
296Local Variables:
297c-basic-offset:2
298comment-column:40
299fill-column:79
300indent-tabs-mode:nil
301End:
302*/