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