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