File: gui-callbacks.c

package info (click to toggle)
glurp 0.11.6-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 892 kB
  • ctags: 511
  • sloc: ansic: 4,781; sh: 664; makefile: 41
file content (1339 lines) | stat: -rw-r--r-- 36,298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
/*
    Glurp - A GTK+ client for Music Player Daemon
    Copyright (C) 2004, 2005 Andrej Kacian

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    http://musicpd.org/glurp.shtml

*/

#include <glib.h>
#include <gtk/gtk.h>
#include <glade/glade.h>
#include <stdlib.h>

#include "structs.h"
#include "support.h"
#include "comm.h"
#include "gui.h"
#include "player.h"
#include "conf.h"

extern GladeXML *guixml, *configxml, *plxml, *addxml, *streamxml;
extern GlurpState *glurp;

void on_ui_quit(GtkWidget *widget, gpointer user_data) {

  debug("Quitting Glurp...");

  if( glurp->conn ) glurp_disconnect();

  config_save();

  gtk_main_quit();
}

gboolean on_window_moved(GtkWidget *widget, GdkEventConfigure *event, gpointer data) {
  debug("Storing window position and size (%dx%d+%d+%d)", event->width, event->height, event->x, event->y);

  glurp->config->pos_x = event->x;
  glurp->config->pos_y = event->y;

  glurp->config->width = event->width;
  glurp->config->height = event->height;

  return FALSE;
}

/* called when config button is pressed in main window */
gboolean on_ui_press_config(GtkWidget *widget, gpointer user_data) {
  GtkWidget *window_config;
  
  if(configxml) {
    debug("Config window already shown, returning");
    return FALSE;
  }

  debug("Displaying config window...");

  configxml = glade_xml_new(glade_path(), "glurp_window_config", NULL);
  glade_xml_signal_autoconnect(configxml);

  populate_config();

  window_config = glade_xml_get_widget(configxml, "glurp_window_config");

  title_print(window_config, "Config");

  gtk_widget_show(window_config);

  return FALSE;
}

gboolean on_button_config_cancel_clicked(GtkWidget *widget, gpointer user_data) {
  GtkWidget *window_config = glade_xml_get_widget(configxml, "glurp_window_config");
  
  debug("Cancel pressed, destroying config window...");
  gtk_widget_destroy(window_config);

  return FALSE;
}

gboolean on_config_destroy(GtkWidget *widget, gpointer user_data) {
  debug("freeing configxml");
  configxml = NULL;

  gui_refresh_playlist_columns();

  return FALSE;
}

gboolean on_button_config_ok_clicked(GtkWidget *widget, gpointer user_data) {
  GtkWidget *window_config;
  
  debug("OK pressed, hiding config window...");

  debug("Storing variables into GlurpConfig");
  store_config();

  config_save();

  window_config = glade_xml_get_widget(configxml, "glurp_window_config");
  gtk_widget_destroy(window_config);

  statusbar_print("Config saved...");

  return FALSE;
}

gboolean on_ui_press_connect(GtkWidget *widget, gpointer user_data) {
  glurp_connect();
  return FALSE;
}

gboolean on_ui_press_disconnect(GtkWidget *widget, gpointer user_data) {
  glurp_disconnect();
  return FALSE;
}

gboolean on_ui_volume_changed(GtkWidget *widget, gpointer user_data) {
  gint i = gtk_range_get_value(GTK_RANGE(widget));

  if( glurp->conn ) {
    mpd_sendSetvolCommand(glurp->conn, i);
    mpd_finishCommand(glurp->conn);

    if( check_mpd_error() ) {
      glurp_disconnect();
      return FALSE;
    }

    statusbar_print("Volume: %d%%", i);
  }

  return FALSE;
}

gboolean on_ui_progress_change(GtkWidget *widget, gpointer user_data) {
  mpd_Status *status = NULL;
  double sec, pos, tt;
  gint t_min, t_sec, s_min, s_sec;

  if(!glurp->progress_dragging) return FALSE;

  status = get_status(TRUE);

  tt = status->totalTime;

  t_min = (int)tt/60;
  t_sec = (int)tt%60;

  pos = gtk_range_get_value(GTK_RANGE(widget));

  sec = (pos / 100)*tt;
  s_min = (int)sec/60;
  s_sec = (int)sec%60;

  debug("Seeking to %d seconds", (gint)sec);
  statusbar_print("Seek to %02d:%02d/%02d:%02d", s_min, s_sec, t_min, t_sec);
  mpd_sendSeekCommand(glurp->conn, status->song, sec);
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  debug("setting FALSE");
  glurp->progress_dragging = FALSE;

  return FALSE;
}

gboolean on_ui_progress_change_start(GtkWidget *widget, gpointer user_data) {
  debug("setting TRUE");
  glurp->progress_dragging = TRUE;
  return FALSE;
}

gboolean on_ui_playlist_clicked(GtkWidget *widget, gpointer user_data) {
  if( !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)) )
    hide_gui_playlist();
  else
    show_gui_playlist();

  return FALSE;
}

