chiark / gitweb /
More event_*
[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 */
114extern int playing; /* true if playing some track */
115extern int volume_l, volume_r; /* current volume */
116extern double goesupto; /* volume upper bound */
117extern int choosealpha; /* break up choose by letter */
348ef780 118extern GtkTooltips *tips;
a99c4e9a
RK
119extern int rtp_supported;
120extern int rtp_is_running;
ac6bf2ba 121extern GtkItemFactory *mainmenufactory;
460b9539 122
10e226b3
RK
123extern const disorder_eclient_log_callbacks log_callbacks;
124
00959300 125typedef void monitor_callback(void *u);
186f896b 126
460b9539 127/* Functions --------------------------------------------------------------- */
128
129disorder_eclient *gtkclient(void);
130/* Configure C for use in GTK+ programs */
131
132void popup_protocol_error(int code,
133 const char *msg);
134/* Report an error */
135
16e145a5 136void properties(int ntracks, const char **tracks);
460b9539 137/* Pop up a properties window for a list of tracks */
138
73f1b9f3
RK
139void properties_reset(void);
140
d4ef4132 141GtkWidget *scroll_widget(GtkWidget *child);
460b9539 142/* Wrap a widget up for scrolling */
143
e18c4734
RK
144GtkWidget *frame_widget(GtkWidget *w, const char *title);
145
460b9539 146GdkPixbuf *find_image(const char *name);
147/* Get the pixbuf for an image. Returns a null pointer if it cannot be
148 * found. */
149
043d60b1 150void popup_msg(GtkMessageType mt, const char *msg);
34239ce4 151void popup_submsg(GtkWidget *parent, GtkMessageType mt, const char *msg);
460b9539 152
043d60b1 153void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
73f1b9f3 154
c3df9503
RK
155struct progress_window *progress_window_new(const char *title);
156/* Pop up a progress window */
157
158void progress_window_progress(struct progress_window *pw,
159 int progress,
160 int limit);
161/* Report current progress */
162
fcc8b9f7
RK
163GtkWidget *iconbutton(const char *path, const char *tip);
164
f44417cf 165GtkWidget *create_buttons(struct button *buttons,
73f1b9f3 166 size_t nbuttons);
f44417cf 167GtkWidget *create_buttons_box(struct button *buttons,
ffc4dbaf
RK
168 size_t nbuttons,
169 GtkWidget *box);
73f1b9f3 170
186f896b
RK
171void register_monitor(monitor_callback *callback,
172 void *u,
173 unsigned long mask);
174/* Register a state monitor */
175
73f1b9f3
RK
176/** @brief Type signature for a reset callback */
177typedef void reset_callback(void);
178
179void register_reset(reset_callback *callback);
180/* Register a reset callback */
181
182void reset(void);
183
10e226b3
RK
184void all_update(void);
185/* Update everything */
460b9539 186
187/* Main menu */
188
189GtkWidget *menubar(GtkWidget *w);
190/* Create the menu bar */
191
192void menu_update(int page);
193/* Called whenever the main menu might need to change. PAGE is the current
194 * page if known or -1 otherwise. */
195
c73bd6c1 196void users_set_sensitive(int sensitive);
460b9539 197
198/* Controls */
199
200GtkWidget *control_widget(void);
201/* Make the controls widget */
202
a99c4e9a
RK
203void control_monitor(void *u);
204
fb44b59e
RK
205extern int suppress_actions;
206
4eb1f430 207/* Queue/Recent/Added */
460b9539 208
209GtkWidget *queue_widget(void);
210GtkWidget *recent_widget(void);
4eb1f430
RK
211GtkWidget *added_widget(void);
212/* Create widgets for displaying the queue, the recently played list and the
213 * newly added tracks list */
460b9539 214
460b9539 215void queue_select_all(struct queuelike *ql);
fb009628
RK
216void queue_select_none(struct queuelike *ql);
217/* Select all/none on some queue */
460b9539 218
219void queue_properties(struct queuelike *ql);
220/* Pop up properties of selected items in some queue */
221
460b9539 222int queued(const char *track);
223/* Return nonzero iff TRACK is queued or playing */
224
225void namepart_update(const char *track,
226 const char *context,
227 const char *part);
228/* Called when a namepart might have changed */
229
460b9539 230/* Choose */
231
232GtkWidget *choose_widget(void);
233/* Create a widget for choosing tracks */
234
235void choose_update(void);
236/* Called when we think the choose tree might need updating */
237
53fa91bb
RK
238void play_completed(void *v,
239 const char *error);
240
a99c4e9a
RK
241/* Login details */
242
73f1b9f3
RK
243void login_box(void);
244
e9e8a16d
RK
245GtkWidget *login_window;
246
ffc4dbaf
RK
247/* User management */
248
249void manage_users(void);
250
13affe66
RK
251/* Help */
252
253void popup_help(void);
254
a99c4e9a
RK
255/* RTP */
256
257int rtp_running(void);
258void start_rtp(void);
259void stop_rtp(void);
260
f486ea18 261/* Settings */
d4ef4132 262
33288048
RK
263void init_styles(void);
264extern GtkStyle *layout_style;
265extern GtkStyle *title_style;
266extern GtkStyle *even_style;
267extern GtkStyle *odd_style;
268extern GtkStyle *active_style;
269extern GtkStyle *tool_style;
270extern GtkStyle *search_style;
271extern GtkStyle *drag_style;
d4ef4132 272
f486ea18
RK
273extern const char *browser;
274
275void save_settings(void);
276void load_settings(void);
d4ef4132 277void set_tool_colors(GtkWidget *w);
46fb1b05 278void popup_settings(void);
d4ef4132 279
e9b70a84 280/* Widget leakage debugging rubbish ---------------------------------------- */
281
282#if MDEBUG
283#define NW(what) do { \
284 if(++current##what % 100 > max##what) { \
285 fprintf(stderr, "%s:%d: %d %s\n", \
286 __FILE__, __LINE__, current##what, #what); \
287 max##what = current##what; \
288 } \
289} while(0)
290#define WT(what) static int current##what, max##what
291#define DW(what) (--current##what)
292#else
1a48886f
RK
293#define NW(what) do { } while(0)
294#define DW(what) do { } while(0)
e9b70a84 295#define WT(what) struct neverused
296#endif
297
e1d4a32b 298#if MTRACK
299extern const char *mtag;
300#define MTAG(x) do { mtag = x; } while(0)
301#define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
302#define MTAG_POP() mtag = save_mtag; } while(0)
303#else
304#define MTAG(x) do { } while(0)
305#define MTAG_PUSH(x) do {} while(0)
306#define MTAG_POP() do {} while(0)
307#endif
308
460b9539 309#endif /* DISOBEDIENCE_H */
310
311/*
312Local Variables:
313c-basic-offset:2
314comment-column:40
315fill-column:79
316indent-tabs-mode:nil
317End:
318*/