summaryrefslogtreecommitdiff
path: root/plugins/gtkui/ddblistview.h
blob: 2fd1189f84eadb03f151503c2c66a6d4100e6b64 (plain)
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
/*
    DeaDBeeF - ultimate music player for GNU/Linux systems with X11
    Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>

    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, see <http://www.gnu.org/licenses/>.
*/
#ifndef __DDBLISTVIEW_H
#define __DDBLISTVIEW_H

#include <gtk/gtk.h>
#include <stdint.h>
#include <assert.h>
#include "../../deadbeef.h"

// drag and drop targets
enum {
    TARGET_URILIST,
    TARGET_SAMEWIDGET,
};

G_BEGIN_DECLS

#define DDB_TYPE_LISTVIEW (ddb_listview_get_type ())
#define DDB_LISTVIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), DDB_TYPE_LISTVIEW, DdbListview))
#define DDB_LISTVIEW_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST((obj), DDB_TYPE_LISTVIEW, DdbListviewClass))
#define DDB_IS_LISTVIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DDB_TYPE_LISTVIEW))
#define DDB_IS_LISTVIEW_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), DDB_TYPE_LISTVIEW))
#define DDB_LISTVIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), DDB_TYPE_LISTVIEW, DdbListviewClass))

typedef struct _DdbListview DdbListview;
typedef struct _DdbListviewClass DdbListviewClass;

typedef void * DdbListviewIter;
typedef void * DdbListviewColIter;

typedef struct {
    // rows
    int (*count) (void);
    int (*sel_count) (void);

    int (*cursor) (void);
    void (*set_cursor) (int cursor);

    DdbListviewIter (*head) (void);
    DdbListviewIter (*tail) (void);
    DdbListviewIter (*next) (DdbListviewIter);
    DdbListviewIter (*prev) (DdbListviewIter);

    DdbListviewIter (*get_for_idx) (int idx);
    int (*get_idx) (DdbListviewIter);

    void (*ref) (DdbListviewIter);
    void (*unref) (DdbListviewIter);

    int (*is_selected) (DdbListviewIter);
    void (*select) (DdbListviewIter, int sel);

    // drag-n-drop
    void (*drag_n_drop) (DdbListviewIter before, uint32_t *indices, int length);

    // columns
    int (*col_count) (void);
    DdbListviewColIter (*col_first) (void);
    DdbListviewColIter (*col_next) (DdbListviewColIter);
    const char *(*col_get_title) (DdbListviewColIter);
    int (*col_get_width) (DdbListviewColIter);
    int (*col_get_justify) (DdbListviewColIter);
    int (*col_get_sort) (DdbListviewColIter);
    void (*col_move) (DdbListviewColIter which, int inspos);
    void (*col_sort) (DdbListviewColIter);

    void (*col_set_width) (DdbListviewColIter c, int width);
    void (*col_set_sort) (DdbListviewColIter c, int sort);

    // callbacks
    void (*draw_column_data) (GdkDrawable *drawable, DdbListviewIter iter, int idx, DdbListviewColIter column, int x, int y, int width, int height);
    void (*list_context_menu) (DdbListview *listview, DdbListviewIter iter, int idx);
    void (*header_context_menu) (DdbListview *listview, DdbListviewColIter c);
    void (*handle_doubleclick) (DdbListview *listview, DdbListviewIter iter, int idx);
    void (*selection_changed) (DdbListviewIter it, int idx);
    void (*delete_selected) (void);
} DdbListviewBinding;

struct _DdbListview {
    GtkTable parent;

    // interaction with client
    DdbListviewBinding *binding;

    // cached gtk/gdk object pointers
    GtkWidget *list;
    GtkWidget *header;
    GtkWidget *scrollbar;
    GtkWidget *hscrollbar;

    int totalwidth; // width of listview, including invisible (scrollable) part
    GdkPixmap *backbuf;
    GdkPixmap *backbuf_header;
    const char *title; // unique id, used for config writing, etc
//    // parameters
//    int (*get_count)(void); // function pointer to get number of tracks
//    int iterator; // index into next array of DB_playItem_t struct
    int lastpos[2]; // last mouse position (for list widget)
    // current state
    int scrollpos;
    int hscrollpos;
    double clicktime; // for doubleclick detection
    int nvisiblerows;
    int nvisiblefullrows;
    int rowheight;

    int col_movepos;

    int drag_motion_y;

    // scrolling
    int scroll_mode; // 0=select, 1=dragndrop
    int scroll_pointer_y;
    int scroll_direction;
    int scroll_active;
    struct timeval tm_prevscroll;
    float scroll_sleep_time;

    // selection
    int areaselect;
    int areaselect_x;
    int areaselect_y;
    int areaselect_dx;
    int areaselect_dy;
    int dragwait;
    int shift_sel_anchor;