gboolean on_ui_player_play(GtkWidget *widget, gpointer user_data) {
  mpd_Status *status = get_status(TRUE);
  GtkTreeView *tv;
  GtkTreeModel *tm;
  GtkTreeSelection *sel;
  GtkTreePath *path;
  GtkTreeIter iter;
  gint id, pos, num;
  GList *selected_rows;

  if(!status) {
    debug("status == NULL");
    return FALSE;
  }

  if(!glurp->playlist) {
    debug("Nothing loaded in playlist, cannot play");
    statusbar_print("Playlist empty");
    return FALSE;
  }

  if( status->state == MPD_STATUS_STATE_PAUSE ) player_pause();
  else {
    tv = GTK_TREE_VIEW(glade_xml_get_widget(guixml, "treeview_playlist"));
    tm = gtk_tree_view_get_model(tv);

    sel = gtk_tree_view_get_selection(tv);

    if( !(num = gtk_tree_selection_count_selected_rows(sel)) ) {
      debug("No song selected, letting MPD decide which song to play");
      if( !STOPPED ) player_stop();
      player_play_song(-1);
      return FALSE;
    }

    if( !(selected_rows = gtk_tree_selection_get_selected_rows(sel, &tm)) ) {
      debug("Couldn't get selected rows");
      return FALSE;
    }

    path = (GtkTreePath *)g_list_nth_data(selected_rows, 0);

    if ( !gtk_tree_model_get_iter(tm, &iter, path) ) {
      debug("Couldn't get GtkTreeIter, what now?");
      return FALSE;
    }

    debug("Getting trackno. of selected song");
    gtk_tree_model_get(tm, &iter, PL_ID, &id, PL_TRACK, &pos, -1);
    debug("Song number is %d, id %d", pos, id);

    if( num > 1 ) gui_playlist_set_cursor(pos - 1);

    if( !STOPPED ) player_stop();
    player_play_song(id);
  }

  return FALSE;
}

gboolean on_ui_player_pause(GtkWidget *widget, gpointer user_data) {
  player_pause();

  return FALSE;
}

gboolean on_ui_player_stop(GtkWidget *widget, gpointer user_data) {
  player_stop();

  return FALSE;
}

gboolean on_ui_player_prev(GtkWidget *widget, gpointer user_data) {
  player_prev();

  return FALSE;
}

gboolean on_ui_player_next(GtkWidget *widget, gpointer user_data) {
  player_next();

  return FALSE;
}

gboolean on_ui_time_clicked(GtkWidget *widget, gpointer user_data) {
  if(glurp->config->time_display_left) glurp->config->time_display_left = FALSE;
  else glurp->config->time_display_left = TRUE;

  gtk_widget_grab_focus(glade_xml_get_widget(guixml, "treeview_playlist"));

  return FALSE;
}

gboolean on_ui_playlist_row_activated(GtkTreeView *treeview, GtkTreePath *tp, GtkTreeViewColumn *col, gpointer user_data) {
  GtkTreeIter act;
  GtkTreeModel *model;
  gint id;

  debug("Playlist item activated.");

  if(!glurp->conn) {
    debug("We're not connected, cannot start playing anything.");
    return FALSE;
  }

  model = gtk_tree_view_get_model(treeview);
  gtk_tree_model_get_iter(model, &act, tp);
  gtk_tree_model_get(model, &act, PL_ID, &id, -1);

  player_stop();
  player_play_song(id);

  return FALSE;
}

gboolean on_ui_playlists_clicked(GtkWidget *widget, gpointer user_data) {
  GtkWidget *window_playlist;

  if(plxml) {
    debug("Playlists window already displayed, returning");
    return FALSE;
  }

  if( !glurp->conn ) {
    debug("we're not connected");
    return FALSE;
  }

  plxml = glade_xml_new(glade_path(), "glurp_window_playlist_list", NULL);
  glade_xml_signal_autoconnect(plxml);

  get_playlist_list();

  create_playlist_list_liststore();

  populate_gui_playlist_list();

  window_playlist = glade_xml_get_widget(plxml, "glurp_window_playlist_list");

  title_print(window_playlist, "Playlists");

  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(glade_xml_get_widget(plxml, "checkbutton_append_playlist")), FALSE);

  gtk_widget_show(window_playlist);

  return FALSE;
}

gboolean on_ui_playlist_close(GtkWidget *widget, gpointer user_data) {
  GtkWidget *w = glade_xml_get_widget(plxml, "glurp_window_playlist_list");

  debug("Destroying playlist list window.");
  gtk_widget_destroy(w);

  return FALSE;
}

gboolean on_window_playlists_destroy(GtkWidget *widget, gpointer user_data) {
  playlists_window_destroyed();
  return FALSE;
}

gboolean on_window_add_destroy(GtkWidget *widget, gpointer user_data) {
  add_window_destroyed();
  return FALSE;
}

