chiark / gitweb /
Move apply button creation earlier so it exists in time to be
[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 */
4aa8a0a4 78 const char *user; /* users.c */
460b9539 79 } u;
80};
81
2c348789
RK
82/** @brief Per-tab callbacks
83 *
84 * Some of the options in the main menu depend on which tab is displayed, so we
85 * have some callbacks to set them appropriately.
86 */
460b9539 87struct tabtype {
88 int (*properties_sensitive)(GtkWidget *tab);
89 int (*selectall_sensitive)(GtkWidget *tab);
fb009628 90 int (*selectnone_sensitive)(GtkWidget *tab);
460b9539 91 void (*properties_activate)(GtkWidget *tab);
92 void (*selectall_activate)(GtkWidget *tab);
fb009628 93 void (*selectnone_activate)(GtkWidget *tab);
460b9539 94};
95
73f1b9f3
RK
96/** @brief Button definitions */
97struct button {
98 const gchar *stock;
99 void (*clicked)(GtkButton *button, gpointer userdata);
100 const char *tip;
f44417cf 101 GtkWidget *widget;
73f1b9f3
RK
102};
103
460b9539 104/* Variables --------------------------------------------------------------- */
105
106extern GMainLoop *mainloop;
107extern GtkWidget *toplevel; /* top level window */
108extern GtkWidget *report_label; /* label for progress indicator */
109extern GtkWidget *tabs; /* main tabs */
110extern disorder_eclient *client; /* main client */
111
112extern unsigned long last_state; /* last reported state */
113extern int playing; /* true if playing some track */
114extern int volume_l, volume_r; /* current volume */
115extern double goesupto; /* volume upper bound */
116extern int choosealpha; /* break up choose by letter */
348ef780 117extern GtkTooltips *tips;
a99c4e9a
RK
118extern int rtp_supported;
119extern int rtp_is_running;
ac6bf2ba 120extern GtkItemFactory *mainmenufactory;
460b9539 121
10e226b3
RK
122extern const disorder_eclient_log_callbacks log_callbacks;
123
00959300 124typedef void monitor_callback(void *u);
186f896b 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
73f1b9f3
RK
138void properties_reset(void);
139
d4ef4132 140GtkWidget *scroll_widget(GtkWidget *child);
460b9539 141/* Wrap a widget up for scrolling */
142
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
RK
147void popup_msg(GtkMessageType mt, const char *msg);
148/* Pop up a message */
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
186f896b
RK
168void register_monitor(monitor_callback *callback,
169 void *u,
170 unsigned long mask);
171/* Register a state monitor */
172
73f1b9f3
RK
173/** @brief Type signature for a reset callback */
174typedef void reset_callback(void);
175
176void register_reset(reset_callback *callback);
177/* Register a reset callback */
178
179void reset(void);
180
10e226b3
RK
181void all_update(void);
182/* Update everything */
460b9539 183
184/* Main menu */
185
186GtkWidget *menubar(GtkWidget *w);
187/* Create the menu bar */
188
189void menu_update(int page);
190/* Called whenever the main menu might need to change. PAGE is the current
191 * page if known or -1 otherwise. */
192
193
194/* Controls */
195
196GtkWidget *control_widget(void);
197/* Make the controls widget */
198
6d1302f0
RK
199void volume_update(void);
200/* Called whenever we think the volume control has changed */
460b9539 201
a99c4e9a
RK
202void control_monitor(void *u);
203
fb44b59e
RK
204extern int suppress_actions;
205
4eb1f430 206/* Queue/Recent/Added */
460b9539 207
208GtkWidget *queue_widget(void);
209GtkWidget *recent_widget(void);
4eb1f430
RK
210GtkWidget *added_widget(void);
211/* Create widgets for displaying the queue, the recently played list and the
212 * newly added tracks list */
460b9539 213
214void queue_update(void);
215void recent_update(void);
4eb1f430
RK
216void added_update(void);
217/* Called whenever we think the queue, recent or newly-added list might have
218 * changed */
460b9539 219
220void queue_select_all(struct queuelike *ql);
fb009628
RK
221void queue_select_none(struct queuelike *ql);
222/* Select all/none on some queue */
460b9539 223
224void queue_properties(struct queuelike *ql);
225/* Pop up properties of selected items in some queue */
226
460b9539 227int queued(const char *track);
228/* Return nonzero iff TRACK is queued or playing */
229
230void namepart_update(const char *track,
231 const char *context,
232 const char *part);
233/* Called when a namepart might have changed */
234
235
236/* Choose */
237
238GtkWidget *choose_widget(void);
239/* Create a widget for choosing tracks */
240
241void choose_update(void);
242/* Called when we think the choose tree might need updating */
243
a99c4e9a
RK
244/* Login details */
245
73f1b9f3
RK
246void login_box(void);
247
e9e8a16d
RK
248GtkWidget *login_window;
249
ffc4dbaf
RK
250/* User management */
251
252void manage_users(void);
253
13affe66
RK
254/* Help */
255
256void popup_help(void);
257
a99c4e9a
RK
258/* RTP */
259
260int rtp_running(void);
261void start_rtp(void);
262void stop_rtp(void);
263
f486ea18 264/* Settings */
d4ef4132 265
33288048
RK
266void init_styles(void);
267extern GtkStyle *layout_style;
268extern GtkStyle *title_style;
269extern GtkStyle *even_style;
270extern GtkStyle *odd_style;
271extern GtkStyle *active_style;
272extern GtkStyle *tool_style;
273extern GtkStyle *search_style;
274extern GtkStyle *drag_style;
d4ef4132 275
f486ea18
RK
276extern const char *browser;
277
278void save_settings(void);
279void load_settings(void);
d4ef4132 280void set_tool_colors(GtkWidget *w);
46fb1b05 281void popup_settings(void);
d4ef4132 282
e9b70a84 283/* Widget leakage debugging rubbish ---------------------------------------- */
284
285#if MDEBUG
286#define NW(what) do { \
287 if(++current##what % 100 > max##what) { \
288 fprintf(stderr, "%s:%d: %d %s\n", \
289 __FILE__, __LINE__, current##what, #what); \
290 max##what = current##what; \
291 } \
292} while(0)
293#define WT(what) static int current##what, max##what
294#define DW(what) (--current##what)
295#else
1a48886f
RK
296#define NW(what) do { } while(0)
297#define DW(what) do { } while(0)
e9b70a84 298#define WT(what) struct neverused
299#endif
300
e1d4a32b 301#if MTRACK
302extern const char *mtag;
303#define MTAG(x) do { mtag = x; } while(0)
304#define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
305#define MTAG_POP() mtag = save_mtag; } while(0)
306#else
307#define MTAG(x) do { } while(0)
308#define MTAG_PUSH(x) do {} while(0)
309#define MTAG_POP() do {} while(0)
310#endif
311
460b9539 312#endif /* DISOBEDIENCE_H */
313
314/*
315Local Variables:
316c-basic-offset:2
317comment-column:40
318fill-column:79
319indent-tabs-mode:nil
320End:
321*/