Mercurial > audlegacy
annotate audacious/ui_playlist.c @ 1800:61f531908dd0 trunk
[svn] - Put ()'s around the time in the shaded playlist text.
author | nhjm449 |
---|---|
date | Wed, 04 Oct 2006 20:17:07 -0700 |
parents | 7d32dff734da |
children | 8b71a2b0577b |
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[] = { | |
245 {N_("/Randomize List"), NULL, plsort_menu_callback, | |
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; |
1775 | 381 TitleInput *tuple = NULL; |
1653 | 382 |
383 pos = playlist_get_position(); | |
1775 | 384 tuple = playlist_get_tuple(pos); |
385 | |
386 if(tuple){ | |
387 title = xmms_get_titlestring(tuple->formatter ? tuple->formatter : xmms_get_gentitle_format(), tuple); | |
388 } | |
389 else { | |
390 title = playlist_get_songtitle(pos); | |
391 } | |
1653 | 392 |
393 if (!title) { | |
394 textbox_set_text(playlistwin_sinfo, ""); | |
395 return; | |
396 } | |
397 | |
1775 | 398 convert_title_text(title); |
399 | |
400 time = playlist_get_songtime(pos); | |
401 | |
1653 | 402 if (cfg.show_numbers_in_pl) |
403 posstr = g_strdup_printf("%d. ", pos + 1); | |
404 else | |
405 posstr = g_strdup(""); | |
406 | |
407 if (time != -1) { | |
1800
61f531908dd0
[svn] - Put ()'s around the time in the shaded playlist text.
nhjm449
parents:
1775
diff
changeset
|
408 timestr = g_strdup_printf(" (%d:%-2.2d)", time / 60000, |
1775 | 409 (time / 1000) % 60); |
1653 | 410 } |
411 else | |
412 timestr = g_strdup(""); | |
413 | |
1775 | 414 info = g_strdup_printf("%s%s%s", posstr, title, timestr); |
1653 | 415 |
416 g_free(posstr); | |
417 g_free(title); | |
418 g_free(timestr); | |
419 | |
1775 | 420 textbox_set_text(playlistwin_sinfo, info ? info : ""); |
1653 | 421 g_free(info); |
422 } | |
423 | |
424 gboolean | |
425 playlistwin_item_visible(gint index) | |
426 { | |
427 if (index >= playlistwin_list->pl_first | |
428 && index < | |
429 (playlistwin_list->pl_first + playlistwin_list->pl_num_visible)) | |
430 return TRUE; | |
431 return FALSE; | |
432 } | |
433 | |
434 gint | |
435 playlistwin_get_toprow(void) | |
436 { | |
437 if (playlistwin_list) | |
438 return (playlistwin_list->pl_first); | |
439 return (-1); | |
440 } | |
441 | |
442 void | |
443 playlistwin_set_toprow(gint toprow) | |
444 { | |
445 if (playlistwin_list) | |
446 playlistwin_list->pl_first = toprow; | |
447 playlistwin_update_list(); | |
448 } | |
449 | |
450 void | |
451 playlistwin_update_list(void) | |
452 { | |
453 g_return_if_fail(playlistwin_list != NULL); | |
454 | |
455 widget_draw(WIDGET(playlistwin_list)); | |
456 widget_draw(WIDGET(playlistwin_slider)); | |
457 playlistwin_update_info(); | |
458 playlistwin_update_sinfo(); | |
459 /* mainwin_update_jtf(); */ | |
460 } | |
461 | |
462 #if 0 | |
463 static void | |
464 playlistwin_redraw_list(void) | |
465 { | |
466 g_return_if_fail(playlistwin_list != NULL); | |
467 | |
468 draw_widget(playlistwin_list); | |
469 draw_widget(playlistwin_slider); | |
470 } | |
471 #endif | |
472 | |
473 static void | |
474 playlistwin_set_mask(void) | |
475 { | |
476 GdkGC *gc; | |
477 GdkColor pattern; | |
478 | |
479 if (playlistwin_mask) | |
480 g_object_unref(playlistwin_mask); | |
481 | |
482 playlistwin_mask = | |
483 gdk_pixmap_new(playlistwin->window, playlistwin_get_width(), | |
484 playlistwin_get_height(), 1); | |
485 gc = gdk_gc_new(playlistwin_mask); | |
486 pattern.pixel = 1; | |
487 gdk_gc_set_foreground(gc, &pattern); | |
488 gdk_draw_rectangle(playlistwin_mask, gc, TRUE, 0, 0, | |
489 playlistwin_get_width(), playlistwin_get_height()); | |
490 gdk_gc_destroy(gc); | |
491 | |
492 gtk_widget_shape_combine_mask(playlistwin, playlistwin_mask, 0, 0); | |
493 } | |
494 | |
495 static void | |
496 playlistwin_set_geometry_hints(gboolean shaded) | |
497 { | |
498 GdkGeometry geometry; | |
499 GdkWindowHints mask; | |
500 | |
501 geometry.min_width = PLAYLISTWIN_MIN_WIDTH; | |
502 geometry.max_width = G_MAXUINT16; | |
503 | |
504 geometry.width_inc = PLAYLISTWIN_WIDTH_SNAP; | |
505 geometry.height_inc = PLAYLISTWIN_HEIGHT_SNAP; | |
506 | |
507 if (shaded) { | |
508 geometry.min_height = PLAYLISTWIN_SHADED_HEIGHT; | |
509 geometry.max_height = PLAYLISTWIN_SHADED_HEIGHT; | |
510 geometry.base_height = PLAYLISTWIN_SHADED_HEIGHT; | |
511 } | |
512 else { | |
513 geometry.min_height = PLAYLISTWIN_MIN_HEIGHT; | |
514 geometry.max_height = G_MAXUINT16; | |
515 } | |
516 | |
517 mask = GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE | GDK_HINT_RESIZE_INC; | |
518 | |
519 gtk_window_set_geometry_hints(GTK_WINDOW(playlistwin), | |
520 playlistwin, &geometry, mask); | |
521 } | |
522 | |
523 void | |
1775 | 524 playlistwin_set_sinfo_font(gchar *font) |
525 { | |
526 gchar *tmp = NULL, *tmp2 = NULL; | |
527 | |
528 if(!font) | |
529 return; | |
530 | |
531 tmp = g_strdup(font); | |
532 if(!tmp) | |
533 return; | |
534 | |
535 *strrchr(tmp, ' ') = '\0'; | |
536 tmp2 = g_strdup_printf("%s 8", tmp); | |
537 if(!tmp2) | |
538 return; | |
539 textbox_set_xfont(playlistwin_sinfo, cfg.mainwin_use_xfont, tmp2); | |
540 | |
541 g_free(tmp); g_free(tmp2); | |
542 } | |
543 | |
544 void | |
545 playlistwin_set_sinfo_scroll(gboolean scroll) | |
546 { | |
547 GtkWidget *item; | |
548 | |
549 if(playlistwin_is_shaded()) | |
550 textbox_set_scroll(playlistwin_sinfo, cfg.autoscroll); | |
551 else | |
552 textbox_set_scroll(playlistwin_sinfo, FALSE); | |
553 } | |
554 | |
555 void | |
1653 | 556 playlistwin_set_shade(gboolean shaded) |
557 { | |
558 cfg.playlist_shaded = shaded; | |
559 | |
560 if (shaded) { | |
1775 | 561 playlistwin_set_sinfo_font(cfg.playlist_font); |
562 playlistwin_set_sinfo_scroll(cfg.autoscroll); | |
1653 | 563 widget_show(WIDGET(playlistwin_sinfo)); |
564 playlistwin_shade->pb_nx = 128; | |
565 playlistwin_shade->pb_ny = 45; | |
566 playlistwin_shade->pb_px = 150; | |
567 playlistwin_shade->pb_py = 42; | |
568 playlistwin_close->pb_nx = 138; | |
569 playlistwin_close->pb_ny = 45; | |
570 } | |
571 else { | |
572 widget_hide(WIDGET(playlistwin_sinfo)); | |
1775 | 573 playlistwin_set_sinfo_scroll(FALSE); |
1653 | 574 playlistwin_shade->pb_nx = 157; |
575 playlistwin_shade->pb_ny = 3; | |
576 playlistwin_shade->pb_px = 62; | |
577 playlistwin_shade->pb_py = 42; | |
578 playlistwin_close->pb_nx = 167; | |
579 playlistwin_close->pb_ny = 3; | |
580 } | |
581 | |
582 dock_shade(dock_window_list, GTK_WINDOW(playlistwin), | |
583 playlistwin_get_height()); | |
584 | |
585 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
586 | |
587 gtk_window_resize(GTK_WINDOW(playlistwin), | |
588 playlistwin_get_width(), | |
589 playlistwin_get_height()); | |
590 | |
591 playlistwin_set_mask(); | |
592 | |
593 widget_draw(WIDGET(playlistwin_list)); | |
594 widget_draw(WIDGET(playlistwin_slider)); | |
595 | |
596 draw_playlist_window(TRUE); | |
597 } | |
598 | |
599 static void | |
600 playlistwin_set_shade_menu(gboolean shaded) | |
601 { | |
602 GtkWidget *item; | |
603 | |
604 item = gtk_item_factory_get_widget(mainwin_view_menu, | |
605 "/Roll up Playlist Editor"); | |
606 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), shaded); | |
607 | |
608 playlistwin_set_shade(shaded); | |
1775 | 609 playlistwin_update_list(); |
1653 | 610 } |
611 | |
612 void | |
613 playlistwin_shade_toggle(void) | |
614 { | |
615 playlistwin_set_shade_menu(!cfg.playlist_shaded); | |
616 } | |
617 | |
618 static void | |
619 playlistwin_release(GtkWidget * widget, | |
620 GdkEventButton * event, | |
621 gpointer callback_data) | |
622 { | |
623 if (event->button == 3) | |
624 return; | |
625 | |
626 gdk_pointer_ungrab(GDK_CURRENT_TIME); | |
627 playlistwin_resizing = FALSE; | |
628 gdk_flush(); | |
629 | |
630 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
631 { | |
632 dock_move_release(GTK_WINDOW(playlistwin)); | |
633 | |
634 if (cfg.playlist_transparent) | |
635 playlistwin_update_list(); | |
636 } | |
637 else | |
638 { | |
639 handle_release_cb(playlistwin_wlist, widget, event); | |
640 draw_playlist_window(FALSE); | |
641 } | |
642 } | |
643 | |
644 void | |
645 playlistwin_scroll(gint num) | |
646 { | |
647 playlistwin_list->pl_first += num; | |
648 playlistwin_update_list(); | |
649 } | |
650 | |
651 void | |
652 playlistwin_scroll_up_pushed(void) | |
653 { | |
654 playlistwin_list->pl_first -= 3; | |
655 playlistwin_update_list(); | |
656 } | |
657 | |
658 void | |
659 playlistwin_scroll_down_pushed(void) | |
660 { | |
661 playlistwin_list->pl_first += 3; | |
662 playlistwin_update_list(); | |
663 } | |
664 | |
665 static void | |
666 playlistwin_select_all(void) | |
667 { | |
668 playlist_select_all(TRUE); | |
669 playlistwin_list->pl_prev_selected = 0; | |
670 playlistwin_list->pl_prev_min = 0; | |
671 playlistwin_list->pl_prev_max = playlist_get_length() - 1; | |
672 playlistwin_update_list(); | |
673 } | |
674 | |
675 static void | |
676 playlistwin_select_none(void) | |
677 { | |
678 playlist_select_all(FALSE); | |
679 playlistwin_list->pl_prev_selected = -1; | |
680 playlistwin_list->pl_prev_min = -1; | |
681 playlistwin_update_list(); | |
682 } | |
683 | |
684 static void | |
685 playlistwin_inverse_selection(void) | |
686 { | |
687 playlist_select_invert_all(); | |
688 playlistwin_list->pl_prev_selected = -1; | |
689 playlistwin_list->pl_prev_min = -1; | |
690 playlistwin_update_list(); | |
691 } | |
692 | |
693 static void | |
694 playlistwin_resize(gint width, gint height) | |
695 { | |
696 gboolean redraw; | |
697 | |
698 g_return_if_fail(width > 0 && height > 0); | |
699 | |
700 cfg.playlist_width = width; | |
701 | |
702 if (!cfg.playlist_shaded) | |
703 cfg.playlist_height = height; | |
704 else | |
705 height = cfg.playlist_height; | |
706 | |
707 /* FIXME: why the fsck are we doing this manually? */ | |
708 /* adjust widget positions and sizes */ | |
709 | |
710 widget_resize(WIDGET(playlistwin_list), width - 31, height - 58); | |
711 | |
712 widget_move(WIDGET(playlistwin_slider), width - 15, 20); | |
713 widget_resize(WIDGET(playlistwin_slider), 8, height - 58); | |
714 | |
715 widget_resize(WIDGET(playlistwin_sinfo), width - 35, 14); | |
716 playlistwin_update_sinfo(); | |
717 | |
718 widget_move(WIDGET(playlistwin_shade), width - 21, 3); | |
719 widget_move(WIDGET(playlistwin_close), width - 11, 3); | |
720 widget_move(WIDGET(playlistwin_time_min), width - 82, height - 15); | |
721 widget_move(WIDGET(playlistwin_time_sec), width - 64, height - 15); | |
722 widget_move(WIDGET(playlistwin_info), width - 143, height - 28); | |
723 widget_move(WIDGET(playlistwin_srew), width - 144, height - 16); | |
724 widget_move(WIDGET(playlistwin_splay), width - 138, height - 16); | |
725 widget_move(WIDGET(playlistwin_spause), width - 128, height - 16); | |
726 widget_move(WIDGET(playlistwin_sstop), width - 118, height - 16); | |
727 widget_move(WIDGET(playlistwin_sfwd), width - 109, height - 16); | |
728 widget_move(WIDGET(playlistwin_seject), width - 100, height - 16); | |
729 widget_move(WIDGET(playlistwin_sscroll_up), width - 14, height - 35); | |
730 widget_move(WIDGET(playlistwin_sscroll_down), width - 14, height - 30); | |
731 | |
732 g_object_unref(playlistwin_bg); | |
733 playlistwin_bg = gdk_pixmap_new(playlistwin->window, width, height, -1); | |
734 playlistwin_set_mask(); | |
735 | |
736 widget_list_lock(playlistwin_wlist); | |
737 | |
738 widget_list_change_pixmap(playlistwin_wlist, playlistwin_bg); | |
739 playlistwin_draw_frame(); | |
740 widget_list_draw(playlistwin_wlist, &redraw, TRUE); | |
741 widget_list_clear_redraw(playlistwin_wlist); | |
742 | |
743 widget_list_unlock(playlistwin_wlist); | |
744 | |
745 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
746 gdk_window_clear(playlistwin->window); | |
747 } | |
748 | |
749 | |
750 | |
751 static void | |
752 playlistwin_motion(GtkWidget * widget, | |
753 GdkEventMotion * event, | |
754 gpointer callback_data) | |
755 { | |
756 GdkEvent *gevent; | |
757 | |
758 if (dock_is_moving(GTK_WINDOW(playlistwin))) { | |
759 dock_move_motion(GTK_WINDOW(playlistwin), event); | |
760 } | |
761 else { | |
762 handle_motion_cb(playlistwin_wlist, widget, event); | |
763 draw_playlist_window(FALSE); | |
764 } | |
765 gdk_flush(); | |
766 | |
767 while ((gevent = gdk_event_get()) != NULL) gdk_event_free(gevent); | |
768 } | |
769 | |
770 static void | |
771 playlistwin_enter(GtkWidget * widget, | |
772 GdkEventMotion * event, | |
773 gpointer callback_data) | |
774 { | |
775 playlistwin_list->pl_tooltips = TRUE; | |
776 } | |
777 | |
778 static void | |
779 playlistwin_leave(GtkWidget * widget, | |
780 GdkEventMotion * event, | |
781 gpointer callback_data) | |
782 { | |
783 playlistwin_list->pl_tooltips = FALSE; | |
784 } | |
785 | |
786 static void | |
787 playlistwin_show_filebrowser(void) | |
788 { | |
789 util_run_filebrowser(NO_PLAY_BUTTON); | |
790 } | |
791 | |
792 #if 0 | |
793 static void | |
794 playlistwin_add_dir_handler(const gchar * dir) | |
795 { | |
796 g_free(cfg.filesel_path); | |
797 cfg.filesel_path = g_strdup(dir); | |
798 playlist_add_dir(dir); | |
799 } | |
800 #endif | |
801 | |
802 static void | |
803 playlistwin_fileinfo(void) | |
804 { | |
805 /* Show the first selected file, or the current file if nothing is | |
806 * selected */ | |
807 GList *list = playlist_get_selected(); | |
808 if (list) { | |
809 playlist_fileinfo(GPOINTER_TO_INT(list->data)); | |
810 g_list_free(list); | |
811 } | |
812 else | |
813 playlist_fileinfo_current(); | |
814 } | |
815 | |
816 static void | |
817 menu_set_item_sensitive(GtkItemFactory * item_factory, | |
818 const gchar * path, | |
819 gboolean sensitive) | |
820 { | |
821 GtkWidget *item = gtk_item_factory_get_widget(item_factory, path); | |
822 gtk_widget_set_sensitive(item, sensitive); | |
823 } | |
824 | |
825 /* FIXME: broken */ | |
826 static void | |
827 playlistwin_set_sensitive_sortmenu(void) | |
828 { | |
829 gboolean set = playlist_get_num_selected() > 1; | |
830 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Title", set); | |
831 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Filename", set); | |
832 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Path + Filename", set); | |
833 menu_set_item_sensitive(plsort_menu, "/Sort Selection/By Date", set); | |
834 } | |
835 | |
836 static void | |
837 show_playlist_save_error(GtkWindow * parent, | |
838 const gchar * filename) | |
839 { | |
840 GtkWidget *dialog; | |
841 | |
842 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
843 g_return_if_fail(filename != NULL); | |
844 | |
845 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
846 GTK_DIALOG_DESTROY_WITH_PARENT, | |
847 GTK_MESSAGE_ERROR, | |
848 GTK_BUTTONS_OK, | |
849 _("Error writing playlist \"%s\": %s"), | |
850 filename, strerror(errno)); | |
851 | |
852 gtk_dialog_run(GTK_DIALOG(dialog)); | |
853 gtk_widget_destroy(dialog); | |
854 } | |
855 | |
856 static gboolean | |
857 show_playlist_overwrite_prompt(GtkWindow * parent, | |
858 const gchar * filename) | |
859 { | |
860 GtkWidget *dialog; | |
861 gint result; | |
862 | |
863 g_return_val_if_fail(GTK_IS_WINDOW(parent), FALSE); | |
864 g_return_val_if_fail(filename != NULL, FALSE); | |
865 | |
866 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
867 GTK_DIALOG_DESTROY_WITH_PARENT, | |
868 GTK_MESSAGE_QUESTION, | |
869 GTK_BUTTONS_YES_NO, | |
870 _("%s already exist. Continue?"), | |
871 filename); | |
872 | |
873 result = gtk_dialog_run(GTK_DIALOG(dialog)); | |
874 gtk_widget_destroy(dialog); | |
875 | |
876 return (result == GTK_RESPONSE_YES); | |
877 } | |
878 | |
879 static void | |
880 show_playlist_save_format_error(GtkWindow * parent, | |
881 const gchar * filename) | |
882 { | |
883 const gchar *markup = | |
884 N_("<b><big>Unable to save playlist.</big></b>\n\n" | |
885 "Unknown file type for '%s'.\n"); | |
886 | |
887 GtkWidget *dialog; | |
888 | |
889 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
890 g_return_if_fail(filename != NULL); | |
891 | |
892 dialog = | |
893 gtk_message_dialog_new_with_markup(GTK_WINDOW(parent), | |
894 GTK_DIALOG_DESTROY_WITH_PARENT, | |
895 GTK_MESSAGE_ERROR, | |
896 GTK_BUTTONS_OK, | |
897 _(markup), | |
898 filename); | |
899 gtk_dialog_run(GTK_DIALOG(dialog)); | |
900 gtk_widget_destroy(dialog); | |
901 } | |
902 | |
903 static void | |
904 playlistwin_save_playlist(const gchar * filename) | |
905 { | |
906 PlaylistContainer *plc; | |
907 gchar *ext = strrchr(filename, '.') + 1; | |
908 | |
909 plc = playlist_container_find(ext); | |
910 if (plc == NULL) { | |
911 show_playlist_save_format_error(GTK_WINDOW(playlistwin), filename); | |
912 return; | |
913 } | |
914 | |
915 str_replace_in(&cfg.playlist_path, g_path_get_dirname(filename)); | |
916 | |
917 if (g_file_test(filename, G_FILE_TEST_IS_REGULAR)) | |
918 if (!show_playlist_overwrite_prompt(GTK_WINDOW(playlistwin), filename)) | |
919 return; | |
920 | |
921 if (!playlist_save(filename)) | |
922 show_playlist_save_error(GTK_WINDOW(playlistwin), filename); | |
923 } | |
924 | |
925 #if 0 | |
926 static void | |
927 playlistwin_save_current(void) | |
928 { | |
929 const gchar *filename; | |
930 | |
931 if (!(filename = playlist_get_current_name())) | |
932 return; | |
933 | |
934 playlistwin_save_playlist(filename); | |
935 } | |
936 #endif | |
937 | |
938 static void | |
939 playlistwin_load_playlist(const gchar * filename) | |
940 { | |
941 g_return_if_fail(filename != NULL); | |
942 | |
943 str_replace_in(&cfg.playlist_path, g_strdup(filename)); | |
944 | |
945 playlist_clear(); | |
946 mainwin_clear_song_info(); | |
947 mainwin_set_info_text(); | |
948 | |
949 playlist_load(filename); | |
950 playlist_set_current_name(filename); | |
951 } | |
952 | |
953 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
|
954 playlist_file_selection_load(const gchar * title, |
1653 | 955 const gchar * default_filename) |
956 { | |
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
|
957 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
|
958 GtkWidget *button; |
1653 | 959 gchar *filename; |
960 | |
961 g_return_val_if_fail(title != NULL, NULL); | |
962 | |
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
|
963 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
|
964 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
|
965 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
|
966 |
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 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
|
968 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
|
969 default_filename); |
1653 | 970 |
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
|
971 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
|
972 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
|
973 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
|
974 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
1653 | 975 |
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
|
976 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
|
977 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
|
978 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
|
979 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
|
980 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
|
981 } |
1653 | 982 |
983 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) | |
984 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); | |
985 else | |
986 filename = NULL; | |
987 | |
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
|
988 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
|
989 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
|
990 } |
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 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
|
993 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
|
994 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
|
995 { |
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 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
|
997 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
|
998 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
|
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 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
|
1001 |
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 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
|
1003 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
|
1004 GTK_FILE_CHOOSER_ACTION_SAVE, NULL, NULL); |
1653 | 1005 |
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
|
1006 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
|
1007 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
|
1008 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
|
1009 |
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 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
|
1011 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
|
1012 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
|
1013 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
|
1014 |
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 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
|
1016 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
|
1017 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
|
1018 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
|
1019 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
|
1020 } |
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
|
1021 |
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
|
1022 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
|
1023 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
|
1024 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
|
1025 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
|
1026 |
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
|
1027 gtk_widget_hide(dialog); |
1653 | 1028 return filename; |
1029 } | |
1030 | |
1031 void | |
1032 playlistwin_select_playlist_to_load(const gchar * default_filename) | |
1033 { | |
1034 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
|
1035 playlist_file_selection_load(_("Load Playlist"), default_filename); |
1653 | 1036 |
1037 if (filename) { | |
1038 playlistwin_load_playlist(filename); | |
1039 g_free(filename); | |
1040 } | |
1041 } | |
1042 | |
1043 static void | |
1044 playlistwin_select_playlist_to_save(const gchar * default_filename) | |
1045 { | |
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
|
1046 gchar *dot = NULL, *basename = NULL; |
1653 | 1047 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
|
1048 playlist_file_selection_save(_("Save Playlist"), default_filename); |
1653 | 1049 |
1050 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
|
1051 /* 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
|
1052 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
|
1053 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
|
1054 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
|
1055 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
|
1056 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
|
1057 g_free(oldname); |
1653 | 1058 } |
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
|
1059 g_free(basename); |
1653 | 1060 |
1061 playlistwin_save_playlist(filename); | |
1062 g_free(filename); | |
1063 } | |
1064 } | |
1065 | |
1066 static gboolean | |
1067 inside_sensitive_widgets(gint x, gint y) | |
1068 { | |
1069 return (widget_contains(WIDGET(playlistwin_list), x, y) || | |
1070 widget_contains(WIDGET(playlistwin_slider), x, y) || | |
1071 widget_contains(WIDGET(playlistwin_close), x, y) || | |
1072 widget_contains(WIDGET(playlistwin_shade), x, y) || | |
1073 widget_contains(WIDGET(playlistwin_time_min), x, y) || | |
1074 widget_contains(WIDGET(playlistwin_time_sec), x, y) || | |
1075 widget_contains(WIDGET(playlistwin_info), x, y) || | |
1076 widget_contains(WIDGET(playlistwin_srew), x, y) || | |
1077 widget_contains(WIDGET(playlistwin_splay), x, y) || | |
1078 widget_contains(WIDGET(playlistwin_spause), x, y) || | |
1079 widget_contains(WIDGET(playlistwin_sstop), x, y) || | |
1080 widget_contains(WIDGET(playlistwin_sfwd), x, y) || | |
1081 widget_contains(WIDGET(playlistwin_seject), x, y) || | |
1082 widget_contains(WIDGET(playlistwin_sscroll_up), x, y) || | |
1083 widget_contains(WIDGET(playlistwin_sscroll_down), x, y)); | |
1084 } | |
1085 | |
1086 #define REGION_L(x1,x2,y1,y2) \ | |
1087 (event->x >= (x1) && event->x < (x2) && \ | |
1088 event->y >= cfg.playlist_height - (y1) && \ | |
1089 event->y < cfg.playlist_height - (y2)) | |
1090 | |
1091 #define REGION_R(x1,x2,y1,y2) \ | |
1092 (event->x >= playlistwin_get_width() - (x1) && \ | |
1093 event->x < playlistwin_get_width() - (x2) && \ | |
1094 event->y >= cfg.playlist_height - (y1) && \ | |
1095 event->y < cfg.playlist_height - (y2)) | |
1096 | |
1097 static void | |
1098 playlistwin_scrolled(GtkWidget * widget, | |
1099 GdkEventScroll * event, | |
1100 gpointer callback_data) | |
1101 { | |
1102 | |
1103 if (event->direction == GDK_SCROLL_DOWN) | |
1104 playlistwin_scroll(cfg.scroll_pl_by); | |
1105 | |
1106 if (event->direction == GDK_SCROLL_UP) | |
1107 playlistwin_scroll(-cfg.scroll_pl_by); | |
1108 | |
1109 } | |
1110 | |
1111 | |
1112 | |
1113 | |
1114 static gboolean | |
1115 playlistwin_press(GtkWidget * widget, | |
1116 GdkEventButton * event, | |
1117 gpointer callback_data) | |
1118 { | |
1119 gboolean grab = TRUE; | |
1120 gint xpos, ypos; | |
1121 GtkWidget *_menu; | |
1122 GtkRequisition req; | |
1123 | |
1124 gtk_window_get_position(GTK_WINDOW(playlistwin), &xpos, &ypos); | |
1125 | |
1126 if (event->button == 1 && !cfg.show_wm_decorations && | |
1127 ((!cfg.playlist_shaded && | |
1128 event->x > playlistwin_get_width() - 20 && | |
1129 event->y > cfg.playlist_height - 20) || | |
1130 (cfg.playlist_shaded && | |
1131 event->x >= playlistwin_get_width() - 31 && | |
1132 event->x < playlistwin_get_width() - 22))) { | |
1133 | |
1134 /* NOTE: Workaround for bug #214 */ | |
1135 if (event->type != GDK_2BUTTON_PRESS && | |
1136 event->type != GDK_3BUTTON_PRESS) { | |
1137 /* resize area */ | |
1138 playlistwin_resizing = TRUE; | |
1139 gtk_window_begin_resize_drag(GTK_WINDOW(widget), | |
1140 GDK_WINDOW_EDGE_SOUTH_EAST, | |
1141 event->button, | |
1142 event->x + xpos, event->y + ypos, | |
1143 event->time); | |
1144 } | |
1145 grab = FALSE; | |
1146 } | |
1147 else if (event->button == 1 && REGION_L(12, 37, 29, 11)) { | |
1148 /* ADD button menu */ | |
1149 | |
1150 _menu = GTK_WIDGET(pladd_menu->widget); | |
1151 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1152 gtk_widget_size_request(_menu, &req); | |
1153 gtk_item_factory_popup_with_data(pladd_menu, | |
1154 NULL, NULL, | |
1155 xpos+12, | |
1156 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1157 grab = FALSE; | |
1158 } | |
1159 else if (event->button == 1 && REGION_L(41, 66, 29, 11)) { | |
1160 /* SUB button menu */ | |
1161 _menu = GTK_WIDGET(pldel_menu->widget); | |
1162 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1163 gtk_widget_size_request(_menu, &req); | |
1164 gtk_item_factory_popup_with_data(pldel_menu, | |
1165 NULL, NULL, | |
1166 xpos+40, | |
1167 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1168 grab = FALSE; | |
1169 } | |
1170 else if (event->button == 1 && REGION_L(70, 95, 29, 11)) { | |
1171 /* SEL button menu */ | |
1172 _menu = GTK_WIDGET(plsel_menu->widget); | |
1173 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1174 gtk_widget_size_request(_menu, &req); | |
1175 gtk_item_factory_popup_with_data(plsel_menu, | |
1176 NULL, NULL, | |
1177 xpos+68, | |
1178 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1179 | |
1180 grab = FALSE; | |
1181 } | |
1182 else if (event->button == 1 && REGION_L(99, 124, 29, 11)) { | |
1183 /* MISC button menu */ | |
1184 _menu = GTK_WIDGET(plsort_menu->widget); | |
1185 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1186 gtk_widget_size_request(_menu, &req); | |
1187 gtk_item_factory_popup_with_data(plsort_menu, | |
1188 NULL, NULL, | |
1189 xpos+100, | |
1190 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1191 grab = FALSE; | |
1192 } | |
1193 else if (event->button == 1 && REGION_R(46, 23, 29, 11)) { | |
1194 /* LIST button menu */ | |
1195 _menu = GTK_WIDGET(pllist_menu->widget); | |
1196 if (!GTK_WIDGET_REALIZED(_menu)) gtk_widget_realize(_menu); | |
1197 gtk_widget_size_request(_menu, &req); | |
1198 gtk_item_factory_popup_with_data(pllist_menu, | |
1199 NULL, NULL, | |
1200 xpos + playlistwin_get_width() - req.width - 12, | |
1201 (ypos + playlistwin_get_height()) - 8 - req.height, 1, event->time); | |
1202 grab = FALSE; | |
1203 } | |
1204 else if (event->button == 1 && REGION_R(82, 54, 15, 9)) { | |
1205 if (cfg.timer_mode == TIMER_ELAPSED) | |
1206 cfg.timer_mode = TIMER_REMAINING; | |
1207 else | |
1208 cfg.timer_mode = TIMER_ELAPSED; | |
1209 } | |
1210 else if (event->button == 2 && (event->type == GDK_BUTTON_PRESS) && | |
1211 widget_contains(WIDGET(playlistwin_list), event->x, event->y)) { | |
1212 gtk_selection_convert(widget, GDK_SELECTION_PRIMARY, | |
1213 GDK_TARGET_STRING, event->time); | |
1214 } | |
1215 else if (event->button == 1 && event->type == GDK_BUTTON_PRESS && | |
1216 !inside_sensitive_widgets(event->x, event->y) && event->y < 14) | |
1217 { | |
1218 dock_move_press(dock_window_list, GTK_WINDOW(playlistwin), event, | |
1219 FALSE); | |
1220 gtk_window_present(GTK_WINDOW(playlistwin)); | |
1221 } | |
1222 else if (event->button == 1 && event->type == GDK_2BUTTON_PRESS && | |
1223 !inside_sensitive_widgets(event->x, event->y) | |
1224 && event->y < 14) { | |
1225 /* double click on title bar */ | |
1226 playlistwin_shade_toggle(); | |
1227 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
1228 dock_move_release(GTK_WINDOW(playlistwin)); | |
1229 return TRUE; | |
1230 } | |
1231 else if (event->button == 3 && | |
1232 !(widget_contains(WIDGET(playlistwin_list), event->x, event->y) || | |
1233 (event->y >= cfg.playlist_height - 29 && | |
1234 event->y < cfg.playlist_height - 11 && | |
1235 ((event->x >= 12 && event->x < 37) || | |
1236 (event->x >= 41 && event->x < 66) || | |
1237 (event->x >= 70 && event->x < 95) || | |
1238 (event->x >= 99 && event->x < 124) || | |
1239 (event->x >= playlistwin_get_width() - 46 && | |
1240 event->x < playlistwin_get_width() - 23))))) { | |
1241 /* | |
1242 * Pop up the main menu a few pixels down to avoid | |
1243 * anything to be selected initially. | |
1244 */ | |
1245 util_item_factory_popup(mainwin_general_menu, event->x_root, | |
1246 event->y_root + 2, 3, event->time); | |
1247 grab = FALSE; | |
1248 } | |
1249 else if (event->button == 3 && | |
1250 widget_contains(WIDGET(playlistwin_list), event->x, event->y)) { | |
1251 /* popup menu */ | |
1252 playlistwin_set_sensitive_sortmenu(); | |
1253 { | |
1254 GtkWidget *item = gtk_item_factory_get_widget(playlistwin_popup_menu, "/Show Popup Info"); | |
1255 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), cfg.show_filepopup_for_tuple); | |
1256 } | |
1257 gtk_item_factory_popup(playlistwin_popup_menu, | |
1258 event->x_root, event->y_root + 5, | |
1259 3, event->time); | |
1260 grab = FALSE; | |
1261 } | |
1262 else { | |
1263 handle_press_cb(playlistwin_wlist, widget, event); | |
1264 draw_playlist_window(FALSE); | |
1265 } | |
1266 | |
1267 if (grab) | |
1268 gdk_pointer_grab(playlistwin->window, FALSE, | |
1269 GDK_BUTTON_MOTION_MASK | GDK_BUTTON_RELEASE_MASK | | |
1270 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | | |
1271 GDK_BUTTON1_MOTION_MASK, NULL, NULL, | |
1272 GDK_CURRENT_TIME); | |
1273 | |
1274 return FALSE; | |
1275 } | |
1276 | |
1277 static gboolean | |
1278 playlistwin_focus_in(GtkWidget * widget, GdkEvent * event, gpointer data) | |
1279 { | |
1280 playlistwin_close->pb_allow_draw = TRUE; | |
1281 playlistwin_shade->pb_allow_draw = TRUE; | |
1282 draw_playlist_window(TRUE); | |
1283 return FALSE; | |
1284 } | |
1285 | |
1286 static gboolean | |
1287 playlistwin_focus_out(GtkWidget * widget, | |
1288 GdkEventButton * event, gpointer data) | |
1289 { | |
1290 playlistwin_close->pb_allow_draw = FALSE; | |
1291 playlistwin_shade->pb_allow_draw = FALSE; | |
1292 draw_playlist_window(TRUE); | |
1293 return FALSE; | |
1294 } | |
1295 | |
1296 static gboolean | |
1297 playlistwin_configure(GtkWidget * window, | |
1298 GdkEventConfigure * event, gpointer data) | |
1299 { | |
1300 if (!GTK_WIDGET_VISIBLE(window)) | |
1301 return FALSE; | |
1302 | |
1303 cfg.playlist_x = event->x; | |
1304 cfg.playlist_y = event->y; | |
1305 | |
1306 if (playlistwin_resizing) { | |
1307 if (event->width != playlistwin_get_width() || | |
1308 event->height != playlistwin_get_height()) | |
1309 playlistwin_resize(event->width, event->height); | |
1310 } | |
1311 return TRUE; | |
1312 } | |
1313 | |
1314 void | |
1315 playlistwin_set_back_pixmap(void) | |
1316 { | |
1317 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
1318 gdk_window_clear(playlistwin->window); | |
1319 } | |
1320 | |
1321 static gboolean | |
1322 playlistwin_delete(GtkWidget * w, gpointer data) | |
1323 { | |
1324 playlistwin_hide(); | |
1325 return TRUE; | |
1326 } | |
1327 | |
1328 static void | |
1329 playlistwin_keypress_up_down_handler(PlayList_List * pl, | |
1330 gboolean up, guint state) | |
1331 { | |
1332 if ((state & GDK_MOD1_MASK) && (state & GDK_SHIFT_MASK)) | |
1333 return; | |
1334 if (!(state & GDK_MOD1_MASK)) | |
1335 playlist_select_all(FALSE); | |
1336 | |
1337 if (pl->pl_prev_selected == -1 || | |
1338 (!playlistwin_item_visible(pl->pl_prev_selected) && | |
1339 !(state & GDK_SHIFT_MASK && pl->pl_prev_min != -1))) { | |
1340 pl->pl_prev_selected = pl->pl_first; | |
1341 } | |
1342 else if (state & GDK_SHIFT_MASK) { | |
1343 if (pl->pl_prev_min == -1) { | |
1344 pl->pl_prev_max = pl->pl_prev_selected; | |
1345 pl->pl_prev_min = pl->pl_prev_selected; | |
1346 } | |
1347 pl->pl_prev_max += (up ? -1 : 1); | |
1348 pl->pl_prev_max = | |
1349 CLAMP(pl->pl_prev_max, 0, playlist_get_length() - 1); | |
1350 | |
1351 pl->pl_first = MIN(pl->pl_first, pl->pl_prev_max); | |
1352 pl->pl_first = MAX(pl->pl_first, pl->pl_prev_max - | |
1353 pl->pl_num_visible + 1); | |
1354 playlist_select_range(pl->pl_prev_min, pl->pl_prev_max, TRUE); | |
1355 return; | |
1356 } | |
1357 else if (state & GDK_MOD1_MASK) { | |
1358 if (up) | |
1359 playlist_list_move_up(pl); | |
1360 else | |
1361 playlist_list_move_down(pl); | |
1362 if (pl->pl_prev_min < pl->pl_first) | |
1363 pl->pl_first = pl->pl_prev_min; | |
1364 else if (pl->pl_prev_max >= (pl->pl_first + pl->pl_num_visible)) | |
1365 pl->pl_first = pl->pl_prev_max - pl->pl_num_visible + 1; | |
1366 return; | |
1367 } | |
1368 else if (up) | |
1369 pl->pl_prev_selected--; | |
1370 else | |
1371 pl->pl_prev_selected++; | |
1372 | |
1373 pl->pl_prev_selected = | |
1374 CLAMP(pl->pl_prev_selected, 0, playlist_get_length() - 1); | |
1375 | |
1376 if (pl->pl_prev_selected < pl->pl_first) | |
1377 pl->pl_first--; | |
1378 else if (pl->pl_prev_selected >= (pl->pl_first + pl->pl_num_visible)) | |
1379 pl->pl_first++; | |
1380 | |
1381 playlist_select_range(pl->pl_prev_selected, pl->pl_prev_selected, TRUE); | |
1382 pl->pl_prev_min = -1; | |
1383 | |
1384 } | |
1385 | |
1386 /* FIXME: Handle the keys through menu */ | |
1387 | |
1388 static gboolean | |
1389 playlistwin_keypress(GtkWidget * w, GdkEventKey * event, gpointer data) | |
1390 { | |
1391 guint keyval; | |
1392 gboolean refresh = FALSE; | |
1393 | |
1394 if (cfg.playlist_shaded) | |
1395 return FALSE; | |
1396 | |
1397 switch (keyval = event->keyval) { | |
1398 case GDK_KP_Up: | |
1399 case GDK_KP_Down: | |
1400 case GDK_Up: | |
1401 case GDK_Down: | |
1402 playlistwin_keypress_up_down_handler(playlistwin_list, | |
1403 keyval == GDK_Up | |
1404 || keyval == GDK_KP_Up, | |
1405 event->state); | |
1406 refresh = TRUE; | |
1407 break; | |
1408 case GDK_Page_Up: | |
1409 playlistwin_scroll(-playlistwin_list->pl_num_visible); | |
1410 refresh = TRUE; | |
1411 break; | |
1412 case GDK_Page_Down: | |
1413 playlistwin_scroll(playlistwin_list->pl_num_visible); | |
1414 refresh = TRUE; | |
1415 break; | |
1416 case GDK_Home: | |
1417 playlistwin_list->pl_first = 0; | |
1418 refresh = TRUE; | |
1419 break; | |
1420 case GDK_End: | |
1421 playlistwin_list->pl_first = | |
1422 playlist_get_length() - playlistwin_list->pl_num_visible; | |
1423 refresh = TRUE; | |
1424 break; | |
1425 case GDK_Return: | |
1426 if (playlistwin_list->pl_prev_selected > -1 | |
1427 && playlistwin_item_visible(playlistwin_list->pl_prev_selected)) { | |
1428 playlist_set_position(playlistwin_list->pl_prev_selected); | |
1429 if (!bmp_playback_get_playing()) | |
1430 bmp_playback_initiate(); | |
1431 } | |
1432 break; | |
1433 case GDK_3: | |
1434 if (event->state & GDK_CONTROL_MASK) | |
1435 playlistwin_fileinfo(); | |
1436 break; | |
1437 case GDK_Delete: | |
1438 if (event->state & GDK_CONTROL_MASK) | |
1439 playlist_delete(TRUE); | |
1440 else | |
1441 playlist_delete(FALSE); | |
1442 break; | |
1443 case GDK_Insert: | |
1444 if (event->state & GDK_MOD1_MASK) | |
1445 mainwin_show_add_url_window(); | |
1446 else | |
1447 playlistwin_show_filebrowser(); | |
1448 break; | |
1449 case GDK_Left: | |
1450 case GDK_KP_Left: | |
1451 case GDK_KP_7: | |
1452 if (playlist_get_current_length() != -1) | |
1453 bmp_playback_seek(CLAMP | |
1454 (bmp_playback_get_time() - 1000, 0, | |
1455 playlist_get_current_length()) / 1000); | |
1456 break; | |
1457 case GDK_Right: | |
1458 case GDK_KP_Right: | |
1459 case GDK_KP_9: | |
1460 if (playlist_get_current_length() != -1) | |
1461 bmp_playback_seek(CLAMP | |
1462 (bmp_playback_get_time() + 1000, 0, | |
1463 playlist_get_current_length()) / 1000); | |
1464 break; | |
1465 | |
1466 case GDK_Escape: | |
1467 mainwin_minimize_cb(); | |
1468 break; | |
1469 default: | |
1470 return FALSE; | |
1471 } | |
1472 | |
1473 if (refresh) | |
1474 playlistwin_update_list(); | |
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 } |