Mercurial > audlegacy
annotate src/audacious/ui_playlist.c @ 4133:d34e16f45a29
dock_move_press already presents window
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Sun, 30 Dec 2007 20:41:23 +0100 |
parents | 51641a875a01 |
children | 6701c5bf39ca |
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 | |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
26 /* #define AUD_DEBUG 1 */ |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
27 |
2313 | 28 #include "ui_playlist.h" |
29 | |
30 #include <glib.h> | |
31 #include <glib/gi18n.h> | |
32 #include <gdk/gdk.h> | |
33 #include <gdk/gdkkeysyms.h> | |
34 #include <gtk/gtk.h> | |
35 #include <string.h> | |
36 | |
37 #include "platform/smartinclude.h" | |
38 | |
39 #include <unistd.h> | |
40 #include <errno.h> | |
41 | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
42 #include "actions-playlist.h" |
2313 | 43 #include "dnd.h" |
44 #include "dock.h" | |
45 #include "hints.h" | |
46 #include "input.h" | |
47 #include "main.h" | |
48 #include "playback.h" | |
49 #include "playlist.h" | |
50 #include "playlist_container.h" | |
2499
15a1f5ee4d1c
[svn] - playlist_manager -> ui_playlist_manager, since it's a UI component.
nenolod
parents:
2495
diff
changeset
|
51 #include "ui_playlist_manager.h" |
2373
ad1d7687814c
[svn] made strings.h for existing strings.c, cleanups
mf0102
parents:
2363
diff
changeset
|
52 #include "strings.h" |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
53 #include "ui_equalizer.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
54 #include "ui_fileopener.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
55 #include "ui_main.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
56 #include "ui_manager.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
57 #include "util.h" |
3475
80cff88ad6d0
Default extension may not be xspf
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3375
diff
changeset
|
58 #include "config.h" |
2313 | 59 |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2492
diff
changeset
|
60 #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
|
61 #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
|
62 #include "ui_skinned_textbox.h" |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
63 #include "ui_skinned_playlist_slider.h" |
3217 | 64 #include "ui_skinned_playlist.h" |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2492
diff
changeset
|
65 |
2313 | 66 #include "icons-stock.h" |
67 #include "images/audacious_playlist.xpm" | |
68 | |
69 GtkWidget *playlistwin; | |
70 | |
3137
19908efce4e5
one mutex is enough for resizing
Tomasz Mon <desowin@gmail.com>
parents:
3135
diff
changeset
|
71 static GMutex *resize_mutex = NULL; |
19908efce4e5
one mutex is enough for resizing
Tomasz Mon <desowin@gmail.com>
parents:
3135
diff
changeset
|
72 |
3217 | 73 GtkWidget *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
|
74 GtkWidget *playlistwin_shade, *playlistwin_close; |
2313 | 75 |
76 static gboolean playlistwin_hint_flag = FALSE; | |
77 | |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
78 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
|
79 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
|
80 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
|
81 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
|
82 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
|
83 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
|
84 static GtkWidget *playlistwin_sscroll_up, *playlistwin_sscroll_down; |
2313 | 85 |
86 void playlistwin_select_search_cbt_cb( GtkWidget *called_cbt , | |
87 gpointer other_cbt ); | |
88 static gboolean playlistwin_select_search_kp_cb( GtkWidget *entry , GdkEventKey *event , | |
89 gpointer searchdlg_win ); | |
90 | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
91 static gboolean playlistwin_resizing = FALSE; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
92 static gint playlistwin_resize_x, playlistwin_resize_y; |
2313 | 93 |
94 gboolean | |
95 playlistwin_is_shaded(void) | |
96 { | |
97 return cfg.playlist_shaded; | |
98 } | |
99 | |
100 gint | |
101 playlistwin_get_width(void) | |
102 { | |
103 cfg.playlist_width /= PLAYLISTWIN_WIDTH_SNAP; | |
104 cfg.playlist_width *= PLAYLISTWIN_WIDTH_SNAP; | |
105 return cfg.playlist_width; | |
106 } | |
107 | |
108 gint | |
109 playlistwin_get_height_unshaded(void) | |
110 { | |
111 gint height; | |
112 cfg.playlist_height /= PLAYLISTWIN_HEIGHT_SNAP; | |
113 cfg.playlist_height *= PLAYLISTWIN_HEIGHT_SNAP; | |
114 height = cfg.playlist_height; | |
115 return height; | |
116 } | |
117 | |
118 gint | |
119 playlistwin_get_height_shaded(void) | |
120 { | |
121 return PLAYLISTWIN_SHADED_HEIGHT; | |
122 } | |
123 | |
124 gint | |
125 playlistwin_get_height(void) | |
126 { | |
127 if (playlistwin_is_shaded()) | |
128 return playlistwin_get_height_shaded(); | |
129 else | |
130 return playlistwin_get_height_unshaded(); | |
131 } | |
132 | |
133 void | |
134 playlistwin_get_size(gint * width, gint * height) | |
135 { | |
136 if (width) | |
137 *width = playlistwin_get_width(); | |
138 | |
139 if (height) | |
140 *height = playlistwin_get_height(); | |
141 } | |
142 | |
143 static void | |
144 playlistwin_update_info(Playlist *playlist) | |
145 { | |
146 gchar *text, *sel_text, *tot_text; | |
147 gulong selection, total; | |
148 gboolean selection_more, total_more; | |
149 | |
150 playlist_get_total_time(playlist, &total, &selection, &total_more, &selection_more); | |
151 | |
152 if (selection > 0 || (selection == 0 && !selection_more)) { | |
153 if (selection > 3600) | |
154 sel_text = | |
155 g_strdup_printf("%lu:%-2.2lu:%-2.2lu%s", selection / 3600, | |
156 (selection / 60) % 60, selection % 60, | |
157 (selection_more ? "+" : "")); | |
158 else | |
159 sel_text = | |
160 g_strdup_printf("%lu:%-2.2lu%s", selection / 60, | |
161 selection % 60, (selection_more ? "+" : "")); | |
162 } | |
163 else | |
164 sel_text = g_strdup("?"); | |
165 if (total > 0 || (total == 0 && !total_more)) { | |
166 if (total > 3600) | |
167 tot_text = | |
168 g_strdup_printf("%lu:%-2.2lu:%-2.2lu%s", total / 3600, | |
169 (total / 60) % 60, total % 60, | |
170 total_more ? "+" : ""); | |
171 else | |
172 tot_text = | |
173 g_strdup_printf("%lu:%-2.2lu%s", total / 60, total % 60, | |
174 total_more ? "+" : ""); | |
175 } | |
176 else | |
177 tot_text = g_strdup("?"); | |
178 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
|
179 ui_skinned_textbox_set_text(playlistwin_info, text ? text : ""); |
2313 | 180 g_free(text); |
181 g_free(tot_text); | |
182 g_free(sel_text); | |
183 } | |
184 | |
185 static void | |
186 playlistwin_update_sinfo(Playlist *playlist) | |
187 { | |
188 gchar *posstr, *timestr, *title, *info; | |
189 gint pos, time; | |
190 | |
191 pos = playlist_get_position(playlist); | |
192 title = playlist_get_songtitle(playlist, pos); | |
193 | |
194 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
|
195 ui_skinned_textbox_set_text(playlistwin_sinfo, ""); |
2313 | 196 return; |
197 } | |
198 | |
199 convert_title_text(title); | |
200 | |
201 time = playlist_get_songtime(playlist, pos); | |
202 | |
203 if (cfg.show_numbers_in_pl) | |
204 posstr = g_strdup_printf("%d. ", pos + 1); | |
205 else | |
206 posstr = g_strdup(""); | |
207 | |
208 if (time != -1) { | |
209 timestr = g_strdup_printf(" (%d:%-2.2d)", time / 60000, | |
210 (time / 1000) % 60); | |
211 } | |
212 else | |
213 timestr = g_strdup(""); | |
214 | |
215 info = g_strdup_printf("%s%s%s", posstr, title, timestr); | |
216 | |
217 g_free(posstr); | |
218 g_free(title); | |
219 g_free(timestr); | |
220 | |
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
|
221 ui_skinned_textbox_set_text(playlistwin_sinfo, info ? info : ""); |
2313 | 222 g_free(info); |
223 } | |
224 | |
225 gboolean | |
226 playlistwin_item_visible(gint index) | |
227 { | |
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3512
diff
changeset
|
228 if (index >= UI_SKINNED_PLAYLIST(playlistwin_list)->first && |
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3512
diff
changeset
|
229 index < (UI_SKINNED_PLAYLIST(playlistwin_list)->first + UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible) ) { |
2313 | 230 return TRUE; |
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3512
diff
changeset
|
231 } |
2313 | 232 return FALSE; |
233 } | |
234 | |
235 gint | |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
236 playlistwin_list_get_visible_count(void) |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
237 { |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
238 if (playlistwin_list) |
3217 | 239 return UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible; |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
240 return (-1); |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
241 } |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
242 |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
243 gint |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
244 playlistwin_list_get_first(void) |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
245 { |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
246 if (playlistwin_list) |
3217 | 247 return UI_SKINNED_PLAYLIST(playlistwin_list)->first; |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
248 return (-1); |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
249 } |
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 gint |
2313 | 252 playlistwin_get_toprow(void) |
253 { | |
254 if (playlistwin_list) | |
3217 | 255 return (UI_SKINNED_PLAYLIST(playlistwin_list)->first); |
2313 | 256 return (-1); |
257 } | |
258 | |
259 void | |
260 playlistwin_set_toprow(gint toprow) | |
261 { | |
262 if (playlistwin_list) | |
3217 | 263 UI_SKINNED_PLAYLIST(playlistwin_list)->first = toprow; |
2313 | 264 playlistwin_update_list(playlist_get_active()); |
265 } | |
266 | |
267 void | |
268 playlistwin_update_list(Playlist *playlist) | |
269 { | |
270 /* this can happen early on. just bail gracefully. */ | |
2363 | 271 g_return_if_fail(playlistwin_list); |
2313 | 272 |
3248
3cf247e4508c
fix not updating playlist on title change
Tomasz Mon <desowin@gmail.com>
parents:
3246
diff
changeset
|
273 playlistwin_update_info(playlist); |
3cf247e4508c
fix not updating playlist on title change
Tomasz Mon <desowin@gmail.com>
parents:
3246
diff
changeset
|
274 playlistwin_update_sinfo(playlist); |
3217 | 275 gtk_widget_queue_draw(playlistwin_list); |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
276 gtk_widget_queue_draw(playlistwin_slider); |
2313 | 277 } |
278 | |
279 static void | |
280 playlistwin_set_geometry_hints(gboolean shaded) | |
281 { | |
282 GdkGeometry geometry; | |
283 GdkWindowHints mask; | |
284 | |
285 geometry.min_width = PLAYLISTWIN_MIN_WIDTH; | |
286 geometry.max_width = G_MAXUINT16; | |
287 | |
288 geometry.width_inc = PLAYLISTWIN_WIDTH_SNAP; | |
289 geometry.height_inc = PLAYLISTWIN_HEIGHT_SNAP; | |
290 | |
291 if (shaded) { | |
292 geometry.min_height = PLAYLISTWIN_SHADED_HEIGHT; | |
293 geometry.max_height = PLAYLISTWIN_SHADED_HEIGHT; | |
294 geometry.base_height = PLAYLISTWIN_SHADED_HEIGHT; | |
295 } | |
296 else { | |
297 geometry.min_height = PLAYLISTWIN_MIN_HEIGHT; | |
298 geometry.max_height = G_MAXUINT16; | |
299 } | |
300 | |
301 mask = GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE | GDK_HINT_RESIZE_INC; | |
302 | |
303 gtk_window_set_geometry_hints(GTK_WINDOW(playlistwin), | |
304 playlistwin, &geometry, mask); | |
305 } | |
306 | |
307 void | |
308 playlistwin_set_sinfo_font(gchar *font) | |
309 { | |
310 gchar *tmp = NULL, *tmp2 = NULL; | |
311 | |
2363 | 312 g_return_if_fail(font); |
2313 | 313 |
314 tmp = g_strdup(font); | |
2363 | 315 g_return_if_fail(tmp); |
2313 | 316 |
317 *strrchr(tmp, ' ') = '\0'; | |
318 tmp2 = g_strdup_printf("%s 8", tmp); | |
2363 | 319 g_return_if_fail(tmp2); |
320 | |
4080 | 321 ui_skinned_textbox_set_xfont(playlistwin_sinfo, !cfg.mainwin_use_bitmapfont, tmp2); |
2313 | 322 |
2363 | 323 g_free(tmp); |
324 g_free(tmp2); | |
2313 | 325 } |
326 | |
327 void | |
328 playlistwin_set_sinfo_scroll(gboolean scroll) | |
329 { | |
330 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
|
331 ui_skinned_textbox_set_scroll(playlistwin_sinfo, cfg.autoscroll); |
2313 | 332 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
|
333 ui_skinned_textbox_set_scroll(playlistwin_sinfo, FALSE); |
2313 | 334 } |
335 | |
336 void | |
337 playlistwin_set_shade(gboolean shaded) | |
338 { | |
339 cfg.playlist_shaded = shaded; | |
340 | |
341 if (shaded) { | |
342 playlistwin_set_sinfo_font(cfg.playlist_font); | |
343 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
|
344 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
|
345 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
|
346 ui_skinned_set_push_button_data(playlistwin_close, 138, 45, -1, -1); |
2313 | 347 } |
348 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
|
349 gtk_widget_hide(playlistwin_sinfo); |
2313 | 350 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
|
351 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
|
352 ui_skinned_set_push_button_data(playlistwin_close, 167, 3, -1, -1); |
2313 | 353 } |
354 | |
355 dock_shade(dock_window_list, GTK_WINDOW(playlistwin), | |
356 playlistwin_get_height()); | |
357 | |
358 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
359 | |
360 gtk_window_resize(GTK_WINDOW(playlistwin), | |
361 playlistwin_get_width(), | |
362 playlistwin_get_height()); | |
363 } | |
364 | |
365 static void | |
366 playlistwin_set_shade_menu(gboolean shaded) | |
367 { | |
368 GtkAction *action = gtk_action_group_get_action( | |
369 toggleaction_group_others , "roll up playlist editor" ); | |
370 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , shaded ); | |
371 | |
372 playlistwin_set_shade(shaded); | |
373 playlistwin_update_list(playlist_get_active()); | |
374 } | |
375 | |
376 void | |
377 playlistwin_shade_toggle(void) | |
378 { | |
379 playlistwin_set_shade_menu(!cfg.playlist_shaded); | |
380 } | |
381 | |
382 static void | |
383 playlistwin_release(GtkWidget * widget, | |
384 GdkEventButton * event, | |
385 gpointer callback_data) | |
386 { | |
387 playlistwin_resizing = FALSE; | |
3107
1f5552089a50
Just a few translatable strings.
Stany HENRY <StrassBoy@gmail.com>
parents:
3068
diff
changeset
|
388 |
2313 | 389 if (dock_is_moving(GTK_WINDOW(playlistwin))) |
390 dock_move_release(GTK_WINDOW(playlistwin)); | |
391 } | |
392 | |
393 void | |
394 playlistwin_scroll(gint num) | |
395 { | |
3217 | 396 UI_SKINNED_PLAYLIST(playlistwin_list)->first += num; |
2313 | 397 playlistwin_update_list(playlist_get_active()); |
398 } | |
399 | |
400 void | |
401 playlistwin_scroll_up_pushed(void) | |
402 { | |
403 playlistwin_scroll(-3); | |
404 } | |
405 | |
406 void | |
407 playlistwin_scroll_down_pushed(void) | |
408 { | |
409 playlistwin_scroll(3); | |
410 } | |
411 | |
412 static void | |
413 playlistwin_select_all(void) | |
414 { | |
415 Playlist *playlist = playlist_get_active(); | |
416 | |
417 playlist_select_all(playlist, TRUE); | |
3217 | 418 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_selected = 0; |
419 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_min = 0; | |
420 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_max = playlist_get_length(playlist) - 1; | |
2313 | 421 playlistwin_update_list(playlist); |
422 } | |
423 | |
424 static void | |
425 playlistwin_select_none(void) | |
426 { | |
427 playlist_select_all(playlist_get_active(), FALSE); | |
3217 | 428 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_selected = -1; |
429 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_min = -1; | |
2313 | 430 playlistwin_update_list(playlist_get_active()); |
431 } | |
432 | |
433 static void | |
434 playlistwin_select_search(void) | |
435 { | |
436 Playlist *playlist = playlist_get_active(); | |
437 GtkWidget *searchdlg_win, *searchdlg_table; | |
438 GtkWidget *searchdlg_hbox, *searchdlg_logo, *searchdlg_helptext; | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
439 GtkWidget *searchdlg_entry_title, *searchdlg_label_title; |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
440 GtkWidget *searchdlg_entry_album, *searchdlg_label_album; |
2313 | 441 GtkWidget *searchdlg_entry_file_name, *searchdlg_label_file_name; |
442 GtkWidget *searchdlg_entry_performer, *searchdlg_label_performer; | |
443 GtkWidget *searchdlg_checkbt_clearprevsel; | |
444 GtkWidget *searchdlg_checkbt_newplaylist; | |
445 GtkWidget *searchdlg_checkbt_autoenqueue; | |
446 gint result; | |
447 | |
448 /* create dialog */ | |
449 searchdlg_win = gtk_dialog_new_with_buttons( | |
450 _("Search entries in active playlist") , GTK_WINDOW(mainwin) , | |
451 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT , | |
452 GTK_STOCK_CANCEL , GTK_RESPONSE_REJECT , GTK_STOCK_OK , GTK_RESPONSE_ACCEPT , NULL ); | |
2904 | 453 gtk_window_set_position(GTK_WINDOW(searchdlg_win), GTK_WIN_POS_CENTER); |
454 | |
2313 | 455 /* help text and logo */ |
456 searchdlg_hbox = gtk_hbox_new( FALSE , 4 ); | |
457 searchdlg_logo = gtk_image_new_from_stock( GTK_STOCK_FIND , GTK_ICON_SIZE_DIALOG ); | |
458 searchdlg_helptext = gtk_label_new( _("Select entries in playlist by filling one or more " | |
459 "fields. Fields use regular expressions syntax, case-insensitive. If you don't know how " | |
460 "regular expressions work, simply insert a literal portion of what you're searching for.") ); | |
461 gtk_label_set_line_wrap( GTK_LABEL(searchdlg_helptext) , TRUE ); | |
462 gtk_box_pack_start( GTK_BOX(searchdlg_hbox) , searchdlg_logo , FALSE , FALSE , 0 ); | |
463 gtk_box_pack_start( GTK_BOX(searchdlg_hbox) , searchdlg_helptext , FALSE , FALSE , 0 ); | |
2904 | 464 |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
465 /* title */ |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
466 searchdlg_label_title = gtk_label_new( _("Title: ") ); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
467 searchdlg_entry_title = gtk_entry_new(); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
468 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
|
469 g_signal_connect( G_OBJECT(searchdlg_entry_title) , "key-press-event" , |
2313 | 470 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); |
2904 | 471 |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
472 /* album */ |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
473 searchdlg_label_album= gtk_label_new( _("Album: ") ); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
474 searchdlg_entry_album= gtk_entry_new(); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
475 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
|
476 g_signal_connect( G_OBJECT(searchdlg_entry_album) , "key-press-event" , |
2313 | 477 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); |
2904 | 478 |
2313 | 479 /* artist */ |
480 searchdlg_label_performer = gtk_label_new( _("Artist: ") ); | |
481 searchdlg_entry_performer = gtk_entry_new(); | |
482 gtk_misc_set_alignment( GTK_MISC(searchdlg_label_performer) , 0 , 0.5 ); | |
483 g_signal_connect( G_OBJECT(searchdlg_entry_performer) , "key-press-event" , | |
484 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); | |
2904 | 485 |
2313 | 486 /* file name */ |
487 searchdlg_label_file_name = gtk_label_new( _("Filename: ") ); | |
488 searchdlg_entry_file_name = gtk_entry_new(); | |
489 gtk_misc_set_alignment( GTK_MISC(searchdlg_label_file_name) , 0 , 0.5 ); | |
490 g_signal_connect( G_OBJECT(searchdlg_entry_file_name) , "key-press-event" , | |
491 G_CALLBACK(playlistwin_select_search_kp_cb) , searchdlg_win ); | |
2904 | 492 |
2313 | 493 /* some options that control behaviour */ |
494 searchdlg_checkbt_clearprevsel = gtk_check_button_new_with_label( | |
495 _("Clear previous selection before searching") ); | |
496 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(searchdlg_checkbt_clearprevsel) , TRUE ); | |
497 searchdlg_checkbt_autoenqueue = gtk_check_button_new_with_label( | |
498 _("Automatically toggle queue for matching entries") ); | |
499 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(searchdlg_checkbt_autoenqueue) , FALSE ); | |
500 searchdlg_checkbt_newplaylist = gtk_check_button_new_with_label( | |
501 _("Create a new playlist with matching entries") ); | |
502 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(searchdlg_checkbt_newplaylist) , FALSE ); | |
503 g_signal_connect( G_OBJECT(searchdlg_checkbt_autoenqueue) , "clicked" , | |
504 G_CALLBACK(playlistwin_select_search_cbt_cb) , searchdlg_checkbt_newplaylist ); | |
505 g_signal_connect( G_OBJECT(searchdlg_checkbt_newplaylist) , "clicked" , | |
506 G_CALLBACK(playlistwin_select_search_cbt_cb) , searchdlg_checkbt_autoenqueue ); | |
2904 | 507 |
2313 | 508 /* place fields in searchdlg_table */ |
509 searchdlg_table = gtk_table_new( 8 , 2 , FALSE ); | |
510 gtk_table_set_row_spacing( GTK_TABLE(searchdlg_table) , 0 , 8 ); | |
511 gtk_table_set_row_spacing( GTK_TABLE(searchdlg_table) , 4 , 8 ); | |
512 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_hbox , | |
513 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
|
514 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_title , |
2313 | 515 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
|
516 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_title , |
2313 | 517 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
|
518 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_album, |
2313 | 519 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
|
520 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_album, |
2313 | 521 1 , 2 , 2 , 3 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); |
522 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_performer , | |
523 0 , 1 , 3 , 4 , GTK_FILL , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
524 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_performer , | |
525 1 , 2 , 3 , 4 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
526 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_label_file_name , | |
527 0 , 1 , 4 , 5 , GTK_FILL , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
528 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_entry_file_name , | |
529 1 , 2 , 4 , 5 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 2 ); | |
530 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_checkbt_clearprevsel , | |
531 0 , 2 , 5 , 6 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 1 ); | |
532 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_checkbt_autoenqueue , | |
533 0 , 2 , 6 , 7 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 1 ); | |
534 gtk_table_attach( GTK_TABLE(searchdlg_table) , searchdlg_checkbt_newplaylist , | |
535 0 , 2 , 7 , 8 , GTK_FILL | GTK_EXPAND , GTK_FILL | GTK_EXPAND , 0 , 1 ); | |
536 | |
537 gtk_container_set_border_width( GTK_CONTAINER(searchdlg_table) , 5 ); | |
538 gtk_container_add( GTK_CONTAINER(GTK_DIALOG(searchdlg_win)->vbox) , searchdlg_table ); | |
539 gtk_widget_show_all( searchdlg_win ); | |
540 result = gtk_dialog_run( GTK_DIALOG(searchdlg_win) ); | |
541 switch(result) | |
542 { | |
543 case GTK_RESPONSE_ACCEPT: | |
544 { | |
545 gint matched_entries_num = 0; | |
546 /* create a TitleInput tuple with user search data */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3271
diff
changeset
|
547 Tuple *tuple = tuple_new(); |
2313 | 548 gchar *searchdata = NULL; |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
549 |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
550 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_title) ); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
551 AUDDBG("title=\"%s\"\n", searchdata); |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3375
diff
changeset
|
552 tuple_associate_string(tuple, FIELD_TITLE, NULL, searchdata); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
553 |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
554 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_album) ); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
555 AUDDBG("album=\"%s\"\n", searchdata); |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3375
diff
changeset
|
556 tuple_associate_string(tuple, FIELD_ALBUM, NULL, searchdata); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
557 |
2313 | 558 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_performer) ); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
559 AUDDBG("performer=\"%s\"\n", searchdata); |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3375
diff
changeset
|
560 tuple_associate_string(tuple, FIELD_ARTIST, NULL, searchdata); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
561 |
2313 | 562 searchdata = (gchar*)gtk_entry_get_text( GTK_ENTRY(searchdlg_entry_file_name) ); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
563 AUDDBG("filename=\"%s\"\n", searchdata); |
3490
602ec8c40d0d
Fixed to comply with the Tuple API changes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3375
diff
changeset
|
564 tuple_associate_string(tuple, FIELD_FILE_NAME, NULL, searchdata); |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
565 |
2313 | 566 /* check if previous selection should be cleared before searching */ |
567 if ( gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(searchdlg_checkbt_clearprevsel)) == TRUE ) | |
568 playlistwin_select_none(); | |
569 /* now send this tuple to the real search function */ | |
570 matched_entries_num = playlist_select_search( playlist , tuple , 0 ); | |
571 /* we do not need the tuple and its data anymore */ | |
3298
f985357757e0
audacious-core: convert to tuple-ng, remove titlestring API.
William Pitcock <nenolod@atheme-project.org>
parents:
3271
diff
changeset
|
572 mowgli_object_unref(tuple); |
2313 | 573 playlistwin_update_list(playlist_get_active()); |
574 /* check if a new playlist should be created after searching */ | |
575 if ( gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(searchdlg_checkbt_newplaylist)) == TRUE ) | |
576 playlist_new_from_selected(); | |
577 /* check if matched entries should be queued */ | |
578 else if ( gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(searchdlg_checkbt_autoenqueue)) == TRUE ) | |
579 playlist_queue(playlist_get_active()); | |
580 break; | |
581 } | |
582 default: | |
583 break; | |
584 } | |
585 /* done here :) */ | |
586 gtk_widget_destroy( searchdlg_win ); | |
587 } | |
588 | |
589 static void | |
590 playlistwin_inverse_selection(void) | |
591 { | |
592 playlist_select_invert_all(playlist_get_active()); | |
3217 | 593 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_selected = -1; |
594 UI_SKINNED_PLAYLIST(playlistwin_list)->prev_min = -1; | |
2313 | 595 playlistwin_update_list(playlist_get_active()); |
596 } | |
597 | |
598 static void | |
599 playlistwin_resize(gint width, gint height) | |
600 { | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
601 gint tx, ty; |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
602 gint dx, dy; |
2313 | 603 |
604 g_return_if_fail(width > 0 && height > 0); | |
605 | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
606 tx = (width - PLAYLISTWIN_MIN_WIDTH) / PLAYLISTWIN_WIDTH_SNAP; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
607 tx = (tx * PLAYLISTWIN_WIDTH_SNAP) + PLAYLISTWIN_MIN_WIDTH; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
608 if (tx < PLAYLISTWIN_MIN_WIDTH) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
609 tx = PLAYLISTWIN_MIN_WIDTH; |
2313 | 610 |
611 if (!cfg.playlist_shaded) | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
612 { |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
613 ty = (height - PLAYLISTWIN_MIN_HEIGHT) / PLAYLISTWIN_HEIGHT_SNAP; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
614 ty = (ty * PLAYLISTWIN_HEIGHT_SNAP) + PLAYLISTWIN_MIN_HEIGHT; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
615 if (ty < PLAYLISTWIN_MIN_HEIGHT) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
616 ty = PLAYLISTWIN_MIN_HEIGHT; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
617 } |
2313 | 618 else |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
619 ty = cfg.playlist_height; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
620 |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
621 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
|
622 return; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
623 |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
624 /* difference between previous size and new size */ |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
625 dx = tx - cfg.playlist_width; |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
626 dy = ty - cfg.playlist_height; |
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
627 |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
628 cfg.playlist_width = width = tx; |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
629 cfg.playlist_height = height = ty; |
2313 | 630 |
3137
19908efce4e5
one mutex is enough for resizing
Tomasz Mon <desowin@gmail.com>
parents:
3135
diff
changeset
|
631 g_mutex_lock(resize_mutex); |
3217 | 632 ui_skinned_playlist_resize_relative(playlistwin_list, dx, dy); |
2313 | 633 |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
634 ui_skinned_playlist_slider_move_relative(playlistwin_slider, dx); |
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
635 ui_skinned_playlist_slider_resize_relative(playlistwin_slider, dy); |
2313 | 636 |
637 playlistwin_update_sinfo(playlist_get_active()); | |
638 | |
2901
5ed0674fabd6
replace PButton in playlistwin with UiSkinnedButton, pbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
639 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
|
640 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
|
641 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
|
642 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
|
643 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
|
644 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
|
645 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
|
646 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
|
647 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
|
648 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
|
649 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
|
650 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
|
651 ui_skinned_button_move_relative(playlistwin_sscroll_down, dx, dy); |
2313 | 652 |
3250
2d43219d2799
solve always broken ui_skinned_textbox_resize_relative
Tomasz Mon <desowin@gmail.com>
parents:
3248
diff
changeset
|
653 gtk_widget_set_size_request(playlistwin_sinfo, playlistwin_get_width() - 35, |
2d43219d2799
solve always broken ui_skinned_textbox_resize_relative
Tomasz Mon <desowin@gmail.com>
parents:
3248
diff
changeset
|
654 bmp_active_skin->properties.textbox_bitmap_font_height); |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2950
diff
changeset
|
655 GList *iter; |
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2950
diff
changeset
|
656 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
|
657 GtkFixedChild *child_data = (GtkFixedChild *) iter->data; |
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2950
diff
changeset
|
658 GtkWidget *child = child_data->widget; |
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2950
diff
changeset
|
659 g_signal_emit_by_name(child, "redraw"); |
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2950
diff
changeset
|
660 } |
3137
19908efce4e5
one mutex is enough for resizing
Tomasz Mon <desowin@gmail.com>
parents:
3135
diff
changeset
|
661 g_mutex_unlock(resize_mutex); |
2313 | 662 } |
663 | |
664 static void | |
665 playlistwin_motion(GtkWidget * widget, | |
666 GdkEventMotion * event, | |
667 gpointer callback_data) | |
668 { | |
669 GdkEvent *gevent; | |
670 | |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
671 /* |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
672 * 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
|
673 * to do all of this stuff by hand. |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
674 */ |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
675 if (playlistwin_resizing == TRUE) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
676 { |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
677 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
|
678 event->y + playlistwin_resize_y != playlistwin_get_height()) |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
679 { |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
680 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
|
681 event->y + playlistwin_resize_y); |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
682 } |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
683 gdk_window_resize(playlistwin->window, |
2507
e07c141dd326
[svn] - made new functions: widget_move_relative and widget_resize_relative
mf0102
parents:
2499
diff
changeset
|
684 cfg.playlist_width, cfg.playlist_height); |
2491
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
685 } |
2aeea41ef023
[svn] - using ConfigureNotify for resizing is wrong per ICCCM guideline,
nenolod
parents:
2461
diff
changeset
|
686 else if (dock_is_moving(GTK_WINDOW(playlistwin))) |
2313 | 687 dock_move_motion(GTK_WINDOW(playlistwin), event); |
688 gdk_flush(); | |
689 | |
2601 | 690 while ((gevent = gdk_event_get()) != NULL) gdk_event_free(gevent); |
2313 | 691 } |
692 | |
693 static void | |
694 playlistwin_show_filebrowser(void) | |
695 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
696 run_filebrowser(NO_PLAY_BUTTON); |
2313 | 697 } |
698 | |
699 static void | |
700 playlistwin_fileinfo(void) | |
701 { | |
702 Playlist *playlist = playlist_get_active(); | |
703 | |
704 /* Show the first selected file, or the current file if nothing is | |
705 * selected */ | |
706 GList *list = playlist_get_selected(playlist); | |
707 if (list) { | |
708 playlist_fileinfo(playlist, GPOINTER_TO_INT(list->data)); | |
709 g_list_free(list); | |
710 } | |
711 else | |
712 playlist_fileinfo_current(playlist); | |
713 } | |
714 | |
715 static void | |
2363 | 716 show_playlist_save_error(GtkWindow *parent, |
717 const gchar *filename) | |
2313 | 718 { |
719 GtkWidget *dialog; | |
3107
1f5552089a50
Just a few translatable strings.
Stany HENRY <StrassBoy@gmail.com>
parents:
3068
diff
changeset
|
720 |
2313 | 721 g_return_if_fail(GTK_IS_WINDOW(parent)); |
2363 | 722 g_return_if_fail(filename); |
2313 | 723 |
724 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
725 GTK_DIALOG_DESTROY_WITH_PARENT, | |
726 GTK_MESSAGE_ERROR, | |
727 GTK_BUTTONS_OK, | |
728 _("Error writing playlist \"%s\": %s"), | |
729 filename, strerror(errno)); | |
730 | |
2640 | 731 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ |
2313 | 732 gtk_dialog_run(GTK_DIALOG(dialog)); |
733 gtk_widget_destroy(dialog); | |
734 } | |
735 | |
736 static gboolean | |
737 show_playlist_overwrite_prompt(GtkWindow * parent, | |
738 const gchar * filename) | |
739 { | |
740 GtkWidget *dialog; | |
741 gint result; | |
742 | |
743 g_return_val_if_fail(GTK_IS_WINDOW(parent), FALSE); | |
744 g_return_val_if_fail(filename != NULL, FALSE); | |
745 | |
746 dialog = gtk_message_dialog_new(GTK_WINDOW(parent), | |
747 GTK_DIALOG_DESTROY_WITH_PARENT, | |
748 GTK_MESSAGE_QUESTION, | |
749 GTK_BUTTONS_YES_NO, | |
750 _("%s already exist. Continue?"), | |
751 filename); | |
752 | |
2635 | 753 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ |
2313 | 754 result = gtk_dialog_run(GTK_DIALOG(dialog)); |
755 gtk_widget_destroy(dialog); | |
756 | |
757 return (result == GTK_RESPONSE_YES); | |
758 } | |
759 | |
760 static void | |
761 show_playlist_save_format_error(GtkWindow * parent, | |
762 const gchar * filename) | |
763 { | |
3107
1f5552089a50
Just a few translatable strings.
Stany HENRY <StrassBoy@gmail.com>
parents:
3068
diff
changeset
|
764 const gchar *markup = |
2313 | 765 N_("<b><big>Unable to save playlist.</big></b>\n\n" |
766 "Unknown file type for '%s'.\n"); | |
767 | |
768 GtkWidget *dialog; | |
769 | |
770 g_return_if_fail(GTK_IS_WINDOW(parent)); | |
771 g_return_if_fail(filename != NULL); | |
772 | |
773 dialog = | |
774 gtk_message_dialog_new_with_markup(GTK_WINDOW(parent), | |
775 GTK_DIALOG_DESTROY_WITH_PARENT, | |
776 GTK_MESSAGE_ERROR, | |
777 GTK_BUTTONS_OK, | |
778 _(markup), | |
779 filename); | |
2640 | 780 |
781 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ | |
2313 | 782 gtk_dialog_run(GTK_DIALOG(dialog)); |
783 gtk_widget_destroy(dialog); | |
784 } | |
785 | |
786 static void | |
787 playlistwin_save_playlist(const gchar * filename) | |
788 { | |
789 PlaylistContainer *plc; | |
790 gchar *ext = strrchr(filename, '.') + 1; | |
791 | |
792 plc = playlist_container_find(ext); | |
793 if (plc == NULL) { | |
794 show_playlist_save_format_error(GTK_WINDOW(playlistwin), filename); | |
795 return; | |
796 } | |
797 | |
798 str_replace_in(&cfg.playlist_path, g_path_get_dirname(filename)); | |
799 | |
800 if (g_file_test(filename, G_FILE_TEST_IS_REGULAR)) | |
801 if (!show_playlist_overwrite_prompt(GTK_WINDOW(playlistwin), filename)) | |
802 return; | |
803 | |
804 if (!playlist_save(playlist_get_active(), filename)) | |
805 show_playlist_save_error(GTK_WINDOW(playlistwin), filename); | |
806 } | |
807 | |
808 static void | |
809 playlistwin_load_playlist(const gchar * filename) | |
810 { | |
3477
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3475
diff
changeset
|
811 const gchar *title; |
2313 | 812 Playlist *playlist = playlist_get_active(); |
813 | |
814 g_return_if_fail(filename != NULL); | |
815 | |
2640 | 816 str_replace_in(&cfg.playlist_path, g_path_get_dirname(filename)); |
2313 | 817 |
818 playlist_clear(playlist); | |
819 mainwin_clear_song_info(); | |
820 | |
821 playlist_load(playlist, filename); | |
3477
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3475
diff
changeset
|
822 title = playlist_get_current_name(playlist); |
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3475
diff
changeset
|
823 if(!title || !title[0]) |
57f4971b7086
New functions for associating a filename with a playlist. Made title/filename setting more consistent.
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3475
diff
changeset
|
824 playlist_set_current_name(playlist, filename); |
2313 | 825 } |
826 | |
827 static gchar * | |
828 playlist_file_selection_load(const gchar * title, | |
829 const gchar * default_filename) | |
830 { | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
831 GtkWidget *dialog; |
2313 | 832 gchar *filename; |
833 | |
834 g_return_val_if_fail(title != NULL, NULL); | |
835 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
836 dialog = make_filebrowser(title, FALSE); |
2640 | 837 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), cfg.playlist_path); |
3173
734a25cd1efb
Only set the filename in the dialog if it has been defined before by a previous load or save opeation.
Christian Birchinger <joker@netswarm.net>
parents:
3165
diff
changeset
|
838 if (default_filename) |
734a25cd1efb
Only set the filename in the dialog if it has been defined before by a previous load or save opeation.
Christian Birchinger <joker@netswarm.net>
parents:
3165
diff
changeset
|
839 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), default_filename); |
2640 | 840 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); /* centering */ |
2313 | 841 |
842 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) | |
843 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); | |
844 else | |
845 filename = NULL; | |
846 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
847 gtk_widget_destroy(dialog); |
2313 | 848 return filename; |
849 } | |
850 | |
2636 | 851 static void |
852 on_static_toggle(GtkToggleButton *button, gpointer data) | |
853 { | |
854 Playlist *playlist = playlist_get_active(); | |
855 | |
856 playlist->attribute = | |
2640 | 857 gtk_toggle_button_get_active(button) ? |
858 playlist->attribute | PLAYLIST_STATIC : | |
859 playlist->attribute & ~PLAYLIST_STATIC; | |
2636 | 860 } |
861 | |
2641 | 862 static void |
863 on_relative_toggle(GtkToggleButton *button, gpointer data) | |
864 { | |
865 Playlist *playlist = playlist_get_active(); | |
866 | |
867 playlist->attribute = | |
868 gtk_toggle_button_get_active(button) ? | |
869 playlist->attribute | PLAYLIST_USE_RELATIVE : | |
870 playlist->attribute & ~PLAYLIST_USE_RELATIVE; | |
871 } | |
872 | |
2313 | 873 static gchar * |
874 playlist_file_selection_save(const gchar * title, | |
875 const gchar * default_filename) | |
876 { | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
877 GtkWidget *dialog; |
2313 | 878 gchar *filename; |
2641 | 879 GtkWidget *hbox; |
880 GtkWidget *toggle, *toggle2; | |
2313 | 881 |
882 g_return_val_if_fail(title != NULL, NULL); | |
883 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
884 dialog = make_filebrowser(title, TRUE); |
2640 | 885 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
|
886 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), default_filename); |
2636 | 887 |
2641 | 888 hbox = gtk_hbox_new(FALSE, 5); |
889 | |
2636 | 890 /* static playlist */ |
3107
1f5552089a50
Just a few translatable strings.
Stany HENRY <StrassBoy@gmail.com>
parents:
3068
diff
changeset
|
891 toggle = gtk_check_button_new_with_label(_("Save as Static Playlist")); |
2636 | 892 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle), |
893 (playlist_get_active()->attribute & PLAYLIST_STATIC) ? TRUE : FALSE); | |
894 g_signal_connect(G_OBJECT(toggle), "toggled", G_CALLBACK(on_static_toggle), dialog); | |
2641 | 895 gtk_box_pack_start(GTK_BOX(hbox), toggle, FALSE, FALSE, 0); |
896 | |
897 /* use relative path */ | |
3107
1f5552089a50
Just a few translatable strings.
Stany HENRY <StrassBoy@gmail.com>
parents:
3068
diff
changeset
|
898 toggle2 = gtk_check_button_new_with_label(_("Use Relative Path")); |
2641 | 899 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle2), |
900 (playlist_get_active()->attribute & PLAYLIST_USE_RELATIVE) ? TRUE : FALSE); | |
901 g_signal_connect(G_OBJECT(toggle2), "toggled", G_CALLBACK(on_relative_toggle), dialog); | |
902 gtk_box_pack_start(GTK_BOX(hbox), toggle2, FALSE, FALSE, 0); | |
903 | |
904 gtk_widget_show_all(hbox); | |
905 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
|
906 |
2313 | 907 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) |
908 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); | |
909 else | |
910 filename = NULL; | |
911 | |
2514
7934ac463591
[svn] - removed unused function bmp_menu_translate()
mf0102
parents:
2508
diff
changeset
|
912 gtk_widget_destroy(dialog); |
2313 | 913 return filename; |
914 } | |
915 | |
916 void | |
917 playlistwin_select_playlist_to_load(const gchar * default_filename) | |
918 { | |
919 gchar *filename = | |
920 playlist_file_selection_load(_("Load Playlist"), default_filename); | |
921 | |
922 if (filename) { | |
923 playlistwin_load_playlist(filename); | |
924 g_free(filename); | |
925 } | |
926 } | |
927 | |
928 static void | |
929 playlistwin_select_playlist_to_save(const gchar * default_filename) | |
930 { | |
931 gchar *dot = NULL, *basename = NULL; | |
932 gchar *filename = | |
933 playlist_file_selection_save(_("Save Playlist"), default_filename); | |
934 | |
935 if (filename) { | |
3475
80cff88ad6d0
Default extension may not be xspf
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3375
diff
changeset
|
936 /* Default extension */ |
2313 | 937 basename = g_path_get_basename(filename); |
938 dot = strrchr(basename, '.'); | |
939 if( dot == NULL || dot == basename) { | |
940 gchar *oldname = filename; | |
3475
80cff88ad6d0
Default extension may not be xspf
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3375
diff
changeset
|
941 #ifdef HAVE_XSPF_PLAYLIST |
2313 | 942 filename = g_strconcat(oldname, ".xspf", NULL); |
3475
80cff88ad6d0
Default extension may not be xspf
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3375
diff
changeset
|
943 #else |
80cff88ad6d0
Default extension may not be xspf
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3375
diff
changeset
|
944 filename = g_strconcat(oldname, ".m3u", NULL); |
80cff88ad6d0
Default extension may not be xspf
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
3375
diff
changeset
|
945 #endif |
2313 | 946 g_free(oldname); |
947 } | |
948 g_free(basename); | |
949 | |
950 playlistwin_save_playlist(filename); | |
951 g_free(filename); | |
952 } | |
953 } | |
954 | |
955 #define REGION_L(x1,x2,y1,y2) \ | |
956 (event->x >= (x1) && event->x < (x2) && \ | |
957 event->y >= cfg.playlist_height - (y1) && \ | |
958 event->y < cfg.playlist_height - (y2)) | |
959 | |
960 #define REGION_R(x1,x2,y1,y2) \ | |
961 (event->x >= playlistwin_get_width() - (x1) && \ | |
962 event->x < playlistwin_get_width() - (x2) && \ | |
963 event->y >= cfg.playlist_height - (y1) && \ | |
964 event->y < cfg.playlist_height - (y2)) | |
965 | |
966 static void | |
967 playlistwin_scrolled(GtkWidget * widget, | |
968 GdkEventScroll * event, | |
969 gpointer callback_data) | |
970 { | |
971 | |
972 if (event->direction == GDK_SCROLL_DOWN) | |
973 playlistwin_scroll(cfg.scroll_pl_by); | |
974 | |
975 if (event->direction == GDK_SCROLL_UP) | |
976 playlistwin_scroll(-cfg.scroll_pl_by); | |
977 | |
3246
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3245
diff
changeset
|
978 // deactivating this fixed a gui freeze when scrolling. -- mf0102 |
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3512
diff
changeset
|
979 g_cond_signal(cond_scan); |
2313 | 980 |
981 } | |
982 | |
983 static gboolean | |
984 playlistwin_press(GtkWidget * widget, | |
985 GdkEventButton * event, | |
986 gpointer callback_data) | |
987 { | |
988 gint xpos, ypos; | |
989 GtkRequisition req; | |
990 | |
991 gtk_window_get_position(GTK_WINDOW(playlistwin), &xpos, &ypos); | |
992 | |
993 if (event->button == 1 && !cfg.show_wm_decorations && | |
994 ((!cfg.playlist_shaded && | |
995 event->x > playlistwin_get_width() - 20 && | |
996 event->y > cfg.playlist_height - 20) || | |
997 (cfg.playlist_shaded && | |
998 event->x >= playlistwin_get_width() - 31 && | |
999 event->x < playlistwin_get_width() - 22))) { | |
1000 | |
3107
1f5552089a50
Just a few translatable strings.
Stany HENRY <StrassBoy@gmail.com>
parents:
3068
diff
changeset
|
1001 if (event->type != GDK_2BUTTON_PRESS && |
2313 | 1002 event->type != GDK_3BUTTON_PRESS) { |
1003 playlistwin_resizing = TRUE; | |
2492
ea80fe9c3ba4
[svn] - use ConfigureNotify to set playlist location, a proper use of ICCCM.
nenolod
parents:
2491
diff
changeset
|
1004 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
|
1005 playlistwin_resize_y = cfg.playlist_height - event->y; |
2313 | 1006 } |
1007 } | |
1008 else if (event->button == 1 && REGION_L(12, 37, 29, 11)) { | |
1009 /* ADD button menu */ | |
1010 gtk_widget_size_request(playlistwin_pladd_menu, &req); | |
1011 ui_manager_popup_menu_show(GTK_MENU(playlistwin_pladd_menu), | |
1012 xpos + 12, | |
1013 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1014 event->button, | |
1015 event->time); | |
1016 } | |
1017 else if (event->button == 1 && REGION_L(41, 66, 29, 11)) { | |
1018 /* SUB button menu */ | |
1019 gtk_widget_size_request(playlistwin_pldel_menu, &req); | |
1020 ui_manager_popup_menu_show(GTK_MENU(playlistwin_pldel_menu), | |
1021 xpos + 40, | |
1022 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1023 event->button, | |
1024 event->time); | |
1025 } | |
1026 else if (event->button == 1 && REGION_L(70, 95, 29, 11)) { | |
1027 /* SEL button menu */ | |
1028 gtk_widget_size_request(playlistwin_plsel_menu, &req); | |
1029 ui_manager_popup_menu_show(GTK_MENU(playlistwin_plsel_menu), | |
1030 xpos + 68, | |
1031 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1032 event->button, | |
1033 event->time); | |
1034 } | |
1035 else if (event->button == 1 && REGION_L(99, 124, 29, 11)) { | |
1036 /* MISC button menu */ | |
1037 gtk_widget_size_request(playlistwin_plsort_menu, &req); | |
1038 ui_manager_popup_menu_show(GTK_MENU(playlistwin_plsort_menu), | |
1039 xpos + 100, | |
1040 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1041 event->button, | |
1042 event->time); | |
1043 } | |
1044 else if (event->button == 1 && REGION_R(46, 23, 29, 11)) { | |
1045 /* LIST button menu */ | |
1046 gtk_widget_size_request(playlistwin_pllist_menu, &req); | |
1047 ui_manager_popup_menu_show(GTK_MENU(playlistwin_pllist_menu), | |
1048 xpos + playlistwin_get_width() - req.width - 12, | |
1049 (ypos + playlistwin_get_height()) - 8 - req.height, | |
1050 event->button, | |
1051 event->time); | |
1052 } | |
1053 else if (event->button == 1 && event->type == GDK_BUTTON_PRESS && | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1054 (cfg.easy_move || event->y < 14)) |
2313 | 1055 { |
1056 dock_move_press(dock_window_list, GTK_WINDOW(playlistwin), event, | |
1057 FALSE); | |
1058 } | |
3218
018b37cf0730
hasta la vista old widgetcore
Tomasz Mon <desowin@gmail.com>
parents:
3217
diff
changeset
|
1059 else if (event->button == 1 && event->type == GDK_2BUTTON_PRESS |
2313 | 1060 && event->y < 14) { |
1061 /* double click on title bar */ | |
1062 playlistwin_shade_toggle(); | |
1063 if (dock_is_moving(GTK_WINDOW(playlistwin))) | |
1064 dock_move_release(GTK_WINDOW(playlistwin)); | |
1065 return TRUE; | |
1066 } | |
3358
7f6787eac9aa
right click on textboxes without connected handler should bring up audacious menu
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
1067 else if (event->button == 3) { |
2313 | 1068 /* |
1069 * Pop up the main menu a few pixels down to avoid | |
1070 * anything to be selected initially. | |
1071 */ | |
1072 ui_manager_popup_menu_show(GTK_MENU(mainwin_general_menu), event->x_root, | |
1073 event->y_root + 2, 3, event->time); | |
1074 } | |
1075 | |
1076 return FALSE; | |
1077 } | |
1078 | |
1079 static gboolean | |
1080 playlistwin_delete(GtkWidget * w, gpointer data) | |
1081 { | |
1082 playlistwin_hide(); | |
1083 return TRUE; | |
1084 } | |
1085 | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1086 static gboolean |
3217 | 1087 playlistwin_keypress_up_down_handler(UiSkinnedPlaylist * pl, |
2313 | 1088 gboolean up, guint state) |
1089 { | |
1090 Playlist *playlist = playlist_get_active(); | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1091 if ((!(pl->prev_selected || pl->first) && up) || |
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1092 ((pl->prev_selected >= playlist_get_length(playlist) - 1) && !up)) |
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1093 return FALSE; |
2313 | 1094 |
1095 if ((state & GDK_MOD1_MASK) && (state & GDK_SHIFT_MASK)) | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1096 return FALSE; |
2313 | 1097 if (!(state & GDK_MOD1_MASK)) |
1098 playlist_select_all(playlist, FALSE); | |
1099 | |
3217 | 1100 if (pl->prev_selected == -1 || |
1101 (!playlistwin_item_visible(pl->prev_selected) && | |
1102 !(state & GDK_SHIFT_MASK && pl->prev_min != -1))) { | |
1103 pl->prev_selected = pl->first; | |
2313 | 1104 } |
1105 else if (state & GDK_SHIFT_MASK) { | |
3217 | 1106 if (pl->prev_min == -1) { |
1107 pl->prev_max = pl->prev_selected; | |
1108 pl->prev_min = pl->prev_selected; | |
2313 | 1109 } |
3217 | 1110 pl->prev_max += (up ? -1 : 1); |
1111 pl->prev_max = | |
1112 CLAMP(pl->prev_max, 0, playlist_get_length(playlist) - 1); | |
2313 | 1113 |
3217 | 1114 pl->first = MIN(pl->first, pl->prev_max); |
1115 pl->first = MAX(pl->first, pl->prev_max - | |
1116 pl->num_visible + 1); | |
1117 playlist_select_range(playlist, pl->prev_min, pl->prev_max, TRUE); | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1118 return TRUE; |
2313 | 1119 } |
1120 else if (state & GDK_MOD1_MASK) { | |
1121 if (up) | |
3217 | 1122 ui_skinned_playlist_move_up(pl); |
2313 | 1123 else |
3217 | 1124 ui_skinned_playlist_move_down(pl); |
1125 if (pl->prev_min < pl->first) | |
1126 pl->first = pl->prev_min; | |
1127 else if (pl->prev_max >= (pl->first + pl->num_visible)) | |
1128 pl->first = pl->prev_max - pl->num_visible + 1; | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1129 return TRUE; |
2313 | 1130 } |
1131 else if (up) | |
3217 | 1132 pl->prev_selected--; |
2313 | 1133 else |
3217 | 1134 pl->prev_selected++; |
2313 | 1135 |
3217 | 1136 pl->prev_selected = |
1137 CLAMP(pl->prev_selected, 0, playlist_get_length(playlist) - 1); | |
2313 | 1138 |
3217 | 1139 if (pl->prev_selected < pl->first) |
1140 pl->first--; | |
1141 else if (pl->prev_selected >= (pl->first + pl->num_visible)) | |
1142 pl->first++; | |
2313 | 1143 |
3217 | 1144 playlist_select_range(playlist, pl->prev_selected, pl->prev_selected, TRUE); |
1145 pl->prev_min = -1; | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1146 |
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1147 return TRUE; |
2313 | 1148 } |
1149 | |
1150 /* FIXME: Handle the keys through menu */ | |
1151 | |
1152 static gboolean | |
1153 playlistwin_keypress(GtkWidget * w, GdkEventKey * event, gpointer data) | |
1154 { | |
1155 Playlist *playlist = playlist_get_active(); | |
1156 | |
1157 guint keyval; | |
1158 gboolean refresh = FALSE; | |
1159 | |
1160 if (cfg.playlist_shaded) | |
1161 return FALSE; | |
1162 | |
1163 switch (keyval = event->keyval) { | |
1164 case GDK_KP_Up: | |
1165 case GDK_KP_Down: | |
1166 case GDK_Up: | |
1167 case GDK_Down: | |
3375
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1168 refresh = playlistwin_keypress_up_down_handler(UI_SKINNED_PLAYLIST(playlistwin_list), |
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1169 keyval == GDK_Up |
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1170 || keyval == GDK_KP_Up, |
6e4944657ab9
prevent some useless redraws
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
1171 event->state); |
2313 | 1172 break; |
1173 case GDK_Page_Up: | |
3217 | 1174 playlistwin_scroll(-UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible); |
2313 | 1175 refresh = TRUE; |
1176 break; | |
1177 case GDK_Page_Down: | |
3217 | 1178 playlistwin_scroll(UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible); |
2313 | 1179 refresh = TRUE; |
1180 break; | |
1181 case GDK_Home: | |
3217 | 1182 UI_SKINNED_PLAYLIST(playlistwin_list)->first = 0; |
2313 | 1183 refresh = TRUE; |
1184 break; | |
1185 case GDK_End: | |
3217 | 1186 UI_SKINNED_PLAYLIST(playlistwin_list)->first = |
1187 playlist_get_length(playlist) - UI_SKINNED_PLAYLIST(playlistwin_list)->num_visible; | |
2313 | 1188 refresh = TRUE; |
1189 break; | |
1190 case GDK_Return: | |
3217 | 1191 if (UI_SKINNED_PLAYLIST(playlistwin_list)->prev_selected > -1 |
1192 && playlistwin_item_visible(UI_SKINNED_PLAYLIST(playlistwin_list)->prev_selected)) { | |
1193 playlist_set_position(playlist, UI_SKINNED_PLAYLIST(playlistwin_list)->prev_selected); | |
2313 | 1194 if (!playback_get_playing()) |
1195 playback_initiate(); | |
1196 } | |
3246
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3245
diff
changeset
|
1197 refresh = TRUE; |
2313 | 1198 break; |
1199 case GDK_3: | |
1200 if (event->state & GDK_CONTROL_MASK) | |
1201 playlistwin_fileinfo(); | |
1202 break; | |
1203 case GDK_Delete: | |
1204 if (event->state & GDK_CONTROL_MASK) | |
1205 playlist_delete(playlist, TRUE); | |
1206 else | |
1207 playlist_delete(playlist, FALSE); | |
1208 break; | |
1209 case GDK_Insert: | |
1210 if (event->state & GDK_MOD1_MASK) | |
1211 mainwin_show_add_url_window(); | |
1212 else | |
1213 playlistwin_show_filebrowser(); | |
1214 break; | |
1215 case GDK_Left: | |
1216 case GDK_KP_Left: | |
1217 case GDK_KP_7: | |
1218 if (playlist_get_current_length(playlist) != -1) | |
1219 playback_seek(CLAMP | |
1220 (playback_get_time() - 5000, 0, | |
1221 playlist_get_current_length(playlist)) / 1000); | |
1222 break; | |
1223 case GDK_Right: | |
1224 case GDK_KP_Right: | |
1225 case GDK_KP_9: | |
1226 if (playlist_get_current_length(playlist) != -1) | |
1227 playback_seek(CLAMP | |
1228 (playback_get_time() + 5000, 0, | |
1229 playlist_get_current_length(playlist)) / 1000); | |
1230 break; | |
1231 case GDK_KP_4: | |
1232 playlist_prev(playlist); | |
1233 break; | |
1234 case GDK_KP_6: | |
1235 playlist_next(playlist); | |
1236 break; | |
1237 | |
1238 case GDK_Escape: | |
1239 mainwin_minimize_cb(); | |
1240 break; | |
3350
1292e4ca0f08
press ctrl+tab to switch between windows
Tomasz Mon <desowin@gmail.com>
parents:
3312
diff
changeset
|
1241 case GDK_Tab: |
4117
a5779105e6d2
on ctrl-tab switch only between visible windows (Bugzilla #14)
Tomasz Mon <desowin@gmail.com>
parents:
4091
diff
changeset
|
1242 if (event->state & GDK_CONTROL_MASK) { |
a5779105e6d2
on ctrl-tab switch only between visible windows (Bugzilla #14)
Tomasz Mon <desowin@gmail.com>
parents:
4091
diff
changeset
|
1243 if (cfg.player_visible) |
a5779105e6d2
on ctrl-tab switch only between visible windows (Bugzilla #14)
Tomasz Mon <desowin@gmail.com>
parents:
4091
diff
changeset
|
1244 gtk_window_present(GTK_WINDOW(mainwin)); |
a5779105e6d2
on ctrl-tab switch only between visible windows (Bugzilla #14)
Tomasz Mon <desowin@gmail.com>
parents:
4091
diff
changeset
|
1245 else if (cfg.equalizer_visible) |
a5779105e6d2
on ctrl-tab switch only between visible windows (Bugzilla #14)
Tomasz Mon <desowin@gmail.com>
parents:
4091
diff
changeset
|
1246 gtk_window_present(GTK_WINDOW(equalizerwin)); |
a5779105e6d2
on ctrl-tab switch only between visible windows (Bugzilla #14)
Tomasz Mon <desowin@gmail.com>
parents:
4091
diff
changeset
|
1247 } |
3350
1292e4ca0f08
press ctrl+tab to switch between windows
Tomasz Mon <desowin@gmail.com>
parents:
3312
diff
changeset
|
1248 break; |
2313 | 1249 default: |
1250 return FALSE; | |
1251 } | |
1252 | |
1253 if (refresh) { | |
3246
2127f7108033
- fixed some cases where the playlist wasn't redrawn
mf0102 <0102@gmx.at>
parents:
3245
diff
changeset
|
1254 // fixes keyboard scrolling gui freeze for me. -- mf0102 |
3959
a575c29cee05
- revive on-demand metadata retrieving. in the combination with "Detect file formats on demand", now audacious can load large directory in a few seconds.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3512
diff
changeset
|
1255 g_cond_signal(cond_scan); |
2313 | 1256 playlistwin_update_list(playlist_get_active()); |
1257 } | |
1258 | |
1259 return TRUE; | |
1260 } | |
1261 | |
1262 void | |
1263 playlistwin_hide_timer(void) | |
1264 { | |
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
|
1265 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
|
1266 ui_skinned_textbox_set_text(playlistwin_time_sec, " "); |
2313 | 1267 } |
1268 | |
1269 void | |
1270 playlistwin_set_time(gint time, gint length, TimerMode mode) | |
1271 { | |
1272 gchar *text, sign; | |
1273 | |
1274 if (mode == TIMER_REMAINING && length != -1) { | |
1275 time = length - time; | |
1276 sign = '-'; | |
1277 } | |
1278 else | |
1279 sign = ' '; | |
1280 | |
1281 time /= 1000; | |
1282 | |
1283 if (time < 0) | |
1284 time = 0; | |
1285 if (time > 99 * 60) | |
1286 time /= 60; | |
1287 | |
1288 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
|
1289 ui_skinned_textbox_set_text(playlistwin_time_min, text); |
2313 | 1290 g_free(text); |
1291 | |
1292 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
|
1293 ui_skinned_textbox_set_text(playlistwin_time_sec, text); |
2313 | 1294 g_free(text); |
1295 } | |
1296 | |
1297 static void | |
1298 playlistwin_drag_motion(GtkWidget * widget, | |
1299 GdkDragContext * context, | |
1300 gint x, gint y, | |
1301 GtkSelectionData * selection_data, | |
1302 guint info, guint time, gpointer user_data) | |
1303 { | |
3217 | 1304 UI_SKINNED_PLAYLIST(playlistwin_list)->drag_motion = TRUE; |
1305 UI_SKINNED_PLAYLIST(playlistwin_list)->drag_motion_x = x; | |
1306 UI_SKINNED_PLAYLIST(playlistwin_list)->drag_motion_y = y; | |
2313 | 1307 playlistwin_update_list(playlist_get_active()); |
1308 playlistwin_hint_flag = TRUE; | |
1309 } | |
1310 | |
1311 static void | |
1312 playlistwin_drag_end(GtkWidget * widget, | |
1313 GdkDragContext * context, gpointer user_data) | |
1314 { | |
3217 | 1315 UI_SKINNED_PLAYLIST(playlistwin_list)->drag_motion = FALSE; |
2313 | 1316 playlistwin_hint_flag = FALSE; |
1317 playlistwin_update_list(playlist_get_active()); | |
1318 } | |
1319 | |
1320 static void | |
1321 playlistwin_drag_data_received(GtkWidget * widget, | |
1322 GdkDragContext * context, | |
1323 gint x, gint y, | |
1324 GtkSelectionData * | |
1325 selection_data, guint info, | |
1326 guint time, gpointer user_data) | |
1327 { | |
1328 gint pos; | |
1329 Playlist *playlist = playlist_get_active(); | |
1330 | |
2363 | 1331 g_return_if_fail(selection_data); |
2313 | 1332 |
1333 if (!selection_data->data) { | |
1334 g_message("Received no DND data!"); | |
1335 return; | |
1336 } | |
3217 | 1337 if (x < playlistwin_get_width() - 20 || y < cfg.playlist_height - 38) { |
1338 pos = y / UI_SKINNED_PLAYLIST(playlistwin_list)->fheight + UI_SKINNED_PLAYLIST(playlistwin_list)->first; | |
2313 | 1339 |
1340 pos = MIN(pos, playlist_get_length(playlist)); | |
1341 playlist_ins_url(playlist, (gchar *) selection_data->data, pos); | |
1342 } | |
1343 else | |
1344 playlist_add_url(playlist, (gchar *) selection_data->data); | |
1345 } | |
1346 | |
1347 static void | |
1348 local_playlist_prev(void) | |
1349 { | |
1350 playlist_prev(playlist_get_active()); | |
1351 } | |
1352 | |
1353 static void | |
1354 local_playlist_next(void) | |
1355 { | |
1356 playlist_next(playlist_get_active()); | |
1357 } | |
1358 | |
1359 static void | |
1360 playlistwin_create_widgets(void) | |
1361 { | |
1362 /* This function creates the custom widgets used by the playlist editor */ | |
1363 | |
1364 /* 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
|
1365 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
|
1366 4, 4, playlistwin_get_width() - 35, TRUE, SKIN_TEXT); |
2313 | 1367 |
1368 playlistwin_set_sinfo_font(cfg.playlist_font); | |
1369 | |
2901
5ed0674fabd6
replace PButton in playlistwin with UiSkinnedButton, pbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
1370 playlistwin_shade = ui_skinned_button_new(); |
2313 | 1371 /* shade/unshade window push button */ |
1372 if (cfg.playlist_shaded) | |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
1373 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
|
1374 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
|
1375 9, 9, 128, 45, 150, 42, SKIN_PLEDIT); |
2313 | 1376 else |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
1377 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
|
1378 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
|
1379 9, 9, 157, 3, 62, 42, SKIN_PLEDIT); |
2313 | 1380 |
2901
5ed0674fabd6
replace PButton in playlistwin with UiSkinnedButton, pbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
1381 g_signal_connect(playlistwin_shade, "clicked", playlistwin_shade_toggle, NULL ); |
2313 | 1382 |
1383 /* 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
|
1384 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
|
1385 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
|
1386 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
|
1387 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
|
1388 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
|
1389 |
5ed0674fabd6
replace PButton in playlistwin with UiSkinnedButton, pbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
1390 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
|
1391 |
2313 | 1392 /* playlist list box */ |
3217 | 1393 playlistwin_list = ui_skinned_playlist_new(SKINNED_WINDOW(playlistwin)->fixed, 12, 20, |
2313 | 1394 playlistwin_get_width() - 31, |
1395 cfg.playlist_height - 58); | |
3217 | 1396 ui_skinned_playlist_set_font(cfg.playlist_font); |
2313 | 1397 |
1398 /* playlist list box slider */ | |
3135
7cdcf8ab08da
replace PlaylistSlider with UiSkinnedPlaylistSlider
Tomasz Mon <desowin@gmail.com>
parents:
3123
diff
changeset
|
1399 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
|
1400 20, cfg.playlist_height - 58); |
2528
60f2787cc7fd
[svn] - playlist editor: use SkinnedWindow widgetlist
nenolod
parents:
2527
diff
changeset
|
1401 |
2313 | 1402 /* track time (minute) */ |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
1403 playlistwin_time_min = ui_skinned_textbox_new(SKINNED_WINDOW(playlistwin)->fixed, |
2313 | 1404 playlistwin_get_width() - 82, |
1405 cfg.playlist_height - 15, 15, FALSE, SKIN_TEXT); | |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3365
diff
changeset
|
1406 g_signal_connect(playlistwin_time_min, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
2313 | 1407 |
1408 /* track time (second) */ | |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
1409 playlistwin_time_sec = ui_skinned_textbox_new(SKINNED_WINDOW(playlistwin)->fixed, |
2313 | 1410 playlistwin_get_width() - 64, |
1411 cfg.playlist_height - 15, 10, FALSE, SKIN_TEXT); | |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3365
diff
changeset
|
1412 g_signal_connect(playlistwin_time_sec, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
2313 | 1413 |
1414 /* 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
|
1415 playlistwin_info = ui_skinned_textbox_new(SKINNED_WINDOW(playlistwin)->fixed, |
2313 | 1416 playlistwin_get_width() - 143, |
1417 cfg.playlist_height - 28, 90, FALSE, SKIN_TEXT); | |
1418 | |
1419 /* mini play control buttons at right bottom corner */ | |
1420 | |
1421 /* 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
|
1422 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
|
1423 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
|
1424 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
|
1425 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
|
1426 g_signal_connect(playlistwin_srew, "clicked", local_playlist_prev, NULL); |
2313 | 1427 |
1428 /* 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
|
1429 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
|
1430 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
|
1431 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
|
1432 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
|
1433 g_signal_connect(playlistwin_splay, "clicked", mainwin_play_pushed, NULL); |
2313 | 1434 |
1435 /* 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
|
1436 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
|
1437 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
|
1438 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
|
1439 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
|
1440 g_signal_connect(playlistwin_spause, "clicked", playback_pause, NULL); |
2313 | 1441 |
1442 /* 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
|
1443 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
|
1444 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
|
1445 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
|
1446 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
|
1447 g_signal_connect(playlistwin_sstop, "clicked", mainwin_stop_pushed, NULL); |
2313 | 1448 |
1449 /* 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
|
1450 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
|
1451 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
|
1452 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
|
1453 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
|
1454 g_signal_connect(playlistwin_sfwd, "clicked", local_playlist_next, NULL); |
2313 | 1455 |
1456 /* 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
|
1457 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
|
1458 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
|
1459 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
|
1460 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
|
1461 g_signal_connect(playlistwin_seject, "clicked", mainwin_eject_pushed, NULL); |
2313 | 1462 |
2902
2b379b796c84
replace SButton in playlistwin with UiSkinnedButton, sbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2901
diff
changeset
|
1463 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
|
1464 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
|
1465 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
|
1466 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
|
1467 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
|
1468 |
2902
2b379b796c84
replace SButton in playlistwin with UiSkinnedButton, sbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2901
diff
changeset
|
1469 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
|
1470 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
|
1471 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
|
1472 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
|
1473 g_signal_connect(playlistwin_sscroll_down, "clicked", playlistwin_scroll_down_pushed, NULL); |
2313 | 1474 } |
1475 | |
1476 static void | |
1477 selection_received(GtkWidget * widget, | |
1478 GtkSelectionData * selection_data, gpointer data) | |
1479 { | |
1480 if (selection_data->type == GDK_SELECTION_TYPE_STRING && | |
1481 selection_data->length > 0) | |
1482 playlist_add_url(playlist_get_active(), (gchar *) selection_data->data); | |
1483 } | |
1484 | |
1485 static void | |
1486 playlistwin_create_window(void) | |
1487 { | |
1488 GdkPixbuf *icon; | |
1489 | |
3068
c5189bc4100b
Refactor skinned window code.
William Pitcock <nenolod@atheme-project.org>
parents:
3065
diff
changeset
|
1490 playlistwin = ui_skinned_window_new("playlist"); |
2313 | 1491 gtk_window_set_title(GTK_WINDOW(playlistwin), _("Audacious Playlist Editor")); |
1492 gtk_window_set_role(GTK_WINDOW(playlistwin), "playlist"); | |
1493 gtk_window_set_default_size(GTK_WINDOW(playlistwin), | |
1494 playlistwin_get_width(), | |
1495 playlistwin_get_height()); | |
1496 gtk_window_set_resizable(GTK_WINDOW(playlistwin), TRUE); | |
1497 playlistwin_set_geometry_hints(cfg.playlist_shaded); | |
1498 | |
1499 gtk_window_set_transient_for(GTK_WINDOW(playlistwin), | |
1500 GTK_WINDOW(mainwin)); | |
1501 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(playlistwin), TRUE); | |
1502 | |
1503 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) bmp_playlist_icon); | |
1504 gtk_window_set_icon(GTK_WINDOW(playlistwin), icon); | |
1505 g_object_unref(icon); | |
1506 | |
1507 if (cfg.playlist_x != -1 && cfg.save_window_position) | |
1508 gtk_window_move(GTK_WINDOW(playlistwin), | |
1509 cfg.playlist_x, cfg.playlist_y); | |
1510 | |
1511 gtk_widget_add_events(playlistwin, GDK_POINTER_MOTION_MASK | | |
1512 GDK_FOCUS_CHANGE_MASK | GDK_BUTTON_MOTION_MASK | | |
1513 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | | |
1514 GDK_SCROLL_MASK | GDK_VISIBILITY_NOTIFY_MASK); | |
1515 gtk_widget_realize(playlistwin); | |
1516 | |
1517 g_signal_connect(playlistwin, "delete_event", | |
1518 G_CALLBACK(playlistwin_delete), NULL); | |
1519 g_signal_connect(playlistwin, "button_press_event", | |
1520 G_CALLBACK(playlistwin_press), NULL); | |
1521 g_signal_connect(playlistwin, "button_release_event", | |
1522 G_CALLBACK(playlistwin_release), NULL); | |
1523 g_signal_connect(playlistwin, "scroll_event", | |
1524 G_CALLBACK(playlistwin_scrolled), NULL); | |
1525 g_signal_connect(playlistwin, "motion_notify_event", | |
1526 G_CALLBACK(playlistwin_motion), NULL); | |
1527 | |
1528 bmp_drag_dest_set(playlistwin); | |
1529 | |
1530 /* DnD stuff */ | |
1531 g_signal_connect(playlistwin, "drag-leave", | |
1532 G_CALLBACK(playlistwin_drag_end), NULL); | |
1533 g_signal_connect(playlistwin, "drag-data-delete", | |
1534 G_CALLBACK(playlistwin_drag_end), NULL); | |
1535 g_signal_connect(playlistwin, "drag-end", | |
1536 G_CALLBACK(playlistwin_drag_end), NULL); | |
1537 g_signal_connect(playlistwin, "drag-drop", | |
1538 G_CALLBACK(playlistwin_drag_end), NULL); | |
1539 g_signal_connect(playlistwin, "drag-data-received", | |
1540 G_CALLBACK(playlistwin_drag_data_received), NULL); | |
1541 g_signal_connect(playlistwin, "drag-motion", | |
1542 G_CALLBACK(playlistwin_drag_motion), NULL); | |
1543 | |
1544 g_signal_connect(playlistwin, "key_press_event", | |
1545 G_CALLBACK(playlistwin_keypress), NULL); | |
1546 g_signal_connect(playlistwin, "selection_received", | |
1547 G_CALLBACK(selection_received), NULL); | |
1548 } | |
1549 | |
1550 void | |
1551 playlistwin_create(void) | |
1552 { | |
3137
19908efce4e5
one mutex is enough for resizing
Tomasz Mon <desowin@gmail.com>
parents:
3135
diff
changeset
|
1553 resize_mutex = g_mutex_new(); |
2313 | 1554 playlistwin_create_window(); |
1555 | |
1556 playlistwin_create_widgets(); | |
1557 playlistwin_update_info(playlist_get_active()); | |
1558 | |
1559 gtk_window_add_accel_group(GTK_WINDOW(playlistwin), ui_manager_get_accel_group()); | |
1560 } | |
1561 | |
1562 | |
1563 void | |
1564 playlistwin_show(void) | |
1565 { | |
3311
8560d99e36be
revise ui_skinned_window_configure
Tomasz Mon <desowin@gmail.com>
parents:
3298
diff
changeset
|
1566 gtk_window_move(GTK_WINDOW(playlistwin), cfg.playlist_x, cfg.playlist_y); |
2313 | 1567 GtkAction *action = gtk_action_group_get_action( |
1568 toggleaction_group_others , "show playlist editor" ); | |
1569 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , TRUE ); | |
1570 | |
1571 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
|
1572 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
|
1573 gtk_widget_queue_draw(mainwin_pl); |
2313 | 1574 |
1575 playlistwin_set_toprow(0); | |
1576 playlist_check_pos_current(playlist_get_active()); | |
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 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
|
1579 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
|
1580 gtk_widget_hide(playlistwin_sinfo); |
2901
5ed0674fabd6
replace PButton in playlistwin with UiSkinnedButton, pbutton.c is no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
1581 gtk_window_present(GTK_WINDOW(playlistwin)); |
2313 | 1582 } |
1583 | |
1584 void | |
1585 playlistwin_hide(void) | |
1586 { | |
1587 GtkAction *action = gtk_action_group_get_action( | |
1588 toggleaction_group_others , "show playlist editor" ); | |
1589 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , FALSE ); | |
1590 | |
1591 gtk_widget_hide(playlistwin); | |
1592 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
|
1593 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
|
1594 gtk_widget_queue_draw(mainwin_pl); |
2313 | 1595 |
2338
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1596 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
|
1597 { |
d0a04f1ee732
[svn] - in playlistwin_hide(), pass focus to the player main window only if it's visible
giacomo
parents:
2328
diff
changeset
|
1598 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
|
1599 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
|
1600 } |
2313 | 1601 } |
1602 | |
1603 void action_playlist_track_info(void) | |
1604 { | |
1605 playlistwin_fileinfo(); | |
1606 } | |
1607 | |
1608 void action_queue_toggle(void) | |
1609 { | |
1610 playlist_queue(playlist_get_active()); | |
1611 } | |
1612 | |
1613 void action_playlist_sort_by_playlist_entry(void) | |
1614 { | |
1615 Playlist *playlist = playlist_get_active(); | |
1616 | |
1617 playlist_sort(playlist, PLAYLIST_SORT_PLAYLIST); | |
1618 playlistwin_update_list(playlist); | |
1619 } | |
1620 | |
1621 void action_playlist_sort_by_track_number(void) | |
1622 { | |
1623 Playlist *playlist = playlist_get_active(); | |
1624 | |
1625 playlist_sort(playlist, PLAYLIST_SORT_TRACK); | |
1626 playlistwin_update_list(playlist); | |
1627 } | |
1628 | |
1629 void action_playlist_sort_by_title(void) | |
1630 { | |
1631 Playlist *playlist = playlist_get_active(); | |
1632 | |
1633 playlist_sort(playlist, PLAYLIST_SORT_TITLE); | |
1634 playlistwin_update_list(playlist); | |
1635 } | |
1636 | |
1637 void action_playlist_sort_by_artist(void) | |
1638 { | |
1639 Playlist *playlist = playlist_get_active(); | |
1640 | |
1641 playlist_sort(playlist, PLAYLIST_SORT_ARTIST); | |
1642 playlistwin_update_list(playlist); | |
1643 } | |
1644 | |
1645 void action_playlist_sort_by_full_path(void) | |
1646 { | |
1647 Playlist *playlist = playlist_get_active(); | |
1648 | |
1649 playlist_sort(playlist, PLAYLIST_SORT_PATH); | |
1650 playlistwin_update_list(playlist); | |
1651 } | |
1652 | |
1653 void action_playlist_sort_by_date(void) | |
1654 { | |
1655 Playlist *playlist = playlist_get_active(); | |
1656 | |
1657 playlist_sort(playlist, PLAYLIST_SORT_DATE); | |
1658 playlistwin_update_list(playlist); | |
1659 } | |
1660 | |
1661 void action_playlist_sort_by_filename(void) | |
1662 { | |
1663 Playlist *playlist = playlist_get_active(); | |
1664 | |
1665 playlist_sort(playlist, PLAYLIST_SORT_FILENAME); | |
1666 playlistwin_update_list(playlist); | |
1667 } | |
1668 | |
1669 void action_playlist_sort_selected_by_playlist_entry(void) | |
1670 { | |
1671 Playlist *playlist = playlist_get_active(); | |
1672 | |
1673 playlist_sort_selected(playlist, PLAYLIST_SORT_PLAYLIST); | |
1674 playlistwin_update_list(playlist); | |
1675 } | |
1676 | |
1677 void action_playlist_sort_selected_by_track_number(void) | |
1678 { | |
1679 Playlist *playlist = playlist_get_active(); | |
1680 | |
1681 playlist_sort_selected(playlist, PLAYLIST_SORT_TRACK); | |
1682 playlistwin_update_list(playlist); | |
1683 } | |
1684 | |
1685 void action_playlist_sort_selected_by_title(void) | |
1686 { | |
1687 Playlist *playlist = playlist_get_active(); | |
1688 | |
1689 playlist_sort_selected(playlist, PLAYLIST_SORT_TITLE); | |
1690 playlistwin_update_list(playlist); | |
1691 } | |
1692 | |
1693 void action_playlist_sort_selected_by_artist(void) | |
1694 { | |
1695 Playlist *playlist = playlist_get_active(); | |
1696 | |
1697 playlist_sort_selected(playlist, PLAYLIST_SORT_ARTIST); | |
1698 playlistwin_update_list(playlist); | |
1699 } | |
1700 | |
1701 void action_playlist_sort_selected_by_full_path(void) | |
1702 { | |
1703 Playlist *playlist = playlist_get_active(); | |
1704 | |
1705 playlist_sort_selected(playlist, PLAYLIST_SORT_PATH); | |
1706 playlistwin_update_list(playlist); | |
1707 } | |
1708 | |
1709 void action_playlist_sort_selected_by_date(void) | |
1710 { | |
1711 Playlist *playlist = playlist_get_active(); | |
1712 | |
1713 playlist_sort_selected(playlist, PLAYLIST_SORT_DATE); | |
1714 playlistwin_update_list(playlist); | |
1715 } | |
1716 | |
1717 void action_playlist_sort_selected_by_filename(void) | |
1718 { | |
1719 Playlist *playlist = playlist_get_active(); | |
1720 | |
1721 playlist_sort_selected(playlist, PLAYLIST_SORT_FILENAME); | |
1722 playlistwin_update_list(playlist); | |
1723 } | |
1724 | |
1725 void action_playlist_randomize_list(void) | |
1726 { | |
1727 Playlist *playlist = playlist_get_active(); | |
1728 | |
1729 playlist_random(playlist); | |
1730 playlistwin_update_list(playlist); | |
1731 } | |
1732 | |
1733 void action_playlist_reverse_list(void) | |
1734 { | |
1735 Playlist *playlist = playlist_get_active(); | |
1736 | |
1737 playlist_reverse(playlist); | |
1738 playlistwin_update_list(playlist); | |
1739 } | |
1740 | |
1741 void | |
1742 action_playlist_clear_queue(void) | |
1743 { | |
1744 playlist_clear_queue(playlist_get_active()); | |
1745 } | |
1746 | |
1747 void | |
1748 action_playlist_remove_unavailable(void) | |
1749 { | |
1750 playlist_remove_dead_files(playlist_get_active()); | |
1751 } | |
1752 | |
1753 void | |
1754 action_playlist_remove_dupes_by_title(void) | |
1755 { | |
1756 playlist_remove_duplicates(playlist_get_active(), PLAYLIST_DUPS_TITLE); | |
1757 } | |
1758 | |
1759 void | |
1760 action_playlist_remove_dupes_by_filename(void) | |
1761 { | |
1762 playlist_remove_duplicates(playlist_get_active(), PLAYLIST_DUPS_FILENAME); | |
1763 } | |
1764 | |
1765 void | |
1766 action_playlist_remove_dupes_by_full_path(void) | |
1767 { | |
1768 playlist_remove_duplicates(playlist_get_active(), PLAYLIST_DUPS_PATH); | |
1769 } | |
1770 | |
1771 void | |
1772 action_playlist_remove_all(void) | |
1773 { | |
1774 playlist_clear(playlist_get_active()); | |
1775 | |
1776 /* XXX -- should this really be coupled here? -nenolod */ | |
1777 mainwin_clear_song_info(); | |
1778 } | |
1779 | |
1780 void | |
1781 action_playlist_remove_selected(void) | |
1782 { | |
1783 playlist_delete(playlist_get_active(), FALSE); | |
1784 } | |
1785 | |
1786 void | |
1787 action_playlist_remove_unselected(void) | |
1788 { | |
1789 playlist_delete(playlist_get_active(), TRUE); | |
1790 } | |
1791 | |
1792 void | |
1793 action_playlist_add_files(void) | |
1794 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1795 run_filebrowser(NO_PLAY_BUTTON); |
2313 | 1796 } |
1797 | |
1798 void | |
1799 action_playlist_add_url(void) | |
1800 { | |
1801 mainwin_show_add_url_window(); | |
1802 } | |
1803 | |
1804 void | |
1805 action_playlist_new( void ) | |
1806 { | |
1807 Playlist *new_pl = playlist_new(); | |
1808 playlist_add_playlist(new_pl); | |
1809 playlist_select_playlist(new_pl); | |
1810 } | |
1811 | |
1812 void | |
1813 action_playlist_prev( void ) | |
1814 { | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1815 playlist_select_prev(); |
2313 | 1816 } |
1817 | |
1818 void | |
1819 action_playlist_next( void ) | |
1820 { | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1821 playlist_select_next(); |
2313 | 1822 } |
1823 | |
1824 void | |
1825 action_playlist_delete( void ) | |
1826 { | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1827 playlist_remove_playlist( playlist_get_active() ); |
2313 | 1828 } |
1829 | |
1830 void | |
1831 action_playlist_save_list(void) | |
1832 { | |
1833 Playlist *playlist = playlist_get_active(); | |
1834 | |
1835 playlistwin_select_playlist_to_save(playlist_get_current_name(playlist)); | |
1836 } | |
1837 | |
1838 void | |
1839 action_playlist_save_default_list(void) | |
1840 { | |
1841 Playlist *playlist = playlist_get_active(); | |
1842 | |
1843 playlist_save(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1844 } | |
1845 | |
1846 void | |
1847 action_playlist_load_list(void) | |
1848 { | |
1849 Playlist *playlist = playlist_get_active(); | |
1850 | |
1851 playlistwin_select_playlist_to_load(playlist_get_current_name(playlist)); | |
1852 } | |
1853 | |
1854 void | |
1855 action_playlist_refresh_list(void) | |
1856 { | |
1857 Playlist *playlist = playlist_get_active(); | |
1858 | |
1859 playlist_read_info_selection(playlist); | |
1860 playlistwin_update_list(playlist); | |
1861 } | |
1862 | |
1863 void | |
1864 action_open_list_manager(void) | |
1865 { | |
1866 playlist_manager_ui_show(); | |
1867 } | |
1868 | |
1869 void | |
1870 action_playlist_search_and_select(void) | |
1871 { | |
1872 playlistwin_select_search(); | |
1873 } | |
1874 | |
1875 void | |
1876 action_playlist_invert_selection(void) | |
1877 { | |
1878 playlistwin_inverse_selection(); | |
1879 } | |
1880 | |
1881 void | |
1882 action_playlist_select_none(void) | |
1883 { | |
1884 playlistwin_select_none(); | |
1885 } | |
1886 | |
1887 void | |
1888 action_playlist_select_all(void) | |
1889 { | |
1890 playlistwin_select_all(); | |
1891 } | |
1892 | |
1893 | |
1894 | |
1895 /* playlistwin_select_search callback functions | |
1896 placed here to avoid making the code messier :) */ | |
1897 void | |
2363 | 1898 playlistwin_select_search_cbt_cb(GtkWidget *called_cbt, gpointer other_cbt) |
2313 | 1899 { |
2363 | 1900 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(called_cbt)) == TRUE) |
1901 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(other_cbt), FALSE); | |
2313 | 1902 return; |
1903 } | |
1904 | |
1905 static gboolean | |
2363 | 1906 playlistwin_select_search_kp_cb(GtkWidget *entry, GdkEventKey *event, |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2653
diff
changeset
|
1907 gpointer searchdlg_win) |
2313 | 1908 { |
1909 switch (event->keyval) | |
1910 { | |
1911 case GDK_Return: | |
4091
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1912 if (gtk_im_context_filter_keypress (GTK_ENTRY (entry)->im_context, event)) { |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1913 GTK_ENTRY (entry)->need_im_reset = TRUE; |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1914 return TRUE; |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1915 } else { |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1916 gtk_dialog_response(GTK_DIALOG(searchdlg_win), GTK_RESPONSE_ACCEPT); |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1917 return TRUE; |
b03055a1437a
make search and select dialog accept "fix" key press in input method context.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4080
diff
changeset
|
1918 } |
2313 | 1919 default: |
1920 return FALSE; | |
1921 } | |
1922 } |