chiark / gitweb /
Rewrite playrtp ALSA support. The result seems to be much more
[disorder] / disobedience / disobedience.h
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
59 struct queuelike;
60 struct choosenode;
61 struct 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  */
69 struct 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  */
86 struct 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 */
96 struct button {
97   const gchar *stock;
98   void (*clicked)(GtkButton *button, gpointer userdata);
99   const char *tip;
100 };
101
102 /* Variables --------------------------------------------------------------- */
103
104 extern GMainLoop *mainloop;
105 extern GtkWidget *toplevel;             /* top level window */
106 extern GtkWidget *report_label;         /* label for progress indicator */
107 extern GtkWidget *tabs;                 /* main tabs */
108 extern disorder_eclient *client;        /* main client */
109
110 extern unsigned long last_state;        /* last reported state */
111 extern int playing;                     /* true if playing some track */
112 extern int volume_l, volume_r;          /* current volume */
113 extern double goesupto;                 /* volume upper bound */
114 extern int choosealpha;                 /* break up choose by letter */
115 extern GtkTooltips *tips;
116 extern int rtp_supported;
117 extern int rtp_is_running;
118 extern GtkItemFactory *mainmenufactory;
119
120 extern const disorder_eclient_log_callbacks log_callbacks;
121
122 typedef void monitor_callback(void *u);
123
124 /* Functions --------------------------------------------------------------- */
125
126 disorder_eclient *gtkclient(void);
127 /* Configure C for use in GTK+ programs */
128
129 void popup_protocol_error(int code,
130                           const char *msg);
131 /* Report an error */
132
133 void properties(int ntracks, const char **tracks);
134 /* Pop up a properties window for a list of tracks */
135
136 void properties_reset(void);
137
138 GtkWidget *scroll_widget(GtkWidget *child);
139 /* Wrap a widget up for scrolling */
140
141 GdkPixbuf *find_image(const char *name);
142 /* Get the pixbuf for an image.  Returns a null pointer if it cannot be
143  * found. */
144
145 void popup_msg(GtkMessageType mt, const char *msg);
146 /* Pop up a message */
147
148 void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
149
150 struct progress_window *progress_window_new(const char *title);
151 /* Pop up a progress window */
152
153 void progress_window_progress(struct progress_window *pw,
154                               int progress,
155                               int limit);
156 /* Report current progress */
157
158 GtkWidget *iconbutton(const char *path, const char *tip);
159
160 GtkWidget *create_buttons(const struct button *buttons,
161                           size_t nbuttons);
162
163 void 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 */
169 typedef void reset_callback(void);
170
171 void register_reset(reset_callback *callback);
172 /* Register a reset callback */
173
174 void reset(void);
175
176 void all_update(void);
177 /* Update everything */
178
179 /* Main menu */
180
181 GtkWidget *menubar(GtkWidget *w);
182 /* Create the menu bar */
183      
184 void 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
191 GtkWidget *control_widget(void);
192 /* Make the controls widget */
193
194 void volume_update(void);
195 /* Called whenever we think the volume control has changed */
196
197 void control_monitor(void *u);
198
199 extern int suppress_actions;
200
201 /* Queue/Recent/Added */
202
203 GtkWidget *queue_widget(void);
204 GtkWidget *recent_widget(void);
205 GtkWidget *added_widget(void);
206 /* Create widgets for displaying the queue, the recently played list and the
207  * newly added tracks list */
208
209 void queue_update(void);
210 void recent_update(void);
211 void added_update(void);
212 /* Called whenever we think the queue, recent or newly-added list might have
213  * changed */
214
215 void queue_select_all(struct queuelike *ql);
216 void queue_select_none(struct queuelike *ql);
217 /* Select all/none on some queue */
218
219 void queue_properties(struct queuelike *ql);
220 /* Pop up properties of selected items in some queue */
221
222 int queued(const char *track);
223 /* Return nonzero iff TRACK is queued or playing */
224
225 void 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
233 GtkWidget *choose_widget(void);
234 /* Create a widget for choosing tracks */
235
236 void choose_update(void);
237 /* Called when we think the choose tree might need updating */
238
239 /* Login details */
240
241 void login_box(void);
242
243 /* Help */
244
245 void popup_help(void);
246
247 /* RTP */
248
249 int rtp_running(void);
250 void start_rtp(void);
251 void stop_rtp(void);
252
253 /* Settings */
254
255 void init_styles(void);
256 extern GtkStyle *layout_style;
257 extern GtkStyle *title_style;
258 extern GtkStyle *even_style;
259 extern GtkStyle *odd_style;
260 extern GtkStyle *active_style;
261 extern GtkStyle *tool_style;
262 extern GtkStyle *search_style;
263 extern GtkStyle *drag_style;
264
265 extern const char *browser;
266
267 void save_settings(void);
268 void load_settings(void);
269 void set_tool_colors(GtkWidget *w);
270 void popup_settings(void);
271
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
285 #define NW(what) do { } while(0)
286 #define DW(what) do { } while(0)
287 #define WT(what) struct neverused
288 #endif
289
290 #if MTRACK
291 extern 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
301 #endif /* DISOBEDIENCE_H */
302
303 /*
304 Local Variables:
305 c-basic-offset:2
306 comment-column:40
307 fill-column:79
308 indent-tabs-mode:nil
309 End:
310 */