2 * This file is part of DisOrder
3 * Copyright (C) 2006-2009 Richard Kettlewell
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.
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.
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/>.
18 /** @file disobedience/queue-generic.c
19 * @brief Disobedience queue widgets
21 * This file provides contains code shared between all the queue-like
22 * widgets - the queue, the recent list and the added tracks list.
24 * This code is in the process of being rewritten to use the native list
27 * There are three @ref queuelike objects: @ref ql_queue, @ref
28 * ql_recent and @ref ql_added. Each has an associated queue linked
29 * list and a list store containing the contents.
31 * When new contents turn up we rearrange the list store accordingly.
33 * NB that while in the server the playing track is not in the queue, in
34 * Disobedience, the playing does live in @c ql_queue.q, despite its different
35 * status to everything else found in that list.
38 * - display playing row in a different color?
40 #include "disobedience.h"
42 #include "queue-generic.h"
43 #include "multidrag.h"
45 static const GtkTargetEntry queuelike_targets[] = {
47 (char *)"text/x-disorder-queued-tracks", /* drag type */
48 GTK_TARGET_SAME_WIDGET, /* rearrangement within a widget */
52 (char *)"text/x-disorder-playable-tracks", /* drag type */
53 GTK_TARGET_SAME_APP|GTK_TARGET_OTHER_WIDGET, /* copying between widgets */
58 /* Track detail lookup ----------------------------------------------------- */
60 static void queue_lookups_completed(const char attribute((unused)) *event,
61 void attribute((unused)) *eventdata,
63 struct queuelike *ql = callbackdata;
64 ql_update_list_store(ql);
67 /* Column formatting -------------------------------------------------------- */
69 /** @brief Format the 'when' column */
70 const char *column_when(const struct queue_entry *q,
71 const char attribute((unused)) *data) {
78 case playing_isscratch:
79 case playing_unplayed:
84 case playing_no_player:
86 case playing_scratched:
89 case playing_quitting:
97 strftime(when, sizeof when, "%H:%M", localtime_r(&t, &tm));
100 return xstrdup(when);
103 /** @brief Format the 'who' column */
104 const char *column_who(const struct queue_entry *q,
105 const char attribute((unused)) *data) {
107 return q->submitter ? q->submitter : "";
110 /** @brief Format one of the track name columns */
111 const char *column_namepart(const struct queue_entry *q,
113 D(("column_namepart"));
114 return namepart(q->track, "display", data);
117 /** @brief Format the length column */
118 const char *column_length(const struct queue_entry *q,
119 const char attribute((unused)) *data) {
120 D(("column_length"));
123 char *played = 0, *length = 0;
125 /* Work out what to say for the length */
126 l = namepart_length(q->track);
128 byte_xasprintf(&length, "%ld:%02ld", l / 60, l % 60);
130 byte_xasprintf(&length, "?:??");
131 /* For the currently playing track we want to report how much of the track
133 if(q == playing_track) {
134 /* log_state() arranges that we re-get the playing data whenever the
135 * pause/resume state changes */
136 if(last_state & DISORDER_TRACK_PAUSED)
137 l = playing_track->sofar;
142 l = playing_track->sofar + (now - last_playing);
144 byte_xasprintf(&played, "%ld:%02ld/%s", l / 60, l % 60, length);
150 /* List store maintenance -------------------------------------------------- */
152 /** @brief Return the @ref queue_entry corresponding to @p iter
153 * @param model Model that owns @p iter
154 * @param iter Tree iterator
155 * @return Pointer to queue entry
157 struct queue_entry *ql_iter_to_q(GtkTreeModel *model,
159 struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql");
161 memset(v, 0, sizeof v);
162 gtk_tree_model_get_value(model, iter, ql->ncolumns + QUEUEPOINTER_COLUMN, v);
163 assert(G_VALUE_TYPE(v) == G_TYPE_POINTER);
164 struct queue_entry *const q = g_value_get_pointer(v);
169 /** @brief Return the @ref queue_entry corresponding to @p path
170 * @param model Model to query
171 * @param path Path into tree
172 * @return Pointer to queue entry or NULL
174 struct queue_entry *ql_path_to_q(GtkTreeModel *model,
177 if(!gtk_tree_model_get_iter(model, iter, path))
179 return ql_iter_to_q(model, iter);
182 /** @brief Update one row of a list store
183 * @param q Queue entry
184 * @param iter Iterator referring to row or NULL to work it out
186 void ql_update_row(struct queue_entry *q,
188 const struct queuelike *const ql = q->ql;
190 D(("ql_update_row"));
191 /* If no iter was supplied, work it out */
192 GtkTreeIter my_iter[1];
194 gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), my_iter);
195 struct queue_entry *qq;
196 for(qq = ql->q; qq && q != qq; qq = qq->next)
197 gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), my_iter);
202 /* Update all the columns */
203 for(int col = 0; col < ql->ncolumns; ++col) {
204 const char *const v = ql->columns[col].value(q,
205 ql->columns[col].data);
207 gtk_list_store_set(ql->store, iter,
211 gtk_list_store_set(ql->store, iter,
212 ql->ncolumns + QUEUEPOINTER_COLUMN, q,
214 if(q == playing_track)
215 gtk_list_store_set(ql->store, iter,
216 ql->ncolumns + BACKGROUND_COLUMN, BG_PLAYING,
217 ql->ncolumns + FOREGROUND_COLUMN, FG_PLAYING,
220 gtk_list_store_set(ql->store, iter,
221 ql->ncolumns + BACKGROUND_COLUMN, (char *)0,
222 ql->ncolumns + FOREGROUND_COLUMN, (char *)0,
226 /** @brief Update the list store
227 * @param ql Queuelike to update
229 * Called when new namepart data is available (and initially). Doesn't change
230 * the rows, just updates the cell values.
232 void ql_update_list_store(struct queuelike *ql) {
233 D(("ql_update_list_store"));
235 gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), iter);
236 for(struct queue_entry *q = ql->q; q; q = q->next) {
237 ql_update_row(q, iter);
238 gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
242 struct newqueue_data {
243 struct queue_entry *old, *new;
246 static void record_queue_map(hash *h,
248 struct queue_entry *old,
249 struct queue_entry *new) {
250 struct newqueue_data *nqd;
252 if(!(nqd = hash_find(h, id))) {
253 static const struct newqueue_data empty[1];
254 hash_add(h, id, empty, HASH_INSERT);
255 nqd = hash_find(h, id);
264 static void dump_queue(struct queue_entry *head, struct queue_entry *mark) {
265 for(struct queue_entry *q = head; q; q = q->next) {
267 fprintf(stderr, "!");
268 fprintf(stderr, "%s", q->id);
270 fprintf(stderr, " ");
272 fprintf(stderr, "\n");
275 static void dump_rows(struct queuelike *ql) {
277 gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
280 struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
281 it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
282 fprintf(stderr, "%s", q->id);
284 fprintf(stderr, " ");
286 fprintf(stderr, "\n");
290 /** @brief Reset the list store
291 * @param ql Queuelike to reset
292 * @param newq New queue contents/ordering
294 * Updates the queue to match @p newq
296 void ql_new_queue(struct queuelike *ql,
297 struct queue_entry *newq) {
301 /* Tell every queue entry which queue owns it */
302 //fprintf(stderr, "%s: filling in q->ql\n", ql->name);
303 for(struct queue_entry *q = newq; q; q = q->next)
306 //fprintf(stderr, "%s: constructing h\n", ql->name);
307 /* Construct map from id to new and old structures */
308 hash *h = hash_new(sizeof(struct newqueue_data));
309 for(struct queue_entry *q = ql->q; q; q = q->next)
310 record_queue_map(h, q->id, q, NULL);
311 for(struct queue_entry *q = newq; q; q = q->next)
312 record_queue_map(h, q->id, NULL, q);
314 /* The easy bit: delete rows not present any more. In the same pass we
315 * update the secret column containing the queue_entry pointer. */
316 //fprintf(stderr, "%s: deleting rows...\n", ql->name);
318 gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
320 int inserted = 0, deleted = 0, kept = 0;
322 struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
323 const struct newqueue_data *nqd = hash_find(h, q->id);
325 /* Tell this row that it belongs to the new version of the queue */
326 gtk_list_store_set(ql->store, iter,
327 ql->ncolumns + QUEUEPOINTER_COLUMN, nqd->new,
329 it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
332 /* Delete this row (and move iter to the next one) */
333 //fprintf(stderr, " delete %s", q->id);
334 it = gtk_list_store_remove(ql->store, iter);
339 /* Now every row's secret column is right, but we might be missing new rows
340 * and they might be in the wrong order */
342 /* We're going to have to support arbitrary rearrangements, so we might as
343 * well add new elements at the end. */
344 //fprintf(stderr, "%s: adding rows...\n", ql->name);
345 struct queue_entry *after = 0;
346 for(struct queue_entry *q = newq; q; q = q->next) {
347 const struct newqueue_data *nqd = hash_find(h, q->id);
350 /* Try to insert at the right sort of place */
351 GtkTreeIter where[1];
352 gboolean wit = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
354 while(wit && ql_iter_to_q(GTK_TREE_MODEL(ql->store), where) != after)
355 wit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), where);
357 gtk_list_store_insert_after(ql->store, iter, where);
359 gtk_list_store_append(ql->store, iter);
361 gtk_list_store_prepend(ql->store, iter);
362 gtk_list_store_set(ql->store, iter,
363 ql->ncolumns + QUEUEPOINTER_COLUMN, q,
365 //fprintf(stderr, " add %s", q->id);
371 /* Now exactly the right set of rows are present, and they have the right
372 * queue_entry pointers in their secret column, but they may be in the wrong
375 * The current code is simple but amounts to a bubble-sort - we might easily
376 * called gtk_tree_model_iter_next a couple of thousand times.
378 //fprintf(stderr, "%s: rearranging rows\n", ql->name);
379 //fprintf(stderr, "%s: queue state: ", ql->name);
380 //dump_queue(newq, 0);
381 //fprintf(stderr, "%s: row state: ", ql->name);
383 it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
385 struct queue_entry *rq = newq; /* r for 'right, correct' */
386 int swaps = 0, searches = 0;
388 struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
389 //fprintf(stderr, " rq = %p, q = %p\n", rq, q);
390 //fprintf(stderr, " rq->id = %s, q->id = %s\n", rq->id, q->id);
393 //fprintf(stderr, " mismatch\n");
394 GtkTreeIter next[1] = { *iter };
395 gboolean nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
397 struct queue_entry *nq = ql_iter_to_q(GTK_TREE_MODEL(ql->store), next);
398 //fprintf(stderr, " candidate: %s\n", nq->id);
401 nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
405 //fprintf(stderr, " found it\n");
406 gtk_list_store_swap(ql->store, iter, next);
408 //fprintf(stderr, "%s: new row state: ", ql->name);
412 /* ...and onto the next one */
413 it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
417 fprintf(stderr, "%6s: %3d kept %3d inserted %3d deleted %3d swaps %4d searches\n", ql->name,
418 kept, inserted, deleted, swaps, searches);
420 //fprintf(stderr, "done\n");
422 /* Set the rest of the columns in new rows */
423 ql_update_list_store(ql);
427 /** @brief Called when a drag moves within a candidate destination
428 * @param w Destination widget
429 * @param dc Drag context
430 * @param x Current pointer location
431 * @param y Current pointer location
432 * @param time_ Current time
433 * @param user_data Pointer to queuelike
434 * @return TRUE in a dropzone, otherwise FALSE
436 static gboolean ql_drag_motion(GtkWidget *w,
441 gpointer attribute((unused)) user_data) {
442 //struct queuelike *const ql = user_data;
443 GdkDragAction action = 0;
445 // GTK_DEST_DEFAULT_MOTION vets actions as follows:
446 // 1) if dc->suggested_action is in the gtk_drag_dest_set actions
447 // then dc->suggested_action is taken as the action.
448 // 2) otherwise if dc->actions intersects the gtk_drag_dest_set actions
449 // then the lowest-numbered member of the intersection is chosen.
450 // 3) otherwise no member is chosen and gdk_drag_status() is called
451 // with action=0 to refuse the drop.
452 if(dc->suggested_action) {
453 if(dc->suggested_action & (GDK_ACTION_MOVE|GDK_ACTION_COPY))
454 action = dc->suggested_action;
455 } else if(dc->actions & GDK_ACTION_MOVE)
456 action = GDK_ACTION_MOVE;
457 else if(dc->actions & GDK_ACTION_COPY)
458 action = GDK_ACTION_COPY;
459 /*fprintf(stderr, "suggested %#x actions %#x result %#x\n",
460 dc->suggested_action, dc->actions, action);*/
462 // If the action is acceptable then we see if this widget is acceptable
463 if(gtk_drag_dest_find_target(w, dc, NULL) == GDK_NONE)
467 gdk_drag_status(dc, action, time_);
469 // Highlight the drop area
471 GtkTreeViewDropPosition pos;
473 if(gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(w),
477 //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos() -> TRUE\n");
478 // Normalize drop position
480 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
481 pos = GTK_TREE_VIEW_DROP_BEFORE;
483 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
484 pos = GTK_TREE_VIEW_DROP_AFTER;
488 // Highlight drop target
489 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), path, pos);
491 //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos() -> FALSE\n");
492 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), NULL, 0);
498 /** @brief Called when a drag moves leaves a candidate destination
499 * @param w Destination widget
500 * @param dc Drag context
501 * @param time_ Current time
502 * @param user_data Pointer to queuelike
504 static void ql_drag_leave(GtkWidget *w,
505 GdkDragContext attribute((unused)) *dc,
506 guint attribute((unused)) time_,
507 gpointer attribute((unused)) user_data) {
508 //struct queuelike *const ql = user_data;
510 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), NULL, 0);
513 /** @brief Callback to add selected tracks to the selection data
515 * Called from ql_drag_data_get().
517 static void ql_drag_data_get_collect(GtkTreeModel *model,
518 GtkTreePath attribute((unused)) *path,
521 struct dynstr *const result = data;
522 struct queue_entry *const q = ql_iter_to_q(model, iter);
524 dynstr_append_string(result, q->id);
525 dynstr_append(result, '\n');
526 dynstr_append_string(result, q->track);
527 dynstr_append(result, '\n');
530 /** @brief Called to extract the dragged data from the source queuelike
531 * @param w Source widget (the tree view)
532 * @param dc Drag context
533 * @param data Where to put the answer
534 * @param info_ Target @c info parameter
535 * @param time_ Time data requested (for some reason not a @c time_t)
536 * @param user_data The queuelike
538 * The list of tracks is converted into a single string, consisting of IDs
539 * and track names. Each is terminated by a newline. Including both ID and
540 * track name means that the receiver can use whichever happens to be more
543 * If there are no IDs for rows in this widget then the ID half is undefined.
545 static void ql_drag_data_get(GtkWidget attribute((unused)) *w,
546 GdkDragContext attribute((unused)) *dc,
547 GtkSelectionData *data,
548 guint attribute((unused)) info_,
549 guint attribute((unused)) time_,
550 gpointer user_data) {
551 struct queuelike *const ql = user_data;
552 struct dynstr result[1];
555 gtk_tree_selection_selected_foreach(ql->selection,
556 ql_drag_data_get_collect,
558 // TODO must not be able to drag playing track!
559 //fprintf(stderr, "drag-data-get: %.*s\n",
560 // result->nvec, result->vec);
561 /* gtk_selection_data_set_text() insists that data->target is one of a
562 * variety of stringy atoms. TODO: where does this value actually come
564 gtk_selection_data_set(data,
566 8, (guchar *)result->vec, result->nvec);
569 /** @brief Called when drag data is received
570 * @param w Target widget (the tree view)
571 * @param dc Drag context
572 * @param x The drop location
573 * @param y The drop location
574 * @param data The selection data
575 * @param info_ The target type that was chosen
576 * @param time_ Time data received (for some reason not a @c time_t)
577 * @param user_data The queuelike
579 static void ql_drag_data_received(GtkWidget attribute((unused)) *w,
580 GdkDragContext attribute((unused)) *dc,
583 GtkSelectionData *data,
584 guint attribute((unused)) info_,
585 guint attribute((unused)) time_,
586 gpointer user_data) {
587 struct queuelike *const ql = user_data;
589 struct vector ids[1], tracks[1];
592 //fprintf(stderr, "drag-data-received: %d,%d info_=%u\n", x, y, info_);
593 /* Get the selection string */
594 p = result = (char *)gtk_selection_data_get_text(data);
596 //fprintf(stderr, "gtk_selection_data_get_text() returned NULL\n");
599 //fprintf(stderr, "%s--\n", result);
600 /* Parse it back into IDs and track names */
604 char *nl = strchr(p, '\n');
608 //fprintf(stderr, " %s\n", p);
609 vector_append(parity++ & 1 ? tracks : ids, xstrdup(p));
613 if(ids->nvec != tracks->nvec) {
614 //fprintf(stderr, " inconsistent drag data!\n");
617 vector_terminate(ids);
618 vector_terminate(tracks);
619 /* Figure out which row the drop precedes (if any) */
621 GtkTreeViewDropPosition pos;
622 struct queue_entry *q;
623 if(!gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(ql->view), x, y,
625 //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos returned FALSE\n");
626 /* This generally means a drop past the end of the queue. We find the last
627 * element in the queue and ask to move after that. */
628 for(q = ql->q; q && q->next; q = q->next)
631 /* Convert the path to a queue entry pointer. */
632 q = ql_path_to_q(GTK_TREE_MODEL(ql->store), path);
633 //fprintf(stderr, " tree view likes to drop near %s\n",
634 // q->id ? q->id : "NULL");
635 /* TODO interpretation of q=NULL */
636 /* Q should point to the entry just before the insertion point, so that
637 * moveafter works, or NULL to insert right at the start. We don't support
638 * dropping into a row, since that doesn't make sense for us. */
640 case GTK_TREE_VIEW_DROP_BEFORE:
641 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
644 //fprintf(stderr, " ...but we like to drop near %s\n",
645 // q ? q->id : "NULL");
652 /* Guarantee we never drop an empty list */
655 /* Note that q->id can match one of ids[]. This doesn't matter for
656 * moveafter but TODO may matter for playlist support. */
659 /* Rearrangement. Send ID and track data. */
660 ql->drop(ql, tracks->nvec, tracks->vec, ids->vec, q);
663 /* Copying between widgets. IDs mean nothing so don't send them. */
664 ql->drop(ql, tracks->nvec, tracks->vec, NULL, q);
669 /** @brief Initialize a @ref queuelike */
670 GtkWidget *init_queuelike(struct queuelike *ql) {
671 D(("init_queuelike"));
672 /* Create the list store. We add an extra column to hold a pointer to the
674 GType *types = xcalloc(ql->ncolumns + EXTRA_COLUMNS, sizeof (GType));
675 for(int n = 0; n < ql->ncolumns + EXTRA_COLUMNS; ++n)
676 types[n] = G_TYPE_STRING;
677 types[ql->ncolumns + QUEUEPOINTER_COLUMN] = G_TYPE_POINTER;
678 ql->store = gtk_list_store_newv(ql->ncolumns + EXTRA_COLUMNS, types);
679 g_object_set_data(G_OBJECT(ql->store), "ql", (void *)ql);
681 /* Create the view */
682 ql->view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ql->store));
683 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(ql->view), TRUE);
685 /* Create cell renderers and label columns */
686 for(int n = 0; n < ql->ncolumns; ++n) {
687 GtkCellRenderer *r = gtk_cell_renderer_text_new();
688 if(ql->columns[n].flags & COL_ELLIPSIZE)
689 g_object_set(r, "ellipsize", PANGO_ELLIPSIZE_END, (char *)0);
690 if(ql->columns[n].flags & COL_RIGHT)
691 g_object_set(r, "xalign", (gfloat)1.0, (char *)0);
692 GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
693 (ql->columns[n].name,
696 "background", ql->ncolumns + BACKGROUND_COLUMN,
697 "foreground", ql->ncolumns + FOREGROUND_COLUMN,
699 gtk_tree_view_column_set_resizable(c, TRUE);
700 gtk_tree_view_column_set_reorderable(c, TRUE);
701 if(ql->columns[n].flags & COL_EXPAND)
702 g_object_set(c, "expand", TRUE, (char *)0);
703 gtk_tree_view_append_column(GTK_TREE_VIEW(ql->view), c);
706 /* The selection should support multiple things being selected */
707 ql->selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ql->view));
708 gtk_tree_selection_set_mode(ql->selection, GTK_SELECTION_MULTIPLE);
710 /* Catch button presses */
711 g_signal_connect(ql->view, "button-press-event",
712 G_CALLBACK(ql_button_release), ql);
716 /* Originally this was:
718 * gtk_tree_view_set_reorderable(GTK_TREE_VIEW(ql->view), TRUE);
720 * However this has a two deficiencies:
722 * 1) Only one row can be dragged at once. It would be nice
723 * to be able to do bulk rearrangements since the server
724 * can cope with that well.
725 * 2) Dragging between windows is not possible. When playlist
726 * support appears, it should be possible to drag tracks
727 * from the choose tag into the playlist.
729 * At the time of writing neither of these problems are fully solved, the
730 * code as it stands is just a stepping stone in that direction.
733 /* This view will act as a drag source */
734 gtk_drag_source_set(ql->view,
737 sizeof queuelike_targets / sizeof *queuelike_targets,
739 /* This view will act as a drag destination */
740 gtk_drag_dest_set(ql->view,
741 GTK_DEST_DEFAULT_HIGHLIGHT|GTK_DEST_DEFAULT_DROP,
743 sizeof queuelike_targets / sizeof *queuelike_targets,
744 GDK_ACTION_MOVE|GDK_ACTION_COPY);
745 g_signal_connect(ql->view, "drag-motion",
746 G_CALLBACK(ql_drag_motion), ql);
747 g_signal_connect(ql->view, "drag-leave",
748 G_CALLBACK(ql_drag_leave), ql);
749 g_signal_connect(ql->view, "drag-data-get",
750 G_CALLBACK(ql_drag_data_get), ql);
751 g_signal_connect(ql->view, "drag-data-received",
752 G_CALLBACK(ql_drag_data_received), ql);
753 make_treeview_multidrag(ql->view, NULL);
754 // TODO playing track should be refused by predicate arg
756 /* For queues that cannot accept a drop we still accept a copy out */
757 gtk_drag_source_set(ql->view,
760 sizeof queuelike_targets / sizeof *queuelike_targets,
762 g_signal_connect(ql->view, "drag-data-get",
763 G_CALLBACK(ql_drag_data_get), ql);
764 make_treeview_multidrag(ql->view, NULL);
771 /* Update display text when lookups complete */
772 event_register("lookups-completed", queue_lookups_completed, ql);
774 GtkWidget *scrolled = scroll_widget(ql->view);
775 g_object_set_data(G_OBJECT(scrolled), "type", (void *)ql_tabtype(ql));