chiark / gitweb /
document search next/prev buttons
[disorder] / disobedience / disobedience.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
348ef780 3 * Copyright (C) 2006, 2007 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
27#include <config.h>
28#include "types.h"
29
30#include <stdio.h>
31#include <time.h>
32#include <string.h>
33#include <assert.h>
34#include <ctype.h>
35#include <errno.h>
36#include <math.h>
37
38#include "mem.h"
39#include "log.h"
40#include "eclient.h"
41#include "printf.h"
42#include "cache.h"
43#include "queue.h"
44#include "printf.h"
45#include "vector.h"
46#include "trackname.h"
47#include "syscalls.h"
48#include "defs.h"
49#include "configuration.h"
50#include "hash.h"
51#include "selection.h"
52
53#include <glib.h>
54#include <gtk/gtk.h>
55#include <gdk-pixbuf/gdk-pixbuf.h>
56
57/* Types ------------------------------------------------------------------- */
58
59struct queuelike;
60struct choosenode;
c3df9503 61struct progress_window;
460b9539 62
2c348789
RK
63/** @brief Callback data structure
64 *
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.
68 */
460b9539 69struct callbackdata {
70 void (*onerror)(struct callbackdata *cbd,
71 int code,
72 const char *msg); /* called on error */
73 union {
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 */
78 } u;
79};
80
2c348789
RK
81/** @brief Per-tab callbacks
82 *
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.
85 */
460b9539 86struct tabtype {
87 int (*properties_sensitive)(GtkWidget *tab);
88 int (*selectall_sensitive)(GtkWidget *tab);
89 void (*properties_activate)(GtkWidget *tab);
90 void (*selectall_activate)(GtkWidget *tab);
91};
92
93/* Variables --------------------------------------------------------------- */
94
95extern GMainLoop *mainloop;
96extern GtkWidget *toplevel; /* top level window */
97extern GtkWidget *report_label; /* label for progress indicator */
98extern GtkWidget *tabs; /* main tabs */
99extern disorder_eclient *client; /* main client */
100
101extern unsigned long last_state; /* last reported state */
102extern int playing; /* true if playing some track */
103extern int volume_l, volume_r; /* current volume */
104extern double goesupto; /* volume upper bound */
105extern int choosealpha; /* break up choose by letter */
348ef780 106extern GtkTooltips *tips;
460b9539 107
10e226b3
RK
108extern const disorder_eclient_log_callbacks log_callbacks;
109
00959300 110typedef void monitor_callback(void *u);
186f896b 111
460b9539 112/* Functions --------------------------------------------------------------- */
113
114disorder_eclient *gtkclient(void);
115/* Configure C for use in GTK+ programs */
116
117void popup_protocol_error(int code,
118 const char *msg);
119/* Report an error */
120
16e145a5 121void properties(int ntracks, const char **tracks);
460b9539 122/* Pop up a properties window for a list of tracks */
123
124GtkWidget *scroll_widget(GtkWidget *child, const char *name);
125/* Wrap a widget up for scrolling */
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_error(const char *msg);
132/* Pop up an error message */
133
c3df9503
RK
134struct progress_window *progress_window_new(const char *title);
135/* Pop up a progress window */
136
137void progress_window_progress(struct progress_window *pw,
138 int progress,
139 int limit);
140/* Report current progress */
141
fcc8b9f7
RK
142GtkWidget *iconbutton(const char *path, const char *tip);
143
186f896b
RK
144void register_monitor(monitor_callback *callback,
145 void *u,
146 unsigned long mask);
147/* Register a state monitor */
148
10e226b3
RK
149void all_update(void);
150/* Update everything */
460b9539 151
152/* Main menu */
153
154GtkWidget *menubar(GtkWidget *w);
155/* Create the menu bar */
156
157void menu_update(int page);
158/* Called whenever the main menu might need to change. PAGE is the current
159 * page if known or -1 otherwise. */
160
161
162/* Controls */
163
164GtkWidget *control_widget(void);
165/* Make the controls widget */
166
6d1302f0
RK
167void volume_update(void);
168/* Called whenever we think the volume control has changed */
460b9539 169
4eb1f430 170/* Queue/Recent/Added */
460b9539 171
172GtkWidget *queue_widget(void);
173GtkWidget *recent_widget(void);
4eb1f430
RK
174GtkWidget *added_widget(void);
175/* Create widgets for displaying the queue, the recently played list and the
176 * newly added tracks list */
460b9539 177
178void queue_update(void);
179void recent_update(void);
4eb1f430
RK
180void added_update(void);
181/* Called whenever we think the queue, recent or newly-added list might have
182 * changed */
460b9539 183
184void queue_select_all(struct queuelike *ql);
185/* Select all on some queue */
186
187void queue_properties(struct queuelike *ql);
188/* Pop up properties of selected items in some queue */
189
460b9539 190int queued(const char *track);
191/* Return nonzero iff TRACK is queued or playing */
192
193void namepart_update(const char *track,
194 const char *context,
195 const char *part);
196/* Called when a namepart might have changed */
197
198
199/* Choose */
200
201GtkWidget *choose_widget(void);
202/* Create a widget for choosing tracks */
203
204void choose_update(void);
205/* Called when we think the choose tree might need updating */
206
e9b70a84 207/* Widget leakage debugging rubbish ---------------------------------------- */
208
209#if MDEBUG
210#define NW(what) do { \
211 if(++current##what % 100 > max##what) { \
212 fprintf(stderr, "%s:%d: %d %s\n", \
213 __FILE__, __LINE__, current##what, #what); \
214 max##what = current##what; \
215 } \
216} while(0)
217#define WT(what) static int current##what, max##what
218#define DW(what) (--current##what)
219#else
1a48886f
RK
220#define NW(what) do { } while(0)
221#define DW(what) do { } while(0)
e9b70a84 222#define WT(what) struct neverused
223#endif
224
e1d4a32b 225#if MTRACK
226extern const char *mtag;
227#define MTAG(x) do { mtag = x; } while(0)
228#define MTAG_PUSH(x) do { const char *save_mtag = mtag; mtag = x; (void)0
229#define MTAG_POP() mtag = save_mtag; } while(0)
230#else
231#define MTAG(x) do { } while(0)
232#define MTAG_PUSH(x) do {} while(0)
233#define MTAG_POP() do {} while(0)
234#endif
235
460b9539 236#endif /* DISOBEDIENCE_H */
237
238/*
239Local Variables:
240c-basic-offset:2
241comment-column:40
242fill-column:79
243indent-tabs-mode:nil
244End:
245*/