chiark / gitweb /
Better visual feedback in users window: the apply button is
[disorder] / disobedience / recent.c
CommitLineData
c133bd3c
RK
1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2006-2008 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 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 */
20#include "disobedience.h"
6982880f 21#include "popup.h"
c133bd3c
RK
22#include "queue-generic.h"
23
24/** @brief Update the recently played list */
25static void recent_completed(void attribute((unused)) *v,
26 const char *error,
27 struct queue_entry *q) {
28 if(error) {
29 popup_protocol_error(0, error);
30 return;
31 }
32 /* The recent list is backwards compared to what we wanted */
33 struct queue_entry *qr = 0, *qn;
34 while(q) {
35 qn = q->next;
36 /* Swap next/prev pointers */
37 q->next = q->prev;
38 q->prev = qn;
39 /* Remember last node for new head */
40 qr = q;
41 /* Next node */
42 q = qn;
43 }
44 /* Update the display */
45 ql_new_queue(&ql_recent, qr);
46 /* Tell anyone who cares */
47 event_raise("recent-list-changed", qr);
48}
49
50/** @brief Schedule an update to the recently played list
51 *
52 * Called whenever a track is added to it or removed from it.
53 */
54static void recent_changed(const char attribute((unused)) *event,
55 void attribute((unused)) *eventdata,
56 void attribute((unused)) *callbackdata) {
57 D(("recent_changed"));
58 gtk_label_set_text(GTK_LABEL(report_label), "updating recently played list");
59 disorder_eclient_recent(client, recent_completed, 0);
60}
61
62/** @brief Called at startup */
63static void recent_init(void) {
64 /* Whenever the recent list changes on the server, re-fetch it */
65 event_register("recent-changed", recent_changed, 0);
66}
67
68/** @brief Columns for the recently-played list */
69static const struct queue_column recent_columns[] = {
b0b15b7c 70 { "When", column_when, 0, COL_RIGHT },
c133bd3c 71 { "Who", column_who, 0, 0 },
b0b15b7c
RK
72 { "Artist", column_namepart, "artist", COL_EXPAND|COL_ELLIPSIZE },
73 { "Album", column_namepart, "album", COL_EXPAND|COL_ELLIPSIZE },
74 { "Title", column_namepart, "title", COL_EXPAND|COL_ELLIPSIZE },
75 { "Length", column_length, 0, COL_RIGHT }
c133bd3c
RK
76};
77
78/** @brief Pop-up menu for recently played list */
6982880f 79static struct menuitem recent_menuitems[] = {
c133bd3c
RK
80 { "Track properties", ql_properties_activate, ql_properties_sensitive,0, 0 },
81 { "Select all tracks", ql_selectall_activate, ql_selectall_sensitive, 0, 0 },
82 { "Deselect all tracks", ql_selectnone_activate, ql_selectnone_sensitive, 0, 0 },
83};
84
85struct queuelike ql_recent = {
ee7552f8 86 .name = "recent",
c133bd3c
RK
87 .init = recent_init,
88 .columns = recent_columns,
89 .ncolumns = sizeof recent_columns / sizeof *recent_columns,
90 .menuitems = recent_menuitems,
91 .nmenuitems = sizeof recent_menuitems / sizeof *recent_menuitems,
92};
93
94GtkWidget *recent_widget(void) {
95 return init_queuelike(&ql_recent);
96}
97
98/*
99Local Variables:
100c-basic-offset:2
101comment-column:40
102fill-column:79
103indent-tabs-mode:nil
104End:
105*/