chiark / gitweb /
Tidy up makefile
[disorder] / disobedience / choose.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
fb009628 3 * Copyright (C) 2006-2008 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
b9bdafc7
RK
20/** @file disobedience/choose.c
21 * @brief Hierarchical track selection and search
22 *
23 * We don't use the built-in tree widgets because they require that you know
24 * the children of a node on demand, and we have to wait for the server to tell
25 * us.
26 */
460b9539 27
28#include "disobedience.h"
81cd1894 29#include "timeval.h"
460b9539 30
31/* Choose track ------------------------------------------------------------ */
32
81cd1894
RK
33#if TDEBUG
34/* Timing */
35static struct {
36 struct timeval total;
37 struct timeval gtkbits;
38 struct timeval menuupdate;
39 struct timeval new_widgets;
40 struct timeval undisplay;
41 struct timeval colors;
42 struct timeval markers;
43 struct timeval location;
44 struct timeval selection;
45} times;
46
47#define BEGIN(WHAT) do { \
48 struct timeval started##WHAT, finished##WHAT; \
49 xgettimeofday(&started##WHAT, 0)
50
51#define END(WHAT) \
52 xgettimeofday(&finished##WHAT, 0); \
53 times.WHAT = tvadd(times.WHAT, tvsub(finished##WHAT, started##WHAT)); \
54} while(0)
55
56#define INIT() memset(&times, 0, sizeof times)
57
58#define REPORT() do { \
59 fprintf(stderr, "total=%g\n" \
60 "gtkbits=%g\n" \
61 "menuupdate=%g\n" \
62 "new_widgets=%g\n" \
63 "undisplay=%g\n" \
64 "colors=%g\n" \
65 "markers=%g\n" \
66 "location=%g\n" \
67 "selection=%g\n" \
68 "accumulation=%g\n" \
69 "\n", \
70 tvdouble(times.total), \
71 tvdouble(times.gtkbits), \
72 tvdouble(times.menuupdate), \
73 tvdouble(times.new_widgets), \
74 tvdouble(times.undisplay), \
75 tvdouble(times.colors), \
76 tvdouble(times.markers), \
77 tvdouble(times.location), \
78 tvdouble(times.selection), \
79 (tvdouble(times.gtkbits) \
80 + tvdouble(times.menuupdate) \
81 + tvdouble(times.new_widgets) \
82 + tvdouble(times.undisplay) \
83 + tvdouble(times.colors) \
84 + tvdouble(times.markers) \
85 + tvdouble(times.location) \
86 + tvdouble(times.selection))); \
87} while(0)
88#else
89#define BEGIN(WHAT) do {
90#define END(WHAT) } while(0)
91#define INIT() ((void)0)
92#define REPORT() ((void)0)
93#endif
94
e9b70a84 95WT(label);
96WT(event_box);
97WT(menu);
98WT(menu_item);
99WT(layout);
100WT(vbox);
101WT(arrow);
102WT(hbox);
103WT(button);
104WT(image);
105WT(entry);
106
460b9539 107/* Types */
108
109struct choosenode;
110
b9bdafc7 111/** @brief Accumulated information about the tree widget */
460b9539 112struct displaydata {
b9bdafc7
RK
113 /** @brief Maximum width required */
114 guint width;
115 /** @brief Maximum height required */
116 guint height;
460b9539 117};
118
119/* instantiate the node vector type */
b8956e9e
RK
120
121VECTOR_TYPE(nodevector, struct choosenode *, xrealloc);
460b9539 122
16e145a5
RK
123/** @brief Signature of function called when a choosenode is filled */
124typedef void (when_filled_callback)(struct choosenode *cn,
125 void *wfu);
126
b9bdafc7 127/** @brief One node in the virtual filesystem */
460b9539 128struct choosenode {
b9bdafc7
RK
129 struct choosenode *parent; /**< @brief parent node */
130 const char *path; /**< @brief full path or 0 */
131 const char *sort; /**< @brief sort key */
132 const char *display; /**< @brief display name */
133 int pending; /**< @brief pending resolve queries */
460b9539 134 unsigned flags;
b9bdafc7
RK
135#define CN_EXPANDABLE 0x0001 /**< @brief node is expandable */
136#define CN_EXPANDED 0x0002 /**< @brief node is expanded
137 *
138 * Expandable items are directories;
139 * non-expandable ones are files. */
140#define CN_DISPLAYED 0x0004 /**< @brief widget is displayed in layout */
141#define CN_SELECTED 0x0008 /**< @brief node is selected */
16e145a5
RK
142#define CN_GETTING_FILES 0x0010 /**< @brief files inbound */
143#define CN_RESOLVING_FILES 0x0020 /**< @brief resolved files inbound */
144#define CN_GETTING_DIRS 0x0040 /**< @brief directories inbound */
145#define CN_GETTING_ANY 0x0070 /**< @brief getting something */
6a06a735 146#define CN_CONTINGENT 0x0080 /**< @brief expansion contingent on search */
b9bdafc7
RK
147 struct nodevector children; /**< @brief vector of children */
148 void (*fill)(struct choosenode *); /**< @brief request child fill or 0 for leaf */
149 GtkWidget *container; /**< @brief the container for this row */
150 GtkWidget *hbox; /**< @brief the hbox for this row */
151 GtkWidget *arrow; /**< @brief arrow widget or 0 */
152 GtkWidget *label; /**< @brief text label for this node */
153 GtkWidget *marker; /**< @brief queued marker */
16e145a5
RK
154
155 when_filled_callback *whenfilled; /**< @brief called when filled or 0 */
156 void *wfu; /**< @brief passed to @c whenfilled */
7e60b670
RK
157 int ymin; /**< @brief least Y value */
158 int ymax; /**< @brief greatest Y value */
460b9539 159};
160
b9bdafc7 161/** @brief One item in the popup menu */
16e145a5 162struct choose_menuitem {
460b9539 163 /* Parameters */
b9bdafc7 164 const char *name; /**< @brief name */
460b9539 165
166 /* Callbacks */
167 void (*activate)(GtkMenuItem *menuitem, gpointer user_data);
b9bdafc7
RK
168 /**< @brief Called to activate the menu item.
169 *
170 * @p user_data is the choosenode the mouse pointer is over. */
460b9539 171
172 gboolean (*sensitive)(struct choosenode *cn);
b9bdafc7
RK
173 /* @brief Called to determine whether the menu item should be sensitive.
174 *
175 * TODO? */
460b9539 176
177 /* State */
b9bdafc7
RK
178 gulong handlerid; /**< @brief signal handler ID */
179 GtkWidget *w; /**< @brief menu item widget */
460b9539 180};
181
182/* Variables */
183
184static GtkWidget *chooselayout;
7e60b670 185static GtkAdjustment *vadjust;
b9bdafc7 186static GtkWidget *searchentry; /**< @brief search terms */
fcc8b9f7
RK
187static GtkWidget *nextsearch; /**< @brief next search result */
188static GtkWidget *prevsearch; /**< @brief previous search result */
460b9539 189static struct choosenode *root;
16e145a5
RK
190static GtkWidget *track_menu; /**< @brief track popup menu */
191static GtkWidget *dir_menu; /**< @brief directory popup menu */
b9bdafc7
RK
192static struct choosenode *last_click; /**< @brief last clicked node for selection */
193static int files_visible; /**< @brief total files visible */
194static int files_selected; /**< @brief total files selected */
c3df9503 195static int gets_in_flight; /**< @brief total gets in flight */
b9bdafc7
RK
196static int search_in_flight; /**< @brief a search is underway */
197static int search_obsolete; /**< @brief the current search is void */
198static char **searchresults; /**< @brief search results */
199static int nsearchresults; /**< @brief number of results */
6a06a735
RK
200static int nsearchvisible; /**< @brief number of search results visible */
201static struct hash *searchhash; /**< @brief hash of search results */
fcc8b9f7
RK
202static struct progress_window *spw; /**< @brief progress window */
203static struct choosenode **searchnodes; /**< @brief choosenodes of search results */
73dd383f 204static int suppress_redisplay; /**< @brief suppress redisplay */
460b9539 205
206/* Forward Declarations */
207
77d95881 208static void clear_children(struct choosenode *cn);
460b9539 209static struct choosenode *newnode(struct choosenode *parent,
210 const char *path,
211 const char *display,
212 const char *sort,
213 unsigned flags,
214 void (*fill)(struct choosenode *));
215static void fill_root_node(struct choosenode *cn);
460b9539 216static void fill_directory_node(struct choosenode *cn);
4190a4d9 217static void got_files(void *v, const char *error, int nvec, char **vec);
06bfbba4 218static void got_resolved_file(void *v, const char *error, const char *track);
4190a4d9 219static void got_dirs(void *v, const char *error, int nvec, char **vec);
460b9539 220
6a06a735 221static void expand_node(struct choosenode *cn, int contingent);
460b9539 222static void contract_node(struct choosenode *cn);
73dd383f
RK
223static void updated_node(struct choosenode *cn, int redisplay,
224 const char *why);
460b9539 225
226static void display_selection(struct choosenode *cn);
227static void clear_selection(struct choosenode *cn);
228
73dd383f 229static void redisplay_tree(const char *why);
460b9539 230static struct displaydata display_tree(struct choosenode *cn, int x, int y);
231static void undisplay_tree(struct choosenode *cn);
232static void initiate_search(void);
233static void delete_widgets(struct choosenode *cn);
6a06a735 234static void expand_from(struct choosenode *cn);
fcc8b9f7 235static struct choosenode *first_search_result(struct choosenode *cn);
460b9539 236
237static void clicked_choosenode(GtkWidget attribute((unused)) *widget,
238 GdkEventButton *event,
239 gpointer user_data);
240
16e145a5
RK
241static void activate_track_play(GtkMenuItem *menuitem, gpointer user_data);
242static void activate_track_properties(GtkMenuItem *menuitem, gpointer user_data);
243
244static gboolean sensitive_track_play(struct choosenode *cn);
245static gboolean sensitive_track_properties(struct choosenode *cn);
246
247static void activate_dir_play(GtkMenuItem *menuitem, gpointer user_data);
248static void activate_dir_properties(GtkMenuItem *menuitem, gpointer user_data);
249static void activate_dir_select(GtkMenuItem *menuitem, gpointer user_data);
250
251static gboolean sensitive_dir_play(struct choosenode *cn);
252static gboolean sensitive_dir_properties(struct choosenode *cn);
253static gboolean sensitive_dir_select(struct choosenode *cn);
254
255/** @brief Track menu items */
256static struct choose_menuitem track_menuitems[] = {
257 { "Play track", activate_track_play, sensitive_track_play, 0, 0 },
258 { "Track properties", activate_track_properties, sensitive_track_properties, 0, 0 },
259 { 0, 0, 0, 0, 0 }
260};
261
262/** @brief Directory menu items */
263static struct choose_menuitem dir_menuitems[] = {
264 { "Play all tracks", activate_dir_play, sensitive_dir_play, 0, 0 },
265 { "Track properties", activate_dir_properties, sensitive_dir_properties, 0, 0 },
266 { "Select all tracks", activate_dir_select, sensitive_dir_select, 0, 0 },
267 { 0, 0, 0, 0, 0 }
460b9539 268};
269
460b9539 270/* Maintaining the data structure ------------------------------------------ */
271
734df821 272static char *cnflags(const struct choosenode *cn) {
6a06a735
RK
273 unsigned f = cn->flags, n;
274 struct dynstr d[1];
275
276 static const char *bits[] = {
277 "expandable",
278 "expanded",
279 "displayed",
280 "selected",
281 "getting_files",
282 "resolving_files",
283 "getting_dirs",
284 "contingent"
285 };
286#define NBITS (sizeof bits / sizeof *bits)
287
288 dynstr_init(d);
289 if(!f)
290 dynstr_append(d, '0');
291 else {
292 for(n = 0; n < NBITS; ++n) {
293 const unsigned bit = 1 << n;
294 if(f & bit) {
295 if(d->nvec)
296 dynstr_append(d, '|');
297 dynstr_append_string(d, bits[n]);
298 f ^= bit;
299 }
300 }
301 if(f) {
302 char buf[32];
303 if(d->nvec)
304 dynstr_append(d, '|');
305 sprintf(buf, "%#x", f);
306 dynstr_append_string(d, buf);
307 }
308 }
309 dynstr_terminate(d);
310 return d->vec;
311}
312
b9bdafc7 313/** @brief Create a new node */
460b9539 314static struct choosenode *newnode(struct choosenode *parent,
315 const char *path,
316 const char *display,
317 const char *sort,
318 unsigned flags,
319 void (*fill)(struct choosenode *)) {
320 struct choosenode *const n = xmalloc(sizeof *n);
321
322 D(("newnode %s %s", path, display));
323 if(flags & CN_EXPANDABLE)
324 assert(fill);
325 else
326 assert(!fill);
327 n->parent = parent;
328 n->path = path;
329 n->display = display;
330 n->sort = sort;
331 n->flags = flags;
332 nodevector_init(&n->children);
333 n->fill = fill;
334 if(parent)
335 nodevector_append(&parent->children, n);
336 return n;
337}
338
16e145a5
RK
339/** @brief Called when a node has been filled
340 *
341 * Response for calling @c whenfilled.
342 */
343static void filled(struct choosenode *cn) {
344 when_filled_callback *const whenfilled = cn->whenfilled;
345
346 if(whenfilled) {
347 cn->whenfilled = 0;
348 whenfilled(cn, cn->wfu);
349 }
6a06a735
RK
350 if(nsearchvisible < nsearchresults) {
351 /* There is still search expansion work to do */
352 D(("filled %s %d/%d", cn->path, nsearchvisible, nsearchresults));
353 expand_from(cn);
354 }
c3df9503
RK
355 if(gets_in_flight == 0 && nsearchvisible < nsearchresults)
356 expand_from(root);
16e145a5
RK
357}
358
b9bdafc7 359/** @brief Fill the root */
460b9539 360static void fill_root_node(struct choosenode *cn) {
460b9539 361 D(("fill_root_node"));
77d95881 362 clear_children(cn);
c3df9503
RK
363 /* More de-duping possible here */
364 if(cn->flags & CN_GETTING_ANY)
365 return;
366 gtk_label_set_text(GTK_LABEL(report_label), "getting files");
4190a4d9
RK
367 disorder_eclient_dirs(client, got_dirs, "", 0, cn);
368 disorder_eclient_files(client, got_files, "", 0, cn);
c3df9503
RK
369 cn->flags |= CN_GETTING_FILES|CN_GETTING_DIRS;
370 gets_in_flight += 2;
460b9539 371}
372
b9bdafc7 373/** @brief Delete all the widgets owned by @p cn */
e9b70a84 374static void delete_cn_widgets(struct choosenode *cn) {
375 if(cn->arrow) {
376 DW(arrow);
377 gtk_widget_destroy(cn->arrow);
378 cn->arrow = 0;
379 }
380 if(cn->label) {
381 DW(label);
382 gtk_widget_destroy(cn->label);
383 cn->label = 0;
384 }
385 if(cn->marker) {
386 DW(image);
387 gtk_widget_destroy(cn->marker);
388 cn->marker = 0;
389 }
390 if(cn->hbox) {
391 DW(hbox);
392 gtk_widget_destroy(cn->hbox);
393 cn->hbox = 0;
394 }
395 if(cn->container) {
396 DW(event_box);
397 gtk_widget_destroy(cn->container);
398 cn->container = 0;
399 }
400}
401
b9bdafc7
RK
402/** @brief Recursively clear all the children of @p cn
403 *
404 * All the widgets at or below @p cn are deleted. All choosenodes below
405 * it are emptied. i.e. we prune the tree at @p cn.
406 */
460b9539 407static void clear_children(struct choosenode *cn) {
408 int n;
409
410 D(("clear_children %s", cn->path));
411 /* Recursively clear subtrees */
412 for(n = 0; n < cn->children.nvec; ++n) {
413 clear_children(cn->children.vec[n]);
e9b70a84 414 delete_cn_widgets(cn->children.vec[n]);
460b9539 415 }
416 cn->children.nvec = 0;
417}
418
b9bdafc7 419/** @brief Called with a list of files just below some node */
4190a4d9
RK
420static void got_files(void *v, const char *error, int nvec, char **vec) {
421 struct choosenode *cn = v;
460b9539 422 int n;
423
4190a4d9
RK
424 if(error) {
425 popup_protocol_error(0, error);
426 return;
427 }
428
734df821 429 D(("got_files %d files for %s %s", nvec, cn->path, cnflags(cn)));
06bfbba4 430 /* Complicated by the need to resolve aliases. */
16e145a5 431 cn->flags &= ~CN_GETTING_FILES;
c3df9503 432 --gets_in_flight;
5459347d
RK
433 if((cn->pending = nvec)) {
434 cn->flags |= CN_RESOLVING_FILES;
c3df9503 435 for(n = 0; n < nvec; ++n) {
06bfbba4 436 disorder_eclient_resolve(client, got_resolved_file, vec[n], cn);
c3df9503
RK
437 ++gets_in_flight;
438 }
5459347d 439 }
6a06a735
RK
440 /* If there are no files and the directories are all read by now, we're
441 * done */
442 if(!(cn->flags & CN_GETTING_ANY))
443 filled(cn);
cf1f8eef
RK
444 if(!gets_in_flight)
445 redisplay_tree("got_files");
460b9539 446}
447
b9bdafc7 448/** @brief Called with an alias resolved filename */
06bfbba4
RK
449static void got_resolved_file(void *v, const char *error, const char *track) {
450 struct choosenode *const cn = v, *file_cn;
451
452 if(error) {
453 popup_protocol_error(0, error);
454 } else {
455 D(("resolved %s %s %d left", cn->path, cnflags(cn), cn->pending - 1));
456 /* TODO as below */
457 file_cn = newnode(cn, track,
458 trackname_transform("track", track, "display"),
459 trackname_transform("track", track, "sort"),
460 0/*flags*/, 0/*fill*/);
461 --gets_in_flight;
462 /* Only bother updating when we've got the lot */
463 if(--cn->pending == 0) {
464 cn->flags &= ~CN_RESOLVING_FILES;
465 updated_node(cn, gets_in_flight == 0, "got_resolved_file");
466 if(!(cn->flags & CN_GETTING_ANY))
467 filled(cn);
468 }
16e145a5 469 }
460b9539 470}
471
b9bdafc7 472/** @brief Called with a list of directories just below some node */
4190a4d9
RK
473static void got_dirs(void *v, const char *error, int nvec, char **vec) {
474 struct choosenode *cn = v;
460b9539 475 int n;
4190a4d9
RK
476
477 if(error) {
478 popup_protocol_error(0, error);
479 return;
480 }
460b9539 481
734df821 482 D(("got_dirs %d dirs for %s %s", nvec, cn->path, cnflags(cn)));
b9bdafc7
RK
483 /* TODO this depends on local configuration for trackname_transform().
484 * This will work, since the defaults are now built-in, but it'll be
485 * (potentially) different to the server's configured settings.
486 *
487 * Really we want a variant of files/dirs that produces both the
488 * raw filename and the transformed name for a chosen context.
489 */
c3df9503 490 --gets_in_flight;
460b9539 491 for(n = 0; n < nvec; ++n)
492 newnode(cn, vec[n],
493 trackname_transform("dir", vec[n], "display"),
494 trackname_transform("dir", vec[n], "sort"),
495 CN_EXPANDABLE, fill_directory_node);
cf1f8eef 496 updated_node(cn, gets_in_flight == 0, "got_dirs");
16e145a5
RK
497 cn->flags &= ~CN_GETTING_DIRS;
498 if(!(cn->flags & CN_GETTING_ANY))
499 filled(cn);
460b9539 500}
501
b9bdafc7 502/** @brief Fill a child node */
460b9539 503static void fill_directory_node(struct choosenode *cn) {
460b9539 504 D(("fill_directory_node %s", cn->path));
505 /* TODO: caching */
16e145a5
RK
506 if(cn->flags & CN_GETTING_ANY)
507 return;
460b9539 508 assert(report_label != 0);
509 gtk_label_set_text(GTK_LABEL(report_label), "getting files");
1d0c28c7 510 clear_children(cn);
8c348752
RK
511 disorder_eclient_dirs(client, got_dirs, cn->path, 0, cn);
512 disorder_eclient_files(client, got_files, cn->path, 0, cn);
16e145a5 513 cn->flags |= CN_GETTING_FILES|CN_GETTING_DIRS;
c3df9503 514 gets_in_flight += 2;
460b9539 515}
516
b9bdafc7 517/** @brief Expand a node */
6a06a735 518static void expand_node(struct choosenode *cn, int contingent) {
734df821 519 D(("expand_node %s %d %s", cn->path, contingent, cnflags(cn)));
460b9539 520 assert(cn->flags & CN_EXPANDABLE);
521 /* If node is already expanded do nothing. */
522 if(cn->flags & CN_EXPANDED) return;
523 /* We mark the node as expanded and request that it fill itself. When it has
524 * completed it will called updated_node() and we can redraw at that
525 * point. */
526 cn->flags |= CN_EXPANDED;
6a06a735
RK
527 if(contingent)
528 cn->flags |= CN_CONTINGENT;
529 else
530 cn->flags &= ~CN_CONTINGENT;
531 /* If this node is not contingently expanded, mark all its parents back to
532 * the root as not contingent either, so they won't be contracted when the
533 * search results change */
534 if(!contingent) {
535 struct choosenode *cnp;
536
537 for(cnp = cn->parent; cnp; cnp = cnp->parent)
538 cnp->flags &= ~CN_CONTINGENT;
539 }
460b9539 540 /* TODO: visual feedback */
541 cn->fill(cn);
542}
543
6a06a735
RK
544/** @brief Make sure all the search results below @p cn are expanded
545 * @param cn Node to start at
546 */
547static void expand_from(struct choosenode *cn) {
548 int n;
6a06a735
RK
549
550 if(nsearchvisible == nsearchresults)
551 /* We're done */
552 return;
553 /* Are any of the search tracks at/below this point? */
c3df9503
RK
554 if(!(cn == root || hash_find(searchhash, cn->path)))
555 return;
6a06a735
RK
556 D(("expand_from %d/%d visible %s",
557 nsearchvisible, nsearchresults, cn->path));
558 if(cn->flags & CN_EXPANDABLE) {
559 if(cn->flags & CN_EXPANDED)
560 /* This node is marked as expanded already. children.nvec might be 0,
561 * indicating that expansion is still underway. We should get another
562 * callback when it is expanded. */
c3df9503 563 for(n = 0; n < cn->children.nvec && gets_in_flight < 10; ++n)
6a06a735
RK
564 expand_from(cn->children.vec[n]);
565 else {
566 /* This node is not expanded yet */
567 expand_node(cn, 1);
568 }
c3df9503 569 } else {
6a06a735
RK
570 /* This is an actual search result */
571 ++nsearchvisible;
c3df9503 572 progress_window_progress(spw, nsearchvisible, nsearchresults);
fcc8b9f7 573 if(nsearchvisible == nsearchresults) {
73dd383f
RK
574 if(suppress_redisplay) {
575 suppress_redisplay = 0;
576 redisplay_tree("all search results visible");
577 }
fcc8b9f7
RK
578 /* We've got the lot. We make sure the first result is visible. */
579 cn = first_search_result(root);
580 gtk_adjustment_clamp_page(vadjust, cn->ymin, cn->ymax);
581 }
c3df9503 582 }
6a06a735
RK
583}
584
585/** @brief Contract all contingently expanded nodes below @p cn */
586static void contract_contingent(struct choosenode *cn) {
587 int n;
588
589 if(cn->flags & CN_CONTINGENT)
590 contract_node(cn);
591 else
592 for(n = 0; n < cn->children.nvec; ++n)
593 contract_contingent(cn->children.vec[n]);
594}
595
b9bdafc7 596/** @brief Contract a node */
460b9539 597static void contract_node(struct choosenode *cn) {
598 D(("contract_node %s", cn->path));
599 assert(cn->flags & CN_EXPANDABLE);
600 /* If node is already contracted do nothing. */
601 if(!(cn->flags & CN_EXPANDED)) return;
6a06a735 602 cn->flags &= ~(CN_EXPANDED|CN_CONTINGENT);
460b9539 603 /* Clear selection below this node */
604 clear_selection(cn);
e9b70a84 605 /* Zot children. We never used to do this but the result would be that over
606 * time you'd end up with the entire tree pulled into memory. If the server
607 * is over a slow network it will make interactivity slightly worse; if
608 * anyone complains we can make it an option. */
609 clear_children(cn);
460b9539 610 /* We can contract a node immediately. */
73dd383f 611 redisplay_tree("contract_node");
460b9539 612}
613
b9bdafc7 614/** @brief qsort() callback for ordering choosenodes */
460b9539 615static int compare_choosenode(const void *av, const void *bv) {
616 const struct choosenode *const *aa = av, *const *bb = bv;
617 const struct choosenode *a = *aa, *b = *bb;
618
619 return compare_tracks(a->sort, b->sort,
620 a->display, b->display,
621 a->path, b->path);
622}
623
b9bdafc7 624/** @brief Called when an expandable node is updated. */
73dd383f
RK
625static void updated_node(struct choosenode *cn, int redisplay,
626 const char *why) {
460b9539 627 D(("updated_node %s", cn->path));
628 assert(cn->flags & CN_EXPANDABLE);
629 /* It might be that the node has been de-expanded since we requested the
630 * update. In that case we ignore this notification. */
631 if(!(cn->flags & CN_EXPANDED)) return;
632 /* Sort children */
633 qsort(cn->children.vec, cn->children.nvec, sizeof (struct choosenode *),
634 compare_choosenode);
73dd383f
RK
635 if(redisplay) {
636 char whywhy[1024];
637
638 snprintf(whywhy, sizeof whywhy, "updated_node %s", why);
639 redisplay_tree(whywhy);
640 }
460b9539 641}
642
643/* Searching --------------------------------------------------------------- */
644
fcc8b9f7
RK
645/** @brief Return true if @p track is a search result
646 *
647 * In particular the return value is one more than the index of the track
648 * @p searchresults.
649 */
6a06a735 650static int is_search_result(const char *track) {
fcc8b9f7
RK
651 void *r;
652
653 if(searchhash && (r = hash_find(searchhash, track)))
654 return 1 + *(int *)r;
655 else
656 return 0;
657}
658
659/** @brief Return the first search result at or below @p cn */
660static struct choosenode *first_search_result(struct choosenode *cn) {
661 int n;
662 struct choosenode *r;
663
664 if(cn->flags & CN_EXPANDABLE) {
665 for(n = 0; n < cn->children.nvec; ++n)
666 if((r = first_search_result(cn->children.vec[n])))
667 return r;
668 } else if(is_search_result(cn->path))
669 return cn;
670 return 0;
460b9539 671}
672
b9bdafc7
RK
673/** @brief Called with a list of search results
674 *
675 * This is called from eclient with a (possibly empty) list of search results,
460b9539 676 * and also from initiate_seatch with an always empty list to indicate that
677 * we're not searching for anything in particular. */
678static void search_completed(void attribute((unused)) *v,
4190a4d9 679 const char *error,
460b9539 680 int nvec, char **vec) {
460b9539 681 int n;
c3df9503 682 char *s;
460b9539 683
4190a4d9
RK
684 if(error) {
685 popup_protocol_error(0, error);
686 return;
687 }
688
460b9539 689 search_in_flight = 0;
6a06a735
RK
690 /* Contract any choosenodes that were only expanded to show search
691 * results */
73dd383f 692 suppress_redisplay = 1;
6a06a735 693 contract_contingent(root);
73dd383f 694 suppress_redisplay = 0;
460b9539 695 if(search_obsolete) {
696 /* This search has been obsoleted by user input since it started.
697 * Therefore we throw away the result and search again. */
698 search_obsolete = 0;
699 initiate_search();
700 } else {
6a06a735
RK
701 /* Stash the search results */
702 searchresults = vec;
703 nsearchresults = nvec;
460b9539 704 if(nvec) {
6a06a735 705 /* Create a new search hash for fast identification of results */
fcc8b9f7 706 searchhash = hash_new(sizeof(int));
c3df9503 707 for(n = 0; n < nvec; ++n) {
fcc8b9f7
RK
708 int *const ip = xmalloc(sizeof (int *));
709 static const int minus_1 = -1;
710 *ip = n;
c3df9503 711 /* The filename itself lives in the hash */
fcc8b9f7 712 hash_add(searchhash, vec[n], ip, HASH_INSERT_OR_REPLACE);
c3df9503
RK
713 /* So do its ancestor directories */
714 for(s = vec[n] + 1; *s; ++s) {
715 if(*s == '/') {
716 *s = 0;
fcc8b9f7 717 hash_add(searchhash, vec[n], &minus_1, HASH_INSERT_OR_REPLACE);
c3df9503
RK
718 *s = '/';
719 }
720 }
721 }
6a06a735
RK
722 /* We don't yet know that the results are visible */
723 nsearchvisible = 0;
c3df9503
RK
724 if(spw) {
725 progress_window_progress(spw, 0, 0);
726 spw = 0;
727 }
728 if(nsearchresults > 50)
729 spw = progress_window_new("Fetching search results");
6a06a735
RK
730 /* Initiate expansion */
731 expand_from(root);
fcc8b9f7
RK
732 /* The search results buttons are usable */
733 gtk_widget_set_sensitive(nextsearch, 1);
734 gtk_widget_set_sensitive(prevsearch, 1);
73dd383f 735 suppress_redisplay = 1; /* avoid lots of redisplays */
6a06a735
RK
736 } else {
737 searchhash = 0; /* for the gc */
73dd383f 738 redisplay_tree("no search results"); /* remove search markers */
fcc8b9f7
RK
739 /* The search results buttons are not usable */
740 gtk_widget_set_sensitive(nextsearch, 0);
741 gtk_widget_set_sensitive(prevsearch, 0);
460b9539 742 }
743 }
744}
745
b9bdafc7
RK
746/** @brief Initiate a search
747 *
748 * If a search is underway we set @ref search_obsolete and restart the search
749 * in search_completed() above.
750 */
460b9539 751static void initiate_search(void) {
752 char *terms, *e;
753
754 /* Find out what the user is after */
755 terms = xstrdup(gtk_entry_get_text(GTK_ENTRY(searchentry)));
756 /* Strip leading and trailing space */
757 while(*terms == ' ') ++terms;
758 e = terms + strlen(terms);
759 while(e > terms && e[-1] == ' ') --e;
760 *e = 0;
761 /* If a search is already underway then mark it as obsolete. We'll revisit
762 * when it returns. */
763 if(search_in_flight) {
764 search_obsolete = 1;
765 return;
766 }
767 if(*terms) {
768 /* There's still something left. Initiate the search. */
769 if(disorder_eclient_search(client, search_completed, terms, 0)) {
770 /* The search terms are bad! We treat this as if there were no search
771 * terms at all. Some kind of feedback would be handy. */
772 fprintf(stderr, "bad terms [%s]\n", terms); /* TODO */
4190a4d9 773 search_completed(0, 0, 0, 0);
460b9539 774 } else {
775 search_in_flight = 1;
776 }
777 } else {
778 /* No search terms - we want to see all tracks */
4190a4d9 779 search_completed(0, 0, 0, 0);
460b9539 780 }
781}
782
b9bdafc7 783/** @brief Called when the cancel search button is clicked */
460b9539 784static void clearsearch_clicked(GtkButton attribute((unused)) *button,
785 gpointer attribute((unused)) userdata) {
786 gtk_entry_set_text(GTK_ENTRY(searchentry), "");
787}
788
fcc8b9f7
RK
789/** @brief Called when the 'next search result' button is clicked */
790static void next_clicked(GtkButton attribute((unused)) *button,
791 gpointer attribute((unused)) userdata) {
792 /* We want to find the highest (lowest ymax) track that is below the current
793 * visible range */
794 int n;
795 const gdouble bottom = gtk_adjustment_get_value(vadjust) + vadjust->page_size;
796 const struct choosenode *candidate = 0;
797
798 for(n = 0; n < nsearchresults; ++n) {
799 const struct choosenode *const cn = searchnodes[n];
800
801 if(cn
802 && cn->ymax > bottom
803 && (candidate == 0
804 || cn->ymax < candidate->ymax))
805 candidate = cn;
806 }
807 if(candidate)
808 gtk_adjustment_clamp_page(vadjust, candidate->ymin, candidate->ymax);
809}
810
811/** @brief Called when the 'previous search result' button is clicked */
812static void prev_clicked(GtkButton attribute((unused)) *button,
813 gpointer attribute((unused)) userdata) {
814 /* We want to find the lowest (greated ymax) track that is above the current
815 * visible range */
816 int n;
817 const gdouble top = gtk_adjustment_get_value(vadjust);
818 const struct choosenode *candidate = 0;
819
820 for(n = 0; n < nsearchresults; ++n) {
821 const struct choosenode *const cn = searchnodes[n];
822
823 if(cn
824 && cn->ymin < top
825 && (candidate == 0
826 || cn->ymax > candidate->ymax))
827 candidate = cn;
828 }
829 if(candidate)
830 gtk_adjustment_clamp_page(vadjust, candidate->ymin, candidate->ymax);
831}
832
460b9539 833/* Display functions ------------------------------------------------------- */
834
b9bdafc7 835/** @brief Delete all the widgets in the tree */
460b9539 836static void delete_widgets(struct choosenode *cn) {
837 int n;
838
e9b70a84 839 delete_cn_widgets(cn);
460b9539 840 for(n = 0; n < cn->children.nvec; ++n)
841 delete_widgets(cn->children.vec[n]);
842 cn->flags &= ~(CN_DISPLAYED|CN_SELECTED);
843 files_selected = 0;
844}
845
b9bdafc7 846/** @brief Update the display */
73dd383f 847static void redisplay_tree(const char *why) {
460b9539 848 struct displaydata d;
849 guint oldwidth, oldheight;
850
73dd383f
RK
851 D(("redisplay_tree %s", why));
852 if(suppress_redisplay) {
853 /*fprintf(stderr, "redisplay_tree %s suppressed\n", why);*/
854 return;
855 }
165086a0
RK
856 if(gets_in_flight) {
857 /*fprintf(stderr, "redisplay_tree %s suppressed (gets_in_flight)\n", why);*/
858 return;
859 }
81cd1894
RK
860 INIT();
861 BEGIN(total);
73dd383f 862 /*fprintf(stderr, "redisplay_tree %s *** NOT SUPPRESSED ***\n", why);*/
460b9539 863 /* We'll count these up empirically each time */
864 files_selected = 0;
865 files_visible = 0;
866 /* Correct the layout and find out how much space it uses */
e1d4a32b 867 MTAG_PUSH("display_tree");
fcc8b9f7
RK
868 searchnodes = nsearchresults ? xcalloc(nsearchresults,
869 sizeof (struct choosenode *)) : 0;
460b9539 870 d = display_tree(root, 0, 0);
e1d4a32b 871 MTAG_POP();
81cd1894
RK
872
873 BEGIN(gtkbits);
460b9539 874 /* We must set the total size or scrolling will not work (it wouldn't be hard
875 * for GtkLayout to figure it out for itself but presumably you're supposed
876 * to be able to have widgets off the edge of the layuot.)
877 *
878 * There is a problem: if we shrink the size then the part of the screen that
879 * is outside the new size but inside the old one is not updated. I think
880 * this is arguably bug in GTK+ but it's easy to force a redraw if this
881 * region is nonempty.
882 */
883 gtk_layout_get_size(GTK_LAYOUT(chooselayout), &oldwidth, &oldheight);
884 if(oldwidth > d.width || oldheight > d.height)
885 gtk_widget_queue_draw(chooselayout);
886 gtk_layout_set_size(GTK_LAYOUT(chooselayout), d.width, d.height);
81cd1894 887 END(gtkbits);
460b9539 888 /* Notify the main menu of any recent changes */
81cd1894 889 BEGIN(menuupdate);
460b9539 890 menu_update(-1);
81cd1894
RK
891 END(menuupdate);
892 END(total);
893 REPORT();
460b9539 894}
895
b9bdafc7 896/** @brief Recursive step for redisplay_tree()
fcc8b9f7
RK
897 * @param cn Node to display
898 * @param x X coordinate for @p cn
899 * @param y Y coordinate for @p cn
b9bdafc7
RK
900 *
901 * Makes sure all displayed widgets from CN down exist and are in their proper
902 * place and return the maximum space used.
903 */
460b9539 904static struct displaydata display_tree(struct choosenode *cn, int x, int y) {
905 int n, aw;
906 GtkRequisition req;
907 struct displaydata d, cd;
908 GdkPixbuf *pb;
fcc8b9f7 909 const int search_result = is_search_result(cn->path);
460b9539 910
911 D(("display_tree %s %d,%d", cn->path, x, y));
912
913 /* An expandable item contains an arrow and a text label. When you press the
914 * button it flips its expand state.
915 *
916 * A non-expandable item has just a text label and no arrow.
917 */
918 if(!cn->container) {
81cd1894 919 BEGIN(new_widgets);
521b8841 920 MTAG_PUSH("make_widgets_1");
460b9539 921 /* Widgets need to be created */
e9b70a84 922 NW(hbox);
460b9539 923 cn->hbox = gtk_hbox_new(FALSE, 1);
924 if(cn->flags & CN_EXPANDABLE) {
e9b70a84 925 NW(arrow);
460b9539 926 cn->arrow = gtk_arrow_new(cn->flags & CN_EXPANDED ? GTK_ARROW_DOWN
927 : GTK_ARROW_RIGHT,
928 GTK_SHADOW_NONE);
929 cn->marker = 0;
930 } else {
931 cn->arrow = 0;
e9b70a84 932 if((pb = find_image("notes.png"))) {
933 NW(image);
460b9539 934 cn->marker = gtk_image_new_from_pixbuf(pb);
e9b70a84 935 }
460b9539 936 }
521b8841 937 MTAG_POP();
938 MTAG_PUSH("make_widgets_2");
e9b70a84 939 NW(label);
460b9539 940 cn->label = gtk_label_new(cn->display);
941 if(cn->arrow)
942 gtk_container_add(GTK_CONTAINER(cn->hbox), cn->arrow);
943 gtk_container_add(GTK_CONTAINER(cn->hbox), cn->label);
944 if(cn->marker)
945 gtk_container_add(GTK_CONTAINER(cn->hbox), cn->marker);
521b8841 946 MTAG_POP();
947 MTAG_PUSH("make_widgets_3");
e9b70a84 948 NW(event_box);
460b9539 949 cn->container = gtk_event_box_new();
950 gtk_container_add(GTK_CONTAINER(cn->container), cn->hbox);
951 g_signal_connect(cn->container, "button-release-event",
952 G_CALLBACK(clicked_choosenode), cn);
953 g_signal_connect(cn->container, "button-press-event",
954 G_CALLBACK(clicked_choosenode), cn);
955 g_object_ref(cn->container);
460b9539 956 /* Show everything by default */
957 gtk_widget_show_all(cn->container);
e1d4a32b 958 MTAG_POP();
81cd1894 959 END(new_widgets);
460b9539 960 }
961 assert(cn->container);
d4ef4132 962 /* Set colors */
81cd1894 963 BEGIN(colors);
33288048
RK
964 if(search_result) {
965 gtk_widget_set_style(cn->container, search_style);
966 gtk_widget_set_style(cn->label, search_style);
967 } else {
968 gtk_widget_set_style(cn->container, layout_style);
969 gtk_widget_set_style(cn->label, layout_style);
970 }
81cd1894 971 END(colors);
460b9539 972 /* Make sure the icon is right */
81cd1894 973 BEGIN(markers);
460b9539 974 if(cn->flags & CN_EXPANDABLE)
975 gtk_arrow_set(GTK_ARROW(cn->arrow),
976 cn->flags & CN_EXPANDED ? GTK_ARROW_DOWN : GTK_ARROW_RIGHT,
977 GTK_SHADOW_NONE);
978 else if(cn->marker)
979 /* Make sure the queued marker is right */
980 /* TODO: doesn't always work */
981 (queued(cn->path) ? gtk_widget_show : gtk_widget_hide)(cn->marker);
81cd1894 982 END(markers);
460b9539 983 /* Put the widget in the right place */
81cd1894 984 BEGIN(location);
460b9539 985 if(cn->flags & CN_DISPLAYED)
986 gtk_layout_move(GTK_LAYOUT(chooselayout), cn->container, x, y);
987 else {
988 gtk_layout_put(GTK_LAYOUT(chooselayout), cn->container, x, y);
989 cn->flags |= CN_DISPLAYED;
521b8841 990 /* Now chooselayout has a ref to the container */
991 g_object_unref(cn->container);
460b9539 992 }
81cd1894 993 END(location);
460b9539 994 /* Set the widget's selection status */
81cd1894 995 BEGIN(selection);
460b9539 996 if(!(cn->flags & CN_EXPANDABLE))
997 display_selection(cn);
81cd1894 998 END(selection);
460b9539 999 /* Find the size used so we can get vertical positioning right. */
1000 gtk_widget_size_request(cn->container, &req);
1001 d.width = x + req.width;
1002 d.height = y + req.height;
7e60b670
RK
1003 cn->ymin = y;
1004 cn->ymax = d.height;
460b9539 1005 if(cn->flags & CN_EXPANDED) {
1006 /* We'll offset children by the size of the arrow whatever it might be. */
1007 assert(cn->arrow);
1008 gtk_widget_size_request(cn->arrow, &req);
1009 aw = req.width;
1010 for(n = 0; n < cn->children.nvec; ++n) {
1011 cd = display_tree(cn->children.vec[n], x + aw, d.height);
1012 if(cd.width > d.width)
1013 d.width = cd.width;
1014 d.height = cd.height;
1015 }
1016 } else {
81cd1894 1017 BEGIN(undisplay);
460b9539 1018 for(n = 0; n < cn->children.nvec; ++n)
1019 undisplay_tree(cn->children.vec[n]);
81cd1894 1020 END(undisplay);
460b9539 1021 }
1022 if(!(cn->flags & CN_EXPANDABLE)) {
1023 ++files_visible;
1024 if(cn->flags & CN_SELECTED)
1025 ++files_selected;
1026 }
fcc8b9f7
RK
1027 /* update the search results array */
1028 if(search_result)
1029 searchnodes[search_result - 1] = cn;
460b9539 1030 /* report back how much space we used */
1031 D(("display_tree %s %d,%d total size %dx%d", cn->path, x, y,
1032 d.width, d.height));
1033 return d;
1034}
1035
b9bdafc7 1036/** @brief Remove widgets for newly hidden nodes */
460b9539 1037static void undisplay_tree(struct choosenode *cn) {
1038 int n;
1039
1040 D(("undisplay_tree %s", cn->path));
1041 /* Remove this widget from the display */
1042 if(cn->flags & CN_DISPLAYED) {
1043 gtk_container_remove(GTK_CONTAINER(chooselayout), cn->container);
1044 cn->flags ^= CN_DISPLAYED;
1045 }
1046 /* Remove children too */
1047 for(n = 0; n < cn->children.nvec; ++n)
1048 undisplay_tree(cn->children.vec[n]);
1049}
1050
1051/* Selection --------------------------------------------------------------- */
1052
b9bdafc7 1053/** @brief Mark the widget @p cn according to its selection state */
460b9539 1054static void display_selection(struct choosenode *cn) {
1055 /* Need foreground and background colors */
1056 gtk_widget_set_state(cn->label, (cn->flags & CN_SELECTED
1057 ? GTK_STATE_SELECTED : GTK_STATE_NORMAL));
1058 gtk_widget_set_state(cn->container, (cn->flags & CN_SELECTED
1059 ? GTK_STATE_SELECTED : GTK_STATE_NORMAL));
1060}
1061
b9bdafc7
RK
1062/** @brief Set the selection state of a widget
1063 *
1064 * Directories can never be selected, we just ignore attempts to do so. */
460b9539 1065static void set_selection(struct choosenode *cn, int selected) {
1066 unsigned f = selected ? CN_SELECTED : 0;
1067
1068 D(("set_selection %d %s", selected, cn->path));
1069 if(!(cn->flags & CN_EXPANDABLE) && (cn->flags & CN_SELECTED) != f) {
1070 cn->flags ^= CN_SELECTED;
1071 /* Maintain selection count */
1072 if(selected)
1073 ++files_selected;
1074 else
1075 --files_selected;
1076 display_selection(cn);
1077 /* Update main menu sensitivity */
1078 menu_update(-1);
1079 }
1080}
1081
b9bdafc7 1082/** @brief Recursively clear all selection bits from CN down */
460b9539 1083static void clear_selection(struct choosenode *cn) {
1084 int n;
1085
1086 set_selection(cn, 0);
1087 for(n = 0; n < cn->children.nvec; ++n)
1088 clear_selection(cn->children.vec[n]);
1089}
1090
1091/* User actions ------------------------------------------------------------ */
1092
53fa91bb
RK
1093/** @brief Called when disorder_eclient_play completes */
1094void play_completed(void attribute((unused)) *v,
1095 const char *error) {
1096 if(error)
1097 popup_protocol_error(0, error);
1098}
1099
b9bdafc7
RK
1100/** @brief Clicked on something
1101 *
1102 * This implements playing, all the modifiers for selection, etc.
1103 */
460b9539 1104static void clicked_choosenode(GtkWidget attribute((unused)) *widget,
1105 GdkEventButton *event,
1106 gpointer user_data) {
1107 struct choosenode *cn = user_data;
1108 int ind, last_ind, n;
1109
1110 D(("clicked_choosenode %s", cn->path));
1111 if(event->type == GDK_BUTTON_RELEASE
1112 && event->button == 1) {
1113 /* Left click */
1114 if(cn->flags & CN_EXPANDABLE) {
1115 /* This is a directory. Flip its expansion status. */
1116 if(cn->flags & CN_EXPANDED)
1117 contract_node(cn);
1118 else
6a06a735 1119 expand_node(cn, 0/*!contingent*/);
460b9539 1120 last_click = 0;
1121 } else {
1122 /* This is a file. Adjust selection status */
1123 /* TODO the basic logic here is essentially the same as that in queue.c.
1124 * Can we share code at all? */
1125 switch(event->state & (GDK_SHIFT_MASK|GDK_CONTROL_MASK)) {
1126 case 0:
1127 clear_selection(root);
1128 set_selection(cn, 1);
1129 last_click = cn;
1130 break;
1131 case GDK_CONTROL_MASK:
1132 set_selection(cn, !(cn->flags & CN_SELECTED));
1133 last_click = cn;
1134 break;
1135 case GDK_SHIFT_MASK:
1136 case GDK_SHIFT_MASK|GDK_CONTROL_MASK:
1137 if(last_click && last_click->parent == cn->parent) {
1138 /* Figure out where the current and last clicks are in the list */
1139 ind = last_ind = -1;
1140 for(n = 0; n < cn->parent->children.nvec; ++n) {
1141 if(cn->parent->children.vec[n] == cn)
1142 ind = n;
1143 if(cn->parent->children.vec[n] == last_click)
1144 last_ind = n;
1145 }
1146 /* Test shouldn't ever fail, but still */
1147 if(ind >= 0 && last_ind >= 0) {
1148 if(!(event->state & GDK_CONTROL_MASK)) {
1149 for(n = 0; n < cn->parent->children.nvec; ++n)
1150 set_selection(cn->parent->children.vec[n], 0);
1151 }
1152 if(ind > last_ind)
1153 for(n = last_ind; n <= ind; ++n)
1154 set_selection(cn->parent->children.vec[n], 1);
1155 else
1156 for(n = ind; n <= last_ind; ++n)
1157 set_selection(cn->parent->children.vec[n], 1);
1158 if(event->state & GDK_CONTROL_MASK)
1159 last_click = cn;
1160 }
1161 }
b9bdafc7
RK
1162 /* TODO trying to select a range that doesn't share a single parent
1163 * currently does not work, but it ought to. */
460b9539 1164 break;
1165 }
1166 }
1167 } else if(event->type == GDK_BUTTON_RELEASE
1168 && event->button == 2) {
1169 /* Middle click - play the pointed track */
1170 if(!(cn->flags & CN_EXPANDABLE)) {
1171 clear_selection(root);
1172 set_selection(cn, 1);
1173 gtk_label_set_text(GTK_LABEL(report_label), "adding track to queue");
53fa91bb 1174 disorder_eclient_play(client, cn->path, play_completed, 0);
460b9539 1175 last_click = 0;
1176 }
1177 } else if(event->type == GDK_BUTTON_PRESS
1178 && event->button == 3) {
16e145a5
RK
1179 struct choose_menuitem *const menuitems =
1180 (cn->flags & CN_EXPANDABLE ? dir_menuitems : track_menuitems);
1181 GtkWidget *const menu =
1182 (cn->flags & CN_EXPANDABLE ? dir_menu : track_menu);
460b9539 1183 /* Right click. Pop up a menu. */
1184 /* If the current file isn't selected, switch the selection to just that.
1185 * (If we're looking at a directory then leave the selection alone.) */
1186 if(!(cn->flags & CN_EXPANDABLE) && !(cn->flags & CN_SELECTED)) {
1187 clear_selection(root);
1188 set_selection(cn, 1);
1189 last_click = cn;
1190 }
1191 /* Set the item sensitivity and callbacks */
16e145a5 1192 for(n = 0; menuitems[n].name; ++n) {
460b9539 1193 if(menuitems[n].handlerid)
1194 g_signal_handler_disconnect(menuitems[n].w,
1195 menuitems[n].handlerid);
1196 gtk_widget_set_sensitive(menuitems[n].w,
1197 menuitems[n].sensitive(cn));
1198 menuitems[n].handlerid = g_signal_connect
1199 (menuitems[n].w, "activate", G_CALLBACK(menuitems[n].activate), cn);
1200 }
d4ef4132 1201 set_tool_colors(menu);
460b9539 1202 /* Pop up the menu */
1203 gtk_widget_show_all(menu);
1204 gtk_menu_popup(GTK_MENU(menu), 0, 0, 0, 0,
1205 event->button, event->time);
1206 }
1207}
1208
b9bdafc7 1209/** @brief Called BY GTK+ to tell us the search entry box has changed */
460b9539 1210static void searchentry_changed(GtkEditable attribute((unused)) *editable,
1211 gpointer attribute((unused)) user_data) {
1212 initiate_search();
1213}
1214
16e145a5 1215/* Track menu items -------------------------------------------------------- */
460b9539 1216
b9bdafc7 1217/** @brief Recursive step for gather_selected() */
460b9539 1218static void recurse_selected(struct choosenode *cn, struct vector *v) {
1219 int n;
1220
1221 if(cn->flags & CN_EXPANDABLE) {
1222 if(cn->flags & CN_EXPANDED)
1223 for(n = 0; n < cn->children.nvec; ++n)
1224 recurse_selected(cn->children.vec[n], v);
1225 } else {
1226 if((cn->flags & CN_SELECTED) && cn->path)
1227 vector_append(v, (char *)cn->path);
1228 }
1229}
1230
b9bdafc7 1231/*** @brief Get a list of all the selected tracks */
16e145a5 1232static const char **gather_selected(int *ntracks) {
460b9539 1233 struct vector v;
1234
1235 vector_init(&v);
1236 recurse_selected(root, &v);
1237 vector_terminate(&v);
1238 if(ntracks) *ntracks = v.nvec;
16e145a5 1239 return (const char **)v.vec;
460b9539 1240}
1241
16e145a5
RK
1242/** @brief Called when the track menu's play option is activated */
1243static void activate_track_play(GtkMenuItem attribute((unused)) *menuitem,
1244 gpointer attribute((unused)) user_data) {
1245 const char **tracks = gather_selected(0);
460b9539 1246 int n;
1247
1248 gtk_label_set_text(GTK_LABEL(report_label), "adding track to queue");
1249 for(n = 0; tracks[n]; ++n)
53fa91bb 1250 disorder_eclient_play(client, tracks[n], play_completed, 0);
460b9539 1251}
1252
b9bdafc7 1253/** @brief Called when the menu's properties option is activated */
16e145a5
RK
1254static void activate_track_properties(GtkMenuItem attribute((unused)) *menuitem,
1255 gpointer attribute((unused)) user_data) {
460b9539 1256 int ntracks;
16e145a5 1257 const char **tracks = gather_selected(&ntracks);
460b9539 1258
1259 properties(ntracks, tracks);
1260}
1261
b9bdafc7 1262/** @brief Determine whether the menu's play option should be sensitive */
16e145a5 1263static gboolean sensitive_track_play(struct choosenode attribute((unused)) *cn) {
8f763f1b
RK
1264 return (!!files_selected
1265 && (disorder_eclient_state(client) & DISORDER_CONNECTED));
460b9539 1266}
1267
b9bdafc7 1268/** @brief Determine whether the menu's properties option should be sensitive */
16e145a5 1269static gboolean sensitive_track_properties(struct choosenode attribute((unused)) *cn) {
8f763f1b 1270 return !!files_selected && (disorder_eclient_state(client) & DISORDER_CONNECTED);
460b9539 1271}
1272
16e145a5
RK
1273/* Directory menu items ---------------------------------------------------- */
1274
1275/** @brief Return the file children of @p cn
1276 *
1277 * The list is terminated by a null pointer.
1278 */
1279static const char **dir_files(struct choosenode *cn, int *nfiles) {
1280 const char **files = xcalloc(cn->children.nvec + 1, sizeof (char *));
1281 int n, m;
1282
1283 for(n = m = 0; n < cn->children.nvec; ++n)
1284 if(!(cn->children.vec[n]->flags & CN_EXPANDABLE))
1285 files[m++] = cn->children.vec[n]->path;
1286 files[m] = 0;
1287 if(nfiles) *nfiles = m;
1288 return files;
1289}
1290
1291static void play_dir(struct choosenode *cn,
1292 void attribute((unused)) *wfu) {
1293 int ntracks, n;
1294 const char **tracks = dir_files(cn, &ntracks);
1295
1296 gtk_label_set_text(GTK_LABEL(report_label), "adding track to queue");
1297 for(n = 0; n < ntracks; ++n)
53fa91bb 1298 disorder_eclient_play(client, tracks[n], play_completed, 0);
16e145a5
RK
1299}
1300
1301static void properties_dir(struct choosenode *cn,
1302 void attribute((unused)) *wfu) {
1303 int ntracks;
1304 const char **tracks = dir_files(cn, &ntracks);
1305
1306 properties(ntracks, tracks);
1307}
1308
1309static void select_dir(struct choosenode *cn,
1310 void attribute((unused)) *wfu) {
1311 int n;
1312
1313 clear_selection(root);
1314 for(n = 0; n < cn->children.nvec; ++n)
1315 set_selection(cn->children.vec[n], 1);
1316}
1317
1318/** @brief Ensure @p cn is expanded and then call @p callback */
1319static void call_with_dir(struct choosenode *cn,
1320 when_filled_callback *whenfilled,
1321 void *wfu) {
1322 if(!(cn->flags & CN_EXPANDABLE))
1323 return; /* something went wrong */
1324 if(cn->flags & CN_EXPANDED)
1325 /* @p cn is already open */
1326 whenfilled(cn, wfu);
1327 else {
1328 /* @p cn is not open, arrange for the callback to go off when it is
1329 * opened */
1330 cn->whenfilled = whenfilled;
1331 cn->wfu = wfu;
6a06a735 1332 expand_node(cn, 0/*not contingnet upon search*/);
16e145a5
RK
1333 }
1334}
1335
1336/** @brief Called when the directory menu's play option is activated */
1337static void activate_dir_play(GtkMenuItem attribute((unused)) *menuitem,
1338 gpointer user_data) {
1339 struct choosenode *const cn = (struct choosenode *)user_data;
1340
1341 call_with_dir(cn, play_dir, 0);
1342}
1343
1344/** @brief Called when the directory menu's properties option is activated */
1345static void activate_dir_properties(GtkMenuItem attribute((unused)) *menuitem,
1346 gpointer user_data) {
1347 struct choosenode *const cn = (struct choosenode *)user_data;
1348
1349 call_with_dir(cn, properties_dir, 0);
1350}
1351
1352/** @brief Called when the directory menu's select option is activated */
1353static void activate_dir_select(GtkMenuItem attribute((unused)) *menuitem,
1354 gpointer user_data) {
1355 struct choosenode *const cn = (struct choosenode *)user_data;
1356
1357 call_with_dir(cn, select_dir, 0);
1358}
1359
1360/** @brief Determine whether the directory menu's play option should be sensitive */
1361static gboolean sensitive_dir_play(struct choosenode attribute((unused)) *cn) {
1362 return !!(disorder_eclient_state(client) & DISORDER_CONNECTED);
1363}
1364
1365/** @brief Determine whether the directory menu's properties option should be sensitive */
1366static gboolean sensitive_dir_properties(struct choosenode attribute((unused)) *cn) {
1367 return !!(disorder_eclient_state(client) & DISORDER_CONNECTED);
1368}
1369
1370/** @brief Determine whether the directory menu's select option should be sensitive */
1371static gboolean sensitive_dir_select(struct choosenode attribute((unused)) *cn) {
1372 return TRUE;
1373}
1374
1375
1376
460b9539 1377/* Main menu plumbing ------------------------------------------------------ */
1378
b9bdafc7 1379/** @brief Determine whether the edit menu's properties option should be sensitive */
460b9539 1380static int choose_properties_sensitive(GtkWidget attribute((unused)) *w) {
8f763f1b 1381 return !!files_selected && (disorder_eclient_state(client) & DISORDER_CONNECTED);
460b9539 1382}
1383
b9bdafc7
RK
1384/** @brief Determine whether the edit menu's select all option should be sensitive
1385 *
1386 * TODO not implemented, see also choose_selectall_activate()
1387 */
460b9539 1388static int choose_selectall_sensitive(GtkWidget attribute((unused)) *w) {
b9bdafc7 1389 return FALSE;
460b9539 1390}
1391
fb009628
RK
1392/** @brief Determine whether the edit menu's select none option should be sensitive
1393 *
1394 * TODO not implemented, see also choose_selectnone_activate()
1395 */
1396static int choose_selectnone_sensitive(GtkWidget attribute((unused)) *w) {
1397 return FALSE;
1398}
1399
b9bdafc7 1400/** @brief Called when the edit menu's properties option is activated */
460b9539 1401static void choose_properties_activate(GtkWidget attribute((unused)) *w) {
16e145a5 1402 activate_track_properties(0, 0);
460b9539 1403}
1404
b9bdafc7
RK
1405/** @brief Called when the edit menu's select all option is activated
1406 *
1407 * TODO not implemented, see choose_selectall_sensitive() */
460b9539 1408static void choose_selectall_activate(GtkWidget attribute((unused)) *w) {
460b9539 1409}
1410
fb009628
RK
1411/** @brief Called when the edit menu's select none option is activated
1412 *
1413 * TODO not implemented, see choose_selectnone_sensitive() */
1414static void choose_selectnone_activate(GtkWidget attribute((unused)) *w) {
1415}
1416
b9bdafc7 1417/** @brief Main menu callbacks for Choose screen */
460b9539 1418static const struct tabtype tabtype_choose = {
1419 choose_properties_sensitive,
1420 choose_selectall_sensitive,
fb009628 1421 choose_selectnone_sensitive,
460b9539 1422 choose_properties_activate,
1423 choose_selectall_activate,
fb009628 1424 choose_selectnone_activate,
460b9539 1425};
1426
1427/* Public entry points ----------------------------------------------------- */
1428
73f1b9f3
RK
1429/** @brief Called to entirely reset the choose screen */
1430static void choose_reset(void) {
1431 if(root)
1432 undisplay_tree(root);
1433 root = newnode(0/*parent*/, "<root>", "All files", "",
1434 CN_EXPANDABLE, fill_root_node);
1435 expand_node(root, 0); /* will call redisplay_tree */
1436}
1437
b9bdafc7 1438/** @brief Create a track choice widget */
460b9539 1439GtkWidget *choose_widget(void) {
1440 int n;
1441 GtkWidget *scrolled;
1442 GtkWidget *vbox, *hbox, *clearsearch;
1443
1444 /*
1445 * +--vbox-------------------------------------------------------+
1446 * | +-hbox----------------------------------------------------+ |
1447 * | | searchentry | clearsearch | |
1448 * | +---------------------------------------------------------+ |
1449 * | +-scrolled------------------------------------------------+ |
1450 * | | +-chooselayout------------------------------------++--+ | |
1451 * | | | Tree structure is manually layed out in here ||^^| | |
1452 * | | | || | | |
1453 * | | | || | | |
1454 * | | | || | | |
1455 * | | | ||vv| | |
1456 * | | +-------------------------------------------------++--+ | |
1457 * | | +-------------------------------------------------+ | |
1458 * | | |< >| | |
1459 * | | +-------------------------------------------------+ | |
1460 * | +---------------------------------------------------------+ |
1461 * +-------------------------------------------------------------+
1462 */
1463
1464 /* Text entry box for search terms */
e9b70a84 1465 NW(entry);
460b9539 1466 searchentry = gtk_entry_new();
33288048 1467 gtk_widget_set_style(searchentry, tool_style);
460b9539 1468 g_signal_connect(searchentry, "changed", G_CALLBACK(searchentry_changed), 0);
a8c9507f 1469 gtk_tooltips_set_tip(tips, searchentry, "Enter search terms here; search is automatic", "");
460b9539 1470
1471 /* Cancel button to clear the search */
e9b70a84 1472 NW(button);
460b9539 1473 clearsearch = gtk_button_new_from_stock(GTK_STOCK_CANCEL);
33288048 1474 gtk_widget_set_style(clearsearch, tool_style);
460b9539 1475 g_signal_connect(G_OBJECT(clearsearch), "clicked",
1476 G_CALLBACK(clearsearch_clicked), 0);
a8c9507f
RK
1477 gtk_tooltips_set_tip(tips, clearsearch, "Clear search terms", "");
1478
fcc8b9f7
RK
1479 /* Up and down buttons to find previous/next results; initially they are not
1480 * usable as there are no search results. */
1481 prevsearch = iconbutton("up.png", "Previous search result");
1482 g_signal_connect(G_OBJECT(prevsearch), "clicked",
1483 G_CALLBACK(prev_clicked), 0);
33288048 1484 gtk_widget_set_style(prevsearch, tool_style);
fcc8b9f7
RK
1485 gtk_widget_set_sensitive(prevsearch, 0);
1486 nextsearch = iconbutton("down.png", "Next search result");
1487 g_signal_connect(G_OBJECT(nextsearch), "clicked",
1488 G_CALLBACK(next_clicked), 0);
33288048 1489 gtk_widget_set_style(nextsearch, tool_style);
fcc8b9f7
RK
1490 gtk_widget_set_sensitive(nextsearch, 0);
1491
1492 /* hbox packs the search tools button together on a line */
e9b70a84 1493 NW(hbox);
460b9539 1494 hbox = gtk_hbox_new(FALSE/*homogeneous*/, 1/*spacing*/);
1495 gtk_box_pack_start(GTK_BOX(hbox), searchentry,
1496 TRUE/*expand*/, TRUE/*fill*/, 0/*padding*/);
fcc8b9f7
RK
1497 gtk_box_pack_start(GTK_BOX(hbox), prevsearch,
1498 FALSE/*expand*/, FALSE/*fill*/, 0/*padding*/);
1499 gtk_box_pack_start(GTK_BOX(hbox), nextsearch,
1500 FALSE/*expand*/, FALSE/*fill*/, 0/*padding*/);
1501 gtk_box_pack_start(GTK_BOX(hbox), clearsearch,
1502 FALSE/*expand*/, FALSE/*fill*/, 0/*padding*/);
460b9539 1503
1504 /* chooselayout contains the currently visible subset of the track
1505 * namespace */
e9b70a84 1506 NW(layout);
460b9539 1507 chooselayout = gtk_layout_new(0, 0);
33288048 1508 gtk_widget_set_style(chooselayout, layout_style);
73f1b9f3
RK
1509 choose_reset();
1510 register_reset(choose_reset);
16e145a5
RK
1511 /* Create the popup menus */
1512 NW(menu);
1513 track_menu = gtk_menu_new();
1514 g_signal_connect(track_menu, "destroy", G_CALLBACK(gtk_widget_destroyed),
1515 &track_menu);
1516 for(n = 0; track_menuitems[n].name; ++n) {
1517 NW(menu_item);
1518 track_menuitems[n].w =
1519 gtk_menu_item_new_with_label(track_menuitems[n].name);
1520 gtk_menu_attach(GTK_MENU(track_menu), track_menuitems[n].w,
1521 0, 1, n, n + 1);
1522 }
e9b70a84 1523 NW(menu);
16e145a5
RK
1524 dir_menu = gtk_menu_new();
1525 g_signal_connect(dir_menu, "destroy", G_CALLBACK(gtk_widget_destroyed),
1526 &dir_menu);
1527 for(n = 0; dir_menuitems[n].name; ++n) {
e9b70a84 1528 NW(menu_item);
16e145a5
RK
1529 dir_menuitems[n].w =
1530 gtk_menu_item_new_with_label(dir_menuitems[n].name);
1531 gtk_menu_attach(GTK_MENU(dir_menu), dir_menuitems[n].w,
1532 0, 1, n, n + 1);
460b9539 1533 }
1534 /* The layout is scrollable */
d4ef4132 1535 scrolled = scroll_widget(chooselayout);
7e60b670 1536 vadjust = gtk_layout_get_vadjustment(GTK_LAYOUT(chooselayout));
460b9539 1537
1538 /* The scrollable layout and the search hbox go together in a vbox */
e9b70a84 1539 NW(vbox);
460b9539 1540 vbox = gtk_vbox_new(FALSE/*homogenous*/, 1/*spacing*/);
1541 gtk_box_pack_start(GTK_BOX(vbox), hbox,
1542 FALSE/*expand*/, FALSE/*fill*/, 0/*padding*/);
1543 gtk_box_pack_end(GTK_BOX(vbox), scrolled,
1544 TRUE/*expand*/, TRUE/*fill*/, 0/*padding*/);
1545
1546 g_object_set_data(G_OBJECT(vbox), "type", (void *)&tabtype_choose);
1547 return vbox;
1548}
1549
b9bdafc7 1550/** @brief Called when something we care about here might have changed */
460b9539 1551void choose_update(void) {
73dd383f 1552 redisplay_tree("choose_update");
460b9539 1553}
1554
1555/*
1556Local Variables:
1557c-basic-offset:2
1558comment-column:40
1559fill-column:79
1560indent-tabs-mode:nil
1561End:
1562*/