chiark / gitweb /
Rearrange window layout and UI structure
[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     const char *user;                   /* users.c */
79   } u;
80 };
81
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  */
87 struct tabtype {
88   int (*properties_sensitive)(GtkWidget *tab);
89   int (*selectall_sensitive)(GtkWidget *tab);
90   int (*selectnone_sensitive)(GtkWidget *tab);
91   void (*properties_activate)(GtkWidget *tab);
92   void (*selectall_activate)(GtkWidget *tab);
93   void (*selectnone_activate)(GtkWidget *tab);
94 };
95
96 /** @brief Button definitions */
97 struct button {
98   const gchar *stock;
99   void (*clicked)(GtkButton *button, gpointer userdata);
100   const char *tip;
101   GtkWidget *widget;
102 };
103
104 /* Variables --------------------------------------------------------------- */
105
106 extern GMainLoop *mainloop;
107 extern GtkWidget *toplevel;             /* top level window */
108 extern GtkWidget *report_label;         /* label for progress indicator */
109 extern GtkWidget *tabs;                 /* main tabs */
110 extern disorder_eclient *client;        /* main client */
111
112 extern unsigned long last_state;        /* last reported state */
113 extern int playing;                     /* true if playing some track */
114 extern int volume_l, volume_r;          /* current volume */
115 extern double goesupto;                 /* volume upper bound */
116 extern int choosealpha;                 /* break up choose by letter */
117 extern GtkTooltips *tips;
118 extern int rtp_supported;
119 extern int rtp_is_running;
120 extern GtkItemFactory *mainmenufactory;
121
122 extern const disorder_eclient_log_callbacks log_callbacks;
123
124 typedef void monitor_callback(void *u);
125
126 /* Functions --------------------------------------------------------------- */
127
128 disorder_eclient *gtkclient(void);
129 /* Configure C for use in GTK+ programs */
130
131 void popup_protocol_error(int code,
132                           const char *msg);
133 /* Report an error */
134
135 void properties(int ntracks, const char **tracks);
136 /* Pop up a properties window for a list of tracks */
137
138 void properties_reset(void);
139
140 GtkWidget *scroll_widget(GtkWidget *child);
141 /* Wrap a widget up for scrolling */
142
143 GdkPixbuf *find_image(const char *name);
144 /* Get the pixbuf for an image.  Returns a null pointer if it cannot be
145  * found. */
146
147 void popup_msg(GtkMessageType mt, const char *msg);
148 /* Pop up a message */
149
150 void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
151
152 struct progress_window *progress_window_new(const char *title);
153 /* Pop up a progress window */
154
155 void progress_window_progress(struct progress_window *pw,
156                               int progress,
157                               int limit);
158 /* Report current progress */
159
160 GtkWidget *iconbutton(const char *path, const char *tip);
161
162 GtkWidget *create_buttons(struct button *buttons,
163                           size_t nbuttons);
164 GtkWidget *create_buttons_box(struct button *buttons,
165                               size_t nbuttons,
166                               GtkWidget *box);
167
168 void register_monitor(monitor_callback *callback,
169                       void *u,
170                       unsigned long mask);
171 /* Register a state monitor */
172
173 /** @brief Type signature for a reset callback */
174 typedef void reset_callback(void);
175
176 void register_reset(reset_callback *callback);
177 /* Register a reset callback */
178
179 void reset(void);
180
181 void all_update(void);
182 /* Update everything */
183
184 /* Main menu */
185
186 GtkWidget *menubar(GtkWidget *w);
187 /* Create the menu bar */
188      
189 void 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
196 GtkWidget *control_widget(void);
197 /* Make the controls widget */
198
199 void volume_update(void);
200 /* Called whenever we think the volume control has changed */
201
202 void control_monitor(void *u);
203
204 extern int suppress_actions;
205
206 /* Queue/Recent/Added */
207
208 GtkWidget *queue_widget(void);
209 GtkWidget *recent_widget(void);
210 GtkWidget *added_widget(void);
211 /* Create widgets for displaying the queue, the recently played list and the
212  * newly added tracks list */
213
214 void queue_update(void);
215 void recent_update(void);
216 void added_update(void);
217 /* Called whenever we think the queue, recent or newly-added list might have
218  * changed */
219
220 void queue_select_all(struct queuelike *ql);
221 void queue_select_none(struct queuelike *ql);
222 /* Select all/none on some queue */
223
224 void queue_properties(struct queuelike *ql);
225 /* Pop up properties of selected items in some queue */
226
227 int queued(const char *track);
228 /* Return nonzero iff TRACK is queued or playing */
229
230 void 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
238 GtkWidget *choose_widget(void);
239 /* Create a widget for choosing tracks */
240
241 void choose_update(void);
242 /* Called when we think the choose tree might need updating */
243
244 /* Login details */
245
246 void login_box(void);
247
248 GtkWidget *login_window;
249
250 /* User management */
251
252 void manage_users(void);
253
254 /* Help */
255
256 void popup_help(void);
257
258 /* RTP */
259
260 int rtp_running(void);
261 void start_rtp(void);
262 void stop_rtp(void);
263
264 /* Settings */
265
266 void init_styles(void);
267 extern GtkStyle *layout_style;
268 extern GtkStyle *title_style;
269 extern GtkStyle *even_style;
270 extern GtkStyle *odd_style;
271 extern GtkStyle *active_style;
272 extern GtkStyle *tool_style;
273 extern GtkStyle *search_style;
274 extern GtkStyle *drag_style;
275
276 extern const char *browser;
277
278 void save_settings(void);
279 void load_settings(void);
280 void set_tool_colors(GtkWidget *w);
281 void popup_settings(void);
282
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
296 #define NW(what) do { } while(0)
297 #define DW(what) do { } while(0)
298 #define WT(what) struct neverused
299 #endif
300
301 #if MTRACK
302 extern 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
312 #endif /* DISOBEDIENCE_H */
313
314 /*
315 Local Variables:
316 c-basic-offset:2
317 comment-column:40
318 fill-column:79
319 indent-tabs-mode:nil
320 End:
321 */