gboolean on_ui_playlist_list_row_activated(GtkTreeView *treeview, GtkTreePath *tp, GtkTreeViewColumn *col, gpointer user_data) {
  GtkTreeIter act;
  GtkTreeModel *model;
  gchar *name;

  debug("playlist activated");

  if( !glurp->conn )  {
    debug("we're not connected, how can this be?");
    return FALSE;
  }

  model = gtk_tree_view_get_model(treeview);
  gtk_tree_model_get_iter(model, &act, tp);
  gtk_tree_model_get(model, &act, 0, &name, -1);

  load_playlist(name);
  g_free(name);

  debug("Destroying playlist list window.");
  gtk_widget_destroy(glade_xml_get_widget(plxml, "glurp_window_playlist_list"));

  playlists_window_destroyed();

  return FALSE;
}

gboolean on_ui_playlist_load(GtkWidget *widget, gpointer user_data) {
  GtkTreeView *tv;

  GtkTreeModel *tm;
  GtkTreeSelection *sel;
  GtkTreeIter iter;
  gchar *name;

  if( !glurp->conn ) {
    debug("We're not connected, how can this be? Just closing the window");
    gtk_widget_destroy(glade_xml_get_widget(configxml, "glurp_window_playlist_list"));
    return FALSE;
  }

  tv = GTK_TREE_VIEW(glade_xml_get_widget(plxml, "treeview_playlist_list"));
  tm = gtk_tree_view_get_model(tv);

  sel = gtk_tree_view_get_selection(tv);
  if( !gtk_tree_selection_get_selected(sel, &tm, &iter)) {
    debug("No playlist selected");
    return FALSE;
  }

  debug("getting name of selected playlist");
  gtk_tree_model_get(tm, &iter, 0, &name, -1);

  load_playlist(name);
  g_free(name);

  debug("Destroying playlist list window.");
  gtk_widget_destroy(glade_xml_get_widget(plxml, "glurp_window_playlist_list"));

  playlists_window_destroyed();

  return FALSE;
}

gboolean on_ui_playlist_delete(GtkWidget *widget, gpointer user_data) {
  GtkTreeView *tv;

  GtkTreeModel *tm;
  GtkTreeSelection *sel;
  GtkTreeIter iter;
  gchar *name;

  if( !glurp->conn ) {
    debug("We're not connected, how can this be? Just closing the window");
    gtk_widget_destroy(glade_xml_get_widget(configxml, "glurp_window_playlist_list"));
    return FALSE;
  }

  tv = GTK_TREE_VIEW(glade_xml_get_widget(plxml, "treeview_playlist_list"));
  tm = gtk_tree_view_get_model(tv);

  sel = gtk_tree_view_get_selection(tv);
  if( !gtk_tree_selection_get_selected(sel, &tm, &iter)) {
    debug("No playlist selected");
    return FALSE;
  }

  gtk_tree_model_get(tm, &iter, 0, &name, -1);

  mpd_sendRmCommand(glurp->conn, name);

  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  debug("Playlist '%s' deleted", name);
  g_free(name);
  get_playlist_list();
  populate_gui_playlist_list();


  return FALSE;
}

gboolean on_ui_playlist_save(GtkWidget *widget, gpointer user_data) {
  GtkEntry *entry = GTK_ENTRY(glade_xml_get_widget(plxml, "entry_playlist_name"));
  gchar *name = (gchar *)gtk_entry_get_text(entry);
  GlurpPl *pl;

  if( !glurp->conn ) {
    debug("We're not connected, how can this be? Ignoring");
    return FALSE;
  }

  if( !name || !g_utf8_strlen(name, -1) ) {
    debug("Empty playlist name, ignoring");
    return FALSE;
  }

  for( pl = glurp->playlists; pl; pl = pl->next ) {
    if( !g_ascii_strcasecmp(pl->name, name) ) {
      debug("Not overwriting existing playlist");
      return FALSE;
    }
  }

  mpd_sendSaveCommand(glurp->conn, name);
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  debug("Playlist '%s' saved", name);
  get_playlist_list();
  populate_gui_playlist_list();

  return FALSE;
}

gboolean on_ui_progress_drag(GtkWidget *widget, gpointer user_data) {
  double pos = gtk_range_get_value(GTK_RANGE(widget));
  double sec, tt;
  gint t_min, t_sec, s_min, s_sec;

  if( !glurp->conn || !glurp->current_song ) return FALSE;

  if( !glurp->progress_dragging ) return FALSE;

  tt = glurp->current_song->time;

  t_min = (int)tt/60;
  t_sec = (int)tt%60;

  sec = (pos / 100)*tt;
  s_min = (int)sec/60;
  s_sec = (int)sec%60;

  statusbar_print("Seek to %02d:%02d/%02d:%02d", s_min, s_sec, t_min, t_sec);

  return FALSE;
}

