chiark / gitweb /
force HTML-ized man pages to use ASCII
[disorder] / disobedience / disobedience.h
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2006-2008 Richard Kettlewell
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 */
20/** @file disobedience/disobedience.h
21 * @brief Header file for Disobedience, the DisOrder GTK+ client
22 */
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;
61struct progress_window;
62
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 */
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
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 */
86struct tabtype {
87 int (*properties_sensitive)(GtkWidget *tab);
88 int (*selectall_sensitive)(GtkWidget *tab);
89 int (*selectnone_sensitive)(GtkWidget *tab);
90 void (*properties_activate)(GtkWidget *tab);
91 void (*selectall_activate)(GtkWidget *tab);
92 void (*selectnone_activate)(GtkWidget *tab);
93};
94
95/** @brief Button definitions */
96struct button {
97 const gchar *stock;
98 void (*clicked)(GtkButton *button, gpointer userdata);
99 const char *tip;
100};
101
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 */
115extern GtkTooltips *tips;
116extern int rtp_supported;
117extern int rtp_is_running;
118extern GtkItemFactory *mainmenufactory;
119
120extern const disorder_eclient_log_callbacks log_callbacks;
121
122typedef void monitor_callback(void *u);
123
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
133void properties(int ntracks, const char **tracks);
134/* Pop up a properties window for a list of tracks */
135
136void properties_reset(void);
137
138GtkWidget *scroll_widget(GtkWidget *child);
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
145void popup_msg(GtkMessageType mt, const char *msg);
146/* Pop up a message */
147
148void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
149
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
158GtkWidget *iconbutton(const char *path, const char *tip);
159
160GtkWidget *create_buttons(const struct button *buttons,
161 size_t nbuttons);
162
163void register_monitor(monitor_callback *callback,
164 void *u,
165 unsigned long mask);
166/* Register a state monitor */
167
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
176void all_update(void);
177/* Update everything */
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
194void volume_update(void);
195/* Called whenever we think the volume control has changed */
196
197void control_monitor(void *u);
198
199extern int suppress_actions;
200
201/* Queue/Recent/Added */
202
203GtkWidget *queue_widget(void);
204GtkWidget *recent_widget(void);
205GtkWidget *added_widget(void);
206/* Create widgets for displaying the queue, the recently played list and the
207 * newly added tracks list */
208
209void queue_update(void);
210void recent_update(void);
211void added_update(void);
212/* Called whenever we think the queue, recent or newly-added list might have
213 * changed */
214
215void queue_select_all(struct queuelike *ql);
216void queue_select_none(struct queuelike *ql);
217/* Select all/none on some queue */
218
219void queue_properties(struct queuelike *ql);
220/* Pop up properties of selected items in some queue */
221
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
239/* Login details */
240
241void login_box(void);
242
243GtkWidget *login_window;
244
245/* Help */
246
247void popup_help(void);
248
249/* RTP */
250
251int rtp_running(void);
252void start_rtp(void);
253void stop_rtp(void);
254
255/* Settings */
256
257void init_styles(void);
258extern GtkStyle *layout_style;
259extern GtkStyle *title_style;
260extern GtkStyle *even_style;
261extern GtkStyle *odd_style;
262extern GtkStyle *active_style;
263extern GtkStyle *tool_style;
264extern GtkStyle *search_style;
265extern GtkStyle *drag_style;
266
267extern const char *browser;
268
269void save_settings(void);
270void load_settings(void);
271void set_tool_colors(GtkWidget *w);
272void popup_settings(void);
273
274/* Widget leakage debugging rubbish ---------------------------------------- */
275
276#if MDEBUG
277#define NW(what) do { \
278 if(++current##what % 100 > max##what) { \
279 fprintf(stderr, "%s:%d: %d %s\n", \
280 __FILE__, __LINE__, current##what, #what); \
281 max##what = current##what; \
282 } \
283} while(0)
284#define WT(what) static int current##what, max##what
285#define DW(what) (--current##what)
286#else
287#define NW(what) do { } while(0)
288#define DW(what) do { } while(0)
289#define WT(what) struct neverused
290#endif
291
292#if MTRACK
293extern const char *mtag;
294#define MTAG(x) do { mtag = x; } while(0)
295#define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
296#define MTAG_POP() mtag = save_mtag; } while(0)
297#else
298#define MTAG(x) do { } while(0)
299#define MTAG_PUSH(x) do {} while(0)
300#define MTAG_POP() do {} while(0)
301#endif
302
303#endif /* DISOBEDIENCE_H */
304
305/*
306Local Variables:
307c-basic-offset:2
308comment-column:40
309fill-column:79
310indent-tabs-mode:nil
311End:
312*/