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