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