Encourage choose tab's input focus to the search box a bit. Really we
[disorder] / disobedience / disobedience.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
fb009628 3 * Copyright (C) 2006-2008 Richard Kettlewell
460b9539 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 */
2c348789
RK
20/** @file disobedience/disobedience.h
21 * @brief Header file for Disobedience, the DisOrder GTK+ client
22 */
460b9539 23
24#ifndef DISOBEDIENCE_H
25#define DISOBEDIENCE_H
26
05b75f8d 27#include "common.h"
460b9539 28
460b9539 29#include <time.h>
460b9539 30#include <ctype.h>
31#include <errno.h>
32#include <math.h>
33
34#include "mem.h"
35#include "log.h"
36#include "eclient.h"
37#include "printf.h"
38#include "cache.h"
39#include "queue.h"
40#include "printf.h"
41#include "vector.h"
42#include "trackname.h"
43#include "syscalls.h"
44#include "defs.h"
45#include "configuration.h"
46#include "hash.h"
47#include "selection.h"
53fa91bb 48#include "kvp.h"
3569ddb8 49#include "eventdist.h"
460b9539 50
51#include <glib.h>
52#include <gtk/gtk.h>
53#include <gdk-pixbuf/gdk-pixbuf.h>
54
55/* Types ------------------------------------------------------------------- */
56
57struct queuelike;
58struct choosenode;
c3df9503 59struct progress_window;
460b9539 60
2c348789
RK
61/** @brief Callback data structure
62 *
63 * This program is extremely heavily callback-driven. Rather than have
64 * numerous different callback structures we have a single one which can be
65 * interpreted adequately both by success and error handlers.
66 */
460b9539 67struct callbackdata {
68 void (*onerror)(struct callbackdata *cbd,
69 int code,
70 const char *msg); /* called on error */
71 union {
72 const char *key; /* gtkqueue.c op_part_lookup */
73 struct choosenode *choosenode; /* gtkchoose.c got_files/got_dirs */
74 struct queuelike *ql; /* gtkqueue.c queuelike_completed */
75 struct prefdata *f; /* properties.c */
4aa8a0a4 76 const char *user; /* users.c */
0d719587
RK
77 struct {
78 const char *user, *email; /* users.c */
79 } edituser;
460b9539 80 } u;
81};
82
2c348789
RK
83/** @brief Per-tab callbacks
84 *
85 * Some of the options in the main menu depend on which tab is displayed, so we
86 * have some callbacks to set them appropriately.
87 */
460b9539 88struct tabtype {
89 int (*properties_sensitive)(GtkWidget *tab);
90 int (*selectall_sensitive)(GtkWidget *tab);
fb009628 91 int (*selectnone_sensitive)(GtkWidget *tab);
460b9539 92 void (*properties_activate)(GtkWidget *tab);
93 void (*selectall_activate)(GtkWidget *tab);
fb009628 94 void (*selectnone_activate)(GtkWidget *tab);
2a3fe554 95 void (*selected)(void);
460b9539 96};
97
73f1b9f3
RK
98/** @brief Button definitions */
99struct button {
100 const gchar *stock;
101 void (*clicked)(GtkButton *button, gpointer userdata);
102 const char *tip;
f44417cf 103 GtkWidget *widget;
73f1b9f3
RK
104};
105
460b9539 106/* Variables --------------------------------------------------------------- */
107
108extern GMainLoop *mainloop;
109extern GtkWidget *toplevel; /* top level window */
110extern GtkWidget *report_label; /* label for progress indicator */
111extern GtkWidget *tabs; /* main tabs */
112extern disorder_eclient *client; /* main client */
113
114extern unsigned long last_state; /* last reported state */
6f09d54d 115extern rights_type last_rights; /* last reported rights bitmap */
460b9539 116extern int playing; /* true if playing some track */
117extern int volume_l, volume_r; /* current volume */
118extern double goesupto; /* volume upper bound */
119extern int choosealpha; /* break up choose by letter */
348ef780 120extern GtkTooltips *tips;
a99c4e9a
RK
121extern int rtp_supported;
122extern int rtp_is_running;
ac6bf2ba 123extern GtkItemFactory *mainmenufactory;
460b9539 124
10e226b3
RK
125extern const disorder_eclient_log_callbacks log_callbacks;
126
460b9539 127/* Functions --------------------------------------------------------------- */
128
129disorder_eclient *gtkclient(void);
130/* Configure C for use in GTK+ programs */
131
132void popup_protocol_error(int code,
133 const char *msg);
134/* Report an error */
135
16e145a5 136void properties(int ntracks, const char **tracks);
460b9539 137/* Pop up a properties window for a list of tracks */
138
d4ef4132 139GtkWidget *scroll_widget(GtkWidget *child);
460b9539 140/* Wrap a widget up for scrolling */
141
e18c4734
RK
142GtkWidget *frame_widget(GtkWidget *w, const char *title);
143
460b9539 144GdkPixbuf *find_image(const char *name);
145/* Get the pixbuf for an image. Returns a null pointer if it cannot be
146 * found. */
147
043d60b1 148void popup_msg(GtkMessageType mt, const char *msg);
34239ce4 149void popup_submsg(GtkWidget *parent, GtkMessageType mt, const char *msg);
460b9539 150
043d60b1 151void fpopup_msg(GtkMessageType mt, const char *fmt, ...);
73f1b9f3 152
c3df9503
RK
153struct progress_window *progress_window_new(const char *title);
154/* Pop up a progress window */
155
156void progress_window_progress(struct progress_window *pw,
157 int progress,
158 int limit);
159/* Report current progress */
160
fcc8b9f7
RK
161GtkWidget *iconbutton(const char *path, const char *tip);
162
f44417cf 163GtkWidget *create_buttons(struct button *buttons,
73f1b9f3 164 size_t nbuttons);
f44417cf 165GtkWidget *create_buttons_box(struct button *buttons,
ffc4dbaf
RK
166 size_t nbuttons,
167 GtkWidget *box);
73f1b9f3 168
7c30fc75 169void logged_in(void);
73f1b9f3 170
10e226b3
RK
171void all_update(void);
172/* Update everything */
460b9539 173
174/* Main menu */
175
176GtkWidget *menubar(GtkWidget *w);
177/* Create the menu bar */
178
179void menu_update(int page);
180/* Called whenever the main menu might need to change. PAGE is the current
181 * page if known or -1 otherwise. */
182
c73bd6c1 183void users_set_sensitive(int sensitive);
460b9539 184
185/* Controls */
186
187GtkWidget *control_widget(void);
188/* Make the controls widget */
189
fb44b59e
RK
190extern int suppress_actions;
191
4eb1f430 192/* Queue/Recent/Added */
460b9539 193
194GtkWidget *queue_widget(void);
195GtkWidget *recent_widget(void);
4eb1f430
RK
196GtkWidget *added_widget(void);
197/* Create widgets for displaying the queue, the recently played list and the
198 * newly added tracks list */
460b9539 199
460b9539 200void queue_select_all(struct queuelike *ql);
fb009628
RK
201void queue_select_none(struct queuelike *ql);
202/* Select all/none on some queue */
460b9539 203
204void queue_properties(struct queuelike *ql);
205/* Pop up properties of selected items in some queue */
206
460b9539 207int queued(const char *track);
208/* Return nonzero iff TRACK is queued or playing */
209
210void namepart_update(const char *track,
211 const char *context,
212 const char *part);
213/* Called when a namepart might have changed */
214
afe9f743
RK
215extern struct queue_entry *playing_track;
216
460b9539 217/* Choose */
218
219GtkWidget *choose_widget(void);
220/* Create a widget for choosing tracks */
221
222void choose_update(void);
223/* Called when we think the choose tree might need updating */
224
53fa91bb
RK
225void play_completed(void *v,
226 const char *error);
227
a99c4e9a
RK
228/* Login details */
229
73f1b9f3
RK
230void login_box(void);
231
e9e8a16d
RK
232GtkWidget *login_window;
233
ffc4dbaf
RK
234/* User management */
235
236void manage_users(void);
237
13affe66
RK
238/* Help */
239
240void popup_help(void);
241
a99c4e9a
RK
242/* RTP */
243
244int rtp_running(void);
245void start_rtp(void);
246void stop_rtp(void);
247
f486ea18 248/* Settings */
d4ef4132 249
33288048
RK
250void init_styles(void);
251extern GtkStyle *layout_style;
252extern GtkStyle *title_style;
253extern GtkStyle *even_style;
254extern GtkStyle *odd_style;
255extern GtkStyle *active_style;
256extern GtkStyle *tool_style;
257extern GtkStyle *search_style;
258extern GtkStyle *drag_style;
d4ef4132 259
f486ea18
RK
260extern const char *browser;
261
262void save_settings(void);
263void load_settings(void);
d4ef4132 264void set_tool_colors(GtkWidget *w);
46fb1b05 265void popup_settings(void);
d4ef4132 266
e9b70a84 267/* Widget leakage debugging rubbish ---------------------------------------- */
268
269#if MDEBUG
270#define NW(what) do { \
271 if(++current##what % 100 > max##what) { \
272 fprintf(stderr, "%s:%d: %d %s\n", \
273 __FILE__, __LINE__, current##what, #what); \
274 max##what = current##what; \
275 } \
276} while(0)
277#define WT(what) static int current##what, max##what
278#define DW(what) (--current##what)
279#else
1a48886f
RK
280#define NW(what) do { } while(0)
281#define DW(what) do { } while(0)
e9b70a84 282#define WT(what) struct neverused
283#endif
284
e1d4a32b 285#if MTRACK
286extern const char *mtag;
287#define MTAG(x) do { mtag = x; } while(0)
288#define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
289#define MTAG_POP() mtag = save_mtag; } while(0)
290#else
291#define MTAG(x) do { } while(0)
292#define MTAG_PUSH(x) do {} while(0)
293#define MTAG_POP() do {} while(0)
294#endif
295
460b9539 296#endif /* DISOBEDIENCE_H */
297
298/*
299Local Variables:
300c-basic-offset:2
301comment-column:40
302fill-column:79
303indent-tabs-mode:nil
304End:
305*/