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