X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/2271707479533be4bc9ee77e98c615db18621ac3..e7eb3a2744aa45179daea235800753d3d1955338:/disobedience/queue-menu.c diff --git a/disobedience/queue-menu.c b/disobedience/queue-menu.c index a8cd691..7ccee6c 100644 --- a/disobedience/queue-menu.c +++ b/disobedience/queue-menu.c @@ -2,27 +2,27 @@ * This file is part of DisOrder * Copyright (C) 2006-2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * 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 + * the Free Software Foundation, either version 3 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. - * + * 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 + * along with this program. If not, see . */ #include "disobedience.h" +#include "popup.h" #include "queue-generic.h" /* Select All */ -int ql_selectall_sensitive(struct queuelike *ql) { +int ql_selectall_sensitive(void *extra) { + struct queuelike *ql = extra; return !!ql->q; } @@ -35,7 +35,8 @@ void ql_selectall_activate(GtkMenuItem attribute((unused)) *menuitem, /* Select None */ -int ql_selectnone_sensitive(struct queuelike *ql) { +int ql_selectnone_sensitive(void *extra) { + struct queuelike *ql = extra; return gtk_tree_selection_count_selected_rows(ql->selection) > 0; } @@ -48,7 +49,8 @@ void ql_selectnone_activate(GtkMenuItem attribute((unused)) *menuitem, /* Properties */ -int ql_properties_sensitive(struct queuelike *ql) { +int ql_properties_sensitive(void *extra) { + struct queuelike *ql = extra; return gtk_tree_selection_count_selected_rows(ql->selection) > 0; } @@ -71,106 +73,102 @@ void ql_properties_activate(GtkMenuItem attribute((unused)) *menuitem, /* Scratch */ -int ql_scratch_sensitive(struct queuelike attribute((unused)) *ql) { - return !!playing_track; +int ql_scratch_sensitive(void attribute((unused)) *extra) { + return !!(last_state & DISORDER_PLAYING) + && right_scratchable(last_rights, config->username, playing_track); +} + +static void ql_scratch_completed(void attribute((unused)) *v, + const char *err) { + if(err) + popup_protocol_error(0, err); } void ql_scratch_activate(GtkMenuItem attribute((unused)) *menuitem, gpointer attribute((unused)) user_data) { - /* TODO */ + disorder_eclient_scratch_playing(client, ql_scratch_completed, 0); } /* Remove */ -static void remove_sensitive_callback(GtkTreeModel *model, - GtkTreePath attribute((unused)) *path, - GtkTreeIter *iter, - gpointer data) { - struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql"); - struct queue_entry *q = ql_iter_to_q(ql, iter); +static void ql_remove_sensitive_callback(GtkTreeModel *model, + GtkTreePath attribute((unused)) *path, + GtkTreeIter *iter, + gpointer data) { + struct queue_entry *q = ql_iter_to_q(model, iter); const int removable = (q != playing_track && right_removable(last_rights, config->username, q)); int *const counts = data; ++counts[removable]; } -int ql_remove_sensitive(struct queuelike *ql) { +int ql_remove_sensitive(void *extra) { + struct queuelike *ql = extra; int counts[2] = { 0, 0 }; gtk_tree_selection_selected_foreach(ql->selection, - remove_sensitive_callback, + ql_remove_sensitive_callback, counts); /* Remove will work if we have at least some removable tracks selected, and * no unremovable ones */ return counts[1] > 0 && counts[0] == 0; } -static void remove_completed(void attribute((unused)) *v, const char *error) { - if(error) - popup_protocol_error(0, error); +static void ql_remove_completed(void attribute((unused)) *v, + const char *err) { + if(err) + popup_protocol_error(0, err); } -static void remove_activate_callback(GtkTreeModel *model, - GtkTreePath attribute((unused)) *path, - GtkTreeIter *iter, - gpointer attribute((unused)) data) { - struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql"); - struct queue_entry *q = ql_iter_to_q(ql, iter); +static void ql_remove_activate_callback(GtkTreeModel *model, + GtkTreePath attribute((unused)) *path, + GtkTreeIter *iter, + gpointer attribute((unused)) data) { + struct queue_entry *q = ql_iter_to_q(model, iter); - disorder_eclient_remove(client, q->id, remove_completed, q); + if(q != playing_track) + disorder_eclient_remove(client, q->id, ql_remove_completed, q); } void ql_remove_activate(GtkMenuItem attribute((unused)) *menuitem, gpointer user_data) { struct queuelike *ql = user_data; gtk_tree_selection_selected_foreach(ql->selection, - remove_activate_callback, + ql_remove_activate_callback, 0); } /* Play */ -int ql_play_sensitive(struct queuelike *ql) { - return gtk_tree_selection_count_selected_rows(ql->selection) > 0; +int ql_play_sensitive(void *extra) { + struct queuelike *ql = extra; + return (last_rights & RIGHT_PLAY) + && gtk_tree_selection_count_selected_rows(ql->selection) > 0; } -void ql_play_activate(GtkMenuItem attribute((unused)) *menuitem, - gpointer attribute((unused)) user_data) { - /* TODO */ +static void ql_play_completed(void attribute((unused)) *v, const char *err) { + if(err) + popup_protocol_error(0, err); } +static void ql_play_activate_callback(GtkTreeModel *model, + GtkTreePath attribute((unused)) *path, + GtkTreeIter *iter, + gpointer attribute((unused)) data) { + struct queue_entry *q = ql_iter_to_q(model, iter); -/** @brief Create @c ql->menu if it does not already exist */ -static void ql_create_menu(struct queuelike *ql) { - if(ql->menu) - return; - ql->menu = gtk_menu_new(); - g_signal_connect(ql->menu, "destroy", - G_CALLBACK(gtk_widget_destroyed), &ql->menu); - for(int n = 0; n < ql->nmenuitems; ++n) { - ql->menuitems[n].w = gtk_menu_item_new_with_label(ql->menuitems[n].name); - gtk_menu_attach(GTK_MENU(ql->menu), ql->menuitems[n].w, 0, 1, n, n + 1); - } - set_tool_colors(ql->menu); -} - -/** @brief Configure @c ql->menu */ -static void ql_configure_menu(struct queuelike *ql) { - /* Set the sensitivity of each menu item and (re-)establish the signal - * handlers */ - for(int n = 0; n < ql->nmenuitems; ++n) { - if(ql->menuitems[n].handlerid) - g_signal_handler_disconnect(ql->menuitems[n].w, - ql->menuitems[n].handlerid); - gtk_widget_set_sensitive(ql->menuitems[n].w, - ql->menuitems[n].sensitive(ql)); - ql->menuitems[n].handlerid = g_signal_connect - (ql->menuitems[n].w, "activate", - G_CALLBACK(ql->menuitems[n].activate), ql); - } + disorder_eclient_play(client, q->track, ql_play_completed, q); +} + +void ql_play_activate(GtkMenuItem attribute((unused)) *menuitem, + gpointer user_data) { + struct queuelike *ql = user_data; + gtk_tree_selection_selected_foreach(ql->selection, + ql_play_activate_callback, + 0); } /** @brief Called when a button is released over a queuelike */ -gboolean ql_button_release(GtkWidget*widget, +gboolean ql_button_release(GtkWidget *widget, GdkEventButton *event, gpointer user_data) { struct queuelike *ql = user_data; @@ -178,67 +176,29 @@ gboolean ql_button_release(GtkWidget*widget, if(event->type == GDK_BUTTON_PRESS && event->button == 3) { /* Right button click. */ - if(gtk_tree_selection_count_selected_rows(ql->selection) == 0) { - /* Nothing is selected, select whatever is under the pointer */ - GtkTreePath *path; - if(gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget), - event->x, event->y, - &path, - NULL, - NULL, NULL)) - gtk_tree_selection_select_path(ql->selection, path); - } - ql_create_menu(ql); - ql_configure_menu(ql); - gtk_widget_show_all(ql->menu); - gtk_menu_popup(GTK_MENU(ql->menu), 0, 0, 0, 0, - event->button, event->time); + ensure_selected(GTK_TREE_VIEW(widget), event); + popup(&ql->menu, event, ql->menuitems, ql->nmenuitems, ql); return TRUE; /* hide the click from other widgets */ } return FALSE; } -static int ql_tab_selectall_sensitive(void *extra) { - return ql_selectall_sensitive(extra); -} - -static void ql_tab_selectall_activate(void *extra) { - ql_selectall_activate(NULL, extra); -} - -static int ql_tab_selectnone_sensitive(void *extra) { - return ql_selectnone_sensitive(extra); -} - -static void ql_tab_selectnone_activate(void *extra) { - ql_selectnone_activate(NULL, extra); -} - -static int ql_tab_properties_sensitive(void *extra) { - return ql_properties_sensitive(extra); -} - -static void ql_tab_properties_activate(void *extra) { - ql_properties_activate(NULL, extra); -} - struct tabtype *ql_tabtype(struct queuelike *ql) { - static const struct tabtype ql_tabtype = { - ql_tab_properties_sensitive, - ql_tab_selectall_sensitive, - ql_tab_selectnone_sensitive, - ql_tab_properties_activate, - ql_tab_selectall_activate, - ql_tab_selectnone_activate, + static const struct tabtype queuelike_tabtype = { + ql_properties_sensitive, + ql_selectall_sensitive, + ql_selectnone_sensitive, + ql_properties_activate, + ql_selectall_activate, + ql_selectnone_activate, 0, 0 }; - struct tabtype *t = xmalloc(sizeof *t); - *t = ql_tabtype; - t->extra = ql; - return t; + ql->tabtype = queuelike_tabtype; + ql->tabtype.extra = ql; + return &ql->tabtype; } /*