chiark / gitweb /
Remove CPPery for playlists
[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 3 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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU 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, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file disobedience/disobedience.h
19  * @brief Header file for Disobedience, the DisOrder GTK+ client
20  */
21
22 #ifndef DISOBEDIENCE_H
23 #define DISOBEDIENCE_H
24
25 #include "common.h"
26
27 #include <time.h>
28 #include <ctype.h>
29 #include <errno.h>
30 #include <math.h>
31
32 #include "mem.h"
33 #include "log.h"
34 #include "eclient.h"
35 #include "printf.h"
36 #include "cache.h"
37 #include "queue.h"
38 #include "printf.h"
39 #include "vector.h"
40 #include "trackname.h"
41 #include "syscalls.h"
42 #include "defs.h"
43 #include "configuration.h"
44 #include "hash.h"
45 #include "selection.h"
46 #include "kvp.h"
47 #include "eventdist.h"
48 #include "split.h"
49 #include "timeval.h"
50 #include "uaudio.h"
51
52 #include <glib.h>
53 #include <gtk/gtk.h>
54 #include <gdk-pixbuf/gdk-pixbuf.h>
55 #include <gdk/gdkkeysyms.h>
56
57 /* Types ------------------------------------------------------------------- */
58
59 struct queuelike;
60 struct choosenode;
61 struct progress_window;
62
63 /** @brief Per-tab callbacks
64  *
65  * Some of the options in the main menu depend on which tab is displayed, so we
66  * have some callbacks to set them appropriately.
67  */
68 struct tabtype {
69   int (*properties_sensitive)(void *extra);
70   int (*selectall_sensitive)(void *extra);
71   int (*selectnone_sensitive)(void *extra);
72   void (*properties_activate)(GtkMenuItem *menuitem,
73                               gpointer user_data);
74   void (*selectall_activate)(GtkMenuItem *menuitem,
75                              gpointer user_data);
76   void (*selectnone_activate)(GtkMenuItem *menuitem,
77                               gpointer user_data);
78   void (*selected)(void);
79   void *extra;
80 };
81
82 /** @brief Button definitions */
83 struct button {
84   const gchar *stock;
85   void (*clicked)(GtkButton *button, gpointer userdata);
86   const char *tip;
87   GtkWidget *widget;
88 };
89
90 /* Variables --------------------------------------------------------------- */
91
92 extern GMainLoop *mainloop;
93 extern GtkWidget *toplevel;             /* top level window */
94 extern GtkWidget *report_label;         /* label for progress indicator */
95 extern GtkWidget *tabs;                 /* main tabs */
96 extern disorder_eclient *client;        /* main client */
97
98 extern unsigned long last_state;        /* last reported state */
99 extern rights_type last_rights;         /* last reported rights bitmap */
100 extern int playing;                     /* true if playing some track */
101 extern int volume_l, volume_r;          /* current volume */
102 extern double goesupto;                 /* volume upper bound */
103 extern int choosealpha;                 /* break up choose by letter */
104 extern int rtp_supported;
105 extern int rtp_is_running;
106 extern GtkItemFactory *mainmenufactory;
107 extern const struct uaudio *backend;
108
109 extern const disorder_eclient_log_callbacks log_callbacks;
110
111 /* Functions --------------------------------------------------------------- */
112
113 disorder_eclient *gtkclient(void);
114 /* Configure C for use in GTK+ programs */
115
116 void popup_protocol_error(int code,
117                           const char *msg);
118 /* Report an error */
119
120 void properties(int ntracks, const char **tracks,
121                 GtkWidget *parent);
122 /* Pop up a properties window for a list of tracks */
123
124 GtkWidget *scroll_widget(GtkWidget *child);
125 /* Wrap a widget up for scrolling */
126
127 GtkWidget *frame_widget(GtkWidget *w, const char *title);
128
129 GdkPixbuf *find_image(const char *name);
130 /* Get the pixbuf for an image.  Returns a null pointer if it cannot be
131  * found. */
132
133 void popup_msg(GtkMessageType mt, const char *msg);
134 void popup_submsg(GtkWidget *parent, GtkMessageType mt, const char *msg);
135
136 void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
137
138 struct progress_window *progress_window_new(const char *title,
139                                             GtkWidget *parent);
140 /* Pop up a progress window */
141
142 void progress_window_progress(struct progress_window *pw,
143                               int progress,
144                               int limit);
145 /* Report current progress */
146
147 GtkWidget *iconbutton(const char *path, const char *tip);
148
149 GtkWidget *create_buttons(struct button *buttons,
150                           size_t nbuttons);
151 GtkWidget *create_buttons_box(struct button *buttons,
152                               size_t nbuttons,
153                               GtkWidget *box);
154
155 void logged_in(void);
156
157 void all_update(void);
158 /* Update everything */
159
160 /* Main menu */
161
162 GtkWidget *menubar(GtkWidget *w);
163 /* Create the menu bar */
164
165 void users_set_sensitive(int sensitive);
166
167 /* Controls */
168
169 GtkWidget *control_widget(void);
170 /* Make the controls widget */
171
172 extern int suppress_actions;
173
174 /* Queue/Recent/Added */
175
176 GtkWidget *queue_widget(void);
177 GtkWidget *recent_widget(void);
178 GtkWidget *added_widget(void);
179 /* Create widgets for displaying the queue, the recently played list and the
180  * newly added tracks list */
181
182 void queue_select_all(struct queuelike *ql);
183 void queue_select_none(struct queuelike *ql);
184 /* Select all/none on some queue */
185
186 void queue_properties(struct queuelike *ql);
187 /* Pop up properties of selected items in some queue */
188
189 int queued(const char *track);
190 /* Return nonzero iff TRACK is queued or playing */
191
192 extern struct queue_entry *playing_track;
193
194 /* Lookups */
195 const char *namepart(const char *track,
196                      const char *context,
197                      const char *part);
198 long namepart_length(const char *track);
199 char *namepart_resolve(const char *track);
200
201 void namepart_update(const char *track,
202                      const char *context,
203                      const char *part);
204 /* Called when a namepart might have changed */
205
206 /* Choose */
207
208 GtkWidget *choose_widget(void);
209 /* Create a widget for choosing tracks */
210
211 void choose_update(void);
212 /* Called when we think the choose tree might need updating */
213
214 void play_completed(void *v,
215                     const char *err);
216
217 extern const GtkTargetEntry choose_targets[];
218
219 /* Login details */
220
221 void login_box(void);
222
223 GtkWidget *login_window;
224
225 /* User management */
226
227 void manage_users(void);
228
229 /* Help */
230
231 void popup_help(void);
232
233 /* RTP */
234
235 int rtp_running(void);
236 void start_rtp(void);
237 void stop_rtp(void);
238
239 /* Settings */
240
241 void init_styles(void);
242 extern GtkStyle *layout_style;
243 extern GtkStyle *title_style;
244 extern GtkStyle *even_style;
245 extern GtkStyle *odd_style;
246 extern GtkStyle *active_style;
247 extern GtkStyle *tool_style;
248 extern GtkStyle *search_style;
249 extern GtkStyle *drag_style;
250
251 extern const char *browser;
252
253 void save_settings(void);
254 void load_settings(void);
255 void set_tool_colors(GtkWidget *w);
256 void popup_settings(void);
257
258 /* Playlists */
259
260 void playlists_init(void);
261 void playlist_window_create(gpointer callback_data,
262                             guint callback_action,
263                             GtkWidget  *menu_item);
264 extern char **playlists;
265 extern int nplaylists;
266 extern GtkWidget *menu_playlists_widget;
267 extern GtkWidget *playlists_menu;
268 extern GtkWidget *menu_editplaylists_widget;
269
270 #endif /* DISOBEDIENCE_H */
271
272 /*
273 Local Variables:
274 c-basic-offset:2
275 comment-column:40
276 fill-column:79
277 indent-tabs-mode:nil
278 End:
279 */