Mercurial > audlegacy
annotate src/audacious/ui_main.c @ 4116:5853d43e539a
remember filter entry in jtf dialog is extremely useful when jtf deals with large playlist. now this feature is configurable.
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Tue, 25 Dec 2007 19:15:44 +0900 |
parents | e06261511a5d |
children | a5779105e6d2 |
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:
3108
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:
3108
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
2313 | 24 */ |
25 | |
26 #ifdef HAVE_CONFIG_H | |
27 # include "config.h" | |
28 #endif | |
29 | |
30 | |
31 #include <glib.h> | |
32 #include <glib/gi18n.h> | |
33 #include <glib/gprintf.h> | |
34 #include <gtk/gtk.h> | |
35 #include <gtk/gtkmessagedialog.h> | |
36 | |
37 /* GDK including */ | |
38 #include "platform/smartinclude.h" | |
39 | |
40 #include <math.h> | |
41 #include <stdlib.h> | |
42 #include <string.h> | |
43 | |
44 #include <sys/types.h> | |
45 | |
46 #if defined(USE_REGEX_ONIGURUMA) | |
47 #include <onigposix.h> | |
48 #elif defined(USE_REGEX_PCRE) | |
49 #include <pcreposix.h> | |
50 #else | |
51 #include <regex.h> | |
52 #endif | |
53 | |
54 #include "ui_main.h" | |
55 #include "icons-stock.h" | |
56 | |
57 #include "actions-mainwin.h" | |
58 | |
59 #include "main.h" | |
2717 | 60 #include "configdb.h" |
2313 | 61 #include "dnd.h" |
62 #include "dock.h" | |
63 #include "hints.h" | |
64 #include "input.h" | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
65 #include "playback.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
66 #include "playlist.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
67 #include "pluginenum.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
68 #include "ui_credits.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
69 #include "ui_equalizer.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
70 #include "ui_fileopener.h" |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
71 #include "ui_manager.h" |
2313 | 72 #include "ui_playlist.h" |
73 #include "ui_preferences.h" | |
74 #include "ui_skinselector.h" | |
2422 | 75 #include "ui_urlopener.h" |
2373
ad1d7687814c
[svn] made strings.h for existing strings.c, cleanups
mf0102
parents:
2354
diff
changeset
|
76 #include "strings.h" |
2313 | 77 #include "util.h" |
78 #include "visualization.h" | |
79 | |
3251 | 80 #include "skin.h" |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2485
diff
changeset
|
81 #include "ui_skinned_window.h" |
2842
c2622a939e9e
rename audacious_pbutton to ui_skinned_button
Tomasz Mon <desowin@gmail.com>
parents:
2840
diff
changeset
|
82 #include "ui_skinned_button.h" |
2911 | 83 #include "ui_skinned_textbox.h" |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
84 #include "ui_skinned_number.h" |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
85 #include "ui_skinned_horizontal_slider.h" |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
86 #include "ui_skinned_menurow.h" |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3070
diff
changeset
|
87 #include "ui_skinned_playstatus.h" |
3073
da99b90d63d3
replace MonoStereo with UiSkinnedMonoStereo
Tomasz Mon <desowin@gmail.com>
parents:
3072
diff
changeset
|
88 #include "ui_skinned_monostereo.h" |
3217 | 89 #include "ui_skinned_playlist.h" |
2500 | 90 #include "ui_jumptotrack.h" |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2485
diff
changeset
|
91 |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3157
diff
changeset
|
92 #include "ui_main_evlisteners.h" |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3157
diff
changeset
|
93 |
2313 | 94 static GTimeVal cb_time; /* click delay for tristate is defined by TRISTATE_THRESHOLD */ |
95 | |
96 #define ITEM_SEPARATOR {"/-", NULL, NULL, 0, "<Separator>"} | |
97 #define TRISTATE_THRESHOLD 200 | |
98 | |
99 #define VOLSET_DISP_TIMES 5 | |
100 | |
101 enum { | |
102 MAINWIN_SEEK_REV = -1, | |
103 MAINWIN_SEEK_NIL, | |
104 MAINWIN_SEEK_FWD | |
105 }; | |
106 | |
107 typedef struct _PlaybackInfo PlaybackInfo; | |
108 | |
109 struct _PlaybackInfo { | |
110 gchar *title; | |
111 gint bitrate; | |
112 gint frequency; | |
113 gint n_channels; | |
114 }; | |
115 | |
116 GtkWidget *mainwin = NULL; | |
117 GtkWidget *err = NULL; /* an error dialog for miscellaneous error messages */ | |
118 | |
119 static GdkBitmap *nullmask; | |
120 static gint balance; | |
121 | |
122 static GtkWidget *mainwin_jtt = NULL; | |
123 | |
124 gint seek_state = MAINWIN_SEEK_NIL; | |
125 gint seek_initial_pos = 0; | |
126 | |
2821 | 127 static GtkWidget *mainwin_menubtn; |
128 static GtkWidget *mainwin_minimize, *mainwin_shade, *mainwin_close; | |
129 | |
130 static GtkWidget *mainwin_rew, *mainwin_fwd; | |
131 static GtkWidget *mainwin_eject; | |
132 static GtkWidget *mainwin_play, *mainwin_pause, *mainwin_stop; | |
2313 | 133 |
2853
bec320cfcc12
use UiSkinnedButton instead of PButton in equalizerwin
Tomasz Mon <desowin@gmail.com>
parents:
2844
diff
changeset
|
134 static GtkWidget *mainwin_shuffle, *mainwin_repeat; |
bec320cfcc12
use UiSkinnedButton instead of PButton in equalizerwin
Tomasz Mon <desowin@gmail.com>
parents:
2844
diff
changeset
|
135 GtkWidget *mainwin_eq, *mainwin_pl; |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
136 |
3664
9e4edc01a0e3
I don't quite have idea how to make everyone happy with this - reverting 23824a113182 as for now
Tomasz Mon <desowin@gmail.com>
parents:
3600
diff
changeset
|
137 GtkWidget *mainwin_info; |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
138 GtkWidget *mainwin_stime_min, *mainwin_stime_sec; |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
139 |
3664
9e4edc01a0e3
I don't quite have idea how to make everyone happy with this - reverting 23824a113182 as for now
Tomasz Mon <desowin@gmail.com>
parents:
3600
diff
changeset
|
140 static GtkWidget *mainwin_rate_text, *mainwin_freq_text, |
9e4edc01a0e3
I don't quite have idea how to make everyone happy with this - reverting 23824a113182 as for now
Tomasz Mon <desowin@gmail.com>
parents:
3600
diff
changeset
|
141 *mainwin_othertext; |
2313 | 142 |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3070
diff
changeset
|
143 GtkWidget *mainwin_playstatus; |
2313 | 144 |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
145 GtkWidget *mainwin_minus_num, *mainwin_10min_num, *mainwin_min_num; |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
146 GtkWidget *mainwin_10sec_num, *mainwin_sec_num; |
2313 | 147 |
148 static gboolean setting_volume = FALSE; | |
149 | |
3020 | 150 GtkWidget *mainwin_vis; |
3054 | 151 GtkWidget *mainwin_svis; |
2313 | 152 |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
153 GtkWidget *mainwin_sposition = NULL; |
2313 | 154 |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
155 static GtkWidget *mainwin_menurow; |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
156 static GtkWidget *mainwin_volume, *mainwin_balance; |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
157 GtkWidget *mainwin_position; |
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
158 |
3073
da99b90d63d3
replace MonoStereo with UiSkinnedMonoStereo
Tomasz Mon <desowin@gmail.com>
parents:
3072
diff
changeset
|
159 static GtkWidget *mainwin_monostereo; |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
160 static GtkWidget *mainwin_srew, *mainwin_splay, *mainwin_spause; |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
161 static GtkWidget *mainwin_sstop, *mainwin_sfwd, *mainwin_seject, *mainwin_about; |
2313 | 162 |
163 static gint mainwin_timeout_id; | |
164 | |
165 static gboolean mainwin_info_text_locked = FALSE; | |
3724
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
166 static guint mainwin_volume_release_timeout = 0; |
2313 | 167 |
168 static int ab_position_a = -1; | |
169 static int ab_position_b = -1; | |
170 | |
171 static PlaybackInfo playback_info = { NULL, 0, 0, 0 }; | |
172 | |
3241 | 173 static void mainwin_refresh_visible(void); |
2313 | 174 static gint mainwin_idle_func(gpointer data); |
175 | |
176 static void set_timer_mode_menu_cb(TimerMode mode); | |
177 static void set_timer_mode(TimerMode mode); | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
178 static void change_timer_mode(void); |
2313 | 179 |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
180 void mainwin_position_motion_cb(GtkWidget *widget, gint pos); |
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
181 void mainwin_position_release_cb(GtkWidget *widget, gint pos); |
2313 | 182 |
183 void set_doublesize(gboolean doublesize); | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
184 void mainwin_eq_pushed(gboolean toggled); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
185 void mainwin_pl_pushed(gboolean toggled); |
2313 | 186 |
187 | |
188 /* FIXME: placed here for now */ | |
189 void | |
190 playback_get_sample_params(gint * bitrate, | |
191 gint * frequency, | |
192 gint * n_channels) | |
193 { | |
194 if (bitrate) | |
195 *bitrate = playback_info.bitrate; | |
196 | |
197 if (frequency) | |
198 *frequency = playback_info.frequency; | |
199 | |
200 if (n_channels) | |
201 *n_channels = playback_info.n_channels; | |
202 } | |
203 | |
204 static void | |
205 playback_set_sample_params(gint bitrate, | |
206 gint frequency, | |
207 gint n_channels) | |
208 { | |
209 if (bitrate >= 0) | |
210 playback_info.bitrate = bitrate; | |
211 | |
212 if (frequency >= 0) | |
213 playback_info.frequency = frequency; | |
214 | |
215 if (n_channels >= 0) | |
216 playback_info.n_channels = n_channels; | |
217 } | |
218 | |
219 static void | |
220 mainwin_set_title_scroll(gboolean scroll) | |
221 { | |
222 cfg.autoscroll = scroll; | |
2911 | 223 ui_skinned_textbox_set_scroll(mainwin_info, cfg.autoscroll); |
2313 | 224 } |
225 | |
226 | |
227 void | |
228 mainwin_set_always_on_top(gboolean always) | |
229 { | |
230 GtkAction *action = gtk_action_group_get_action( | |
231 toggleaction_group_others , "view always on top" ); | |
232 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , always ); | |
233 } | |
234 | |
235 static void | |
236 mainwin_set_shape_mask(void) | |
237 { | |
238 if (!cfg.player_visible) | |
239 return; | |
240 | |
241 if (cfg.doublesize == FALSE) | |
242 gtk_widget_shape_combine_mask(mainwin, | |
243 skin_get_mask(bmp_active_skin, | |
244 SKIN_MASK_MAIN), 0, 0); | |
245 else | |
246 gtk_widget_shape_combine_mask(mainwin, NULL, 0, 0); | |
247 } | |
248 | |
249 static void | |
250 mainwin_set_shade(gboolean shaded) | |
251 { | |
252 GtkAction *action = gtk_action_group_get_action( | |
253 toggleaction_group_others , "roll up player" ); | |
254 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , shaded ); | |
255 } | |
256 | |
257 static void | |
258 mainwin_set_shade_menu_cb(gboolean shaded) | |
259 { | |
260 cfg.player_shaded = shaded; | |
261 | |
262 mainwin_set_shape_mask(); | |
263 if (shaded) { | |
264 dock_shade(dock_window_list, GTK_WINDOW(mainwin), | |
265 MAINWIN_SHADED_HEIGHT * (cfg.doublesize + 1)); | |
3241 | 266 } else { |
267 gint height = !bmp_active_skin->properties.mainwin_height ? MAINWIN_HEIGHT : | |
268 bmp_active_skin->properties.mainwin_height; | |
2313 | 269 |
270 dock_shade(dock_window_list, GTK_WINDOW(mainwin), height * (cfg.doublesize + 1)); | |
271 } | |
272 | |
3241 | 273 mainwin_refresh_visible(); |
3006
3c4ed53a685f
use ui_skinned_set_push_button_data instead accessing values directly
Tomasz Mon <desowin@gmail.com>
parents:
3005
diff
changeset
|
274 ui_skinned_set_push_button_data(mainwin_shade, 0, cfg.player_shaded ? 27 : 18, 9, cfg.player_shaded ? 27 : 18); |
2313 | 275 } |
276 | |
277 static void | |
278 mainwin_vis_set_refresh(RefreshRate rate) | |
279 { | |
280 cfg.vis_refresh = rate; | |
281 } | |
282 | |
283 static void | |
284 mainwin_vis_set_afalloff(FalloffSpeed speed) | |
285 { | |
286 cfg.analyzer_falloff = speed; | |
287 } | |
288 | |
289 static void | |
290 mainwin_vis_set_pfalloff(FalloffSpeed speed) | |
291 { | |
292 cfg.peaks_falloff = speed; | |
293 } | |
294 | |
295 static void | |
296 mainwin_vis_set_analyzer_mode(AnalyzerMode mode) | |
297 { | |
298 cfg.analyzer_mode = mode; | |
299 } | |
300 | |
301 static void | |
302 mainwin_vis_set_analyzer_type(AnalyzerType mode) | |
303 { | |
304 cfg.analyzer_type = mode; | |
305 } | |
306 | |
307 void | |
308 mainwin_vis_set_type(VisType mode) | |
309 { | |
310 GtkAction *action; | |
311 | |
312 switch ( mode ) | |
313 { | |
314 case VIS_ANALYZER: | |
315 action = gtk_action_group_get_action( | |
316 radioaction_group_vismode , "vismode analyzer" ); | |
317 break; | |
318 case VIS_SCOPE: | |
319 action = gtk_action_group_get_action( | |
320 radioaction_group_vismode , "vismode scope" ); | |
321 break; | |
322 case VIS_VOICEPRINT: | |
323 action = gtk_action_group_get_action( | |
324 radioaction_group_vismode , "vismode voiceprint" ); | |
325 break; | |
326 case VIS_OFF: | |
327 default: | |
328 action = gtk_action_group_get_action( | |
329 radioaction_group_vismode , "vismode off" ); | |
330 break; | |
331 } | |
332 | |
333 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , TRUE ); | |
334 } | |
335 | |
336 static void | |
337 mainwin_vis_set_type_menu_cb(VisType mode) | |
338 { | |
339 cfg.vis_type = mode; | |
340 | |
341 if (mode == VIS_OFF) { | |
3054 | 342 if (cfg.player_shaded) { |
343 ui_svis_set_visible(mainwin_svis, FALSE); | |
344 ui_vis_set_visible(mainwin_vis, TRUE); | |
345 } else { | |
346 ui_svis_set_visible(mainwin_svis, TRUE); | |
3020 | 347 ui_vis_set_visible(mainwin_vis, FALSE); |
348 } | |
2313 | 349 } |
350 if (mode == VIS_ANALYZER || mode == VIS_SCOPE || mode == VIS_VOICEPRINT) { | |
3054 | 351 if (cfg.player_shaded) { |
352 ui_svis_clear_data(mainwin_svis); | |
353 ui_svis_set_visible(mainwin_svis, TRUE); | |
354 ui_vis_clear_data(mainwin_vis); | |
355 ui_vis_set_visible(mainwin_vis, FALSE); | |
356 } else { | |
357 ui_svis_clear_data(mainwin_svis); | |
358 ui_svis_set_visible(mainwin_svis, FALSE); | |
359 ui_vis_clear_data(mainwin_vis); | |
360 ui_vis_set_visible(mainwin_vis, TRUE); | |
361 } | |
2313 | 362 } |
363 } | |
364 | |
365 static void | |
366 mainwin_menubtn_cb(void) | |
367 { | |
368 gint x, y; | |
369 gtk_window_get_position(GTK_WINDOW(mainwin), &x, &y); | |
370 ui_manager_popup_menu_show(GTK_MENU(mainwin_general_menu), | |
371 x + 6 * (1 + cfg.doublesize), | |
372 y + MAINWIN_SHADED_HEIGHT * (1 + cfg.doublesize), | |
373 1, GDK_CURRENT_TIME); | |
374 } | |
375 | |
376 void | |
377 mainwin_minimize_cb(void) | |
378 { | |
379 if (!mainwin) | |
380 return; | |
381 | |
382 gtk_window_iconify(GTK_WINDOW(mainwin)); | |
383 } | |
384 | |
385 static void | |
386 mainwin_shade_toggle(void) | |
387 { | |
388 mainwin_set_shade(!cfg.player_shaded); | |
389 } | |
390 | |
391 void | |
392 mainwin_quit_cb(void) | |
393 { | |
394 GList *playlists = NULL, *playlists_top = NULL; | |
395 | |
3460
0fcff78c0c2c
Make the shutdown procedure more sane and improve playlist clearing
Matti Hamalainen <ccr@tnsp.org>
parents:
3406
diff
changeset
|
396 playlist_stop_get_info_thread(); |
0fcff78c0c2c
Make the shutdown procedure more sane and improve playlist clearing
Matti Hamalainen <ccr@tnsp.org>
parents:
3406
diff
changeset
|
397 |
2313 | 398 gtk_widget_hide(equalizerwin); |
399 gtk_widget_hide(playlistwin); | |
400 gtk_widget_hide(mainwin); | |
401 | |
3702
1c1d3d84f313
get rid of mainwin_timeout_id only if mainwin_timeout_id is non-zero
William Pitcock <nenolod@atheme.org>
parents:
3679
diff
changeset
|
402 if (mainwin_timeout_id) |
1c1d3d84f313
get rid of mainwin_timeout_id only if mainwin_timeout_id is non-zero
William Pitcock <nenolod@atheme.org>
parents:
3679
diff
changeset
|
403 g_source_remove(mainwin_timeout_id); |
2313 | 404 |
405 bmp_config_save(); | |
406 gtk_accel_map_save(bmp_paths[BMP_PATH_ACCEL_FILE]); | |
407 | |
408 plugin_system_cleanup(); | |
409 | |
410 | |
411 /* free and clear each playlist */ | |
412 playlists = playlist_get_playlists(); | |
413 playlists_top = playlists; | |
414 while ( playlists != NULL ) | |
415 { | |
416 playlist_clear((Playlist*)playlists->data); | |
417 playlist_free((Playlist*)playlists->data); | |
418 playlists = g_list_next(playlists); | |
419 } | |
420 g_list_free( playlists_top ); | |
421 | |
422 gtk_main_quit(); | |
423 | |
424 exit(EXIT_SUCCESS); | |
425 } | |
426 | |
3024
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
427 gboolean |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
428 mainwin_vis_cb(GtkWidget *widget, GdkEventButton *event) |
3020 | 429 { |
3024
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
430 if (event->button == 1) { |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
431 cfg.vis_type++; |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
432 |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
433 if (cfg.vis_type > VIS_OFF) |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
434 cfg.vis_type = VIS_ANALYZER; |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
435 |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
436 mainwin_vis_set_type(cfg.vis_type); |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
437 } else if (event->button == 3) { |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
438 gint x, y; |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
439 gdk_window_get_pointer(NULL, &x, &y, NULL); |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
440 ui_manager_popup_menu_show(GTK_MENU(mainwin_visualization_menu), |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
441 x, y, 3, event->time); |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
442 } |
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
443 return TRUE; |
3020 | 444 } |
445 | |
2313 | 446 static void |
447 mainwin_destroy(GtkWidget * widget, gpointer data) | |
448 { | |
449 mainwin_quit_cb(); | |
450 } | |
451 | |
452 static gchar *mainwin_tb_old_text = NULL; | |
453 | |
454 void | |
455 mainwin_lock_info_text(const gchar * text) | |
456 { | |
457 if (mainwin_info_text_locked != TRUE) | |
458 mainwin_tb_old_text = g_strdup(bmp_active_skin->properties.mainwin_othertext_is_status ? | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
459 UI_SKINNED_TEXTBOX(mainwin_othertext)->text : UI_SKINNED_TEXTBOX(mainwin_info)->text); |
2313 | 460 |
461 mainwin_info_text_locked = TRUE; | |
2911 | 462 if (bmp_active_skin->properties.mainwin_othertext_is_status) |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
463 ui_skinned_textbox_set_text(mainwin_othertext, text); |
2911 | 464 else |
465 ui_skinned_textbox_set_text(mainwin_info, text); | |
2313 | 466 } |
467 | |
468 void | |
469 mainwin_release_info_text(void) | |
470 { | |
471 mainwin_info_text_locked = FALSE; | |
472 | |
473 if (mainwin_tb_old_text != NULL) | |
474 { | |
2911 | 475 if (bmp_active_skin->properties.mainwin_othertext_is_status) |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
476 ui_skinned_textbox_set_text(mainwin_othertext, mainwin_tb_old_text); |
2911 | 477 else |
478 ui_skinned_textbox_set_text(mainwin_info, mainwin_tb_old_text); | |
2313 | 479 g_free(mainwin_tb_old_text); |
480 mainwin_tb_old_text = NULL; | |
481 } | |
482 } | |
483 | |
484 | |
485 static gchar * | |
486 make_mainwin_title(const gchar * title) | |
487 { | |
488 if (title) | |
489 return g_strdup_printf(_("%s - Audacious"), title); | |
490 else | |
491 return g_strdup(_("Audacious")); | |
492 } | |
493 | |
494 void | |
495 mainwin_set_song_title(const gchar * title) | |
496 { | |
3191
c44eb2f310f0
revive dsd's titlebar patch (r3083) due to it works fine with message passing UI update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3190
diff
changeset
|
497 gchar *mainwin_title_text = make_mainwin_title(title); |
c44eb2f310f0
revive dsd's titlebar patch (r3083) due to it works fine with message passing UI update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3190
diff
changeset
|
498 gtk_window_set_title(GTK_WINDOW(mainwin), mainwin_title_text); |
4096
e06261511a5d
Fix memory leaks when generating UI strings in ui_main.c (Bugzilla #18)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4081
diff
changeset
|
499 g_free(mainwin_title_text); |
2313 | 500 } |
501 | |
3241 | 502 static void |
503 mainwin_refresh_visible(void) | |
504 { | |
3277
949480cc9d98
don't do gtk_widget_show_all(mainwin) when player is not visible
Tomasz Mon <desowin@gmail.com>
parents:
3251
diff
changeset
|
505 if (!bmp_active_skin || !cfg.player_visible) |
3241 | 506 return; |
507 | |
508 gtk_widget_show_all(mainwin); | |
509 | |
510 if (!bmp_active_skin->properties.mainwin_text_visible) | |
511 gtk_widget_hide(mainwin_info); | |
512 | |
513 if (!bmp_active_skin->properties.mainwin_vis_visible) | |
514 gtk_widget_hide(mainwin_vis); | |
515 | |
516 if (!bmp_active_skin->properties.mainwin_menurow_visible) | |
517 gtk_widget_hide(mainwin_menurow); | |
518 | |
519 if (bmp_active_skin->properties.mainwin_othertext) { | |
520 gtk_widget_hide(mainwin_rate_text); | |
521 gtk_widget_hide(mainwin_freq_text); | |
522 gtk_widget_hide(mainwin_monostereo); | |
523 | |
524 if (!bmp_active_skin->properties.mainwin_othertext_visible) | |
525 gtk_widget_hide(mainwin_othertext); | |
526 } else { | |
527 gtk_widget_hide(mainwin_othertext); | |
528 } | |
529 | |
530 if (!bmp_active_skin->properties.mainwin_vis_visible) | |
531 gtk_widget_hide(mainwin_vis); | |
532 | |
533 if (!playback_get_playing()) { | |
534 gtk_widget_hide(mainwin_minus_num); | |
535 gtk_widget_hide(mainwin_10min_num); | |
536 gtk_widget_hide(mainwin_min_num); | |
537 gtk_widget_hide(mainwin_10sec_num); | |
538 gtk_widget_hide(mainwin_sec_num); | |
539 | |
540 gtk_widget_hide(mainwin_stime_min); | |
541 gtk_widget_hide(mainwin_stime_sec); | |
542 | |
543 gtk_widget_hide(mainwin_position); | |
544 gtk_widget_hide(mainwin_sposition); | |
545 } | |
546 | |
547 if (cfg.player_shaded) { | |
548 ui_svis_clear_data(mainwin_svis); | |
549 if (cfg.vis_type != VIS_OFF) | |
550 ui_svis_set_visible(mainwin_svis, TRUE); | |
551 else | |
552 ui_svis_set_visible(mainwin_svis, FALSE); | |
553 | |
554 ui_skinned_textbox_set_scroll(mainwin_info, FALSE); | |
555 if (!playback_get_playing()) { | |
556 gtk_widget_hide(mainwin_sposition); | |
557 gtk_widget_hide(mainwin_stime_min); | |
558 gtk_widget_hide(mainwin_stime_sec); | |
559 } | |
560 } else { | |
561 gtk_widget_hide(mainwin_srew); | |
562 gtk_widget_hide(mainwin_splay); | |
563 gtk_widget_hide(mainwin_spause); | |
564 gtk_widget_hide(mainwin_sstop); | |
565 gtk_widget_hide(mainwin_sfwd); | |
566 gtk_widget_hide(mainwin_seject); | |
567 gtk_widget_hide(mainwin_stime_min); | |
568 gtk_widget_hide(mainwin_stime_sec); | |
569 gtk_widget_hide(mainwin_svis); | |
570 gtk_widget_hide(mainwin_sposition); | |
571 ui_vis_clear_data(mainwin_vis); | |
572 if (cfg.vis_type != VIS_OFF) | |
573 ui_vis_set_visible(mainwin_vis, TRUE); | |
574 else | |
575 ui_vis_set_visible(mainwin_vis, FALSE); | |
576 | |
577 ui_skinned_textbox_set_scroll(mainwin_info, cfg.autoscroll); | |
578 } | |
579 } | |
580 | |
3221
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3218
diff
changeset
|
581 void |
2313 | 582 mainwin_refresh_hints(void) |
583 { | |
584 /* positioning and size attributes */ | |
585 if (bmp_active_skin->properties.mainwin_vis_x && bmp_active_skin->properties.mainwin_vis_y) | |
3020 | 586 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_vis), bmp_active_skin->properties.mainwin_vis_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
587 bmp_active_skin->properties.mainwin_vis_y); |
2313 | 588 |
589 if (bmp_active_skin->properties.mainwin_vis_width) | |
3020 | 590 gtk_widget_set_size_request(mainwin_vis, bmp_active_skin->properties.mainwin_vis_width*(1+cfg.doublesize), |
591 UI_VIS(mainwin_vis)->height*(1+cfg.doublesize)); | |
2313 | 592 |
593 if (bmp_active_skin->properties.mainwin_text_x && bmp_active_skin->properties.mainwin_text_y) | |
2911 | 594 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_info), bmp_active_skin->properties.mainwin_text_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
595 bmp_active_skin->properties.mainwin_text_y); |
2313 | 596 |
3958
ad14a25a31fa
fix douebliesize for mainwin_info on startup; Closes Gentoo #199071
Tomasz Mon <desowin@gmail.com>
parents:
3908
diff
changeset
|
597 if (bmp_active_skin->properties.mainwin_text_width) { |
ad14a25a31fa
fix douebliesize for mainwin_info on startup; Closes Gentoo #199071
Tomasz Mon <desowin@gmail.com>
parents:
3908
diff
changeset
|
598 UI_SKINNED_TEXTBOX(mainwin_info)->width = bmp_active_skin->properties.mainwin_text_width; |
ad14a25a31fa
fix douebliesize for mainwin_info on startup; Closes Gentoo #199071
Tomasz Mon <desowin@gmail.com>
parents:
3908
diff
changeset
|
599 gtk_widget_set_size_request(mainwin_info, bmp_active_skin->properties.mainwin_text_width*(1+cfg.doublesize), |
ad14a25a31fa
fix douebliesize for mainwin_info on startup; Closes Gentoo #199071
Tomasz Mon <desowin@gmail.com>
parents:
3908
diff
changeset
|
600 UI_SKINNED_TEXTBOX(mainwin_info)->height*(1+cfg.doublesize)); |
ad14a25a31fa
fix douebliesize for mainwin_info on startup; Closes Gentoo #199071
Tomasz Mon <desowin@gmail.com>
parents:
3908
diff
changeset
|
601 } |
2313 | 602 |
603 if (bmp_active_skin->properties.mainwin_infobar_x && bmp_active_skin->properties.mainwin_infobar_y) | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
604 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_othertext), bmp_active_skin->properties.mainwin_infobar_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
605 bmp_active_skin->properties.mainwin_infobar_y); |
2313 | 606 |
607 if (bmp_active_skin->properties.mainwin_number_0_x && bmp_active_skin->properties.mainwin_number_0_y) | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
608 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_minus_num), bmp_active_skin->properties.mainwin_number_0_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
609 bmp_active_skin->properties.mainwin_number_0_y); |
2313 | 610 |
611 if (bmp_active_skin->properties.mainwin_number_1_x && bmp_active_skin->properties.mainwin_number_1_y) | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
612 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_10min_num), bmp_active_skin->properties.mainwin_number_1_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
613 bmp_active_skin->properties.mainwin_number_1_y); |
2313 | 614 |
615 if (bmp_active_skin->properties.mainwin_number_2_x && bmp_active_skin->properties.mainwin_number_2_y) | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
616 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_min_num), bmp_active_skin->properties.mainwin_number_2_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
617 bmp_active_skin->properties.mainwin_number_2_y); |
2313 | 618 |
619 if (bmp_active_skin->properties.mainwin_number_3_x && bmp_active_skin->properties.mainwin_number_3_y) | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
620 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_10sec_num), bmp_active_skin->properties.mainwin_number_3_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
621 bmp_active_skin->properties.mainwin_number_3_y); |
2313 | 622 |
623 if (bmp_active_skin->properties.mainwin_number_4_x && bmp_active_skin->properties.mainwin_number_4_y) | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
624 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_sec_num), bmp_active_skin->properties.mainwin_number_4_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
625 bmp_active_skin->properties.mainwin_number_4_y); |
2313 | 626 |
627 if (bmp_active_skin->properties.mainwin_playstatus_x && bmp_active_skin->properties.mainwin_playstatus_y) | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3070
diff
changeset
|
628 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), mainwin_playstatus, bmp_active_skin->properties.mainwin_playstatus_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
629 bmp_active_skin->properties.mainwin_playstatus_y); |
2313 | 630 |
631 if (bmp_active_skin->properties.mainwin_volume_x && bmp_active_skin->properties.mainwin_volume_y) | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
632 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_volume), bmp_active_skin->properties.mainwin_volume_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
633 bmp_active_skin->properties.mainwin_volume_y); |
2313 | 634 |
635 if (bmp_active_skin->properties.mainwin_balance_x && bmp_active_skin->properties.mainwin_balance_y) | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
636 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_balance), bmp_active_skin->properties.mainwin_balance_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
637 bmp_active_skin->properties.mainwin_balance_y); |
2313 | 638 |
639 if (bmp_active_skin->properties.mainwin_position_x && bmp_active_skin->properties.mainwin_position_y) | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
640 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_position), bmp_active_skin->properties.mainwin_position_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
641 bmp_active_skin->properties.mainwin_position_y); |
2313 | 642 |
643 if (bmp_active_skin->properties.mainwin_previous_x && bmp_active_skin->properties.mainwin_previous_y) | |
2821 | 644 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), mainwin_rew, bmp_active_skin->properties.mainwin_previous_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
645 bmp_active_skin->properties.mainwin_previous_y); |
2313 | 646 |
647 if (bmp_active_skin->properties.mainwin_play_x && bmp_active_skin->properties.mainwin_play_y) | |
2821 | 648 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_play), bmp_active_skin->properties.mainwin_play_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
649 bmp_active_skin->properties.mainwin_play_y); |
2313 | 650 |
651 if (bmp_active_skin->properties.mainwin_pause_x && bmp_active_skin->properties.mainwin_pause_y) | |
2821 | 652 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_pause), bmp_active_skin->properties.mainwin_pause_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
653 bmp_active_skin->properties.mainwin_pause_y); |
2313 | 654 |
655 if (bmp_active_skin->properties.mainwin_stop_x && bmp_active_skin->properties.mainwin_stop_y) | |
2821 | 656 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_stop), bmp_active_skin->properties.mainwin_stop_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
657 bmp_active_skin->properties.mainwin_stop_y); |
2313 | 658 |
659 if (bmp_active_skin->properties.mainwin_next_x && bmp_active_skin->properties.mainwin_next_y) | |
2821 | 660 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_fwd), bmp_active_skin->properties.mainwin_next_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
661 bmp_active_skin->properties.mainwin_next_y); |
2313 | 662 |
663 if (bmp_active_skin->properties.mainwin_eject_x && bmp_active_skin->properties.mainwin_eject_y) | |
2821 | 664 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_eject), bmp_active_skin->properties.mainwin_eject_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
665 bmp_active_skin->properties.mainwin_eject_y); |
2313 | 666 |
667 if (bmp_active_skin->properties.mainwin_eqbutton_x && bmp_active_skin->properties.mainwin_eqbutton_y) | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
668 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_eq), bmp_active_skin->properties.mainwin_eqbutton_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
669 bmp_active_skin->properties.mainwin_eqbutton_y); |
2313 | 670 |
671 if (bmp_active_skin->properties.mainwin_plbutton_x && bmp_active_skin->properties.mainwin_plbutton_y) | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
672 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_pl), bmp_active_skin->properties.mainwin_plbutton_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
673 bmp_active_skin->properties.mainwin_plbutton_y); |
2313 | 674 |
675 if (bmp_active_skin->properties.mainwin_shuffle_x && bmp_active_skin->properties.mainwin_shuffle_y) | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
676 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_shuffle), bmp_active_skin->properties.mainwin_shuffle_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
677 bmp_active_skin->properties.mainwin_shuffle_y); |
2313 | 678 |
679 if (bmp_active_skin->properties.mainwin_repeat_x && bmp_active_skin->properties.mainwin_repeat_y) | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
680 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_repeat), bmp_active_skin->properties.mainwin_repeat_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
681 bmp_active_skin->properties.mainwin_repeat_y); |
2313 | 682 |
683 if (bmp_active_skin->properties.mainwin_about_x && bmp_active_skin->properties.mainwin_about_y) | |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
684 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_about), bmp_active_skin->properties.mainwin_about_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
685 bmp_active_skin->properties.mainwin_about_y); |
2313 | 686 |
687 if (bmp_active_skin->properties.mainwin_minimize_x && bmp_active_skin->properties.mainwin_minimize_y) | |
2821 | 688 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_minimize), cfg.player_shaded ? 244 : bmp_active_skin->properties.mainwin_minimize_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
689 cfg.player_shaded ? 3 : bmp_active_skin->properties.mainwin_minimize_y); |
2313 | 690 |
691 if (bmp_active_skin->properties.mainwin_shade_x && bmp_active_skin->properties.mainwin_shade_y) | |
2821 | 692 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_shade), cfg.player_shaded ? 254 : bmp_active_skin->properties.mainwin_shade_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
693 cfg.player_shaded ? 3 : bmp_active_skin->properties.mainwin_shade_y); |
2313 | 694 |
695 if (bmp_active_skin->properties.mainwin_close_x && bmp_active_skin->properties.mainwin_close_y) | |
2821 | 696 gtk_fixed_move(GTK_FIXED(SKINNED_WINDOW(mainwin)->fixed), GTK_WIDGET(mainwin_close), cfg.player_shaded ? 264 : bmp_active_skin->properties.mainwin_close_x, |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
697 cfg.player_shaded ? 3 : bmp_active_skin->properties.mainwin_close_y); |
2313 | 698 |
3241 | 699 mainwin_refresh_visible(); |
3898
7f5a2fd9dcc0
Fix a skin size boundary issue.
William Pitcock <nenolod@atheme.org>
parents:
3765
diff
changeset
|
700 |
2313 | 701 /* window size, mainwinWidth && mainwinHeight properties */ |
702 if (bmp_active_skin->properties.mainwin_height && bmp_active_skin->properties.mainwin_width) | |
703 { | |
704 dock_window_resize(GTK_WINDOW(mainwin), cfg.player_shaded ? MAINWIN_SHADED_WIDTH * (cfg.doublesize + 1) : bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), | |
3905
c79bf496191f
call to gdk_window_get_size() is also unneeded here; remove.
William Pitcock <nenolod@atheme.org>
parents:
3898
diff
changeset
|
705 cfg.player_shaded ? MAINWIN_SHADED_HEIGHT * (cfg.doublesize + 1) : bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1), |
c79bf496191f
call to gdk_window_get_size() is also unneeded here; remove.
William Pitcock <nenolod@atheme.org>
parents:
3898
diff
changeset
|
706 bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), |
c79bf496191f
call to gdk_window_get_size() is also unneeded here; remove.
William Pitcock <nenolod@atheme.org>
parents:
3898
diff
changeset
|
707 bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1)); |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
708 |
3898
7f5a2fd9dcc0
Fix a skin size boundary issue.
William Pitcock <nenolod@atheme.org>
parents:
3765
diff
changeset
|
709 gdk_flush(); |
2313 | 710 } |
711 } | |
712 | |
713 void | |
714 mainwin_set_song_info(gint bitrate, | |
715 gint frequency, | |
716 gint n_channels) | |
717 { | |
2949
7a88f6d9cd92
use g_strdup_printf instead of fixed-size gchar*
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
718 gchar *text; |
2313 | 719 gchar *title; |
720 Playlist *playlist = playlist_get_active(); | |
721 | |
722 playback_set_sample_params(bitrate, frequency, n_channels); | |
723 | |
3221
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3218
diff
changeset
|
724 GDK_THREADS_ENTER(); |
2313 | 725 if (bitrate != -1) { |
726 bitrate /= 1000; | |
727 | |
728 if (bitrate < 1000) { | |
729 /* Show bitrate in 1000s */ | |
2949
7a88f6d9cd92
use g_strdup_printf instead of fixed-size gchar*
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
730 text = g_strdup_printf("%3d", bitrate); |
2313 | 731 } |
732 else { | |
733 /* Show bitrate in 100,000s */ | |
2949
7a88f6d9cd92
use g_strdup_printf instead of fixed-size gchar*
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
734 text = g_strdup_printf("%2dH", bitrate / 100); |
2313 | 735 } |
4096
e06261511a5d
Fix memory leaks when generating UI strings in ui_main.c (Bugzilla #18)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4081
diff
changeset
|
736 ui_skinned_textbox_set_text(mainwin_rate_text, text); |
e06261511a5d
Fix memory leaks when generating UI strings in ui_main.c (Bugzilla #18)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4081
diff
changeset
|
737 g_free(text); |
2313 | 738 } |
739 else | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
740 ui_skinned_textbox_set_text(mainwin_rate_text, _("VBR")); |
2313 | 741 |
742 /* Show sampling frequency in kHz */ | |
2949
7a88f6d9cd92
use g_strdup_printf instead of fixed-size gchar*
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
743 text = g_strdup_printf("%2d", frequency / 1000); |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
744 ui_skinned_textbox_set_text(mainwin_freq_text, text); |
4096
e06261511a5d
Fix memory leaks when generating UI strings in ui_main.c (Bugzilla #18)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4081
diff
changeset
|
745 g_free(text); |
2313 | 746 |
3073
da99b90d63d3
replace MonoStereo with UiSkinnedMonoStereo
Tomasz Mon <desowin@gmail.com>
parents:
3072
diff
changeset
|
747 ui_skinned_monostereo_set_num_channels(mainwin_monostereo, n_channels); |
2313 | 748 |
749 if (!playback_get_paused() && mainwin_playstatus != NULL) | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3070
diff
changeset
|
750 ui_skinned_playstatus_set_status(mainwin_playstatus, STATUS_PLAY); |
2313 | 751 |
3241 | 752 if (bmp_active_skin && bmp_active_skin->properties.mainwin_othertext) |
2313 | 753 { |
754 if (bitrate != -1) | |
2949
7a88f6d9cd92
use g_strdup_printf instead of fixed-size gchar*
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
755 text = g_strdup_printf("%d kbps, %0.1f kHz, %s", |
2313 | 756 bitrate, |
757 (gfloat) frequency / 1000, | |
758 (n_channels > 1) ? _("stereo") : _("mono")); | |
759 else | |
2949
7a88f6d9cd92
use g_strdup_printf instead of fixed-size gchar*
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
760 text = g_strdup_printf("VBR, %0.1f kHz, %s", |
2313 | 761 (gfloat) frequency / 1000, |
762 (n_channels > 1) ? _("stereo") : _("mono")); | |
763 | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
764 ui_skinned_textbox_set_text(mainwin_othertext, text); |
4096
e06261511a5d
Fix memory leaks when generating UI strings in ui_main.c (Bugzilla #18)
Jussi Judin <jjudin+audacious@iki.fi>
parents:
4081
diff
changeset
|
765 g_free(text); |
2313 | 766 } |
767 | |
768 title = playlist_get_info_text(playlist); | |
769 mainwin_set_song_title(title); | |
770 g_free(title); | |
3221
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3218
diff
changeset
|
771 GDK_THREADS_LEAVE(); |
2313 | 772 } |
773 | |
774 void | |
775 mainwin_clear_song_info(void) | |
776 { | |
777 if (!mainwin) | |
778 return; | |
779 | |
780 /* clear title */ | |
3191
c44eb2f310f0
revive dsd's titlebar patch (r3083) due to it works fine with message passing UI update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3190
diff
changeset
|
781 mainwin_set_song_title(NULL); |
2313 | 782 |
783 /* clear sampling parameters */ | |
784 playback_set_sample_params(0, 0, 0); | |
785 | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
786 UI_SKINNED_HORIZONTAL_SLIDER(mainwin_position)->pressed = FALSE; |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
787 UI_SKINNED_HORIZONTAL_SLIDER(mainwin_sposition)->pressed = FALSE; |
2313 | 788 |
789 /* clear sampling parameter displays */ | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
790 ui_skinned_textbox_set_text(mainwin_rate_text, " "); |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
791 ui_skinned_textbox_set_text(mainwin_freq_text, " "); |
3073
da99b90d63d3
replace MonoStereo with UiSkinnedMonoStereo
Tomasz Mon <desowin@gmail.com>
parents:
3072
diff
changeset
|
792 ui_skinned_monostereo_set_num_channels(mainwin_monostereo, 0); |
2313 | 793 |
794 if (mainwin_playstatus != NULL) | |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3070
diff
changeset
|
795 ui_skinned_playstatus_set_status(mainwin_playstatus, STATUS_STOP); |
2313 | 796 |
3241 | 797 mainwin_refresh_visible(); |
2313 | 798 |
799 playlistwin_hide_timer(); | |
3026
e9e925c3adb5
we don't need ui_vis_clear, it only caused problem
Tomasz Mon <desowin@gmail.com>
parents:
3025
diff
changeset
|
800 ui_vis_clear_data(mainwin_vis); |
3054 | 801 ui_svis_clear_data(mainwin_svis); |
2313 | 802 } |
803 | |
804 void | |
805 mainwin_disable_seekbar(void) | |
806 { | |
807 if (!mainwin) | |
808 return; | |
809 | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
810 gtk_widget_hide(mainwin_position); |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
811 gtk_widget_hide(mainwin_sposition); |
2313 | 812 } |
813 | |
814 static gboolean | |
815 mainwin_mouse_button_release(GtkWidget * widget, | |
816 GdkEventButton * event, | |
817 gpointer callback_data) | |
818 { | |
819 if (dock_is_moving(GTK_WINDOW(mainwin))) { | |
820 dock_move_release(GTK_WINDOW(mainwin)); | |
821 } | |
822 | |
823 return FALSE; | |
824 } | |
825 | |
826 void | |
827 mainwin_scrolled(GtkWidget *widget, GdkEventScroll *event, | |
828 gpointer callback_data) | |
829 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
830 Playlist *playlist = playlist_get_active(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
831 |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
832 switch (event->direction) { |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
833 case GDK_SCROLL_UP: |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
834 mainwin_set_volume_diff(cfg.mouse_change); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
835 break; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
836 case GDK_SCROLL_DOWN: |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
837 mainwin_set_volume_diff(-cfg.mouse_change); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
838 break; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
839 case GDK_SCROLL_LEFT: |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
840 if (playlist_get_current_length(playlist) != -1) |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
841 playback_seek(CLAMP(playback_get_time() - 1000, |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
842 0, playlist_get_current_length(playlist)) / 1000); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
843 break; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
844 case GDK_SCROLL_RIGHT: |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
845 if (playlist_get_current_length(playlist) != -1) |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
846 playback_seek(CLAMP(playback_get_time() + 1000, |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
847 0, playlist_get_current_length(playlist)) / 1000); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
848 break; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
849 } |
2313 | 850 } |
851 | |
852 static gboolean | |
3600
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
853 mainwin_widget_contained(GdkEventButton *event, int x, int y, int w, int h) |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
854 { |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
855 if ((event->x > x && event->y > y) && |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
856 (event->x < x+w && event->y < y+h)) |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
857 return TRUE; |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
858 |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
859 return FALSE; |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
860 } |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
861 |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
862 static gboolean |
2313 | 863 mainwin_mouse_button_press(GtkWidget * widget, |
864 GdkEventButton * event, | |
865 gpointer callback_data) | |
866 { | |
867 if (cfg.doublesize) { | |
868 /* | |
869 * A hack to make doublesize transparent to callbacks. | |
870 * We should make a copy of this data instead of | |
871 * tampering with the data we get from gtk+ | |
872 */ | |
873 event->x /= 2; | |
874 event->y /= 2; | |
875 } | |
876 | |
877 if (event->button == 1 && event->type == GDK_BUTTON_PRESS && | |
878 (cfg.easy_move || event->y < 14)) { | |
2497
204d1bab71f9
[svn] - if (0 && hint_move_resize_available()) -- i'm not sure how this linked as we do not have a hint_move_resize_available().
nenolod
parents:
2496
diff
changeset
|
879 gtk_window_present(GTK_WINDOW(mainwin)); |
204d1bab71f9
[svn] - if (0 && hint_move_resize_available()) -- i'm not sure how this linked as we do not have a hint_move_resize_available().
nenolod
parents:
2496
diff
changeset
|
880 dock_move_press(dock_window_list, GTK_WINDOW(mainwin), event, |
204d1bab71f9
[svn] - if (0 && hint_move_resize_available()) -- i'm not sure how this linked as we do not have a hint_move_resize_available().
nenolod
parents:
2496
diff
changeset
|
881 TRUE); |
2313 | 882 } |
3218
018b37cf0730
hasta la vista old widgetcore
Tomasz Mon <desowin@gmail.com>
parents:
3217
diff
changeset
|
883 else if (event->button == 1 && event->type == GDK_2BUTTON_PRESS && event->y < 14) { |
2313 | 884 mainwin_set_shade(!cfg.player_shaded); |
885 if (dock_is_moving(GTK_WINDOW(mainwin))) | |
886 dock_move_release(GTK_WINDOW(mainwin)); | |
887 } | |
888 | |
889 if (event->button == 3) { | |
3600
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
890 /* Pop up playback menu if right clicked over playback-control widgets, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
891 * otherwise popup general menu |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
892 */ |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
893 if (mainwin_widget_contained(event, bmp_active_skin->properties.mainwin_position_x, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
894 bmp_active_skin->properties.mainwin_position_y, 248, 10) || |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
895 mainwin_widget_contained(event, bmp_active_skin->properties.mainwin_previous_x, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
896 bmp_active_skin->properties.mainwin_previous_y, 23, 18) || |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
897 mainwin_widget_contained(event, bmp_active_skin->properties.mainwin_play_x, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
898 bmp_active_skin->properties.mainwin_play_y, 23, 18) || |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
899 mainwin_widget_contained(event, bmp_active_skin->properties.mainwin_pause_x, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
900 bmp_active_skin->properties.mainwin_pause_y, 23, 18) || |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
901 mainwin_widget_contained(event, bmp_active_skin->properties.mainwin_stop_x, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
902 bmp_active_skin->properties.mainwin_stop_y, 23, 18) || |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
903 mainwin_widget_contained(event, bmp_active_skin->properties.mainwin_next_x, |
aba660a4a15d
Pop up playback menu if right clicked over playback-control widgets
Tomasz Mon <desowin@gmail.com>
parents:
3599
diff
changeset
|
904 bmp_active_skin->properties.mainwin_next_y, 23, 18)) |
2313 | 905 { |
906 | |
907 ui_manager_popup_menu_show(GTK_MENU(mainwin_playback_menu), | |
908 event->x_root, | |
909 event->y_root, 3, event->time); | |
910 } else { | |
911 /* | |
912 * Pop up the main menu a few pixels down. | |
913 * This will avoid that anything is selected | |
914 * if one right-clicks to focus the window | |
915 * without raising it. | |
916 * | |
917 ***MD I think the above is stupid, people don't expect this | |
918 * | |
919 */ | |
920 ui_manager_popup_menu_show(GTK_MENU(mainwin_general_menu), | |
921 event->x_root, | |
922 event->y_root, 3, event->time); | |
923 } | |
924 } | |
925 | |
926 return FALSE; | |
927 } | |
928 | |
929 static gboolean | |
930 mainwin_keypress(GtkWidget * grab_widget, | |
931 GdkEventKey * event, | |
932 gpointer data) | |
933 { | |
934 Playlist *playlist = playlist_get_active(); | |
935 | |
936 switch (event->keyval) { | |
937 | |
938 case GDK_Up: | |
939 case GDK_KP_Up: | |
940 case GDK_KP_8: | |
941 mainwin_set_volume_diff(2); | |
942 break; | |
943 case GDK_Down: | |
944 case GDK_KP_Down: | |
945 case GDK_KP_2: | |
946 mainwin_set_volume_diff(-2); | |
947 break; | |
948 case GDK_Left: | |
949 case GDK_KP_Left: | |
950 case GDK_KP_7: | |
951 if (playlist_get_current_length(playlist) != -1) | |
952 playback_seek(CLAMP | |
953 (playback_get_time() - 5000, 0, | |
954 playlist_get_current_length(playlist)) / 1000); | |
955 break; | |
956 case GDK_Right: | |
957 case GDK_KP_Right: | |
958 case GDK_KP_9: | |
959 if (playlist_get_current_length(playlist) != -1) | |
960 playback_seek(CLAMP | |
961 (playback_get_time() + 5000, 0, | |
962 playlist_get_current_length(playlist)) / 1000); | |
963 break; | |
964 case GDK_KP_4: | |
965 playlist_prev(playlist); | |
966 break; | |
967 case GDK_KP_6: | |
968 playlist_next(playlist); | |
969 break; | |
970 case GDK_KP_Insert: | |
2500 | 971 ui_jump_to_track(); |
2313 | 972 break; |
3184
564359ff9304
bound the Enter key to the play button
Cristi Magherusan <majeru@atheme-project.org>
parents:
3177
diff
changeset
|
973 case GDK_Return: |
564359ff9304
bound the Enter key to the play button
Cristi Magherusan <majeru@atheme-project.org>
parents:
3177
diff
changeset
|
974 case GDK_KP_Enter: |
2313 | 975 case GDK_KP_5: |
976 mainwin_play_pushed(); | |
977 break; | |
2693
b47f5577bea0
[svn] - Made the Space key pause/unpause playback (like e.g. mplayer)
mf0102
parents:
2651
diff
changeset
|
978 case GDK_space: |
b47f5577bea0
[svn] - Made the Space key pause/unpause playback (like e.g. mplayer)
mf0102
parents:
2651
diff
changeset
|
979 playback_pause(); |
b47f5577bea0
[svn] - Made the Space key pause/unpause playback (like e.g. mplayer)
mf0102
parents:
2651
diff
changeset
|
980 break; |
2313 | 981 case GDK_Escape: |
982 mainwin_minimize_cb(); | |
983 break; | |
3350
1292e4ca0f08
press ctrl+tab to switch between windows
Tomasz Mon <desowin@gmail.com>
parents:
3311
diff
changeset
|
984 case GDK_Tab: |
1292e4ca0f08
press ctrl+tab to switch between windows
Tomasz Mon <desowin@gmail.com>
parents:
3311
diff
changeset
|
985 if (event->state & GDK_CONTROL_MASK) |
3533
09e457d346f9
Fix Ctrl-Tab in main window.
Jonathan Schleifer <js@h3c.de>
parents:
3531
diff
changeset
|
986 equalizerwin_real_show(); |
3350
1292e4ca0f08
press ctrl+tab to switch between windows
Tomasz Mon <desowin@gmail.com>
parents:
3311
diff
changeset
|
987 break; |
3531
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
988 case GDK_c: |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
989 if (event->state & GDK_CONTROL_MASK) { |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
990 Playlist *playlist = playlist_get_active(); |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
991 gint pos = playlist_get_position(playlist); |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
992 gchar *title = playlist_get_songtitle(playlist, pos); |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
993 |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
994 if (title != NULL) { |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
995 GtkClipboard *clip = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
996 gtk_clipboard_set_text(clip, title, -1); |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
997 gtk_clipboard_store(clip); |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
998 } |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
999 |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
1000 return TRUE; |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
1001 } |
18391c12c18c
Ctrl-C copies current title to clipboard now.
Jonathan Schleifer <js@h3c.de>
parents:
3526
diff
changeset
|
1002 return FALSE; |
2313 | 1003 default: |
1004 return FALSE; | |
1005 } | |
1006 | |
1007 return TRUE; | |
1008 } | |
1009 | |
1010 static void | |
1011 mainwin_jump_to_time_cb(GtkWidget * widget, | |
1012 GtkWidget * entry) | |
1013 { | |
1014 guint min = 0, sec = 0, params; | |
1015 gint time; | |
1016 Playlist *playlist = playlist_get_active(); | |
1017 | |
1018 params = sscanf(gtk_entry_get_text(GTK_ENTRY(entry)), "%u:%u", | |
1019 &min, &sec); | |
1020 if (params == 2) | |
1021 time = (min * 60) + sec; | |
1022 else if (params == 1) | |
1023 time = min; | |
1024 else | |
1025 return; | |
1026 | |
1027 if (playlist_get_current_length(playlist) > -1 && | |
1028 time <= (playlist_get_current_length(playlist) / 1000)) | |
1029 { | |
1030 playback_seek(time); | |
1031 gtk_widget_destroy(mainwin_jtt); | |
1032 } | |
1033 } | |
1034 | |
1035 | |
1036 void | |
1037 mainwin_jump_to_time(void) | |
1038 { | |
1039 GtkWidget *vbox, *hbox_new, *hbox_total; | |
1040 GtkWidget *time_entry, *label, *bbox, *jump, *cancel; | |
1041 guint tindex; | |
1042 gchar time_str[10]; | |
1043 | |
1044 if (!playback_get_playing()) { | |
1045 report_error("JIT can't be launched when no track is being played.\n"); | |
1046 return; | |
1047 } | |
1048 | |
1049 if (mainwin_jtt) { | |
1050 gtk_window_present(GTK_WINDOW(mainwin_jtt)); | |
1051 return; | |
1052 } | |
1053 | |
1054 mainwin_jtt = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
1055 gtk_window_set_type_hint(GTK_WINDOW(mainwin_jtt), | |
1056 GDK_WINDOW_TYPE_HINT_DIALOG); | |
1057 | |
1058 gtk_window_set_title(GTK_WINDOW(mainwin_jtt), _("Jump to Time")); | |
1059 gtk_window_set_position(GTK_WINDOW(mainwin_jtt), GTK_WIN_POS_CENTER); | |
1060 gtk_window_set_transient_for(GTK_WINDOW(mainwin_jtt), | |
1061 GTK_WINDOW(mainwin)); | |
1062 | |
1063 g_signal_connect(mainwin_jtt, "destroy", | |
1064 G_CALLBACK(gtk_widget_destroyed), &mainwin_jtt); | |
1065 gtk_container_border_width(GTK_CONTAINER(mainwin_jtt), 10); | |
1066 | |
1067 vbox = gtk_vbox_new(FALSE, 5); | |
1068 gtk_container_add(GTK_CONTAINER(mainwin_jtt), vbox); | |
1069 | |
1070 hbox_new = gtk_hbox_new(FALSE, 0); | |
1071 gtk_box_pack_start(GTK_BOX(vbox), hbox_new, TRUE, TRUE, 5); | |
1072 | |
1073 time_entry = gtk_entry_new(); | |
1074 gtk_box_pack_start(GTK_BOX(hbox_new), time_entry, FALSE, FALSE, 5); | |
1075 g_signal_connect(time_entry, "activate", | |
1076 G_CALLBACK(mainwin_jump_to_time_cb), time_entry); | |
1077 | |
1078 gtk_widget_set_size_request(time_entry, 70, -1); | |
1079 label = gtk_label_new(_("minutes:seconds")); | |
1080 gtk_box_pack_start(GTK_BOX(hbox_new), label, FALSE, FALSE, 5); | |
1081 | |
1082 hbox_total = gtk_hbox_new(FALSE, 0); | |
1083 gtk_box_pack_start(GTK_BOX(vbox), hbox_total, TRUE, TRUE, 5); | |
1084 gtk_widget_show(hbox_total); | |
1085 | |
1086 /* FIXME: Disable display of current track length. It's not | |
1087 updated when track changes */ | |
1088 #if 0 | |
1089 label = gtk_label_new(_("Track length:")); | |
1090 gtk_box_pack_start(GTK_BOX(hbox_total), label, FALSE, FALSE, 5); | |
1091 | |
1092 len = playlist_get_current_length() / 1000; | |
1093 g_snprintf(time_str, sizeof(time_str), "%u:%2.2u", len / 60, len % 60); | |
1094 label = gtk_label_new(time_str); | |
1095 | |
1096 gtk_box_pack_start(GTK_BOX(hbox_total), label, FALSE, FALSE, 10); | |
1097 #endif | |
1098 | |
1099 bbox = gtk_hbutton_box_new(); | |
1100 gtk_box_pack_start(GTK_BOX(vbox), bbox, TRUE, TRUE, 0); | |
1101 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
1102 gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5); | |
1103 | |
1104 cancel = gtk_button_new_from_stock(GTK_STOCK_CANCEL); | |
1105 GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); | |
1106 gtk_container_add(GTK_CONTAINER(bbox), cancel); | |
1107 g_signal_connect_swapped(cancel, "clicked", | |
1108 G_CALLBACK(gtk_widget_destroy), mainwin_jtt); | |
1109 | |
1110 jump = gtk_button_new_from_stock(GTK_STOCK_JUMP_TO); | |
1111 GTK_WIDGET_SET_FLAGS(jump, GTK_CAN_DEFAULT); | |
1112 gtk_container_add(GTK_CONTAINER(bbox), jump); | |
1113 g_signal_connect(jump, "clicked", | |
1114 G_CALLBACK(mainwin_jump_to_time_cb), time_entry); | |
1115 | |
1116 tindex = playback_get_time() / 1000; | |
1117 g_snprintf(time_str, sizeof(time_str), "%u:%2.2u", tindex / 60, | |
1118 tindex % 60); | |
1119 gtk_entry_set_text(GTK_ENTRY(time_entry), time_str); | |
1120 | |
1121 gtk_entry_select_region(GTK_ENTRY(time_entry), 0, strlen(time_str)); | |
1122 | |
1123 gtk_widget_show_all(mainwin_jtt); | |
1124 | |
1125 gtk_widget_grab_focus(time_entry); | |
1126 gtk_widget_grab_default(jump); | |
1127 } | |
1128 | |
1129 /* | |
1130 * Rewritten 09/13/06: | |
1131 * | |
1132 * Remove all of this flaky iter/sourcelist/strsplit stuff. | |
1133 * All we care about is the filepath. | |
1134 * | |
2974
b93bd39923bf
Rework DnD received data function to use g_filename_from_uri().
William Pitcock <nenolod@atheme-project.org>
parents:
2964
diff
changeset
|
1135 * We can figure this out and easily pass it to g_filename_from_uri(). |
2313 | 1136 * - nenolod |
1137 */ | |
1138 void | |
1139 mainwin_drag_data_received(GtkWidget * widget, | |
1140 GdkDragContext * context, | |
1141 gint x, | |
1142 gint y, | |
1143 GtkSelectionData * selection_data, | |
1144 guint info, | |
1145 guint time, | |
1146 gpointer user_data) | |
1147 { | |
1148 Playlist *playlist = playlist_get_active(); | |
1149 | |
1150 g_return_if_fail(selection_data != NULL); | |
1151 g_return_if_fail(selection_data->data != NULL); | |
1152 | |
1153 if (str_has_prefix_nocase((gchar *) selection_data->data, "fonts:///")) | |
1154 { | |
2974
b93bd39923bf
Rework DnD received data function to use g_filename_from_uri().
William Pitcock <nenolod@atheme-project.org>
parents:
2964
diff
changeset
|
1155 gchar *path = (gchar *) selection_data->data; |
b93bd39923bf
Rework DnD received data function to use g_filename_from_uri().
William Pitcock <nenolod@atheme-project.org>
parents:
2964
diff
changeset
|
1156 gchar *decoded = g_filename_from_uri(path, NULL, NULL); |
b93bd39923bf
Rework DnD received data function to use g_filename_from_uri().
William Pitcock <nenolod@atheme-project.org>
parents:
2964
diff
changeset
|
1157 |
b93bd39923bf
Rework DnD received data function to use g_filename_from_uri().
William Pitcock <nenolod@atheme-project.org>
parents:
2964
diff
changeset
|
1158 if (decoded == NULL) |
b93bd39923bf
Rework DnD received data function to use g_filename_from_uri().
William Pitcock <nenolod@atheme-project.org>
parents:
2964
diff
changeset
|
1159 return; |
2313 | 1160 |
1161 cfg.playlist_font = g_strconcat(decoded, strrchr(cfg.playlist_font, ' '), NULL); | |
3217 | 1162 ui_skinned_playlist_set_font(cfg.playlist_font); |
2313 | 1163 playlistwin_update_list(playlist); |
1164 | |
1165 g_free(decoded); | |
1166 | |
1167 return; | |
1168 } | |
1169 | |
4081
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1170 /* perhaps make suffix check case-insensitive -- desowin */ |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1171 if (str_has_prefix_nocase((char*)selection_data->data, "file:///")) { |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1172 if (str_has_suffix_nocase((char*)selection_data->data, ".wsz\r\n") || |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1173 str_has_suffix_nocase((char*)selection_data->data, ".zip\r\n")) { |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1174 on_skin_view_drag_data_received(GTK_WIDGET(user_data), context, x, y, selection_data, info, time, NULL); |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1175 return; |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1176 } |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1177 } |
05140463a43e
install skin if user drag'n'drops it on mainwin
Tomasz Mon <desowin@gmail.com>
parents:
4080
diff
changeset
|
1178 |
2313 | 1179 playlist_clear(playlist); |
1180 playlist_add_url(playlist, (gchar *) selection_data->data); | |
1181 playback_initiate(); | |
1182 } | |
1183 | |
1184 static void | |
1185 on_add_url_add_clicked(GtkWidget * widget, | |
1186 GtkWidget * entry) | |
1187 { | |
1188 const gchar *text = gtk_entry_get_text(GTK_ENTRY(entry)); | |
1189 if (text && *text) | |
1190 playlist_add_url(playlist_get_active(), text); | |
1191 } | |
1192 | |
1193 static void | |
1194 on_add_url_ok_clicked(GtkWidget * widget, | |
1195 GtkWidget * entry) | |
1196 { | |
1197 Playlist *playlist = playlist_get_active(); | |
1198 | |
1199 const gchar *text = gtk_entry_get_text(GTK_ENTRY(entry)); | |
1200 if (text && *text) | |
1201 { | |
1202 playlist_clear(playlist); | |
1203 playlist_add_url(playlist, text); | |
1204 playback_initiate(); | |
1205 } | |
1206 } | |
1207 | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1208 static void |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1209 on_visibility_warning_toggle(GtkToggleButton *tbt, gpointer unused) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1210 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1211 cfg.warn_about_win_visibility = !gtk_toggle_button_get_active(tbt); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1212 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1213 |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1214 static void |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1215 on_visibility_warning_response(GtkDialog *dlg, gint r_id, gpointer unused) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1216 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1217 switch (r_id) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1218 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1219 case GTK_RESPONSE_OK: |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1220 mainwin_show(TRUE); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1221 break; |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1222 case GTK_RESPONSE_CANCEL: |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1223 default: |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1224 break; |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1225 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1226 gtk_widget_destroy(GTK_WIDGET(dlg)); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1227 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1228 |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1229 void |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1230 mainwin_show_visibility_warning(void) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1231 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1232 if (cfg.warn_about_win_visibility) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1233 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1234 GtkWidget *label, *checkbt, *vbox; |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1235 GtkWidget *warning_dlg = gtk_dialog_new_with_buttons( _("Audacious - visibility warning") , |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1236 GTK_WINDOW(mainwin) , GTK_DIALOG_DESTROY_WITH_PARENT , |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1237 _("Show main player window") , GTK_RESPONSE_OK , |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1238 _("Ignore") , GTK_RESPONSE_CANCEL , NULL ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1239 vbox = gtk_vbox_new( FALSE , 4 ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1240 gtk_container_set_border_width( GTK_CONTAINER(vbox) , 4 ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1241 gtk_box_pack_start( GTK_BOX(GTK_DIALOG(warning_dlg)->vbox) , vbox , TRUE , TRUE , 0 ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1242 label = gtk_label_new( _("Audacious has been started with all of its windows hidden.\n" |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1243 "You may want to show the player window again to control Audacious; " |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1244 "otherwise, you'll have to control it remotely via audtool or " |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1245 "enabled plugins (such as the statusicon plugin).") ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1246 gtk_label_set_line_wrap( GTK_LABEL(label) , TRUE ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1247 gtk_misc_set_alignment( GTK_MISC(label) , 0.0 , 0.0 ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1248 checkbt = gtk_check_button_new_with_label( _("Always ignore, show/hide is controlled remotely") ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1249 gtk_box_pack_start( GTK_BOX(vbox) , label , TRUE , TRUE , 0 ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1250 gtk_box_pack_start( GTK_BOX(vbox) , checkbt , TRUE , TRUE , 0 ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1251 g_signal_connect( G_OBJECT(checkbt) , "toggled" , |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1252 G_CALLBACK(on_visibility_warning_toggle) , NULL ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1253 g_signal_connect( G_OBJECT(warning_dlg) , "response" , |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1254 G_CALLBACK(on_visibility_warning_response) , NULL ); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1255 gtk_widget_show_all(warning_dlg); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1256 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1257 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1258 |
3965
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1259 static void |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1260 on_broken_gtk_engine_warning_toggle(GtkToggleButton *tbt, gpointer unused) |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1261 { |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1262 cfg.warn_about_broken_gtk_engines = !gtk_toggle_button_get_active(tbt); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1263 } |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1264 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1265 void |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1266 ui_main_check_theme_engine(void) |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1267 { |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1268 GtkSettings *settings; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1269 GtkWidget *widget; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1270 gchar *theme = NULL; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1271 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1272 widget = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1273 gtk_widget_ensure_style(widget); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1274 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1275 settings = gtk_settings_get_default(); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1276 g_object_get(G_OBJECT(settings), "gtk-theme-name", &theme, NULL); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1277 gtk_widget_destroy(widget); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1278 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1279 if (theme == NULL) |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1280 return; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1281 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1282 if (g_ascii_strcasecmp(theme, "Qt")) |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1283 { |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1284 g_free(theme); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1285 return; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1286 } |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1287 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1288 if (cfg.warn_about_broken_gtk_engines) |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1289 { |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1290 gchar *msg; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1291 GtkWidget *label, *checkbt, *vbox; |
3976
608590ec4548
- first update-po after a long time -> update of German translation
mf0102 <0102@gmx.at>
parents:
3965
diff
changeset
|
1292 GtkWidget *warning_dlg = |
608590ec4548
- first update-po after a long time -> update of German translation
mf0102 <0102@gmx.at>
parents:
3965
diff
changeset
|
1293 gtk_dialog_new_with_buttons( _("Audacious - broken GTK engine usage warning") , |
3965
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1294 GTK_WINDOW(mainwin) , GTK_DIALOG_DESTROY_WITH_PARENT , |
3976
608590ec4548
- first update-po after a long time -> update of German translation
mf0102 <0102@gmx.at>
parents:
3965
diff
changeset
|
1295 GTK_STOCK_CLOSE, GTK_RESPONSE_OK, NULL ); |
3965
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1296 vbox = gtk_vbox_new( FALSE , 4 ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1297 gtk_container_set_border_width( GTK_CONTAINER(vbox) , 4 ); |
3976
608590ec4548
- first update-po after a long time -> update of German translation
mf0102 <0102@gmx.at>
parents:
3965
diff
changeset
|
1298 gtk_box_pack_start( GTK_BOX(GTK_DIALOG(warning_dlg)->vbox) , vbox , |
608590ec4548
- first update-po after a long time -> update of German translation
mf0102 <0102@gmx.at>
parents:
3965
diff
changeset
|
1299 TRUE , TRUE , 0 ); |
3965
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1300 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1301 msg = g_strdup_printf(_("<big><b>Broken GTK engine in use</b></big>\n\n" |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1302 "Audacious has detected that you are using a broken GTK engine.\n\n" |
3976
608590ec4548
- first update-po after a long time -> update of German translation
mf0102 <0102@gmx.at>
parents:
3965
diff
changeset
|
1303 "The theme engine you are using, <i>%s</i>, is incompatible with some of the features " |
3965
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1304 "used by modern skins. The incompatible features have been disabled for this session.\n\n" |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1305 "To use these features, please consider using a different GTK theme engine."), theme); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1306 label = gtk_label_new(msg); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1307 gtk_label_set_use_markup(GTK_LABEL(label), TRUE); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1308 g_free(msg); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1309 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1310 gtk_label_set_line_wrap( GTK_LABEL(label) , TRUE ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1311 gtk_misc_set_alignment( GTK_MISC(label) , 0.0 , 0.0 ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1312 checkbt = gtk_check_button_new_with_label( _("Do not display this warning again") ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1313 gtk_box_pack_start( GTK_BOX(vbox) , label , TRUE , TRUE , 0 ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1314 gtk_box_pack_start( GTK_BOX(vbox) , checkbt , TRUE , TRUE , 0 ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1315 g_signal_connect( G_OBJECT(checkbt) , "toggled" , |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1316 G_CALLBACK(on_broken_gtk_engine_warning_toggle) , NULL ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1317 g_signal_connect( G_OBJECT(warning_dlg) , "response" , |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1318 G_CALLBACK(gtk_widget_destroy) , NULL ); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1319 gtk_widget_show_all(warning_dlg); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1320 gtk_window_stick(GTK_WINDOW(warning_dlg)); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1321 } |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1322 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1323 cfg.disable_inline_gtk = TRUE; |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1324 |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1325 g_free(theme); |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1326 } |
aea8b763b134
Work around the issues with broken Gtk-Qt-Engine and Modern skins with inline GTK.
William Pitcock <nenolod@atheme.org>
parents:
3958
diff
changeset
|
1327 |
2313 | 1328 void |
1329 mainwin_show_add_url_window(void) | |
1330 { | |
1331 static GtkWidget *url_window = NULL; | |
1332 | |
1333 if (!url_window) { | |
1334 url_window = | |
1335 util_add_url_dialog_new(_("Enter location to play:"), | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1336 G_CALLBACK(on_add_url_ok_clicked), |
2313 | 1337 G_CALLBACK(on_add_url_add_clicked)); |
1338 gtk_window_set_transient_for(GTK_WINDOW(url_window), | |
1339 GTK_WINDOW(mainwin)); | |
1340 g_signal_connect(url_window, "destroy", | |
1341 G_CALLBACK(gtk_widget_destroyed), | |
1342 &url_window); | |
1343 } | |
1344 | |
1345 gtk_window_present(GTK_WINDOW(url_window)); | |
1346 } | |
1347 | |
1348 static void | |
1349 check_set( GtkActionGroup * action_group , | |
1350 const gchar * action_name , | |
1351 gboolean is_on ) | |
1352 { | |
1353 /* check_set noew uses gtkaction */ | |
1354 GtkAction *action = gtk_action_group_get_action( action_group , action_name ); | |
1355 if ( action != NULL ) | |
1356 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(action) , is_on ); | |
1357 return; | |
1358 } | |
1359 | |
1360 void | |
1361 mainwin_eject_pushed(void) | |
1362 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1363 run_filebrowser(PLAY_BUTTON); |
2313 | 1364 } |
1365 | |
1366 void | |
1367 mainwin_rev_pushed(void) | |
1368 { | |
1369 g_get_current_time(&cb_time); | |
1370 | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
1371 seek_initial_pos = ui_skinned_horizontal_slider_get_position(mainwin_position); |
2313 | 1372 seek_state = MAINWIN_SEEK_REV; |
3679
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1373 mainwin_timeout_id = g_timeout_add(MAINWIN_UPDATE_INTERVAL, |
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1374 (GSourceFunc) mainwin_idle_func, NULL); |
2313 | 1375 } |
1376 | |
1377 void | |
1378 mainwin_rev_release(void) | |
1379 { | |
1380 GTimeVal now_time; | |
1381 GTimeVal delta_time; | |
1382 gulong now_dur; | |
1383 | |
1384 g_get_current_time(&now_time); | |
1385 | |
1386 delta_time.tv_usec = now_time.tv_usec - cb_time.tv_usec; | |
1387 delta_time.tv_sec = now_time.tv_sec - cb_time.tv_sec; | |
1388 | |
1389 now_dur = labs((delta_time.tv_sec * 1000) + (glong) (delta_time.tv_usec / 1000)); | |
1390 | |
1391 if ( now_dur <= TRISTATE_THRESHOLD ) | |
1392 { | |
1393 /* interpret as 'skip to previous song' */ | |
1394 playlist_prev(playlist_get_active()); | |
1395 } | |
1396 else | |
1397 { | |
1398 /* interpret as 'seek' */ | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
1399 mainwin_position_release_cb( mainwin_position, ui_skinned_horizontal_slider_get_position(mainwin_position) ); |
2313 | 1400 } |
1401 | |
1402 seek_state = MAINWIN_SEEK_NIL; | |
3679
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1403 |
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1404 g_source_remove(mainwin_timeout_id); |
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1405 mainwin_timeout_id = 0; |
2313 | 1406 } |
1407 | |
1408 void | |
1409 mainwin_fwd_pushed(void) | |
1410 { | |
1411 g_get_current_time(&cb_time); | |
3679
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1412 |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
1413 seek_initial_pos = ui_skinned_horizontal_slider_get_position(mainwin_position); |
2313 | 1414 seek_state = MAINWIN_SEEK_FWD; |
3679
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1415 mainwin_timeout_id = g_timeout_add(MAINWIN_UPDATE_INTERVAL, |
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1416 (GSourceFunc) mainwin_idle_func, NULL); |
2313 | 1417 } |
1418 | |
1419 void | |
1420 mainwin_fwd_release(void) | |
1421 { | |
1422 GTimeVal now_time; | |
1423 GTimeVal delta_time; | |
1424 gulong now_dur; | |
1425 | |
1426 g_get_current_time(&now_time); | |
1427 | |
1428 delta_time.tv_usec = now_time.tv_usec - cb_time.tv_usec; | |
1429 delta_time.tv_sec = now_time.tv_sec - cb_time.tv_sec; | |
1430 | |
1431 now_dur = labs((delta_time.tv_sec * 1000) + (glong) (delta_time.tv_usec / 1000)); | |
1432 | |
1433 if ( now_dur <= TRISTATE_THRESHOLD ) | |
1434 { | |
2480
bb2f191895ce
[svn] - fixed crash when skipping to next song with an empty playlist
marvin
parents:
2478
diff
changeset
|
1435 /* interpret as 'skip to next song' */ |
2313 | 1436 playlist_next(playlist_get_active()); |
1437 } | |
1438 else | |
1439 { | |
1440 /* interpret as 'seek' */ | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
1441 mainwin_position_release_cb( mainwin_position, ui_skinned_horizontal_slider_get_position(mainwin_position) ); |
2313 | 1442 } |
1443 | |
1444 seek_state = MAINWIN_SEEK_NIL; | |
3679
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1445 |
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1446 g_source_remove(mainwin_timeout_id); |
eadc001add02
Remove mainwin_attach_idle_func(), use mainwin_idle_func() only when tristate buttons are triggered.
William Pitcock <nenolod@atheme.org>
parents:
3678
diff
changeset
|
1447 mainwin_timeout_id = 0; |
2313 | 1448 } |
1449 | |
1450 void | |
1451 mainwin_play_pushed(void) | |
1452 { | |
1453 if (ab_position_a != -1) | |
1454 playback_seek(ab_position_a / 1000); | |
1455 if (playback_get_paused()) { | |
1456 playback_pause(); | |
1457 return; | |
1458 } | |
1459 | |
1460 if (playlist_get_length(playlist_get_active())) | |
1461 playback_initiate(); | |
1462 else | |
1463 mainwin_eject_pushed(); | |
1464 } | |
1465 | |
1466 void | |
1467 mainwin_stop_pushed(void) | |
1468 { | |
1469 ip_data.stop = TRUE; | |
3241 | 1470 playback_stop(); |
2313 | 1471 mainwin_clear_song_info(); |
3082
91df04ec5ef7
From: Daniel Drake <dsd@gentoo.org>
William Pitcock <nenolod@atheme-project.org>
parents:
3042
diff
changeset
|
1472 ab_position_a = ab_position_b = -1; |
2313 | 1473 ip_data.stop = FALSE; |
1474 } | |
1475 | |
1476 void | |
1477 mainwin_shuffle_pushed(gboolean toggled) | |
1478 { | |
1479 check_set( toggleaction_group_others , "playback shuffle" , toggled ); | |
1480 } | |
1481 | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1482 void mainwin_shuffle_pushed_cb(void) { |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1483 mainwin_shuffle_pushed(UI_SKINNED_BUTTON(mainwin_shuffle)->inside); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1484 } |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1485 |
2313 | 1486 void |
1487 mainwin_repeat_pushed(gboolean toggled) | |
1488 { | |
1489 check_set( toggleaction_group_others , "playback repeat" , toggled ); | |
1490 } | |
1491 | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1492 void mainwin_repeat_pushed_cb(void) { |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1493 mainwin_repeat_pushed(UI_SKINNED_BUTTON(mainwin_repeat)->inside); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1494 } |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1495 |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1496 void mainwin_equalizer_pushed_cb(void) { |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1497 mainwin_eq_pushed(UI_SKINNED_BUTTON(mainwin_eq)->inside); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1498 } |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1499 |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1500 void mainwin_playlist_pushed_cb(void) { |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1501 mainwin_pl_pushed(UI_SKINNED_BUTTON(mainwin_pl)->inside); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1502 } |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1503 |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1504 void |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1505 mainwin_eq_pushed(gboolean toggled) |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1506 { |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1507 equalizerwin_show(toggled); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1508 } |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
1509 |
2313 | 1510 void |
1511 mainwin_pl_pushed(gboolean toggled) | |
1512 { | |
1513 if (toggled) | |
1514 playlistwin_show(); | |
1515 else | |
1516 playlistwin_hide(); | |
1517 } | |
1518 | |
1519 gint | |
1520 mainwin_spos_frame_cb(gint pos) | |
1521 { | |
1522 if (mainwin_sposition) { | |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1523 gint x = 0; |
2313 | 1524 if (pos < 6) |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1525 x = 17; |
2313 | 1526 else if (pos < 9) |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1527 x = 20; |
2313 | 1528 else |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1529 x = 23; |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1530 |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1531 UI_SKINNED_HORIZONTAL_SLIDER(mainwin_sposition)->knob_nx = x; |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1532 UI_SKINNED_HORIZONTAL_SLIDER(mainwin_sposition)->knob_px = x; |
2313 | 1533 } |
1534 return 1; | |
1535 } | |
1536 | |
1537 void | |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1538 mainwin_spos_motion_cb(GtkWidget *widget, gint pos) |
2313 | 1539 { |
1540 gint time; | |
1541 gchar *time_msg; | |
1542 Playlist *playlist = playlist_get_active(); | |
1543 | |
1544 pos--; | |
1545 | |
1546 time = ((playlist_get_current_length(playlist) / 1000) * pos) / 12; | |
1547 | |
1548 if (cfg.timer_mode == TIMER_REMAINING) { | |
1549 time = (playlist_get_current_length(playlist) / 1000) - time; | |
1550 time_msg = g_strdup_printf("-%2.2d", time / 60); | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
1551 ui_skinned_textbox_set_text(mainwin_stime_min, time_msg); |
2313 | 1552 g_free(time_msg); |
1553 } | |
1554 else { | |
1555 time_msg = g_strdup_printf(" %2.2d", time / 60); | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
1556 ui_skinned_textbox_set_text(mainwin_stime_min, time_msg); |
2313 | 1557 g_free(time_msg); |
1558 } | |
1559 | |
1560 time_msg = g_strdup_printf("%2.2d", time % 60); | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
1561 ui_skinned_textbox_set_text(mainwin_stime_sec, time_msg); |
2313 | 1562 g_free(time_msg); |
1563 } | |
1564 | |
1565 void | |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
1566 mainwin_spos_release_cb(GtkWidget *widget, gint pos) |
2313 | 1567 { |
1568 playback_seek(((playlist_get_current_length(playlist_get_active()) / 1000) * | |
1569 (pos - 1)) / 12); | |
1570 } | |
1571 | |
1572 void | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
1573 mainwin_position_motion_cb(GtkWidget *widget, gint pos) |
2313 | 1574 { |
1575 gint length, time; | |
1576 gchar *seek_msg; | |
1577 | |
1578 length = playlist_get_current_length(playlist_get_active()) / 1000; | |
1579 time = (length * pos) / 219; | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1580 seek_msg = g_strdup_printf(_("Seek to: %d:%-2.2d/%d:%-2.2d (%d%%)"), |
2313 | 1581 time / 60, time % 60, |
1582 length / 60, length % 60, | |
1583 (length != 0) ? (time * 100) / length : 0); | |
1584 mainwin_lock_info_text(seek_msg); | |
1585 g_free(seek_msg); | |
1586 } | |
1587 | |
1588 void | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
1589 mainwin_position_release_cb(GtkWidget *widget, gint pos) |
2313 | 1590 { |
1591 gint length, time; | |
1592 | |
1593 length = playlist_get_current_length(playlist_get_active()) / 1000; | |
1594 time = (length * pos) / 219; | |
1595 playback_seek(time); | |
1596 mainwin_release_info_text(); | |
1597 } | |
1598 | |
1599 gint | |
1600 mainwin_volume_frame_cb(gint pos) | |
1601 { | |
1602 return (gint) rint((pos / 52.0) * 28); | |
1603 } | |
1604 | |
1605 void | |
1606 mainwin_adjust_volume_motion(gint v) | |
1607 { | |
1608 gchar *volume_msg; | |
1609 | |
1610 setting_volume = TRUE; | |
1611 | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1612 volume_msg = g_strdup_printf(_("Volume: %d%%"), v); |
2313 | 1613 mainwin_lock_info_text(volume_msg); |
1614 g_free(volume_msg); | |
1615 | |
1616 if (balance < 0) | |
1617 input_set_volume(v, (v * (100 - abs(balance))) / 100); | |
1618 else if (balance > 0) | |
1619 input_set_volume((v * (100 - abs(balance))) / 100, v); | |
1620 else | |
1621 input_set_volume(v, v); | |
1622 } | |
1623 | |
1624 void | |
1625 mainwin_adjust_volume_release(void) | |
1626 { | |
1627 mainwin_release_info_text(); | |
1628 setting_volume = FALSE; | |
1629 } | |
1630 | |
1631 void | |
1632 mainwin_adjust_balance_motion(gint b) | |
1633 { | |
1634 gchar *balance_msg; | |
1635 gint v, pvl, pvr; | |
1636 | |
1637 setting_volume = TRUE; | |
1638 balance = b; | |
1639 input_get_volume(&pvl, &pvr); | |
1640 v = MAX(pvl, pvr); | |
1641 if (b < 0) { | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1642 balance_msg = g_strdup_printf(_("Balance: %d%% left"), -b); |
2313 | 1643 input_set_volume(v, (gint) rint(((100 + b) / 100.0) * v)); |
1644 } | |
1645 else if (b == 0) { | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1646 balance_msg = g_strdup_printf(_("Balance: center")); |
2313 | 1647 input_set_volume(v, v); |
1648 } | |
1649 else { /* b > 0 */ | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1650 balance_msg = g_strdup_printf(_("Balance: %d%% right"), b); |
2313 | 1651 input_set_volume((gint) rint(((100 - b) / 100.0) * v), v); |
1652 } | |
1653 mainwin_lock_info_text(balance_msg); | |
1654 g_free(balance_msg); | |
1655 } | |
1656 | |
1657 void | |
1658 mainwin_adjust_balance_release(void) | |
1659 { | |
1660 mainwin_release_info_text(); | |
1661 setting_volume = FALSE; | |
1662 } | |
1663 | |
1664 void | |
1665 mainwin_set_volume_slider(gint percent) | |
1666 { | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
1667 ui_skinned_horizontal_slider_set_position(mainwin_volume, (gint) rint((percent * 51) / 100.0)); |
2313 | 1668 } |
1669 | |
1670 void | |
1671 mainwin_set_balance_slider(gint percent) | |
1672 { | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
1673 ui_skinned_horizontal_slider_set_position(mainwin_balance, (gint) rint(((percent * 12) / 100.0) + 12)); |
2313 | 1674 } |
1675 | |
1676 void | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
1677 mainwin_volume_motion_cb(GtkWidget *widget, gint pos) |
2313 | 1678 { |
1679 gint vol = (pos * 100) / 51; | |
1680 mainwin_adjust_volume_motion(vol); | |
1681 equalizerwin_set_volume_slider(vol); | |
1682 } | |
1683 | |
3724
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
1684 gboolean |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
1685 mainwin_volume_release_cb(GtkWidget *widget, gint pos) |
2313 | 1686 { |
1687 mainwin_adjust_volume_release(); | |
3724
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
1688 return FALSE; |
2313 | 1689 } |
1690 | |
1691 gint | |
1692 mainwin_balance_frame_cb(gint pos) | |
1693 { | |
1694 return ((abs(pos - 12) * 28) / 13); | |
1695 } | |
1696 | |
1697 void | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
1698 mainwin_balance_motion_cb(GtkWidget *widget, gint pos) |
2313 | 1699 { |
1700 gint bal = ((pos - 12) * 100) / 12; | |
1701 mainwin_adjust_balance_motion(bal); | |
1702 equalizerwin_set_balance_slider(bal); | |
1703 } | |
1704 | |
1705 void | |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
1706 mainwin_balance_release_cb(GtkWidget *widget, gint pos) |
2313 | 1707 { |
1708 mainwin_adjust_volume_release(); | |
1709 } | |
1710 | |
1711 void | |
1712 mainwin_set_volume_diff(gint diff) | |
1713 { | |
1714 gint vl, vr, vol; | |
1715 | |
1716 input_get_volume(&vl, &vr); | |
1717 vol = MAX(vl, vr); | |
1718 vol = CLAMP(vol + diff, 0, 100); | |
1719 | |
1720 mainwin_adjust_volume_motion(vol); | |
1721 setting_volume = FALSE; | |
1722 mainwin_set_volume_slider(vol); | |
1723 equalizerwin_set_volume_slider(vol); | |
3724
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
1724 |
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
1725 if (mainwin_volume_release_timeout) |
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
1726 g_source_remove(mainwin_volume_release_timeout); |
9a8e54ffdd76
prevent info text being stuck after changing volume
Tomasz Mon <desowin@gmail.com>
parents:
3718
diff
changeset
|
1727 mainwin_volume_release_timeout = g_timeout_add(700, (GSourceFunc)(mainwin_volume_release_cb), NULL); |
2313 | 1728 } |
1729 | |
1730 void | |
1731 mainwin_set_balance_diff(gint diff) | |
1732 { | |
1733 gint b; | |
1734 b = CLAMP(balance + diff, -100, 100); | |
1735 mainwin_adjust_balance_motion(b); | |
1736 setting_volume = FALSE; | |
1737 mainwin_set_balance_slider(b); | |
1738 equalizerwin_set_balance_slider(b); | |
1739 } | |
1740 | |
1741 void | |
1742 mainwin_show(gboolean show) | |
1743 { | |
1744 if (show) | |
1745 mainwin_real_show(); | |
1746 else | |
1747 mainwin_real_hide(); | |
1748 } | |
1749 | |
1750 void | |
1751 mainwin_real_show(void) | |
1752 { | |
1753 cfg.player_visible = TRUE; | |
1754 | |
1755 check_set( toggleaction_group_others , "show player" , TRUE ); | |
1756 | |
1757 if (cfg.player_shaded) | |
3020 | 1758 ui_vis_clear_data(mainwin_vis); |
2947 | 1759 |
3907
e80d50706e70
revert something which broke GTK redrawing completely.
William Pitcock <nenolod@atheme.org>
parents:
3906
diff
changeset
|
1760 mainwin_set_shape_mask(); |
e80d50706e70
revert something which broke GTK redrawing completely.
William Pitcock <nenolod@atheme.org>
parents:
3906
diff
changeset
|
1761 |
2313 | 1762 if (cfg.show_wm_decorations) { |
2906
68f3b7ff4333
Remove pposition_broken global variable.
William Pitcock <nenolod@atheme.org>
parents:
2853
diff
changeset
|
1763 if (cfg.player_x != -1 && cfg.save_window_position) |
2313 | 1764 gtk_window_move(GTK_WINDOW(mainwin), cfg.player_x, cfg.player_y); |
1765 | |
1766 gtk_widget_show(mainwin); | |
1767 return; | |
1768 } | |
1769 | |
2345
0fb47429ad7e
[svn] - in mainwin_real_show, do not return if a nullmask doesn't exist
giacomo
parents:
2339
diff
changeset
|
1770 if (nullmask) |
0fb47429ad7e
[svn] - in mainwin_real_show, do not return if a nullmask doesn't exist
giacomo
parents:
2339
diff
changeset
|
1771 { |
0fb47429ad7e
[svn] - in mainwin_real_show, do not return if a nullmask doesn't exist
giacomo
parents:
2339
diff
changeset
|
1772 g_object_unref(nullmask); |
0fb47429ad7e
[svn] - in mainwin_real_show, do not return if a nullmask doesn't exist
giacomo
parents:
2339
diff
changeset
|
1773 nullmask = NULL; |
0fb47429ad7e
[svn] - in mainwin_real_show, do not return if a nullmask doesn't exist
giacomo
parents:
2339
diff
changeset
|
1774 } |
2313 | 1775 |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1776 if (cfg.player_x != -1 && cfg.save_window_position) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1777 gtk_window_move(GTK_WINDOW(mainwin), cfg.player_x, cfg.player_y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2646
diff
changeset
|
1778 |
3908 | 1779 mainwin_refresh_hints(); |
2313 | 1780 gtk_window_present(GTK_WINDOW(mainwin)); |
1781 } | |
1782 | |
1783 void | |
1784 mainwin_real_hide(void) | |
1785 { | |
1786 GdkGC *gc; | |
1787 GdkColor pattern; | |
1788 | |
1789 check_set( toggleaction_group_others , "show player", FALSE); | |
1790 | |
1791 if (cfg.player_shaded) | |
3054 | 1792 ui_svis_clear_data(mainwin_svis); |
2313 | 1793 |
1794 if (!cfg.show_wm_decorations) { | |
1795 nullmask = gdk_pixmap_new(mainwin->window, 20, 20, 1); | |
1796 gc = gdk_gc_new(nullmask); | |
1797 pattern.pixel = 0; | |
1798 gdk_gc_set_foreground(gc, &pattern); | |
1799 gdk_draw_rectangle(nullmask, gc, TRUE, 0, 0, 20, 20); | |
1800 g_object_unref(gc); | |
1801 gtk_widget_shape_combine_mask(mainwin, nullmask, 0, 0); | |
1802 } | |
1803 | |
1804 gtk_widget_hide(mainwin); | |
1805 | |
1806 cfg.player_visible = FALSE; | |
1807 } | |
1808 | |
1809 | |
1810 void | |
1811 mainwin_set_stopaftersong(gboolean stop) | |
1812 { | |
1813 cfg.stopaftersong = stop; | |
1814 check_set(toggleaction_group_others, "stop after current song", cfg.stopaftersong); | |
1815 } | |
1816 | |
2769
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2717
diff
changeset
|
1817 void |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2717
diff
changeset
|
1818 mainwin_set_noplaylistadvance(gboolean no_advance) |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2717
diff
changeset
|
1819 { |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2717
diff
changeset
|
1820 cfg.no_playlist_advance = no_advance; |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2717
diff
changeset
|
1821 check_set(toggleaction_group_others, "playback no playlist advance", cfg.no_playlist_advance); |
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2717
diff
changeset
|
1822 } |
2313 | 1823 |
1824 static void | |
1825 mainwin_set_doublesize(gboolean doublesize) | |
1826 { | |
1827 gint height; | |
1828 | |
1829 if (cfg.player_shaded) | |
1830 height = MAINWIN_SHADED_HEIGHT; | |
1831 else | |
1832 height = bmp_active_skin->properties.mainwin_height; | |
1833 | |
1834 mainwin_set_shape_mask(); | |
1835 | |
1836 dock_window_resize(GTK_WINDOW(mainwin), cfg.player_shaded ? MAINWIN_SHADED_WIDTH : bmp_active_skin->properties.mainwin_width, | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1837 cfg.player_shaded ? MAINWIN_SHADED_HEIGHT : bmp_active_skin->properties.mainwin_height, |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1838 bmp_active_skin->properties.mainwin_width * 2, bmp_active_skin->properties.mainwin_height * 2); |
2313 | 1839 |
2821 | 1840 GList *iter; |
1841 for (iter = GTK_FIXED (SKINNED_WINDOW(mainwin)->fixed)->children; iter; iter = g_list_next (iter)) { | |
1842 GtkFixedChild *child_data = (GtkFixedChild *) iter->data; | |
1843 GtkWidget *child = child_data->widget; | |
2827 | 1844 g_signal_emit_by_name(child, "toggle-double-size"); |
2821 | 1845 } |
1846 | |
3221
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3218
diff
changeset
|
1847 mainwin_refresh_hints(); |
2313 | 1848 } |
1849 | |
1850 void | |
1851 set_doublesize(gboolean doublesize) | |
1852 { | |
1853 cfg.doublesize = doublesize; | |
1854 | |
1855 mainwin_set_doublesize(doublesize); | |
1856 | |
1857 if (cfg.eq_doublesize_linked) | |
1858 equalizerwin_set_doublesize(doublesize); | |
1859 } | |
1860 | |
1861 | |
1862 | |
1863 void | |
1864 mainwin_general_menu_callback(gpointer data, | |
1865 guint action, | |
1866 GtkWidget * item) | |
1867 { | |
1868 Playlist *playlist = playlist_get_active(); | |
1869 | |
1870 switch (action) { | |
1871 case MAINWIN_GENERAL_PREFS: | |
1872 show_prefs_window(); | |
1873 break; | |
1874 case MAINWIN_GENERAL_ABOUT: | |
1875 show_about_window(); | |
1876 break; | |
1877 case MAINWIN_GENERAL_PLAYFILE: | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1878 run_filebrowser(NO_PLAY_BUTTON); |
2313 | 1879 break; |
1880 case MAINWIN_GENERAL_PLAYLOCATION: | |
1881 mainwin_show_add_url_window(); | |
1882 break; | |
1883 case MAINWIN_GENERAL_FILEINFO: | |
1884 playlist_fileinfo_current(playlist); | |
1885 break; | |
1886 case MAINWIN_GENERAL_FOCUSPLWIN: | |
1887 gtk_window_present(GTK_WINDOW(playlistwin)); | |
1888 break; | |
1889 case MAINWIN_GENERAL_SHOWMWIN: | |
1890 mainwin_show(GTK_CHECK_MENU_ITEM(item)->active); | |
1891 break; | |
1892 case MAINWIN_GENERAL_SHOWPLWIN: | |
1893 if (GTK_CHECK_MENU_ITEM(item)->active) | |
1894 playlistwin_show(); | |
1895 else | |
1896 playlistwin_hide(); | |
1897 break; | |
1898 case MAINWIN_GENERAL_SHOWEQWIN: | |
1899 if (GTK_CHECK_MENU_ITEM(item)->active) | |
1900 equalizerwin_real_show(); | |
1901 else | |
1902 equalizerwin_real_hide(); | |
1903 break; | |
1904 case MAINWIN_GENERAL_PREV: | |
1905 playlist_prev(playlist); | |
1906 break; | |
1907 case MAINWIN_GENERAL_PLAY: | |
1908 mainwin_play_pushed(); | |
1909 break; | |
1910 case MAINWIN_GENERAL_PAUSE: | |
1911 playback_pause(); | |
1912 break; | |
1913 case MAINWIN_GENERAL_STOP: | |
1914 mainwin_stop_pushed(); | |
1915 break; | |
1916 case MAINWIN_GENERAL_NEXT: | |
1917 playlist_next(playlist); | |
1918 break; | |
1919 case MAINWIN_GENERAL_BACK5SEC: | |
1920 if (playback_get_playing() | |
1921 && playlist_get_current_length(playlist) != -1) | |
1922 playback_seek_relative(-5); | |
1923 break; | |
1924 case MAINWIN_GENERAL_FWD5SEC: | |
1925 if (playback_get_playing() | |
1926 && playlist_get_current_length(playlist) != -1) | |
1927 playback_seek_relative(5); | |
1928 break; | |
1929 case MAINWIN_GENERAL_START: | |
1930 playlist_set_position(playlist, 0); | |
1931 break; | |
1932 case MAINWIN_GENERAL_JTT: | |
1933 mainwin_jump_to_time(); | |
1934 break; | |
1935 case MAINWIN_GENERAL_JTF: | |
2500 | 1936 ui_jump_to_track(); |
2313 | 1937 break; |
1938 case MAINWIN_GENERAL_EXIT: | |
1939 mainwin_quit_cb(); | |
1940 break; | |
1941 case MAINWIN_GENERAL_SETAB: | |
1942 if (playlist_get_current_length(playlist) != -1) { | |
1943 if (ab_position_a == -1) { | |
1944 ab_position_a = playback_get_time(); | |
1945 ab_position_b = -1; | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1946 mainwin_lock_info_text("'Loop-Point A Position' set."); |
2313 | 1947 } else if (ab_position_b == -1) { |
1948 int time = playback_get_time(); | |
1949 if (time > ab_position_a) | |
1950 ab_position_b = time; | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1951 mainwin_release_info_text(); |
2313 | 1952 } else { |
1953 ab_position_a = playback_get_time(); | |
1954 ab_position_b = -1; | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1955 mainwin_lock_info_text("'Loop-Point A Position' reset."); |
2313 | 1956 } |
1957 } | |
1958 break; | |
1959 case MAINWIN_GENERAL_CLEARAB: | |
1960 if (playlist_get_current_length(playlist) != -1) { | |
1961 ab_position_a = ab_position_b = -1; | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
1962 mainwin_release_info_text(); |
2313 | 1963 } |
1964 break; | |
1965 case MAINWIN_GENERAL_NEW_PL: | |
1966 { | |
1967 Playlist *new_pl = playlist_new(); | |
1968 playlist_add_playlist(new_pl); | |
1969 playlist_select_playlist(new_pl); | |
1970 } | |
1971 break; | |
1972 case MAINWIN_GENERAL_PREV_PL: | |
1973 playlist_select_prev(); | |
1974 break; | |
1975 case MAINWIN_GENERAL_NEXT_PL: | |
1976 playlist_select_next(); | |
1977 break; | |
1978 } | |
1979 } | |
1980 | |
1981 static void | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
1982 mainwin_mr_change(GtkWidget *widget, MenuRowItem i) |
2313 | 1983 { |
1984 switch (i) { | |
1985 case MENUROW_OPTIONS: | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1986 mainwin_lock_info_text(_("Options Menu")); |
2313 | 1987 break; |
1988 case MENUROW_ALWAYS: | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
1989 if (UI_SKINNED_MENUROW(mainwin_menurow)->always_selected) |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1990 mainwin_lock_info_text(_("Disable 'Always On Top'")); |
2313 | 1991 else |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1992 mainwin_lock_info_text(_("Enable 'Always On Top'")); |
2313 | 1993 break; |
1994 case MENUROW_FILEINFOBOX: | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1995 mainwin_lock_info_text(_("File Info Box")); |
2313 | 1996 break; |
1997 case MENUROW_DOUBLESIZE: | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
1998 if (UI_SKINNED_MENUROW(mainwin_menurow)->doublesize_selected) |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
1999 mainwin_lock_info_text(_("Disable 'Doublesize'")); |
2313 | 2000 else |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
2001 mainwin_lock_info_text(_("Enable 'Doublesize'")); |
2313 | 2002 break; |
2003 case MENUROW_VISUALIZATION: | |
3108
710b3aca4d64
Lower-case letters are more convenient, aren't they ? (anyhow bitmap fonts option is still available)
Stany HENRY <StrassBoy@gmail.com>
parents:
3095
diff
changeset
|
2004 mainwin_lock_info_text(_("Visualization Menu")); |
2313 | 2005 break; |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3157
diff
changeset
|
2006 case MENUROW_NONE: |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3157
diff
changeset
|
2007 break; |
2313 | 2008 } |
2009 } | |
2010 | |
2011 static void | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2012 mainwin_mr_release(GtkWidget *widget, MenuRowItem i) |
2313 | 2013 { |
2014 GdkModifierType modmask; | |
2015 gint x, y; | |
2016 | |
2017 switch (i) { | |
2018 case MENUROW_OPTIONS: | |
2019 gdk_window_get_pointer(NULL, &x, &y, &modmask); | |
2020 ui_manager_popup_menu_show(GTK_MENU(mainwin_view_menu), x, y, 1, | |
2021 GDK_CURRENT_TIME); | |
2022 break; | |
2023 case MENUROW_ALWAYS: | |
2024 gtk_toggle_action_set_active( | |
2025 GTK_TOGGLE_ACTION(gtk_action_group_get_action( | |
2026 toggleaction_group_others , "view always on top" )) , | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2027 UI_SKINNED_MENUROW(mainwin_menurow)->always_selected ); |
2313 | 2028 break; |
2029 case MENUROW_FILEINFOBOX: | |
2030 playlist_fileinfo_current(playlist_get_active()); | |
2031 break; | |
2032 case MENUROW_DOUBLESIZE: | |
2033 gtk_toggle_action_set_active( | |
2034 GTK_TOGGLE_ACTION(gtk_action_group_get_action( | |
2035 toggleaction_group_others , "view doublesize" )) , | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2036 UI_SKINNED_MENUROW(mainwin_menurow)->doublesize_selected ); |
2313 | 2037 break; |
2038 case MENUROW_VISUALIZATION: | |
2039 gdk_window_get_pointer(NULL, &x, &y, &modmask); | |
2040 ui_manager_popup_menu_show(GTK_MENU(mainwin_visualization_menu), x, y, 1, GDK_CURRENT_TIME); | |
2041 break; | |
2042 case MENUROW_NONE: | |
2043 break; | |
2044 } | |
2045 mainwin_release_info_text(); | |
2046 } | |
2047 | |
3157
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2048 void |
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2049 run_no_output_device_dialog(gpointer hook_data, gpointer user_data) |
2313 | 2050 { |
2051 const gchar *markup = | |
2052 N_("<b><big>Couldn't open audio.</big></b>\n\n" | |
2053 "Please check that:\n" | |
2054 "1. You have the correct output plugin selected.\n" | |
2055 "2. No other programs is blocking the soundcard.\n" | |
2056 "3. Your soundcard is configured properly.\n"); | |
2057 | |
3157
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2058 GDK_THREADS_ENTER(); |
2313 | 2059 GtkWidget *dialog = |
2060 gtk_message_dialog_new_with_markup(GTK_WINDOW(mainwin), | |
2061 GTK_DIALOG_DESTROY_WITH_PARENT, | |
2062 GTK_MESSAGE_ERROR, | |
2063 GTK_BUTTONS_OK, | |
2064 _(markup)); | |
2065 gtk_dialog_run(GTK_DIALOG(dialog)); | |
2066 gtk_widget_destroy(dialog); | |
3157
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2067 GDK_THREADS_LEAVE(); |
2313 | 2068 } |
2069 | |
2070 void | |
3678
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2071 ui_main_set_initial_volume(void) |
2313 | 2072 { |
2073 gint vl, vr, b, v; | |
2074 | |
2075 input_get_volume(&vl, &vr); | |
2076 | |
3678
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2077 vl = CLAMP(vl, 0, 100); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2078 vr = CLAMP(vr, 0, 100); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2079 v = MAX(vl, vr); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2080 if (vl > vr) |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2081 b = (gint) rint(((gdouble) vr / vl) * 100) - 100; |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2082 else if (vl < vr) |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2083 b = 100 - (gint) rint(((gdouble) vl / vr) * 100); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2084 else |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2085 b = 0; |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2086 |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2087 mainwin_set_volume_slider(v); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2088 equalizerwin_set_volume_slider(v); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2089 mainwin_set_balance_slider(b); |
e82ad057d1db
Get rid of read_volume() craq. Add ui_main_set_initial_volume() to replace the only necessary remaining code.
William Pitcock <nenolod@atheme.org>
parents:
3677
diff
changeset
|
2090 equalizerwin_set_balance_slider(b); |
2313 | 2091 } |
2092 | |
2093 /* TODO: HAL! */ | |
2094 gboolean | |
2095 can_play_cd(void) | |
2096 { | |
2097 GList *ilist; | |
2098 | |
2099 for (ilist = get_input_list(); ilist; ilist = g_list_next(ilist)) { | |
2100 InputPlugin *ip = INPUT_PLUGIN(ilist->data); | |
2101 | |
2102 if (!g_ascii_strcasecmp(g_basename(ip->filename), | |
2103 PLUGIN_FILENAME("cdaudio"))) { | |
2104 return TRUE; | |
2105 } | |
2106 } | |
2107 | |
2108 return FALSE; | |
2109 } | |
2110 | |
2111 | |
2112 static void | |
2113 set_timer_mode(TimerMode mode) | |
2114 { | |
2115 if (mode == TIMER_ELAPSED) | |
2116 check_set(radioaction_group_viewtime, "view time elapsed", TRUE); | |
2117 else | |
2118 check_set(radioaction_group_viewtime, "view time remaining", TRUE); | |
2119 } | |
2120 | |
2121 static void | |
2122 set_timer_mode_menu_cb(TimerMode mode) | |
2123 { | |
2124 cfg.timer_mode = mode; | |
2125 } | |
2126 | |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2127 gboolean |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2128 change_timer_mode_cb(GtkWidget *widget, GdkEventButton *event) |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2129 { |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2130 if (event->button == 1) { |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2131 change_timer_mode(); |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2132 } else if (event->button == 3) |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2133 return FALSE; |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2134 |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2135 return TRUE; |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2136 } |
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2137 |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2138 void change_timer_mode(void) { |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2139 if (cfg.timer_mode == TIMER_ELAPSED) |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2140 set_timer_mode(TIMER_REMAINING); |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2141 else |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2142 set_timer_mode(TIMER_ELAPSED); |
3367
b47e36a480b3
don't call mainwin_update_song_info if track isn't played
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
2143 if (playback_get_playing()) |
b47e36a480b3
don't call mainwin_update_song_info if track isn't played
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
2144 mainwin_update_song_info(); |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2145 } |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2146 |
2313 | 2147 static void |
2148 mainwin_playlist_prev(void) | |
2149 { | |
2150 playlist_prev(playlist_get_active()); | |
2151 } | |
2152 | |
2153 static void | |
2154 mainwin_playlist_next(void) | |
2155 { | |
2156 playlist_next(playlist_get_active()); | |
2157 } | |
2158 | |
2159 void | |
2160 mainwin_setup_menus(void) | |
2161 { | |
2162 set_timer_mode(cfg.timer_mode); | |
2163 | |
2164 /* View menu */ | |
2165 | |
2166 check_set(toggleaction_group_others, "view always on top", cfg.always_on_top); | |
2167 check_set(toggleaction_group_others, "view put on all workspaces", cfg.sticky); | |
2168 check_set(toggleaction_group_others, "roll up player", cfg.player_shaded); | |
2169 check_set(toggleaction_group_others, "roll up playlist editor", cfg.playlist_shaded); | |
2170 check_set(toggleaction_group_others, "roll up equalizer", cfg.equalizer_shaded); | |
2171 check_set(toggleaction_group_others, "view easy move", cfg.easy_move); | |
2172 check_set(toggleaction_group_others, "view doublesize", cfg.doublesize); | |
2173 | |
2174 /* Songname menu */ | |
2175 | |
2176 check_set(toggleaction_group_others, "autoscroll songname", cfg.autoscroll); | |
2177 check_set(toggleaction_group_others, "stop after current song", cfg.stopaftersong); | |
2178 | |
2179 /* Playback menu */ | |
2180 | |
2181 check_set(toggleaction_group_others, "playback repeat", cfg.repeat); | |
2182 check_set(toggleaction_group_others, "playback shuffle", cfg.shuffle); | |
2183 check_set(toggleaction_group_others, "playback no playlist advance", cfg.no_playlist_advance); | |
2184 | |
2185 /* Visualization menu */ | |
2186 | |
2187 switch ( cfg.vis_type ) | |
2188 { | |
2189 case VIS_ANALYZER: | |
2190 check_set(radioaction_group_vismode, "vismode analyzer", TRUE); | |
2191 break; | |
2192 case VIS_SCOPE: | |
2193 check_set(radioaction_group_vismode, "vismode scope", TRUE); | |
2194 break; | |
2195 case VIS_VOICEPRINT: | |
2196 check_set(radioaction_group_vismode, "vismode voiceprint", TRUE); | |
2197 break; | |
2198 case VIS_OFF: | |
2199 default: | |
2200 check_set(radioaction_group_vismode, "vismode off", TRUE); | |
2201 break; | |
2202 } | |
2203 | |
2204 switch ( cfg.analyzer_mode ) | |
2205 { | |
2206 case ANALYZER_FIRE: | |
2207 check_set(radioaction_group_anamode, "anamode fire", TRUE); | |
2208 break; | |
2209 case ANALYZER_VLINES: | |
2210 check_set(radioaction_group_anamode, "anamode vertical lines", TRUE); | |
2211 break; | |
2212 case ANALYZER_NORMAL: | |
2213 default: | |
2214 check_set(radioaction_group_anamode, "anamode normal", TRUE); | |
2215 break; | |
2216 } | |
2217 | |
2218 switch ( cfg.analyzer_type ) | |
2219 { | |
2220 case ANALYZER_BARS: | |
2221 check_set(radioaction_group_anatype, "anatype bars", TRUE); | |
2222 break; | |
2223 case ANALYZER_LINES: | |
2224 default: | |
2225 check_set(radioaction_group_anatype, "anatype lines", TRUE); | |
2226 break; | |
2227 } | |
2228 | |
2229 check_set(toggleaction_group_others, "anamode peaks", cfg.analyzer_peaks ); | |
2230 | |
2231 switch ( cfg.scope_mode ) | |
2232 { | |
2233 case SCOPE_LINE: | |
2234 check_set(radioaction_group_scomode, "scomode line", TRUE); | |
2235 break; | |
2236 case SCOPE_SOLID: | |
2237 check_set(radioaction_group_scomode, "scomode solid", TRUE); | |
2238 break; | |
2239 case SCOPE_DOT: | |
2240 default: | |
2241 check_set(radioaction_group_scomode, "scomode dot", TRUE); | |
2242 break; | |
2243 } | |
2244 | |
2245 switch ( cfg.voiceprint_mode ) | |
2246 { | |
2247 case VOICEPRINT_FIRE: | |
2248 check_set(radioaction_group_vprmode, "vprmode fire", TRUE); | |
2249 break; | |
2250 case VOICEPRINT_ICE: | |
2251 check_set(radioaction_group_vprmode, "vprmode ice", TRUE); | |
2252 break; | |
2253 case VOICEPRINT_NORMAL: | |
2254 default: | |
2255 check_set(radioaction_group_vprmode, "vprmode normal", TRUE); | |
2256 break; | |
2257 } | |
2258 | |
2259 switch ( cfg.vu_mode ) | |
2260 { | |
2261 case VU_SMOOTH: | |
2262 check_set(radioaction_group_wshmode, "wshmode smooth", TRUE); | |
2263 break; | |
2264 case VU_NORMAL: | |
2265 default: | |
2266 check_set(radioaction_group_wshmode, "wshmode normal", TRUE); | |
2267 break; | |
2268 } | |
2269 | |
2270 switch ( cfg.vis_refresh ) | |
2271 { | |
2272 case REFRESH_HALF: | |
2273 check_set(radioaction_group_refrate, "refrate half", TRUE); | |
2274 break; | |
2275 case REFRESH_QUARTER: | |
2276 check_set(radioaction_group_refrate, "refrate quarter", TRUE); | |
2277 break; | |
2278 case REFRESH_EIGTH: | |
2279 check_set(radioaction_group_refrate, "refrate eighth", TRUE); | |
2280 break; | |
2281 case REFRESH_FULL: | |
2282 default: | |
2283 check_set(radioaction_group_refrate, "refrate full", TRUE); | |
2284 break; | |
2285 } | |
2286 | |
2287 switch ( cfg.analyzer_falloff ) | |
2288 { | |
2289 case FALLOFF_SLOW: | |
2290 check_set(radioaction_group_anafoff, "anafoff slow", TRUE); | |
2291 break; | |
2292 case FALLOFF_MEDIUM: | |
2293 check_set(radioaction_group_anafoff, "anafoff medium", TRUE); | |
2294 break; | |
2295 case FALLOFF_FAST: | |
2296 check_set(radioaction_group_anafoff, "anafoff fast", TRUE); | |
2297 break; | |
2298 case FALLOFF_FASTEST: | |
2299 check_set(radioaction_group_anafoff, "anafoff fastest", TRUE); | |
2300 break; | |
2301 case FALLOFF_SLOWEST: | |
2302 default: | |
2303 check_set(radioaction_group_anafoff, "anafoff slowest", TRUE); | |
2304 break; | |
2305 } | |
2306 | |
2307 switch ( cfg.peaks_falloff ) | |
2308 { | |
2309 case FALLOFF_SLOW: | |
2310 check_set(radioaction_group_peafoff, "peafoff slow", TRUE); | |
2311 break; | |
2312 case FALLOFF_MEDIUM: | |
2313 check_set(radioaction_group_peafoff, "peafoff medium", TRUE); | |
2314 break; | |
2315 case FALLOFF_FAST: | |
2316 check_set(radioaction_group_peafoff, "peafoff fast", TRUE); | |
2317 break; | |
2318 case FALLOFF_FASTEST: | |
2319 check_set(radioaction_group_peafoff, "peafoff fastest", TRUE); | |
2320 break; | |
2321 case FALLOFF_SLOWEST: | |
2322 default: | |
2323 check_set(radioaction_group_peafoff, "peafoff slowest", TRUE); | |
2324 break; | |
2325 } | |
2326 | |
2327 } | |
2328 | |
2911 | 2329 static void mainwin_info_double_clicked_cb(void) { |
2330 playlist_fileinfo_current(playlist_get_active()); | |
2331 } | |
2332 | |
2333 static void mainwin_info_right_clicked_cb(void) { | |
2334 gint x, y; | |
2335 gdk_window_get_pointer(NULL, &x, &y, NULL); | |
2336 ui_manager_popup_menu_show(GTK_MENU(mainwin_songname_menu), x, y, 3, GDK_CURRENT_TIME); | |
2337 } | |
2338 | |
2313 | 2339 static void |
2340 mainwin_create_widgets(void) | |
2341 { | |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2342 mainwin_menubtn = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2343 ui_skinned_push_button_setup(mainwin_menubtn, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2344 6, 3, 9, 9, 0, 0, 0, 9, SKIN_TITLEBAR); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2345 g_signal_connect(mainwin_menubtn, "clicked", mainwin_menubtn_cb, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2346 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2347 mainwin_minimize = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2348 ui_skinned_push_button_setup(mainwin_minimize, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2349 244, 3, 9, 9, 9, 0, 9, 9, SKIN_TITLEBAR); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2350 g_signal_connect(mainwin_minimize, "clicked", mainwin_minimize_cb, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2351 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2352 mainwin_shade = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2353 ui_skinned_push_button_setup(mainwin_shade, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2354 254, 3, 9, 9, 0, |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2355 cfg.player_shaded ? 27 : 18, 9, cfg.player_shaded ? 27 : 18, SKIN_TITLEBAR); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2356 g_signal_connect(mainwin_shade, "clicked", mainwin_shade_toggle, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2357 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2358 mainwin_close = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2359 ui_skinned_push_button_setup(mainwin_close, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2360 264, 3, 9, 9, 18, 0, 18, 9, SKIN_TITLEBAR); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2361 g_signal_connect(mainwin_close, "clicked", mainwin_quit_cb, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2362 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2363 mainwin_rew = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2364 ui_skinned_push_button_setup(mainwin_rew, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2365 16, 88, 23, 18, 0, 0, 0, 18, SKIN_CBUTTONS); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2366 g_signal_connect(mainwin_rew, "pressed", mainwin_rev_pushed, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2367 g_signal_connect(mainwin_rew, "released", mainwin_rev_release, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2368 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2369 mainwin_fwd = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2370 ui_skinned_push_button_setup(mainwin_fwd, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2371 108, 88, 22, 18, 92, 0, 92, 18, SKIN_CBUTTONS); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2372 g_signal_connect(mainwin_fwd, "pressed", mainwin_fwd_pushed, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2373 g_signal_connect(mainwin_fwd, "released", mainwin_fwd_release, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2374 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2375 mainwin_play = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2376 ui_skinned_push_button_setup(mainwin_play, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2377 39, 88, 23, 18, 23, 0, 23, 18, SKIN_CBUTTONS); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2378 g_signal_connect(mainwin_play, "clicked", mainwin_play_pushed, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2379 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2380 mainwin_pause = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2381 ui_skinned_push_button_setup(mainwin_pause, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2382 62, 88, 23, 18, 46, 0, 46, 18, SKIN_CBUTTONS); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2383 g_signal_connect(mainwin_pause, "clicked", playback_pause, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2384 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2385 mainwin_stop = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2386 ui_skinned_push_button_setup(mainwin_stop, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2387 85, 88, 23, 18, 69, 0, 69, 18, SKIN_CBUTTONS); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2388 g_signal_connect(mainwin_stop, "clicked", mainwin_stop_pushed, NULL ); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2389 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2390 mainwin_eject = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2391 ui_skinned_push_button_setup(mainwin_eject, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2392 136, 89, 22, 16, 114, 0, 114, 16, SKIN_CBUTTONS); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2393 g_signal_connect(mainwin_eject, "clicked", mainwin_eject_pushed, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2394 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2395 mainwin_srew = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2396 ui_skinned_small_button_setup(mainwin_srew, SKINNED_WINDOW(mainwin)->fixed, 169, 4, 8, 7); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2397 g_signal_connect(mainwin_srew, "clicked", mainwin_playlist_prev, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2398 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2399 mainwin_splay = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2400 ui_skinned_small_button_setup(mainwin_splay, SKINNED_WINDOW(mainwin)->fixed, 177, 4, 10, 7); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2401 g_signal_connect(mainwin_splay, "clicked", mainwin_play_pushed, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2402 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2403 mainwin_spause = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2404 ui_skinned_small_button_setup(mainwin_spause, SKINNED_WINDOW(mainwin)->fixed, 187, 4, 10, 7); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2405 g_signal_connect(mainwin_spause, "clicked", playback_pause, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2406 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2407 mainwin_sstop = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2408 ui_skinned_small_button_setup(mainwin_sstop, SKINNED_WINDOW(mainwin)->fixed, 197, 4, 9, 7); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2409 g_signal_connect(mainwin_sstop, "clicked", mainwin_stop_pushed, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2410 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2411 mainwin_sfwd = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2412 ui_skinned_small_button_setup(mainwin_sfwd, SKINNED_WINDOW(mainwin)->fixed, 206, 4, 8, 7); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2413 g_signal_connect(mainwin_sfwd, "clicked", mainwin_playlist_next, NULL); |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2414 |
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2415 mainwin_seject = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2416 ui_skinned_small_button_setup(mainwin_seject, SKINNED_WINDOW(mainwin)->fixed, 216, 4, 9, 7); |
2844
22da7cd0eca0
UiSkinnedButton can now work as SButton
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
2417 g_signal_connect(mainwin_seject, "clicked", mainwin_eject_pushed, NULL); |
2313 | 2418 |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2419 mainwin_shuffle = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2420 ui_skinned_toggle_button_setup(mainwin_shuffle, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2421 164, 89, 46, 15, 28, 0, 28, 15, 28, 30, 28, 45, SKIN_SHUFREP); |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2422 g_signal_connect(mainwin_shuffle, "clicked", mainwin_shuffle_pushed_cb, NULL); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2423 |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2424 mainwin_repeat = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2425 ui_skinned_toggle_button_setup(mainwin_repeat, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2426 210, 89, 28, 15, 0, 0, 0, 15, 0, 30, 0, 45, SKIN_SHUFREP); |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2427 g_signal_connect(mainwin_repeat, "clicked", mainwin_repeat_pushed_cb, NULL); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2428 |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2429 mainwin_eq = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2430 ui_skinned_toggle_button_setup(mainwin_eq, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2431 219, 58, 23, 12, 0, 61, 46, 61, 0, 73, 46, 73, SKIN_SHUFREP); |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2432 g_signal_connect(mainwin_eq, "clicked", mainwin_equalizer_pushed_cb, NULL); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2433 UI_SKINNED_BUTTON(mainwin_eq)->inside = cfg.equalizer_visible; |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2434 |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2435 mainwin_pl = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2436 ui_skinned_toggle_button_setup(mainwin_pl, SKINNED_WINDOW(mainwin)->fixed, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2437 242, 58, 23, 12, 23, 61, 69, 61, 23, 73, 69, 73, SKIN_SHUFREP); |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2438 g_signal_connect(mainwin_pl, "clicked", mainwin_playlist_pushed_cb, NULL); |
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2439 UI_SKINNED_BUTTON(mainwin_pl)->inside = cfg.playlist_visible; |
2313 | 2440 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2441 mainwin_info = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 112, 27, 153, 1, SKIN_TEXT); |
2911 | 2442 ui_skinned_textbox_set_scroll(mainwin_info, cfg.autoscroll); |
4080 | 2443 ui_skinned_textbox_set_xfont(mainwin_info, !cfg.mainwin_use_bitmapfont, cfg.mainwin_font); |
2911 | 2444 g_signal_connect(mainwin_info, "double-clicked", mainwin_info_double_clicked_cb, NULL); |
2445 g_signal_connect(mainwin_info, "right-clicked", mainwin_info_right_clicked_cb, NULL); | |
2313 | 2446 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2447 mainwin_othertext = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 112, 43, 153, 1, SKIN_TEXT); |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2448 |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2449 mainwin_rate_text = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 111, 43, 15, 0, SKIN_TEXT); |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2450 |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2451 mainwin_freq_text = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 156, 43, 10, 0, SKIN_TEXT); |
2313 | 2452 |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2453 mainwin_menurow = ui_skinned_menurow_new(SKINNED_WINDOW(mainwin)->fixed, 10, 22, 304, 0, 304, 44, SKIN_TITLEBAR); |
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2454 g_signal_connect(mainwin_menurow, "change", G_CALLBACK(mainwin_mr_change), NULL); |
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2455 g_signal_connect(mainwin_menurow, "release", G_CALLBACK(mainwin_mr_release), NULL); |
2313 | 2456 |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2457 mainwin_volume = ui_skinned_horizontal_slider_new(SKINNED_WINDOW(mainwin)->fixed, 107, 57, 68, |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2458 13, 15, 422, 0, 422, 14, 11, 15, 0, 0, 51, |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2459 mainwin_volume_frame_cb, SKIN_VOLUME); |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2460 g_signal_connect(mainwin_volume, "motion", G_CALLBACK(mainwin_volume_motion_cb), NULL); |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2461 g_signal_connect(mainwin_volume, "release", G_CALLBACK(mainwin_volume_release_cb), NULL); |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2462 |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2463 mainwin_balance = ui_skinned_horizontal_slider_new(SKINNED_WINDOW(mainwin)->fixed, 177, 57, 38, |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2464 13, 15, 422, 0, 422, 14, 11, 15, 9, 0, 24, |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2465 mainwin_balance_frame_cb, SKIN_BALANCE); |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2466 g_signal_connect(mainwin_balance, "motion", G_CALLBACK(mainwin_balance_motion_cb), NULL); |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3042
diff
changeset
|
2467 g_signal_connect(mainwin_balance, "release", G_CALLBACK(mainwin_balance_release_cb), NULL); |
2313 | 2468 |
3073
da99b90d63d3
replace MonoStereo with UiSkinnedMonoStereo
Tomasz Mon <desowin@gmail.com>
parents:
3072
diff
changeset
|
2469 mainwin_monostereo = ui_skinned_monostereo_new(SKINNED_WINDOW(mainwin)->fixed, 212, 41, SKIN_MONOSTEREO); |
2313 | 2470 |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3070
diff
changeset
|
2471 mainwin_playstatus = ui_skinned_playstatus_new(SKINNED_WINDOW(mainwin)->fixed, 24, 28); |
2313 | 2472 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2473 mainwin_minus_num = ui_skinned_number_new(SKINNED_WINDOW(mainwin)->fixed, 36, 26, SKIN_NUMBERS); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2474 g_signal_connect(mainwin_minus_num, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2475 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2476 mainwin_10min_num = ui_skinned_number_new(SKINNED_WINDOW(mainwin)->fixed, 48, 26, SKIN_NUMBERS); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2477 g_signal_connect(mainwin_10min_num, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2478 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2479 mainwin_min_num = ui_skinned_number_new(SKINNED_WINDOW(mainwin)->fixed, 60, 26, SKIN_NUMBERS); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2480 g_signal_connect(mainwin_min_num, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2481 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2482 mainwin_10sec_num = ui_skinned_number_new(SKINNED_WINDOW(mainwin)->fixed, 78, 26, SKIN_NUMBERS); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2483 g_signal_connect(mainwin_10sec_num, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2484 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2485 mainwin_sec_num = ui_skinned_number_new(SKINNED_WINDOW(mainwin)->fixed, 90, 26, SKIN_NUMBERS); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2486 g_signal_connect(mainwin_sec_num, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
2313 | 2487 |
2964
7926d46872c8
right click on mainwin_about brings menu
Tomasz Mon <desowin@gmail.com>
parents:
2959
diff
changeset
|
2488 mainwin_about = ui_skinned_button_new(); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2489 ui_skinned_small_button_setup(mainwin_about, SKINNED_WINDOW(mainwin)->fixed, 247, 83, 20, 25); |
2964
7926d46872c8
right click on mainwin_about brings menu
Tomasz Mon <desowin@gmail.com>
parents:
2959
diff
changeset
|
2490 g_signal_connect(mainwin_about, "clicked", show_about_window, NULL); |
2313 | 2491 |
3020 | 2492 mainwin_vis = ui_vis_new(SKINNED_WINDOW(mainwin)->fixed, 24, 43, 76); |
3024
883713b145f8
use button-press-event signals
Tomasz Mon <desowin@gmail.com>
parents:
3023
diff
changeset
|
2493 g_signal_connect(mainwin_vis, "button-press-event", G_CALLBACK(mainwin_vis_cb), NULL); |
3054 | 2494 mainwin_svis = ui_svis_new(SKINNED_WINDOW(mainwin)->fixed, 79, 5); |
2495 g_signal_connect(mainwin_svis, "button-press-event", G_CALLBACK(mainwin_vis_cb), NULL); | |
2313 | 2496 |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2497 mainwin_position = ui_skinned_horizontal_slider_new(SKINNED_WINDOW(mainwin)->fixed, 16, 72, 248, |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2498 10, 248, 0, 278, 0, 29, 10, 10, 0, 0, 219, |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2499 NULL, SKIN_POSBAR); |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2500 g_signal_connect(mainwin_position, "motion", G_CALLBACK(mainwin_position_motion_cb), NULL); |
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2501 g_signal_connect(mainwin_position, "release", G_CALLBACK(mainwin_position_release_cb), NULL); |
2313 | 2502 |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2503 mainwin_sposition = ui_skinned_horizontal_slider_new(SKINNED_WINDOW(mainwin)->fixed, 226, 4, 17, |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2504 7, 17, 36, 17, 36, 3, 7, 36, 0, 1, 13, |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2505 mainwin_spos_frame_cb, SKIN_TITLEBAR); |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2506 g_signal_connect(mainwin_sposition, "motion", G_CALLBACK(mainwin_spos_motion_cb), NULL); |
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2507 g_signal_connect(mainwin_sposition, "release", G_CALLBACK(mainwin_spos_release_cb), NULL); |
2313 | 2508 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2509 mainwin_stime_min = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 130, 4, 15, FALSE, SKIN_TEXT); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2510 g_signal_connect(mainwin_stime_min, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2511 |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
3004
diff
changeset
|
2512 mainwin_stime_sec = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 147, 4, 10, FALSE, SKIN_TEXT); |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
2513 g_signal_connect(mainwin_stime_sec, "button-press-event", G_CALLBACK(change_timer_mode_cb), NULL); |
2313 | 2514 |
2515 err = gtk_message_dialog_new(GTK_WINDOW(mainwin), GTK_DIALOG_DESTROY_WITH_PARENT|GTK_DIALOG_MODAL, | |
2516 GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, _("Error in Audacious.")); | |
2517 | |
2518 | |
2519 gtk_window_set_position(GTK_WINDOW(err), GTK_WIN_POS_CENTER); | |
2520 /* Dang well better set an error message or you'll see this */ | |
2521 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(err), | |
2522 "Boo! Bad stuff! Booga Booga!"); | |
3157
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2523 |
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2524 hook_associate("playback audio error", (void *) mainwin_stop_pushed, NULL); |
f9d34bc5079f
Remove check for playback->error.
William Pitcock <nenolod@atheme-project.org>
parents:
3151
diff
changeset
|
2525 hook_associate("playback audio error", (void *) run_no_output_device_dialog, NULL); |
3718
a98b1189777b
add new hook, playback seek, and subscribe mainwin_update_song_info() to it.
William Pitcock <nenolod@atheme.org>
parents:
3716
diff
changeset
|
2526 |
a98b1189777b
add new hook, playback seek, and subscribe mainwin_update_song_info() to it.
William Pitcock <nenolod@atheme.org>
parents:
3716
diff
changeset
|
2527 hook_associate("playback seek", (HookFunction) mainwin_update_song_info, NULL); |
2313 | 2528 } |
2529 | |
2530 static void | |
2531 mainwin_create_window(void) | |
2532 { | |
2533 gint width, height; | |
2534 | |
3068
c5189bc4100b
Refactor skinned window code.
William Pitcock <nenolod@atheme-project.org>
parents:
3065
diff
changeset
|
2535 mainwin = ui_skinned_window_new("player"); |
2313 | 2536 gtk_window_set_title(GTK_WINDOW(mainwin), _("Audacious")); |
2537 gtk_window_set_role(GTK_WINDOW(mainwin), "player"); | |
2538 gtk_window_set_resizable(GTK_WINDOW(mainwin), FALSE); | |
2539 | |
2540 width = cfg.player_shaded ? MAINWIN_SHADED_WIDTH : bmp_active_skin->properties.mainwin_width; | |
2541 height = cfg.player_shaded ? MAINWIN_SHADED_HEIGHT : bmp_active_skin->properties.mainwin_height; | |
2542 | |
2543 if (cfg.doublesize) { | |
2544 width *= 2; | |
2545 height *= 2; | |
2546 } | |
2547 | |
2548 gtk_widget_set_size_request(mainwin, width, height); | |
2549 | |
2550 if (cfg.player_x != -1 && cfg.save_window_position) | |
2551 gtk_window_move(GTK_WINDOW(mainwin), cfg.player_x, cfg.player_y); | |
2552 | |
2553 g_signal_connect(mainwin, "destroy", G_CALLBACK(mainwin_destroy), NULL); | |
2554 g_signal_connect(mainwin, "button_press_event", | |
2555 G_CALLBACK(mainwin_mouse_button_press), NULL); | |
2556 g_signal_connect(mainwin, "scroll_event", | |
2557 G_CALLBACK(mainwin_scrolled), NULL); | |
2558 g_signal_connect(mainwin, "button_release_event", | |
2559 G_CALLBACK(mainwin_mouse_button_release), NULL); | |
2560 | |
2561 bmp_drag_dest_set(mainwin); | |
2562 | |
2563 g_signal_connect(mainwin, "key_press_event", | |
2564 G_CALLBACK(mainwin_keypress), NULL); | |
3165
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3157
diff
changeset
|
2565 |
8775dfc57ead
Remove mainwin_set_info_text() craq. Still some work to do.
William Pitcock <nenolod@atheme-project.org>
parents:
3157
diff
changeset
|
2566 ui_main_evlistener_init(); |
2313 | 2567 } |
2568 | |
2569 void | |
2570 mainwin_create(void) | |
2571 { | |
2572 mainwin_create_window(); | |
2573 | |
2574 gtk_window_add_accel_group( GTK_WINDOW(mainwin) , ui_manager_get_accel_group() ); | |
2575 | |
2576 mainwin_create_widgets(); | |
2577 } | |
2578 | |
3018
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2579 gboolean |
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2580 mainwin_update_song_info(void) |
2313 | 2581 { |
3018
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2582 gint time = playback_get_time(); |
2313 | 2583 gint length, t; |
2584 gchar stime_prefix; | |
2585 | |
3192
9f9b46506892
mainwin_update_song_info() should not return FALSE when time < 0 otherwise neither playtime display nor hide seekbar on streaming work.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3191
diff
changeset
|
2586 if (!playback_get_playing()) |
3018
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2587 return FALSE; |
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2588 |
2313 | 2589 if (ab_position_a != -1 && ab_position_b != -1 && time > ab_position_b) |
2590 playback_seek(ab_position_a/1000); | |
2591 | |
3716
9489aae0d872
introduce playback_get_length()
Tomasz Mon <desowin@gmail.com>
parents:
3702
diff
changeset
|
2592 length = playback_get_length(); |
9489aae0d872
introduce playback_get_length()
Tomasz Mon <desowin@gmail.com>
parents:
3702
diff
changeset
|
2593 if (length == -1 && cfg.timer_mode == TIMER_REMAINING) |
9489aae0d872
introduce playback_get_length()
Tomasz Mon <desowin@gmail.com>
parents:
3702
diff
changeset
|
2594 cfg.timer_mode = TIMER_ELAPSED; |
9489aae0d872
introduce playback_get_length()
Tomasz Mon <desowin@gmail.com>
parents:
3702
diff
changeset
|
2595 |
3018
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2596 playlistwin_set_time(time, length, cfg.timer_mode); |
2313 | 2597 |
2598 if (cfg.timer_mode == TIMER_REMAINING) { | |
2599 if (length != -1) { | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2600 ui_skinned_number_set_number(mainwin_minus_num, 11); |
2313 | 2601 t = length - time; |
2602 stime_prefix = '-'; | |
2603 } | |
2604 else { | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2605 ui_skinned_number_set_number(mainwin_minus_num, 10); |
2313 | 2606 t = time; |
2607 stime_prefix = ' '; | |
2608 } | |
2609 } | |
2610 else { | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2611 ui_skinned_number_set_number(mainwin_minus_num, 10); |
2313 | 2612 t = time; |
2613 stime_prefix = ' '; | |
2614 } | |
2615 t /= 1000; | |
2616 | |
2617 /* Show the time in the format HH:MM when we have more than 100 | |
2618 * minutes. */ | |
2619 if (t >= 100 * 60) | |
2620 t /= 60; | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2621 ui_skinned_number_set_number(mainwin_10min_num, t / 600); |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2622 ui_skinned_number_set_number(mainwin_min_num, (t / 60) % 10); |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2623 ui_skinned_number_set_number(mainwin_10sec_num, (t / 10) % 6); |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
3000
diff
changeset
|
2624 ui_skinned_number_set_number(mainwin_sec_num, t % 10); |
2313 | 2625 |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2626 if (!UI_SKINNED_HORIZONTAL_SLIDER(mainwin_sposition)->pressed) { |
2313 | 2627 gchar *time_str; |
2628 | |
2629 time_str = g_strdup_printf("%c%2.2d", stime_prefix, t / 60); | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2630 ui_skinned_textbox_set_text(mainwin_stime_min, time_str); |
2313 | 2631 g_free(time_str); |
2632 | |
2633 time_str = g_strdup_printf("%2.2d", t % 60); | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
2634 ui_skinned_textbox_set_text(mainwin_stime_sec, time_str); |
2313 | 2635 g_free(time_str); |
2636 } | |
2637 | |
2638 time /= 1000; | |
2639 length /= 1000; | |
2640 if (length > 0) { | |
2641 if (time > length) { | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2642 ui_skinned_horizontal_slider_set_position(mainwin_position, 219); |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2643 ui_skinned_horizontal_slider_set_position(mainwin_sposition, 13); |
2313 | 2644 } |
2645 /* update the slider position ONLY if there is not a seek in progress */ | |
2646 else if (seek_state == MAINWIN_SEEK_NIL) { | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2647 ui_skinned_horizontal_slider_set_position(mainwin_position, (time * 219) / length); |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2648 ui_skinned_horizontal_slider_set_position(mainwin_sposition, |
2313 | 2649 ((time * 12) / length) + 1); |
2650 } | |
2651 } | |
2652 else { | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2653 ui_skinned_horizontal_slider_set_position(mainwin_position, 0); |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
2654 ui_skinned_horizontal_slider_set_position(mainwin_sposition, 1); |
2313 | 2655 } |
3018
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2656 |
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3006
diff
changeset
|
2657 return TRUE; |
2313 | 2658 } |
2659 | |
2660 static gboolean | |
2661 mainwin_idle_func(gpointer data) | |
2662 { | |
2663 GDK_THREADS_ENTER(); | |
2664 | |
2665 /* tristate buttons seek */ | |
2666 if ( seek_state != MAINWIN_SEEK_NIL ) | |
2667 { | |
2668 GTimeVal now_time; | |
2669 GTimeVal delta_time; | |
2670 gulong now_dur; | |
2671 g_get_current_time(&now_time); | |
2672 | |
2673 delta_time.tv_usec = now_time.tv_usec - cb_time.tv_usec; | |
2674 delta_time.tv_sec = now_time.tv_sec - cb_time.tv_sec; | |
2675 | |
2676 now_dur = labs((delta_time.tv_sec * 1000) + (glong) (delta_time.tv_usec / 1000)); | |
2677 | |
2678 if ( now_dur > TRISTATE_THRESHOLD ) | |
2679 { | |
2680 gint np; | |
2681 if (seek_state == MAINWIN_SEEK_REV) | |
2682 np = seek_initial_pos - labs((gulong)(now_dur/100)); /* seek back */ | |
2683 else | |
2684 np = seek_initial_pos + labs((gulong)(now_dur/100)); /* seek forward */ | |
2685 | |
2686 /* boundaries check */ | |
2687 if (np < 0 ) | |
2688 np = 0; | |
2689 else if ( np > 219 ) | |
2690 np = 219; | |
2691 | |
3040
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2692 ui_skinned_horizontal_slider_set_position( mainwin_position , np ); |
067e0186623a
import UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3026
diff
changeset
|
2693 mainwin_position_motion_cb( mainwin_position, np ); |
2313 | 2694 } |
2695 } | |
2696 | |
2697 GDK_THREADS_LEAVE(); | |
2698 | |
2699 /* | |
2700 if (seek_state == MAINWIN_SEEK_REV) | |
2701 playback_seek(CLAMP(playback_get_time() - 1000, 0, | |
2702 playlist_get_current_length()) / 1000); | |
2703 else if (seek_state == MAINWIN_SEEK_FWD) | |
2704 playback_seek(CLAMP(playback_get_time() + 1000, 0, | |
2705 playlist_get_current_length()) / 1000); | |
2706 */ | |
2707 | |
2708 return TRUE; | |
2709 } | |
2710 | |
2711 | |
2353
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2712 void |
3765
b4a9d4be27ab
forgot to export a symbol. now I am done. really.
William Pitcock <nenolod@atheme.org>
parents:
3724
diff
changeset
|
2713 util_menu_main_show( gint x , gint y , guint button , guint time ) |
2353
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2714 { |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2715 /* convenience function that shows the main popup menu wherever requested */ |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2716 ui_manager_popup_menu_show( GTK_MENU(mainwin_general_menu), |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2717 x , y , button , time ); |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2718 return; |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2719 } |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2720 |
0fb258122933
[svn] - added audacious_menu_main_show(x,y,button,time) in util.h, convenience function to display the audacious main popup menu
giacomo
parents:
2345
diff
changeset
|
2721 |
2313 | 2722 /* toggleactionentries actions */ |
2723 | |
2724 void | |
2725 action_anamode_peaks( GtkToggleAction * action ) | |
2726 { | |
2727 cfg.analyzer_peaks = gtk_toggle_action_get_active( action ); | |
2728 } | |
2729 | |
2730 void | |
2731 action_autoscroll_songname( GtkToggleAction * action ) | |
2732 { | |
2733 mainwin_set_title_scroll(gtk_toggle_action_get_active(action)); | |
2734 playlistwin_set_sinfo_scroll(cfg.autoscroll); /* propagate scroll setting to playlistwin_sinfo */ | |
2735 } | |
2736 | |
2737 void | |
2738 action_playback_noplaylistadvance( GtkToggleAction * action ) | |
2739 { | |
2740 cfg.no_playlist_advance = gtk_toggle_action_get_active( action ); | |
2741 } | |
2742 | |
2743 void | |
2744 action_playback_repeat( GtkToggleAction * action ) | |
2745 { | |
2746 cfg.repeat = gtk_toggle_action_get_active( action ); | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2747 UI_SKINNED_BUTTON(mainwin_repeat)->inside = cfg.repeat; |
3406
3dc6ef418ec9
redraw mainwin_repeat and mainwin_shuffle when using hotkeys
Tomasz Mon <desowin@gmail.com>
parents:
3367
diff
changeset
|
2748 gtk_widget_queue_draw(mainwin_repeat); |
2313 | 2749 } |
2750 | |
2751 void | |
2752 action_playback_shuffle( GtkToggleAction * action ) | |
2753 { | |
2754 cfg.shuffle = gtk_toggle_action_get_active( action ); | |
2755 playlist_set_shuffle(cfg.shuffle); | |
2843
91ef09fe7936
UiSkinnedButton can now work as TButton
Tomasz Mon <desowin@gmail.com>
parents:
2842
diff
changeset
|
2756 UI_SKINNED_BUTTON(mainwin_shuffle)->inside = cfg.shuffle; |
3406
3dc6ef418ec9
redraw mainwin_repeat and mainwin_shuffle when using hotkeys
Tomasz Mon <desowin@gmail.com>
parents:
3367
diff
changeset
|
2757 gtk_widget_queue_draw(mainwin_shuffle); |
2313 | 2758 } |
2759 | |
2760 void | |
2761 action_stop_after_current_song( GtkToggleAction * action ) | |
2762 { | |
2763 cfg.stopaftersong = gtk_toggle_action_get_active( action ); | |
2764 } | |
2765 | |
2766 void | |
2767 action_view_always_on_top( GtkToggleAction * action ) | |
2768 { | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2769 UI_SKINNED_MENUROW(mainwin_menurow)->always_selected = gtk_toggle_action_get_active( action ); |
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2770 cfg.always_on_top = UI_SKINNED_MENUROW(mainwin_menurow)->always_selected; |
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2771 gtk_widget_queue_draw(mainwin_menurow); |
2907
21b27e97bfb9
Remove pointless starting_up variable.
William Pitcock <nenolod@atheme.org>
parents:
2906
diff
changeset
|
2772 hint_set_always(cfg.always_on_top); |
2313 | 2773 } |
2774 | |
2775 void | |
2776 action_view_doublesize( GtkToggleAction * action ) | |
2777 { | |
3069
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2778 UI_SKINNED_MENUROW(mainwin_menurow)->doublesize_selected = gtk_toggle_action_get_active( action ); |
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2779 gtk_widget_queue_draw(mainwin_menurow); |
093759970e44
replace Menurow with UiSkinnedMenurow
Tomasz Mon <desowin@gmail.com>
parents:
3057
diff
changeset
|
2780 set_doublesize(UI_SKINNED_MENUROW(mainwin_menurow)->doublesize_selected); |
2313 | 2781 gdk_flush(); |
2782 } | |
2783 | |
2784 void | |
2785 action_view_easymove( GtkToggleAction * action ) | |
2786 { | |
2787 cfg.easy_move = gtk_toggle_action_get_active( action ); | |
2788 } | |
2789 | |
2790 void | |
2791 action_view_on_all_workspaces( GtkToggleAction * action ) | |
2792 { | |
2793 cfg.sticky = gtk_toggle_action_get_active( action ); | |
2794 hint_set_sticky(cfg.sticky); | |
2795 } | |
2796 | |
2797 void | |
2798 action_roll_up_equalizer( GtkToggleAction * action ) | |
2799 { | |
2800 equalizerwin_set_shade_menu_cb(gtk_toggle_action_get_active(action)); | |
2801 } | |
2802 | |
2803 void | |
2804 action_roll_up_player( GtkToggleAction * action ) | |
2805 { | |
2806 mainwin_set_shade_menu_cb(gtk_toggle_action_get_active(action)); | |
2807 } | |
2808 | |
2809 void | |
2810 action_roll_up_playlist_editor( GtkToggleAction * action ) | |
2811 { | |
2812 playlistwin_set_shade(gtk_toggle_action_get_active(action)); | |
2813 } | |
2814 | |
2815 void | |
2816 action_show_equalizer( GtkToggleAction * action ) | |
2817 { | |
2818 if (gtk_toggle_action_get_active(action)) | |
2819 equalizerwin_real_show(); | |
2820 else | |
2821 equalizerwin_real_hide(); | |
2822 } | |
2823 | |
2824 void | |
2825 action_show_playlist_editor( GtkToggleAction * action ) | |
2826 { | |
2827 if (gtk_toggle_action_get_active(action)) | |
2828 playlistwin_show(); | |
2829 else | |
2830 playlistwin_hide(); | |
2831 } | |
2832 | |
2833 void | |
2834 action_show_player( GtkToggleAction * action ) | |
2835 { | |
2836 mainwin_show(gtk_toggle_action_get_active(action)); | |
2837 } | |
2838 | |
2839 | |
2840 /* radioactionentries actions (one callback for each radio group) */ | |
2841 | |
2842 void | |
2843 action_anafoff( GtkAction *action, GtkRadioAction *current ) | |
2844 { | |
2845 mainwin_vis_set_afalloff(gtk_radio_action_get_current_value(current)); | |
2846 } | |
2847 | |
2848 void | |
2849 action_anamode( GtkAction *action, GtkRadioAction *current ) | |
2850 { | |
2851 mainwin_vis_set_analyzer_mode(gtk_radio_action_get_current_value(current)); | |
2852 } | |
2853 | |
2854 void | |
2855 action_anatype( GtkAction *action, GtkRadioAction *current ) | |
2856 { | |
2857 mainwin_vis_set_analyzer_type(gtk_radio_action_get_current_value(current)); | |
2858 } | |
2859 | |
2860 void | |
2861 action_peafoff( GtkAction *action, GtkRadioAction *current ) | |
2862 { | |
2863 mainwin_vis_set_pfalloff(gtk_radio_action_get_current_value(current)); | |
2864 } | |
2865 | |
2866 void | |
2867 action_refrate( GtkAction *action, GtkRadioAction *current ) | |
2868 { | |
2869 mainwin_vis_set_refresh(gtk_radio_action_get_current_value(current)); | |
2870 } | |
2871 | |
2872 void | |
2873 action_scomode( GtkAction *action, GtkRadioAction *current ) | |
2874 { | |
2875 cfg.scope_mode = gtk_radio_action_get_current_value(current); | |
2876 } | |
2877 | |
2878 void | |
2879 action_vismode( GtkAction *action, GtkRadioAction *current ) | |
2880 { | |
2881 mainwin_vis_set_type_menu_cb(gtk_radio_action_get_current_value(current)); | |
2882 } | |
2883 | |
2884 void | |
2885 action_vprmode( GtkAction *action, GtkRadioAction *current ) | |
2886 { | |
2887 cfg.voiceprint_mode = gtk_radio_action_get_current_value(current); | |
2888 } | |
2889 | |
2890 void | |
2891 action_wshmode( GtkAction *action, GtkRadioAction *current ) | |
2892 { | |
2893 cfg.vu_mode = gtk_radio_action_get_current_value(current); | |
2894 } | |
2895 | |
2896 void | |
2897 action_viewtime( GtkAction *action, GtkRadioAction *current ) | |
2898 { | |
2899 set_timer_mode_menu_cb(gtk_radio_action_get_current_value(current)); | |
2900 } | |
2901 | |
2902 | |
2903 /* actionentries actions */ | |
2904 | |
2905 void | |
2906 action_about_audacious( void ) | |
2907 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2908 show_about_window(); |
2313 | 2909 } |
2910 | |
2911 void | |
2912 action_play_file( void ) | |
2913 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2914 run_filebrowser(PLAY_BUTTON); |
2313 | 2915 } |
2916 | |
2917 void | |
2918 action_play_location( void ) | |
2919 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2920 mainwin_show_add_url_window(); |
2313 | 2921 } |
2922 | |
2923 void | |
2924 action_ab_set( void ) | |
2925 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2926 Playlist *playlist = playlist_get_active(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2927 if (playlist_get_current_length(playlist) != -1) |
2313 | 2928 { |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2929 if (ab_position_a == -1) |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2930 { |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2931 ab_position_a = playback_get_time(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2932 ab_position_b = -1; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2933 mainwin_lock_info_text("LOOP-POINT A POSITION SET."); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2934 } |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2935 else if (ab_position_b == -1) |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2936 { |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2937 int time = playback_get_time(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2938 if (time > ab_position_a) |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2939 ab_position_b = time; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2940 mainwin_release_info_text(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2941 } |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2942 else |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2943 { |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2944 ab_position_a = playback_get_time(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2945 ab_position_b = -1; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2946 mainwin_lock_info_text("LOOP-POINT A POSITION RESET."); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2947 } |
2313 | 2948 } |
2949 } | |
2950 | |
2951 void | |
2952 action_ab_clear( void ) | |
2953 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2954 Playlist *playlist = playlist_get_active(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2955 if (playlist_get_current_length(playlist) != -1) |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2956 { |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2957 ab_position_a = ab_position_b = -1; |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2958 mainwin_release_info_text(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2959 } |
2313 | 2960 } |
2961 | |
2962 void | |
2963 action_current_track_info( void ) | |
2964 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2965 playlist_fileinfo_current(playlist_get_active()); |
2313 | 2966 } |
2967 | |
2968 void | |
2969 action_jump_to_file( void ) | |
2970 { | |
2500 | 2971 ui_jump_to_track(); |
2313 | 2972 } |
2973 | |
2974 void | |
2975 action_jump_to_playlist_start( void ) | |
2976 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2977 Playlist *playlist = playlist_get_active(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2978 playlist_set_position(playlist, 0); |
2313 | 2979 } |
2980 | |
2981 void | |
2982 action_jump_to_time( void ) | |
2983 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2984 mainwin_jump_to_time(); |
2313 | 2985 } |
2986 | |
2987 void | |
2988 action_playback_next( void ) | |
2989 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2990 Playlist *playlist = playlist_get_active(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2991 playlist_next(playlist); |
2313 | 2992 } |
2993 | |
2994 void | |
2995 action_playback_previous( void ) | |
2996 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2997 Playlist *playlist = playlist_get_active(); |
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
2998 playlist_prev(playlist); |
2313 | 2999 } |
3000 | |
3001 void | |
3002 action_playback_play( void ) | |
3003 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
3004 mainwin_play_pushed(); |
2313 | 3005 } |
3006 | |
3007 void | |
3008 action_playback_pause( void ) | |
3009 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
3010 playback_pause(); |
2313 | 3011 } |
3012 | |
3013 void | |
3014 action_playback_stop( void ) | |
3015 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
3016 mainwin_stop_pushed(); |
2313 | 3017 } |
3018 | |
3019 void | |
3020 action_preferences( void ) | |
3021 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
3022 show_prefs_window(); |
2313 | 3023 } |
3024 | |
3025 void | |
3026 action_quit( void ) | |
3027 { | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2373
diff
changeset
|
3028 mainwin_quit_cb(); |
2313 | 3029 } |