gboolean on_ui_playlist_list_cursor_changed(GtkWidget *widget, gpointer user_data) {
  GtkTreeView *tv;
  GtkTreeModel *tm;
  GtkTreeSelection *sel;
  GtkTreeIter iter;
  gchar *name;

  if( !glurp->conn ) {
    debug("We're not connected, how can this be? Just closing the window");
    gtk_widget_destroy(glade_xml_get_widget(configxml, "glurp_window_playlist_list"));
    return FALSE;
  }

  tv = GTK_TREE_VIEW(glade_xml_get_widget(plxml, "treeview_playlist_list"));
  tm = gtk_tree_view_get_model(tv);

  sel = gtk_tree_view_get_selection(tv);
  if( !gtk_tree_selection_get_selected(sel, &tm, &iter)) {
    debug("No playlist selected");
    return FALSE;
  }

  gtk_tree_model_get(tm, &iter, 0, &name, -1);

  gtk_entry_set_text(GTK_ENTRY(glade_xml_get_widget(plxml, "entry_playlist_name")), name);
  g_free(name);

  return FALSE;
}

gboolean on_ui_qsearch_activate(GtkWidget *widget, gpointer user_data) {
  gchar *srch = (gchar *)gtk_entry_get_text(GTK_ENTRY(widget));
  gchar *sample = NULL;
  gint type = gtk_combo_box_get_active(GTK_COMBO_BOX(glade_xml_get_widget(guixml, "combobox_qsearch_type")));
  gint cpos;
  GtkTreeIter iter, siter;
  GtkTreePath *path;
  gboolean found = FALSE;

  debug("QSearch string: '%s'", srch);

  gtk_tree_view_get_cursor(GTK_TREE_VIEW(glade_xml_get_widget(guixml, "treeview_playlist")), &path, NULL);
  if( path ) {
    cpos = atoi(gtk_tree_path_to_string(path));

    gtk_tree_model_get_iter(GTK_TREE_MODEL(glurp->gui_playlist), &iter, path);
    gtk_tree_model_get_iter(GTK_TREE_MODEL(glurp->gui_playlist), &siter, path);
    gtk_tree_path_free(path);

    if( !gtk_tree_model_iter_next(GTK_TREE_MODEL(glurp->gui_playlist), &iter) ) return FALSE;
  } else {
    cpos = 0;
    if( !gtk_tree_model_get_iter_first(GTK_TREE_MODEL(glurp->gui_playlist), &iter) ) return FALSE;
  }
    
  debug("Cursor position: %d", cpos + 1);

  cpos++;

  do {
    switch(type) {
      case GLURP_QSEARCH_TITLE:
        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_TITLE, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
        }

	break;

      case GLURP_QSEARCH_ARTIST:
        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_ARTIST, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
        }

	break;

      case GLURP_QSEARCH_ALBUM:
        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_ALBUM, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
        }

	break;

      case GLURP_QSEARCH_FILENAME:
        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_FILENAME, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
        }

	break;

      case GLURP_QSEARCH_ALL:
        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_TITLE, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
	  break;
        }

        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_ARTIST, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
	  break;
        }

        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_ALBUM, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
	  break;
        }

        gtk_tree_model_get(GTK_TREE_MODEL(glurp->gui_playlist), &iter, PL_FILENAME, &sample, -1);
        if( sample && srch && g_strrstr(g_ascii_strdown(sample, -1), g_ascii_strdown(srch, -1)) ) {
          debug("Found suitable haystack: '%s'", sample);
          gui_playlist_scroll(cpos);
          found = TRUE;
	  break;
        }

        break;
        
    }

  } while( !found && gtk_tree_model_iter_nth_child(GTK_TREE_MODEL(glurp->gui_playlist), &iter, NULL, ++cpos) );

  return FALSE;
}

gboolean on_menu_add_activate(GtkWidget *widget, gpointer data) {
  return FALSE;
}

gboolean on_menu_pl_remove_all_activate(GtkWidget *widget, gpointer data) {
  if(!CONNECTED) return FALSE;

  mpd_sendClearCommand(glurp->conn);
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  return FALSE;
}

gboolean on_menu_pl_remove_selected_activate(GtkWidget *widget, gpointer data) {
  GtkWidget *tv;
  GtkTreeModel *tm;
  GtkTreeSelection *ts;
  gint num_sel, i, id;
  GtkTreeIter iter;
  GList *selected_rows;

  if(!CONNECTED) return FALSE;

  tv = glade_xml_get_widget(guixml, "treeview_playlist");
  tm = gtk_tree_view_get_model(GTK_TREE_VIEW(tv));
  ts = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv));

  num_sel = gtk_tree_selection_count_selected_rows(ts);
  selected_rows = gtk_tree_selection_get_selected_rows(ts, NULL);

  debug("Selected %d rows", num_sel);

  if( num_sel ) {
    mpd_sendCommandListBegin(glurp->conn);
    for( i=0; i<num_sel; i++ ) {
      gtk_tree_model_get_iter(tm, &iter, (GtkTreePath *)g_list_nth_data(selected_rows, i));
      gtk_tree_model_get(tm, &iter, PL_ID, &id, -1);
      mpd_sendDeleteIdCommand(glurp->conn, id);
    }
    mpd_sendCommandListEnd(glurp->conn);
    mpd_finishCommand(glurp->conn);

    if( check_mpd_error() ) {
      glurp_disconnect();
      return FALSE;
    }

  }

  return FALSE;
}

