Mercurial > audlegacy
annotate audacious/main.c @ 2261:bdb2983612f0 trunk
[svn] - given some decent namespacing to playlist menus (part 1); removed last references to obsolete mainwin_accel
author | giacomo |
---|---|
date | Thu, 04 Jan 2007 05:29:13 -0800 |
parents | 4bc65cec8f7a |
children | 35b8c6307b18 |
rev | line source |
---|---|
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1 /* Audacious - Cross-platform multimedia player |
2252 | 2 * Copyright (C) 2005-2007 Audacious development team. |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
3 * |
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
4 * Based on BMP: |
0 | 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 | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
2088
diff
changeset
|
12 * the Free Software Foundation; under version 2 of the License. |
0 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
1459 | 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 22 */ |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 # include "config.h" | |
26 #endif | |
27 | |
28 #include "main.h" | |
29 | |
30 #include <glib.h> | |
31 #include <glib/gi18n.h> | |
32 #include <glib/gprintf.h> | |
33 #include <gdk/gdk.h> | |
34 #include <stdlib.h> | |
35 #include <string.h> | |
36 #include <getopt.h> | |
37 #include <ctype.h> | |
38 #include <time.h> | |
39 | |
40 #include <unistd.h> | |
41 #include <errno.h> | |
42 #include <sys/types.h> | |
43 #include <sys/stat.h> | |
44 #include <signal.h> | |
1640 | 45 |
46 #include "platform/smartinclude.h" | |
0 | 47 |
48 #include "libaudacious/configdb.h" | |
49 #include "libaudacious/beepctrl.h" | |
50 #include "libaudacious/util.h" | |
2146
e0e50e151bab
[svn] - move vfs from libaudacious to main audacious
nenolod
parents:
2127
diff
changeset
|
51 #include "vfs.h" |
0 | 52 |
53 #include "controlsocket.h" | |
54 #include "dnd.h" | |
55 #include "effect.h" | |
2236 | 56 #include "ui_equalizer.h" |
0 | 57 #include "general.h" |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
58 #include "genevent.h" |
0 | 59 #include "hints.h" |
60 #include "input.h" | |
61 #include "logger.h" | |
2237 | 62 #include "ui_main.h" |
2232
ac2ea05e60a0
[svn] - migration from gtkitemfactory to actions and uimanager; main menu has been ported, still much work and test to do
giacomo
parents:
2228
diff
changeset
|
63 #include "ui_manager.h" |
0 | 64 #include "output.h" |
538
e4e897d20791
[svn] remove libaudcore, we never did anything with it
nenolod
parents:
534
diff
changeset
|
65 #include "playback.h" |
0 | 66 #include "playlist.h" |
1653 | 67 #include "ui_playlist.h" |
2242 | 68 #include "ui_preferences.h" |
0 | 69 #include "pluginenum.h" |
2244 | 70 #include "ui_skinselector.h" |
0 | 71 #include "util.h" |
72 #include "visualization.h" | |
530
1947144093bc
[svn] When running SVN, make a note of the SVN version. The SVN version is stored in build_stamp.c.
nenolod
parents:
486
diff
changeset
|
73 #include "build_stamp.h" |
1264 | 74 #include "ui_fileinfo.h" |
2156
a792aaee8e8e
[svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
2146
diff
changeset
|
75 #include "signals.h" |
0 | 76 |
2205
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
77 #include "icons-csource.h" |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
78 #include "icons-stock.h" |
120 | 79 #include "images/audacious_player.xpm" |
0 | 80 |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
81 gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ |
0 | 82 |
83 /* Translatable string for beep.desktop's comment field */ | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
84 const gchar *desktop_comment = N_("Audacious"); |
0 | 85 |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
86 const gchar *application_name = N_("Audacious"); |
0 | 87 |
1653 | 88 |
0 | 89 struct _BmpCmdLineOpt { |
90 GList *filenames; | |
91 gint session; | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
92 gboolean play, stop, pause, fwd, rew, play_pause, playcd, show_jump_box; |
0 | 93 gboolean enqueue, mainwin, remote, activate; |
94 gboolean load_skins; | |
191 | 95 gboolean headless; |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
96 gboolean no_log; |
2127
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
97 gboolean enqueue_to_temp; |
0 | 98 gchar *previous_session_id; |
99 }; | |
100 | |
101 typedef struct _BmpCmdLineOpt BmpCmdLineOpt; | |
102 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
103 BmpCmdLineOpt options; |
0 | 104 |
105 BmpConfig cfg; | |
106 | |
107 BmpConfig bmp_default_config = { | |
108 MAINWIN_DEFAULT_POS_X, /* mainwin x position */ | |
109 MAINWIN_DEFAULT_POS_Y, /* mainwin y position */ | |
110 EQUALIZER_DEFAULT_POS_X, /* equalizer x position */ | |
111 EQUALIZER_DEFAULT_POS_Y, /* equalizer y position */ | |
112 PLAYLISTWIN_DEFAULT_POS_X, /* playlistwin x position */ | |
113 PLAYLISTWIN_DEFAULT_POS_Y, /* playlistwin y position */ | |
114 PLAYLISTWIN_DEFAULT_WIDTH, /* playlistwin width */ | |
115 PLAYLISTWIN_DEFAULT_HEIGHT, /* playlistwin height */ | |
116 10, /* snap distance */ | |
117 FALSE, /* real-time priority */ | |
118 FALSE, FALSE, /* shuffle, repeat */ | |
119 FALSE, /* UNUSED (double size) */ | |
120 TRUE, /* autoscroll */ | |
121 TRUE, /* analyzer peaks */ | |
122 FALSE, /* equalizer autoload */ | |
123 FALSE, /* easy move */ | |
124 FALSE, /* equalizer active */ | |
125 FALSE, /* playlistwin visible */ | |
126 FALSE, /* equalizer visible */ | |
127 TRUE, /* player visible */ | |
128 FALSE, /* player shaded */ | |
129 FALSE, /* playlistwin shaded */ | |
130 FALSE, /* equalizer shaded */ | |
131 FALSE, /* allow multiple instances */ | |
132 TRUE, /* always show cb */ | |
2019
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
2003
diff
changeset
|
133 TRUE, TRUE, TRUE, /* convert '_', %20 and '\' */ |
0 | 134 TRUE, /* show numbers in playlist */ |
135 TRUE, /* snap windows */ | |
136 TRUE, /* save window positions */ | |
137 TRUE, /* dim titlebar */ | |
138 FALSE, /* get playlist info on load */ | |
139 TRUE, /* get playlist info on demand */ | |
140 TRUE, /* UNUSED (equalizer doublesize linked) */ | |
141 FALSE, /* sort jump to file */ | |
142 FALSE, /* use effect plugins */ | |
143 FALSE, /* always on top */ | |
144 FALSE, /* sticky */ | |
145 FALSE, /* no playlist advance */ | |
1884 | 146 FALSE, /* stop after current song */ |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
147 TRUE, /* refresh file list */ |
0 | 148 TRUE, /* UNUSED (smooth title scrolling) */ |
149 TRUE, /* use playlist metadata */ | |
150 TRUE, /* warn about unplayables */ | |
151 FALSE, /* use \ as directory delimiter */ | |
152 FALSE, /* random skin on play */ | |
153 FALSE, /* use fontsets */ | |
154 FALSE, /* use X font for mainwin */ | |
155 TRUE, /* use custom cursors */ | |
156 TRUE, /* close dialog on open */ | |
157 TRUE, /* close dialog on add */ | |
158 0.0, /* equalizer preamp */ | |
159 {0, 0, 0, 0, 0, /* equalizer bands */ | |
160 0, 0, 0, 0, 0}, | |
161 NULL, /* skin */ | |
162 NULL, /* output plugin */ | |
163 NULL, /* file selector path */ | |
164 NULL, /* playlist path */ | |
165 NULL, /* playlist font */ | |
166 NULL, /* mainwin font */ | |
167 NULL, /* disabled input plugins */ | |
168 NULL, /* enabled general plugins */ | |
169 NULL, /* enabled visualization plugins */ | |
170 NULL, /* enabled effect plugins */ | |
171 NULL, /* equalizer preset default file */ | |
172 NULL, /* equalizer preset extension */ | |
173 NULL, /* URL history */ | |
174 0, /* timer mode */ | |
175 VIS_ANALYZER, /* visualizer type */ | |
176 ANALYZER_NORMAL, /* analyzer mode */ | |
177 ANALYZER_BARS, /* analyzer type */ | |
178 SCOPE_DOT, /* scope mode */ | |
2203
60bd49189fde
[svn] - two realcolour modes for voiceprint vis: Fire and Ice
marvin
parents:
2186
diff
changeset
|
179 VOICEPRINT_NORMAL, /* voiceprint mode */ |
0 | 180 VU_SMOOTH, /* VU mode */ |
181 REFRESH_FULL, /* visualizer refresh rate */ | |
182 FALLOFF_FAST, /* analyzer fall off rate */ | |
183 FALLOFF_SLOW, /* peaks fall off rate */ | |
184 0, /* playlist position */ | |
185 2, /* pause between songs time */ | |
186 FALSE, /* pause between songs */ | |
187 FALSE, /* show window decorations */ | |
188 8, /* mouse wheel scroll step */ | |
189 FALSE, /* playlist transparent */ | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
190 2, /* 3rd preset (ARTIST - ALBUM - TITLE) */ |
0 | 191 NULL, /* title format */ |
192 FALSE, /* software volume control enabled */ | |
193 TRUE, /* UNUSED (XMMS compatibility mode) */ | |
194 TRUE, /* extra eq filtering */ | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
195 3, /* scroll pl by */ |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
196 FALSE, /* resume playback on startup */ |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
197 -1, /* resume playback on startup time */ |
1147 | 198 TRUE, /* show seperators in pl */ |
1146
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
199 NULL, |
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
200 NULL, |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
201 3000, /* audio buffer size */ |
1164 | 202 FALSE, /* whether or not to postpone format detection on initial add */ |
1358 | 203 TRUE, /* show filepopup for tuple */ |
1413 | 204 NULL, /* words identifying covers */ |
205 NULL, /* words that might not show up in cover names */ | |
1444
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
206 FALSE, |
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
207 0, |
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
208 NULL, /* default session uri base (non-NULL = custom session uri base) */ |
1710 | 209 150, /* short side length of the picture in the filepopup */ |
210 20, /* delay until the filepopup comes up */ | |
1904
4960ba312ffe
[svn] - add a default value for cfg.use_file_cover (FALSE)
nenolod
parents:
1889
diff
changeset
|
211 FALSE, /* use filename.jpg for coverart */ |
1905
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1904
diff
changeset
|
212 FALSE, /* use XMMS-style file selection */ |
2113 | 213 TRUE, /* use extension probing */ |
2186 | 214 255, 255, 255, /* colorize r, g, b */ |
2222 | 215 FALSE, /* internal: whether or not to terminate */ |
0 | 216 }; |
217 | |
218 typedef struct bmp_cfg_boolent_t { | |
219 char const *be_vname; | |
220 gboolean *be_vloc; | |
221 gboolean be_wrt; | |
222 } bmp_cfg_boolent; | |
223 | |
224 typedef struct bmp_cfg_nument_t { | |
225 char const *ie_vname; | |
226 gint *ie_vloc; | |
227 gboolean ie_wrt; | |
228 } bmp_cfg_nument; | |
229 | |
230 typedef struct bmp_cfg_strent_t { | |
231 char const *se_vname; | |
232 char **se_vloc; | |
233 gboolean se_wrt; | |
234 } bmp_cfg_strent; | |
235 | |
236 const gchar *bmp_titlestring_presets[] = { | |
237 "%t", | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
238 "%{p:%p - %}%t", |
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
239 "%{p:%p - %}%{a:%a - %}%t", |
943 | 240 "%{p:%p - %}%{a:%a - %}%{n:%n. %}%t", |
241 "%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}", | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
242 "%{a:%a - %}%t" |
0 | 243 }; |
244 | |
245 const guint n_titlestring_presets = G_N_ELEMENTS(bmp_titlestring_presets); | |
246 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
247 const gchar *chardet_detector_presets[] = { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
248 "None", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
249 "Japanese", |
1595
e6cc84e06444
[svn] - libguess update: workaround for that g_convert can't convert properly from UCS-2BE/LE trailing after BOM.
yaz
parents:
1566
diff
changeset
|
250 "Taiwanese", |
e6cc84e06444
[svn] - libguess update: workaround for that g_convert can't convert properly from UCS-2BE/LE trailing after BOM.
yaz
parents:
1566
diff
changeset
|
251 "Chinese", |
e6cc84e06444
[svn] - libguess update: workaround for that g_convert can't convert properly from UCS-2BE/LE trailing after BOM.
yaz
parents:
1566
diff
changeset
|
252 "Korean", |
1613
9becbe564217
[svn] - chardet patch for Russian language witten by Valentine Sinitsyn.
yaz
parents:
1595
diff
changeset
|
253 "Russian", |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
254 #ifdef HAVE_UDET |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
255 "Universal" |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
256 #endif |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
257 }; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
258 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
259 const guint n_chardet_detector_presets = G_N_ELEMENTS(chardet_detector_presets); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
260 |
0 | 261 static bmp_cfg_boolent bmp_boolents[] = { |
262 {"allow_multiple_instances", &cfg.allow_multiple_instances, TRUE}, | |
263 {"use_realtime", &cfg.use_realtime, TRUE}, | |
264 {"always_show_cb", &cfg.always_show_cb, TRUE}, | |
265 {"convert_underscore", &cfg.convert_underscore, TRUE}, | |
266 {"convert_twenty", &cfg.convert_twenty, TRUE}, | |
2019
d3a62e1075e2
[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
chainsaw
parents:
2003
diff
changeset
|
267 {"convert_slash", &cfg.convert_slash, TRUE }, |
0 | 268 {"show_numbers_in_pl", &cfg.show_numbers_in_pl, TRUE}, |
1056
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
1042
diff
changeset
|
269 {"show_separator_in_pl", &cfg.show_separator_in_pl, TRUE}, |
0 | 270 {"snap_windows", &cfg.snap_windows, TRUE}, |
271 {"save_window_positions", &cfg.save_window_position, TRUE}, | |
272 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, | |
273 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, | |
274 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, | |
1938 | 275 {"eq_doublesize_linked", &cfg.eq_doublesize_linked, TRUE}, |
0 | 276 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE}, |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
277 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, |
0 | 278 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, |
279 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
280 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE}, | |
281 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, | |
282 {"player_shaded", &cfg.player_shaded, TRUE}, | |
283 {"player_visible", &cfg.player_visible, TRUE}, | |
284 {"shuffle", &cfg.shuffle, TRUE}, | |
285 {"repeat", &cfg.repeat, TRUE}, | |
1938 | 286 {"doublesize", &cfg.doublesize, TRUE}, |
0 | 287 {"autoscroll_songname", &cfg.autoscroll, TRUE}, |
898 | 288 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, |
0 | 289 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, |
290 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
291 {"playlist_transparent", &cfg.playlist_transparent, TRUE}, | |
292 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
293 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, |
0 | 294 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, |
295 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
296 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
297 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
1938 | 298 {"easy_move", &cfg.easy_move, TRUE}, |
0 | 299 {"use_eplugins", &cfg.use_eplugins, TRUE}, |
300 {"always_on_top", &cfg.always_on_top, TRUE}, | |
301 {"sticky", &cfg.sticky, TRUE}, | |
302 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
303 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
304 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
305 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
306 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
307 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
308 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
309 {"close_dialog_add", &cfg.close_dialog_add, TRUE}, |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
310 {"resume_playback_on_startup", &cfg.resume_playback_on_startup, TRUE}, |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
311 {"playlist_detect", &cfg.playlist_detect, TRUE}, |
1358 | 312 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1886
diff
changeset
|
313 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE}, |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1886
diff
changeset
|
314 {"use_file_cover", &cfg.use_file_cover, TRUE}, |
1905
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1904
diff
changeset
|
315 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, |
2108
02f39b64f36b
[svn] - add support for new extension probing system
nenolod
parents:
2105
diff
changeset
|
316 {"use_extension_probing", &cfg.use_extension_probing, TRUE}, |
0 | 317 }; |
318 | |
319 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
320 | |
321 static bmp_cfg_nument bmp_numents[] = { | |
322 {"player_x", &cfg.player_x, TRUE}, | |
323 {"player_y", &cfg.player_y, TRUE}, | |
324 {"timer_mode", &cfg.timer_mode, TRUE}, | |
325 {"vis_type", &cfg.vis_type, TRUE}, | |
326 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
327 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
328 {"scope_mode", &cfg.scope_mode, TRUE}, | |
329 {"vu_mode", &cfg.vu_mode, TRUE}, | |
2203
60bd49189fde
[svn] - two realcolour modes for voiceprint vis: Fire and Ice
marvin
parents:
2186
diff
changeset
|
330 {"voiceprint_mode", &cfg.voiceprint_mode, TRUE}, |
0 | 331 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, |
332 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
333 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
334 {"playlist_x", &cfg.playlist_x, TRUE}, | |
335 {"playlist_y", &cfg.playlist_y, TRUE}, | |
336 {"playlist_width", &cfg.playlist_width, TRUE}, | |
337 {"playlist_height", &cfg.playlist_height, TRUE}, | |
338 {"playlist_position", &cfg.playlist_position, TRUE}, | |
339 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
340 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
341 {"snap_distance", &cfg.snap_distance, TRUE}, | |
342 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
343 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
344 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
345 {"titlestring_preset", &cfg.titlestring_preset, TRUE}, | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
346 {"resume_playback_on_startup_time", &cfg.resume_playback_on_startup_time, TRUE}, |
1146
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
347 {"output_buffer_size", &cfg.output_buffer_size, TRUE}, |
1710 | 348 {"recurse_for_cover_depth", &cfg.recurse_for_cover_depth, TRUE}, |
349 {"filepopup_pixelsize", &cfg.filepopup_pixelsize, TRUE}, | |
350 {"filepopup_delay", &cfg.filepopup_delay, TRUE}, | |
2186 | 351 {"colorize_r", &cfg.colorize_r, TRUE}, |
352 {"colorize_g", &cfg.colorize_g, TRUE}, | |
353 {"colorize_b", &cfg.colorize_b, TRUE}, | |
0 | 354 }; |
355 | |
356 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
357 | |
358 static bmp_cfg_strent bmp_strents[] = { | |
359 {"playlist_font", &cfg.playlist_font, TRUE}, | |
360 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
361 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
362 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
363 {"skin", &cfg.skin, FALSE}, | |
364 {"output_plugin", &cfg.outputplugin, FALSE}, | |
365 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
366 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
367 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
368 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
369 {"filesel_path", &cfg.filesel_path, FALSE}, | |
370 {"playlist_path", &cfg.playlist_path, FALSE}, | |
371 {"generic_title_format", &cfg.gentitle_format, TRUE}, | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
372 {"chardet_detector", &cfg.chardet_detector, TRUE}, |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
373 {"chardet_fallback", &cfg.chardet_fallback, TRUE}, |
1413 | 374 {"cover_name_include", &cfg.cover_name_include, TRUE}, |
375 {"cover_name_exclude", &cfg.cover_name_exclude, TRUE}, | |
1444
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
376 {"session_uri_base", &cfg.session_uri_base, TRUE} |
0 | 377 }; |
378 | |
379 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
380 | |
381 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
382 | |
383 GList *dock_window_list = NULL; | |
384 | |
385 gboolean pposition_broken = FALSE; | |
386 | |
486 | 387 gboolean starting_up = TRUE; |
0 | 388 |
1883
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
389 /* XXX: case-sensitivity is bad for lazy nenolods. :( -nenolod */ |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
390 static gchar *pl_candidates[] = { |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
391 PLUGIN_FILENAME("ALSA"), |
1886 | 392 PLUGIN_FILENAME("coreaudio"), |
1883
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
393 PLUGIN_FILENAME("OSS"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
394 PLUGIN_FILENAME("sun"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
395 PLUGIN_FILENAME("ESD"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
396 PLUGIN_FILENAME("pulse_audio"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
397 PLUGIN_FILENAME("disk_writer"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
398 NULL |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
399 }; |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
400 |
2026 | 401 GCond *cond_scan; |
402 GMutex *mutex_scan; | |
403 | |
0 | 404 static GSList * |
405 get_feature_list(void) | |
406 { | |
407 GSList *features = NULL; | |
408 | |
409 #ifdef HAVE_GCONF | |
410 features = g_slist_append(features, "GConf"); | |
411 #endif | |
412 | |
413 return features; | |
414 } | |
415 | |
416 static void | |
417 dump_version(void) | |
418 { | |
419 GSList *features; | |
420 | |
530
1947144093bc
[svn] When running SVN, make a note of the SVN version. The SVN version is stored in build_stamp.c.
nenolod
parents:
486
diff
changeset
|
421 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); |
0 | 422 |
423 features = get_feature_list(); | |
424 | |
425 if (features) { | |
426 GSList *item; | |
427 | |
428 g_printf(" ("); | |
429 | |
430 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
431 g_printf("%s, ", (const gchar *) item->data); | |
432 | |
433 g_printf("%s)", (const gchar *) item->data); | |
434 | |
435 g_slist_free(features); | |
436 } | |
437 | |
438 g_printf("\n"); | |
439 } | |
440 | |
441 const gchar * | |
442 xmms_get_gentitle_format(void) | |
443 { | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
538
diff
changeset
|
444 guint titlestring_preset = cfg.titlestring_preset; |
0 | 445 |
446 if (titlestring_preset < n_titlestring_presets) | |
447 return bmp_titlestring_presets[titlestring_preset]; | |
448 | |
449 return cfg.gentitle_format; | |
450 } | |
451 | |
887 | 452 void |
0 | 453 make_directory(const gchar * path, mode_t mode) |
454 { | |
455 if (mkdir(path, mode) == 0) | |
456 return; | |
457 | |
458 if (errno == EEXIST) | |
459 return; | |
460 | |
461 g_printerr(_("Could not create directory (%s): %s"), path, | |
462 g_strerror(errno)); | |
463 } | |
464 | |
465 static void | |
466 bmp_make_user_dir(void) | |
467 { | |
468 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
469 | |
470 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
471 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
472 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
473 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
474 } | |
475 | |
476 static void | |
477 bmp_free_paths(void) | |
478 { | |
479 int i; | |
480 | |
481 for (i = 0; i < BMP_PATH_COUNT; i++) | |
482 { | |
483 g_free(bmp_paths[i]); | |
484 bmp_paths[i] = 0; | |
485 } | |
486 } | |
487 | |
488 | |
489 #define USER_PATH(path) \ | |
490 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], path, NULL); | |
491 | |
492 static void | |
493 bmp_init_paths(void) | |
494 { | |
734 | 495 bmp_paths[BMP_PATH_USER_DIR] = g_build_filename(g_get_home_dir(), BMP_RCPATH, NULL); |
0 | 496 |
497 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = USER_PATH(BMP_USER_PLUGIN_DIR_BASENAME); | |
498 bmp_paths[BMP_PATH_USER_SKIN_DIR] = USER_PATH(BMP_SKIN_DIR_BASENAME); | |
499 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = USER_PATH(BMP_SKIN_THUMB_DIR_BASENAME); | |
500 bmp_paths[BMP_PATH_CONFIG_FILE] = USER_PATH(BMP_CONFIG_BASENAME); | |
501 bmp_paths[BMP_PATH_PLAYLIST_FILE] = USER_PATH(BMP_PLAYLIST_BASENAME); | |
502 bmp_paths[BMP_PATH_ACCEL_FILE] = USER_PATH(BMP_ACCEL_BASENAME); | |
503 bmp_paths[BMP_PATH_LOG_FILE] = USER_PATH(BMP_LOG_BASENAME); | |
504 | |
505 g_atexit(bmp_free_paths); | |
506 } | |
507 | |
508 | |
509 void | |
510 bmp_config_load(void) | |
511 { | |
512 ConfigDb *db; | |
513 gint i, length; | |
514 | |
515 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
516 | |
517 db = bmp_cfg_db_open(); | |
518 for (i = 0; i < ncfgbent; ++i) { | |
519 bmp_cfg_db_get_bool(db, NULL, | |
520 bmp_boolents[i].be_vname, | |
521 bmp_boolents[i].be_vloc); | |
522 } | |
523 | |
524 for (i = 0; i < ncfgient; ++i) { | |
525 bmp_cfg_db_get_int(db, NULL, | |
526 bmp_numents[i].ie_vname, | |
527 bmp_numents[i].ie_vloc); | |
528 } | |
529 | |
530 for (i = 0; i < ncfgsent; ++i) { | |
531 bmp_cfg_db_get_string(db, NULL, | |
532 bmp_strents[i].se_vname, | |
533 bmp_strents[i].se_vloc); | |
534 } | |
535 | |
536 /* Preset */ | |
537 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
538 for (i = 0; i < 10; i++) { | |
539 gchar eqtext[18]; | |
540 | |
541 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
542 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
543 } | |
544 | |
545 /* History */ | |
546 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
547 for (i = 1; i <= length; i++) { | |
548 gchar str[19], *tmp; | |
549 | |
550 g_snprintf(str, sizeof(str), "url_history%d", i); | |
551 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
552 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
553 } | |
554 } | |
555 | |
556 bmp_cfg_db_close(db); | |
557 | |
558 | |
559 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
560 g_free(cfg.playlist_font); | |
561 cfg.playlist_font = NULL; | |
562 } | |
563 | |
564 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
565 g_free(cfg.mainwin_font); | |
566 cfg.mainwin_font = NULL; | |
567 } | |
568 | |
569 if (!cfg.playlist_font) | |
1653 | 570 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); |
0 | 571 |
572 if (!cfg.mainwin_font) | |
1653 | 573 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); |
0 | 574 |
575 if (!cfg.gentitle_format) | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
576 cfg.gentitle_format = g_strdup("%{p:%p - %}%{a:%a - %}%t"); |
0 | 577 |
578 if (!cfg.outputplugin) { | |
1883
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
579 gint iter; |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
580 gchar *pl_path = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], NULL); |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
581 |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
582 for (iter = 0; pl_candidates[iter] != NULL && cfg.outputplugin == NULL; iter++) |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
583 { |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
584 cfg.outputplugin = find_file_recursively(pl_path, pl_candidates[iter]); |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
585 } |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
586 |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
587 g_free(pl_path); |
0 | 588 } |
589 | |
590 if (!cfg.eqpreset_default_file) | |
1653 | 591 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); |
0 | 592 |
593 if (!cfg.eqpreset_extension) | |
1653 | 594 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); |
1413 | 595 |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
596 if (!cfg.chardet_fallback) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
597 cfg.chardet_fallback = g_strdup(""); |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
598 |
1413 | 599 if (!cfg.cover_name_include) |
600 cfg.cover_name_include = g_strdup(""); | |
601 | |
602 if (!cfg.cover_name_exclude) | |
603 cfg.cover_name_exclude = g_strdup("back"); | |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
604 |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
605 if (!cfg.session_uri_base) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
606 cfg.session_uri_base = g_strdup(""); |
0 | 607 } |
608 | |
609 | |
610 void | |
611 bmp_config_save(void) | |
612 { | |
613 GList *node; | |
614 gchar *str; | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
615 gint i, cur_pb_time; |
0 | 616 ConfigDb *db; |
2088 | 617 Playlist *playlist = playlist_get_active(); |
0 | 618 |
619 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
620 | |
621 | |
622 db = bmp_cfg_db_open(); | |
623 | |
624 for (i = 0; i < ncfgbent; ++i) | |
625 if (bmp_boolents[i].be_wrt) | |
626 bmp_cfg_db_set_bool(db, NULL, | |
627 bmp_boolents[i].be_vname, | |
628 *bmp_boolents[i].be_vloc); | |
629 | |
630 for (i = 0; i < ncfgient; ++i) | |
631 if (bmp_numents[i].ie_wrt) | |
632 bmp_cfg_db_set_int(db, NULL, | |
633 bmp_numents[i].ie_vname, | |
634 *bmp_numents[i].ie_vloc); | |
635 | |
636 /* This is a bit lame .. it'll end up being written twice, | |
637 * could do with being done a bit neater. -larne */ | |
638 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
2088 | 639 playlist_get_position(playlist)); |
0 | 640 |
207
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
641 bmp_cfg_db_set_bool(db, NULL, "mainwin_use_xfont", |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
642 cfg.mainwin_use_xfont); |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
643 |
0 | 644 for (i = 0; i < ncfgsent; ++i) { |
645 if (bmp_strents[i].se_wrt) | |
646 bmp_cfg_db_set_string(db, NULL, | |
647 bmp_strents[i].se_vname, | |
648 *bmp_strents[i].se_vloc); | |
649 } | |
650 | |
651 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
652 | |
653 for (i = 0; i < 10; i++) { | |
654 str = g_strdup_printf("equalizer_band%d", i); | |
655 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
656 g_free(str); | |
657 } | |
658 | |
196 | 659 if (bmp_active_skin != NULL) |
660 { | |
661 if (bmp_active_skin->path) | |
662 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
663 else | |
664 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
665 } | |
0 | 666 |
667 if (get_current_output_plugin()) | |
668 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
669 get_current_output_plugin()->filename); | |
670 else | |
671 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
672 | |
673 str = general_stringify_enabled_list(); | |
674 if (str) { | |
675 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
676 g_free(str); | |
677 } | |
678 else | |
679 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
680 | |
681 str = vis_stringify_enabled_list(); | |
682 if (str) { | |
683 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
684 g_free(str); | |
685 } | |
686 else | |
687 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
688 | |
689 str = effect_stringify_enabled_list(); | |
690 if (str) { | |
691 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
692 g_free(str); | |
693 } | |
694 else | |
695 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
696 | |
697 if (cfg.filesel_path) | |
698 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
699 | |
700 if (cfg.playlist_path) | |
701 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
702 | |
703 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
704 g_list_length(cfg.url_history)); | |
705 | |
706 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
707 str = g_strdup_printf("url_history%d", i); | |
708 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
709 g_free(str); | |
710 } | |
711 | |
2228
894f7aa46f83
[svn] - bmp_playback_* -> playback_* -- i knew something smelled rotten here, hmm.
nenolod
parents:
2222
diff
changeset
|
712 if (playback_get_playing()) { |
894f7aa46f83
[svn] - bmp_playback_* -> playback_* -- i knew something smelled rotten here, hmm.
nenolod
parents:
2222
diff
changeset
|
713 cur_pb_time = playback_get_time(); |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
714 } else |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
715 cur_pb_time = -1; |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
716 cfg.resume_playback_on_startup_time = cur_pb_time; |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
717 bmp_cfg_db_set_int(db, NULL, "resume_playback_on_startup_time", |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
718 cfg.resume_playback_on_startup_time); |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
719 |
0 | 720 bmp_cfg_db_close(db); |
721 | |
2088 | 722 playlist_save(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); |
0 | 723 } |
724 | |
725 static void | |
726 bmp_set_default_icon(void) | |
727 { | |
728 GdkPixbuf *icon; | |
729 | |
120 | 730 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); |
0 | 731 gtk_window_set_default_icon(icon); |
732 g_object_unref(icon); | |
733 } | |
734 | |
735 static void | |
2205
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
736 register_aud_stock_icons(void) |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
737 { |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
738 GtkIconFactory *iconfactory = gtk_icon_factory_new(); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
739 GtkIconSet *iconset; |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
740 GdkPixbuf *pixbuf; |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
741 |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
742 /* pick images in icons-csource.h */ |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
743 pixbuf = gdk_pixbuf_new_from_inline( -1 , removedups_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
744 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
745 gtk_icon_factory_add( iconfactory , AUD_STOCK_REMOVEDUPS , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
746 pixbuf = gdk_pixbuf_new_from_inline( -1 , removeunavail_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
747 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
748 gtk_icon_factory_add( iconfactory , AUD_STOCK_REMOVEUNAVAIL , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
749 pixbuf = gdk_pixbuf_new_from_inline( -1 , randomizepl_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
750 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
751 gtk_icon_factory_add( iconfactory , AUD_STOCK_RANDOMIZEPL , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
752 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbytitle_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
753 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
754 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYTITLE , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
755 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbyfilename_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
756 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
757 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYFILENAME , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
758 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbyartist_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
759 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
760 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYARTIST , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
761 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbypathfile_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
762 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
763 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYPATHFILE , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
764 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectnone_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
765 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
766 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTNONE , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
767 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectall_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
768 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
769 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTALL , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
770 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectinvert_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
771 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
772 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTINVERT , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
773 pixbuf = gdk_pixbuf_new_from_inline( -1 , invertpl_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
774 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
775 gtk_icon_factory_add( iconfactory , AUD_STOCK_INVERTPL , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
776 pixbuf = gdk_pixbuf_new_from_inline( -1 , queuetoggle_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
777 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
778 gtk_icon_factory_add( iconfactory , AUD_STOCK_QUEUETOGGLE , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
779 pixbuf = gdk_pixbuf_new_from_inline( -1 , info_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
780 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
781 gtk_icon_factory_add( iconfactory , AUD_STOCK_INFO , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
782 pixbuf = gdk_pixbuf_new_from_inline( -1 , playlist_pixbuf , FALSE , NULL ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
783 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
784 gtk_icon_factory_add( iconfactory , AUD_STOCK_PLAYLIST , iconset ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
785 |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
786 gtk_icon_factory_add_default( iconfactory ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
787 g_object_unref( iconfactory ); |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
788 } |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
789 |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
790 static void |
0 | 791 display_usage(void) |
792 { | |
44 | 793 g_print(_("Usage: audacious [options] [files] ...\n\n" |
0 | 794 "Options:\n" |
795 "--------\n")); | |
796 g_print("\n-h, --help "); | |
797 /* -h, --help switch */ | |
798 g_print(_("Display this text and exit")); | |
799 g_print("\n-n, --session "); | |
800 /* -n, --session switch */ | |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
801 g_print(_("Select Audacious/BMP/XMMS session (Default: 0)")); |
0 | 802 g_print("\n-r, --rew "); |
803 /* -r, --rew switch */ | |
804 g_print(_("Skip backwards in playlist")); | |
805 g_print("\n-p, --play "); | |
806 /* -p, --play switch */ | |
807 g_print(_("Start playing current playlist")); | |
808 g_print("\n-u, --pause "); | |
809 /* -u, --pause switch */ | |
810 g_print(_("Pause current song")); | |
811 g_print("\n-s, --stop "); | |
812 /* -s, --stop switch */ | |
813 g_print(_("Stop current song")); | |
814 g_print("\n-t, --play-pause "); | |
815 /* -t, --play-pause switch */ | |
816 g_print(_("Pause if playing, play otherwise")); | |
817 g_print("\n-f, --fwd "); | |
818 /* -f, --fwd switch */ | |
819 g_print(_("Skip forward in playlist")); | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
820 g_print("\n-j, --show-jump-box "); |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
821 /* -j, --show-jump-box switch */ |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
822 g_print(_("Display Jump to file dialog")); |
0 | 823 g_print("\n-e, --enqueue "); |
824 /* -e, --enqueue switch */ | |
825 g_print(_("Don't clear the playlist")); | |
826 g_print("\n-m, --show-main-window "); | |
827 /* -m, --show-main-window switch */ | |
828 g_print(_("Show the main window")); | |
829 g_print("\n-a, --activate "); | |
830 /* -a, --activate switch */ | |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
831 g_print(_("Activate Audacious")); |
0 | 832 g_print("\n-i, --sm-client-id "); |
833 /* -i, --sm-client-id switch */ | |
834 g_print(_("Previous session ID")); | |
316
950f104f2e11
[svn] Fix spacing in --help output, patch by Mikachu.
chainsaw
parents:
284
diff
changeset
|
835 g_print("\n-H, --headless "); |
193 | 836 /* -h, --headless switch */ |
837 g_print(_("Headless operation [experimental]")); | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
838 g_print("\n-N, --no-log "); |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
839 /* -N, --no-log switch */ |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
840 g_print(_("Disable error/warning interception (logging)")); |
0 | 841 g_print("\n-v, --version "); |
842 /* -v, --version switch */ | |
843 g_print(_("Print version number and exit\n")); | |
844 | |
845 exit(EXIT_SUCCESS); | |
846 } | |
847 | |
848 static void | |
849 parse_cmd_line(gint argc, | |
850 gchar ** argv, | |
851 BmpCmdLineOpt * options) | |
852 { | |
853 static struct option long_options[] = { | |
854 {"help", 0, NULL, 'h'}, | |
855 {"session", 1, NULL, 'n'}, | |
856 {"rew", 0, NULL, 'r'}, | |
857 {"play", 0, NULL, 'p'}, | |
858 {"pause", 0, NULL, 'u'}, | |
859 {"play-pause", 0, NULL, 't'}, | |
860 {"stop", 0, NULL, 's'}, | |
861 {"fwd", 0, NULL, 'f'}, | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
862 {"show-jump-box", 0, NULL, 'j'}, |
0 | 863 {"enqueue", 0, NULL, 'e'}, |
2127
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
864 {"enqueue-to-temp", 0, NULL, 'E'}, |
0 | 865 {"show-main-window", 0, NULL, 'm'}, |
866 {"activate", 0, NULL, 'a'}, | |
867 {"version", 0, NULL, 'v'}, | |
868 {"sm-client-id", 1, NULL, 'i'}, | |
869 {"xmms", 0, NULL, 'x'}, | |
191 | 870 {"headless", 0, NULL, 'H'}, |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
871 {"no-log", 0, NULL, 'N'}, |
0 | 872 {0, 0, 0, 0} |
873 }; | |
874 | |
875 gchar *filename, *current_dir; | |
876 gint c, i; | |
877 | |
878 memset(options, 0, sizeof(BmpCmdLineOpt)); | |
879 options->session = -1; | |
880 | |
2127
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
881 while ((c = getopt_long(argc, argv, "chn:HrpusfemavtLSjE", long_options, |
0 | 882 NULL)) != -1) { |
883 switch (c) { | |
884 case 'h': | |
885 display_usage(); | |
886 break; | |
887 case 'n': | |
888 options->session = atoi(optarg); | |
889 break; | |
191 | 890 case 'H': |
891 options->headless = TRUE; | |
892 break; | |
0 | 893 case 'r': |
894 options->rew = TRUE; | |
895 break; | |
896 case 'p': | |
897 options->play = TRUE; | |
898 break; | |
899 case 'u': | |
900 options->pause = TRUE; | |
901 break; | |
902 case 's': | |
903 options->stop = TRUE; | |
904 break; | |
905 case 'f': | |
906 options->fwd = TRUE; | |
907 break; | |
908 case 't': | |
909 options->play_pause = TRUE; | |
910 break; | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
911 case 'j': |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
912 options->show_jump_box = TRUE; |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
913 break; |
0 | 914 case 'm': |
915 options->mainwin = TRUE; | |
916 break; | |
917 case 'a': | |
918 options->activate = TRUE; | |
919 break; | |
2127
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
920 case 'E': |
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
921 options->enqueue_to_temp = TRUE; |
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
922 break; |
0 | 923 case 'e': |
924 options->enqueue = TRUE; | |
925 break; | |
926 case 'v': | |
927 dump_version(); | |
928 exit(EXIT_SUCCESS); | |
929 break; | |
930 case 'i': | |
931 options->previous_session_id = g_strdup(optarg); | |
932 break; | |
933 case 'c': | |
934 options->playcd = TRUE; | |
935 break; | |
936 case 'S': | |
937 options->load_skins = TRUE; | |
938 break; | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
939 case 'N': |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
940 options->no_log = TRUE; |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
941 break; |
0 | 942 } |
943 } | |
944 | |
945 current_dir = g_get_current_dir(); | |
946 | |
947 for (i = optind; i < argc; i++) { | |
948 if (argv[i][0] == '/' || strstr(argv[i], "://")) | |
949 filename = g_strdup(argv[i]); | |
950 else | |
951 filename = g_build_filename(current_dir, argv[i], NULL); | |
952 | |
953 options->filenames = g_list_prepend(options->filenames, filename); | |
954 } | |
955 | |
956 options->filenames = g_list_reverse(options->filenames); | |
957 | |
958 g_free(current_dir); | |
959 } | |
960 | |
961 static void | |
962 handle_cmd_line_options(BmpCmdLineOpt * options, | |
963 gboolean remote) | |
964 { | |
965 GList *filenames = options->filenames; | |
966 gint session = options->session; | |
967 | |
968 if (session == -1) { | |
969 if (!remote) | |
970 session = ctrlsocket_get_session_id(); | |
971 else | |
972 session = 0; | |
973 } | |
974 | |
975 if (filenames) { | |
976 gint pos = 0; | |
977 | |
978 if (options->load_skins) { | |
979 xmms_remote_set_skin(session, filenames->data); | |
980 skin_install_skin(filenames->data); | |
981 } | |
982 else { | |
2127
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
983 if (options->enqueue_to_temp) |
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
984 xmms_remote_playlist_enqueue_to_temp(session, filenames->data); |
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2120
diff
changeset
|
985 |
0 | 986 if (options->enqueue && options->play) |
987 pos = xmms_remote_get_playlist_length(session); | |
988 | |
989 if (!options->enqueue) | |
990 xmms_remote_playlist_clear(session); | |
991 | |
992 xmms_remote_playlist_add(session, filenames); | |
993 | |
994 if (options->enqueue && options->play && | |
995 xmms_remote_get_playlist_length(session) > pos) | |
996 xmms_remote_set_playlist_pos(session, pos); | |
997 | |
998 if (!options->enqueue) | |
999 xmms_remote_play(session); | |
1000 } | |
1001 | |
1002 g_list_foreach(filenames, (GFunc) g_free, NULL); | |
1003 g_list_free(filenames); | |
1004 } | |
1005 | |
1006 if (options->rew) | |
1007 xmms_remote_playlist_prev(session); | |
1008 | |
1009 if (options->play) | |
1010 xmms_remote_play(session); | |
1011 | |
1012 if (options->pause) | |
1013 xmms_remote_pause(session); | |
1014 | |
1015 if (options->stop) | |
1016 xmms_remote_stop(session); | |
1017 | |
1018 if (options->fwd) | |
1019 xmms_remote_playlist_next(session); | |
1020 | |
1021 if (options->play_pause) | |
1022 xmms_remote_play_pause(session); | |
1023 | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
1024 if (options->show_jump_box) |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
1025 xmms_remote_show_jtf_box(session); |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
1026 |
0 | 1027 if (options->mainwin) |
1028 xmms_remote_main_win_toggle(session, TRUE); | |
1029 | |
1030 if (options->activate) | |
1031 xmms_remote_activate(session); | |
1032 | |
1033 if (options->playcd) | |
1034 play_medium(); | |
1035 } | |
1036 | |
1037 static void | |
1038 bmp_setup_logger(void) | |
1039 { | |
1040 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
1041 return; | |
1042 | |
1043 g_atexit(bmp_logger_stop); | |
1044 } | |
1045 | |
1046 static void | |
1047 run_load_skin_error_dialog(const gchar * skin_path) | |
1048 { | |
1049 const gchar *markup = | |
1050 N_("<b><big>Unable to load skin.</big></b>\n" | |
1051 "\n" | |
1052 "Check that skin at '%s' is usable and default skin is properly " | |
1053 "installed at '%s'\n"); | |
1054 | |
1055 GtkWidget *dialog = | |
1056 gtk_message_dialog_new_with_markup(NULL, | |
1057 GTK_DIALOG_MODAL, | |
1058 GTK_MESSAGE_ERROR, | |
1059 GTK_BUTTONS_CLOSE, | |
1060 _(markup), | |
1061 skin_path, | |
1062 BMP_DEFAULT_SKIN_PATH); | |
1063 gtk_dialog_run(GTK_DIALOG(dialog)); | |
1064 gtk_widget_destroy(dialog); | |
1065 } | |
1066 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1067 // use a format string? |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1068 void report_error(const gchar *error_text) |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1069 { |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1070 fprintf(stderr,error_text); |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1071 if (options.headless!=1) { |
813
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
1072 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(err), |
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
1073 error_text); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1074 gtk_dialog_run(GTK_DIALOG(err)); |
813
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
1075 gtk_widget_hide(err); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1076 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1077 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1078 |
0 | 1079 gint |
1080 main(gint argc, gchar ** argv) | |
1081 { | |
44 | 1082 gboolean gtk_init_check_ok; |
2088 | 1083 Playlist *playlist; |
0 | 1084 |
1085 /* Setup l10n early so we can print localized error messages */ | |
1086 gtk_set_locale(); | |
749 | 1087 bindtextdomain(PACKAGE_NAME, LOCALEDIR); |
1088 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
1089 textdomain(PACKAGE_NAME); | |
0 | 1090 |
1091 bmp_init_paths(); | |
1092 bmp_make_user_dir(); | |
1093 | |
1094 /* Check GTK version. Really, this is only needed for binary | |
1095 * distribution since configure already checks. */ | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1096 if (!GTK_CHECK_VERSION(2, 6, 0)) { |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
1097 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" |
0 | 1098 "Please use GTK+ %s or newer.\n"), |
1099 gtk_major_version, gtk_minor_version, gtk_micro_version, | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1100 "2.6.0"); |
0 | 1101 exit(EXIT_FAILURE); |
1102 } | |
1103 | |
1104 g_set_application_name(_(application_name)); | |
1105 | |
1106 g_thread_init(NULL); | |
1107 if (!g_thread_supported()) { | |
1108 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" | |
1109 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" | |
1110 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); | |
1111 exit(EXIT_FAILURE); | |
1112 } | |
1113 | |
1114 gdk_threads_init(); | |
1115 | |
2026 | 1116 cond_scan = g_cond_new(); |
1117 mutex_scan = g_mutex_new(); | |
1118 | |
44 | 1119 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
1120 /* Now let's parse the command line options first. */ | |
1121 parse_cmd_line(argc, argv, &options); | |
1122 if (!gtk_init_check_ok) { | |
0 | 1123 if (argc < 2) { |
1124 /* GTK check failed, and no arguments passed to indicate | |
1125 that user is intending to only remote control a running | |
1126 session */ | |
44 | 1127 g_printerr(_("audacious: Unable to open display, exiting.\n")); |
0 | 1128 exit(EXIT_FAILURE); |
1129 } | |
1130 | |
1131 handle_cmd_line_options(&options, TRUE); | |
191 | 1132 |
1133 /* we could be running headless, so GTK probably wont matter */ | |
1134 if (options.headless != 1) | |
1135 exit(EXIT_SUCCESS); | |
0 | 1136 } |
1137 | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1138 if (options.no_log == FALSE) |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1139 bmp_setup_logger(); |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1140 |
2156
a792aaee8e8e
[svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
2146
diff
changeset
|
1141 signal_handlers_init(); |
0 | 1142 |
1143 g_random_set_seed(time(NULL)); | |
1144 | |
1145 bmp_config_load(); | |
1146 | |
1147 if (options.session != -1 || !ctrlsocket_setup()) { | |
1148 handle_cmd_line_options(&options, TRUE); | |
1149 exit(EXIT_SUCCESS); | |
1150 } | |
1151 | |
2003
74f280120233
[svn] - init plugins before initalizing the skin system.
nenolod
parents:
2000
diff
changeset
|
1152 plugin_system_init(); |
74f280120233
[svn] - init plugins before initalizing the skin system.
nenolod
parents:
2000
diff
changeset
|
1153 |
2120
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2113
diff
changeset
|
1154 /* Initialize the playlist system. */ |
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2113
diff
changeset
|
1155 playlist_init(); |
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2113
diff
changeset
|
1156 |
191 | 1157 if (options.headless != 1) |
1158 { | |
2205
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
1159 /* register icons in stock */ |
cc6a05baa156
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
giacomo
parents:
2203
diff
changeset
|
1160 register_aud_stock_icons(); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1161 |
191 | 1162 bmp_set_default_icon(); |
0 | 1163 |
191 | 1164 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); |
0 | 1165 |
2232
ac2ea05e60a0
[svn] - migration from gtkitemfactory to actions and uimanager; main menu has been ported, still much work and test to do
giacomo
parents:
2228
diff
changeset
|
1166 /* uimanager */ |
ac2ea05e60a0
[svn] - migration from gtkitemfactory to actions and uimanager; main menu has been ported, still much work and test to do
giacomo
parents:
2228
diff
changeset
|
1167 ui_manager_init(); |
ac2ea05e60a0
[svn] - migration from gtkitemfactory to actions and uimanager; main menu has been ported, still much work and test to do
giacomo
parents:
2228
diff
changeset
|
1168 ui_manager_create_menus(); |
ac2ea05e60a0
[svn] - migration from gtkitemfactory to actions and uimanager; main menu has been ported, still much work and test to do
giacomo
parents:
2228
diff
changeset
|
1169 |
1810 | 1170 if (!init_skins(cfg.skin)) { |
1171 run_load_skin_error_dialog(cfg.skin); | |
1172 exit(EXIT_FAILURE); | |
1173 } | |
1174 | |
191 | 1175 GDK_THREADS_ENTER(); |
0 | 1176 } |
1177 | |
2120
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2113
diff
changeset
|
1178 /* Load the default playlist in. */ |
2088 | 1179 playlist = playlist_get_active(); |
1180 playlist_load(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1181 playlist_set_position(playlist, cfg.playlist_position); | |
0 | 1182 |
1183 /* this needs to be called after all 3 windows are created and | |
191 | 1184 * input plugins are setup'ed |
1185 * but not if we're running headless --nenolod | |
1186 */ | |
0 | 1187 mainwin_setup_menus(); |
1188 | |
191 | 1189 if (options.headless != 1) |
1190 GDK_THREADS_LEAVE(); | |
0 | 1191 |
1192 ctrlsocket_start(); | |
1193 | |
1194 handle_cmd_line_options(&options, FALSE); | |
1195 | |
191 | 1196 if (options.headless != 1) |
1197 { | |
1198 GDK_THREADS_ENTER(); | |
0 | 1199 |
191 | 1200 read_volume(VOLSET_STARTUP); |
1201 mainwin_set_info_text(); | |
1202 | |
1203 /* FIXME: delayed, because it deals directly with the plugin | |
1204 * interface to set menu items */ | |
1205 create_prefs_window(); | |
0 | 1206 |
1264 | 1207 create_fileinfo_window(); |
1283
19b1d3f22e10
[svn] - when hovering over a playlist tuple, describe the tuple via a tooltip-like popup
nenolod
parents:
1264
diff
changeset
|
1208 create_filepopup_window(); |
1264 | 1209 |
191 | 1210 if (cfg.player_visible) |
1211 mainwin_show(TRUE); | |
1212 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
1213 mainwin_show(TRUE); | |
125 | 1214 |
191 | 1215 if (cfg.equalizer_visible) |
1216 equalizerwin_show(TRUE); | |
1217 | |
1218 if (cfg.playlist_visible) | |
1219 playlistwin_show(); | |
0 | 1220 |
191 | 1221 hint_set_always(cfg.always_on_top); |
0 | 1222 |
191 | 1223 playlist_start_get_info_thread(); |
1224 mainwin_attach_idle_func(); | |
1225 | |
486 | 1226 starting_up = FALSE; |
1227 | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1228 has_x11_connection = TRUE; |
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1229 |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1230 if (cfg.resume_playback_on_startup) { |
2088 | 1231 if (cfg.resume_playback_on_startup_time != -1 && playlist_get_length(playlist) > 0) { |
1659
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1232 int i; |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1233 gint l=0, r=0; |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1234 while (gtk_events_pending()) gtk_main_iteration(); |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1235 output_get_volume(&l, &r); |
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1236 output_set_volume(0,0); |
2228
894f7aa46f83
[svn] - bmp_playback_* -> playback_* -- i knew something smelled rotten here, hmm.
nenolod
parents:
2222
diff
changeset
|
1237 playback_initiate(); |
1966
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1238 |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1239 /* Busy wait; loop is fairly tight to minimize duration of "frozen" GUI. Feel free to |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1240 * tune. --chainsaw |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1241 */ |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1242 for (i = 0; i < 20; i++) { |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1243 g_usleep(1000); |
1659
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1244 if (!ip_data.playing) |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1245 break; |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1246 } |
2228
894f7aa46f83
[svn] - bmp_playback_* -> playback_* -- i knew something smelled rotten here, hmm.
nenolod
parents:
2222
diff
changeset
|
1247 playback_seek(cfg.resume_playback_on_startup_time / |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1248 1000); |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1249 output_set_volume(l, r); |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1250 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1251 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1252 |
191 | 1253 gtk_main(); |
1254 | |
1255 GDK_THREADS_LEAVE(); | |
0 | 1256 |
2026 | 1257 g_cond_free(cond_scan); |
1258 g_mutex_free(mutex_scan); | |
1259 | |
191 | 1260 return EXIT_SUCCESS; |
1261 } | |
1262 else | |
1263 { | |
1264 mainwin_set_info_text(); | |
1265 playlist_start_get_info_thread(); | |
0 | 1266 |
486 | 1267 starting_up = FALSE; |
1268 | |
191 | 1269 for (;;) |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1270 { |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
1271 /* headless eventloop */ |
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
1272 audcore_generic_events(); |
198 | 1273 free_vis_data(); /* to prevent buffer overflow -- paranoia */ |
191 | 1274 xmms_usleep(10000); |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1275 } |
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1276 |
191 | 1277 return EXIT_SUCCESS; |
1278 } | |
0 | 1279 } |