chiark / gitweb /
Mostly working playlist rearrangement.
[disorder] / disobedience / playlists.c
CommitLineData
fc36ecb7
RK
1/*
2 * This file is part of DisOrder
121944d1 3 * Copyright (C) 2008, 2009 Richard Kettlewell
fc36ecb7
RK
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 */
20/** @file disobedience/playlists.c
b5e60f0d 21 * @brief Playlist support for Disobedience
fc36ecb7 22 *
f0bd437a 23 * The playlists management window contains:
b5e60f0d 24 * - the playlist picker (a list of all playlists) TODO should be a tree!
f0bd437a
RK
25 * - an add button
26 * - a delete button
7fe2807d 27 * - the playlist editor (a d+d-capable view of the currently picked playlist)
b5e60f0d
RK
28 * - a close button TODO
29 *
30 * This file also maintains the playlist menu, allowing playlists to be
31 * activated from the main window's menu.
32 *
33 * Internally we maintain the playlist list, which is just the current list of
34 * playlists. Changes to this are reflected in the playlist menu and the
35 * playlist picker.
36 *
fc36ecb7
RK
37 */
38#include "disobedience.h"
6bfaa2a1
RK
39#include "queue-generic.h"
40#include "popup.h"
7f7c3819 41#include "validity.h"
fc36ecb7 42
0b0fb26b
RK
43#if PLAYLISTS
44
b5e60f0d
RK
45static void playlist_list_received_playlists(void *v,
46 const char *err,
47 int nvec, char **vec);
7fe2807d
RK
48static void playlist_editor_fill(const char *event,
49 void *eventdata,
50 void *callbackdata);
b35f7c0f
RK
51static int playlist_playall_sensitive(void *extra);
52static void playlist_playall_activate(GtkMenuItem *menuitem,
53 gpointer user_data);
dba3eb8e
RK
54static int playlist_remove_sensitive(void *extra) ;
55static void playlist_remove_activate(GtkMenuItem *menuitem,
56 gpointer user_data);
c41b2cac
RK
57static void playlist_new_locked(void *v, const char *err);
58static void playlist_new_retrieved(void *v, const char *err,
59 int nvec,
60 char **vec);
61static void playlist_new_created(void *v, const char *err);
62static void playlist_new_unlocked(void *v, const char *err);
63static void playlist_new_entry_edited(GtkEditable *editable,
64 gpointer user_data);
65static void playlist_new_button_toggled(GtkToggleButton *tb,
66 gpointer userdata);
67static void playlist_new_changed(const char *event,
68 void *eventdata,
69 void *callbackdata);
70static const char *playlist_new_valid(void);
71static void playlist_new_details(char **namep,
72 char **fullnamep,
73 gboolean *sharedp,
74 gboolean *publicp,
75 gboolean *privatep);
76static void playlist_new_ok(GtkButton *button,
77 gpointer userdata);
78static void playlist_new_cancel(GtkButton *button,
79 gpointer userdata);
80static void playlists_editor_received_tracks(void *v,
81 const char *err,
82 int nvec, char **vec);
83static void playlist_window_destroyed(GtkWidget *widget,
84 GtkWidget **widget_pointer);
85static gboolean playlist_window_keypress(GtkWidget *widget,
86 GdkEventKey *event,
87 gpointer user_data);
88static int playlistcmp(const void *ap, const void *bp);
7a3eb8eb
RK
89static void playlist_modify_locked(void *v, const char *err);
90void playlist_modify_retrieved(void *v, const char *err,
487eb32a
RK
91 int nvec,
92 char **vec);
7a3eb8eb
RK
93static void playlist_modify_updated(void *v, const char *err);
94static void playlist_modify_unlocked(void *v, const char *err);
95static void playlist_drop(struct queuelike *ql,
96 int ntracks,
97 char **tracks, char **ids,
98 struct queue_entry *after_me);
99struct playlist_modify_data;
100static void playlist_drop_modify(struct playlist_modify_data *mod,
101 int nvec, char **vec);
102static void playlist_remove_modify(struct playlist_modify_data *mod,
103 int nvec, char **vec);
fc36ecb7 104
f0bd437a 105/** @brief Playlist editing window */
7fe2807d 106static GtkWidget *playlist_window;
f0bd437a 107
6bfaa2a1
RK
108/** @brief Columns for the playlist editor */
109static const struct queue_column playlist_columns[] = {
110 { "Artist", column_namepart, "artist", COL_EXPAND|COL_ELLIPSIZE },
111 { "Album", column_namepart, "album", COL_EXPAND|COL_ELLIPSIZE },
112 { "Title", column_namepart, "title", COL_EXPAND|COL_ELLIPSIZE },
113 { "Length", column_length, 0, COL_RIGHT }
114};
115
dba3eb8e
RK
116/** @brief Pop-up menu for playlist editor
117 *
118 * Status:
119 * - track properties works but, bizarrely, raises the main window
120 * - play track works
121 * - play playlist works
122 * - select/deselect all work
123 */
6bfaa2a1
RK
124static struct menuitem playlist_menuitems[] = {
125 { "Track properties", ql_properties_activate, ql_properties_sensitive, 0, 0 },
126 { "Play track", ql_play_activate, ql_play_sensitive, 0, 0 },
b35f7c0f 127 { "Play playlist", playlist_playall_activate, playlist_playall_sensitive, 0, 0 },
dba3eb8e 128 { "Remove track from queue", playlist_remove_activate, playlist_remove_sensitive, 0, 0 },
6bfaa2a1
RK
129 { "Select all tracks", ql_selectall_activate, ql_selectall_sensitive, 0, 0 },
130 { "Deselect all tracks", ql_selectnone_activate, ql_selectnone_sensitive, 0, 0 },
131};
132
a6712ea8
RK
133static const GtkTargetEntry playlist_targets[] = {
134 {
135 PLAYLIST_TRACKS, /* drag type */
136 GTK_TARGET_SAME_WIDGET, /* rearrangement within a widget */
137 PLAYLIST_TRACKS_ID /* ID value */
138 },
139 {
140 PLAYABLE_TRACKS, /* drag type */
141 GTK_TARGET_SAME_APP|GTK_TARGET_OTHER_WIDGET, /* copying between widgets */
142 PLAYABLE_TRACKS_ID, /* ID value */
143 },
144 {
145 .target = NULL
146 }
147};
148
6bfaa2a1
RK
149/** @brief Queuelike for editing a playlist */
150static struct queuelike ql_playlist = {
151 .name = "playlist",
152 .columns = playlist_columns,
153 .ncolumns = sizeof playlist_columns / sizeof *playlist_columns,
154 .menuitems = playlist_menuitems,
155 .nmenuitems = sizeof playlist_menuitems / sizeof *playlist_menuitems,
a6712ea8
RK
156 .drop = playlist_drop,
157 .drag_source_targets = playlist_targets,
158 .drag_source_actions = GDK_ACTION_MOVE|GDK_ACTION_COPY,
159 .drag_dest_targets = playlist_targets,
160 .drag_dest_actions = GDK_ACTION_MOVE|GDK_ACTION_COPY,
6bfaa2a1
RK
161};
162
3c1a4e96 163/* Maintaining the list of playlists ---------------------------------------- */
121944d1 164
b5e60f0d
RK
165/** @brief Current list of playlists or NULL */
166char **playlists;
167
168/** @brief Count of playlists */
169int nplaylists;
170
171/** @brief Schedule an update to the list of playlists
172 *
173 * Called periodically and when a playlist is created or deleted.
174 */
175static void playlist_list_update(const char attribute((unused)) *event,
176 void attribute((unused)) *eventdata,
177 void attribute((unused)) *callbackdata) {
178 disorder_eclient_playlists(client, playlist_list_received_playlists, 0);
fc36ecb7
RK
179}
180
c41b2cac
RK
181/** @brief Called with a new list of playlists */
182static void playlist_list_received_playlists(void attribute((unused)) *v,
183 const char *err,
184 int nvec, char **vec) {
185 if(err) {
186 playlists = 0;
187 nplaylists = -1;
188 /* Probably means server does not support playlists */
189 } else {
190 playlists = vec;
191 nplaylists = nvec;
192 qsort(playlists, nplaylists, sizeof (char *), playlistcmp);
193 }
194 /* Tell our consumers */
195 event_raise("playlists-updated", 0);
196}
197
fc36ecb7
RK
198/** @brief qsort() callback for playlist name comparison */
199static int playlistcmp(const void *ap, const void *bp) {
200 const char *a = *(char **)ap, *b = *(char **)bp;
201 const char *ad = strchr(a, '.'), *bd = strchr(b, '.');
202 int c;
203
204 /* Group owned playlists by owner */
205 if(ad && bd) {
206 const int adn = ad - a, bdn = bd - b;
207 if((c = strncmp(a, b, adn < bdn ? adn : bdn)))
208 return c;
209 /* Lexical order within playlists of a single owner */
210 return strcmp(ad + 1, bd + 1);
211 }
212
213 /* Owned playlists after shared ones */
214 if(ad) {
215 return 1;
216 } else if(bd) {
217 return -1;
218 }
219
220 /* Lexical order of shared playlists */
221 return strcmp(a, b);
222}
223
121944d1
RK
224/* Playlists menu ----------------------------------------------------------- */
225
b35f7c0f
RK
226static void playlist_menu_playing(void attribute((unused)) *v,
227 const char *err) {
228 if(err)
229 popup_protocol_error(0, err);
230}
231
121944d1
RK
232/** @brief Play received playlist contents
233 *
234 * Passed as a completion callback by menu_activate_playlist().
235 */
b5e60f0d
RK
236static void playlist_menu_received_content(void attribute((unused)) *v,
237 const char *err,
238 int nvec, char **vec) {
121944d1
RK
239 if(err) {
240 popup_protocol_error(0, err);
241 return;
242 }
243 for(int n = 0; n < nvec; ++n)
b35f7c0f 244 disorder_eclient_play(client, vec[n], playlist_menu_playing, NULL);
121944d1
RK
245}
246
247/** @brief Called to activate a playlist
248 *
249 * Called when the menu item for a playlist is clicked.
250 */
b5e60f0d 251static void playlist_menu_activate(GtkMenuItem *menuitem,
f9b20469
RK
252 gpointer attribute((unused)) user_data) {
253 GtkLabel *label = GTK_LABEL(GTK_BIN(menuitem)->child);
254 const char *playlist = gtk_label_get_text(label);
255
b5e60f0d
RK
256 disorder_eclient_playlist_get(client, playlist_menu_received_content,
257 playlist, NULL);
f9b20469
RK
258}
259
b5e60f0d
RK
260/** @brief Called when the playlists change
261 *
262 * Naively refills the menu. The results might be unsettling if the menu is
263 * currently open, but this is hopefuly fairly rare.
264 */
265static void playlist_menu_changed(const char attribute((unused)) *event,
266 void attribute((unused)) *eventdata,
267 void attribute((unused)) *callbackdata) {
f9b20469
RK
268 if(!playlists_menu)
269 return; /* OMG too soon */
270 GtkMenuShell *menu = GTK_MENU_SHELL(playlists_menu);
f9b20469
RK
271 while(menu->children)
272 gtk_container_remove(GTK_CONTAINER(menu), GTK_WIDGET(menu->children->data));
273 /* NB nplaylists can be -1 as well as 0 */
274 for(int n = 0; n < nplaylists; ++n) {
275 GtkWidget *w = gtk_menu_item_new_with_label(playlists[n]);
b5e60f0d 276 g_signal_connect(w, "activate", G_CALLBACK(playlist_menu_activate), 0);
f9b20469
RK
277 gtk_widget_show(w);
278 gtk_menu_shell_append(menu, w);
279 }
fdea9f40 280 gtk_widget_set_sensitive(menu_playlists_widget,
f9b20469 281 nplaylists > 0);
fdea9f40 282 gtk_widget_set_sensitive(menu_editplaylists_widget,
6acdbba4 283 nplaylists >= 0);
f9b20469
RK
284}
285
7f7c3819
RK
286/* Popup to create a new playlist ------------------------------------------- */
287
288/** @brief New-playlist popup */
289static GtkWidget *playlist_new_window;
290
291/** @brief Text entry in new-playlist popup */
292static GtkWidget *playlist_new_entry;
293
b5e60f0d 294/** @brief Label for displaying feedback on what's wrong */
7f7c3819
RK
295static GtkWidget *playlist_new_info;
296
b5e60f0d 297/** @brief "Shared" radio button */
7f7c3819 298static GtkWidget *playlist_new_shared;
b5e60f0d
RK
299
300/** @brief "Public" radio button */
7f7c3819 301static GtkWidget *playlist_new_public;
b5e60f0d
RK
302
303/** @brief "Private" radio button */
7f7c3819
RK
304static GtkWidget *playlist_new_private;
305
c41b2cac
RK
306/** @brief Buttons for new-playlist popup */
307static struct button playlist_new_buttons[] = {
308 {
309 .stock = GTK_STOCK_OK,
310 .clicked = playlist_new_ok,
311 .tip = "Create new playlist"
312 },
313 {
314 .stock = GTK_STOCK_CANCEL,
315 .clicked = playlist_new_cancel,
316 .tip = "Do not create new playlist"
7c12e4bd 317 }
c41b2cac
RK
318};
319#define NPLAYLIST_NEW_BUTTONS (sizeof playlist_new_buttons / sizeof *playlist_new_buttons)
320
321/** @brief Pop up a new window to enter the playlist name and details */
322static void playlist_new_playlist(void) {
323 assert(playlist_new_window == NULL);
324 playlist_new_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
325 g_signal_connect(playlist_new_window, "destroy",
326 G_CALLBACK(gtk_widget_destroyed), &playlist_new_window);
327 gtk_window_set_title(GTK_WINDOW(playlist_new_window), "Create new playlist");
328 /* Window will be modal, suppressing access to other windows */
329 gtk_window_set_modal(GTK_WINDOW(playlist_new_window), TRUE);
330 gtk_window_set_transient_for(GTK_WINDOW(playlist_new_window),
331 GTK_WINDOW(playlist_window));
332
333 /* Window contents will use a table (grid) layout */
334 GtkWidget *table = gtk_table_new(3, 3, FALSE/*!homogeneous*/);
335
336 /* First row: playlist name */
337 gtk_table_attach_defaults(GTK_TABLE(table),
338 gtk_label_new("Playlist name"),
339 0, 1, 0, 1);
340 playlist_new_entry = gtk_entry_new();
341 g_signal_connect(playlist_new_entry, "changed",
342 G_CALLBACK(playlist_new_entry_edited), NULL);
343 gtk_table_attach_defaults(GTK_TABLE(table),
344 playlist_new_entry,
345 1, 3, 0, 1);
346
347 /* Second row: radio buttons to choose type */
348 playlist_new_shared = gtk_radio_button_new_with_label(NULL, "shared");
349 playlist_new_public
350 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(playlist_new_shared),
351 "public");
352 playlist_new_private
353 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(playlist_new_shared),
354 "private");
355 g_signal_connect(playlist_new_shared, "toggled",
356 G_CALLBACK(playlist_new_button_toggled), NULL);
357 g_signal_connect(playlist_new_public, "toggled",
358 G_CALLBACK(playlist_new_button_toggled), NULL);
359 g_signal_connect(playlist_new_private, "toggled",
360 G_CALLBACK(playlist_new_button_toggled), NULL);
361 gtk_table_attach_defaults(GTK_TABLE(table), playlist_new_shared, 0, 1, 1, 2);
362 gtk_table_attach_defaults(GTK_TABLE(table), playlist_new_public, 1, 2, 1, 2);
363 gtk_table_attach_defaults(GTK_TABLE(table), playlist_new_private, 2, 3, 1, 2);
364
365 /* Third row: info bar saying why not */
366 playlist_new_info = gtk_label_new("");
367 gtk_table_attach_defaults(GTK_TABLE(table), playlist_new_info,
368 0, 3, 2, 3);
369
370 /* Fourth row: ok/cancel buttons */
371 GtkWidget *hbox = create_buttons_box(playlist_new_buttons,
372 NPLAYLIST_NEW_BUTTONS,
373 gtk_hbox_new(FALSE, 0));
374 gtk_table_attach_defaults(GTK_TABLE(table), hbox, 0, 3, 3, 4);
375
376 gtk_container_add(GTK_CONTAINER(playlist_new_window),
377 frame_widget(table, NULL));
378
379 /* Set initial state of OK button */
380 playlist_new_changed(0,0,0);
381
382 /* TODO: return should = OK, escape should = cancel */
383
384 /* Display the window */
385 gtk_widget_show_all(playlist_new_window);
7c12e4bd
RK
386}
387
c41b2cac
RK
388/** @brief Called when 'ok' is clicked in new-playlist popup */
389static void playlist_new_ok(GtkButton attribute((unused)) *button,
390 gpointer attribute((unused)) userdata) {
391 gboolean shared, public, private;
392 char *name, *fullname;
393 playlist_new_details(&name, &fullname, &shared, &public, &private);
394
395 /* We need to:
396 * - lock the playlist
397 * - check it doesn't exist
398 * - set sharing (which will create it empty
399 * - unlock it
400 *
401 * TODO we should freeze the window while this is going on to stop a second
402 * click.
403 */
404 disorder_eclient_playlist_lock(client, playlist_new_locked, fullname,
405 fullname);
7c12e4bd
RK
406}
407
c41b2cac
RK
408/** @brief Called when the proposed new playlist has been locked */
409static void playlist_new_locked(void *v, const char *err) {
410 char *fullname = v;
7c12e4bd
RK
411 if(err) {
412 popup_protocol_error(0, err);
413 return;
414 }
c41b2cac
RK
415 disorder_eclient_playlist_get(client, playlist_new_retrieved,
416 fullname, fullname);
7c12e4bd
RK
417}
418
419/** @brief Called when the proposed new playlist's contents have been retrieved
420 *
421 * ...or rather, normally, when it's been reported that it does not exist.
422 */
423static void playlist_new_retrieved(void *v, const char *err,
424 int nvec,
425 char attribute((unused)) **vec) {
426 char *fullname = v;
427 if(!err && nvec != -1)
428 /* A rare case but not in principle impossible */
429 err = "A playlist with that name already exists.";
430 if(err) {
431 popup_protocol_error(0, err);
432 disorder_eclient_playlist_unlock(client, playlist_new_unlocked, fullname);
433 return;
434 }
435 gboolean shared, public, private;
436 playlist_new_details(0, 0, &shared, &public, &private);
437 disorder_eclient_playlist_set_share(client, playlist_new_created, fullname,
438 public ? "public"
439 : private ? "private"
440 : "shared",
441 fullname);
442}
443
c41b2cac
RK
444/** @brief Called when the new playlist has been created */
445static void playlist_new_created(void attribute((unused)) *v, const char *err) {
7c12e4bd
RK
446 if(err) {
447 popup_protocol_error(0, err);
448 return;
449 }
c41b2cac
RK
450 disorder_eclient_playlist_unlock(client, playlist_new_unlocked, NULL);
451 // TODO arrange for the new playlist to be selected
7c12e4bd
RK
452}
453
c41b2cac
RK
454/** @brief Called when the newly created playlist has unlocked */
455static void playlist_new_unlocked(void attribute((unused)) *v, const char *err) {
456 if(err)
457 popup_protocol_error(0, err);
458 /* Pop down the creation window */
459 gtk_widget_destroy(playlist_new_window);
7f7c3819
RK
460}
461
462/** @brief Called when 'cancel' is clicked in new-playlist popup */
463static void playlist_new_cancel(GtkButton attribute((unused)) *button,
464 gpointer attribute((unused)) userdata) {
465 gtk_widget_destroy(playlist_new_window);
466}
467
c41b2cac
RK
468/** @brief Called when some radio button in the new-playlist popup changes */
469static void playlist_new_button_toggled(GtkToggleButton attribute((unused)) *tb,
470 gpointer attribute((unused)) userdata) {
471 playlist_new_changed(0,0,0);
472}
473
474/** @brief Called when the text entry field in the new-playlist popup changes */
475static void playlist_new_entry_edited(GtkEditable attribute((unused)) *editable,
476 gpointer attribute((unused)) user_data) {
477 playlist_new_changed(0,0,0);
478}
479
480/** @brief Called to update new playlist window state
481 *
482 * This is called whenever one the text entry or radio buttons changed, and
483 * also when the set of known playlists changes. It determines whether the new
484 * playlist would be creatable and sets the sensitivity of the OK button
485 * and info display accordingly.
486 */
487static void playlist_new_changed(const char attribute((unused)) *event,
488 void attribute((unused)) *eventdata,
489 void attribute((unused)) *callbackdata) {
490 if(!playlist_new_window)
491 return;
492 const char *reason = playlist_new_valid();
493 gtk_widget_set_sensitive(playlist_new_buttons[0].widget,
494 !reason);
495 gtk_label_set_text(GTK_LABEL(playlist_new_info), reason);
496}
7f7c3819 497
7c12e4bd
RK
498/** @brief Test whether the new-playlist window settings are valid
499 * @return NULL on success or an error string if not
500 */
7f7c3819
RK
501static const char *playlist_new_valid(void) {
502 gboolean shared, public, private;
7c12e4bd
RK
503 char *name, *fullname;
504 playlist_new_details(&name, &fullname, &shared, &public, &private);
7f7c3819
RK
505 if(!(shared || public || private))
506 return "No type set.";
7f7c3819
RK
507 if(!*name)
508 return "";
7f7c3819 509 /* See if the result is valid */
7c12e4bd
RK
510 if(!valid_username(name)
511 || playlist_parse_name(fullname, NULL, NULL))
7f7c3819 512 return "Not a valid playlist name.";
b5e60f0d
RK
513 /* See if the result clashes with an existing name. This is not a perfect
514 * check, the playlist might be created after this point but before we get a
515 * chance to disable the "OK" button. However when we try to create the
516 * playlist we will first try to retrieve it, with a lock held, so we
517 * shouldn't end up overwriting anything. */
7f7c3819
RK
518 for(int n = 0; n < nplaylists; ++n)
519 if(!strcmp(playlists[n], fullname)) {
520 if(shared)
521 return "A shared playlist with that name already exists.";
522 else
523 return "You already have a playlist with that name.";
524 }
525 /* As far as we can tell creation would work */
526 return NULL;
527}
528
c41b2cac
RK
529/** @brief Get entered new-playlist details
530 * @param namep Where to store entered name (or NULL)
531 * @param fullnamep Where to store computed full name (or NULL)
532 * @param sharep Where to store 'shared' flag (or NULL)
533 * @param publicp Where to store 'public' flag (or NULL)
534 * @param privatep Where to store 'private' flag (or NULL)
7f7c3819 535 */
c41b2cac
RK
536static void playlist_new_details(char **namep,
537 char **fullnamep,
538 gboolean *sharedp,
539 gboolean *publicp,
540 gboolean *privatep) {
541 gboolean shared, public, private;
542 g_object_get(playlist_new_shared, "active", &shared, (char *)NULL);
543 g_object_get(playlist_new_public, "active", &public, (char *)NULL);
544 g_object_get(playlist_new_private, "active", &private, (char *)NULL);
545 char *gname = gtk_editable_get_chars(GTK_EDITABLE(playlist_new_entry),
546 0, -1); /* name owned by calle */
547 char *name = xstrdup(gname);
548 g_free(gname);
549 if(sharedp) *sharedp = shared;
550 if(publicp) *publicp = public;
551 if(privatep) *privatep = private;
552 if(namep) *namep = name;
553 if(fullnamep) {
554 if(*sharedp) *fullnamep = *namep;
555 else byte_xasprintf(fullnamep, "%s.%s", config->username, name);
556 }
7f7c3819
RK
557}
558
b5e60f0d 559/* Playlist picker ---------------------------------------------------------- */
121944d1 560
b5e60f0d
RK
561/** @brief Delete button */
562static GtkWidget *playlist_picker_delete_button;
563
564/** @brief Tree model for list of playlists */
565static GtkListStore *playlist_picker_list;
566
567/** @brief Selection for list of playlists */
568static GtkTreeSelection *playlist_picker_selection;
569
570/** @brief Currently selected playlist */
571static const char *playlist_picker_selected;
572
573/** @brief (Re-)populate the playlist picker tree model */
574static void playlist_picker_fill(const char attribute((unused)) *event,
575 void attribute((unused)) *eventdata,
576 void attribute((unused)) *callbackdata) {
f0bd437a
RK
577 GtkTreeIter iter[1];
578
7fe2807d 579 if(!playlist_window)
d571e07b 580 return;
b5e60f0d
RK
581 if(!playlist_picker_list)
582 playlist_picker_list = gtk_list_store_new(1, G_TYPE_STRING);
583 const char *was_selected = playlist_picker_selected;
584 gtk_list_store_clear(playlist_picker_list); /* clears playlists_selected */
d571e07b 585 for(int n = 0; n < nplaylists; ++n) {
b5e60f0d
RK
586 gtk_list_store_insert_with_values(playlist_picker_list, iter,
587 n /*position*/,
588 0, playlists[n], /* column 0 */
589 -1); /* no more cols */
d571e07b
RK
590 /* Reselect the selected playlist */
591 if(was_selected && !strcmp(was_selected, playlists[n]))
b5e60f0d 592 gtk_tree_selection_select_iter(playlist_picker_selection, iter);
d571e07b 593 }
9a6e6a46
RK
594 /* TODO deselecting then reselecting the current playlist resets the playlist
595 * editor, which trashes the user's selection. */
f0bd437a
RK
596}
597
598/** @brief Called when the selection might have changed */
b5e60f0d
RK
599static void playlist_picker_selection_changed(GtkTreeSelection attribute((unused)) *treeselection,
600 gpointer attribute((unused)) user_data) {
f0bd437a
RK
601 GtkTreeIter iter;
602 char *gselected, *selected;
603
604 /* Identify the current selection */
b5e60f0d
RK
605 if(gtk_tree_selection_get_selected(playlist_picker_selection, 0, &iter)) {
606 gtk_tree_model_get(GTK_TREE_MODEL(playlist_picker_list), &iter,
f0bd437a
RK
607 0, &gselected, -1);
608 selected = xstrdup(gselected);
609 g_free(gselected);
610 } else
611 selected = 0;
d9b141cc
RK
612 /* Set button sensitivity according to the new state */
613 if(selected)
b5e60f0d 614 gtk_widget_set_sensitive(playlist_picker_delete_button, 1);
7c12e4bd 615 else
b5e60f0d 616 gtk_widget_set_sensitive(playlist_picker_delete_button, 0);
f0bd437a 617 /* Eliminate no-change cases */
b5e60f0d 618 if(!selected && !playlist_picker_selected)
f0bd437a 619 return;
b5e60f0d
RK
620 if(selected
621 && playlist_picker_selected
622 && !strcmp(selected, playlist_picker_selected))
f0bd437a 623 return;
d9b141cc 624 /* Record the new state */
b5e60f0d 625 playlist_picker_selected = selected;
7e702780
RK
626 /* Re-initalize the queue */
627 ql_new_queue(&ql_playlist, NULL);
7fe2807d 628 playlist_editor_fill(NULL, (void *)playlist_picker_selected, NULL);
f0bd437a
RK
629}
630
631/** @brief Called when the 'add' button is pressed */
b5e60f0d
RK
632static void playlist_picker_add(GtkButton attribute((unused)) *button,
633 gpointer attribute((unused)) userdata) {
7c12e4bd 634 /* Unselect whatever is selected TODO why?? */
b5e60f0d
RK
635 gtk_tree_selection_unselect_all(playlist_picker_selection);
636 playlist_new_playlist();
f0bd437a
RK
637}
638
d9b141cc 639/** @brief Called when playlist deletion completes */
b5e60f0d
RK
640static void playlists_picker_delete_completed(void attribute((unused)) *v,
641 const char *err) {
d9b141cc
RK
642 if(err)
643 popup_protocol_error(0, err);
644}
645
f0bd437a 646/** @brief Called when the 'Delete' button is pressed */
b5e60f0d
RK
647static void playlist_picker_delete(GtkButton attribute((unused)) *button,
648 gpointer attribute((unused)) userdata) {
f0bd437a
RK
649 GtkWidget *yesno;
650 int res;
651
b5e60f0d 652 if(!playlist_picker_selected)
f0bd437a 653 return; /* shouldn't happen */
7fe2807d 654 yesno = gtk_message_dialog_new(GTK_WINDOW(playlist_window),
f0bd437a
RK
655 GTK_DIALOG_MODAL,
656 GTK_MESSAGE_QUESTION,
657 GTK_BUTTONS_YES_NO,
c5782050 658 "Do you really want to delete playlist %s?"
f0bd437a 659 " This action cannot be undone.",
b5e60f0d 660 playlist_picker_selected);
f0bd437a
RK
661 res = gtk_dialog_run(GTK_DIALOG(yesno));
662 gtk_widget_destroy(yesno);
663 if(res == GTK_RESPONSE_YES) {
664 disorder_eclient_playlist_delete(client,
b5e60f0d
RK
665 playlists_picker_delete_completed,
666 playlist_picker_selected,
f0bd437a
RK
667 NULL);
668 }
669}
670
671/** @brief Table of buttons below the playlist list */
b5e60f0d 672static struct button playlist_picker_buttons[] = {
f0bd437a
RK
673 {
674 GTK_STOCK_ADD,
b5e60f0d 675 playlist_picker_add,
f0bd437a
RK
676 "Create a new playlist",
677 0
678 },
679 {
680 GTK_STOCK_REMOVE,
b5e60f0d 681 playlist_picker_delete,
f0bd437a
RK
682 "Delete a playlist",
683 0
684 },
685};
b5e60f0d 686#define NPLAYLIST_PICKER_BUTTONS (sizeof playlist_picker_buttons / sizeof *playlist_picker_buttons)
f0bd437a 687
506e02d8 688/** @brief Create the list of playlists for the edit playlists window */
b5e60f0d 689static GtkWidget *playlist_picker_create(void) {
506e02d8 690 /* Create the list of playlist and populate it */
b5e60f0d 691 playlist_picker_fill(NULL, NULL, NULL);
506e02d8 692 /* Create the tree view */
b5e60f0d 693 GtkWidget *tree = gtk_tree_view_new_with_model(GTK_TREE_MODEL(playlist_picker_list));
506e02d8
RK
694 /* ...and the renderers for it */
695 GtkCellRenderer *cr = gtk_cell_renderer_text_new();
696 GtkTreeViewColumn *col = gtk_tree_view_column_new_with_attributes("Playlist",
697 cr,
698 "text", 0,
699 NULL);
700 gtk_tree_view_append_column(GTK_TREE_VIEW(tree), col);
701 /* Get the selection for the view; set its mode; arrange for a callback when
702 * it changes */
b5e60f0d
RK
703 playlist_picker_selected = NULL;
704 playlist_picker_selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree));
705 gtk_tree_selection_set_mode(playlist_picker_selection, GTK_SELECTION_BROWSE);
706 g_signal_connect(playlist_picker_selection, "changed",
707 G_CALLBACK(playlist_picker_selection_changed), NULL);
506e02d8
RK
708
709 /* Create the control buttons */
b5e60f0d
RK
710 GtkWidget *buttons = create_buttons_box(playlist_picker_buttons,
711 NPLAYLIST_PICKER_BUTTONS,
506e02d8 712 gtk_hbox_new(FALSE, 1));
b5e60f0d 713 playlist_picker_delete_button = playlist_picker_buttons[1].widget;
506e02d8 714
b5e60f0d 715 playlist_picker_selection_changed(NULL, NULL);
7c12e4bd 716
506e02d8
RK
717 /* Buttons live below the list */
718 GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
719 gtk_box_pack_start(GTK_BOX(vbox), scroll_widget(tree), TRUE/*expand*/, TRUE/*fill*/, 0);
720 gtk_box_pack_start(GTK_BOX(vbox), buttons, FALSE/*expand*/, FALSE, 0);
721
722 return vbox;
723}
724
7fe2807d 725/* Playlist editor ---------------------------------------------------------- */
506e02d8 726
c41b2cac
RK
727static GtkWidget *playlists_editor_create(void) {
728 assert(ql_playlist.view == NULL); /* better not be set up already */
729 GtkWidget *w = init_queuelike(&ql_playlist);
730 /* Initially empty */
731 return w;
732}
733
734/** @brief (Re-)populate the playlist tree model */
735static void playlist_editor_fill(const char attribute((unused)) *event,
736 void *eventdata,
737 void attribute((unused)) *callbackdata) {
738 const char *modified_playlist = eventdata;
739 if(!playlist_window)
740 return;
741 if(!playlist_picker_selected)
742 return;
743 if(!strcmp(playlist_picker_selected, modified_playlist))
744 disorder_eclient_playlist_get(client, playlists_editor_received_tracks,
745 playlist_picker_selected,
746 (void *)playlist_picker_selected);
747}
748
7e702780 749/** @brief Called with new tracks for the playlist */
f06a754c 750static void playlists_editor_received_tracks(void *v,
7fe2807d
RK
751 const char *err,
752 int nvec, char **vec) {
f06a754c 753 const char *playlist = v;
7e702780
RK
754 if(err) {
755 popup_protocol_error(0, err);
756 return;
757 }
f06a754c
RK
758 if(!playlist_picker_selected
759 || strcmp(playlist, playlist_picker_selected)) {
760 /* The tracks are for the wrong playlist - something must have changed
761 * while the fetch command was in flight. We just ignore this callback,
762 * the right answer will be requested and arrive in due course. */
763 return;
764 }
7e702780
RK
765 if(nvec == -1)
766 /* No such playlist, presumably we'll get a deleted event shortly */
767 return;
768 /* Translate the list of tracks into queue entries */
769 struct queue_entry *newq, **qq = &newq;
770 hash *h = hash_new(sizeof(int));
771 for(int n = 0; n < nvec; ++n) {
772 struct queue_entry *q = xmalloc(sizeof *q);
773 q->track = vec[n];
774 /* Synthesize a unique ID so that the selection survives updates. Tracks
775 * can appear more than once in the queue so we can't use raw track names,
776 * so we add a serial number to the start. */
7e702780
RK
777 int *serialp = hash_find(h, vec[n]), serial = serialp ? *serialp : 0;
778 byte_xasprintf((char **)&q->id, "%d-%s", serial++, vec[n]);
f57ff3aa 779 hash_add(h, vec[n], &serial, HASH_INSERT_OR_REPLACE);
7e702780
RK
780 *qq = q;
781 qq = &q->next;
782 }
783 *qq = NULL;
7e702780 784 ql_new_queue(&ql_playlist, newq);
7e702780
RK
785}
786
7a3eb8eb
RK
787/* Playlist mutation -------------------------------------------------------- */
788
789/** @brief State structure for guarded playlist modification
f57ff3aa
RK
790 *
791 * To safely move, insert or delete rows we must:
792 * - take a lock
793 * - fetch the playlist
794 * - verify it's not changed
795 * - update the playlist contents
796 * - store the playlist
797 * - release the lock
798 *
799 * The playlist_modify_ functions do just that.
7a3eb8eb
RK
800 *
801 * To kick things off create one of these and disorder_eclient_playlist_lock()
802 * with playlist_modify_locked() as its callback. @c modify will be called; it
803 * should disorder_eclient_playlist_set() to set the new state with
804 * playlist_modify_updated() as its callback.
805 */
806struct playlist_modify_data {
807 /** @brief Affected playlist */
808 const char *playlist;
809 /** @brief Modification function
810 * @param mod Pointer back to state structure
811 * @param ntracks Length of playlist
812 * @param tracks Tracks in playlist
813 */
814 void (*modify)(struct playlist_modify_data *mod,
815 int ntracks, char **tracks);
816
817 /** @brief Number of tracks dropped */
818 int ntracks;
819 /** @brief Track names dropped */
820 char **tracks;
821 /** @brief Track IDs dropped */
822 char **ids;
823 /** @brief Drop after this point */
824 struct queue_entry *after_me;
825};
826
827/** @brief Called with playlist locked
828 *
829 * This is the entry point for guarded modification ising @ref
830 * playlist_modify_data.
831 */
832static void playlist_modify_locked(void *v, const char *err) {
833 struct playlist_modify_data *mod = v;
834 if(err) {
835 popup_protocol_error(0, err);
836 return;
837 }
838 disorder_eclient_playlist_get(client, playlist_modify_retrieved,
839 mod->playlist, mod);
840}
841
842/** @brief Called with current playlist contents
843 * Checks that the playlist is still current and has not changed.
844 */
845void playlist_modify_retrieved(void *v, const char *err,
846 int nvec,
847 char **vec) {
848 struct playlist_modify_data *mod = v;
849 if(err) {
850 popup_protocol_error(0, err);
851 disorder_eclient_playlist_unlock(client, playlist_modify_unlocked, NULL);
852 return;
853 }
854 if(nvec < 0
855 || !playlist_picker_selected
856 || strcmp(mod->playlist, playlist_picker_selected)) {
857 disorder_eclient_playlist_unlock(client, playlist_modify_unlocked, NULL);
858 return;
859 }
860 /* We check that the contents haven't changed. If they have we just abandon
861 * the operation. The user will have to try again. */
862 struct queue_entry *q;
863 int n;
864 for(n = 0, q = ql_playlist.q; q && n < nvec; ++n, q = q->next)
865 if(strcmp(q->track, vec[n]))
866 break;
867 if(n != nvec || q != NULL) {
868 disorder_eclient_playlist_unlock(client, playlist_modify_unlocked, NULL);
869 return;
870 }
871 mod->modify(mod, nvec, vec);
872}
873
874/** @brief Called when the playlist has been updated */
875static void playlist_modify_updated(void attribute((unused)) *v,
876 const char *err) {
877 if(err)
878 popup_protocol_error(0, err);
879 disorder_eclient_playlist_unlock(client, playlist_modify_unlocked, NULL);
880}
881
882/** @brief Called when the playlist has been unlocked */
883static void playlist_modify_unlocked(void attribute((unused)) *v,
884 const char *err) {
885 if(err)
886 popup_protocol_error(0, err);
887}
888
889/* Drop tracks into a playlist ---------------------------------------------- */
890
891static void playlist_drop(struct queuelike attribute((unused)) *ql,
892 int ntracks,
893 char **tracks, char **ids,
894 struct queue_entry *after_me) {
895 struct playlist_modify_data *mod = xmalloc(sizeof *mod);
896
897 mod->playlist = playlist_picker_selected;
898 mod->modify = playlist_drop_modify;
899 mod->ntracks = ntracks;
900 mod->tracks = tracks;
901 mod->ids = ids;
902 mod->after_me = after_me;
7a3eb8eb
RK
903 disorder_eclient_playlist_lock(client, playlist_modify_locked,
904 mod->playlist, mod);
905}
906
a6712ea8
RK
907/** @brief Return true if track @p i is in the moved set */
908static int playlist_drop_is_moved(struct playlist_modify_data *mod,
909 int i) {
910 struct queue_entry *q;
911
912 fprintf(stderr, "is %d moved?\n", i);
913 /* Find the q corresponding to i, so we can get the ID */
914 for(q = ql_playlist.q; i; q = q->next, --i)
915 ;
916 fprintf(stderr, "id is %s\n", q->id);
917 /* See if track i matches any of the moved set by ID */
918 for(int n = 0; n < mod->ntracks; ++n)
919 if(!strcmp(q->id, mod->ids[n])) {
920 fprintf(stderr, "YES, it was moved.\n");
921 return 1;
922 }
923 fprintf(stderr, "NO it was not.\n");
924 return 0;
925}
926
7a3eb8eb
RK
927static void playlist_drop_modify(struct playlist_modify_data *mod,
928 int nvec, char **vec) {
929 char **newvec;
930 int nnewvec;
f57ff3aa 931
d8efe0a3 932 fprintf(stderr, "\nplaylist_drop_modify\n");
a6712ea8
RK
933 /* after_me is the queue_entry to insert after, or NULL to insert at the
934 * beginning (including the case when the playlist is empty) */
f57ff3aa
RK
935 fprintf(stderr, "after_me = %s\n",
936 mod->after_me ? mod->after_me->track : "NULL");
a6712ea8
RK
937 struct queue_entry *q = ql_playlist.q;
938 int ins = 0;
939 if(mod->after_me) {
940 ++ins;
941 while(q && q != mod->after_me) {
942 q = q->next;
943 ++ins;
944 }
945 }
946 /* Now ins is the index to insert at; equivalently, the row to insert before,
947 * and so equal to nvec to append. */
948 fprintf(stderr, "ins = %d = %s\n",
949 ins, ins < nvec ? vec[ins] : "NULL");
d8efe0a3
RK
950 for(int n = 0; n < nvec; ++n)
951 fprintf(stderr, "%d: %s %s\n", n, n == ins ? "->" : " ", vec[n]);
a6712ea8 952 fprintf(stderr, "nvec = %d\n", nvec);
7a3eb8eb
RK
953 if(mod->ids) {
954 /* This is a rearrangement */
d8efe0a3
RK
955 /* We have:
956 * - vec[], the current layout
957 * - ins, pointing into vec
958 * - mod->tracks[], a subset of vec[] which is to be moved
959 *
960 * ins is the insertion point BUT it is in terms of the whole
961 * array, i.e. before mod->tracks[] have been removed. The first
962 * step then is to remove everything in mod->tracks[] and adjust
963 * ins downwards as necessary.
964 */
965 /* First zero out anything that's moved */
966 int before_ins = 0;
967 for(int n = 0; n < nvec; ++n) {
968 if(playlist_drop_is_moved(mod, n)) {
969 vec[n] = NULL;
970 if(n < ins)
971 ++before_ins;
7a3eb8eb
RK
972 }
973 }
d8efe0a3
RK
974 /* Now collapse down the array */
975 int i = 0;
976 for(int n = 0; n < nvec; ++n) {
977 if(vec[n])
978 vec[i++] = vec[n];
979 }
980 assert(i + mod->ntracks == nvec);
981 nvec = i;
982 /* Adjust the insertion point to take account of things moved from before
983 * it */
984 ins -= before_ins;
985 /* The effect is now the same as an insertion */
7a3eb8eb 986 }
d8efe0a3
RK
987 /* This is (now) an insertion */
988 nnewvec = nvec + mod->ntracks;
989 newvec = xcalloc(nnewvec, sizeof (char *));
990 memcpy(newvec, vec,
991 ins * sizeof (char *));
992 memcpy(newvec + ins, mod->tracks,
993 mod->ntracks * sizeof (char *));
994 memcpy(newvec + ins + mod->ntracks, vec + ins,
995 (nvec - ins) * sizeof (char *));
7a3eb8eb
RK
996 disorder_eclient_playlist_set(client, playlist_modify_updated, mod->playlist,
997 newvec, nnewvec, mod);
998}
999
b35f7c0f
RK
1000/* Playlist editor right-click menu ---------------------------------------- */
1001
1002/** @brief Called to determine whether the playlist is playable */
1003static int playlist_playall_sensitive(void attribute((unused)) *extra) {
1004 /* If there's no playlist obviously we can't play it */
1005 if(!playlist_picker_selected)
1006 return FALSE;
1007 /* If it's empty we can't play it */
1008 if(!ql_playlist.q)
1009 return FALSE;
1010 /* Otherwise we can */
1011 return TRUE;
1012}
1013
1014/** @brief Called to play the selected playlist */
1015static void playlist_playall_activate(GtkMenuItem attribute((unused)) *menuitem,
1016 gpointer attribute((unused)) user_data) {
1017 if(!playlist_picker_selected)
1018 return;
1019 /* Re-use the menu-based activation callback */
1020 disorder_eclient_playlist_get(client, playlist_menu_received_content,
1021 playlist_picker_selected, NULL);
1022}
1023
dba3eb8e
RK
1024/** @brief Called to determine whether the playlist is playable */
1025static int playlist_remove_sensitive(void attribute((unused)) *extra) {
1026 /* If there's no playlist obviously we can't remove from it */
1027 if(!playlist_picker_selected)
1028 return FALSE;
1029 /* If no tracks are selected we cannot remove them */
1030 if(!gtk_tree_selection_count_selected_rows(ql_playlist.selection))
1031 return FALSE;
1032 /* We're good to go */
1033 return TRUE;
1034}
1035
1036/** @brief Called to play the selected playlist */
1037static void playlist_remove_activate(GtkMenuItem attribute((unused)) *menuitem,
1038 gpointer attribute((unused)) user_data) {
f57ff3aa 1039 /* TODO backspace should work too */
dba3eb8e
RK
1040 if(!playlist_picker_selected)
1041 return;
7a3eb8eb 1042 struct playlist_modify_data *mod = xmalloc(sizeof *mod);
487eb32a 1043
7a3eb8eb
RK
1044 mod->playlist = playlist_picker_selected;
1045 mod->modify = playlist_remove_modify;
1046 disorder_eclient_playlist_lock(client, playlist_modify_locked,
1047 mod->playlist, mod);
487eb32a
RK
1048}
1049
7a3eb8eb
RK
1050static void playlist_remove_modify(struct playlist_modify_data *mod,
1051 int attribute((unused)) nvec, char **vec) {
487eb32a
RK
1052 GtkTreeIter iter[1];
1053 gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql_playlist.store),
1054 iter);
7a3eb8eb 1055 int n = 0, m = 0;
487eb32a
RK
1056 while(it) {
1057 if(!gtk_tree_selection_iter_is_selected(ql_playlist.selection, iter))
1058 vec[m++] = vec[n++];
1059 else
1060 n++;
1061 it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql_playlist.store), iter);
1062 }
7a3eb8eb
RK
1063 disorder_eclient_playlist_set(client, playlist_modify_updated, mod->playlist,
1064 vec, m, mod);
dba3eb8e
RK
1065}
1066
506e02d8
RK
1067/* Playlists window --------------------------------------------------------- */
1068
7de5fbb9 1069/** @brief Pop up the playlists window
121944d1
RK
1070 *
1071 * Called when the playlists menu item is selected
1072 */
f06a754c
RK
1073void playlist_window_create(gpointer attribute((unused)) callback_data,
1074 guint attribute((unused)) callback_action,
1075 GtkWidget attribute((unused)) *menu_item) {
f0bd437a 1076 /* If the window already exists, raise it */
7fe2807d
RK
1077 if(playlist_window) {
1078 gtk_window_present(GTK_WINDOW(playlist_window));
f0bd437a
RK
1079 return;
1080 }
1081 /* Create the window */
7fe2807d
RK
1082 playlist_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1083 gtk_widget_set_style(playlist_window, tool_style);
1084 g_signal_connect(playlist_window, "destroy",
1085 G_CALLBACK(playlist_window_destroyed), &playlist_window);
1086 gtk_window_set_title(GTK_WINDOW(playlist_window), "Playlists Management");
f0bd437a
RK
1087 /* TODO loads of this is very similar to (copied from!) users.c - can we
1088 * de-dupe? */
1089 /* Keyboard shortcuts */
7fe2807d
RK
1090 g_signal_connect(playlist_window, "key-press-event",
1091 G_CALLBACK(playlist_window_keypress), 0);
f0bd437a 1092 /* default size is too small */
7fe2807d 1093 gtk_window_set_default_size(GTK_WINDOW(playlist_window), 512, 240);
f0bd437a 1094
506e02d8 1095 GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
b5e60f0d 1096 gtk_box_pack_start(GTK_BOX(hbox), playlist_picker_create(),
506e02d8
RK
1097 FALSE/*expand*/, FALSE, 0);
1098 gtk_box_pack_start(GTK_BOX(hbox), gtk_event_box_new(),
1099 FALSE/*expand*/, FALSE, 2);
7fe2807d 1100 gtk_box_pack_start(GTK_BOX(hbox), playlists_editor_create(),
506e02d8 1101 TRUE/*expand*/, TRUE/*fill*/, 0);
f0bd437a 1102
7fe2807d
RK
1103 gtk_container_add(GTK_CONTAINER(playlist_window), frame_widget(hbox, NULL));
1104 gtk_widget_show_all(playlist_window);
f9b20469
RK
1105}
1106
c41b2cac
RK
1107/** @brief Keypress handler */
1108static gboolean playlist_window_keypress(GtkWidget attribute((unused)) *widget,
1109 GdkEventKey *event,
1110 gpointer attribute((unused)) user_data) {
1111 if(event->state)
1112 return FALSE;
1113 switch(event->keyval) {
1114 case GDK_Escape:
1115 gtk_widget_destroy(playlist_window);
1116 return TRUE;
1117 default:
1118 return FALSE;
1119 }
1120}
1121
1122/** @brief Called when the playlist window is destroyed */
1123static void playlist_window_destroyed(GtkWidget attribute((unused)) *widget,
1124 GtkWidget **widget_pointer) {
1125 destroy_queuelike(&ql_playlist);
1126 *widget_pointer = NULL;
1127}
1128
fc36ecb7
RK
1129/** @brief Initialize playlist support */
1130void playlists_init(void) {
1131 /* We re-get all playlists upon any change... */
b5e60f0d 1132 event_register("playlist-created", playlist_list_update, 0);
b5e60f0d 1133 event_register("playlist-deleted", playlist_list_update, 0);
fc36ecb7 1134 /* ...and on reconnection */
b5e60f0d 1135 event_register("log-connected", playlist_list_update, 0);
fc36ecb7 1136 /* ...and from time to time */
b5e60f0d 1137 event_register("periodic-slow", playlist_list_update, 0);
fc36ecb7 1138 /* ...and at startup */
b5e60f0d 1139 playlist_list_update(0, 0, 0);
7c12e4bd
RK
1140
1141 /* Update the playlists menu when the set of playlists changes */
b5e60f0d 1142 event_register("playlists-updated", playlist_menu_changed, 0);
7c12e4bd
RK
1143 /* Update the new-playlist OK button when the set of playlists changes */
1144 event_register("playlists-updated", playlist_new_changed, 0);
d9b141cc 1145 /* Update the list of playlists in the edit window when the set changes */
b5e60f0d 1146 event_register("playlists-updated", playlist_picker_fill, 0);
7e702780 1147 /* Update the displayed playlist when it is modified */
7fe2807d 1148 event_register("playlist-modified", playlist_editor_fill, 0);
fc36ecb7
RK
1149}
1150
0b0fb26b
RK
1151#endif
1152
fc36ecb7
RK
1153/*
1154Local Variables:
1155c-basic-offset:2
1156comment-column:40
1157fill-column:79
1158indent-tabs-mode:nil
1159End:
1160*/