2 * This file is part of DisOrder.
3 * Copyright (C) 2006-2008 Richard Kettlewell
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.
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.
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
20 /** @file disobedience/disobedience.h
21 * @brief Header file for Disobedience, the DisOrder GTK+ client
24 #ifndef DISOBEDIENCE_H
25 #define DISOBEDIENCE_H
46 #include "trackname.h"
49 #include "configuration.h"
51 #include "selection.h"
55 #include <gdk-pixbuf/gdk-pixbuf.h>
57 /* Types ------------------------------------------------------------------- */
61 struct progress_window;
63 /** @brief Callback data structure
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.
70 void (*onerror)(struct callbackdata *cbd,
72 const char *msg); /* called on error */
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 */
81 /** @brief Per-tab callbacks
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.
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);
95 /** @brief Button definitions */
98 void (*clicked)(GtkButton *button, gpointer userdata);
102 /* Variables --------------------------------------------------------------- */
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 */
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;
120 extern const disorder_eclient_log_callbacks log_callbacks;
122 typedef void monitor_callback(void *u);
124 /* Functions --------------------------------------------------------------- */
126 disorder_eclient *gtkclient(void);
127 /* Configure C for use in GTK+ programs */
129 void popup_protocol_error(int code,
131 /* Report an error */
133 void properties(int ntracks, const char **tracks);
134 /* Pop up a properties window for a list of tracks */
136 void properties_reset(void);
138 GtkWidget *scroll_widget(GtkWidget *child);
139 /* Wrap a widget up for scrolling */
141 GdkPixbuf *find_image(const char *name);
142 /* Get the pixbuf for an image. Returns a null pointer if it cannot be
145 void popup_msg(GtkMessageType mt, const char *msg);
146 /* Pop up a message */
148 void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
150 struct progress_window *progress_window_new(const char *title);
151 /* Pop up a progress window */
153 void progress_window_progress(struct progress_window *pw,
156 /* Report current progress */
158 GtkWidget *iconbutton(const char *path, const char *tip);
160 GtkWidget *create_buttons(const struct button *buttons,
163 void register_monitor(monitor_callback *callback,
166 /* Register a state monitor */
168 /** @brief Type signature for a reset callback */
169 typedef void reset_callback(void);
171 void register_reset(reset_callback *callback);
172 /* Register a reset callback */
176 void all_update(void);
177 /* Update everything */
181 GtkWidget *menubar(GtkWidget *w);
182 /* Create the menu bar */
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. */
191 GtkWidget *control_widget(void);
192 /* Make the controls widget */
194 void volume_update(void);
195 /* Called whenever we think the volume control has changed */
197 void control_monitor(void *u);
199 extern int suppress_actions;
201 /* Queue/Recent/Added */
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 */
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
215 void queue_select_all(struct queuelike *ql);
216 void queue_select_none(struct queuelike *ql);
217 /* Select all/none on some queue */
219 void queue_properties(struct queuelike *ql);
220 /* Pop up properties of selected items in some queue */
222 int queued(const char *track);
223 /* Return nonzero iff TRACK is queued or playing */
225 void namepart_update(const char *track,
228 /* Called when a namepart might have changed */
233 GtkWidget *choose_widget(void);
234 /* Create a widget for choosing tracks */
236 void choose_update(void);
237 /* Called when we think the choose tree might need updating */
241 void login_box(void);
245 void popup_help(void);
249 int rtp_running(void);
250 void start_rtp(void);
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;
265 extern const char *browser;
267 void save_settings(void);
268 void load_settings(void);
269 void set_tool_colors(GtkWidget *w);
271 /* Widget leakage debugging rubbish ---------------------------------------- */
274 #define NW(what) do { \
275 if(++current##what % 100 > max##what) { \
276 fprintf(stderr, "%s:%d: %d %s\n", \
277 __FILE__, __LINE__, current##what, #what); \
278 max##what = current##what; \
281 #define WT(what) static int current##what, max##what
282 #define DW(what) (--current##what)
284 #define NW(what) do { } while(0)
285 #define DW(what) do { } while(0)
286 #define WT(what) struct neverused
290 extern const char *mtag;
291 #define MTAG(x) do { mtag = x; } while(0)
292 #define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
293 #define MTAG_POP() mtag = save_mtag; } while(0)
295 #define MTAG(x) do { } while(0)
296 #define MTAG_PUSH(x) do {} while(0)
297 #define MTAG_POP() do {} while(0)
300 #endif /* DISOBEDIENCE_H */