chiark / gitweb /
Comments, esp. for multidrag
[disorder] / disobedience / queue-generic.c
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2006-2009 Richard Kettlewell
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 3 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,
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.
14  * 
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/>.
17  */
18 /** @file disobedience/queue-generic.c
19  * @brief Disobedience queue widgets
20  *
21  * This file provides contains code shared between all the queue-like
22  * widgets - the queue, the recent list and the added tracks list.
23  *
24  * This code is in the process of being rewritten to use the native list
25  * widget.
26  *
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.
30  *
31  * When new contents turn up we rearrange the list store accordingly.
32  *
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.
36  *
37  * To do:
38  * - display playing row in a different color?
39  */
40 #include "disobedience.h"
41 #include "popup.h"
42 #include "queue-generic.h"
43
44 static struct queuelike *const queuelikes[] = {
45   &ql_queue, &ql_recent, &ql_added
46 };
47 #define NQUEUELIKES (sizeof queuelikes / sizeof *queuelikes)
48
49 static const GtkTargetEntry queuelike_targets[] = {
50   {
51     (char *)"text/x-disorder-track-data", /* drag type */
52     GTK_TARGET_SAME_WIDGET,             /* rearrangement only for now */
53     0                                   /* ID value */
54   },
55 };
56
57 /* Track detail lookup ----------------------------------------------------- */
58
59 static void queue_lookups_completed(const char attribute((unused)) *event,
60                                    void attribute((unused)) *eventdata,
61                                    void *callbackdata) {
62   struct queuelike *ql = callbackdata;
63   ql_update_list_store(ql);
64 }
65
66 /* Column formatting -------------------------------------------------------- */
67
68 /** @brief Format the 'when' column */
69 const char *column_when(const struct queue_entry *q,
70                         const char attribute((unused)) *data) {
71   char when[64];
72   struct tm tm;
73   time_t t;
74
75   D(("column_when"));
76   switch(q->state) {
77   case playing_isscratch:
78   case playing_unplayed:
79   case playing_random:
80     t = q->expected;
81     break;
82   case playing_failed:
83   case playing_no_player:
84   case playing_ok:
85   case playing_scratched:
86   case playing_started:
87   case playing_paused:
88   case playing_quitting:
89     t = q->played;
90     break;
91   default:
92     t = 0;
93     break;
94   }
95   if(t)
96     strftime(when, sizeof when, "%H:%M", localtime_r(&t, &tm));
97   else
98     when[0] = 0;
99   return xstrdup(when);
100 }
101
102 /** @brief Format the 'who' column */
103 const char *column_who(const struct queue_entry *q,
104                        const char attribute((unused)) *data) {
105   D(("column_who"));
106   return q->submitter ? q->submitter : "";
107 }
108
109 /** @brief Format one of the track name columns */
110 const char *column_namepart(const struct queue_entry *q,
111                             const char *data) {
112   D(("column_namepart"));
113   return namepart(q->track, "display", data);
114 }
115
116 /** @brief Format the length column */
117 const char *column_length(const struct queue_entry *q,
118                           const char attribute((unused)) *data) {
119   D(("column_length"));
120   long l;
121   time_t now;
122   char *played = 0, *length = 0;
123
124   /* Work out what to say for the length */
125   l = namepart_length(q->track);
126   if(l > 0)
127     byte_xasprintf(&length, "%ld:%02ld", l / 60, l % 60);
128   else
129     byte_xasprintf(&length, "?:??");
130   /* For the currently playing track we want to report how much of the track
131    * has been played */
132   if(q == playing_track) {
133     /* log_state() arranges that we re-get the playing data whenever the
134      * pause/resume state changes */
135     if(last_state & DISORDER_TRACK_PAUSED)
136       l = playing_track->sofar;
137     else {
138       if(!last_playing)
139         return NULL;
140       xtime(&now);
141       l = playing_track->sofar + (now - last_playing);
142     }
143     byte_xasprintf(&played, "%ld:%02ld/%s", l / 60, l % 60, length);
144     return played;
145   } else
146     return length;
147 }
148
149 /* List store maintenance -------------------------------------------------- */
150
151 /** @brief Return the @ref queue_entry corresponding to @p iter
152  * @param model Model that owns @p iter
153  * @param iter Tree iterator
154  * @return Pointer to queue entry
155  */
156 struct queue_entry *ql_iter_to_q(GtkTreeModel *model,
157                                  GtkTreeIter *iter) {
158   struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql");
159   GValue v[1];
160   memset(v, 0, sizeof v);
161   gtk_tree_model_get_value(model, iter, ql->ncolumns + QUEUEPOINTER_COLUMN, v);
162   assert(G_VALUE_TYPE(v) == G_TYPE_POINTER);
163   struct queue_entry *const q = g_value_get_pointer(v);
164   g_value_unset(v);
165   return q;
166 }
167
168 /** @brief Return the @ref queue_entry corresponding to @p path
169  * @param model Model to query
170  * @param path Path into tree
171  * @return Pointer to queue entry or NULL
172  */
173 struct queue_entry *ql_path_to_q(GtkTreeModel *model,
174                                  GtkTreePath *path) {
175   GtkTreeIter iter[1];
176   if(!gtk_tree_model_get_iter(model, iter, path))
177     return NULL;
178   return ql_iter_to_q(model, iter);
179 }
180
181 /** @brief Update one row of a list store
182  * @param q Queue entry
183  * @param iter Iterator referring to row or NULL to work it out
184  */
185 void ql_update_row(struct queue_entry *q,
186                    GtkTreeIter *iter) { 
187   const struct queuelike *const ql = q->ql; 
188
189   D(("ql_update_row"));
190   /* If no iter was supplied, work it out */
191   GtkTreeIter my_iter[1];
192   if(!iter) {
193     gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), my_iter);
194     struct queue_entry *qq;
195     for(qq = ql->q; qq && q != qq; qq = qq->next)
196       gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), my_iter);
197     if(!qq)
198       return;
199     iter = my_iter;
200   }
201   /* Update all the columns */
202   for(int col = 0; col < ql->ncolumns; ++col) {
203     const char *const v = ql->columns[col].value(q,
204                                                  ql->columns[col].data);
205     if(v)
206       gtk_list_store_set(ql->store, iter,
207                          col, v,
208                          -1);
209   }
210   gtk_list_store_set(ql->store, iter,
211                      ql->ncolumns + QUEUEPOINTER_COLUMN, q,
212                      -1);
213   if(q == playing_track)
214     gtk_list_store_set(ql->store, iter,
215                        ql->ncolumns + BACKGROUND_COLUMN, BG_PLAYING,
216                        ql->ncolumns + FOREGROUND_COLUMN, FG_PLAYING,
217                        -1);
218   else
219     gtk_list_store_set(ql->store, iter,
220                        ql->ncolumns + BACKGROUND_COLUMN, (char *)0,
221                        ql->ncolumns + FOREGROUND_COLUMN, (char *)0,
222                        -1);
223 }
224
225 /** @brief Update the list store
226  * @param ql Queuelike to update
227  *
228  * Called when new namepart data is available (and initially).  Doesn't change
229  * the rows, just updates the cell values.
230  */
231 void ql_update_list_store(struct queuelike *ql) {
232   D(("ql_update_list_store"));
233   GtkTreeIter iter[1];
234   gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), iter);
235   for(struct queue_entry *q = ql->q; q; q = q->next) {
236     ql_update_row(q, iter);
237     gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
238   }
239 }
240
241 struct newqueue_data {
242   struct queue_entry *old, *new;
243 };
244
245 static void record_queue_map(hash *h,
246                              const char *id,
247                              struct queue_entry *old,
248                              struct queue_entry *new) {
249   struct newqueue_data *nqd;
250
251   if(!(nqd = hash_find(h, id))) {
252     static const struct newqueue_data empty[1];
253     hash_add(h, id, empty, HASH_INSERT);
254     nqd = hash_find(h, id);
255   }
256   if(old)
257     nqd->old = old;
258   if(new)
259     nqd->new = new;
260 }
261
262 #if 0
263 static void dump_queue(struct queue_entry *head, struct queue_entry *mark) {
264   for(struct queue_entry *q = head; q; q = q->next) {
265     if(q == mark)
266       fprintf(stderr, "!");
267     fprintf(stderr, "%s", q->id);
268     if(q->next)
269       fprintf(stderr, " ");
270   }
271   fprintf(stderr, "\n");
272 }
273
274 static void dump_rows(struct queuelike *ql) {
275   GtkTreeIter iter[1];
276   gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
277                                               iter);
278   while(it) {
279     struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
280     it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
281     fprintf(stderr, "%s", q->id);
282     if(it)
283       fprintf(stderr, " ");
284   }
285   fprintf(stderr, "\n");
286 }
287 #endif
288
289 /** @brief Reset the list store
290  * @param ql Queuelike to reset
291  * @param newq New queue contents/ordering
292  *
293  * Updates the queue to match @p newq
294  */
295 void ql_new_queue(struct queuelike *ql,
296                   struct queue_entry *newq) {
297   D(("ql_new_queue"));
298   ++suppress_actions;
299
300   /* Tell every queue entry which queue owns it */
301   //fprintf(stderr, "%s: filling in q->ql\n", ql->name);
302   for(struct queue_entry *q = newq; q; q = q->next)
303     q->ql = ql;
304
305   //fprintf(stderr, "%s: constructing h\n", ql->name);
306   /* Construct map from id to new and old structures */
307   hash *h = hash_new(sizeof(struct newqueue_data));
308   for(struct queue_entry *q = ql->q; q; q = q->next)
309     record_queue_map(h, q->id, q, NULL);
310   for(struct queue_entry *q = newq; q; q = q->next)
311     record_queue_map(h, q->id, NULL, q);
312
313   /* The easy bit: delete rows not present any more.  In the same pass we
314    * update the secret column containing the queue_entry pointer. */
315   //fprintf(stderr, "%s: deleting rows...\n", ql->name);
316   GtkTreeIter iter[1];
317   gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
318                                               iter);
319   int inserted = 0, deleted = 0, kept = 0;
320   while(it) {
321     struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
322     const struct newqueue_data *nqd = hash_find(h, q->id);
323     if(nqd->new) {
324       /* Tell this row that it belongs to the new version of the queue */
325       gtk_list_store_set(ql->store, iter,
326                          ql->ncolumns + QUEUEPOINTER_COLUMN, nqd->new,
327                          -1);
328       it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
329       ++kept;
330     } else {
331       /* Delete this row (and move iter to the next one) */
332       //fprintf(stderr, " delete %s", q->id);
333       it = gtk_list_store_remove(ql->store, iter);
334       ++deleted;
335     }
336   }
337
338   /* Now every row's secret column is right, but we might be missing new rows
339    * and they might be in the wrong order */
340
341   /* We're going to have to support arbitrary rearrangements, so we might as
342    * well add new elements at the end. */
343   //fprintf(stderr, "%s: adding rows...\n", ql->name);
344   struct queue_entry *after = 0;
345   for(struct queue_entry *q = newq; q; q = q->next) {
346     const struct newqueue_data *nqd = hash_find(h, q->id);
347     if(!nqd->old) {
348       if(after) {
349         /* Try to insert at the right sort of place */
350         GtkTreeIter where[1];
351         gboolean wit = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
352                                                      where);
353         while(wit && ql_iter_to_q(GTK_TREE_MODEL(ql->store), where) != after)
354           wit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), where);
355         if(wit)
356           gtk_list_store_insert_after(ql->store, iter, where);
357         else
358           gtk_list_store_append(ql->store, iter);
359       } else
360         gtk_list_store_prepend(ql->store, iter);
361       gtk_list_store_set(ql->store, iter,
362                          ql->ncolumns + QUEUEPOINTER_COLUMN, q,
363                          -1);
364       //fprintf(stderr, " add %s", q->id);
365       ++inserted;
366     }
367     after = newq;
368   }
369
370   /* Now exactly the right set of rows are present, and they have the right
371    * queue_entry pointers in their secret column, but they may be in the wrong
372    * order.
373    *
374    * The current code is simple but amounts to a bubble-sort - we might easily
375    * called gtk_tree_model_iter_next a couple of thousand times.
376    */
377   //fprintf(stderr, "%s: rearranging rows\n", ql->name);
378   //fprintf(stderr, "%s: queue state: ", ql->name);
379   //dump_queue(newq, 0);
380   //fprintf(stderr, "%s: row state: ", ql->name);
381   //dump_rows(ql);
382   it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
383                                               iter);
384   struct queue_entry *rq = newq;        /* r for 'right, correct' */
385   int swaps = 0, searches = 0;
386   while(it) {
387     struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
388     //fprintf(stderr, " rq = %p, q = %p\n", rq, q);
389     //fprintf(stderr, " rq->id = %s, q->id = %s\n", rq->id, q->id);
390
391     if(q != rq) {
392       //fprintf(stderr, "  mismatch\n");
393       GtkTreeIter next[1] = { *iter };
394       gboolean nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
395       while(nit) {
396         struct queue_entry *nq = ql_iter_to_q(GTK_TREE_MODEL(ql->store), next);
397         //fprintf(stderr, "   candidate: %s\n", nq->id);
398         if(nq == rq)
399           break;
400         nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
401         ++searches;
402       }
403       assert(nit);
404       //fprintf(stderr, "  found it\n");
405       gtk_list_store_swap(ql->store, iter, next);
406       *iter = *next;
407       //fprintf(stderr, "%s: new row state: ", ql->name);
408       //dump_rows(ql);
409       ++swaps;
410     }
411     /* ...and onto the next one */
412     it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
413     rq = rq->next;
414   }
415 #if 0
416   fprintf(stderr, "%6s: %3d kept %3d inserted %3d deleted %3d swaps %4d searches\n", ql->name,
417           kept, inserted, deleted, swaps, searches);
418 #endif
419   //fprintf(stderr, "done\n");
420   ql->q = newq;
421   /* Set the rest of the columns in new rows */
422   ql_update_list_store(ql);
423   --suppress_actions;
424 }
425
426 /** @brief State for ql_drag_begin() and its callbacks */
427 struct ql_drag_begin_state {
428   struct queuelike *ql;
429   int rows;
430   int index;
431   GdkPixmap **pixmaps;
432 };
433
434 /** @brief Callback to construct a row pixmap */
435 static void ql_drag_make_row_pixmaps(GtkTreeModel attribute((unused)) *model,
436                                      GtkTreePath *path,
437                                      GtkTreeIter attribute((unused)) *iter,
438                                      gpointer data) {
439   struct ql_drag_begin_state *qdbs = data;
440
441   qdbs->pixmaps[qdbs->index++]
442     = gtk_tree_view_create_row_drag_icon(GTK_TREE_VIEW(qdbs->ql->view),
443                                          path);
444 }
445
446 /** @brief Called when a drag operation from this queuelike begins
447  * @param w Source widget (the tree view)
448  * @param dc Drag context
449  * @param user_data The queuelike
450  */
451 static void ql_drag_begin(GtkWidget attribute((unused)) *w,
452                           GdkDragContext attribute((unused)) *dc,
453                           gpointer user_data) {
454   struct queuelike *const ql = user_data;
455   struct ql_drag_begin_state qdbs[1];
456   GdkPixmap *icon;
457
458   //fprintf(stderr, "drag-begin\n");
459   memset(qdbs, 0, sizeof *qdbs);
460   qdbs->ql = ql;
461   /* Find out how many rows there are */
462   if(!(qdbs->rows = gtk_tree_selection_count_selected_rows(ql->selection)))
463     return;                             /* doesn't make sense */
464   /* Generate a pixmap for each row */
465   qdbs->pixmaps = xcalloc(qdbs->rows, sizeof *qdbs->pixmaps);
466   gtk_tree_selection_selected_foreach(ql->selection,
467                                       ql_drag_make_row_pixmaps,
468                                       qdbs);
469   /* Determine the size of the final icon */
470   int height = 0, width = 0;
471   for(int n = 0; n < qdbs->rows; ++n) {
472     int pxw, pxh;
473     gdk_drawable_get_size(qdbs->pixmaps[n], &pxw, &pxh);
474     if(pxw > width)
475       width = pxw;
476     height += pxh;
477   }
478   if(!width || !height)
479     return;                             /* doesn't make sense */
480   /* Construct the icon */
481   icon = gdk_pixmap_new(qdbs->pixmaps[0], width, height, -1);
482   GdkGC *gc = gdk_gc_new(icon);
483   gdk_gc_set_colormap(gc, gtk_widget_get_colormap(ql->view));
484   int y = 0;
485   for(int n = 0; n < qdbs->rows; ++n) {
486     int pxw, pxh;
487     gdk_drawable_get_size(qdbs->pixmaps[n], &pxw, &pxh);
488     gdk_draw_drawable(icon,
489                       gc,
490                       qdbs->pixmaps[n],
491                       0, 0,             /* source coords */
492                       0, y,             /* dest coords */
493                       pxw, pxh);        /* size */
494     y += pxh;
495   }
496   // TODO scale down a bit, the resulting icons are currently a bit on the
497   // large side.
498   gtk_drag_source_set_icon(ql->view,
499                            gtk_widget_get_colormap(ql->view),
500                            icon,
501                            NULL);
502 }
503
504 /** @brief Called when a drag moves within a candidate destination
505  * @param w Destination widget
506  * @param dc Drag context
507  * @param x Current pointer location
508  * @param y Current pointer location
509  * @param time_ Current time
510  * @param user_data Pointer to queuelike
511  * @return TRUE in a dropzone, otherwise FALSE
512  */
513 static gboolean ql_drag_motion(GtkWidget *w,
514                                GdkDragContext *dc,
515                                gint x,
516                                gint y,
517                                guint time_,
518                                gpointer attribute((unused)) user_data) {
519   //struct queuelike *const ql = user_data;
520   GdkDragAction action = 0;
521   
522   // GTK_DEST_DEFAULT_MOTION vets actions as follows:
523   // 1) if dc->suggested_action is in the gtk_drag_dest_set actions
524   //    then dc->suggested_action is taken as the action.
525   // 2) otherwise if dc->actions intersects the gtk_drag_dest_set actions
526   //    then the lowest-numbered member of the intersection is chosen.
527   // 3) otherwise no member is chosen and gdk_drag_status() is called
528   //    with action=0 to refuse the drop.
529   // Currently we can only accept _MOVE.  But in the future we will
530   // need to accept _COPY in some cases.
531   if(dc->suggested_action) {
532     if(dc->suggested_action == GDK_ACTION_MOVE)
533       action = dc->suggested_action;
534   } else if(dc->actions & GDK_ACTION_MOVE)
535     action = dc->actions;
536   /*fprintf(stderr, "suggested %#x actions %#x result %#x\n",
537     dc->suggested_action, dc->actions, action);*/
538   if(action) {
539     // If the action is acceptable then we see if this widget is acceptable
540     if(!gtk_drag_dest_find_target(w, dc, NULL))
541       action = 0;
542   }
543   // Report the status
544   gdk_drag_status(dc, action, time_);
545   if(action) {
546     // Highlight the drop area
547     GtkTreePath *path;
548     GtkTreeViewDropPosition pos;
549
550     if(gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(w),
551                                          x, y,
552                                          &path,
553                                          &pos)) {
554       //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos() -> TRUE\n");
555       // Normalize drop position
556       switch(pos) {
557       case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
558         pos = GTK_TREE_VIEW_DROP_BEFORE;
559         break;
560       case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
561         pos = GTK_TREE_VIEW_DROP_AFTER;
562         break;
563       default: break;
564       }
565       // Highlight drop target
566       gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), path, pos);
567     } else {
568       //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos() -> FALSE\n");
569       gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), NULL, 0);
570     }
571   }
572   return TRUE;
573 }
574
575 /** @brief Called when a drag moves leaves a candidate destination
576  * @param w Destination widget
577  * @param dc Drag context
578  * @param time_ Current time
579  * @param user_data Pointer to queuelike
580  */
581 static void ql_drag_leave(GtkWidget *w,
582                           GdkDragContext attribute((unused)) *dc,
583                           guint attribute((unused)) time_,
584                           gpointer attribute((unused)) user_data) {
585   //struct queuelike *const ql = user_data;
586
587   gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), NULL, 0);
588 }
589
590 /** @brief Callback to add selected tracks to the selection data
591  *
592  * Called from ql_drag_data_get().
593  */
594 static void ql_drag_data_get_collect(GtkTreeModel *model,
595                                      GtkTreePath attribute((unused)) *path,
596                                      GtkTreeIter *iter,
597                                      gpointer data) {
598   struct dynstr *const result = data;
599   struct queue_entry *const q = ql_iter_to_q(model, iter);
600
601   dynstr_append_string(result, q->id);
602   dynstr_append(result, '\n');
603   dynstr_append_string(result, q->track);
604   dynstr_append(result, '\n');
605 }
606
607 /** @brief Called to extract the dragged data from the source queuelike
608  * @param w Source widget (the tree view)
609  * @param dc Drag context
610  * @param data Where to put the answer
611  * @param info_ Target @c info parameter
612  * @param time_ Time data requested (for some reason not a @c time_t)
613  * @param user_data The queuelike
614  */
615 static void ql_drag_data_get(GtkWidget attribute((unused)) *w,
616                              GdkDragContext attribute((unused)) *dc,
617                              GtkSelectionData *data,
618                              guint attribute((unused)) info_,
619                              guint attribute((unused)) time_,
620                              gpointer user_data) {
621   struct queuelike *const ql = user_data;
622   struct dynstr result[1];
623
624   /* The list of tracks is converted into a single string, consisting of IDs
625    * and track names.  Each is terminated by a newline.  Including both ID and
626    * track name means that the receiver can use whichever happens to be more
627    * convenient. */
628   dynstr_init(result);
629   gtk_tree_selection_selected_foreach(ql->selection,
630                                       ql_drag_data_get_collect,
631                                       result);
632   //fprintf(stderr, "drag-data-get: %.*s\n",
633   //        result->nvec, result->vec);
634   /* gtk_selection_data_set_text() insists that data->target is one of a
635    * variety of stringy atoms.  TODO: where does this value actually come
636    * from?  */
637   gtk_selection_data_set(data,
638                          GDK_TARGET_STRING,
639                          8, (guchar *)result->vec, result->nvec);
640 }
641
642 /** @brief Called when drag data is received
643  * @param w Target widget (the tree view)
644  * @param dc Drag context
645  * @param x The drop location
646  * @param y The drop location
647  * @param data The selection data
648  * @param info_ The target type that was chosen
649  * @param time_ Time data received (for some reason not a @c time_t)
650  * @param user_data The queuelike
651  */
652 static void ql_drag_data_received(GtkWidget attribute((unused)) *w,
653                                   GdkDragContext attribute((unused)) *dc,
654                                   gint x,
655                                   gint y,
656                                   GtkSelectionData *data,
657                                   guint attribute((unused)) info_,
658                                   guint attribute((unused)) time_,
659                                   gpointer user_data) {
660   struct queuelike *const ql = user_data;
661   char *result, *p;
662   struct vector ids[1], tracks[1];
663   int parity = 0;
664
665   //fprintf(stderr, "drag-data-received: %d,%d\n", x, y);
666   /* Get the selection string */
667   p = result = (char *)gtk_selection_data_get_text(data);
668   if(!result) {
669     //fprintf(stderr, "gtk_selection_data_get_text() returned NULL\n");
670     return;
671   }
672   //fprintf(stderr, "%s--\n", result);
673   /* Parse it back into IDs and track names */
674   vector_init(ids);
675   vector_init(tracks);
676   while(*p) {
677     char *nl = strchr(p, '\n');
678     if(!nl)
679       break;
680     *nl = 0;
681     //fprintf(stderr, "  %s\n", p);
682     vector_append(parity++ & 1 ? tracks : ids, xstrdup(p));
683     p = nl + 1;
684   }
685   g_free(result);
686   if(ids->nvec != tracks->nvec) {
687     //fprintf(stderr, "  inconsistent drag data!\n");
688     return;
689   }
690   vector_terminate(ids);
691   vector_terminate(tracks);
692   /* Figure out which row the drop precedes (if any) */
693   GtkTreePath *path;
694   GtkTreeViewDropPosition pos;
695   struct queue_entry *q;
696   if(!gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(ql->view), x, y,
697                                         &path, &pos)) {
698     //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos returned FALSE\n");
699     /* This generally means a drop past the end of the queue.  We find the last
700      * element in the queue and ask to move after that. */
701     for(q = ql->q; q && q->next; q = q->next)
702       ;
703   } else {
704     /* Convert the path to a queue entry pointer. */
705     q = ql_path_to_q(GTK_TREE_MODEL(ql->store), path);
706     //fprintf(stderr, "  tree view likes to drop near %s\n",
707     //        q->id ? q->id : "NULL");
708     /* TODO interpretation of q=NULL */
709     /* Q should point to the entry just before the insertion point, so that
710      * moveafter works, or NULL to insert right at the start.  We don't support
711      * dropping into a row, since that doesn't make sense for us. */
712     switch(pos) {
713     case GTK_TREE_VIEW_DROP_BEFORE:
714     case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
715       if(q) {
716         q = q->prev;
717         //fprintf(stderr, "  ...but we like to drop near %s\n",
718         //        q ? q->id : "NULL");
719       }
720       break;
721     default:
722       break;
723     }
724   }
725   /* Note that q->id can match one of ids[].  This doesn't matter for
726    * moveafter but TODO may matter for playlist support. */
727   ql->drop(ql, tracks->nvec, tracks->vec, ids->vec, q);
728 }
729
730 /** @brief Initialize a @ref queuelike */
731 GtkWidget *init_queuelike(struct queuelike *ql) {
732   D(("init_queuelike"));
733   /* Create the list store.  We add an extra column to hold a pointer to the
734    * queue_entry. */
735   GType *types = xcalloc(ql->ncolumns + EXTRA_COLUMNS, sizeof (GType));
736   for(int n = 0; n < ql->ncolumns + EXTRA_COLUMNS; ++n)
737     types[n] = G_TYPE_STRING;
738   types[ql->ncolumns + QUEUEPOINTER_COLUMN] = G_TYPE_POINTER;
739   ql->store = gtk_list_store_newv(ql->ncolumns + EXTRA_COLUMNS, types);
740   g_object_set_data(G_OBJECT(ql->store), "ql", (void *)ql);
741
742   /* Create the view */
743   ql->view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ql->store));
744   gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(ql->view), TRUE);
745
746   /* Create cell renderers and label columns */
747   for(int n = 0; n < ql->ncolumns; ++n) {
748     GtkCellRenderer *r = gtk_cell_renderer_text_new();
749     if(ql->columns[n].flags & COL_ELLIPSIZE)
750       g_object_set(r, "ellipsize", PANGO_ELLIPSIZE_END, (char *)0);
751     if(ql->columns[n].flags & COL_RIGHT)
752       g_object_set(r, "xalign", (gfloat)1.0, (char *)0);
753     GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
754       (ql->columns[n].name,
755        r,
756        "text", n,
757        "background", ql->ncolumns + BACKGROUND_COLUMN,
758        "foreground", ql->ncolumns + FOREGROUND_COLUMN,
759        (char *)0);
760     gtk_tree_view_column_set_resizable(c, TRUE);
761     gtk_tree_view_column_set_reorderable(c, TRUE);
762     if(ql->columns[n].flags & COL_EXPAND)
763       g_object_set(c, "expand", TRUE, (char *)0);
764     gtk_tree_view_append_column(GTK_TREE_VIEW(ql->view), c);
765   }
766
767   /* The selection should support multiple things being selected */
768   ql->selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ql->view));
769   gtk_tree_selection_set_mode(ql->selection, GTK_SELECTION_MULTIPLE);
770
771   /* Catch button presses */
772   g_signal_connect(ql->view, "button-press-event",
773                    G_CALLBACK(ql_button_release), ql);
774
775   /* Drag+drop*/
776   if(ql->drop) {
777     /* Originally this was:
778      *
779      *   gtk_tree_view_set_reorderable(GTK_TREE_VIEW(ql->view), TRUE);
780      *
781      * However this has a two deficiencies:
782      *
783      *   1) Only one row can be dragged at once.  It would be nice
784      *      to be able to do bulk rearrangements since the server
785      *      can cope with that well.
786      *   2) Dragging between windows is not possible.  When playlist
787      *      support appears, it should be possible to drag tracks
788      *      from the choose tag into the playlist.
789      *
790      * At the time of writing neither of these problems are fully solved, the
791      * code as it stands is just a stepping stone in that direction.
792      */
793
794     /* This view will act as a drag source */
795     gtk_drag_source_set(ql->view,
796                         GDK_BUTTON1_MASK,
797                         queuelike_targets,
798                         sizeof queuelike_targets / sizeof *queuelike_targets,
799                         GDK_ACTION_MOVE);
800     /* This view will act as a drag destination */
801     gtk_drag_dest_set(ql->view,
802                       GTK_DEST_DEFAULT_HIGHLIGHT|GTK_DEST_DEFAULT_DROP,
803                       queuelike_targets,
804                       sizeof queuelike_targets / sizeof *queuelike_targets,
805                       GDK_ACTION_MOVE);
806     g_signal_connect(ql->view, "drag-begin",
807                      G_CALLBACK(ql_drag_begin), ql);
808     g_signal_connect(ql->view, "drag-motion",
809                      G_CALLBACK(ql_drag_motion), ql);
810     g_signal_connect(ql->view, "drag-leave",
811                      G_CALLBACK(ql_drag_leave), ql);
812     g_signal_connect(ql->view, "drag-data-get",
813                      G_CALLBACK(ql_drag_data_get), ql);
814     g_signal_connect(ql->view, "drag-data-received",
815                      G_CALLBACK(ql_drag_data_received), ql);
816     make_treeview_multidrag(ql->view);
817   } else {
818     /* TODO: support copy-dragging out of non-rearrangeable queues.  Will need
819      * to support copy dropping into the rearrangeable ones. */
820   }
821   
822   /* TODO style? */
823
824   ql->init(ql);
825
826   /* Update display text when lookups complete */
827   event_register("lookups-completed", queue_lookups_completed, ql);
828   
829   GtkWidget *scrolled = scroll_widget(ql->view);
830   g_object_set_data(G_OBJECT(scrolled), "type", (void *)ql_tabtype(ql));
831   return scrolled;
832 }
833
834 /*
835 Local Variables:
836 c-basic-offset:2
837 comment-column:40
838 fill-column:79
839 indent-tabs-mode:nil
840 End:
841 */