Mercurial > audlegacy
annotate src/audacious/ui_playlist.c @ 2883:4117f05f7054 trunk
branch merge
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 24 Jun 2007 05:31:48 -0500 |
parents | 91ef09fe7936 |
children | 5ed0674fabd6 |
rev | line source |
---|---|
2313 | 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; under version 2 of the License. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #include "ui_playlist.h" | |
25 | |
26 #include <glib.h> | |
27 #include <glib/gi18n.h> | |
28 #include <gdk/gdk.h> | |
29 #include <gdk/gdkkeysyms.h> | |
30 #include <gtk/gtk.h> | |
31 #include <string.h> | |
32 | |
33 #include "platform/smartinclude.h" | |
34 | |
35 #include <unistd.h> | |
36 #include <errno.h> | |
37 | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
38 #include "actions-playlist.h" |
2313 | 39 #include "dnd.h" |
40 #include "dock.h" | |
41 #include "hints.h" | |
42 #include "input.h" | |
43 #include "main.h" | |
44 #include "playback.h" | |
45 #include "playlist.h" | |
46 #include "playlist_container.h" | |
2499
15a1f5ee4d1c
[svn] - playlist_manager -> ui_playlist_manager, since it's a UI component.
nenolod
parents:
2495
diff
changeset
|
47 #include "ui_playlist_manager.h" |
2373
ad1d7687814c
[svn] made strings.h for existing strings.c, cleanups
mf0102
parents:
2363
diff
changeset
|
48 #include "strings.h" |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
49 #include "ui_equalizer.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
50 #include "ui_fileopener.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
51 #include "ui_fileinfopopup.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
52 #include "ui_main.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
53 #include "ui_manager.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
54 #include "util.h" |
2313 | 55 |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2492
diff
changeset
|
56 #include "ui_skinned_window.h" |
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2492
diff
changeset
|
57 |
2313 | 58 #include "icons-stock.h" |
59 #include "images/audacious_playlist.xpm" | |
60 | |
61 GtkWidget *playlistwin; | |
62 | |
63 PlayList_List *playlistwin_list = NULL; | |
64 PButton *playlistwin_shade, *playlistwin_close; | |
65 | |
66 static GdkPixmap *playlistwin_bg; | |
67 static GdkBitmap *playlistwin_mask = NULL; | |
68 | |
69 static gboolean playlistwin_hint_flag = FALSE; | |
70 | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
71 static GtkWidget *playlistwin_infopopup = NULL; |
2351
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
72 static guint playlistwin_infopopup_sid = 0; |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
73 |
2313 | 74 static PlaylistSlider *playlistwin_slider = NULL; |
75 static TextBox *playlistwin_time_min, *playlistwin_time_sec; | |
76 static TextBox *playlistwin_info, *playlistwin_sinfo; | |
77 static SButton *playlistwin_srew, *playlistwin_splay; | |
78 static SButton *playlistwin_spause, *playlistwin_sstop; | |
79 static SButton *playlistwin_sfwd, *playlistwin_seject; | |
80 static SButton *playlistwin_sscroll_up, *playlistwin_sscroll_down; | |
81 | |
82 static GList *playlistwin_wlist = NULL; | |
83 | |
84 void playlistwin_select_search_cbt_cb( GtkWidget *called_cbt , | |
85 gpointer other_cbt ); | |
86 static gboolean playlistwin_select_search_kp_cb( GtkWidget *entry , GdkEventKey *event , | |
87 gpointer searchdlg_win ); | |
88 | |
89 static void playlistwin_draw_frame(void); | |
90 | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
91 static gboolean playlistwin_fileinfopopup_probe(gpointer * filepopup_win); |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
92 |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
93 static gboolean playlistwin_resizing = FALSE; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
94 static gint playlistwin_resize_x, playlistwin_resize_y; |
2313 | 95 |
96 gboolean | |
97 playlistwin_is_shaded(void) | |
98 { | |
99 return cfg.playlist_shaded; | |
100 } | |
101 | |
102 gint | |
103 playlistwin_get_width(void) | |
104 { | |
105 cfg.playlist_width /= PLAYLISTWIN_WIDTH_SNAP; | |
106 cfg.playlist_width *= PLAYLISTWIN_WIDTH_SNAP; | |
107 return cfg.playlist_width; | |
108 } | |
109 | |
110 gint | |
111 playlistwin_get_height_unshaded(void) | |
112 { | |
113 gint height; | |
114 cfg.playlist_height /= PLAYLISTWIN_HEIGHT_SNAP; | |
115 cfg.playlist_height *= PLAYLISTWIN_HEIGHT_SNAP; | |
116 height = cfg.playlist_height; | |
117 return height; | |
118 } | |
119 | |
120 gint | |
121 playlistwin_get_height_shaded(void) | |
122 { | |
123 return PLAYLISTWIN_SHADED_HEIGHT; | |
124 } | |
125 | |
126 gint | |
127 playlistwin_get_height(void) | |
128 { | |
129 if (playlistwin_is_shaded()) | |
130 return playlistwin_get_height_shaded(); | |
131 else | |
132 return playlistwin_get_height_unshaded(); | |
133 } | |
134 | |
135 void | |
136 playlistwin_get_size(gint * width, gint * height) | |
137 { | |
138 if (width) | |
139 *width = playlistwin_get_width(); | |
140 | |
141 if (height) | |
142 *height = playlistwin_get_height(); | |
143 } | |
144 | |
145 static void | |
146 playlistwin_update_info(Playlist *playlist) | |
147 { | |
148 gchar *text, *sel_text, *tot_text; | |
149 gulong selection, total; | |
150 gboolean selection_more, total_more; | |
151 | |
152 playlist_get_total_time(playlist, &total, &selection, &total_more, &selection_more); | |
153 | |
154 if (selection > 0 || (selection == 0 && !selection_more)) { | |
155 if (selection > 3600) | |
156 sel_text = | |
157 g_strdup_printf("%lu:%-2.2lu:%-2.2lu%s", selection / 3600, | |
158 (selection / 60) % 60, selection % 60, | |
159 (selection_more ? "+" : "")); | |
160 else | |
161 sel_text = | |
162 g_strdup_printf("%lu:%-2.2lu%s", selection / 60, | |
163 selection % 60, (selection_more ? "+" : "")); | |
164 } | |
165 else | |
166 sel_text = g_strdup("?"); | |
167 if (total > 0 || (total == 0 && !total_more)) { | |
168 if (total > 3600) | |
169 tot_text = | |
170 g_strdup_printf("%lu:%-2.2lu:%-2.2lu%s", total / 3600, | |
171 (total / 60) % 60, total % 60, | |
172 total_more ? "+" : ""); | |
173 else | |
174 tot_text = | |
175 g_strdup_printf("%lu:%-2.2lu%s", total / 60, total % 60, | |
176 total_more ? "+" : ""); | |
177 } | |
178 else | |
179 tot_text = g_strdup("?"); | |
180 text = g_strconcat(sel_text, "/", tot_text, NULL); | |
181 textbox_set_text(playlistwin_info, text ? text : ""); | |
182 g_free(text); | |
183 g_free(tot_text); | |
184 g_free(sel_text); | |
185 } | |
186 | |
187 static void | |
188 playlistwin_update_sinfo(Playlist *playlist) | |
189 { | |
190 gchar *posstr, *timestr, *title, *info; | |
191 gint pos, time; | |
192 | |
193 pos = playlist_get_position(playlist); | |
194 title = playlist_get_songtitle(playlist, pos); | |
195 | |
196 if (!title) { | |
197 textbox_set_text(playlistwin_sinfo, ""); | |
198 return; | |
199 } | |
200 | |
201 convert_title_text(title); | |
202 | |
203 time = playlist_get_songtime(playlist, pos); | |
204 | |
205 if (cfg.show_numbers_in_pl) | |
206 posstr = g_strdup_printf("%d. ", pos + 1); | |
207 else | |
208 posstr = g_strdup(""); | |
209 | |
210 if (time != -1) { | |
211 timestr = g_strdup_printf(" (%d:%-2.2d)", time / 60000, | |
212 (time / 1000) % 60); | |
213 } | |
214 else | |
215 timestr = g_strdup(""); | |
216 | |
217 info = g_strdup_printf("%s%s%s", posstr, title, timestr); | |
218 | |
219 g_free(posstr); | |
220 g_free(title); | |
221 g_free(timestr); | |
222 | |
223 textbox_set_text(playlistwin_sinfo, info ? info : ""); | |
224 g_free(info); | |
225 } | |
226 | |
227 gboolean | |
228 playlistwin_item_visible(gint index) | |
229 { | |
230 if (index >= playlistwin_list->pl_first | |
231 && index < | |
232 (playlistwin_list->pl_first + playlistwin_list->pl_num_visible)) | |
233 return TRUE; | |
234 return FALSE; | |
235 } | |
236 | |
237 gint | |
238 playlistwin_get_toprow(void) | |
239 { | |
240 if (playlistwin_list) | |
241 return (playlistwin_list->pl_first); | |
242 return (-1); | |
243 } | |
244 | |
245 void | |
246 playlistwin_set_toprow(gint toprow) | |
247 { | |
248 if (playlistwin_list) | |
249 playlistwin_list->pl_first = toprow; | |
250 playlistwin_update_list(playlist_get_active()); | |
251 } | |
252 | |
253 void | |
254 playlistwin_update_list(Playlist *playlist) | |
255 { | |
256 /* this can happen early on. just bail gracefully. */ | |
2363 | 257 g_return_if_fail(playlistwin_list); |
2313 | 258 |
259 widget_draw(WIDGET(playlistwin_list)); | |
260 widget_draw(WIDGET(playlistwin_slider)); | |
261 playlistwin_update_info(playlist); | |
262 playlistwin_update_sinfo(playlist); | |
263 } | |
264 | |
265 static void | |
266 playlistwin_set_mask(void) | |
267 { | |
268 GdkGC *gc; | |
269 GdkColor pattern; | |
270 | |
271 if (playlistwin_mask) | |
272 g_object_unref(playlistwin_mask); | |
273 | |
274 playlistwin_mask = | |
275 gdk_pixmap_new(playlistwin->window, playlistwin_get_width(), | |
276 playlistwin_get_height(), 1); | |
277 gc = gdk_gc_new(playlistwin_mask); | |
278 pattern.pixel = 1; | |
279 gdk_gc_set_foreground(gc, &pattern); | |
280 gdk_draw_rectangle(playlistwin_mask, gc, TRUE, 0, 0, | |
281 playlistwin_get_width(), playlistwin_get_height()); | |
282 g_object_unref(gc); | |
283 | |
284 gtk_widget_shape_combine_mask(playlistwin, playlistwin_mask, 0, 0); | |
285 } | |
286 | |
287 static void | |
288 playlistwin_set_geometry_hints(gboolean shaded) | |
289 { | |
290 GdkGeometry geometry; | |
291 GdkWindowHints mask; | |
292 | |
293 geometry.min_width = PLAYLISTWIN_MIN_WIDTH; | |
294 geometry.max_width = G_MAXUINT16; | |
295 | |
296 geometry.width_inc = PLAYLISTWIN_WIDTH_SNAP; | |
297 geometry.height_inc = PLAYLISTWIN_HEIGHT_SNAP; | |
298 | |
299 if (shaded) { | |
300 geometry.min_height = PLAYLISTWIN_SHADED_HEIGHT; | |
301 geometry.max_height = PLAYLISTWIN_SHADED_HEIGHT; | |
302 geometry.base_height = PLAYLISTWIN_SHADED_HEIGHT; | |
303 } | |
304 else { | |
305 geometry.min_height = PLAYLISTWIN_MIN_HEIGHT; | |
306 geometry.max_height = G_MAXUINT16; | |
307 } | |
308 | |
309 mask = GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE | GDK_HINT_RESIZE_INC; | |
310 | |
311 gtk_window_set_geometry_hints(GTK_WINDOW(playlistwin), | |
312 playlistwin, &geometry, mask); | |
313 } | |
314 | |
315 void | |
316 playlistwin_set_sinfo_font(gchar *font) | |
317 { | |
318 gchar *tmp = NULL, *tmp2 = NULL; | |
319 | |
2363 | 320 g_return_if_fail(font); |
2313 | 321 |
322 tmp = g_strdup(font); | |
2363 | 323 g_return_if_fail(tmp); |
2313 | 324 |
325 *strrchr(tmp, ' ') = '\0'; | |
326 tmp2 = g_strdup_printf("%s 8", tmp); | |
2363 | 327 g_return_if_fail(tmp2); |
328 | |
2313 | 329 textbox_set_xfont(playlistwin_sinfo, cfg.mainwin_use_xfont, tmp2); |
330 | |
2363 | 331 g_free(tmp); |
332 g_free(tmp2); | |
2313 | 333 } |
334 | |
335 void | |
336 playlistwin_set_sinfo_scroll(gboolean scroll) | |
337 { | |
338 if(playlistwin_is_shaded()) | |
339 textbox_set_scroll(playlistwin_sinfo, cfg.autoscroll); | |
340 else | |
341 textbox_set_scroll(playlistwin_sinfo, FALSE); | |
342 } | |
343 | |
344 void | |
345 playlistwin_set_shade(gboolean shaded) | |
346 { | |
347 cfg.playlist_shaded = shaded; | |
348 | |
349 if (shaded) { | |
350 playlistwin_set_sinfo_font(cfg.playlist_font); | |
351 playlistwin_set_sinfo_scroll(cfg.autoscroll); | |
352 widget_show(WIDGET(playlistwin_sinfo)); | |
353 playlistwin_shade->pb_nx = 128; | |
354 playlistwin_shade->pb_ny = 45; | |
355 playlistwin_shade->pb_px = 150; | |
356 playlistwin_shade->pb_py = 42; | |
357 playlistwin_close->pb_nx = 138; | |
358 playlistwin_close->pb_ny = 45; | |
359 } | |
360 else { | |
361 widget_hide(WIDGET(playlistwin_sinfo)); | |
362 playlistwin_set_sinfo_scroll(FALSE); | |
363 playlistwin_shade->pb_nx = 157; | |
364 playlistwin_shade->pb_ny = 3; | |
365 playlistwin_shade->pb_px = 62; | |
366 playlistwin_shade->pb_py = 42; | |
367 playlistwin_close->pb_nx = 167; | |
368 playlistwin_close->pb_ny = 3; | |
369 } | |
370 | |
371 dock_shade(dock_window_list, GTK_WINDOW(playlistwin), | |
372 playlistwin_get_height()); | |
373 | |
374 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
375 | |
376 gtk_window_resize(GTK_WINDOW(playlistwin), | |
377 playlistwin_get_width(), | |
378 playlistwin_get_height()); | |
379 | |
380 playlistwin_set_mask(); | |
381 | |
382 widget_draw(WIDGET(playlistwin_list)); | |
383 widget_draw(WIDGET(playlistwin_slider)); | |
384 | |
385 draw_playlist_window(TRUE); | |
386 } | |
387 | |
388 static void | |
389 playlistwin_set_shade_menu(gboolean shaded) | |
390 { | |
391 GtkAction *action = gtk_action_group_get_action( | |
392 toggleaction_group_others , "roll up playlist editor" ); | |
393 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , shaded ); | |
394 | |
395 playlistwin_set_shade(shaded); | |
396 playlistwin_update_list(playlist_get_active()); | |
397 } | |
398 | |
399 void | |
400 playlistwin_shade_toggle(void) | |
401 { | |
402 playlistwin_set_shade_menu(!cfg.playlist_shaded); | |
403 } | |
404 | |
405 static void | |
406 playlistwin_release(GtkWidget * widget, | |
407 GdkEventButton * event, | |
408 gpointer callback_data) | |
409 { | |
410 if (event->button == 3) | |
411 return; | |
412 | |
413 gdk_pointer_ungrab(GDK_CURRENT_TIME); | |
414 playlistwin_resizing = FALSE; | |
415 gdk_flush(); | |
416 | |
417 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
418 dock_move_release(GTK_WINDOW(playlistwin)); | |
419 else | |
420 { | |
421 handle_release_cb(playlistwin_wlist, widget, event); | |
422 draw_playlist_window(FALSE); | |
423 } | |
424 } | |
425 | |
426 void | |
427 playlistwin_scroll(gint num) | |
428 { | |
429 playlistwin_list->pl_first += num; | |
430 playlistwin_update_list(playlist_get_active()); | |
431 } | |
432 | |
433 void | |
434 playlistwin_scroll_up_pushed(void) | |
435 { | |
436 playlistwin_scroll(-3); | |
437 } | |
438 | |
439 void | |
440 playlistwin_scroll_down_pushed(void) | |
441 { | |
442 playlistwin_scroll(3); | |
443 } | |
444 | |
445 static void | |
446 playlistwin_select_all(void) | |
447 { | |
448 Playlist *playlist = playlist_get_active(); | |
449 | |
450 playlist_select_all(playlist, TRUE); | |
451 playlistwin_list->pl_prev_selected = 0; | |
452 playlistwin_list->pl_prev_min = 0; | |
453 playlistwin_list->pl_prev_max = playlist_get_length(playlist) - 1; | |
454 playlistwin_update_list(playlist); | |
455 } | |
456 | |
457 static void | |
458 playlistwin_select_none(void) | |
459 { | |
460 playlist_select_all(playlist_get_active(), FALSE); | |
461 playlistwin_list->pl_prev_selected = -1; | |
462 playlistwin_list->pl_prev_min = -1; | |
463 playlistwin_update_list(playlist_get_active()); | |
464 } | |
465 | |
466 static void | |
467 playlistwin_select_search(void) | |
468 { | |
469 Playlist *playlist = playlist_get_active(); | |
470 GtkWidget *searchdlg_win, *searchdlg_table; | |
471 GtkWidget *searchdlg_hbox, *searchdlg_logo, *searchdlg_helptext; | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
472 GtkWidget *searchdlg_entry_title, *searchdlg_label_title; |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
473 GtkWidget *searchdlg_entry_album, *searchdlg_label_album; |
2313 | 474 GtkWidget *searchdlg_entry_file_name, *searchdlg_label_file_name; |
475 GtkWidget *searchdlg_entry_performer, *searchdlg_label_performer; | |
476 GtkWidget *searchdlg_checkbt_clearprevsel; | |
477 GtkWidget *searchdlg_checkbt_newplaylist; | |
478 GtkWidget *searchdlg_checkbt_autoenqueue; | |
479 gint result; | |
480 | |
481 /* create dialog */ | |
482 searchdlg_win = gtk_dialog_new_with_buttons( | |
483 _("Search entries in active playlist") , GTK_WINDOW(mainwin) , | |
484 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT , | |
485 GTK_STOCK_CANCEL , GTK_RESPONSE_REJECT , GTK_STOCK_OK , GTK_RESPONSE_ACCEPT , NULL ); | |
486 /* help text and logo */ | |
487 searchdlg_hbox = gtk_hbox_new( FALSE , 4 ); | |
488 searchdlg_logo = gtk_image_new_from_stock( GTK_STOCK_FIND , GTK_ICON_SIZE_DIALOG ); | |
489 searchdlg_helptext = gtk_label_new( _("Select entries in playlist by filling one or more " | |
490 "fields. Fields use regular expressions syntax, case-insensitive. If you don't know how " | |
491 "regular expressions work, simply insert a literal portion of what you're searching for.") ); | |
492 gtk_label_set_line_wrap( GTK_LABEL(searchdlg_helptext) , TRUE ); | |
493 gtk_box_pack_start( GTK_BOX(searchdlg_hbox) , searchdlg_logo , FALSE , FALSE , 0 ); | |
494 gtk_box_pack_start( GTK_BOX(searchdlg_hbox) , searchdlg_helptext , FALSE , FALSE , 0 ); | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
495 /* title */ |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
496 searchdlg_label_title = gtk_label_new( _("Title: ") ); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
497 searchdlg_entry_title = gtk_entry_new(); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
498 gtk_misc_set_alignment( GTK_MISC(searchdlg_label_title) , 0 , 0.5 ); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
499 g_signal_connect( G_OBJECT(searchdlg_entry_title) , "key-press-event" , |
2313 | 500 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
501 /* album */ |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
502 searchdlg_label_album= gtk_label_new( _("Album: ") ); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
503 searchdlg_entry_album= gtk_entry_new(); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
504 gtk_misc_set_alignment( GTK_MISC(searchdlg_label_album) , 0 , 0.5 ); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
505 g_signal_connect( G_OBJECT(searchdlg_entry_album) , "key-press-event" , |
2313 | 506 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); |
507 /* artist */ | |
508 searchdlg_label_performer = gtk_label_new( _("Artist: ") ); | |
509 searchdlg_entry_performer = gtk_entry_new(); | |
510 gtk_misc_set_alignment( GTK_MISC(searchdlg_label_performer) , 0 , 0.5 ); | |
511 g_signal_connect( G_OBJECT(searchdlg_entry_performer) , "key-press-event" , | |
512 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); | |
513 /* file name */ | |
514 searchdlg_label_file_name = gtk_label_new( _("Filename: ") ); | |
515 searchdlg_entry_file_name = gtk_entry_new(); | |
516 gtk_misc_set_alignment( GTK_MISC(searchdlg_label_file_name) , 0 , 0.5 ); | |
517 g_signal_connect( G_OBJECT(searchdlg_entry_file_name) , "key-press-event" , | |
518 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); | |
519 /* some options that control behaviour */ | |
520 searchdlg_checkbt_clearprevsel = gtk_check_button_new_with_label( | |
521 _("Clear previous selection before searching") ); | |
522 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(searchdlg_checkbt_clearprevsel) , TRUE ); | |
523 searchdlg_checkbt_autoenqueue = gtk_check_button_new_with_label( | |
524 _("Automatically toggle queue for matching entries") ); | |
525 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(searchdlg_checkbt_autoenqueue) , FALSE ); | |
526 searchdlg_checkbt_newplaylist = gtk_check_button_new_with_label( | |
527 _("Create a new playlist with matching entries") ); | |
528 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(searchdlg_checkbt_newplaylist) , FALSE ); | |
529 g_signal_connect( G_OBJECT(searchdlg_checkbt_autoenqueue) , "clicked" , | |
530 G_CALLBACK(playlistwin_select_search_cbt_cb) , searchdlg_checkbt_newplaylist ); | |
531 g_signal_connect( G_OBJECT(searchdlg_checkbt_newplaylist) , "clicked" , | |
532 G_CALLBACK(playlistwin_select_search_cbt_cb) , searchdlg_checkbt_autoenqueue ); | |
533 /* place fields in searchdlg_table */ | |
534 searchdlg_table = gtk_table_new( 8 , 2 , FALSE ); | |
535 gtk_table_set_row_spacing( GTK_TABLE(searchdlg_table) , 0 , 8 ); | |
536 gtk_table_set_row_spacing( GTK_TABLE(searchdlg_table) , 4 , 8 ); | |
537 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_hbox , | |
538 0 , 2 , 0 , 1 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
539 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_title , |
2313 | 540 0 , 1 , 1 , 2 , GTK_FILL , GTK_FILL | GTK_EXPAND , 0 , 2 ); |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
541 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_title , |
2313 | 542 1 , 2 , 1 , 2 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
543 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_album, |
2313 | 544 0 , 1 , 2 , 3 , GTK_FILL , GTK_FILL | GTK_EXPAND , 0 , 2 ); |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
545 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_album, |
2313 | 546 1 , 2 , 2 , 3 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); |
547 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_performer , | |
548 0 , 1 , 3 , 4 , GTK_FILL , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
549 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_performer , | |
550 1 , 2 , 3 , 4 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
551 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_file_name , | |
552 0 , 1 , 4 , 5 , GTK_FILL , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
553 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_file_name , | |
554 1 , 2 , 4 , 5 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
555 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_checkbt_clearprevsel , | |
556 0 , 2 , 5 , 6 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 1 ); | |
557 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_checkbt_autoenqueue , | |
558 0 , 2 , 6 , 7 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 1 ); | |
559 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_checkbt_newplaylist , | |
560 0 , 2 , 7 , 8 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 1 ); | |
561 | |
562 gtk_container_set_border_width( GTK_CONTAINER(searchdlg_table) , 5 ); | |
563 gtk_container_add( GTK_CONTAINER(GTK_DIALOG(searchdlg_win)->vbox) , searchdlg_table ); | |
564 gtk_widget_show_all( searchdlg_win ); | |
565 result = gtk_dialog_run( GTK_DIALOG(searchdlg_win) ); | |
566 switch(result) | |
567 { | |
568 case GTK_RESPONSE_ACCEPT: | |
569 { | |
570 gint matched_entries_num = 0; | |
571 /* create a TitleInput tuple with user search data */ | |
572 TitleInput *tuple = g_malloc(sizeof(TitleInput)); | |
573 gchar *searchdata = NULL; | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
574 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_title) ); |
2313 | 575 tuple->track_name = ( strcmp(searchdata,"") ) ? g_strdup(searchdata) : NULL; |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
576 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_album) ); |
2313 | 577 tuple->album_name = ( strcmp(searchdata,"") ) ? g_strdup(searchdata) : NULL; |
578 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_performer) ); | |
579 tuple->performer = ( strcmp(searchdata,"") ) ? g_strdup(searchdata) : NULL; | |
580 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_file_name) ); | |
581 tuple->file_name = ( strcmp(searchdata,"") ) ? g_strdup(searchdata) : NULL; | |
582 /* check if previous selection should be cleared before searching */ | |
583 if ( gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(searchdlg_checkbt_clearprevsel)) == TRUE ) | |
584 playlistwin_select_none(); | |
585 /* now send this tuple to the real search function */ | |
586 matched_entries_num = playlist_select_search( playlist , tuple , 0 ); | |
587 /* we do not need the tuple and its data anymore */ | |
588 if ( tuple->track_name != NULL ) g_free( tuple->track_name ); | |
589 if ( tuple->album_name != NULL ) g_free( tuple->album_name ); | |
590 if ( tuple->performer != NULL ) g_free( tuple->performer ); | |
591 if ( tuple->file_name != NULL ) g_free( tuple->file_name ); | |
592 g_free( tuple ); | |
593 playlistwin_update_list(playlist_get_active()); | |
594 /* check if a new playlist should be created after searching */ | |
595 if ( gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(searchdlg_checkbt_newplaylist)) == TRUE ) | |
596 playlist_new_from_selected(); | |
597 /* check if matched entries should be queued */ | |
598 else if ( gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(searchdlg_checkbt_autoenqueue)) == TRUE ) | |
599 playlist_queue(playlist_get_active()); | |
600 break; | |
601 } | |
602 default: | |
603 break; | |
604 } | |
605 /* done here :) */ | |
606 gtk_widget_destroy( searchdlg_win ); | |
607 } | |
608 | |
609 static void | |
610 playlistwin_inverse_selection(void) | |
611 { | |
612 playlist_select_invert_all(playlist_get_active()); | |
613 playlistwin_list->pl_prev_selected = -1; | |
614 playlistwin_list->pl_prev_min = -1; | |
615 playlistwin_update_list(playlist_get_active()); | |
616 } | |
617 | |
618 static void | |
619 playlistwin_resize(gint width, gint height) | |
620 { | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
621 gint tx, ty; |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
622 gint dx, dy; |
2313 | 623 gboolean redraw; |
624 | |
625 g_return_if_fail(width > 0 && height > 0); | |
626 | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
627 tx = (width - PLAYLISTWIN_MIN_WIDTH) / PLAYLISTWIN_WIDTH_SNAP; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
628 tx = (tx * PLAYLISTWIN_WIDTH_SNAP) + PLAYLISTWIN_MIN_WIDTH; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
629 if (tx < PLAYLISTWIN_MIN_WIDTH) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
630 tx = PLAYLISTWIN_MIN_WIDTH; |
2313 | 631 |
632 if (!cfg.playlist_shaded) | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
633 { |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
634 ty = (height - PLAYLISTWIN_MIN_HEIGHT) / PLAYLISTWIN_HEIGHT_SNAP; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
635 ty = (ty * PLAYLISTWIN_HEIGHT_SNAP) + PLAYLISTWIN_MIN_HEIGHT; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
636 if (ty < PLAYLISTWIN_MIN_HEIGHT) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
637 ty = PLAYLISTWIN_MIN_HEIGHT; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
638 } |
2313 | 639 else |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
640 ty = cfg.playlist_height; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
641 |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
642 if (tx == cfg.playlist_width && ty == cfg.playlist_height) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
643 return; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
644 |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
645 /* difference between previous size and new size */ |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
646 dx = tx - cfg.playlist_width; |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
647 dy = ty - cfg.playlist_height; |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
648 |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
649 cfg.playlist_width = width = tx; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
650 cfg.playlist_height = height = ty; |
2313 | 651 |
652 | |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
653 widget_resize_relative(WIDGET(playlistwin_list), dx, dy); |
2313 | 654 |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
655 widget_move_relative(WIDGET(playlistwin_slider), dx, 0); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
656 widget_resize_relative(WIDGET(playlistwin_slider), 0, dy); |
2313 | 657 |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
658 widget_resize_relative(WIDGET(playlistwin_sinfo), dx, 0); |
2313 | 659 playlistwin_update_sinfo(playlist_get_active()); |
660 | |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
661 widget_move_relative(WIDGET(playlistwin_shade), dx, 0); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
662 widget_move_relative(WIDGET(playlistwin_close), dx, 0); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
663 widget_move_relative(WIDGET(playlistwin_time_min), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
664 widget_move_relative(WIDGET(playlistwin_time_sec), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
665 widget_move_relative(WIDGET(playlistwin_info), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
666 widget_move_relative(WIDGET(playlistwin_srew), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
667 widget_move_relative(WIDGET(playlistwin_splay), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
668 widget_move_relative(WIDGET(playlistwin_spause), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
669 widget_move_relative(WIDGET(playlistwin_sstop), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
670 widget_move_relative(WIDGET(playlistwin_sfwd), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
671 widget_move_relative(WIDGET(playlistwin_seject), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
672 widget_move_relative(WIDGET(playlistwin_sscroll_up), dx, dy); |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
673 widget_move_relative(WIDGET(playlistwin_sscroll_down), dx, dy); |
2313 | 674 |
675 g_object_unref(playlistwin_bg); | |
676 playlistwin_bg = gdk_pixmap_new(playlistwin->window, width, height, -1); | |
677 playlistwin_set_mask(); | |
678 | |
679 widget_list_lock(playlistwin_wlist); | |
680 | |
681 widget_list_change_pixmap(playlistwin_wlist, playlistwin_bg); | |
682 playlistwin_draw_frame(); | |
683 widget_list_draw(playlistwin_wlist, &redraw, TRUE); | |
684 widget_list_clear_redraw(playlistwin_wlist); | |
685 | |
686 widget_list_unlock(playlistwin_wlist); | |
687 | |
688 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
689 gdk_window_clear(playlistwin->window); | |
690 } | |
691 | |
692 static void | |
693 playlistwin_motion(GtkWidget * widget, | |
694 GdkEventMotion * event, | |
695 gpointer callback_data) | |
696 { | |
697 GdkEvent *gevent; | |
698 | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
699 /* |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
700 * GDK2's resize is broken and doesn't really play nice, so we have |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
701 * to do all of this stuff by hand. |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
702 */ |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
703 if (playlistwin_resizing == TRUE) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
704 { |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
705 if (event->x + playlistwin_resize_x != playlistwin_get_width() || |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
706 event->y + playlistwin_resize_y != playlistwin_get_height()) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
707 { |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
708 playlistwin_resize(event->x + playlistwin_resize_x, |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
709 event->y + playlistwin_resize_y); |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
710 } |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
711 gdk_window_resize(playlistwin->window, |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
712 cfg.playlist_width, cfg.playlist_height); |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
713 } |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
714 else if (dock_is_moving(GTK_WINDOW(playlistwin))) |
2313 | 715 dock_move_motion(GTK_WINDOW(playlistwin), event); |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
716 else |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
717 { |
2313 | 718 handle_motion_cb(playlistwin_wlist, widget, event); |
719 draw_playlist_window(FALSE); | |
720 } | |
721 gdk_flush(); | |
722 | |
2601 | 723 while ((gevent = gdk_event_get()) != NULL) gdk_event_free(gevent); |
2313 | 724 } |
725 | |
726 static void | |
727 playlistwin_enter(GtkWidget * widget, | |
728 GdkEventMotion * event, | |
729 gpointer callback_data) | |
730 { | |
731 playlistwin_list->pl_tooltips = TRUE; | |
732 } | |
733 | |
734 static void | |
735 playlistwin_leave(GtkWidget * widget, | |
736 GdkEventMotion * event, | |
737 gpointer callback_data) | |
738 { | |
739 playlistwin_list->pl_tooltips = FALSE; | |
740 } | |
741 | |
742 static void | |
743 playlistwin_show_filebrowser(void) | |
744 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
745 run_filebrowser(NO_PLAY_BUTTON); |
2313 | 746 } |
747 | |
748 static void | |
749 playlistwin_fileinfo(void) | |
750 { | |
751 Playlist *playlist = playlist_get_active(); | |
752 | |
753 /* Show the first selected file, or the current file if nothing is | |
754 * selected */ | |
755 GList *list = playlist_get_selected(playlist); | |
756 if (list) { | |
757 playlist_fileinfo(playlist, GPOINTER_TO_INT(list->data)); | |
758 g_list_free(list); | |
759 } | |
760 else | |
761 playlist_fileinfo_current(playlist); | |
762 } | |
763 | |
764 static void | |
2363 | 765 show_playlist_save_error(GtkWindow *parent, |
766 const gchar *filename) | |
2313 | 767 { |
768 GtkWidget *dialog; | |
769 | |
770 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
2363 | 771 g_return_if_fail(filename); |
2313 | 772 |
773 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
774 GTK_DIALOG_DESTROY_WITH_PARENT, | |
775 GTK_MESSAGE_ERROR, | |
776 GTK_BUTTONS_OK, | |
777 _("Error writing playlist \"%s\": %s"), | |
778 filename, strerror(errno)); | |
779 | |
2640 | 780 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ |
2313 | 781 gtk_dialog_run(GTK_DIALOG(dialog)); |
782 gtk_widget_destroy(dialog); | |
783 } | |
784 | |
785 static gboolean | |
786 show_playlist_overwrite_prompt(GtkWindow * parent, | |
787 const gchar * filename) | |
788 { | |
789 GtkWidget *dialog; | |
790 gint result; | |
791 | |
792 g_return_val_if_fail(GTK_IS_WINDOW(parent), FALSE); | |
793 g_return_val_if_fail(filename != NULL, FALSE); | |
794 | |
795 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
796 GTK_DIALOG_DESTROY_WITH_PARENT, | |
797 GTK_MESSAGE_QUESTION, | |
798 GTK_BUTTONS_YES_NO, | |
799 _("%s already exist. Continue?"), | |
800 filename); | |
801 | |
2635 | 802 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ |
2313 | 803 result = gtk_dialog_run(GTK_DIALOG(dialog)); |
804 gtk_widget_destroy(dialog); | |
805 | |
806 return (result == GTK_RESPONSE_YES); | |
807 } | |
808 | |
809 static void | |
810 show_playlist_save_format_error(GtkWindow * parent, | |
811 const gchar * filename) | |
812 { | |
813 const gchar *markup = | |
814 N_("<b><big>Unable to save playlist.</big></b>\n\n" | |
815 "Unknown file type for '%s'.\n"); | |
816 | |
817 GtkWidget *dialog; | |
818 | |
819 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
820 g_return_if_fail(filename != NULL); | |
821 | |
822 dialog = | |
823 gtk_message_dialog_new_with_markup(GTK_WINDOW(parent), | |
824 GTK_DIALOG_DESTROY_WITH_PARENT, | |
825 GTK_MESSAGE_ERROR, | |
826 GTK_BUTTONS_OK, | |
827 _(markup), | |
828 filename); | |
2640 | 829 |
830 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ | |
2313 | 831 gtk_dialog_run(GTK_DIALOG(dialog)); |
832 gtk_widget_destroy(dialog); | |
833 } | |
834 | |
835 static void | |
836 playlistwin_save_playlist(const gchar * filename) | |
837 { | |
838 PlaylistContainer *plc; | |
839 gchar *ext = strrchr(filename, '.') + 1; | |
840 | |
841 plc = playlist_container_find(ext); | |
842 if (plc == NULL) { | |
843 show_playlist_save_format_error(GTK_WINDOW(playlistwin), filename); | |
844 return; | |
845 } | |
846 | |
847 str_replace_in(&cfg.playlist_path, g_path_get_dirname(filename)); | |
848 | |
849 if (g_file_test(filename, G_FILE_TEST_IS_REGULAR)) | |
850 if (!show_playlist_overwrite_prompt(GTK_WINDOW(playlistwin), filename)) | |
851 return; | |
852 | |
853 if (!playlist_save(playlist_get_active(), filename)) | |
854 show_playlist_save_error(GTK_WINDOW(playlistwin), filename); | |
855 } | |
856 | |
857 static void | |
858 playlistwin_load_playlist(const gchar * filename) | |
859 { | |
860 Playlist *playlist = playlist_get_active(); | |
861 | |
862 g_return_if_fail(filename != NULL); | |
863 | |
2640 | 864 str_replace_in(&cfg.playlist_path, g_path_get_dirname(filename)); |
2313 | 865 |
866 playlist_clear(playlist); | |
867 mainwin_clear_song_info(); | |
868 mainwin_set_info_text(); | |
869 | |
870 playlist_load(playlist, filename); | |
871 playlist_set_current_name(playlist, filename); | |
872 } | |
873 | |
874 static gchar * | |
875 playlist_file_selection_load(const gchar * title, | |
876 const gchar * default_filename) | |
877 { | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
878 GtkWidget *dialog; |
2313 | 879 gchar *filename; |
880 | |
881 g_return_val_if_fail(title != NULL, NULL); | |
882 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
883 dialog = make_filebrowser(title, FALSE); |
2640 | 884 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), cfg.playlist_path); |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
885 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), default_filename); |
2640 | 886 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ |
2313 | 887 |
888 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) | |
889 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); | |
890 else | |
891 filename = NULL; | |
892 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
893 gtk_widget_destroy(dialog); |
2313 | 894 return filename; |
895 } | |
896 | |
2636 | 897 static void |
898 on_static_toggle(GtkToggleButton *button, gpointer data) | |
899 { | |
900 Playlist *playlist = playlist_get_active(); | |
901 | |
902 playlist->attribute = | |
2640 | 903 gtk_toggle_button_get_active(button) ? |
904 playlist->attribute | PLAYLIST_STATIC : | |
905 playlist->attribute & ~PLAYLIST_STATIC; | |
2636 | 906 } |
907 | |
2641 | 908 static void |
909 on_relative_toggle(GtkToggleButton *button, gpointer data) | |
910 { | |
911 Playlist *playlist = playlist_get_active(); | |
912 | |
913 playlist->attribute = | |
914 gtk_toggle_button_get_active(button) ? | |
915 playlist->attribute | PLAYLIST_USE_RELATIVE : | |
916 playlist->attribute & ~PLAYLIST_USE_RELATIVE; | |
917 } | |
918 | |
2313 | 919 static gchar * |
920 playlist_file_selection_save(const gchar * title, | |
921 const gchar * default_filename) | |
922 { | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
923 GtkWidget *dialog; |
2313 | 924 gchar *filename; |
2641 | 925 GtkWidget *hbox; |
926 GtkWidget *toggle, *toggle2; | |
2313 | 927 |
928 g_return_val_if_fail(title != NULL, NULL); | |
929 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
930 dialog = make_filebrowser(title, TRUE); |
2640 | 931 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), cfg.playlist_path); |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
932 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), default_filename); |
2636 | 933 |
2641 | 934 hbox = gtk_hbox_new(FALSE, 5); |
935 | |
2636 | 936 /* static playlist */ |
2640 | 937 toggle = gtk_check_button_new_with_label("Save as Static Playlist"); |
2636 | 938 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), |
939 (playlist_get_active()->attribute & PLAYLIST_STATIC) ? TRUE : FALSE); | |
940 g_signal_connect(G_OBJECT(toggle), "toggled", G_CALLBACK(on_static_toggle), dialog); | |
2641 | 941 gtk_box_pack_start(GTK_BOX(hbox), toggle, FALSE, FALSE, 0); |
942 | |
943 /* use relative path */ | |
944 toggle2 = gtk_check_button_new_with_label("Use Relative Path"); | |
945 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle2), | |
946 (playlist_get_active()->attribute & PLAYLIST_USE_RELATIVE) ? TRUE : FALSE); | |
947 g_signal_connect(G_OBJECT(toggle2), "toggled", G_CALLBACK(on_relative_toggle), dialog); | |
948 gtk_box_pack_start(GTK_BOX(hbox), toggle2, FALSE, FALSE, 0); | |
949 | |
950 gtk_widget_show_all(hbox); | |
951 gtk_file_chooser_set_extra_widget(GTK_FILE_CHOOSER(dialog), hbox); | |
2508
ecdfed7b1861
[svn] - more playlist cleanups (generalized code for playlist loading/saving
mf0102
parents:
2507
diff
changeset
|
952 |
2313 | 953 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) |
954 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); | |
955 else | |
956 filename = NULL; | |
957 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
958 gtk_widget_destroy(dialog); |
2313 | 959 return filename; |
960 } | |
961 | |
962 void | |
963 playlistwin_select_playlist_to_load(const gchar * default_filename) | |
964 { | |
965 gchar *filename = | |
966 playlist_file_selection_load(_("Load Playlist"), default_filename); | |
967 | |
968 if (filename) { | |
969 playlistwin_load_playlist(filename); | |
970 g_free(filename); | |
971 } | |
972 } | |
973 | |
974 static void | |
975 playlistwin_select_playlist_to_save(const gchar * default_filename) | |
976 { | |
977 gchar *dot = NULL, *basename = NULL; | |
978 gchar *filename = | |
979 playlist_file_selection_save(_("Save Playlist"), default_filename); | |
980 | |
981 if (filename) { | |
982 /* Default to xspf if no filename has extension */ | |
983 basename = g_path_get_basename(filename); | |
984 dot = strrchr(basename, '.'); | |
985 if( dot == NULL || dot == basename) { | |
986 gchar *oldname = filename; | |
987 filename = g_strconcat(oldname, ".xspf", NULL); | |
988 g_free(oldname); | |
989 } | |
990 g_free(basename); | |
991 | |
992 playlistwin_save_playlist(filename); | |
993 g_free(filename); | |
994 } | |
995 } | |
996 | |
997 #define REGION_L(x1,x2,y1,y2) \ | |
998 (event->x >= (x1) && event->x < (x2) && \ | |
999 event->y >= cfg.playlist_height - (y1) && \ | |
1000 event->y < cfg.playlist_height - (y2)) | |
1001 | |
1002 #define REGION_R(x1,x2,y1,y2) \ | |
1003 (event->x >= playlistwin_get_width() - (x1) && \ | |
1004 event->x < playlistwin_get_width() - (x2) && \ | |
1005 event->y >= cfg.playlist_height - (y1) && \ | |
1006 event->y < cfg.playlist_height - (y2)) | |
1007 | |
1008 static void | |
1009 playlistwin_scrolled(GtkWidget * widget, | |
1010 GdkEventScroll * event, | |
1011 gpointer callback_data) | |
1012 { | |
1013 | |
1014 if (event->direction == GDK_SCROLL_DOWN) | |
1015 playlistwin_scroll(cfg.scroll_pl_by); | |
1016 | |
1017 if (event->direction == GDK_SCROLL_UP) | |
1018 playlistwin_scroll(-cfg.scroll_pl_by); | |
1019 | |
1020 g_cond_signal(cond_scan); | |
1021 | |
1022 } | |
1023 | |
1024 static gboolean | |
1025 playlistwin_press(GtkWidget * widget, | |
1026 GdkEventButton * event, | |
1027 gpointer callback_data) | |
1028 { | |
1029 gboolean grab = TRUE; | |
1030 gint xpos, ypos; | |
1031 GtkRequisition req; | |
2653 | 1032 Playlist *playlist = playlist_get_active(); |
1033 gint idx = 0; | |
2313 | 1034 |
1035 gtk_window_get_position(GTK_WINDOW(playlistwin), &xpos, &ypos); | |
1036 | |
1037 if (event->button == 1 && !cfg.show_wm_decorations && | |
1038 ((!cfg.playlist_shaded && | |
1039 event->x > playlistwin_get_width() - 20 && | |
1040 event->y > cfg.playlist_height - 20) || | |
1041 (cfg.playlist_shaded && | |
1042 event->x >= playlistwin_get_width() - 31 && | |
1043 event->x < playlistwin_get_width() - 22))) { | |
1044 | |
1045 if (event->type != GDK_2BUTTON_PRESS && | |
1046 event->type != GDK_3BUTTON_PRESS) { | |
1047 playlistwin_resizing = TRUE; | |
2492
ea80fe9c3ba4
[svn] - use ConfigureNotify to set playlist location, a proper use of ICCCM.
nenolod
parents:
2491
diff
changeset
|
1048 playlistwin_resize_x = cfg.playlist_width - event->x; |
ea80fe9c3ba4
[svn] - use ConfigureNotify to set playlist location, a proper use of ICCCM.
nenolod
parents:
2491
diff
changeset
|
1049 playlistwin_resize_y = cfg.playlist_height - event->y; |
2313 | 1050 } |
1051 } | |
1052 else if (event->button == 1 && REGION_L(12, 37, 29, 11)) { | |
1053 /* ADD button menu */ | |
1054 gtk_widget_size_request(playlistwin_pladd_menu, &req); | |
1055 ui_manager_popup_menu_show(GTK_MENU(playlistwin_pladd_menu), | |
1056 xpos + 12, | |
1057 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1058 event->button, | |
1059 event->time); | |
1060 grab = FALSE; | |
1061 } | |
1062 else if (event->button == 1 && REGION_L(41, 66, 29, 11)) { | |
1063 /* SUB button menu */ | |
1064 gtk_widget_size_request(playlistwin_pldel_menu, &req); | |
1065 ui_manager_popup_menu_show(GTK_MENU(playlistwin_pldel_menu), | |
1066 xpos + 40, | |
1067 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1068 event->button, | |
1069 event->time); | |
1070 grab = FALSE; | |
1071 } | |
1072 else if (event->button == 1 && REGION_L(70, 95, 29, 11)) { | |
1073 /* SEL button menu */ | |
1074 gtk_widget_size_request(playlistwin_plsel_menu, &req); | |
1075 ui_manager_popup_menu_show(GTK_MENU(playlistwin_plsel_menu), | |
1076 xpos + 68, | |
1077 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1078 event->button, | |
1079 event->time); | |
1080 grab = FALSE; | |
1081 } | |
1082 else if (event->button == 1 && REGION_L(99, 124, 29, 11)) { | |
1083 /* MISC button menu */ | |
1084 gtk_widget_size_request(playlistwin_plsort_menu, &req); | |
1085 ui_manager_popup_menu_show(GTK_MENU(playlistwin_plsort_menu), | |
1086 xpos + 100, | |
1087 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1088 event->button, | |
1089 event->time); | |
1090 grab = FALSE; | |
1091 } | |
1092 else if (event->button == 1 && REGION_R(46, 23, 29, 11)) { | |
1093 /* LIST button menu */ | |
1094 gtk_widget_size_request(playlistwin_pllist_menu, &req); | |
1095 ui_manager_popup_menu_show(GTK_MENU(playlistwin_pllist_menu), | |
1096 xpos + playlistwin_get_width() - req.width - 12, | |
1097 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1098 event->button, | |
1099 event->time); | |
1100 grab = FALSE; | |
1101 } | |
1102 else if (event->button == 1 && REGION_R(82, 54, 15, 9)) { | |
1103 if (cfg.timer_mode == TIMER_ELAPSED) | |
1104 cfg.timer_mode = TIMER_REMAINING; | |
1105 else | |
1106 cfg.timer_mode = TIMER_ELAPSED; | |
1107 } | |
1108 else if (event->button == 2 && (event->type == GDK_BUTTON_PRESS) && | |
1109 widget_contains(WIDGET(playlistwin_list), event->x, event->y)) { | |
1110 gtk_selection_convert(widget, GDK_SELECTION_PRIMARY, | |
1111 GDK_TARGET_STRING, event->time); | |
1112 } | |
1113 else if (event->button == 1 && event->type == GDK_BUTTON_PRESS && | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1114 !ui_skinned_window_widgetlist_contained(playlistwin, event->x, |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1115 event->y) && |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1116 (cfg.easy_move || event->y < 14)) |
2313 | 1117 { |
1118 dock_move_press(dock_window_list, GTK_WINDOW(playlistwin), event, | |
1119 FALSE); | |
1120 gtk_window_present(GTK_WINDOW(playlistwin)); | |
1121 } | |
1122 else if (event->button == 1 && event->type == GDK_2BUTTON_PRESS && | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1123 !ui_skinned_window_widgetlist_contained(playlistwin, event->x, event->y) |
2313 | 1124 && event->y < 14) { |
1125 /* double click on title bar */ | |
1126 playlistwin_shade_toggle(); | |
1127 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
1128 dock_move_release(GTK_WINDOW(playlistwin)); | |
1129 return TRUE; | |
1130 } | |
1131 else if (event->button == 3 && | |
1132 !(widget_contains(WIDGET(playlistwin_list), event->x, event->y) || | |
1133 (event->y >= cfg.playlist_height - 29 && | |
1134 event->y < cfg.playlist_height - 11 && | |
1135 ((event->x >= 12 && event->x < 37) || | |
1136 (event->x >= 41 && event->x < 66) || | |
1137 (event->x >= 70 && event->x < 95) || | |
1138 (event->x >= 99 && event->x < 124) || | |
1139 (event->x >= playlistwin_get_width() - 46 && | |
1140 event->x < playlistwin_get_width() - 23))))) { | |
1141 /* | |
1142 * Pop up the main menu a few pixels down to avoid | |
1143 * anything to be selected initially. | |
1144 */ | |
1145 ui_manager_popup_menu_show(GTK_MENU(mainwin_general_menu), event->x_root, | |
1146 event->y_root + 2, 3, event->time); | |
1147 grab = FALSE; | |
1148 } | |
1149 else if (event->button == 3 && | |
1150 widget_contains(WIDGET(playlistwin_list), event->x, event->y)) { | |
2356
4b2c7d9523e7
[svn] right-clicking on playlist entry automatically selects the entry if it was unselected before, closes #728
mf0102
parents:
2351
diff
changeset
|
1151 handle_press_cb(playlistwin_wlist, widget, event); |
2313 | 1152 ui_manager_popup_menu_show(GTK_MENU(playlistwin_popup_menu), |
1153 event->x_root, event->y_root + 5, | |
1154 event->button, event->time); | |
1155 grab = FALSE; | |
1156 } | |
2650
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1157 else if (event->button == 1 && (event->state & GDK_MOD1_MASK)) |
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1158 { |
2653 | 1159 GList *node; |
2650
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1160 |
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1161 handle_press_cb(playlistwin_wlist, widget, event); |
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1162 draw_playlist_window(FALSE); |
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1163 |
2653 | 1164 node = playlist_get_selected(playlist); |
2652
2d0c90f38824
[svn] - fix alt+click enqueue. this is more like vincent ratier's original patch except that it's C90-capable for freebsd 4.
nenolod
parents:
2650
diff
changeset
|
1165 |
2653 | 1166 if (node != NULL) |
1167 { | |
1168 idx = GPOINTER_TO_INT(playlist_get_selected(playlist)->data); | |
1169 playlist_queue_position(playlist, idx); | |
1170 } | |
1171 | |
1172 grab = FALSE; | |
2650
f41ca301852a
[svn] - patch by Vincent Ratier to add Alt+Click enqueue to the playlist editor. Closes #860.
nenolod
parents:
2641
diff
changeset
|
1173 } |
2313 | 1174 else { |
1175 handle_press_cb(playlistwin_wlist, widget, event); | |
1176 draw_playlist_window(FALSE); | |
1177 } | |
1178 | |
1179 if (grab) | |
1180 gdk_pointer_grab(playlistwin->window, FALSE, | |
1181 GDK_BUTTON_MOTION_MASK | GDK_BUTTON_RELEASE_MASK | | |
1182 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | | |
1183 GDK_BUTTON1_MOTION_MASK, NULL, NULL, | |
1184 GDK_CURRENT_TIME); | |
1185 | |
1186 return FALSE; | |
1187 } | |
1188 | |
1189 static gboolean | |
1190 playlistwin_focus_in(GtkWidget * widget, GdkEvent * event, gpointer data) | |
1191 { | |
1192 playlistwin_close->pb_allow_draw = TRUE; | |
1193 playlistwin_shade->pb_allow_draw = TRUE; | |
1194 draw_playlist_window(TRUE); | |
1195 return FALSE; | |
1196 } | |
1197 | |
1198 static gboolean | |
1199 playlistwin_focus_out(GtkWidget * widget, | |
1200 GdkEventButton * event, gpointer data) | |
1201 { | |
1202 playlistwin_close->pb_allow_draw = FALSE; | |
1203 playlistwin_shade->pb_allow_draw = FALSE; | |
1204 draw_playlist_window(TRUE); | |
1205 return FALSE; | |
1206 } | |
1207 | |
1208 void | |
1209 playlistwin_set_back_pixmap(void) | |
1210 { | |
1211 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
1212 gdk_window_clear(playlistwin->window); | |
1213 } | |
1214 | |
1215 static gboolean | |
1216 playlistwin_delete(GtkWidget * w, gpointer data) | |
1217 { | |
1218 playlistwin_hide(); | |
1219 return TRUE; | |
1220 } | |
1221 | |
1222 static void | |
1223 playlistwin_keypress_up_down_handler(PlayList_List * pl, | |
1224 gboolean up, guint state) | |
1225 { | |
1226 Playlist *playlist = playlist_get_active(); | |
1227 | |
1228 if ((state & GDK_MOD1_MASK) && (state & GDK_SHIFT_MASK)) | |
1229 return; | |
1230 if (!(state & GDK_MOD1_MASK)) | |
1231 playlist_select_all(playlist, FALSE); | |
1232 | |
1233 if (pl->pl_prev_selected == -1 || | |
1234 (!playlistwin_item_visible(pl->pl_prev_selected) && | |
1235 !(state & GDK_SHIFT_MASK && pl->pl_prev_min != -1))) { | |
1236 pl->pl_prev_selected = pl->pl_first; | |
1237 } | |
1238 else if (state & GDK_SHIFT_MASK) { | |
1239 if (pl->pl_prev_min == -1) { | |
1240 pl->pl_prev_max = pl->pl_prev_selected; | |
1241 pl->pl_prev_min = pl->pl_prev_selected; | |
1242 } | |
1243 pl->pl_prev_max += (up ? -1 : 1); | |
1244 pl->pl_prev_max = | |
1245 CLAMP(pl->pl_prev_max, 0, playlist_get_length(playlist) - 1); | |
1246 | |
1247 pl->pl_first = MIN(pl->pl_first, pl->pl_prev_max); | |
1248 pl->pl_first = MAX(pl->pl_first, pl->pl_prev_max - | |
1249 pl->pl_num_visible + 1); | |
1250 playlist_select_range(playlist, pl->pl_prev_min, pl->pl_prev_max, TRUE); | |
1251 return; | |
1252 } | |
1253 else if (state & GDK_MOD1_MASK) { | |
1254 if (up) | |
1255 playlist_list_move_up(pl); | |
1256 else | |
1257 playlist_list_move_down(pl); | |
1258 if (pl->pl_prev_min < pl->pl_first) | |
1259 pl->pl_first = pl->pl_prev_min; | |
1260 else if (pl->pl_prev_max >= (pl->pl_first + pl->pl_num_visible)) | |
1261 pl->pl_first = pl->pl_prev_max - pl->pl_num_visible + 1; | |
1262 return; | |
1263 } | |
1264 else if (up) | |
1265 pl->pl_prev_selected--; | |
1266 else | |
1267 pl->pl_prev_selected++; | |
1268 | |
1269 pl->pl_prev_selected = | |
1270 CLAMP(pl->pl_prev_selected, 0, playlist_get_length(playlist) - 1); | |
1271 | |
1272 if (pl->pl_prev_selected < pl->pl_first) | |
1273 pl->pl_first--; | |
1274 else if (pl->pl_prev_selected >= (pl->pl_first + pl->pl_num_visible)) | |
1275 pl->pl_first++; | |
1276 | |
1277 playlist_select_range(playlist, pl->pl_prev_selected, pl->pl_prev_selected, TRUE); | |
1278 pl->pl_prev_min = -1; | |
1279 } | |
1280 | |
1281 /* FIXME: Handle the keys through menu */ | |
1282 | |
1283 static gboolean | |
1284 playlistwin_keypress(GtkWidget * w, GdkEventKey * event, gpointer data) | |
1285 { | |
1286 Playlist *playlist = playlist_get_active(); | |
1287 | |
1288 guint keyval; | |
1289 gboolean refresh = FALSE; | |
1290 | |
1291 if (cfg.playlist_shaded) | |
1292 return FALSE; | |
1293 | |
1294 switch (keyval = event->keyval) { | |
1295 case GDK_KP_Up: | |
1296 case GDK_KP_Down: | |
1297 case GDK_Up: | |
1298 case GDK_Down: | |
1299 playlistwin_keypress_up_down_handler(playlistwin_list, | |
1300 keyval == GDK_Up | |
1301 || keyval == GDK_KP_Up, | |
1302 event->state); | |
1303 refresh = TRUE; | |
1304 break; | |
1305 case GDK_Page_Up: | |
1306 playlistwin_scroll(-playlistwin_list->pl_num_visible); | |
1307 refresh = TRUE; | |
1308 break; | |
1309 case GDK_Page_Down: | |
1310 playlistwin_scroll(playlistwin_list->pl_num_visible); | |
1311 refresh = TRUE; | |
1312 break; | |
1313 case GDK_Home: | |
1314 playlistwin_list->pl_first = 0; | |
1315 refresh = TRUE; | |
1316 break; | |
1317 case GDK_End: | |
1318 playlistwin_list->pl_first = | |
1319 playlist_get_length(playlist) - playlistwin_list->pl_num_visible; | |
1320 refresh = TRUE; | |
1321 break; | |
1322 case GDK_Return: | |
1323 if (playlistwin_list->pl_prev_selected > -1 | |
1324 && playlistwin_item_visible(playlistwin_list->pl_prev_selected)) { | |
1325 playlist_set_position(playlist, playlistwin_list->pl_prev_selected); | |
1326 if (!playback_get_playing()) | |
1327 playback_initiate(); | |
1328 } | |
1329 break; | |
1330 case GDK_3: | |
1331 if (event->state & GDK_CONTROL_MASK) | |
1332 playlistwin_fileinfo(); | |
1333 break; | |
1334 case GDK_Delete: | |
1335 if (event->state & GDK_CONTROL_MASK) | |
1336 playlist_delete(playlist, TRUE); | |
1337 else | |
1338 playlist_delete(playlist, FALSE); | |
1339 break; | |
1340 case GDK_Insert: | |
1341 if (event->state & GDK_MOD1_MASK) | |
1342 mainwin_show_add_url_window(); | |
1343 else | |
1344 playlistwin_show_filebrowser(); | |
1345 break; | |
1346 case GDK_Left: | |
1347 case GDK_KP_Left: | |
1348 case GDK_KP_7: | |
1349 if (playlist_get_current_length(playlist) != -1) | |
1350 playback_seek(CLAMP | |
1351 (playback_get_time() - 5000, 0, | |
1352 playlist_get_current_length(playlist)) / 1000); | |
1353 break; | |
1354 case GDK_Right: | |
1355 case GDK_KP_Right: | |
1356 case GDK_KP_9: | |
1357 if (playlist_get_current_length(playlist) != -1) | |
1358 playback_seek(CLAMP | |
1359 (playback_get_time() + 5000, 0, | |
1360 playlist_get_current_length(playlist)) / 1000); | |
1361 break; | |
1362 case GDK_KP_4: | |
1363 playlist_prev(playlist); | |
1364 break; | |
1365 case GDK_KP_6: | |
1366 playlist_next(playlist); | |
1367 break; | |
1368 | |
1369 case GDK_Escape: | |
1370 mainwin_minimize_cb(); | |
1371 break; | |
1372 default: | |
1373 return FALSE; | |
1374 } | |
1375 | |
1376 if (refresh) { | |
1377 g_cond_signal(cond_scan); | |
1378 playlistwin_update_list(playlist_get_active()); | |
1379 } | |
1380 | |
1381 return TRUE; | |
1382 } | |
1383 | |
1384 static void | |
1385 playlistwin_draw_frame(void) | |
1386 { | |
1387 gboolean focus = | |
1388 gtk_window_has_toplevel_focus(GTK_WINDOW(playlistwin)) || | |
1389 !cfg.dim_titlebar; | |
1390 | |
1391 if (cfg.playlist_shaded) { | |
1392 skin_draw_playlistwin_shaded(bmp_active_skin, | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1393 playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1394 playlistwin_get_width(), focus); |
1395 } | |
1396 else { | |
1397 skin_draw_playlistwin_frame(bmp_active_skin, | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1398 playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1399 playlistwin_get_width(), |
1400 cfg.playlist_height, focus); | |
1401 } | |
1402 } | |
1403 | |
1404 void | |
1405 draw_playlist_window(gboolean force) | |
1406 { | |
1407 gboolean redraw; | |
1408 GList *wl; | |
1409 Widget *w; | |
1410 | |
1411 if (force) | |
1412 playlistwin_draw_frame(); | |
1413 | |
1414 widget_list_lock(playlistwin_wlist); | |
1415 widget_list_draw(playlistwin_wlist, &redraw, force); | |
1416 | |
1417 if (redraw || force) { | |
1418 if (force) { | |
1419 gdk_window_clear(playlistwin->window); | |
1420 } | |
1421 else { | |
1422 for (wl = playlistwin_wlist; wl; wl = g_list_next(wl)) { | |
1423 w = WIDGET(wl->data); | |
1424 if (w->redraw && w->visible) { | |
1425 gdk_window_clear_area(playlistwin->window, w->x, w->y, | |
1426 w->width, w->height); | |
1427 w->redraw = FALSE; | |
1428 } | |
1429 } | |
1430 } | |
1431 | |
1432 gdk_flush(); | |
1433 } | |
1434 | |
1435 widget_list_unlock(playlistwin_wlist); | |
1436 } | |
1437 | |
1438 | |
1439 void | |
1440 playlistwin_hide_timer(void) | |
1441 { | |
1442 textbox_set_text(playlistwin_time_min, " "); | |
1443 textbox_set_text(playlistwin_time_sec, " "); | |
1444 } | |
1445 | |
1446 void | |
1447 playlistwin_set_time(gint time, gint length, TimerMode mode) | |
1448 { | |
1449 gchar *text, sign; | |
1450 | |
1451 if (mode == TIMER_REMAINING && length != -1) { | |
1452 time = length - time; | |
1453 sign = '-'; | |
1454 } | |
1455 else | |
1456 sign = ' '; | |
1457 | |
1458 time /= 1000; | |
1459 | |
1460 if (time < 0) | |
1461 time = 0; | |
1462 if (time > 99 * 60) | |
1463 time /= 60; | |
1464 | |
1465 text = g_strdup_printf("%c%-2.2d", sign, time / 60); | |
1466 textbox_set_text(playlistwin_time_min, text); | |
1467 g_free(text); | |
1468 | |
1469 text = g_strdup_printf("%-2.2d", time % 60); | |
1470 textbox_set_text(playlistwin_time_sec, text); | |
1471 g_free(text); | |
1472 } | |
1473 | |
1474 static void | |
1475 playlistwin_drag_motion(GtkWidget * widget, | |
1476 GdkDragContext * context, | |
1477 gint x, gint y, | |
1478 GtkSelectionData * selection_data, | |
1479 guint info, guint time, gpointer user_data) | |
1480 { | |
1481 playlistwin_list->pl_drag_motion = TRUE; | |
1482 playlistwin_list->drag_motion_x = x; | |
1483 playlistwin_list->drag_motion_y = y; | |
1484 playlistwin_update_list(playlist_get_active()); | |
1485 playlistwin_hint_flag = TRUE; | |
1486 } | |
1487 | |
1488 static void | |
1489 playlistwin_drag_end(GtkWidget * widget, | |
1490 GdkDragContext * context, gpointer user_data) | |
1491 { | |
1492 playlistwin_list->pl_drag_motion = FALSE; | |
1493 playlistwin_hint_flag = FALSE; | |
1494 playlistwin_update_list(playlist_get_active()); | |
1495 } | |
1496 | |
1497 static void | |
1498 playlistwin_drag_data_received(GtkWidget * widget, | |
1499 GdkDragContext * context, | |
1500 gint x, gint y, | |
1501 GtkSelectionData * | |
1502 selection_data, guint info, | |
1503 guint time, gpointer user_data) | |
1504 { | |
1505 gint pos; | |
1506 Playlist *playlist = playlist_get_active(); | |
1507 | |
2363 | 1508 g_return_if_fail(selection_data); |
2313 | 1509 |
1510 if (!selection_data->data) { | |
1511 g_message("Received no DND data!"); | |
1512 return; | |
1513 } | |
1514 | |
1515 if (widget_contains(WIDGET(playlistwin_list), x, y)) { | |
1516 pos = (y - WIDGET(playlistwin_list)->y) / | |
1517 playlistwin_list->pl_fheight + playlistwin_list->pl_first; | |
1518 | |
1519 pos = MIN(pos, playlist_get_length(playlist)); | |
1520 playlist_ins_url(playlist, (gchar *) selection_data->data, pos); | |
1521 } | |
1522 else | |
1523 playlist_add_url(playlist, (gchar *) selection_data->data); | |
1524 } | |
1525 | |
1526 static void | |
1527 local_playlist_prev(void) | |
1528 { | |
1529 playlist_prev(playlist_get_active()); | |
1530 } | |
1531 | |
1532 static void | |
1533 local_playlist_next(void) | |
1534 { | |
1535 playlist_next(playlist_get_active()); | |
1536 } | |
1537 | |
1538 static void | |
1539 playlistwin_create_widgets(void) | |
1540 { | |
1541 /* This function creates the custom widgets used by the playlist editor */ | |
1542 | |
1543 /* text box for displaying song title in shaded mode */ | |
1544 playlistwin_sinfo = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1545 create_textbox(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1546 4, 4, playlistwin_get_width() - 35, TRUE, SKIN_TEXT); |
1547 | |
1548 playlistwin_set_sinfo_font(cfg.playlist_font); | |
1549 | |
1550 if (!cfg.playlist_shaded) | |
1551 widget_hide(WIDGET(playlistwin_sinfo)); | |
1552 | |
1553 /* shade/unshade window push button */ | |
1554 if (cfg.playlist_shaded) | |
1555 playlistwin_shade = | |
1556 create_pbutton(&playlistwin_wlist, playlistwin_bg, | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1557 SKINNED_WINDOW(playlistwin)->gc, playlistwin_get_width() - 21, 3, |
2313 | 1558 9, 9, 128, 45, 150, 42, |
1559 playlistwin_shade_toggle, SKIN_PLEDIT); | |
1560 else | |
1561 playlistwin_shade = | |
1562 create_pbutton(&playlistwin_wlist, playlistwin_bg, | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1563 SKINNED_WINDOW(playlistwin)->gc, playlistwin_get_width() - 21, 3, |
2313 | 1564 9, 9, 157, 3, 62, 42, playlistwin_shade_toggle, |
1565 SKIN_PLEDIT); | |
1566 | |
1567 playlistwin_shade->pb_allow_draw = FALSE; | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1568 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_shade)); |
2313 | 1569 |
1570 /* close window push button */ | |
1571 playlistwin_close = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1572 create_pbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1573 playlistwin_get_width() - 11, 3, 9, 9, |
1574 cfg.playlist_shaded ? 138 : 167, | |
1575 cfg.playlist_shaded ? 45 : 3, 52, 42, | |
1576 playlistwin_hide, SKIN_PLEDIT); | |
1577 playlistwin_close->pb_allow_draw = FALSE; | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1578 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_close)); |
2313 | 1579 |
1580 /* playlist list box */ | |
1581 playlistwin_list = | |
1582 create_playlist_list(&playlistwin_wlist, playlistwin_bg, | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1583 SKINNED_WINDOW(playlistwin)->gc, 12, 20, |
2313 | 1584 playlistwin_get_width() - 31, |
1585 cfg.playlist_height - 58); | |
1586 playlist_list_set_font(cfg.playlist_font); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1587 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_list)); |
2313 | 1588 |
1589 /* playlist list box slider */ | |
1590 playlistwin_slider = | |
1591 create_playlistslider(&playlistwin_wlist, playlistwin_bg, | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1592 SKINNED_WINDOW(playlistwin)->gc, playlistwin_get_width() - 15, |
2313 | 1593 20, cfg.playlist_height - 58, playlistwin_list); |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1594 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_slider)); |
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1595 |
2313 | 1596 /* track time (minute) */ |
1597 playlistwin_time_min = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1598 create_textbox(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1599 playlistwin_get_width() - 82, |
1600 cfg.playlist_height - 15, 15, FALSE, SKIN_TEXT); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1601 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_time_min)); |
2313 | 1602 |
1603 /* track time (second) */ | |
1604 playlistwin_time_sec = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1605 create_textbox(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1606 playlistwin_get_width() - 64, |
1607 cfg.playlist_height - 15, 10, FALSE, SKIN_TEXT); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1608 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_time_sec)); |
2313 | 1609 |
1610 /* playlist information (current track length / total track length) */ | |
1611 playlistwin_info = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1612 create_textbox(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1613 playlistwin_get_width() - 143, |
1614 cfg.playlist_height - 28, 90, FALSE, SKIN_TEXT); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1615 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_info)); |
2313 | 1616 |
1617 /* mini play control buttons at right bottom corner */ | |
1618 | |
1619 /* rewind button */ | |
1620 playlistwin_srew = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1621 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1622 playlistwin_get_width() - 144, |
1623 cfg.playlist_height - 16, 8, 7, local_playlist_prev); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1624 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_srew)); |
2313 | 1625 |
1626 /* play button */ | |
1627 playlistwin_splay = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1628 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1629 playlistwin_get_width() - 138, |
1630 cfg.playlist_height - 16, 10, 7, mainwin_play_pushed); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1631 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_splay)); |
2313 | 1632 |
1633 /* pause button */ | |
1634 playlistwin_spause = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1635 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1636 playlistwin_get_width() - 128, |
1637 cfg.playlist_height - 16, 10, 7, playback_pause); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1638 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_spause)); |
2313 | 1639 |
1640 /* stop button */ | |
1641 playlistwin_sstop = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1642 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1643 playlistwin_get_width() - 118, |
1644 cfg.playlist_height - 16, 9, 7, mainwin_stop_pushed); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1645 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_sstop)); |
2313 | 1646 |
1647 /* forward button */ | |
1648 playlistwin_sfwd = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1649 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1650 playlistwin_get_width() - 109, |
1651 cfg.playlist_height - 16, 8, 7, local_playlist_next); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1652 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_sfwd)); |
2313 | 1653 |
1654 /* eject button */ | |
1655 playlistwin_seject = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1656 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1657 playlistwin_get_width() - 100, |
1658 cfg.playlist_height - 16, 9, 7, mainwin_eject_pushed); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1659 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_seject)); |
2313 | 1660 |
1661 playlistwin_sscroll_up = | |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1662 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1663 playlistwin_get_width() - 14, |
1664 cfg.playlist_height - 35, 8, 5, | |
1665 playlistwin_scroll_up_pushed); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1666 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_sscroll_up)); |
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1667 |
2313 | 1668 playlistwin_sscroll_down = |
2527
05c841971f9f
[svn] - playlist editor: use SkinnedWindow provided GC.
nenolod
parents:
2515
diff
changeset
|
1669 create_sbutton(&playlistwin_wlist, playlistwin_bg, SKINNED_WINDOW(playlistwin)->gc, |
2313 | 1670 playlistwin_get_width() - 14, |
1671 cfg.playlist_height - 30, 8, 5, | |
1672 playlistwin_scroll_down_pushed); | |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1673 ui_skinned_window_widgetlist_associate(playlistwin, WIDGET(playlistwin_sscroll_down)); |
2313 | 1674 } |
1675 | |
1676 static void | |
1677 selection_received(GtkWidget * widget, | |
1678 GtkSelectionData * selection_data, gpointer data) | |
1679 { | |
1680 if (selection_data->type == GDK_SELECTION_TYPE_STRING && | |
1681 selection_data->length > 0) | |
1682 playlist_add_url(playlist_get_active(), (gchar *) selection_data->data); | |
1683 } | |
1684 | |
1685 static void | |
1686 playlistwin_create_window(void) | |
1687 { | |
1688 GdkPixbuf *icon; | |
1689 | |
2515
319b10203d7c
[svn] gtk_window_set_wmclass() has to be called before gtk_widget_realize(). Patched by Christian "Joker" Birchinger from Gentoo.
chainsaw
parents:
2514
diff
changeset
|
1690 playlistwin = ui_skinned_window_new(GTK_WINDOW_TOPLEVEL, "playlist"); |
2313 | 1691 gtk_window_set_title(GTK_WINDOW(playlistwin), _("Audacious Playlist Editor")); |
1692 gtk_window_set_role(GTK_WINDOW(playlistwin), "playlist"); | |
1693 gtk_window_set_default_size(GTK_WINDOW(playlistwin), | |
1694 playlistwin_get_width(), | |
1695 playlistwin_get_height()); | |
1696 gtk_window_set_resizable(GTK_WINDOW(playlistwin), TRUE); | |
1697 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
1698 | |
1699 gtk_window_set_transient_for(GTK_WINDOW(playlistwin), | |
1700 GTK_WINDOW(mainwin)); | |
1701 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(playlistwin), TRUE); | |
1702 | |
1703 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) bmp_playlist_icon); | |
1704 gtk_window_set_icon(GTK_WINDOW(playlistwin), icon); | |
1705 g_object_unref(icon); | |
1706 | |
1707 gtk_widget_set_app_paintable(playlistwin, TRUE); | |
1708 | |
1709 if (cfg.playlist_x != -1 && cfg.save_window_position) | |
1710 gtk_window_move(GTK_WINDOW(playlistwin), | |
1711 cfg.playlist_x, cfg.playlist_y); | |
1712 | |
1713 gtk_widget_add_events(playlistwin, GDK_POINTER_MOTION_MASK | | |
1714 GDK_FOCUS_CHANGE_MASK | GDK_BUTTON_MOTION_MASK | | |
1715 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | | |
1716 GDK_SCROLL_MASK | GDK_VISIBILITY_NOTIFY_MASK); | |
1717 gtk_widget_realize(playlistwin); | |
1718 | |
1719 g_signal_connect(playlistwin, "delete_event", | |
1720 G_CALLBACK(playlistwin_delete), NULL); | |
1721 g_signal_connect(playlistwin, "button_press_event", | |
1722 G_CALLBACK(playlistwin_press), NULL); | |
1723 g_signal_connect(playlistwin, "button_release_event", | |
1724 G_CALLBACK(playlistwin_release), NULL); | |
1725 g_signal_connect(playlistwin, "scroll_event", | |
1726 G_CALLBACK(playlistwin_scrolled), NULL); | |
1727 g_signal_connect(playlistwin, "motion_notify_event", | |
1728 G_CALLBACK(playlistwin_motion), NULL); | |
1729 g_signal_connect(playlistwin, "enter_notify_event", | |
1730 G_CALLBACK(playlistwin_enter), NULL); | |
1731 g_signal_connect(playlistwin, "leave_notify_event", | |
1732 G_CALLBACK(playlistwin_leave), NULL); | |
1733 g_signal_connect_after(playlistwin, "focus_in_event", | |
1734 G_CALLBACK(playlistwin_focus_in), NULL); | |
1735 g_signal_connect_after(playlistwin, "focus_out_event", | |
1736 G_CALLBACK(playlistwin_focus_out), NULL); | |
1737 g_signal_connect(playlistwin, "style_set", | |
1738 G_CALLBACK(playlistwin_set_back_pixmap), NULL); | |
1739 | |
1740 bmp_drag_dest_set(playlistwin); | |
1741 | |
1742 /* DnD stuff */ | |
1743 g_signal_connect(playlistwin, "drag-leave", | |
1744 G_CALLBACK(playlistwin_drag_end), NULL); | |
1745 g_signal_connect(playlistwin, "drag-data-delete", | |
1746 G_CALLBACK(playlistwin_drag_end), NULL); | |
1747 g_signal_connect(playlistwin, "drag-end", | |
1748 G_CALLBACK(playlistwin_drag_end), NULL); | |
1749 g_signal_connect(playlistwin, "drag-drop", | |
1750 G_CALLBACK(playlistwin_drag_end), NULL); | |
1751 g_signal_connect(playlistwin, "drag-data-received", | |
1752 G_CALLBACK(playlistwin_drag_data_received), NULL); | |
1753 g_signal_connect(playlistwin, "drag-motion", | |
1754 G_CALLBACK(playlistwin_drag_motion), NULL); | |
1755 | |
1756 g_signal_connect(playlistwin, "key_press_event", | |
1757 G_CALLBACK(playlistwin_keypress), NULL); | |
1758 g_signal_connect(playlistwin, "selection_received", | |
1759 G_CALLBACK(selection_received), NULL); | |
1760 | |
1761 playlistwin_set_mask(); | |
1762 } | |
1763 | |
1764 void | |
1765 playlistwin_create(void) | |
1766 { | |
1767 playlistwin_create_window(); | |
1768 | |
1769 /* create GC and back pixmap for custom widget to draw on */ | |
1770 playlistwin_bg = gdk_pixmap_new(playlistwin->window, | |
1771 playlistwin_get_width(), | |
1772 playlistwin_get_height_unshaded(), -1); | |
1773 gdk_window_set_back_pixmap(playlistwin->window, playlistwin_bg, 0); | |
1774 | |
1775 playlistwin_create_widgets(); | |
1776 playlistwin_update_info(playlist_get_active()); | |
1777 | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1778 playlistwin_infopopup = audacious_fileinfopopup_create(); |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1779 |
2313 | 1780 gtk_window_add_accel_group(GTK_WINDOW(playlistwin), ui_manager_get_accel_group()); |
1781 } | |
1782 | |
1783 | |
1784 void | |
1785 playlistwin_show(void) | |
1786 { | |
1787 GtkAction *action = gtk_action_group_get_action( | |
1788 toggleaction_group_others , "show playlist editor" ); | |
1789 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , TRUE ); | |
1790 | |
1791 cfg.playlist_visible = TRUE; | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2807
diff
changeset
|
1792 //FIXME: set mainwin_pl->inside as TRUE and redraw it |
2313 | 1793 |
1794 playlistwin_set_toprow(0); | |
1795 playlist_check_pos_current(playlist_get_active()); | |
1796 | |
2351
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
1797 if ( playlistwin_infopopup_sid == 0 ) |
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
1798 playlistwin_infopopup_sid = g_timeout_add( |
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
1799 50 , (GSourceFunc)playlistwin_fileinfopopup_probe , playlistwin_infopopup ); |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1800 |
2313 | 1801 gtk_widget_show(playlistwin); |
1802 } | |
1803 | |
1804 void | |
1805 playlistwin_hide(void) | |
1806 { | |
1807 GtkAction *action = gtk_action_group_get_action( | |
1808 toggleaction_group_others , "show playlist editor" ); | |
1809 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , FALSE ); | |
1810 | |
1811 gtk_widget_hide(playlistwin); | |
1812 cfg.playlist_visible = FALSE; | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2807
diff
changeset
|
1813 //FIXME: set mainwin_pl->inside as FALSE and redraw it |
2313 | 1814 |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1815 /* no point in probing for playlistwin_infopopup trigger when the playlistwin is hidden */ |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1816 if ( playlistwin_infopopup_sid != 0 ) |
2351
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
1817 { |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1818 g_source_remove( playlistwin_infopopup_sid ); |
2351
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
1819 playlistwin_infopopup_sid = 0; |
911743d27aba
[svn] - simplify and optimize the metadata tooltip trigger function
giacomo
parents:
2348
diff
changeset
|
1820 } |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
1821 |
2338
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1822 if ( cfg.player_visible ) |
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1823 { |
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1824 gtk_window_present(GTK_WINDOW(mainwin)); |
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1825 gtk_widget_grab_focus(mainwin); |
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1826 } |
2313 | 1827 } |
1828 | |
1829 void action_playlist_track_info(void) | |
1830 { | |
1831 playlistwin_fileinfo(); | |
1832 } | |
1833 | |
1834 void action_queue_toggle(void) | |
1835 { | |
1836 playlist_queue(playlist_get_active()); | |
1837 } | |
1838 | |
1839 void action_playlist_sort_by_playlist_entry(void) | |
1840 { | |
1841 Playlist *playlist = playlist_get_active(); | |
1842 | |
1843 playlist_sort(playlist, PLAYLIST_SORT_PLAYLIST); | |
1844 playlistwin_update_list(playlist); | |
1845 } | |
1846 | |
1847 void action_playlist_sort_by_track_number(void) | |
1848 { | |
1849 Playlist *playlist = playlist_get_active(); | |
1850 | |
1851 playlist_sort(playlist, PLAYLIST_SORT_TRACK); | |
1852 playlistwin_update_list(playlist); | |
1853 } | |
1854 | |
1855 void action_playlist_sort_by_title(void) | |
1856 { | |
1857 Playlist *playlist = playlist_get_active(); | |
1858 | |
1859 playlist_sort(playlist, PLAYLIST_SORT_TITLE); | |
1860 playlistwin_update_list(playlist); | |
1861 } | |
1862 | |
1863 void action_playlist_sort_by_artist(void) | |
1864 { | |
1865 Playlist *playlist = playlist_get_active(); | |
1866 | |
1867 playlist_sort(playlist, PLAYLIST_SORT_ARTIST); | |
1868 playlistwin_update_list(playlist); | |
1869 } | |
1870 | |
1871 void action_playlist_sort_by_full_path(void) | |
1872 { | |
1873 Playlist *playlist = playlist_get_active(); | |
1874 | |
1875 playlist_sort(playlist, PLAYLIST_SORT_PATH); | |
1876 playlistwin_update_list(playlist); | |
1877 } | |
1878 | |
1879 void action_playlist_sort_by_date(void) | |
1880 { | |
1881 Playlist *playlist = playlist_get_active(); | |
1882 | |
1883 playlist_sort(playlist, PLAYLIST_SORT_DATE); | |
1884 playlistwin_update_list(playlist); | |
1885 } | |
1886 | |
1887 void action_playlist_sort_by_filename(void) | |
1888 { | |
1889 Playlist *playlist = playlist_get_active(); | |
1890 | |
1891 playlist_sort(playlist, PLAYLIST_SORT_FILENAME); | |
1892 playlistwin_update_list(playlist); | |
1893 } | |
1894 | |
1895 void action_playlist_sort_selected_by_playlist_entry(void) | |
1896 { | |
1897 Playlist *playlist = playlist_get_active(); | |
1898 | |
1899 playlist_sort_selected(playlist, PLAYLIST_SORT_PLAYLIST); | |
1900 playlistwin_update_list(playlist); | |
1901 } | |
1902 | |
1903 void action_playlist_sort_selected_by_track_number(void) | |
1904 { | |
1905 Playlist *playlist = playlist_get_active(); | |
1906 | |
1907 playlist_sort_selected(playlist, PLAYLIST_SORT_TRACK); | |
1908 playlistwin_update_list(playlist); | |
1909 } | |
1910 | |
1911 void action_playlist_sort_selected_by_title(void) | |
1912 { | |
1913 Playlist *playlist = playlist_get_active(); | |
1914 | |
1915 playlist_sort_selected(playlist, PLAYLIST_SORT_TITLE); | |
1916 playlistwin_update_list(playlist); | |
1917 } | |
1918 | |
1919 void action_playlist_sort_selected_by_artist(void) | |
1920 { | |
1921 Playlist *playlist = playlist_get_active(); | |
1922 | |
1923 playlist_sort_selected(playlist, PLAYLIST_SORT_ARTIST); | |
1924 playlistwin_update_list(playlist); | |
1925 } | |
1926 | |
1927 void action_playlist_sort_selected_by_full_path(void) | |
1928 { | |
1929 Playlist *playlist = playlist_get_active(); | |
1930 | |
1931 playlist_sort_selected(playlist, PLAYLIST_SORT_PATH); | |
1932 playlistwin_update_list(playlist); | |
1933 } | |
1934 | |
1935 void action_playlist_sort_selected_by_date(void) | |
1936 { | |
1937 Playlist *playlist = playlist_get_active(); | |
1938 | |
1939 playlist_sort_selected(playlist, PLAYLIST_SORT_DATE); | |
1940 playlistwin_update_list(playlist); | |
1941 } | |
1942 | |
1943 void action_playlist_sort_selected_by_filename(void) | |
1944 { | |
1945 Playlist *playlist = playlist_get_active(); | |
1946 | |
1947 playlist_sort_selected(playlist, PLAYLIST_SORT_FILENAME); | |
1948 playlistwin_update_list(playlist); | |
1949 } | |
1950 | |
1951 void action_playlist_randomize_list(void) | |
1952 { | |
1953 Playlist *playlist = playlist_get_active(); | |
1954 | |
1955 playlist_random(playlist); | |
1956 playlistwin_update_list(playlist); | |
1957 } | |
1958 | |
1959 void action_playlist_reverse_list(void) | |
1960 { | |
1961 Playlist *playlist = playlist_get_active(); | |
1962 | |
1963 playlist_reverse(playlist); | |
1964 playlistwin_update_list(playlist); | |
1965 } | |
1966 | |
1967 void | |
1968 action_playlist_clear_queue(void) | |
1969 { | |
1970 playlist_clear_queue(playlist_get_active()); | |
1971 } | |
1972 | |
1973 void | |
1974 action_playlist_remove_unavailable(void) | |
1975 { | |
1976 playlist_remove_dead_files(playlist_get_active()); | |
1977 } | |
1978 | |
1979 void | |
1980 action_playlist_remove_dupes_by_title(void) | |
1981 { | |
1982 playlist_remove_duplicates(playlist_get_active(), PLAYLIST_DUPS_TITLE); | |
1983 } | |
1984 | |
1985 void | |
1986 action_playlist_remove_dupes_by_filename(void) | |
1987 { | |
1988 playlist_remove_duplicates(playlist_get_active(), PLAYLIST_DUPS_FILENAME); | |
1989 } | |
1990 | |
1991 void | |
1992 action_playlist_remove_dupes_by_full_path(void) | |
1993 { | |
1994 playlist_remove_duplicates(playlist_get_active(), PLAYLIST_DUPS_PATH); | |
1995 } | |
1996 | |
1997 void | |
1998 action_playlist_remove_all(void) | |
1999 { | |
2000 playlist_clear(playlist_get_active()); | |
2001 | |
2002 /* XXX -- should this really be coupled here? -nenolod */ | |
2003 mainwin_clear_song_info(); | |
2004 mainwin_set_info_text(); | |
2005 } | |
2006 | |
2007 void | |
2008 action_playlist_remove_selected(void) | |
2009 { | |
2010 playlist_delete(playlist_get_active(), FALSE); | |
2011 } | |
2012 | |
2013 void | |
2014 action_playlist_remove_unselected(void) | |
2015 { | |
2016 playlist_delete(playlist_get_active(), TRUE); | |
2017 } | |
2018 | |
2019 void | |
2020 action_playlist_add_files(void) | |
2021 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2022 run_filebrowser(NO_PLAY_BUTTON); |
2313 | 2023 } |
2024 | |
2025 void | |
2026 action_playlist_add_cd(void) | |
2027 { | |
2028 add_medium(); | |
2029 } | |
2030 | |
2031 void | |
2032 action_playlist_add_url(void) | |
2033 { | |
2034 mainwin_show_add_url_window(); | |
2035 } | |
2036 | |
2037 void | |
2038 action_playlist_new( void ) | |
2039 { | |
2040 Playlist *new_pl = playlist_new(); | |
2041 playlist_add_playlist(new_pl); | |
2042 playlist_select_playlist(new_pl); | |
2043 } | |
2044 | |
2045 void | |
2046 action_playlist_prev( void ) | |
2047 { | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
2048 playlist_select_prev(); |
2313 | 2049 } |
2050 | |
2051 void | |
2052 action_playlist_next( void ) | |
2053 { | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
2054 playlist_select_next(); |
2313 | 2055 } |
2056 | |
2057 void | |
2058 action_playlist_delete( void ) | |
2059 { | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
2060 playlist_remove_playlist( playlist_get_active() ); |
2313 | 2061 } |
2062 | |
2063 void | |
2064 action_playlist_save_list(void) | |
2065 { | |
2066 Playlist *playlist = playlist_get_active(); | |
2067 | |
2068 playlistwin_select_playlist_to_save(playlist_get_current_name(playlist)); | |
2069 } | |
2070 | |
2071 void | |
2072 action_playlist_save_default_list(void) | |
2073 { | |
2074 Playlist *playlist = playlist_get_active(); | |
2075 | |
2076 playlist_save(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
2077 } | |
2078 | |
2079 void | |
2080 action_playlist_load_list(void) | |
2081 { | |
2082 Playlist *playlist = playlist_get_active(); | |
2083 | |
2084 playlistwin_select_playlist_to_load(playlist_get_current_name(playlist)); | |
2085 } | |
2086 | |
2087 void | |
2088 action_playlist_refresh_list(void) | |
2089 { | |
2090 Playlist *playlist = playlist_get_active(); | |
2091 | |
2092 playlist_read_info_selection(playlist); | |
2093 playlistwin_update_list(playlist); | |
2094 } | |
2095 | |
2096 void | |
2097 action_open_list_manager(void) | |
2098 { | |
2099 playlist_manager_ui_show(); | |
2100 } | |
2101 | |
2102 void | |
2103 action_playlist_search_and_select(void) | |
2104 { | |
2105 playlistwin_select_search(); | |
2106 } | |
2107 | |
2108 void | |
2109 action_playlist_invert_selection(void) | |
2110 { | |
2111 playlistwin_inverse_selection(); | |
2112 } | |
2113 | |
2114 void | |
2115 action_playlist_select_none(void) | |
2116 { | |
2117 playlistwin_select_none(); | |
2118 } | |
2119 | |
2120 void | |
2121 action_playlist_select_all(void) | |
2122 { | |
2123 playlistwin_select_all(); | |
2124 } | |
2125 | |
2126 | |
2127 | |
2128 /* playlistwin_select_search callback functions | |
2129 placed here to avoid making the code messier :) */ | |
2130 void | |
2363 | 2131 playlistwin_select_search_cbt_cb(GtkWidget *called_cbt, gpointer other_cbt) |
2313 | 2132 { |
2363 | 2133 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(called_cbt)) == TRUE) |
2134 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(other_cbt), FALSE); | |
2313 | 2135 return; |
2136 } | |
2137 | |
2138 static gboolean | |
2363 | 2139 playlistwin_select_search_kp_cb(GtkWidget *entry, GdkEventKey *event, |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
2140 gpointer searchdlg_win) |
2313 | 2141 { |
2142 switch (event->keyval) | |
2143 { | |
2144 case GDK_Return: | |
2363 | 2145 gtk_dialog_response(GTK_DIALOG(searchdlg_win), GTK_RESPONSE_ACCEPT); |
2313 | 2146 return TRUE; |
2147 default: | |
2148 return FALSE; | |
2149 } | |
2150 } | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2151 |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2152 |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2153 /* fileinfopopup callback for playlistwin */ |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2154 static gboolean |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2155 playlistwin_fileinfopopup_probe(gpointer * filepopup_win) |
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2156 { |
2363 | 2157 gint x, y, pos; |
2158 TitleInput *tuple; | |
2159 static gint prev_x = 0, prev_y = 0, ctr = 0, prev_pos = -1; | |
2160 static gint shaded_pos = -1, shaded_prev_pos = -1; | |
2161 gboolean skip = FALSE; | |
2162 GdkWindow *win; | |
2163 Playlist *playlist = playlist_get_active(); | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2164 |
2363 | 2165 win = gdk_window_at_pointer(NULL, NULL); |
2166 gdk_window_get_pointer(GDK_WINDOW(playlistwin->window), &x, &y, NULL); | |
2167 pos = playlist_list_get_playlist_position(playlistwin_list, x, y); | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2168 |
2363 | 2169 if (win == NULL |
2170 || cfg.show_filepopup_for_tuple == FALSE | |
2171 || playlistwin_list->pl_tooltips == FALSE | |
2172 || pos != prev_pos | |
2173 || win != GDK_WINDOW(playlistwin->window)) | |
2174 { | |
2175 prev_pos = pos; | |
2176 ctr = 0; | |
2177 audacious_fileinfopopup_hide(GTK_WIDGET(filepopup_win), NULL); | |
2178 return TRUE; | |
2179 } | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2180 |
2363 | 2181 if (prev_x == x && prev_y == y) |
2182 ctr++; | |
2183 else | |
2184 { | |
2185 ctr = 0; | |
2186 prev_x = x; | |
2187 prev_y = y; | |
2188 audacious_fileinfopopup_hide(GTK_WIDGET(filepopup_win), NULL); | |
2189 return TRUE; | |
2190 } | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2191 |
2363 | 2192 if (playlistwin_is_shaded()) |
2193 { | |
2194 shaded_pos = playlist_get_position(playlist); | |
2195 if (shaded_prev_pos != shaded_pos) | |
2196 skip = TRUE; | |
2197 } | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2198 |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
2199 if (ctr >= cfg.filepopup_delay && (skip == TRUE || GTK_WIDGET_VISIBLE(GTK_WIDGET(filepopup_win)) != TRUE)) { |
2363 | 2200 if (pos == -1 && !playlistwin_is_shaded()) |
2201 { | |
2202 audacious_fileinfopopup_hide(GTK_WIDGET(filepopup_win), NULL); | |
2203 return TRUE; | |
2204 } | |
2205 /* shaded mode */ | |
2206 else | |
2207 { | |
2208 tuple = playlist_get_tuple(playlist, shaded_pos); | |
2209 audacious_fileinfopopup_hide(GTK_WIDGET(filepopup_win), NULL); | |
2210 audacious_fileinfopopup_show_from_tuple(GTK_WIDGET(filepopup_win), tuple); | |
2211 shaded_prev_pos = shaded_pos; | |
2212 } | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2213 |
2363 | 2214 prev_pos = pos; |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2215 |
2363 | 2216 tuple = playlist_get_tuple(playlist, pos); |
2217 audacious_fileinfopopup_show_from_tuple(GTK_WIDGET(filepopup_win), tuple); | |
2218 } | |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2219 |
2363 | 2220 return TRUE; |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2338
diff
changeset
|
2221 } |