    // header
    int header_dragging;
    int header_sizing;
    int header_dragpt[2];
    float last_header_motion_ev; //is it subject to remove?
    int prev_header_x;
    int header_prepare;

//    gtkpl_column_t *columns;
//    gtkpl_column_t *active_column; // required for column editing
};

struct _DdbListviewClass {
  GtkTableClass parent_class;
};

GtkType ddb_listview_get_type(void);
GtkWidget * ddb_listview_new();

void
ddb_listview_set_binding (DdbListview *listview, DdbListviewBinding *binding);
void
ddb_listview_draw_row (DdbListview *listview, int idx, DdbListviewIter iter);
int
ddb_listview_get_vscroll_pos (DdbListview *listview);
int
ddb_listview_get_hscroll_pos (DdbListview *listview);
DdbListviewIter
ddb_listview_get_iter_from_coord (DdbListview *listview, int x, int y);
int
ddb_listview_handle_keypress (DdbListview *ps, int keyval, int state);

enum {
    DDB_REFRESH_COLUMNS = 1,
    DDB_REFRESH_HSCROLL = 2,
    DDB_REFRESH_VSCROLL = 4,
    DDB_REFRESH_LIST    = 8,
    DDB_EXPOSE_COLUMNS  = 16,
    DDB_EXPOSE_LIST     = 32,
};

void ddb_listview_refresh (DdbListview *listview, uint32_t flags);

G_END_DECLS

#if 0
//extern DdbListview main_playlist;
//extern DdbListview search_playlist;

//#define GTKPL_PROLOGUE \
//    DdbListview *ps = (DdbListview *)gtk_object_get_data (GTK_OBJECT (widget), "ps"); assert (ps); 


extern int rowheight;

// that must be called before gtk_init
void
gtkpl_init (void);

void
gtkpl_free (DdbListview *pl);

void
gtkpl_redraw_pl_row (DdbListview *ps, int row, DdbListviewIter it);

void
gtkpl_redraw_pl_row_novis (DdbListview *ps, int row, DdbListviewIter it);

void
gtkpl_setup_scrollbar (DdbListview *ps);

void
gtkpl_setup_hscrollbar (DdbListview *ps);

void
gtkpl_draw_pl_row_back (DdbListview *ps, int row, DdbListviewIter it);

void
gtkpl_draw_pl_row (DdbListview *ps, int row, DdbListviewIter it);

void
gtkpl_draw_playlist (DdbListview *ps, int x, int y, int w, int h);

void
gtkpl_reconf (DdbListview *ps);

void
gtkpl_expose (DdbListview *ps, int x, int y, int w, int h);

void
gtkpl_mouse1_pressed (DdbListview *ps, int state, int ex, int ey, double time);

void
gtkpl_mouse1_released (DdbListview *ps, int state, int ex, int ey, double time);

void
gtkpl_mousemove (DdbListview *ps, GdkEventMotion *event);

void
gtkpl_scroll (DdbListview *ps, int newscroll);

void
gtkpl_hscroll (DdbListview *ps, int newscroll);

void
gtkpl_handle_scroll_event (DdbListview *ps, int direction);

// returns 1 if keypress was handled, 0 otherwise
int
gtkpl_keypress (DdbListview *ps, int keyval, int state);

void
gtkpl_track_dragdrop (DdbListview *ps, int y);

void
gtkpl_select_single (DdbListview *ps, int sel);

void
gtkpl_header_draw (DdbListview *ps);

void
gtkpl_add_dir (DdbListview *ps, char *folder);

void
gtkpl_add_files (GSList *lst);

//int
//gtkpl_get_idx_of (DdbListview *ps, DdbListviewIter it);
//
//DdbListviewIter 
//gtkpl_get_for_idx (DdbListview *ps, int idx);

//// this functions take value from passed playlist, that's why it's here
//void
//gtkpl_playsong (DdbListview *ps);

void
gtkpl_songchanged (DdbListview *ps, int from, int to);

// these functions operate on global playlist level,
// no need to pass DdbListview ptr to them

void
gtkpl_add_fm_dropped_files (char *ptr, int length, int drop_y);

// these functions should not belong here
void
gtkpl_prevsong (void);

void
gtkpl_nextsong (void);

void
gtkpl_randomsong (void);

void
gtkpl_pausesong (void);

void
gtkpl_playsongnum (int idx);

void
theme_set_fg_color (int col);

void
theme_set_bg_color (int col);

void
theme_set_cairo_source_rgb (cairo_t *cr, int col);

void
playlist_refresh (void);

void
gtkpl_expose_header (DdbListview *ps, int x, int y, int w, int h);

void
set_tray_tooltip (const char *text);

void
gtkpl_songchanged_wrapper (int from, int to);

void
gtkpl_current_track_changed (DdbListviewIter it);

//void
//gtk_pl_redraw_item_everywhere (DdbListviewIter it);

void
gtkpl_set_cursor (DdbListview *pl, int cursor);

void
main_refresh (void);
#endif

#endif // __DDBLISTVIEW_H