Mercurial > audlegacy
annotate audacious/ui_playlist.c @ 2048:7bc2489db782 trunk
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
author | nazca |
---|---|
date | Mon, 04 Dec 2006 01:46:09 -0800 |
parents | e211d52a3626 |
children | 8feb3d69b5be |
rev | line source |
---|---|
1653 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2006 Audacious development team. | |
3 * | |
4 * BMP - Cross-platform multimedia player | |
5 * Copyright (C) 2003-2004 BMP development team. | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
23 */ | |
24 | |
25 #include "ui_playlist.h" | |
26 | |
27 #include <glib.h> | |
28 #include <glib/gi18n.h> | |
29 #include <gdk/gdk.h> | |
30 #include <gdk/gdkkeysyms.h> | |
31 #include <gtk/gtk.h> | |
32 #include <string.h> | |
33 | |
34 #include "platform/smartinclude.h" | |
35 | |
36 #include <unistd.h> | |
37 #include <errno.h> | |
38 | |
39 #include "libaudacious/util.h" | |
40 | |
41 #include "dnd.h" | |
42 #include "dock.h" | |
43 #include "equalizer.h" | |
44 #include "hints.h" | |
45 #include "input.h" | |
46 #include "main.h" | |
47 #include "mainwin.h" | |
48 #include "playback.h" | |
49 #include "playlist.h" | |
50 #include "playlist_container.h" | |
51 #include "util.h" | |
52 | |
53 #include "pixmaps.h" | |
54 #include "images/audacious_playlist.xpm" | |
55 | |
56 | |
57 #define ITEM_SEPARATOR {"/-", NULL, NULL, 0, "<Separator>", NULL} | |
58 | |
59 | |
60 enum { | |
61 ADD_URL, ADD_DIR, ADD_FILES, | |
62 SUB_MISC, SUB_ALL, SUB_CROP, SUB_SELECTED, | |
63 SUB_DUPLICATE_BYTITLE, SUB_DUPLICATE_BYFILENAME, SUB_DUPLICATE_BYPATH, | |
64 SEL_INV, SEL_ZERO, SEL_ALL, | |
65 MISC_SORT, MISC_FILEINFO, MISC_MISCOPTS, | |
66 PLIST_NEW, PLIST_SAVE_AS, PLIST_LOAD, | |
67 SEL_LOOKUP, CLOSE_PL_WINDOW, MOVE_UP, PLIST_SAVE, | |
68 MISC_QUEUE, PLIST_CQUEUE, PLIST_JTF, PLIST_JTT, | |
69 PLAYLISTWIN_REMOVE_DEAD_FILES, | |
70 PLAYLISTWIN_REFRESH, PLIST_DEFAULTSAVE, MISC_FILEPOPUP | |
71 }; | |
72 | |
73 enum { | |
74 PLAYLISTWIN_SORT_BYTITLE, PLAYLISTWIN_SORT_BYFILENAME, | |
75 PLAYLISTWIN_SORT_BYPATH, PLAYLISTWIN_SORT_BYDATE, | |
76 PLAYLISTWIN_SORT_BYARTIST, PLAYLISTWIN_SORT_SEL_BYARTIST, | |
77 PLAYLISTWIN_SORT_SEL_BYTITLE, PLAYLISTWIN_SORT_SEL_BYFILENAME, | |
78 PLAYLISTWIN_SORT_SEL_BYPATH, PLAYLISTWIN_SORT_SEL_BYDATE, | |
79 PLAYLISTWIN_SORT_RANDOMIZE, PLAYLISTWIN_SORT_REVERSE, | |
80 PLAYLISTWIN_SORT_BYTRACK, PLAYLISTWIN_SORT_SEL_BYTRACK, | |
81 PLAYLISTWIN_SORT_BYPLAYLIST, PLAYLISTWIN_SORT_SEL_BYPLAYLIST | |
82 }; | |
83 | |
84 GtkWidget *playlistwin; | |
85 | |
86 PlayList_List *playlistwin_list = NULL; | |
87 PButton *playlistwin_shade, *playlistwin_close; | |
88 | |
89 static gboolean playlistwin_resizing = FALSE; | |
90 | |
91 static GtkItemFactory *playlistwin_popup_menu; | |
92 static GtkItemFactory *pladd_menu, *pldel_menu; | |
93 static GtkItemFactory *plsel_menu, *plsort_menu; | |
94 static GtkItemFactory *pllist_menu; | |
95 | |
96 static GdkPixmap *playlistwin_bg; | |
97 static GdkBitmap *playlistwin_mask = NULL; | |
98 static GdkGC *playlistwin_gc; | |
99 | |
100 static GtkAccelGroup *playlistwin_accel; | |
101 | |
102 static gboolean playlistwin_hint_flag = FALSE; | |
103 | |
104 static PlaylistSlider *playlistwin_slider = NULL; | |
105 static TextBox *playlistwin_time_min, *playlistwin_time_sec; | |
106 static TextBox *playlistwin_info, *playlistwin_sinfo; | |
107 static SButton *playlistwin_srew, *playlistwin_splay; | |
108 static SButton *playlistwin_spause, *playlistwin_sstop; | |
109 static SButton *playlistwin_sfwd, *playlistwin_seject; | |
110 static SButton *playlistwin_sscroll_up, *playlistwin_sscroll_down; | |
111 | |
112 static GList *playlistwin_wlist = NULL; | |
113 | |
114 static void plsort_menu_callback(gpointer cb_data, guint action, | |
115 GtkWidget * w); | |
116 static void playlistwin_sub_menu_callback(gpointer cb_data, guint action, | |
117 GtkWidget * w); | |
118 static void playlistwin_popup_menu_callback(gpointer cb_data, guint action, | |
119 GtkWidget * w); | |
120 | |
121 static GtkItemFactoryEntry playlistwin_popup_menu_entries[] = { | |
122 {N_("/View Track Details"), NULL, | |
123 playlistwin_popup_menu_callback, | |
124 MISC_FILEINFO, "<ImageItem>", my_pixbuf}, | |
125 | |
126 {N_("/Show Popup Info"), NULL, | |
127 playlistwin_popup_menu_callback, | |
128 MISC_FILEPOPUP, "<ToggleItem>", NULL}, | |
129 | |
130 ITEM_SEPARATOR, | |
131 | |
132 {N_("/Remove Selected"), "Delete", | |
133 playlistwin_sub_menu_callback, | |
134 SUB_SELECTED, "<StockItem>", GTK_STOCK_REMOVE}, | |
135 | |
136 {N_("/Remove Unselected"), NULL, | |
137 playlistwin_sub_menu_callback, | |
138 SUB_CROP, "<StockItem>", GTK_STOCK_REMOVE}, | |
139 | |
140 {N_("/Remove All"), NULL, | |
141 playlistwin_sub_menu_callback, | |
142 SUB_ALL, "<StockItem>", GTK_STOCK_CLEAR}, | |
143 | |
144 ITEM_SEPARATOR, | |
145 | |
146 {N_("/Queue Toggle"), "q", | |
147 playlistwin_popup_menu_callback, | |
148 MISC_QUEUE, "<ImageItem>", queuetoggle_pixbuf}, | |
149 }; | |
150 | |
151 static GtkItemFactoryEntry pladd_menu_entries[] = { | |
152 {N_("/Add CD..."), "<shift>c", | |
153 mainwin_general_menu_callback, | |
154 MAINWIN_GENERAL_ADDCD, "<StockItem>", GTK_STOCK_CDROM}, | |
155 | |
156 {N_("/Add Internet Address..."), "<control>h", | |
157 mainwin_general_menu_callback, | |
158 MAINWIN_GENERAL_PLAYLOCATION, "<StockItem>", GTK_STOCK_NETWORK}, | |
159 | |
160 {N_("/Add Files..."), "f", | |
161 mainwin_general_menu_callback, | |
162 MAINWIN_GENERAL_PLAYFILE, "<StockItem>", GTK_STOCK_ADD}, | |
163 }; | |
164 | |
165 static GtkItemFactoryEntry pldel_menu_entries[] = { | |
166 {N_("/Clear Queue"), "<shift>Q", | |
167 playlistwin_popup_menu_callback, | |
168 PLIST_CQUEUE, "<StockItem>", GTK_STOCK_CANCEL}, | |
169 | |
170 ITEM_SEPARATOR, | |
171 | |
172 {N_("/Remove Unavailable Files"), NULL, | |
173 playlistwin_sub_menu_callback, | |
174 PLAYLISTWIN_REMOVE_DEAD_FILES, "<ImageItem>", removeunavail_pixbuf}, | |
175 | |
176 {N_("/Remove Duplicates"), NULL, NULL, 0, "<Branch>", NULL}, | |
177 {N_("/Remove Duplicates/By Title"), NULL, | |
178 playlistwin_sub_menu_callback, | |
179 SUB_DUPLICATE_BYTITLE, "<ImageItem>", removedups_pixbuf}, | |
180 {N_("/Remove Duplicates/By Filename"), NULL, | |
181 playlistwin_sub_menu_callback, | |
182 SUB_DUPLICATE_BYFILENAME, "<ImageItem>", removedups_pixbuf}, | |
183 {N_("/Remove Duplicates/By Path + Filename"), NULL, | |
184 playlistwin_sub_menu_callback, | |
185 SUB_DUPLICATE_BYPATH, "<ImageItem>", removedups_pixbuf}, | |
186 | |
187 ITEM_SEPARATOR, | |
188 | |
189 {N_("/Remove All"), NULL, | |
190 playlistwin_sub_menu_callback, | |
191 SUB_ALL, "<StockItem>", GTK_STOCK_CLEAR}, | |
192 | |
193 {N_("/Remove Unselected"), NULL, | |
194 playlistwin_sub_menu_callback, | |
195 SUB_CROP, "<StockItem>", GTK_STOCK_REMOVE}, | |
196 | |
197 {N_("/Remove Selected"), "Delete", | |
198 playlistwin_sub_menu_callback, | |
199 SUB_SELECTED, "<StockItem>", GTK_STOCK_REMOVE} | |
200 }; | |
201 | |
202 static GtkItemFactoryEntry pllist_menu_entries[] = { | |
203 {N_("/New List"), "<shift>N", | |
204 playlistwin_sub_menu_callback, | |
205 PLIST_NEW, "<StockItem>", GTK_STOCK_NEW}, | |
206 | |
207 ITEM_SEPARATOR, | |
208 | |
209 {N_("/Load List"), "o", | |
210 playlistwin_sub_menu_callback, | |
211 PLIST_LOAD, "<StockItem>", GTK_STOCK_OPEN}, | |
212 | |
213 {N_("/Save List"), "<shift>S", | |
214 playlistwin_sub_menu_callback, | |
215 PLIST_SAVE, "<StockItem>", GTK_STOCK_SAVE}, | |
216 | |
217 {N_("/Save Default List"), "<alt>S", | |
218 playlistwin_sub_menu_callback, | |
219 PLIST_DEFAULTSAVE, "<StockItem>", GTK_STOCK_SAVE}, | |
220 | |
221 ITEM_SEPARATOR, | |
222 | |
223 {N_("/Update View"), "F5", | |
224 playlistwin_sub_menu_callback, | |
225 PLAYLISTWIN_REFRESH, "<StockItem>", GTK_STOCK_REFRESH} | |
226 }; | |
227 | |
228 static GtkItemFactoryEntry plsel_menu_entries[] = { | |
229 {N_("/Invert Selection"), NULL, | |
230 playlistwin_sub_menu_callback, | |
231 SEL_INV, "<ImageItem>", selectinvert_pixbuf}, | |
232 | |
233 ITEM_SEPARATOR, | |
234 | |
235 {N_("/Select None"),"<Ctrl><Shift>A", | |
236 playlistwin_sub_menu_callback, | |
237 SEL_ZERO, "<ImageItem>", selectnone_pixbuf}, | |
238 | |
239 {N_("/Select All"), "<Ctrl>A", | |
240 playlistwin_sub_menu_callback, | |
241 SEL_ALL, "<ImageItem>", selectall_pixbuf}, | |
242 }; | |
243 | |
244 static GtkItemFactoryEntry plsort_menu_entries[] = { | |
1934
886b479afe63
[svn] - assign Control+Shift+R keybinding. to Randomize Playlist. Closes #529
nenolod
parents:
1825
diff
changeset
|
245 {N_("/Randomize List"), "<Ctrl><Shift>R", plsort_menu_callback, |
1653 | 246 PLAYLISTWIN_SORT_RANDOMIZE, "<ImageItem>", randomizepl_pixbuf}, |
247 {N_("/Reverse List"), NULL, plsort_menu_callback, | |
248 PLAYLISTWIN_SORT_REVERSE, "<ImageItem>", invertpl_pixbuf}, | |
249 ITEM_SEPARATOR, | |
250 {N_("/Sort List"), NULL, NULL, 0, "<Branch>", NULL}, | |
251 {N_("/Sort List/By Title"), NULL, plsort_menu_callback, | |
252 PLAYLISTWIN_SORT_BYTITLE, "<ImageItem>", sortbytitle_pixbuf}, | |
253 {N_("/Sort List/By Artist"), NULL, plsort_menu_callback, | |
254 PLAYLISTWIN_SORT_BYARTIST, "<ImageItem>", sortbytitle_pixbuf}, | |
255 {N_("/Sort List/By Filename"), NULL, plsort_menu_callback, | |
256 PLAYLISTWIN_SORT_BYFILENAME, "<ImageItem>", sortbyfilename_pixbuf}, | |
257 {N_("/Sort List/By Path + Filename"), NULL, plsort_menu_callback, | |
258 PLAYLISTWIN_SORT_BYPATH, "<ImageItem>", sortbypathfile_pixbuf}, | |
259 {N_("/Sort List/By Date"), NULL, plsort_menu_callback, | |
260 PLAYLISTWIN_SORT_BYDATE, "<ImageItem>", sortbydate_pixbuf}, | |
261 {N_("/Sort List/By Track Number"), NULL, plsort_menu_callback, | |
262 PLAYLISTWIN_SORT_BYTRACK, "<ImageItem>", sortbytitle_pixbuf}, | |
263 {N_("/Sort List/By Playlist Entry"), NULL, plsort_menu_callback, | |
264 PLAYLISTWIN_SORT_BYPLAYLIST, "<ImageItem>", sortbytitle_pixbuf}, | |
265 {N_("/Sort Selection"), NULL, NULL, 0, "<Branch>", NULL}, | |
266 {N_("/Sort Selection/By Title"), NULL, plsort_menu_callback, | |
267 PLAYLISTWIN_SORT_SEL_BYTITLE, "<ImageItem>", sortbytitle_pixbuf}, | |
268 {N_("/Sort Selection/By Artist"), NULL, plsort_menu_callback, | |
269 PLAYLISTWIN_SORT_SEL_BYARTIST, "<ImageItem>", sortbytitle_pixbuf}, | |
270 {N_("/Sort Selection/By Filename"), NULL, plsort_menu_callback, | |
271 PLAYLISTWIN_SORT_SEL_BYFILENAME, "<ImageItem>", sortbyfilename_pixbuf}, | |
272 {N_("/Sort Selection/By Path + Filename"), NULL, plsort_menu_callback, | |
273 PLAYLISTWIN_SORT_SEL_BYPATH, "<ImageItem>", sortbypathfile_pixbuf}, | |
274 {N_("/Sort Selection/By Date"), NULL, plsort_menu_callback, | |
275 PLAYLISTWIN_SORT_SEL_BYDATE, "<ImageItem>", sortbydate_pixbuf}, | |
276 {N_("/Sort Selection/By Track Number"), NULL, plsort_menu_callback, | |
277 PLAYLISTWIN_SORT_SEL_BYTRACK, "<ImageItem>", sortbytitle_pixbuf}, | |
278 {N_("/Sort Selection/By Playlist Entry"), NULL, plsort_menu_callback, | |
279 PLAYLISTWIN_SORT_SEL_BYPLAYLIST, "<ImageItem>", sortbytitle_pixbuf} | |
280 }; | |
281 | |
282 | |
283 static void playlistwin_draw_frame(void); | |
284 | |
285 | |
286 gboolean | |
287 playlistwin_is_shaded(void) | |
288 { | |
289 return cfg.playlist_shaded; | |
290 } | |
291 | |
292 gint | |
293 playlistwin_get_width(void) | |
294 { | |
295 cfg.playlist_width /= PLAYLISTWIN_WIDTH_SNAP; | |
296 cfg.playlist_width *= PLAYLISTWIN_WIDTH_SNAP; | |
297 return cfg.playlist_width; | |
298 } | |
299 | |
300 gint | |
301 playlistwin_get_height_unshaded(void) | |
302 { | |
303 cfg.playlist_height /= PLAYLISTWIN_HEIGHT_SNAP; | |
304 cfg.playlist_height *= PLAYLISTWIN_HEIGHT_SNAP; | |
305 gint height = cfg.playlist_height; | |
306 return height; | |
307 } | |
308 | |
309 gint | |
310 playlistwin_get_height_shaded(void) | |
311 { | |
312 return PLAYLISTWIN_SHADED_HEIGHT; | |
313 } | |
314 | |
315 gint | |
316 playlistwin_get_height(void) | |
317 { | |
318 if (playlistwin_is_shaded()) | |
319 return playlistwin_get_height_shaded(); | |
320 else | |
321 return playlistwin_get_height_unshaded(); | |
322 } | |
323 | |
324 void | |
325 playlistwin_get_size(gint * width, gint * height) | |
326 { | |
327 if (width) | |
328 *width = playlistwin_get_width(); | |
329 | |
330 if (height) | |
331 *height = playlistwin_get_height(); | |
332 } | |
333 | |
334 static void | |
335 playlistwin_update_info(void) | |
336 { | |
337 gchar *text, *sel_text, *tot_text; | |
338 gulong selection, total; | |
339 gboolean selection_more, total_more; | |
340 | |
341 playlist_get_total_time(&total, &selection, &total_more, &selection_more); | |
342 | |
343 if (selection > 0 || (selection == 0 && !selection_more)) { | |
344 if (selection > 3600) | |
345 sel_text = | |
346 g_strdup_printf("%lu:%-2.2lu:%-2.2lu%s", selection / 3600, | |
347 (selection / 60) % 60, selection % 60, | |
348 (selection_more ? "+" : "")); | |
349 else | |
350 sel_text = | |
351 g_strdup_printf("%lu:%-2.2lu%s", selection / 60, | |
352 selection % 60, (selection_more ? "+" : "")); | |
353 } | |
354 else | |
355 sel_text = g_strdup("?"); | |
356 if (total > 0 || (total == 0 && !total_more)) { | |
357 if (total > 3600) | |
358 tot_text = | |
359 g_strdup_printf("%lu:%-2.2lu:%-2.2lu%s", total / 3600, | |
360 (total / 60) % 60, total % 60, | |
361 total_more ? "+" : ""); | |
362 else | |
363 tot_text = | |
364 g_strdup_printf("%lu:%-2.2lu%s", total / 60, total % 60, | |
365 total_more ? "+" : ""); | |
366 } | |
367 else | |
368 tot_text = g_strdup("?"); | |
369 text = g_strconcat(sel_text, "/", tot_text, NULL); | |
1775 | 370 textbox_set_text(playlistwin_info, text ? text : ""); |
1653 | 371 g_free(text); |
372 g_free(tot_text); | |
373 g_free(sel_text); | |
374 } | |
375 | |
376 static void | |
377 playlistwin_update_sinfo(void) | |
378 { | |
1775 | 379 gchar *posstr, *timestr, *title, *info; |
1653 | 380 gint pos, time; |
381 | |
382 pos = playlist_get_position(); | |
1825 | 383 title = playlist_get_songtitle(pos); |
1653 | 384 |
385 if (!title) { | |
386 textbox_set_text(playlistwin_sinfo, ""); | |
387 return; | |
388 } | |
389 | |
1775 | 390 convert_title_text(title); |
391 | |
392 time = playlist_get_songtime(pos); | |
393 | |
1653 | 394 if (cfg.show_numbers_in_pl) |
395 posstr = g_strdup_printf("%d. ", pos + 1); | |
396 else | |
397 posstr = g_strdup(""); | |
398 | |
399 if (time != -1) { | |
1800
61f531908dd0
[svn] - Put ()'s around the time in the shaded playlist text.
nhjm449
parents:
1775
diff
changeset
|
400 timestr = g_strdup_printf(" (%d:%-2.2d)", time / 60000, |
1775 | 401 (time / 1000) % 60); |
1653 | 402 } |
403 else | |
404 timestr = g_strdup(""); | |
405 | |
1775 | 406 info = g_strdup_printf("%s%s%s", posstr, title, timestr); |
1653 | 407 |
408 g_free(posstr); | |
409 g_free(title); | |
410 g_free(timestr); | |
411 | |
1775 | 412 textbox_set_text(playlistwin_sinfo, info ? info : ""); |
1653 | 413 g_free(info); |
414 } | |
415 | |
416 gboolean | |
417 playlistwin_item_visible(gint index) | |
418 { | |
419 if (index >= playlistwin_list->pl_first | |
420 && index < | |
421 (playlistwin_list->pl_first + playlistwin_list->pl_num_visible)) | |
422 return TRUE; | |
423 return FALSE; | |
424 } | |
425 | |
426 gint | |
427 playlistwin_get_toprow(void) | |
428 { | |
429 if (playlistwin_list) | |
430 return (playlistwin_list->pl_first); | |
431 return (-1); | |
432 } | |
433 | |
434 void | |
435 playlistwin_set_toprow(gint toprow) | |
436 { | |
437 if (playlistwin_list) | |
438 playlistwin_list->pl_first = toprow; | |
439 playlistwin_update_list(); | |
440 } | |
441 | |
442 void | |
443 playlistwin_update_list(void) | |
444 { | |
445 g_return_if_fail(playlistwin_list != NULL); | |
446 | |
447 widget_draw(WIDGET(playlistwin_list)); | |
448 widget_draw(WIDGET(playlistwin_slider)); | |
449 playlistwin_update_info(); | |
450 playlistwin_update_sinfo(); | |
451 /* mainwin_update_jtf(); */ | |
452 } | |
453 | |
454 #if 0 | |
455 static void | |
456 playlistwin_redraw_list(void) | |
457 { | |
458 g_return_if_fail(playlistwin_list != NULL); | |
459 | |
460 draw_widget(playlistwin_list); | |
461 draw_widget(playlistwin_slider); | |
462 } | |
463 #endif | |
464 | |
465 static void | |
466 playlistwin_set_mask(void) | |
467 { | |
468 GdkGC *gc; | |
469 GdkColor pattern; | |
470 | |
471 if (playlistwin_mask) | |
472 g_object_unref(playlistwin_mask); | |
473 | |
474 playlistwin_mask = | |
475 gdk_pixmap_new(playlistwin->window, playlistwin_get_width(), | |
476 playlistwin_get_height(), 1); | |
477 gc = gdk_gc_new(playlistwin_mask); | |
478 pattern.pixel = 1; | |
479 gdk_gc_set_foreground(gc, &pattern); | |
480 gdk_draw_rectangle(playlistwin_mask, gc, TRUE, 0, 0, | |
481 playlistwin_get_width(), playlistwin_get_height()); | |
482 gdk_gc_destroy(gc); | |
483 | |
484 gtk_widget_shape_combine_mask(playlistwin, playlistwin_mask, 0, 0); | |
485 } | |
486 | |
487 static void | |
488 playlistwin_set_geometry_hints(gboolean shaded) | |
489 { | |
490 GdkGeometry geometry; | |
491 GdkWindowHints mask; | |
492 | |
493 geometry.min_width = PLAYLISTWIN_MIN_WIDTH; | |
494 geometry.max_width = G_MAXUINT16; | |
495 | |
496 geometry.width_inc = PLAYLISTWIN_WIDTH_SNAP; | |
497 geometry.height_inc = PLAYLISTWIN_HEIGHT_SNAP; | |
498 | |
499 if (shaded) { | |
500 geometry.min_height = PLAYLISTWIN_SHADED_HEIGHT; | |
501 geometry.max_height = PLAYLISTWIN_SHADED_HEIGHT; | |
502 geometry.base_height = PLAYLISTWIN_SHADED_HEIGHT; | |
503 } | |
504 else { | |
505 geometry.min_height = PLAYLISTWIN_MIN_HEIGHT; | |
506 geometry.max_height = G_MAXUINT16; | |
507 } | |
508 | |
509 mask = GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE | GDK_HINT_RESIZE_INC; | |
510 | |
511 gtk_window_set_geometry_hints(GTK_WINDOW(playlistwin), | |
512 playlistwin, &geometry, mask); | |
513 } | |
514 | |
515 void | |
1775 | 516 playlistwin_set_sinfo_font(gchar *font) |
517 { | |
518 gchar *tmp = NULL, *tmp2 = NULL; | |
519 | |
520 if(!font) | |
521 return; | |
522 | |
523 tmp = g_strdup(font); | |
524 if(!tmp) | |
525 return; | |
526 | |
527 *strrchr(tmp, ' ') = '\0'; | |
528 tmp2 = g_strdup_printf("%s 8", tmp); | |
529 if(!tmp2) | |
530 return; | |
531 textbox_set_xfont(playlistwin_sinfo, cfg.mainwin_use_xfont, tmp2); | |
532 | |
533 g_free(tmp); g_free(tmp2); | |
534 } | |
535 | |
536 void | |
537 playlistwin_set_sinfo_scroll(gboolean scroll) | |
538 { | |
539 GtkWidget *item; | |
540 | |
541 if(playlistwin_is_shaded()) | |
542 textbox_set_scroll(playlistwin_sinfo, cfg.autoscroll); | |
543 else | |
544 textbox_set_scroll(playlistwin_sinfo, FALSE); | |
545 } | |
546 | |
547 void | |
1653 | 548 playlistwin_set_shade(gboolean shaded) |
549 { | |
550 cfg.playlist_shaded = shaded; | |
551 | |
552 if (shaded) { | |
1775 | 553 playlistwin_set_sinfo_font(cfg.playlist_font); |
554 playlistwin_set_sinfo_scroll(cfg.autoscroll); | |
1653 | 555 widget_show(WIDGET(playlistwin_sinfo)); |
556 playlistwin_shade->pb_nx = 128; | |
557 playlistwin_shade->pb_ny = 45; | |
558 playlistwin_shade->pb_px = 150; | |
559 playlistwin_shade->pb_py = 42; | |
560 playlistwin_close->pb_nx = 138; | |
561 playlistwin_close->pb_ny = 45; | |
562 } | |
563 else { | |
564 widget_hide(WIDGET(playlistwin_sinfo)); | |
1775 | 565 playlistwin_set_sinfo_scroll(FALSE); |
1653 | 566 playlistwin_shade->pb_nx = 157; |
567 playlistwin_shade->pb_ny = 3; | |
568 playlistwin_shade->pb_px = 62; | |
569 playlistwin_shade->pb_py = 42; | |
570 playlistwin_close->pb_nx = 167; | |
571 playlistwin_close->pb_ny = 3; | |
572 } | |
573 | |
574 dock_shade(dock_window_list, GTK_WINDOW(playlistwin), | |
575 playlistwin_get_height()); | |
576 | |
577 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
578 | |
579 gtk_window_resize(GTK_WINDOW(playlistwin), | |
580 playlistwin_get_width(), | |
581 playlistwin_get_height()); | |
582 | |
583 playlistwin_set_mask(); | |
584 | |
585 widget_draw(WIDGET(playlistwin_list)); | |
586 widget_draw(WIDGET(playlistwin_slider)); | |
587 | |
588 draw_playlist_window(TRUE); | |
589 } | |
590 | |
591 static void | |
592 playlistwin_set_shade_menu(gboolean shaded) | |
593 { | |
594 GtkWidget *item; | |
595 | |
596 item = gtk_item_factory_get_widget(mainwin_view_menu, | |
597 "/Roll up Playlist Editor"); | |
598 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), shaded); | |
599 | |
600 playlistwin_set_shade(shaded); | |
1775 | 601 playlistwin_update_list(); |
1653 | 602 } |
603 | |
604 void | |
605 playlistwin_shade_toggle(void) | |
606 { | |
607 playlistwin_set_shade_menu(!cfg.playlist_shaded); | |
608 } | |
609 | |
610 static void | |
611 playlistwin_release(GtkWidget * widget, | |
612 GdkEventButton * event, | |
613 gpointer callback_data) | |
614 { | |
615 if (event->button == 3) | |
616 return; | |
617 | |
618 gdk_pointer_ungrab(GDK_CURRENT_TIME); | |
619 playlistwin_resizing = FALSE; | |
620 gdk_flush(); | |
621 | |
622 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
623 { | |
624 dock_move_release(GTK_WINDOW(playlistwin)); | |
625 | |
626 if (cfg.playlist_transparent) | |
627 playlistwin_update_list(); | |
628 } | |
629 else | |
630 { | |
631 handle_release_cb(playlistwin_wlist, widget, event); | |
632 draw_playlist_window(FALSE); | |
633 } | |
634 } | |
635 | |
636 void | |
637 playlistwin_scroll(gint num) | |
638 { | |
639 playlistwin_list->pl_first += num; | |
640 playlistwin_update_list(); | |
641 } | |
642 | |
643 void | |
644 playlistwin_scroll_up_pushed(void) | |
645 { | |
2026 | 646 playlistwin_scroll(-3); |
1653 | 647 } |
648 | |
649 void | |
650 playlistwin_scroll_down_pushed(void) | |
651 { | |
2026 | 652 playlistwin_scroll(3); |
1653 | 653 } |
654 | |
655 static void | |
656 playlistwin_select_all(void) | |
657 { | |
658 playlist_select_all(TRUE); | |
659 playlistwin_list->pl_prev_selected = 0; | |
660 playlistwin_list->pl_prev_min = 0; | |
661 playlistwin_list->pl_prev_max = playlist_get_length() - 1; | |
662 playlistwin_update_list(); | |
663 } | |
664 | |
665 static void | |
666 playlistwin_select_none(void) | |
667 { | |
668 playlist_select_all(FALSE); | |
669 playlistwin_list->pl_prev_selected = -1; | |
670 playlistwin_list->pl_prev_min = -1; | |
671 playlistwin_update_list(); | |
672 } | |
673 | |
674 static void | |
675 playlistwin_inverse_selection(void) | |
676 { | |
677 playlist_select_invert_all(); | |
678 playlistwin_list->pl_prev_selected = -1; | |
679 playlistwin_list->pl_prev_min = -1; | |
680 playlistwin_update_list(); | |
681 } | |
682 | |
683 static void | |
684 playlistwin_resize(gint width, gint height) | |
685 { | |
686 gboolean redraw; | |
687 | |
688 g_return_if_fail(width > 0 && height > 0); | |
689 | |
690 cfg.playlist_width = width; | |
691 | |
692 if (!cfg.playlist_shaded) | |
693 cfg.playlist_height = height; | |
694 else | |
695 height = cfg.playlist_height; | |
696 | |
697 /* FIXME: why the fsck are we doing this manually? */ | |
698 /* adjust widget positions and sizes */ | |
699 | |
700 widget_resize(WIDGET(playlistwin_list), width - 31, height - 58); | |
701 | |
702 widget_move(WIDGET(playlistwin_slider), width - 15, 20); | |
703 widget_resize(WIDGET(playlistwin_slider), 8, height - 58); | |
704 | |
705 widget_resize(WIDGET(playlistwin_sinfo), width - 35, 14); | |
706 playlistwin_update_sinfo(); | |
707 | |
708 widget_move(WIDGET(playlistwin_shade), width - 21, 3); | |
709 widget_move(WIDGET(playlistwin_close), width - 11, 3); | |
710 widget_move(WIDGET(playlistwin_time_min), width - 82, height - 15); | |
711 widget_move(WIDGET(playlistwin_time_sec), width - 64, height - 15); | |
712 widget_move(WIDGET(playlistwin_info), width - 143, height - 28); | |
713 widget_move(WIDGET(playlistwin_srew), width - 144, height - 16); | |
714 widget_move(WIDGET(playlistwin_splay), width - 138, height - 16); | |
715 widget_move(WIDGET(playlistwin_spause), width - 128, height - 16); | |
716 widget_move(WIDGET(playlistwin_sstop), width - 118, height - 16); | |
717 widget_move(WIDGET(playlistwin_sfwd), width - 109, height - 16); | |
718 widget_move(WIDGET(playlistwin_seject), width - 100, height - 16); | |
719 widget_move(WIDGET(playlistwin_sscroll_up), width - 14, height - 35); | |
720 widget_move(WIDGET(playlistwin_sscroll_down), width - 14, height - 30); | |
721 | |
722 g_object_unref(playlistwin_bg); | |
723 playlistwin_bg = gdk_pixmap_new(playlistwin->window, width, height, -1); | |
724 playlistwin_set_mask(); | |
725 | |
726 widget_list_lock(playlistwin_wlist); | |
727 | |
728 widget_list_change_pixmap(playlistwin_wlist, playlistwin_bg); | |
729 playlistwin_draw_frame(); | |
730 widget_list_draw(playlistwin_wlist, &redraw, TRUE); | |
731 widget_list_clear_redraw(playlistwin_wlist); | |
732 | |
733 widget_list_unlock(playlistwin_wlist); | |
734 | |
735 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
736 gdk_window_clear(playlistwin->window); | |
737 } | |
738 | |
739 | |
740 | |
741 static void | |
742 playlistwin_motion(GtkWidget * widget, | |
743 GdkEventMotion * event, | |
744 gpointer callback_data) | |
745 { | |
746 GdkEvent *gevent; | |
747 | |
748 if (dock_is_moving(GTK_WINDOW(playlistwin))) { | |
749 dock_move_motion(GTK_WINDOW(playlistwin), event); | |
750 } | |
751 else { | |
752 handle_motion_cb(playlistwin_wlist, widget, event); | |
753 draw_playlist_window(FALSE); | |
754 } | |
755 gdk_flush(); | |
756 | |
757 while ((gevent = gdk_event_get()) != NULL) gdk_event_free(gevent); | |
758 } | |
759 | |
760 static void | |
761 playlistwin_enter(GtkWidget * widget, | |
762 GdkEventMotion * event, | |
763 gpointer callback_data) | |
764 { | |
765 playlistwin_list->pl_tooltips = TRUE; | |
766 } | |
767 | |
768 static void | |
769 playlistwin_leave(GtkWidget * widget, | |
770 GdkEventMotion * event, | |
771 gpointer callback_data) | |
772 { | |
773 playlistwin_list->pl_tooltips = FALSE; | |
774 } | |
775 | |
776 static void | |
777 playlistwin_show_filebrowser(void) | |
778 { | |
779 util_run_filebrowser(NO_PLAY_BUTTON); | |
780 } | |
781 | |
782 #if 0 | |
783 static void | |
784 playlistwin_add_dir_handler(const gchar * dir) | |
785 { | |
786 g_free(cfg.filesel_path); | |
787 cfg.filesel_path = g_strdup(dir); | |
788 playlist_add_dir(dir); | |
789 } | |
790 #endif | |
791 | |
792 static void | |
793 playlistwin_fileinfo(void) | |
794 { | |
795 /* Show the first selected file, or the current file if nothing is | |
796 * selected */ | |
797 GList *list = playlist_get_selected(); | |
798 if (list) { | |
799 playlist_fileinfo(GPOINTER_TO_INT(list->data)); | |
800 g_list_free(list); | |
801 } | |
802 else | |
803 playlist_fileinfo_current(); | |
804 } | |
805 | |
806 static void | |
807 menu_set_item_sensitive(GtkItemFactory * item_factory, | |
808 const gchar * path, | |
809 gboolean sensitive) | |
810 { | |
811 GtkWidget *item = gtk_item_factory_get_widget(item_factory, path); | |
812 gtk_widget_set_sensitive(item, sensitive); | |
813 } | |
814 | |
815 /* FIXME: broken */ | |
816 static void | |
817 playlistwin_set_sensitive_sortmenu(void) | |
818 { | |
819 gboolean set = playlist_get_num_selected() > 1; | |
820 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Title", set); | |
821 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Filename", set); | |
822 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Path + Filename", set); | |
823 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Date", set); | |
824 } | |
825 | |
826 static void | |
827 show_playlist_save_error(GtkWindow * parent, | |
828 const gchar * filename) | |
829 { | |
830 GtkWidget *dialog; | |
831 | |
832 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
833 g_return_if_fail(filename != NULL); | |
834 | |
835 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
836 GTK_DIALOG_DESTROY_WITH_PARENT, | |
837 GTK_MESSAGE_ERROR, | |
838 GTK_BUTTONS_OK, | |
839 _("Error writing playlist \"%s\": %s"), | |
840 filename, strerror(errno)); | |
841 | |
842 gtk_dialog_run(GTK_DIALOG(dialog)); | |
843 gtk_widget_destroy(dialog); | |
844 } | |
845 | |
846 static gboolean | |
847 show_playlist_overwrite_prompt(GtkWindow * parent, | |
848 const gchar * filename) | |
849 { | |
850 GtkWidget *dialog; | |
851 gint result; | |
852 | |
853 g_return_val_if_fail(GTK_IS_WINDOW(parent), FALSE); | |
854 g_return_val_if_fail(filename != NULL, FALSE); | |
855 | |
856 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
857 GTK_DIALOG_DESTROY_WITH_PARENT, | |
858 GTK_MESSAGE_QUESTION, | |
859 GTK_BUTTONS_YES_NO, | |
860 _("%s already exist. Continue?"), | |
861 filename); | |
862 | |
863 result = gtk_dialog_run(GTK_DIALOG(dialog)); | |
864 gtk_widget_destroy(dialog); | |
865 | |
866 return (result == GTK_RESPONSE_YES); | |
867 } | |
868 | |
869 static void | |
870 show_playlist_save_format_error(GtkWindow * parent, | |
871 const gchar * filename) | |
872 { | |
873 const gchar *markup = | |
874 N_("<b><big>Unable to save playlist.</big></b>\n\n" | |
875 "Unknown file type for '%s'.\n"); | |
876 | |
877 GtkWidget *dialog; | |
878 | |
879 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
880 g_return_if_fail(filename != NULL); | |
881 | |
882 dialog = | |
883 gtk_message_dialog_new_with_markup(GTK_WINDOW(parent), | |
884 GTK_DIALOG_DESTROY_WITH_PARENT, | |
885 GTK_MESSAGE_ERROR, | |
886 GTK_BUTTONS_OK, | |
887 _(markup), | |
888 filename); | |
889 gtk_dialog_run(GTK_DIALOG(dialog)); | |
890 gtk_widget_destroy(dialog); | |
891 } | |
892 | |
893 static void | |
894 playlistwin_save_playlist(const gchar * filename) | |
895 { | |
896 PlaylistContainer *plc; | |
897 gchar *ext = strrchr(filename, '.') + 1; | |
898 | |
899 plc = playlist_container_find(ext); | |
900 if (plc == NULL) { | |
901 show_playlist_save_format_error(GTK_WINDOW(playlistwin), filename); | |
902 return; | |
903 } | |
904 | |
905 str_replace_in(&cfg.playlist_path, g_path_get_dirname(filename)); | |
906 | |
907 if (g_file_test(filename, G_FILE_TEST_IS_REGULAR)) | |
908 if (!show_playlist_overwrite_prompt(GTK_WINDOW(playlistwin), filename)) | |
909 return; | |
910 | |
911 if (!playlist_save(filename)) | |
912 show_playlist_save_error(GTK_WINDOW(playlistwin), filename); | |
913 } | |
914 | |
915 #if 0 | |
916 static void | |
917 playlistwin_save_current(void) | |
918 { | |
919 const gchar *filename; | |
920 | |
921 if (!(filename = playlist_get_current_name())) | |
922 return; | |
923 | |
924 playlistwin_save_playlist(filename); | |
925 } | |
926 #endif | |
927 | |
928 static void | |
929 playlistwin_load_playlist(const gchar * filename) | |
930 { | |
931 g_return_if_fail(filename != NULL); | |
932 | |
933 str_replace_in(&cfg.playlist_path, g_strdup(filename)); | |
934 | |
935 playlist_clear(); | |
936 mainwin_clear_song_info(); | |
937 mainwin_set_info_text(); | |
938 | |
939 playlist_load(filename); | |
940 playlist_set_current_name(filename); | |
941 } | |
942 | |
943 static gchar * | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
944 playlist_file_selection_load(const gchar * title, |
1653 | 945 const gchar * default_filename) |
946 { | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
947 static GtkWidget *dialog = NULL; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
948 GtkWidget *button; |
1653 | 949 gchar *filename; |
950 | |
951 g_return_val_if_fail(title != NULL, NULL); | |
952 | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
953 if(!dialog) { |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
954 dialog = gtk_file_chooser_dialog_new(title, GTK_WINDOW(mainwin), |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
955 GTK_FILE_CHOOSER_ACTION_OPEN, NULL, NULL); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
956 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
957 if (default_filename) |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
958 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
959 default_filename); |
1653 | 960 |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
961 button = gtk_dialog_add_button(GTK_DIALOG(dialog), GTK_STOCK_CANCEL, |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
962 GTK_RESPONSE_REJECT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
963 gtk_button_set_use_stock(GTK_BUTTON(button), TRUE); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
964 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
1653 | 965 |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
966 button = gtk_dialog_add_button(GTK_DIALOG(dialog), |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
967 GTK_STOCK_OPEN, |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
968 GTK_RESPONSE_ACCEPT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
969 gtk_button_set_use_stock(GTK_BUTTON(button), TRUE); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
970 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
971 } |
1653 | 972 |
973 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) | |
974 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); | |
975 else | |
976 filename = NULL; | |
977 | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
978 gtk_widget_hide(dialog); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
979 return filename; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
980 } |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
981 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
982 static gchar * |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
983 playlist_file_selection_save(const gchar * title, |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
984 const gchar * default_filename) |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
985 { |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
986 static GtkWidget *dialog = NULL; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
987 GtkWidget *button; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
988 gchar *filename; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
989 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
990 g_return_val_if_fail(title != NULL, NULL); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
991 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
992 if(!dialog) { |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
993 dialog = gtk_file_chooser_dialog_new(title, GTK_WINDOW(mainwin), |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
994 GTK_FILE_CHOOSER_ACTION_SAVE, NULL, NULL); |
1653 | 995 |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
996 if (default_filename) |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
997 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
998 default_filename); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
999 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1000 button = gtk_dialog_add_button(GTK_DIALOG(dialog), GTK_STOCK_CANCEL, |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1001 GTK_RESPONSE_REJECT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1002 gtk_button_set_use_stock(GTK_BUTTON(button), TRUE); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1003 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1004 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1005 button = gtk_dialog_add_button(GTK_DIALOG(dialog), |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1006 GTK_STOCK_SAVE, |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1007 GTK_RESPONSE_ACCEPT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1008 gtk_button_set_use_stock(GTK_BUTTON(button), TRUE); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1009 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1010 } |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1011 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1012 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1013 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1014 else |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1015 filename = NULL; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1016 |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1017 gtk_widget_hide(dialog); |
1653 | 1018 return filename; |
1019 } | |
1020 | |
1021 void | |
1022 playlistwin_select_playlist_to_load(const gchar * default_filename) | |
1023 { | |
1024 gchar *filename = | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1025 playlist_file_selection_load(_("Load Playlist"), default_filename); |
1653 | 1026 |
1027 if (filename) { | |
1028 playlistwin_load_playlist(filename); | |
1029 g_free(filename); | |
1030 } | |
1031 } | |
1032 | |
1033 static void | |
1034 playlistwin_select_playlist_to_save(const gchar * default_filename) | |
1035 { | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1036 gchar *dot = NULL, *basename = NULL; |
1653 | 1037 gchar *filename = |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1038 playlist_file_selection_save(_("Save Playlist"), default_filename); |
1653 | 1039 |
1040 if (filename) { | |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1041 /* Default to xspf if no filename has extension */ |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1042 basename = g_path_get_basename(filename); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1043 dot = strrchr(basename, '.'); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1044 if( dot == NULL || dot == basename) { |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1045 gchar *oldname = filename; |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1046 filename = g_strconcat(oldname, ".xspf", NULL); |
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1047 g_free(oldname); |
1653 | 1048 } |
1762
5170463d8cc9
[svn] - gtk+-2.10's gtk_widget_destroy() sometimes causes an UI freeze. as a workaround, reuse allocated dialog.
yaz
parents:
1653
diff
changeset
|
1049 g_free(basename); |
1653 | 1050 |
1051 playlistwin_save_playlist(filename); | |
1052 g_free(filename); | |
1053 } | |
1054 } | |
1055 | |
1056 static gboolean | |
1057 inside_sensitive_widgets(gint x, gint y) | |
1058 { | |
1059 return (widget_contains(WIDGET(playlistwin_list), x, y) || | |
1060 widget_contains(WIDGET(playlistwin_slider), x, y) || | |
1061 widget_contains(WIDGET(playlistwin_close), x, y) || | |
1062 widget_contains(WIDGET(playlistwin_shade), x, y) || | |
1063 widget_contains(WIDGET(playlistwin_time_min), x, y) || | |
1064 widget_contains(WIDGET(playlistwin_time_sec), x, y) || | |
1065 widget_contains(WIDGET(playlistwin_info), x, y) || | |
1066 widget_contains(WIDGET(playlistwin_srew), x, y) || | |
1067 widget_contains(WIDGET(playlistwin_splay), x, y) || | |
1068 widget_contains(WIDGET(playlistwin_spause), x, y) || | |
1069 widget_contains(WIDGET(playlistwin_sstop), x, y) || | |
1070 widget_contains(WIDGET(playlistwin_sfwd), x, y) || | |
1071 widget_contains(WIDGET(playlistwin_seject), x, y) || | |
1072 widget_contains(WIDGET(playlistwin_sscroll_up), x, y) || | |
1073 widget_contains(WIDGET(playlistwin_sscroll_down), x, y)); | |
1074 } | |
1075 | |
1076 #define REGION_L(x1,x2,y1,y2) \ | |
1077 (event->x >= (x1) && event->x < (x2) && \ | |
1078 event->y >= cfg.playlist_height - (y1) && \ | |
1079 event->y < cfg.playlist_height - (y2)) | |
1080 | |
1081 #define REGION_R(x1,x2,y1,y2) \ | |
1082 (event->x >= playlistwin_get_width() - (x1) && \ | |
1083 event->x < playlistwin_get_width() - (x2) && \ | |
1084 event->y >= cfg.playlist_height - (y1) && \ | |
1085 event->y < cfg.playlist_height - (y2)) | |
1086 | |
1087 static void | |
1088 playlistwin_scrolled(GtkWidget * widget, | |
1089 GdkEventScroll * event, | |
1090 gpointer callback_data) | |
1091 { | |
1092 | |
1093 if (event->direction == GDK_SCROLL_DOWN) | |
1094 playlistwin_scroll(cfg.scroll_pl_by); | |
1095 | |
1096 if (event->direction == GDK_SCROLL_UP) | |
1097 playlistwin_scroll(-cfg.scroll_pl_by); | |
1098 | |
2028 | 1099 g_cond_signal(cond_scan); |
1100 | |
1653 | 1101 } |
1102 | |
1103 | |
1104 | |
1105 | |
1106 static gboolean | |
1107 playlistwin_press(GtkWidget * widget, | |
1108 GdkEventButton * event, | |
1109 gpointer callback_data) | |
1110 { | |
1111 gboolean grab = TRUE; | |
1112 gint xpos, ypos; | |
1113 GtkWidget *_menu; | |
1114 GtkRequisition req; | |
1115 | |
1116 gtk_window_get_position(GTK_WINDOW(playlistwin), &xpos, &ypos); | |
1117 | |
1118 if (event->button == 1 && !cfg.show_wm_decorations && | |
1119 ((!cfg.playlist_shaded && | |
1120 event->x > playlistwin_get_width() - 20 && | |
1121 event->y > cfg.playlist_height - 20) || | |
1122 (cfg.playlist_shaded && | |
1123 event->x >= playlistwin_get_width() - 31 && | |
1124 event->x < playlistwin_get_width() - 22))) { | |
1125 | |
1126 /* NOTE: Workaround for bug #214 */ | |
1127 if (event->type != GDK_2BUTTON_PRESS && | |
1128 event->type != GDK_3BUTTON_PRESS) { | |
1129 /* resize area */ | |
1130 playlistwin_resizing = TRUE; | |
1131 gtk_window_begin_resize_drag(GTK_WINDOW(widget), | |
1132 GDK_WINDOW_EDGE_SOUTH_EAST, | |
1133 event->button, | |
1134 event->x + xpos, event->y + ypos, | |
1135 event->time); | |
1136 } | |
1137 grab = FALSE; | |
1138 } | |
1139 else if (event->button == 1 && REGION_L(12, 37, 29, 11)) { | |
1140 /* ADD button menu */ | |
1141 | |
1142 _menu = GTK_WIDGET(pladd_menu->widget); | |
1143 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1144 gtk_widget_size_request(_menu, &req); | |
1145 gtk_item_factory_popup_with_data(pladd_menu, | |
1146 NULL, NULL, | |
1147 xpos+12, | |
1148 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1149 grab = FALSE; | |
1150 } | |
1151 else if (event->button == 1 && REGION_L(41, 66, 29, 11)) { | |
1152 /* SUB button menu */ | |
1153 _menu = GTK_WIDGET(pldel_menu->widget); | |
1154 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1155 gtk_widget_size_request(_menu, &req); | |
1156 gtk_item_factory_popup_with_data(pldel_menu, | |
1157 NULL, NULL, | |
1158 xpos+40, | |
1159 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1160 grab = FALSE; | |
1161 } | |
1162 else if (event->button == 1 && REGION_L(70, 95, 29, 11)) { | |
1163 /* SEL button menu */ | |
1164 _menu = GTK_WIDGET(plsel_menu->widget); | |
1165 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1166 gtk_widget_size_request(_menu, &req); | |
1167 gtk_item_factory_popup_with_data(plsel_menu, | |
1168 NULL, NULL, | |
1169 xpos+68, | |
1170 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1171 | |
1172 grab = FALSE; | |
1173 } | |
1174 else if (event->button == 1 && REGION_L(99, 124, 29, 11)) { | |
1175 /* MISC button menu */ | |
1176 _menu = GTK_WIDGET(plsort_menu->widget); | |
1177 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1178 gtk_widget_size_request(_menu, &req); | |
1179 gtk_item_factory_popup_with_data(plsort_menu, | |
1180 NULL, NULL, | |
1181 xpos+100, | |
1182 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1183 grab = FALSE; | |
1184 } | |
1185 else if (event->button == 1 && REGION_R(46, 23, 29, 11)) { | |
1186 /* LIST button menu */ | |
1187 _menu = GTK_WIDGET(pllist_menu->widget); | |
1188 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1189 gtk_widget_size_request(_menu, &req); | |
1190 gtk_item_factory_popup_with_data(pllist_menu, | |
1191 NULL, NULL, | |
1192 xpos + playlistwin_get_width() - req.width - 12, | |
1193 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1194 grab = FALSE; | |
1195 } | |
1196 else if (event->button == 1 && REGION_R(82, 54, 15, 9)) { | |
1197 if (cfg.timer_mode == TIMER_ELAPSED) | |
1198 cfg.timer_mode = TIMER_REMAINING; | |
1199 else | |
1200 cfg.timer_mode = TIMER_ELAPSED; | |
1201 } | |
1202 else if (event->button == 2 && (event->type == GDK_BUTTON_PRESS) && | |
1203 widget_contains(WIDGET(playlistwin_list), event->x, event->y)) { | |
1204 gtk_selection_convert(widget, GDK_SELECTION_PRIMARY, | |
1205 GDK_TARGET_STRING, event->time); | |
1206 } | |
1207 else if (event->button == 1 && event->type == GDK_BUTTON_PRESS && | |
1938 | 1208 !inside_sensitive_widgets(event->x, event->y) && (cfg.easy_move || event->y < 14)) |
1653 | 1209 { |
1210 dock_move_press(dock_window_list, GTK_WINDOW(playlistwin), event, | |
1211 FALSE); | |
1212 gtk_window_present(GTK_WINDOW(playlistwin)); | |
1213 } | |
1214 else if (event->button == 1 && event->type == GDK_2BUTTON_PRESS && | |
1215 !inside_sensitive_widgets(event->x, event->y) | |
1216 && event->y < 14) { | |
1217 /* double click on title bar */ | |
1218 playlistwin_shade_toggle(); | |
1219 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
1220 dock_move_release(GTK_WINDOW(playlistwin)); | |
1221 return TRUE; | |
1222 } | |
1223 else if (event->button == 3 && | |
1224 !(widget_contains(WIDGET(playlistwin_list), event->x, event->y) || | |
1225 (event->y >= cfg.playlist_height - 29 && | |
1226 event->y < cfg.playlist_height - 11 && | |
1227 ((event->x >= 12 && event->x < 37) || | |
1228 (event->x >= 41 && event->x < 66) || | |
1229 (event->x >= 70 && event->x < 95) || | |
1230 (event->x >= 99 && event->x < 124) || | |
1231 (event->x >= playlistwin_get_width() - 46 && | |
1232 event->x < playlistwin_get_width() - 23))))) { | |
1233 /* | |
1234 * Pop up the main menu a few pixels down to avoid | |
1235 * anything to be selected initially. | |
1236 */ | |
1237 util_item_factory_popup(mainwin_general_menu, event->x_root, | |
1238 event->y_root + 2, 3, event->time); | |
1239 grab = FALSE; | |
1240 } | |
1241 else if (event->button == 3 && | |
1242 widget_contains(WIDGET(playlistwin_list), event->x, event->y)) { | |
1243 /* popup menu */ | |
1244 playlistwin_set_sensitive_sortmenu(); | |
1245 { | |
1246 GtkWidget *item = gtk_item_factory_get_widget(playlistwin_popup_menu, "/Show Popup Info"); | |
1247 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), cfg.show_filepopup_for_tuple); | |
1248 } | |
1249 gtk_item_factory_popup(playlistwin_popup_menu, | |
1250 event->x_root, event->y_root + 5, | |
1251 3, event->time); | |
1252 grab = FALSE; | |
1253 } | |
1254 else { | |
1255 handle_press_cb(playlistwin_wlist, widget, event); | |
1256 draw_playlist_window(FALSE); | |
1257 } | |
1258 | |
1259 if (grab) | |
1260 gdk_pointer_grab(playlistwin->window, FALSE, | |
1261 GDK_BUTTON_MOTION_MASK | GDK_BUTTON_RELEASE_MASK | | |
1262 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | | |
1263 GDK_BUTTON1_MOTION_MASK, NULL, NULL, | |
1264 GDK_CURRENT_TIME); | |
1265 | |
1266 return FALSE; | |
1267 } | |
1268 | |
1269 static gboolean | |
1270 playlistwin_focus_in(GtkWidget * widget, GdkEvent * event, gpointer data) | |
1271 { | |
1272 playlistwin_close->pb_allow_draw = TRUE; | |
1273 playlistwin_shade->pb_allow_draw = TRUE; | |
1274 draw_playlist_window(TRUE); | |
1275 return FALSE; | |
1276 } | |
1277 | |
1278 static gboolean | |
1279 playlistwin_focus_out(GtkWidget * widget, | |
1280 GdkEventButton * event, gpointer data) | |
1281 { | |
1282 playlistwin_close->pb_allow_draw = FALSE; | |
1283 playlistwin_shade->pb_allow_draw = FALSE; | |
1284 draw_playlist_window(TRUE); | |
1285 return FALSE; | |
1286 } | |
1287 | |
1288 static gboolean | |
1289 playlistwin_configure(GtkWidget * window, | |
1290 GdkEventConfigure * event, gpointer data) | |
1291 { | |
1292 if (!GTK_WIDGET_VISIBLE(window)) | |
1293 return FALSE; | |
1294 | |
1295 cfg.playlist_x = event->x; | |
1296 cfg.playlist_y = event->y; | |
1297 | |
1298 if (playlistwin_resizing) { | |
1299 if (event->width != playlistwin_get_width() || | |
1300 event->height != playlistwin_get_height()) | |
1301 playlistwin_resize(event->width, event->height); | |
1302 } | |
1303 return TRUE; | |
1304 } | |
1305 | |
1306 void | |
1307 playlistwin_set_back_pixmap(void) | |
1308 { | |
1309 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
1310 gdk_window_clear(playlistwin->window); | |
1311 } | |
1312 | |
1313 static gboolean | |
1314 playlistwin_delete(GtkWidget * w, gpointer data) | |
1315 { | |
1316 playlistwin_hide(); | |
1317 return TRUE; | |
1318 } | |
1319 | |
1320 static void | |
1321 playlistwin_keypress_up_down_handler(PlayList_List * pl, | |
1322 gboolean up, guint state) | |
1323 { | |
1324 if ((state & GDK_MOD1_MASK) && (state & GDK_SHIFT_MASK)) | |
1325 return; | |
1326 if (!(state & GDK_MOD1_MASK)) | |
1327 playlist_select_all(FALSE); | |
1328 | |
1329 if (pl->pl_prev_selected == -1 || | |
1330 (!playlistwin_item_visible(pl->pl_prev_selected) && | |
1331 !(state & GDK_SHIFT_MASK && pl->pl_prev_min != -1))) { | |
1332 pl->pl_prev_selected = pl->pl_first; | |
1333 } | |
1334 else if (state & GDK_SHIFT_MASK) { | |
1335 if (pl->pl_prev_min == -1) { | |
1336 pl->pl_prev_max = pl->pl_prev_selected; | |
1337 pl->pl_prev_min = pl->pl_prev_selected; | |
1338 } | |
1339 pl->pl_prev_max += (up ? -1 : 1); | |
1340 pl->pl_prev_max = | |
1341 CLAMP(pl->pl_prev_max, 0, playlist_get_length() - 1); | |
1342 | |
1343 pl->pl_first = MIN(pl->pl_first, pl->pl_prev_max); | |
1344 pl->pl_first = MAX(pl->pl_first, pl->pl_prev_max - | |
1345 pl->pl_num_visible + 1); | |
1346 playlist_select_range(pl->pl_prev_min, pl->pl_prev_max, TRUE); | |
1347 return; | |
1348 } | |
1349 else if (state & GDK_MOD1_MASK) { | |
1350 if (up) | |
1351 playlist_list_move_up(pl); | |
1352 else | |
1353 playlist_list_move_down(pl); | |
1354 if (pl->pl_prev_min < pl->pl_first) | |
1355 pl->pl_first = pl->pl_prev_min; | |
1356 else if (pl->pl_prev_max >= (pl->pl_first + pl->pl_num_visible)) | |
1357 pl->pl_first = pl->pl_prev_max - pl->pl_num_visible + 1; | |
1358 return; | |
1359 } | |
1360 else if (up) | |
1361 pl->pl_prev_selected--; | |
1362 else | |
1363 pl->pl_prev_selected++; | |
1364 | |
1365 pl->pl_prev_selected = | |
1366 CLAMP(pl->pl_prev_selected, 0, playlist_get_length() - 1); | |
1367 | |
1368 if (pl->pl_prev_selected < pl->pl_first) | |
1369 pl->pl_first--; | |
1370 else if (pl->pl_prev_selected >= (pl->pl_first + pl->pl_num_visible)) | |
1371 pl->pl_first++; | |
1372 | |
1373 playlist_select_range(pl->pl_prev_selected, pl->pl_prev_selected, TRUE); | |
1374 pl->pl_prev_min = -1; | |
1375 | |
1376 } | |
1377 | |
1378 /* FIXME: Handle the keys through menu */ | |
1379 | |
1380 static gboolean | |
1381 playlistwin_keypress(GtkWidget * w, GdkEventKey * event, gpointer data) | |
1382 { | |
1383 guint keyval; | |
1384 gboolean refresh = FALSE; | |
1385 | |
1386 if (cfg.playlist_shaded) | |
1387 return FALSE; | |
1388 | |
1389 switch (keyval = event->keyval) { | |
1390 case GDK_KP_Up: | |
1391 case GDK_KP_Down: | |
1392 case GDK_Up: | |
1393 case GDK_Down: | |
1394 playlistwin_keypress_up_down_handler(playlistwin_list, | |
1395 keyval == GDK_Up | |
1396 || keyval == GDK_KP_Up, | |
1397 event->state); | |
1398 refresh = TRUE; | |
1399 break; | |
1400 case GDK_Page_Up: | |
1401 playlistwin_scroll(-playlistwin_list->pl_num_visible); | |
1402 refresh = TRUE; | |
1403 break; | |
1404 case GDK_Page_Down: | |
1405 playlistwin_scroll(playlistwin_list->pl_num_visible); | |
1406 refresh = TRUE; | |
1407 break; | |
1408 case GDK_Home: | |
1409 playlistwin_list->pl_first = 0; | |
1410 refresh = TRUE; | |
1411 break; | |
1412 case GDK_End: | |
1413 playlistwin_list->pl_first = | |
1414 playlist_get_length() - playlistwin_list->pl_num_visible; | |
1415 refresh = TRUE; | |
1416 break; | |
1417 case GDK_Return: | |
1418 if (playlistwin_list->pl_prev_selected > -1 | |
1419 && playlistwin_item_visible(playlistwin_list->pl_prev_selected)) { | |
1420 playlist_set_position(playlistwin_list->pl_prev_selected); | |
1421 if (!bmp_playback_get_playing()) | |
1422 bmp_playback_initiate(); | |
1423 } | |
1424 break; | |
1425 case GDK_3: | |
1426 if (event->state & GDK_CONTROL_MASK) | |
1427 playlistwin_fileinfo(); | |
1428 break; | |
1429 case GDK_Delete: | |
1430 if (event->state & GDK_CONTROL_MASK) | |
1431 playlist_delete(TRUE); | |
1432 else | |
1433 playlist_delete(FALSE); | |
1434 break; | |
1435 case GDK_Insert: | |
1436 if (event->state & GDK_MOD1_MASK) | |
1437 mainwin_show_add_url_window(); | |
1438 else | |
1439 playlistwin_show_filebrowser(); | |
1440 break; | |
1441 case GDK_Left: | |
1442 case GDK_KP_Left: | |
1443 case GDK_KP_7: | |
1444 if (playlist_get_current_length() != -1) | |
1445 bmp_playback_seek(CLAMP | |
2043
e211d52a3626
[svn] Seek controls (left and right) now seek 5 seconds like the main window
nazca
parents:
2028
diff
changeset
|
1446 (bmp_playback_get_time() - 5000, 0, |
1653 | 1447 playlist_get_current_length()) / 1000); |
1448 break; | |
1449 case GDK_Right: | |
1450 case GDK_KP_Right: | |
1451 case GDK_KP_9: | |
1452 if (playlist_get_current_length() != -1) | |
1453 bmp_playback_seek(CLAMP | |
2043
e211d52a3626
[svn] Seek controls (left and right) now seek 5 seconds like the main window
nazca
parents:
2028
diff
changeset
|
1454 (bmp_playback_get_time() + 5000, 0, |
1653 | 1455 playlist_get_current_length()) / 1000); |
1456 break; | |
2048
7bc2489db782
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
nazca
parents:
2043
diff
changeset
|
1457 case GDK_KP_4: |
7bc2489db782
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
nazca
parents:
2043
diff
changeset
|
1458 playlist_prev(); |
7bc2489db782
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
nazca
parents:
2043
diff
changeset
|
1459 break; |
7bc2489db782
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
nazca
parents:
2043
diff
changeset
|
1460 case GDK_KP_6: |
7bc2489db782
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
nazca
parents:
2043
diff
changeset
|
1461 playlist_next(); |
7bc2489db782
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
nazca
parents:
2043
diff
changeset
|
1462 break; |
1653 | 1463 |
1464 case GDK_Escape: | |
1465 mainwin_minimize_cb(); | |
1466 break; | |
1467 default: | |
1468 return FALSE; | |
1469 } | |
1470 | |
2026 | 1471 if (refresh) { |
1472 g_cond_signal(cond_scan); | |
1653 | 1473 playlistwin_update_list(); |
2026 | 1474 } |
1653 | 1475 |
1476 return TRUE; | |
1477 } | |
1478 | |
1479 static void | |
1480 playlistwin_draw_frame(void) | |
1481 { | |
1482 gboolean focus = | |
1483 gtk_window_has_toplevel_focus(GTK_WINDOW(playlistwin)) || | |
1484 !cfg.dim_titlebar; | |
1485 | |
1486 if (cfg.playlist_shaded) { | |
1487 skin_draw_playlistwin_shaded(bmp_active_skin, | |
1488 playlistwin_bg, playlistwin_gc, | |
1489 playlistwin_get_width(), focus); | |
1490 } | |
1491 else { | |
1492 skin_draw_playlistwin_frame(bmp_active_skin, | |
1493 playlistwin_bg, playlistwin_gc, | |
1494 playlistwin_get_width(), | |
1495 cfg.playlist_height, focus); | |
1496 } | |
1497 } | |
1498 | |
1499 void | |
1500 draw_playlist_window(gboolean force) | |
1501 { | |
1502 gboolean redraw; | |
1503 GList *wl; | |
1504 Widget *w; | |
1505 | |
1506 if (force) | |
1507 playlistwin_draw_frame(); | |
1508 | |
1509 widget_list_lock(playlistwin_wlist); | |
1510 widget_list_draw(playlistwin_wlist, &redraw, force); | |
1511 | |
1512 if (redraw || force) { | |
1513 if (force) { | |
1514 gdk_window_clear(playlistwin->window); | |
1515 } | |
1516 else { | |
1517 for (wl = playlistwin_wlist; wl; wl = g_list_next(wl)) { | |
1518 w = WIDGET(wl->data); | |
1519 if (w->redraw && w->visible) { | |
1520 gdk_window_clear_area(playlistwin->window, w->x, w->y, | |
1521 w->width, w->height); | |
1522 w->redraw = FALSE; | |
1523 } | |
1524 } | |
1525 } | |
1526 | |
1527 gdk_flush(); | |
1528 } | |
1529 | |
1530 widget_list_unlock(playlistwin_wlist); | |
1531 } | |
1532 | |
1533 | |
1534 void | |
1535 playlistwin_hide_timer(void) | |
1536 { | |
1537 textbox_set_text(playlistwin_time_min, " "); | |
1538 textbox_set_text(playlistwin_time_sec, " "); | |
1539 } | |
1540 | |
1541 void | |
1542 playlistwin_set_time(gint time, gint length, TimerMode mode) | |
1543 { | |
1544 gchar *text, sign; | |
1545 | |
1546 if (mode == TIMER_REMAINING && length != -1) { | |
1547 time = length - time; | |
1548 sign = '-'; | |
1549 } | |
1550 else | |
1551 sign = ' '; | |
1552 | |
1553 time /= 1000; | |
1554 | |
1555 if (time < 0) | |
1556 time = 0; | |
1557 if (time > 99 * 60) | |
1558 time /= 60; | |
1559 | |
1560 text = g_strdup_printf("%c%-2.2d", sign, time / 60); | |
1561 textbox_set_text(playlistwin_time_min, text); | |
1562 g_free(text); | |
1563 | |
1564 text = g_strdup_printf("%-2.2d", time % 60); | |
1565 textbox_set_text(playlistwin_time_sec, text); | |
1566 g_free(text); | |
1567 } | |
1568 | |
1569 static void | |
1570 playlistwin_drag_motion(GtkWidget * widget, | |
1571 GdkDragContext * context, | |
1572 gint x, gint y, | |
1573 GtkSelectionData * selection_data, | |
1574 guint info, guint time, gpointer user_data) | |
1575 { | |
1576 playlistwin_list->pl_drag_motion = TRUE; | |
1577 playlistwin_list->drag_motion_x = x; | |
1578 playlistwin_list->drag_motion_y = y; | |
1579 playlistwin_update_list(); | |
1580 playlistwin_hint_flag = TRUE; | |
1581 } | |
1582 | |
1583 static void | |
1584 playlistwin_drag_end(GtkWidget * widget, | |
1585 GdkDragContext * context, gpointer user_data) | |
1586 { | |
1587 playlistwin_list->pl_drag_motion = FALSE; | |
1588 playlistwin_hint_flag = FALSE; | |
1589 playlistwin_update_list(); | |
1590 } | |
1591 | |
1592 static void | |
1593 playlistwin_drag_data_received(GtkWidget * widget, | |
1594 GdkDragContext * context, | |
1595 gint x, gint y, | |
1596 GtkSelectionData * | |
1597 selection_data, guint info, | |
1598 guint time, gpointer user_data) | |
1599 { | |
1600 gint pos; | |
1601 | |
1602 g_return_if_fail(selection_data != NULL); | |
1603 | |
1604 if (!selection_data->data) { | |
1605 g_message("Received no DND data!"); | |
1606 return; | |
1607 } | |
1608 | |
1609 if (widget_contains(WIDGET(playlistwin_list), x, y)) { | |
1610 pos = (y - WIDGET(playlistwin_list)->y) / | |
1611 playlistwin_list->pl_fheight + playlistwin_list->pl_first; | |
1612 | |
1613 pos = MIN(pos, playlist_get_length()); | |
1614 playlist_ins_url((gchar *) selection_data->data, pos); | |
1615 } | |
1616 else | |
1617 playlist_add_url((gchar *) selection_data->data); | |
1618 } | |
1619 | |
1620 static void | |
1621 playlistwin_create_widgets(void) | |
1622 { | |
1775 | 1623 gchar *font = NULL, *tmp = NULL; |
1653 | 1624 /* This function creates the custom widgets used by the playlist editor */ |
1625 | |
1626 /* text box for displaying song title in shaded mode */ | |
1627 playlistwin_sinfo = | |
1628 create_textbox(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1775 | 1629 4, 4, playlistwin_get_width() - 35, TRUE, SKIN_TEXT); |
1630 | |
1631 playlistwin_set_sinfo_font(cfg.playlist_font); | |
1653 | 1632 |
1633 if (!cfg.playlist_shaded) | |
1634 widget_hide(WIDGET(playlistwin_sinfo)); | |
1635 | |
1636 /* shade/unshade window push button */ | |
1637 if (cfg.playlist_shaded) | |
1638 playlistwin_shade = | |
1639 create_pbutton(&playlistwin_wlist, playlistwin_bg, | |
1640 playlistwin_gc, playlistwin_get_width() - 21, 3, | |
1641 9, 9, 128, 45, 150, 42, | |
1642 playlistwin_shade_toggle, SKIN_PLEDIT); | |
1643 else | |
1644 playlistwin_shade = | |
1645 create_pbutton(&playlistwin_wlist, playlistwin_bg, | |
1646 playlistwin_gc, playlistwin_get_width() - 21, 3, | |
1647 9, 9, 157, 3, 62, 42, playlistwin_shade_toggle, | |
1648 SKIN_PLEDIT); | |
1649 | |
1650 playlistwin_shade->pb_allow_draw = FALSE; | |
1651 | |
1652 /* close window push button */ | |
1653 playlistwin_close = | |
1654 create_pbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1655 playlistwin_get_width() - 11, 3, 9, 9, | |
1656 cfg.playlist_shaded ? 138 : 167, | |
1657 cfg.playlist_shaded ? 45 : 3, 52, 42, | |
1658 playlistwin_hide, SKIN_PLEDIT); | |
1659 playlistwin_close->pb_allow_draw = FALSE; | |
1660 | |
1661 /* playlist list box */ | |
1662 playlistwin_list = | |
1663 create_playlist_list(&playlistwin_wlist, playlistwin_bg, | |
1664 playlistwin_gc, 12, 20, | |
1665 playlistwin_get_width() - 31, | |
1666 cfg.playlist_height - 58); | |
1667 playlist_list_set_font(cfg.playlist_font); | |
1668 | |
1669 /* playlist list box slider */ | |
1670 playlistwin_slider = | |
1671 create_playlistslider(&playlistwin_wlist, playlistwin_bg, | |
1672 playlistwin_gc, playlistwin_get_width() - 15, | |
1673 20, cfg.playlist_height - 58, playlistwin_list); | |
1674 /* track time (minute) */ | |
1675 playlistwin_time_min = | |
1676 create_textbox(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1677 playlistwin_get_width() - 82, | |
1678 cfg.playlist_height - 15, 15, FALSE, SKIN_TEXT); | |
1679 | |
1680 /* track time (second) */ | |
1681 playlistwin_time_sec = | |
1682 create_textbox(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1683 playlistwin_get_width() - 64, | |
1684 cfg.playlist_height - 15, 10, FALSE, SKIN_TEXT); | |
1685 | |
1686 /* playlist information (current track length / total track length) */ | |
1687 playlistwin_info = | |
1688 create_textbox(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1689 playlistwin_get_width() - 143, | |
1690 cfg.playlist_height - 28, 90, FALSE, SKIN_TEXT); | |
1691 | |
1692 /* mini play control buttons at right bottom corner */ | |
1693 | |
1694 /* rewind button */ | |
1695 playlistwin_srew = | |
1696 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1697 playlistwin_get_width() - 144, | |
1698 cfg.playlist_height - 16, 8, 7, playlist_prev); | |
1699 | |
1700 /* play button */ | |
1701 playlistwin_splay = | |
1702 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1703 playlistwin_get_width() - 138, | |
1704 cfg.playlist_height - 16, 10, 7, mainwin_play_pushed); | |
1705 | |
1706 /* pause button */ | |
1707 playlistwin_spause = | |
1708 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1709 playlistwin_get_width() - 128, | |
1710 cfg.playlist_height - 16, 10, 7, bmp_playback_pause); | |
1711 | |
1712 /* stop button */ | |
1713 playlistwin_sstop = | |
1714 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1715 playlistwin_get_width() - 118, | |
1716 cfg.playlist_height - 16, 9, 7, mainwin_stop_pushed); | |
1717 | |
1718 /* forward button */ | |
1719 playlistwin_sfwd = | |
1720 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1721 playlistwin_get_width() - 109, | |
1722 cfg.playlist_height - 16, 8, 7, playlist_next); | |
1723 | |
1724 /* eject button */ | |
1725 playlistwin_seject = | |
1726 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1727 playlistwin_get_width() - 100, | |
1728 cfg.playlist_height - 16, 9, 7, mainwin_eject_pushed); | |
1729 | |
1730 | |
1731 playlistwin_sscroll_up = | |
1732 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1733 playlistwin_get_width() - 14, | |
1734 cfg.playlist_height - 35, 8, 5, | |
1735 playlistwin_scroll_up_pushed); | |
1736 playlistwin_sscroll_down = | |
1737 create_sbutton(&playlistwin_wlist, playlistwin_bg, playlistwin_gc, | |
1738 playlistwin_get_width() - 14, | |
1739 cfg.playlist_height - 30, 8, 5, | |
1740 playlistwin_scroll_down_pushed); | |
1741 | |
1742 } | |
1743 | |
1744 static void | |
1745 selection_received(GtkWidget * widget, | |
1746 GtkSelectionData * selection_data, gpointer data) | |
1747 { | |
1748 if (selection_data->type == GDK_SELECTION_TYPE_STRING && | |
1749 selection_data->length > 0) | |
1750 playlist_add_url((gchar *) selection_data->data); | |
1751 } | |
1752 | |
1753 static void | |
1754 playlistwin_create_window(void) | |
1755 { | |
1756 GdkPixbuf *icon; | |
1757 | |
1758 playlistwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
1759 gtk_window_set_title(GTK_WINDOW(playlistwin), _("Audacious Playlist Editor")); | |
1760 gtk_window_set_wmclass(GTK_WINDOW(playlistwin), "playlist", "Audacious"); | |
1761 gtk_window_set_role(GTK_WINDOW(playlistwin), "playlist"); | |
1762 gtk_window_set_default_size(GTK_WINDOW(playlistwin), | |
1763 playlistwin_get_width(), | |
1764 playlistwin_get_height()); | |
1765 gtk_window_set_resizable(GTK_WINDOW(playlistwin), TRUE); | |
1766 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
1767 dock_window_list = dock_window_set_decorated(dock_window_list, | |
1768 GTK_WINDOW(playlistwin), | |
1769 cfg.show_wm_decorations); | |
1770 | |
1771 gtk_window_set_transient_for(GTK_WINDOW(playlistwin), | |
1772 GTK_WINDOW(mainwin)); | |
1773 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(playlistwin), TRUE); | |
1774 | |
1775 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) bmp_playlist_icon); | |
1776 gtk_window_set_icon(GTK_WINDOW(playlistwin), icon); | |
1777 g_object_unref(icon); | |
1778 | |
1779 gtk_widget_set_app_paintable(playlistwin, TRUE); | |
1780 | |
1781 if (cfg.playlist_x != -1 && cfg.save_window_position) | |
1782 gtk_window_move(GTK_WINDOW(playlistwin), | |
1783 cfg.playlist_x, cfg.playlist_y); | |
1784 | |
1785 gtk_widget_add_events(playlistwin, GDK_POINTER_MOTION_MASK | | |
1786 GDK_FOCUS_CHANGE_MASK | GDK_BUTTON_MOTION_MASK | | |
1787 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | | |
1788 GDK_SCROLL_MASK | GDK_VISIBILITY_NOTIFY_MASK); | |
1789 gtk_widget_realize(playlistwin); | |
1790 | |
1791 util_set_cursor(playlistwin); | |
1792 | |
1793 g_signal_connect(playlistwin, "delete_event", | |
1794 G_CALLBACK(playlistwin_delete), NULL); | |
1795 g_signal_connect(playlistwin, "button_press_event", | |
1796 G_CALLBACK(playlistwin_press), NULL); | |
1797 g_signal_connect(playlistwin, "button_release_event", | |
1798 G_CALLBACK(playlistwin_release), NULL); | |
1799 g_signal_connect(playlistwin, "scroll_event", | |
1800 G_CALLBACK(playlistwin_scrolled), NULL); | |
1801 g_signal_connect(playlistwin, "motion_notify_event", | |
1802 G_CALLBACK(playlistwin_motion), NULL); | |
1803 g_signal_connect(playlistwin, "enter_notify_event", | |
1804 G_CALLBACK(playlistwin_enter), NULL); | |
1805 g_signal_connect(playlistwin, "leave_notify_event", | |
1806 G_CALLBACK(playlistwin_leave), NULL); | |
1807 g_signal_connect_after(playlistwin, "focus_in_event", | |
1808 G_CALLBACK(playlistwin_focus_in), NULL); | |
1809 g_signal_connect_after(playlistwin, "focus_out_event", | |
1810 G_CALLBACK(playlistwin_focus_out), NULL); | |
1811 g_signal_connect(playlistwin, "configure_event", | |
1812 G_CALLBACK(playlistwin_configure), NULL); | |
1813 g_signal_connect(playlistwin, "style_set", | |
1814 G_CALLBACK(playlistwin_set_back_pixmap), NULL); | |
1815 | |
1816 bmp_drag_dest_set(playlistwin); | |
1817 | |
1818 /* DnD stuff */ | |
1819 g_signal_connect(playlistwin, "drag-leave", | |
1820 G_CALLBACK(playlistwin_drag_end), NULL); | |
1821 g_signal_connect(playlistwin, "drag-data-delete", | |
1822 G_CALLBACK(playlistwin_drag_end), NULL); | |
1823 g_signal_connect(playlistwin, "drag-end", | |
1824 G_CALLBACK(playlistwin_drag_end), NULL); | |
1825 g_signal_connect(playlistwin, "drag-drop", | |
1826 G_CALLBACK(playlistwin_drag_end), NULL); | |
1827 g_signal_connect(playlistwin, "drag-data-received", | |
1828 G_CALLBACK(playlistwin_drag_data_received), NULL); | |
1829 g_signal_connect(playlistwin, "drag-motion", | |
1830 G_CALLBACK(playlistwin_drag_motion), NULL); | |
1831 | |
1832 g_signal_connect(playlistwin, "key_press_event", | |
1833 G_CALLBACK(playlistwin_keypress), NULL); | |
1834 g_signal_connect(playlistwin, "selection_received", | |
1835 G_CALLBACK(selection_received), NULL); | |
1836 | |
1837 playlistwin_set_mask(); | |
1838 } | |
1839 | |
1840 void | |
1841 playlistwin_create_popup_menus(void) | |
1842 { | |
1843 playlistwin_accel = gtk_accel_group_new(); | |
1844 | |
1845 /* playlist window popup menu */ | |
1846 playlistwin_popup_menu = create_menu(playlistwin_popup_menu_entries, | |
1847 G_N_ELEMENTS(playlistwin_popup_menu_entries), | |
1848 playlistwin_accel); | |
1849 | |
1850 pladd_menu = create_menu(pladd_menu_entries, G_N_ELEMENTS(pladd_menu_entries), | |
1851 playlistwin_accel); | |
1852 pldel_menu = create_menu(pldel_menu_entries, G_N_ELEMENTS(pldel_menu_entries), | |
1853 playlistwin_accel); | |
1854 plsel_menu = create_menu(plsel_menu_entries, G_N_ELEMENTS(plsel_menu_entries), | |
1855 playlistwin_accel); | |
1856 plsort_menu = create_menu(plsort_menu_entries, | |
1857 G_N_ELEMENTS(plsort_menu_entries), | |
1858 playlistwin_accel); | |
1859 pllist_menu = create_menu(pllist_menu_entries, G_N_ELEMENTS(pllist_menu_entries), | |
1860 playlistwin_accel); | |
1861 | |
1862 #if 0 | |
1863 make_submenu(playlistwin_popup_menu, "/Playlist", | |
1864 playlistwin_playlist_menu); | |
1865 make_submenu(playlistwin_popup_menu, "/Playback", | |
1866 playlistwin_playback_menu); | |
1867 make_submenu(playlistwin_popup_menu, "/Add", | |
1868 pladd_menu); | |
1869 #endif | |
1870 } | |
1871 | |
1872 void | |
1873 playlistwin_create(void) | |
1874 { | |
1875 playlistwin_create_window(); | |
1876 playlistwin_create_popup_menus(); | |
1877 | |
1878 /* create GC and back pixmap for custom widget to draw on */ | |
1879 playlistwin_gc = gdk_gc_new(playlistwin->window); | |
1880 playlistwin_bg = gdk_pixmap_new(playlistwin->window, | |
1881 playlistwin_get_width(), | |
1882 playlistwin_get_height_unshaded(), -1); | |
1883 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
1884 | |
1885 playlistwin_create_widgets(); | |
1886 playlistwin_update_info(); | |
1887 | |
1888 gtk_window_add_accel_group(GTK_WINDOW(playlistwin), playlistwin_accel); | |
1889 gtk_window_add_accel_group(GTK_WINDOW(playlistwin), mainwin_accel); | |
1890 } | |
1891 | |
1892 | |
1893 void | |
1894 playlistwin_show(void) | |
1895 { | |
1896 GtkWidget *item; | |
1897 | |
1898 item = gtk_item_factory_get_widget(mainwin_view_menu, | |
1899 "/Show Playlist Editor"); | |
1900 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), TRUE); | |
1901 | |
1902 tbutton_set_toggled(mainwin_pl, TRUE); | |
1903 cfg.playlist_visible = TRUE; | |
1904 | |
1905 playlistwin_set_toprow(0); | |
1906 playlist_check_pos_current(); | |
1907 | |
1908 gtk_widget_show(playlistwin); | |
1909 } | |
1910 | |
1911 void | |
1912 playlistwin_hide(void) | |
1913 { | |
1914 GtkWidget *item; | |
1915 | |
1916 item = gtk_item_factory_get_widget(mainwin_view_menu, | |
1917 "/Show Playlist Editor"); | |
1918 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), FALSE); | |
1919 | |
1920 gtk_widget_hide(playlistwin); | |
1921 tbutton_set_toggled(mainwin_pl, FALSE); | |
1922 cfg.playlist_visible = FALSE; | |
1923 | |
1924 gtk_window_present(GTK_WINDOW(mainwin)); | |
1925 gtk_widget_grab_focus(mainwin); | |
1926 } | |
1927 | |
1928 | |
1929 static void | |
1930 plsort_menu_callback(gpointer data, | |
1931 guint action, | |
1932 GtkWidget * widget) | |
1933 { | |
1934 switch (action) { | |
1935 case PLAYLISTWIN_SORT_BYPLAYLIST: | |
1936 playlist_sort(PLAYLIST_SORT_PLAYLIST); | |
1937 playlistwin_update_list(); | |
1938 break; | |
1939 case PLAYLISTWIN_SORT_BYTRACK: | |
1940 playlist_sort(PLAYLIST_SORT_TRACK); | |
1941 playlistwin_update_list(); | |
1942 break; | |
1943 case PLAYLISTWIN_SORT_BYTITLE: | |
1944 playlist_sort(PLAYLIST_SORT_TITLE); | |
1945 playlistwin_update_list(); | |
1946 break; | |
1947 case PLAYLISTWIN_SORT_BYARTIST: | |
1948 playlist_sort(PLAYLIST_SORT_ARTIST); | |
1949 playlistwin_update_list(); | |
1950 break; | |
1951 case PLAYLISTWIN_SORT_BYPATH: | |
1952 playlist_sort(PLAYLIST_SORT_PATH); | |
1953 playlistwin_update_list(); | |
1954 break; | |
1955 case PLAYLISTWIN_SORT_BYDATE: | |
1956 playlist_sort(PLAYLIST_SORT_DATE); | |
1957 playlistwin_update_list(); | |
1958 break; | |
1959 case PLAYLISTWIN_SORT_BYFILENAME: | |
1960 playlist_sort(PLAYLIST_SORT_FILENAME); | |
1961 playlistwin_update_list(); | |
1962 break; | |
1963 case PLAYLISTWIN_SORT_SEL_BYPLAYLIST: | |
1964 playlist_sort_selected(PLAYLIST_SORT_PLAYLIST); | |
1965 playlistwin_update_list(); | |
1966 break; | |
1967 case PLAYLISTWIN_SORT_SEL_BYTRACK: | |
1968 playlist_sort_selected(PLAYLIST_SORT_TRACK); | |
1969 playlistwin_update_list(); | |
1970 break; | |
1971 case PLAYLISTWIN_SORT_SEL_BYTITLE: | |
1972 playlist_sort_selected(PLAYLIST_SORT_TITLE); | |
1973 playlistwin_update_list(); | |
1974 break; | |
1975 case PLAYLISTWIN_SORT_SEL_BYARTIST: | |
1976 playlist_sort_selected(PLAYLIST_SORT_ARTIST); | |
1977 playlistwin_update_list(); | |
1978 break; | |
1979 case PLAYLISTWIN_SORT_SEL_BYFILENAME: | |
1980 playlist_sort_selected(PLAYLIST_SORT_FILENAME); | |
1981 playlistwin_update_list(); | |
1982 break; | |
1983 case PLAYLISTWIN_SORT_SEL_BYPATH: | |
1984 playlist_sort_selected(PLAYLIST_SORT_PATH); | |
1985 playlistwin_update_list(); | |
1986 break; | |
1987 case PLAYLISTWIN_SORT_SEL_BYDATE: | |
1988 playlist_sort_selected(PLAYLIST_SORT_DATE); | |
1989 playlistwin_update_list(); | |
1990 break; | |
1991 case PLAYLISTWIN_SORT_REVERSE: | |
1992 playlist_reverse(); | |
1993 playlistwin_update_list(); | |
1994 break; | |
1995 case PLAYLISTWIN_SORT_RANDOMIZE: | |
1996 playlist_random(); | |
1997 playlistwin_update_list(); | |
1998 break; | |
1999 } | |
2000 } | |
2001 | |
2002 static void | |
2003 playlistwin_sub_menu_callback(gpointer data, | |
2004 guint action, | |
2005 GtkWidget * widget) | |
2006 { | |
2007 switch (action) { | |
2008 case PLIST_NEW: | |
2009 playlist_set_current_name(NULL); | |
2010 playlist_clear(); | |
2011 mainwin_clear_song_info(); | |
2012 mainwin_set_info_text(); | |
2013 break; | |
2014 case PLIST_SAVE: | |
2015 playlistwin_select_playlist_to_save(playlist_get_current_name()); | |
2016 break; | |
2017 case PLIST_DEFAULTSAVE: | |
2018 playlist_save(bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
2019 break; | |
2020 case PLIST_SAVE_AS: | |
2021 playlistwin_select_playlist_to_save(playlist_get_current_name()); | |
2022 break; | |
2023 case PLIST_LOAD: | |
2024 playlistwin_select_playlist_to_load(playlist_get_current_name()); | |
2025 break; | |
2026 case SEL_INV: | |
2027 playlistwin_inverse_selection(); | |
2028 break; | |
2029 case SEL_ZERO: | |
2030 playlistwin_select_none(); | |
2031 break; | |
2032 case SEL_ALL: | |
2033 playlistwin_select_all(); | |
2034 break; | |
2035 case SUB_ALL: | |
2036 playlist_clear(); | |
2037 mainwin_clear_song_info(); | |
2038 mainwin_set_info_text(); | |
2039 break; | |
2040 case SUB_CROP: | |
2041 playlist_delete(TRUE); | |
2042 break; | |
2043 case SUB_SELECTED: | |
2044 playlist_delete(FALSE); | |
2045 break; | |
2046 case SUB_DUPLICATE_BYTITLE: | |
2047 playlist_remove_duplicates(PLAYLIST_DUPS_TITLE); | |
2048 break; | |
2049 case SUB_DUPLICATE_BYFILENAME: | |
2050 playlist_remove_duplicates(PLAYLIST_DUPS_FILENAME); | |
2051 break; | |
2052 case SUB_DUPLICATE_BYPATH: | |
2053 playlist_remove_duplicates(PLAYLIST_DUPS_PATH); | |
2054 break; | |
2055 case PLAYLISTWIN_REMOVE_DEAD_FILES: | |
2056 playlist_remove_dead_files(); | |
2057 break; | |
2058 case PLAYLISTWIN_REFRESH: | |
2059 playlist_read_info_selection(); | |
2060 playlistwin_update_list(); | |
2061 break; | |
2062 } | |
2063 } | |
2064 | |
2065 static void | |
2066 playlistwin_popup_menu_callback(gpointer data, | |
2067 guint action, | |
2068 GtkWidget * widget) | |
2069 { | |
2070 extern GtkWidget *filepopupbutton; | |
2071 | |
2072 switch (action) { | |
2073 case ADD_FILES: | |
2074 playlistwin_show_filebrowser(); | |
2075 break; | |
2076 case CLOSE_PL_WINDOW: | |
2077 playlistwin_hide(); | |
2078 break; | |
2079 case MISC_FILEINFO: | |
2080 playlistwin_fileinfo(); | |
2081 break; | |
2082 case SEL_LOOKUP: | |
2083 playlist_read_info_selection(); | |
2084 break; | |
2085 case MISC_QUEUE: | |
2086 playlist_queue(); | |
2087 break; | |
2088 case PLIST_CQUEUE: | |
2089 playlist_clear_queue(); | |
2090 break; | |
2091 case PLIST_JTT: | |
2092 mainwin_jump_to_time(); | |
2093 break; | |
2094 case PLIST_JTF: | |
2095 mainwin_jump_to_file(); | |
2096 break; | |
2097 case MISC_FILEPOPUP: | |
2098 cfg.show_filepopup_for_tuple = gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget)); | |
2099 if(filepopupbutton != NULL){ | |
2100 gtk_signal_emit_by_name(GTK_OBJECT(filepopupbutton), "realize"); | |
2101 } | |
2102 break; | |
2103 | |
2104 } | |
2105 } |