chiark / gitweb /
Switch to GPL v3
[disorder] / disobedience / queue-menu.c
CommitLineData
c133bd3c
RK
1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2006-2008 Richard Kettlewell
4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
c133bd3c 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
c133bd3c
RK
8 * (at your option) any later version.
9 *
e7eb3a27
RK
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
c133bd3c 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
c133bd3c
RK
17 */
18#include "disobedience.h"
6982880f 19#include "popup.h"
c133bd3c
RK
20#include "queue-generic.h"
21
22/* Select All */
23
6982880f
RK
24int ql_selectall_sensitive(void *extra) {
25 struct queuelike *ql = extra;
c133bd3c
RK
26 return !!ql->q;
27}
28
29void ql_selectall_activate(GtkMenuItem attribute((unused)) *menuitem,
30 gpointer user_data) {
31 struct queuelike *ql = user_data;
32
33 gtk_tree_selection_select_all(ql->selection);
34}
35
36/* Select None */
37
6982880f
RK
38int ql_selectnone_sensitive(void *extra) {
39 struct queuelike *ql = extra;
c133bd3c
RK
40 return gtk_tree_selection_count_selected_rows(ql->selection) > 0;
41}
42
43void ql_selectnone_activate(GtkMenuItem attribute((unused)) *menuitem,
44 gpointer user_data) {
45 struct queuelike *ql = user_data;
46
47 gtk_tree_selection_unselect_all(ql->selection);
48}
49
50/* Properties */
51
6982880f
RK
52int ql_properties_sensitive(void *extra) {
53 struct queuelike *ql = extra;
c133bd3c
RK
54 return gtk_tree_selection_count_selected_rows(ql->selection) > 0;
55}
56
57void ql_properties_activate(GtkMenuItem attribute((unused)) *menuitem,
58 gpointer user_data) {
59 struct queuelike *ql = user_data;
60 struct vector v[1];
61 GtkTreeIter iter[1];
62
63 vector_init(v);
64 gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), iter);
65 for(struct queue_entry *q = ql->q; q; q = q->next) {
66 if(gtk_tree_selection_iter_is_selected(ql->selection, iter))
67 vector_append(v, (char *)q->track);
68 gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
69 }
70 if(v->nvec)
71 properties(v->nvec, (const char **)v->vec);
72}
73
74/* Scratch */
75
6982880f 76int ql_scratch_sensitive(void attribute((unused)) *extra) {
c9fb35f4
RK
77 return !!(last_state & DISORDER_PLAYING)
78 && right_scratchable(last_rights, config->username, playing_track);
79}
80
ac56170f 81static void ql_scratch_completed(void attribute((unused)) *v,
abf99697
RK
82 const char *err) {
83 if(err)
84 popup_protocol_error(0, err);
c133bd3c
RK
85}
86
87void ql_scratch_activate(GtkMenuItem attribute((unused)) *menuitem,
88 gpointer attribute((unused)) user_data) {
ac56170f 89 disorder_eclient_scratch_playing(client, ql_scratch_completed, 0);
c133bd3c
RK
90}
91
92/* Remove */
93
ac56170f
RK
94static void ql_remove_sensitive_callback(GtkTreeModel *model,
95 GtkTreePath attribute((unused)) *path,
96 GtkTreeIter *iter,
97 gpointer data) {
83fb99f9 98 struct queue_entry *q = ql_iter_to_q(model, iter);
22717074
RK
99 const int removable = (q != playing_track
100 && right_removable(last_rights, config->username, q));
101 int *const counts = data;
102 ++counts[removable];
103}
104
6982880f
RK
105int ql_remove_sensitive(void *extra) {
106 struct queuelike *ql = extra;
22717074
RK
107 int counts[2] = { 0, 0 };
108 gtk_tree_selection_selected_foreach(ql->selection,
ac56170f 109 ql_remove_sensitive_callback,
22717074
RK
110 counts);
111 /* Remove will work if we have at least some removable tracks selected, and
112 * no unremovable ones */
113 return counts[1] > 0 && counts[0] == 0;
114}
115
ac56170f 116static void ql_remove_completed(void attribute((unused)) *v,
abf99697
RK
117 const char *err) {
118 if(err)
119 popup_protocol_error(0, err);
22717074
RK
120}
121
ac56170f
RK
122static void ql_remove_activate_callback(GtkTreeModel *model,
123 GtkTreePath attribute((unused)) *path,
124 GtkTreeIter *iter,
125 gpointer attribute((unused)) data) {
83fb99f9 126 struct queue_entry *q = ql_iter_to_q(model, iter);
22717074 127
c10dd9af
RK
128 if(q != playing_track)
129 disorder_eclient_remove(client, q->id, ql_remove_completed, q);
c133bd3c
RK
130}
131
132void ql_remove_activate(GtkMenuItem attribute((unused)) *menuitem,
22717074
RK
133 gpointer user_data) {
134 struct queuelike *ql = user_data;
135 gtk_tree_selection_selected_foreach(ql->selection,
ac56170f 136 ql_remove_activate_callback,
22717074 137 0);
c133bd3c
RK
138}
139
140/* Play */
141
6982880f
RK
142int ql_play_sensitive(void *extra) {
143 struct queuelike *ql = extra;
ac56170f
RK
144 return (last_rights & RIGHT_PLAY)
145 && gtk_tree_selection_count_selected_rows(ql->selection) > 0;
c133bd3c
RK
146}
147
abf99697
RK
148static void ql_play_completed(void attribute((unused)) *v, const char *err) {
149 if(err)
150 popup_protocol_error(0, err);
c133bd3c
RK
151}
152
ac56170f
RK
153static void ql_play_activate_callback(GtkTreeModel *model,
154 GtkTreePath attribute((unused)) *path,
155 GtkTreeIter *iter,
156 gpointer attribute((unused)) data) {
83fb99f9 157 struct queue_entry *q = ql_iter_to_q(model, iter);
ac56170f
RK
158
159 disorder_eclient_play(client, q->track, ql_play_completed, q);
160}
161
162void ql_play_activate(GtkMenuItem attribute((unused)) *menuitem,
163 gpointer user_data) {
164 struct queuelike *ql = user_data;
165 gtk_tree_selection_selected_foreach(ql->selection,
166 ql_play_activate_callback,
167 0);
168}
c133bd3c 169
c133bd3c 170/** @brief Called when a button is released over a queuelike */
6982880f 171gboolean ql_button_release(GtkWidget *widget,
c133bd3c
RK
172 GdkEventButton *event,
173 gpointer user_data) {
174 struct queuelike *ql = user_data;
175
176 if(event->type == GDK_BUTTON_PRESS
177 && event->button == 3) {
be909398 178 /* Right button click. */
6982880f
RK
179 ensure_selected(GTK_TREE_VIEW(widget), event);
180 popup(&ql->menu, event, ql->menuitems, ql->nmenuitems, ql);
c133bd3c
RK
181 return TRUE; /* hide the click from other widgets */
182 }
183
184 return FALSE;
185}
186
ee7552f8 187struct tabtype *ql_tabtype(struct queuelike *ql) {
abf99697 188 static const struct tabtype queuelike_tabtype = {
6982880f
RK
189 ql_properties_sensitive,
190 ql_selectall_sensitive,
191 ql_selectnone_sensitive,
192 ql_properties_activate,
193 ql_selectall_activate,
194 ql_selectnone_activate,
ee7552f8
RK
195 0,
196 0
197 };
198
abf99697 199 ql->tabtype = queuelike_tabtype;
54156c62
RK
200 ql->tabtype.extra = ql;
201 return &ql->tabtype;
ee7552f8
RK
202}
203
c133bd3c
RK
204/*
205Local Variables:
206c-basic-offset:2
207comment-column:40
208fill-column:79
209indent-tabs-mode:nil
210End:
211*/