gboolean on_menu_pl_remove_crop_activate(GtkWidget *widget, gpointer data) {
  GtkWidget *tv;
  GtkTreeModel *tm;
  GtkTreeSelection *ts;
  GtkTreeIter iter;
  gint i = 0;

  if(!CONNECTED) return FALSE;

  tv = glade_xml_get_widget(guixml, "treeview_playlist");
  tm = gtk_tree_view_get_model(GTK_TREE_VIEW(tv));
  ts = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv));

  if( !gtk_tree_model_get_iter_first(tm, &iter) ) {
    debug("Couldn't get first iter, playlist empty?");
    return FALSE;
  }

  mpd_sendCommandListBegin(glurp->conn);

  do {
    if( !gtk_tree_selection_iter_is_selected(ts, &iter) ) mpd_sendDeleteCommand(glurp->conn, i);
    else i++;
  } while( gtk_tree_model_iter_next(tm, &iter) );

  mpd_sendCommandListEnd(glurp->conn);
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  return FALSE;
}

gboolean on_ui_add_close_clicked(GtkWidget *widget, gpointer data) {
  GtkWidget *window_add = glade_xml_get_widget(addxml, "glurp_window_add");

  g_object_ref(G_OBJECT(glurp->gui_addtree));

  debug("Close pressed, destroying 'add' window...");
  gtk_widget_destroy(window_add);

  return FALSE;
}

gboolean on_ui_add_update_clicked(GtkWidget *widget, gpointer data) {

  gtk_tree_store_clear(glurp->gui_addtree);

  debug("Removing 'Add' treeview model");
  gtk_tree_view_set_model(GTK_TREE_VIEW(glade_xml_get_widget(addxml, "treeview_add")), NULL);

  statusbar_print("Updating MPD database, please wait...");
  debug("Starting to update MPD db...");

  if( NONBLOCKING_UPDATE_CAPABLE_MPD ) {
    gui_updating_disable_add_controls();
    glurp->updating_db = TRUE;
  }

  mpd_sendUpdateCommand(glurp->conn, "");
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  if( !NONBLOCKING_UPDATE_CAPABLE_MPD ) {
    statusbar_print("Database updated");
    debug("MPD db updated");
    debug("Setting 'Add' treeview model back");
    gtk_tree_view_set_model(GTK_TREE_VIEW(glade_xml_get_widget(addxml, "treeview_add")), GTK_TREE_MODEL(glurp->gui_addtree));
    populate_gui_add_tree();
  }

  return FALSE;
}

gboolean on_ui_add_add_clicked(GtkWidget *widget, gpointer data) {
  GtkTreeView *tv;
  GtkTreeModel *tm;
  GtkTreeSelection *ts;

  if(!CONNECTED) return FALSE;

  tv = GTK_TREE_VIEW(glade_xml_get_widget(addxml, "treeview_add"));
  tm = gtk_tree_view_get_model(tv);
  if( !(ts = gtk_tree_view_get_selection(tv)) ) {
    debug("No selection, ignoring");
    return FALSE;
  }

  debug("Starting to add songs...");

  gui_load_selected();

  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  debug("Finished adding songs");

  return FALSE;
}

gboolean on_ui_repeat_clicked(GtkWidget *widget, gpointer user_data) {
  if( !CONNECTED ) {
    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), FALSE);
    return FALSE;
  }

  if( !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)) ) {
    statusbar_print("Repeat Off");
    debug("Repeat Off");
    mpd_sendRepeatCommand(glurp->conn, 0);
    mpd_finishCommand(glurp->conn);

    if( check_mpd_error() ) {
      glurp_disconnect();
      return FALSE;
    }

  } else {
    statusbar_print("Repeat On");
    debug("Repeat On");
    mpd_sendRepeatCommand(glurp->conn, 1);
    mpd_finishCommand(glurp->conn);

    if( check_mpd_error() ) {
      glurp_disconnect();
      return FALSE;
    }

  }
  return FALSE;
}

gboolean on_ui_random_clicked(GtkWidget *widget, gpointer user_data) {
  if( !CONNECTED ) {
    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), FALSE);
    return FALSE;
  }

  if( !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)) ) {
    statusbar_print("Random Off");
    debug("Random Off");
    mpd_sendRandomCommand(glurp->conn, 0);
    mpd_finishCommand(glurp->conn);

    if( check_mpd_error() ) {
      glurp_disconnect();
      return FALSE;
    }

  } else {
    statusbar_print("Random On");
    debug("Random On");
    mpd_sendRandomCommand(glurp->conn, 1);
    mpd_finishCommand(glurp->conn);

    if( check_mpd_error() ) {
      glurp_disconnect();
      return FALSE;
    }

  }
  return FALSE;
}

gboolean on_ui_add_row_expanded(GtkTreeView *tv, GtkTreeIter *iter, GtkTreePath *path, gpointer user_data) {
  gui_add_fill_dir(iter, FALSE);

  return FALSE;
}

