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