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