gboolean on_ui_add_find_clicked( GtkWidget *widget, gpointer data) {
	
  if( !CONNECTED ) {
    debug("Not connected, ignoring.");
    statusbar_print("Not connected, cannot add");
    return FALSE;
  }
  debug("Search started");
  
  populate_gui_add_search_tree();
  
  return TRUE;
  
}

gboolean on_menu_add_file_activate(GtkWidget *widget, gpointer data) {
  GtkWidget *window_add;
  GtkComboBox* combo_type;

  if( !CONNECTED ) {
    debug("Not connected, ignoring.");
    statusbar_print("Not connected, cannot add");
    return FALSE;
  }

  if( addxml ) {
    debug("'Add' window already shown, returning");
    return FALSE;
  }

  debug("Add menu");

  addxml = glade_xml_new(glade_path(), "glurp_window_add", NULL);
  glade_xml_signal_autoconnect(addxml);

  window_add = glade_xml_get_widget(addxml, "glurp_window_add");
  
  combo_type = GTK_COMBO_BOX(glade_xml_get_widget(addxml, "combo_add_find_type"));
  gtk_combo_box_set_active(combo_type, 0);
  
  create_gui_add_tree();

  debug("Populating 'add' treeview...");
  populate_gui_add_tree();

  title_print(window_add, "Add songs to playlist");

  gtk_widget_grab_focus(GTK_WIDGET(glade_xml_get_widget(addxml, "entry_add_find_what")));

  gtk_widget_show(window_add);

  return FALSE;
}

gboolean on_menu_add_url_activate(GtkWidget *widget, gpointer data) {
  GtkWidget *window_stream;

  if( !CONNECTED ) return FALSE;

  print_stream_history();

  if( !STREAM_CAPABLE_MPD ) {
    statusbar_print("Sorry, this MPD cannot playback streams");
    debug("Sorry, this MPD cannot playback streams");
    return FALSE;
  }

  if( streamxml ) {
    debug("Stream window already shown, returning");
    return FALSE;
  }

  streamxml = glade_xml_new(glade_path(), "glurp_window_stream", NULL);
  glade_xml_signal_autoconnect(streamxml);

  create_stream_liststore();

  populate_stream_liststore();

  window_stream = glade_xml_get_widget(streamxml, "glurp_window_stream");

  title_print(window_stream, "Add a stream to playlist");

  gtk_widget_show(window_stream);

  return FALSE;
}

gboolean on_stream_destroy(GtkWidget *widget, gpointer user_data) {
  stream_window_destroyed();
  return FALSE;
}

gboolean on_ui_stream_close_clicked(GtkWidget *widget, gpointer user_data) {
  GtkWidget *window_stream = glade_xml_get_widget(streamxml, "glurp_window_stream");
  
  debug("Close pressed, destroying stream window...");
  gtk_widget_destroy(window_stream);

  return FALSE;
}

gboolean on_ui_stream_add_clicked(GtkWidget *widget, gpointer user_data) {
  GtkWidget *window_stream = glade_xml_get_widget(streamxml, "glurp_window_stream");
  gchar *url = get_selected_stream();

  if( !url || !g_utf8_strlen(url, -1) ) {
    debug("No stream URL to add, ignoring");
    gtk_widget_destroy(window_stream);

    statusbar_print("No URL to add");

    return FALSE;
  }

  debug("Adding URL: '%s'", url);
  mpd_sendAddCommand(glurp->conn, url);
  mpd_finishCommand(glurp->conn);
  if( !check_mpd_error() ) {
    statusbar_print("URL '%s' added", url);
    push_stream(url);
  } else glurp_disconnect();

  gtk_widget_destroy(window_stream);

  return FALSE;
}

gboolean on_ui_playlist_drag_begin(GtkWidget *widget, GdkDragContext *cont, gpointer user_data) {
  debug("DRAG BEGIN");
  return FALSE;
}

gboolean on_ui_playlist_drag_drop(GtkTreeView *tree, GdkDragContext *con, gint x, gint y, guint time, gpointer data) {
  GtkTreePath *path = NULL;
  GtkTreeViewDropPosition pos;
  GtkTreeModel *tm = GTK_TREE_MODEL(glurp->gui_playlist);
  GtkTreeIter iter;
  gint did, sid, dpos, spos;
  gboolean pos_ok = FALSE, first_iter = FALSE;
  GtkTreeSelection *sel;
  GList *selected_rows;

  debug("DRAG DROP");

  if( !gtk_tree_view_get_dest_row_at_pos(tree, x, y, &path, &pos) ) {
    debug("Can't determine destination");
    return TRUE;
  }

  if( !gtk_tree_model_get_iter(tm, &iter, path) ) {
    debug("Can't get iter");
    return TRUE;
  }

  gtk_tree_model_get(tm, &iter, PL_ID, &did, -1);

  if( pos == GTK_TREE_VIEW_DROP_AFTER ) {
    debug("AFTER id:%d", did);
    pos_ok = TRUE;
  }
  if( pos == GTK_TREE_VIEW_DROP_BEFORE ) debug("BEFORE id:%d", did);
  if( pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE ) debug("INTO OR BEFORE id:%d", did);
  if( pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER ) debug("INTO OR AFTER id:%d", did);

  if( !pos_ok ) {
    if( !gtk_tree_path_prev(path) || !gtk_tree_model_get_iter(tm, &iter, path) ) {
      debug("Can't get prev iter, we're at the first one already");
      first_iter = TRUE;
    }
  }

  if( first_iter ) dpos = 0;
  else {
    gtk_tree_model_get(tm, &iter, PL_ID, &did, -1);
    dpos = get_song_pos(get_song_by_id(did));
  }

  sel = gtk_tree_view_get_selection(tree);
  selected_rows = gtk_tree_selection_get_selected_rows(sel, &tm);
  path = (GtkTreePath *)g_list_nth_data(selected_rows, 0);
  gtk_tree_model_get_iter(tm, &iter, path);
  gtk_tree_model_get(tm, &iter, PL_ID, &sid, -1);

  spos = get_song_pos(get_song_by_id(sid));
  if( spos > dpos ) dpos++;

  mpd_sendMoveIdCommand(glurp->conn, sid, dpos);
  mpd_finishCommand(glurp->conn);

  if( !check_mpd_error() ) {
    debug("Move succesful");
    return FALSE;
  } else glurp_disconnect();

  debug("MPD refused song move");
  return FALSE;
}

