chiark / gitweb /
Set Disobedience login default in a way that doesn't override
[disorder] / disobedience / queue-generic.h
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#ifndef QUEUE_GENERIC_H
21#define QUEUE_GENERIC_H
22
23/** @brief Definition of a column */
24struct queue_column {
25 /** @brief Column name */
26 const char *name;
27
28 /** @brief Compute value for this column */
29 const char *(*value)(const struct queue_entry *q,
30 const char *data);
31
32 /** @brief Passed to value() */
33 const char *data;
34
b0b15b7c
RK
35 /** @brief Flags word */
36 unsigned flags;
c133bd3c
RK
37};
38
b0b15b7c
RK
39/** @brief Ellipsize column if too wide */
40#define COL_ELLIPSIZE 0x0001
41
42/** @brief Set expand property */
43#define COL_EXPAND 0x0002
44
45/** @brief Right-algin column */
46#define COL_RIGHT 0x0004
47
c133bd3c
RK
48/** @brief Definition of a queue-like window */
49struct queuelike {
50
51 /* Things filled in by the caller: */
52
ee7552f8
RK
53 /** @brief Name for this tab */
54 const char *name;
55
c133bd3c
RK
56 /** @brief Initialization function */
57 void (*init)(void);
58
59 /** @brief Columns */
60 const struct queue_column *columns;
61
62 /** @brief Number of columns in this queuelike */
63 int ncolumns;
64
65 /** @brief Items for popup menu */
6982880f 66 struct menuitem *menuitems;
c133bd3c
RK
67
68 /** @brief Number of menu items */
69 int nmenuitems;
70
71 /* Dynamic state: */
72
73 /** @brief The head of the queue */
74 struct queue_entry *q;
75
76 /* Things created by the implementation: */
77
78 /** @brief The list store */
79 GtkListStore *store;
80
81 /** @brief The tree view */
82 GtkWidget *view;
83
84 /** @brief The selection */
85 GtkTreeSelection *selection;
86
87 /** @brief The popup menu */
88 GtkWidget *menu;
54156c62
RK
89
90 /** @brief Menu callbacks */
91 struct tabtype tabtype;
c133bd3c
RK
92};
93
0fb5e8f3
RK
94enum {
95 QUEUEPOINTER_COLUMN,
96 FOREGROUND_COLUMN,
97 BACKGROUND_COLUMN,
98
99 EXTRA_COLUMNS
100};
101
102/* TODO probably need to set "horizontal-separator" to 0, but can't find any
103 * coherent description of how to set style properties in isolation. */
104#define BG_PLAYING 0
105#define FG_PLAYING 0
106
107#ifndef BG_PLAYING
108# define BG_PLAYING "#e0ffe0"
109# define FG_PLAYING "black"
110#endif
111
c133bd3c
RK
112extern struct queuelike ql_queue;
113extern struct queuelike ql_recent;
114extern struct queuelike ql_added;
115
116extern time_t last_playing;
117
6982880f 118int ql_selectall_sensitive(void *extra);
c133bd3c
RK
119void ql_selectall_activate(GtkMenuItem *menuitem,
120 gpointer user_data);
6982880f 121int ql_selectnone_sensitive(void *extra);
c133bd3c
RK
122void ql_selectnone_activate(GtkMenuItem *menuitem,
123 gpointer user_data);
6982880f 124int ql_properties_sensitive(void *extra);
c133bd3c
RK
125void ql_properties_activate(GtkMenuItem *menuitem,
126 gpointer user_data);
6982880f 127int ql_scratch_sensitive(void *extra);
c133bd3c
RK
128void ql_scratch_activate(GtkMenuItem *menuitem,
129 gpointer user_data);
6982880f 130int ql_remove_sensitive(void *extra);
c133bd3c
RK
131void ql_remove_activate(GtkMenuItem *menuitem,
132 gpointer user_data);
6982880f 133int ql_play_sensitive(void *extra);
c133bd3c
RK
134void ql_play_activate(GtkMenuItem *menuitem,
135 gpointer user_data);
136gboolean ql_button_release(GtkWidget *widget,
137 GdkEventButton *event,
138 gpointer user_data);
139GtkWidget *init_queuelike(struct queuelike *ql);
140void ql_update_list_store(struct queuelike *ql) ;
141void ql_update_row(struct queue_entry *q,
142 GtkTreeIter *iter);
143void ql_new_queue(struct queuelike *ql,
144 struct queue_entry *newq);
145const char *column_when(const struct queue_entry *q,
146 const char *data);
147const char *column_who(const struct queue_entry *q,
148 const char *data);
149const char *column_namepart(const struct queue_entry *q,
150 const char *data);
151const char *column_length(const struct queue_entry *q,
152 const char *data);
ee7552f8 153struct tabtype *ql_tabtype(struct queuelike *ql);
83fb99f9 154struct queue_entry *ql_iter_to_q(GtkTreeModel *model,
22717074 155 GtkTreeIter *iter);
c133bd3c
RK
156
157#endif /* QUEUE_GENERIC_H */
158
159/*
160Local Variables:
161c-basic-offset:2
162comment-column:40
163fill-column:79
164indent-tabs-mode:nil
165End:
166*/