chiark / gitweb /
Move drag-begin handling to multidrag.c
[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 #include "multidrag.h"
44
45 static const GtkTargetEntry queuelike_targets[] = {
46   {
47     (char *)"text/x-disorder-queued-tracks", /* drag type */
48     GTK_TARGET_SAME_WIDGET,             /* rearrangement within a widget */
49     0                                   /* ID value */
50   },
51   {
52     (char *)"text/x-disorder-playable-tracks", /* drag type */
53     GTK_TARGET_SAME_APP|GTK_TARGET_OTHER_WIDGET, /* copying between widgets */
54     1                                     /* ID value */
55   },
56 };
57
58 /* Track detail lookup ----------------------------------------------------- */
59
60 static void queue_lookups_completed(const char attribute((unused)) *event,
61                                    void attribute((unused)) *eventdata,
62                                    void *callbackdata) {
63   struct queuelike *ql = callbackdata;
64   ql_update_list_store(ql);
65 }
66
67 /* Column formatting -------------------------------------------------------- */
68
69 /** @brief Format the 'when' column */
70 const char *column_when(const struct queue_entry *q,
71                         const char attribute((unused)) *data) {
72   char when[64];
73   struct tm tm;
74   time_t t;
75
76   D(("column_when"));
77   switch(q->state) {
78   case playing_isscratch:
79   case playing_unplayed:
80   case playing_random:
81     t = q->expected;
82     break;
83   case playing_failed:
84   case playing_no_player:
85   case playing_ok:
86   case playing_scratched:
87   case playing_started:
88   case playing_paused:
89   case playing_quitting:
90     t = q->played;
91     break;
92   default:
93     t = 0;
94     break;
95   }
96   if(t)
97     strftime(when, sizeof when, "%H:%M", localtime_r(&t, &tm));
98   else
99     when[0] = 0;
100   return xstrdup(when);
101 }
102
103 /** @brief Format the 'who' column */
104 const char *column_who(const struct queue_entry *q,
105                        const char attribute((unused)) *data) {
106   D(("column_who"));
107   return q->submitter ? q->submitter : "";
108 }
109
110 /** @brief Format one of the track name columns */
111 const char *column_namepart(const struct queue_entry *q,
112                             const char *data) {
113   D(("column_namepart"));
114   return namepart(q->track, "display", data);
115 }
116
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"));
121   long l;
122   time_t now;
123   char *played = 0, *length = 0;
124
125   /* Work out what to say for the length */
126   l = namepart_length(q->track);
127   if(l > 0)
128     byte_xasprintf(&length, "%ld:%02ld", l / 60, l % 60);
129   else
130     byte_xasprintf(&length, "?:??");
131   /* For the currently playing track we want to report how much of the track
132    * has been played */
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;
138     else {
139       if(!last_playing)
140         return NULL;
141       xtime(&now);
142       l = playing_track->sofar + (now - last_playing);
143     }
144     byte_xasprintf(&played, "%ld:%02ld/%s", l / 60, l % 60, length);
145     return played;
146   } else
147     return length;
148 }
149
150 /* List store maintenance -------------------------------------------------- */
151
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
156  */
157 struct queue_entry *ql_iter_to_q(GtkTreeModel *model,
158                                  GtkTreeIter *iter) {
159   struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql");
160   GValue v[1];
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);
165   g_value_unset(v);
166   return q;
167 }
168
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
173  */
174 struct queue_entry *ql_path_to_q(GtkTreeModel *model,
175                                  GtkTreePath *path) {
176   GtkTreeIter iter[1];
177   if(!gtk_tree_model_get_iter(model, iter, path))
178     return NULL;
179   return ql_iter_to_q(model, iter);
180 }
181
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
185  */
186 void ql_update_row(struct queue_entry *q,
187                    GtkTreeIter *iter) { 
188   const struct queuelike *const ql = q->ql; 
189
190   D(("ql_update_row"));
191   /* If no iter was supplied, work it out */
192   GtkTreeIter my_iter[1];
193   if(!iter) {
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);
198     if(!qq)
199       return;
200     iter = my_iter;
201   }
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);
206     if(v)
207       gtk_list_store_set(ql->store, iter,
208                          col, v,
209                          -1);
210   }
211   gtk_list_store_set(ql->store, iter,
212                      ql->ncolumns + QUEUEPOINTER_COLUMN, q,
213                      -1);
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,
218                        -1);
219   else
220     gtk_list_store_set(ql->store, iter,
221                        ql->ncolumns + BACKGROUND_COLUMN, (char *)0,
222                        ql->ncolumns + FOREGROUND_COLUMN, (char *)0,
223                        -1);
224 }
225
226 /** @brief Update the list store
227  * @param ql Queuelike to update
228  *
229  * Called when new namepart data is available (and initially).  Doesn't change
230  * the rows, just updates the cell values.
231  */
232 void ql_update_list_store(struct queuelike *ql) {
233   D(("ql_update_list_store"));
234   GtkTreeIter iter[1];
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);
239   }
240 }
241
242 struct newqueue_data {
243   struct queue_entry *old, *new;
244 };
245
246 static void record_queue_map(hash *h,
247                              const char *id,
248                              struct queue_entry *old,
249                              struct queue_entry *new) {
250   struct newqueue_data *nqd;
251
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);
256   }
257   if(old)
258     nqd->old = old;
259   if(new)
260     nqd->new = new;
261 }
262
263 #if 0
264 static void dump_queue(struct queue_entry *head, struct queue_entry *mark) {
265   for(struct queue_entry *q = head; q; q = q->next) {
266     if(q == mark)
267       fprintf(stderr, "!");
268     fprintf(stderr, "%s", q->id);
269     if(q->next)
270       fprintf(stderr, " ");
271   }
272   fprintf(stderr, "\n");
273 }
274
275 static void dump_rows(struct queuelike *ql) {
276   GtkTreeIter iter[1];
277   gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
278                                               iter);
279   while(it) {
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);
283     if(it)
284       fprintf(stderr, " ");
285   }
286   fprintf(stderr, "\n");
287 }
288 #endif
289
290 /** @brief Reset the list store
291  * @param ql Queuelike to reset
292  * @param newq New queue contents/ordering
293  *
294  * Updates the queue to match @p newq
295  */
296 void ql_new_queue(struct queuelike *ql,
297                   struct queue_entry *newq) {
298   D(("ql_new_queue"));
299   ++suppress_actions;
300
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)
304     q->ql = ql;
305
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);
313
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);
317   GtkTreeIter iter[1];
318   gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
319                                               iter);
320   int inserted = 0, deleted = 0, kept = 0;
321   while(it) {
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);
324     if(nqd->new) {
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,
328                          -1);
329       it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
330       ++kept;
331     } else {
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);
335       ++deleted;
336     }
337   }
338
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 */
341
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);
348     if(!nqd->old) {
349       if(after) {
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),
353                                                      where);
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);
356         if(wit)
357           gtk_list_store_insert_after(ql->store, iter, where);
358         else
359           gtk_list_store_append(ql->store, iter);
360       } else
361         gtk_list_store_prepend(ql->store, iter);
362       gtk_list_store_set(ql->store, iter,
363                          ql->ncolumns + QUEUEPOINTER_COLUMN, q,
364                          -1);
365       //fprintf(stderr, " add %s", q->id);
366       ++inserted;
367     }
368     after = newq;
369   }
370
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
373    * order.
374    *
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.
377    */
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);
382   //dump_rows(ql);
383   it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
384                                               iter);
385   struct queue_entry *rq = newq;        /* r for 'right, correct' */
386   int swaps = 0, searches = 0;
387   while(it) {
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);
391
392     if(q != rq) {
393       //fprintf(stderr, "  mismatch\n");
394       GtkTreeIter next[1] = { *iter };
395       gboolean nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
396       while(nit) {
397         struct queue_entry *nq = ql_iter_to_q(GTK_TREE_MODEL(ql->store), next);
398         //fprintf(stderr, "   candidate: %s\n", nq->id);
399         if(nq == rq)
400           break;
401         nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
402         ++searches;
403       }
404       assert(nit);
405       //fprintf(stderr, "  found it\n");
406       gtk_list_store_swap(ql->store, iter, next);
407       *iter = *next;
408       //fprintf(stderr, "%s: new row state: ", ql->name);
409       //dump_rows(ql);
410       ++swaps;
411     }
412     /* ...and onto the next one */
413     it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
414     rq = rq->next;
415   }
416 #if 0
417   fprintf(stderr, "%6s: %3d kept %3d inserted %3d deleted %3d swaps %4d searches\n", ql->name,
418           kept, inserted, deleted, swaps, searches);
419 #endif
420   //fprintf(stderr, "done\n");
421   ql->q = newq;
422   /* Set the rest of the columns in new rows */
423   ql_update_list_store(ql);
424   --suppress_actions;
425 }
426
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
435  */
436 static gboolean ql_drag_motion(GtkWidget *w,
437                                GdkDragContext *dc,
438                                gint x,
439                                gint y,
440                                guint time_,
441                                gpointer attribute((unused)) user_data) {
442   //struct queuelike *const ql = user_data;
443   GdkDragAction action = 0;
444   
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);*/
461   if(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)
464       action = 0;
465   }
466   // Report the status
467   gdk_drag_status(dc, action, time_);
468   if(action) {
469     // Highlight the drop area
470     GtkTreePath *path;
471     GtkTreeViewDropPosition pos;
472
473     if(gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(w),
474                                          x, y,
475                                          &path,
476                                          &pos)) {
477       //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos() -> TRUE\n");
478       // Normalize drop position
479       switch(pos) {
480       case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
481         pos = GTK_TREE_VIEW_DROP_BEFORE;
482         break;
483       case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
484         pos = GTK_TREE_VIEW_DROP_AFTER;
485         break;
486       default: break;
487       }
488       // Highlight drop target
489       gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), path, pos);
490     } else {
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);
493     }
494   }
495   return TRUE;
496 }
497
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
503  */
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;
509
510   gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(w), NULL, 0);
511 }
512
513 /** @brief Callback to add selected tracks to the selection data
514  *
515  * Called from ql_drag_data_get().
516  */
517 static void ql_drag_data_get_collect(GtkTreeModel *model,
518                                      GtkTreePath attribute((unused)) *path,
519                                      GtkTreeIter *iter,
520                                      gpointer data) {
521   struct dynstr *const result = data;
522   struct queue_entry *const q = ql_iter_to_q(model, iter);
523
524   dynstr_append_string(result, q->id);
525   dynstr_append(result, '\n');
526   dynstr_append_string(result, q->track);
527   dynstr_append(result, '\n');
528 }
529
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
537  */
538 static void ql_drag_data_get(GtkWidget attribute((unused)) *w,
539                              GdkDragContext attribute((unused)) *dc,
540                              GtkSelectionData *data,
541                              guint attribute((unused)) info_,
542                              guint attribute((unused)) time_,
543                              gpointer user_data) {
544   struct queuelike *const ql = user_data;
545   struct dynstr result[1];
546
547   /* The list of tracks is converted into a single string, consisting of IDs
548    * and track names.  Each is terminated by a newline.  Including both ID and
549    * track name means that the receiver can use whichever happens to be more
550    * convenient. */
551   dynstr_init(result);
552   gtk_tree_selection_selected_foreach(ql->selection,
553                                       ql_drag_data_get_collect,
554                                       result);
555   // TODO must not be able to drag playing track!
556   //fprintf(stderr, "drag-data-get: %.*s\n",
557   //        result->nvec, result->vec);
558   /* gtk_selection_data_set_text() insists that data->target is one of a
559    * variety of stringy atoms.  TODO: where does this value actually come
560    * from?  */
561   gtk_selection_data_set(data,
562                          GDK_TARGET_STRING,
563                          8, (guchar *)result->vec, result->nvec);
564 }
565
566 /** @brief Called when drag data is received
567  * @param w Target widget (the tree view)
568  * @param dc Drag context
569  * @param x The drop location
570  * @param y The drop location
571  * @param data The selection data
572  * @param info_ The target type that was chosen
573  * @param time_ Time data received (for some reason not a @c time_t)
574  * @param user_data The queuelike
575  */
576 static void ql_drag_data_received(GtkWidget attribute((unused)) *w,
577                                   GdkDragContext attribute((unused)) *dc,
578                                   gint x,
579                                   gint y,
580                                   GtkSelectionData *data,
581                                   guint attribute((unused)) info_,
582                                   guint attribute((unused)) time_,
583                                   gpointer user_data) {
584   struct queuelike *const ql = user_data;
585   char *result, *p;
586   struct vector ids[1], tracks[1];
587   int parity = 0;
588
589   //fprintf(stderr, "drag-data-received: %d,%d info_=%u\n", x, y, info_);
590   /* Get the selection string */
591   p = result = (char *)gtk_selection_data_get_text(data);
592   if(!result) {
593     //fprintf(stderr, "gtk_selection_data_get_text() returned NULL\n");
594     return;
595   }
596   //fprintf(stderr, "%s--\n", result);
597   /* Parse it back into IDs and track names */
598   vector_init(ids);
599   vector_init(tracks);
600   while(*p) {
601     char *nl = strchr(p, '\n');
602     if(!nl)
603       break;
604     *nl = 0;
605     //fprintf(stderr, "  %s\n", p);
606     vector_append(parity++ & 1 ? tracks : ids, xstrdup(p));
607     p = nl + 1;
608   }
609   g_free(result);
610   if(ids->nvec != tracks->nvec) {
611     //fprintf(stderr, "  inconsistent drag data!\n");
612     return;
613   }
614   vector_terminate(ids);
615   vector_terminate(tracks);
616   /* Figure out which row the drop precedes (if any) */
617   GtkTreePath *path;
618   GtkTreeViewDropPosition pos;
619   struct queue_entry *q;
620   if(!gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(ql->view), x, y,
621                                         &path, &pos)) {
622     //fprintf(stderr, "gtk_tree_view_get_dest_row_at_pos returned FALSE\n");
623     /* This generally means a drop past the end of the queue.  We find the last
624      * element in the queue and ask to move after that. */
625     for(q = ql->q; q && q->next; q = q->next)
626       ;
627   } else {
628     /* Convert the path to a queue entry pointer. */
629     q = ql_path_to_q(GTK_TREE_MODEL(ql->store), path);
630     //fprintf(stderr, "  tree view likes to drop near %s\n",
631     //        q->id ? q->id : "NULL");
632     /* TODO interpretation of q=NULL */
633     /* Q should point to the entry just before the insertion point, so that
634      * moveafter works, or NULL to insert right at the start.  We don't support
635      * dropping into a row, since that doesn't make sense for us. */
636     switch(pos) {
637     case GTK_TREE_VIEW_DROP_BEFORE:
638     case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
639       if(q) {
640         q = q->prev;
641         //fprintf(stderr, "  ...but we like to drop near %s\n",
642         //        q ? q->id : "NULL");
643       }
644       break;
645     default:
646       break;
647     }
648   }
649   /* Guarantee we never drop an empty list */
650   if(!tracks->nvec)
651     return;
652   /* Note that q->id can match one of ids[].  This doesn't matter for
653    * moveafter but TODO may matter for playlist support. */
654   switch(info_) {
655   case 0:
656     /* Rearrangement.  Send ID and track data. */
657     ql->drop(ql, tracks->nvec, tracks->vec, ids->vec, q);
658     break;
659   case 1:
660     /* Copying between widgets.  IDs mean nothing so don't send them. */
661     ql->drop(ql, tracks->nvec, tracks->vec, NULL, q);
662     break;
663   }
664 }
665
666 /** @brief Initialize a @ref queuelike */
667 GtkWidget *init_queuelike(struct queuelike *ql) {
668   D(("init_queuelike"));
669   /* Create the list store.  We add an extra column to hold a pointer to the
670    * queue_entry. */
671   GType *types = xcalloc(ql->ncolumns + EXTRA_COLUMNS, sizeof (GType));
672   for(int n = 0; n < ql->ncolumns + EXTRA_COLUMNS; ++n)
673     types[n] = G_TYPE_STRING;
674   types[ql->ncolumns + QUEUEPOINTER_COLUMN] = G_TYPE_POINTER;
675   ql->store = gtk_list_store_newv(ql->ncolumns + EXTRA_COLUMNS, types);
676   g_object_set_data(G_OBJECT(ql->store), "ql", (void *)ql);
677
678   /* Create the view */
679   ql->view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ql->store));
680   gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(ql->view), TRUE);
681
682   /* Create cell renderers and label columns */
683   for(int n = 0; n < ql->ncolumns; ++n) {
684     GtkCellRenderer *r = gtk_cell_renderer_text_new();
685     if(ql->columns[n].flags & COL_ELLIPSIZE)
686       g_object_set(r, "ellipsize", PANGO_ELLIPSIZE_END, (char *)0);
687     if(ql->columns[n].flags & COL_RIGHT)
688       g_object_set(r, "xalign", (gfloat)1.0, (char *)0);
689     GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
690       (ql->columns[n].name,
691        r,
692        "text", n,
693        "background", ql->ncolumns + BACKGROUND_COLUMN,
694        "foreground", ql->ncolumns + FOREGROUND_COLUMN,
695        (char *)0);
696     gtk_tree_view_column_set_resizable(c, TRUE);
697     gtk_tree_view_column_set_reorderable(c, TRUE);
698     if(ql->columns[n].flags & COL_EXPAND)
699       g_object_set(c, "expand", TRUE, (char *)0);
700     gtk_tree_view_append_column(GTK_TREE_VIEW(ql->view), c);
701   }
702
703   /* The selection should support multiple things being selected */
704   ql->selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ql->view));
705   gtk_tree_selection_set_mode(ql->selection, GTK_SELECTION_MULTIPLE);
706
707   /* Catch button presses */
708   g_signal_connect(ql->view, "button-press-event",
709                    G_CALLBACK(ql_button_release), ql);
710
711   /* Drag+drop*/
712   if(ql->drop) {
713     /* Originally this was:
714      *
715      *   gtk_tree_view_set_reorderable(GTK_TREE_VIEW(ql->view), TRUE);
716      *
717      * However this has a two deficiencies:
718      *
719      *   1) Only one row can be dragged at once.  It would be nice
720      *      to be able to do bulk rearrangements since the server
721      *      can cope with that well.
722      *   2) Dragging between windows is not possible.  When playlist
723      *      support appears, it should be possible to drag tracks
724      *      from the choose tag into the playlist.
725      *
726      * At the time of writing neither of these problems are fully solved, the
727      * code as it stands is just a stepping stone in that direction.
728      */
729
730     /* This view will act as a drag source */
731     gtk_drag_source_set(ql->view,
732                         GDK_BUTTON1_MASK,
733                         queuelike_targets,
734                         sizeof queuelike_targets / sizeof *queuelike_targets,
735                         GDK_ACTION_MOVE);
736     /* This view will act as a drag destination */
737     gtk_drag_dest_set(ql->view,
738                       GTK_DEST_DEFAULT_HIGHLIGHT|GTK_DEST_DEFAULT_DROP,
739                       queuelike_targets,
740                       sizeof queuelike_targets / sizeof *queuelike_targets,
741                       GDK_ACTION_MOVE|GDK_ACTION_COPY);
742     g_signal_connect(ql->view, "drag-motion",
743                      G_CALLBACK(ql_drag_motion), ql);
744     g_signal_connect(ql->view, "drag-leave",
745                      G_CALLBACK(ql_drag_leave), ql);
746     g_signal_connect(ql->view, "drag-data-get",
747                      G_CALLBACK(ql_drag_data_get), ql);
748     g_signal_connect(ql->view, "drag-data-received",
749                      G_CALLBACK(ql_drag_data_received), ql);
750     make_treeview_multidrag(ql->view);
751   } else {
752     /* For queues that cannot accept a drop we still accept a copy out */
753     gtk_drag_source_set(ql->view,
754                         GDK_BUTTON1_MASK,
755                         queuelike_targets,
756                         sizeof queuelike_targets / sizeof *queuelike_targets,
757                         GDK_ACTION_COPY);
758     g_signal_connect(ql->view, "drag-data-get",
759                      G_CALLBACK(ql_drag_data_get), ql);
760     make_treeview_multidrag(ql->view);
761   }
762   
763   /* TODO style? */
764
765   ql->init(ql);
766
767   /* Update display text when lookups complete */
768   event_register("lookups-completed", queue_lookups_completed, ql);
769   
770   GtkWidget *scrolled = scroll_widget(ql->view);
771   g_object_set_data(G_OBJECT(scrolled), "type", (void *)ql_tabtype(ql));
772   return scrolled;
773 }
774
775 /*
776 Local Variables:
777 c-basic-offset:2
778 comment-column:40
779 fill-column:79
780 indent-tabs-mode:nil
781 End:
782 */