gboolean on_ui_playlist_button_press(GtkWidget *widget, GdkEventButton *event, gpointer data) {
  GtkTreePath *path = NULL;
  GtkTreeSelection *sel = NULL;
  GtkTreeView *tv = GTK_TREE_VIEW(glade_xml_get_widget(guixml, "treeview_playlist"));

  if( event->button != 3 ) return FALSE;

  if( gtk_tree_view_get_path_at_pos(tv, (gint)event->x, (gint)event->y, &path, NULL, NULL, NULL) ) {
    debug("[%d,%d]", (gint)event->x, (gint)event->y);
    sel = gtk_tree_view_get_selection(tv);
    if( !gtk_tree_selection_path_is_selected(sel, path) ) {
      debug("User clicked on unselected row, selecting ");
      gtk_tree_selection_unselect_all(sel);
      gtk_tree_selection_select_path(sel, path);
    }
  }

  debug("Displaying playlist popup menu");
  gtk_menu_popup(GTK_MENU(glade_xml_get_widget(guixml, "glurp_menu_playlist")), NULL, NULL, NULL, NULL, event->button, event->time);

  return TRUE;
}

gboolean on_pmenu_playlist_play(GtkWidget *widget, gpointer data) {
  debug("POPUP: Playlist -> Play");
  on_ui_player_play(glade_xml_get_widget(guixml, "button_play"), NULL);
  return FALSE;
}

gboolean on_pmenu_playlist_remove_selected(GtkWidget *widget, gpointer data) {
  debug("POPUP: Playlist -> Remove selected");
  on_menu_pl_remove_selected_activate(glade_xml_get_widget(guixml, "button_play"), NULL);
  return FALSE;
}

gboolean on_pmenu_playlist_remove_crop(GtkWidget *widget, gpointer data) {
  debug("POPUP: Playlist -> Remove crop");
  on_menu_pl_remove_crop_activate(glade_xml_get_widget(guixml, "button_play"), NULL);
  return FALSE;
}

gboolean on_pmenu_playlist_remove_all(GtkWidget *widget, gpointer data) {
  debug("POPUP: Playlist -> Remove all");
  on_menu_pl_remove_all_activate(glade_xml_get_widget(guixml, "button_play"), NULL);
  return FALSE;
}

gboolean on_ui_add_button_press(GtkWidget *widget, GdkEventButton *event, gpointer data) {
  GtkTreePath *path = NULL;
  GtkTreeSelection *sel = NULL;
  GtkTreeView *tv = GTK_TREE_VIEW(glade_xml_get_widget(addxml, "treeview_add"));

  if( event->button != 3 ) return FALSE;

  if( gtk_tree_view_get_path_at_pos(tv, (gint)event->x, (gint)event->y, &path, NULL, NULL, NULL) ) {
    debug("[%d,%d]", (gint)event->x, (gint)event->y);
    sel = gtk_tree_view_get_selection(tv);
    if( !gtk_tree_selection_path_is_selected(sel, path) ) {
      debug("User clicked on unselected row, selecting ");
      gtk_tree_selection_unselect_all(sel);
      gtk_tree_selection_select_path(sel, path);
    }
  }

  debug("Displaying add popup menu");
  gtk_menu_popup(GTK_MENU(glade_xml_get_widget(guixml, "glurp_menu_db")), NULL, NULL, NULL, NULL, event->button, event->time);
  return TRUE;
}

gboolean on_pmenu_db_update_selected(GtkWidget *widget, gpointer data) {
  GtkTreeView *tv;
  GtkTreeModel *tm;
  GtkTreeSelection *ts;
  GList *selected_rows;
  GtkTreeIter iter;
  gint i, num = 0;
  gchar *path = NULL;

  debug("POPUP: DB -> Update selected");

  if(!CONNECTED) return FALSE;
  tv = GTK_TREE_VIEW(glade_xml_get_widget(addxml, "treeview_add"));
  tm = gtk_tree_view_get_model(tv);
  if( !((ts = gtk_tree_view_get_selection(tv)) && (num = gtk_tree_selection_count_selected_rows(ts))) ) {
    debug("No selection, ignoring");
    return FALSE;
  }

  selected_rows = gtk_tree_selection_get_selected_rows(ts, NULL);

  debug("Removing 'Add' treeview model");
  gtk_tree_view_set_model(tv, NULL);

  mpd_sendCommandListBegin(glurp->conn);

  if( NONBLOCKING_UPDATE_CAPABLE_MPD ) {
    gui_updating_disable_add_controls();
    glurp->updating_db = TRUE;
  }

  for( i = 0; i < num; i++ ) {
    gtk_tree_model_get_iter(tm, &iter, (GtkTreePath *)g_list_nth_data(selected_rows, i));
    gtk_tree_model_get(tm, &iter, 1, &path, -1);
    mpd_sendUpdateCommand(glurp->conn, path);
    debug("**** Updating '%s'", path);
    g_free(path);
  }

  mpd_sendCommandListEnd(glurp->conn);
  mpd_finishCommand(glurp->conn);

  if( !NONBLOCKING_UPDATE_CAPABLE_MPD ) {
    statusbar_print("Database updated");
    debug("MPD db updated");
    debug("Setting 'Add' treeview model back");
    gtk_tree_view_set_model(tv, GTK_TREE_MODEL(glurp->gui_addtree));
    populate_gui_add_tree();
  }

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  return FALSE;
}

gboolean on_pmenu_db_add_selected(GtkWidget *widget, gpointer data) {
  debug("POPUP: DB -> Add selected");
  on_ui_add_add_clicked(glade_xml_get_widget(addxml, "button_add_add"), NULL);
  return FALSE;
}

gboolean on_pmenu_db_info(GtkWidget *widget, gpointer data) {
  debug("POPUP: DB -> Database information (STUB)");
  return FALSE;
}

gboolean on_pmenu_playlist_shuffle_activate(GtkWidget *widget, gpointer data) {
  if( !CONNECTED ) {
    debug("Not connected");
    return FALSE;
  }

  mpd_sendShuffleCommand(glurp->conn);
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  statusbar_print("Playlist shuffled.");

  return FALSE;
}

gboolean on_togglebutton_pl_add_toggled(GtkWidget *widget, gpointer data) {
  if( !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)) ) return FALSE;

  debug("Add button clicked");
  gtk_menu_popup(GTK_MENU(glade_xml_get_widget(guixml, "glurp_menu_pl_add")), NULL, NULL, NULL, NULL, 1, gtk_get_current_event_time());
  return FALSE;
}

gboolean on_menu_pl_add_deactivate(GtkWidget *widget, gpointer data) {
  debug("Add menu hidden, deactivating togglebutton");
  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(glade_xml_get_widget(guixml, "togglebutton_pl_add")), FALSE);
  return FALSE;
}

gboolean on_togglebutton_pl_remove_toggled(GtkWidget *widget, gpointer data) {
  if( !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)) ) return FALSE;

  debug("Remove button clicked");
  gtk_menu_popup(GTK_MENU(glade_xml_get_widget(guixml, "glurp_menu_pl_remove")), NULL, NULL, NULL, NULL, 1, gtk_get_current_event_time());
  return FALSE;
}

gboolean on_menu_pl_remove_deactivate(GtkWidget *widget, gpointer data) {
  debug("Remove menu hidden, deactivating togglebutton");
  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(glade_xml_get_widget(guixml, "togglebutton_pl_remove")), FALSE);
  return FALSE;
}

gboolean on_outputs_toggled(GtkWidget *widget, gpointer data) {
  GtkMenu *menu = populate_outputs_menu();

  if( !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)) ) return FALSE;

  debug("Outputs button clicked");

  if( !menu ) return FALSE;

  gtk_menu_popup(populate_outputs_menu(), NULL, NULL, NULL, NULL, 1, gtk_get_current_event_time());
  return FALSE;
}

gboolean on_menu_outputs_deactivate(GtkWidget *widget, gpointer data) {
  debug("Outputs menu hidden, deactivating togglebutton");
  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(glade_xml_get_widget(guixml, "togglebutton_outputs")), FALSE);
  return FALSE;
}

gboolean on_menu_output_activate(GtkWidget *widget, gpointer data) {
  gboolean enable = FALSE;
  gint i, d = (gint)data;

  if( d < 0 ) enable = TRUE;
  i = abs(d) - 1;

  debug("%s output %d", (enable ? "Enable" : "Disable"), i);

  statusbar_print("%s output %d", (enable ? "Enabling" : "Disabling"), i);
  if( enable ) mpd_sendEnableOutputCommand(glurp->conn, i);
  else mpd_sendDisableOutputCommand(glurp->conn, i);
  mpd_finishCommand(glurp->conn);

  if( check_mpd_error() ) {
    glurp_disconnect();
    return FALSE;
  }

  return FALSE;
}