Mercurial > mplayer.hg
annotate gui/cfg.c @ 33375:808a17ae6f7a
Support FFmpeg r10k decoder.
author | cehoyos |
---|---|
date | Thu, 12 May 2011 23:15:39 +0000 |
parents | c8977ae8c24f |
children | 90e5f5c28304 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
23077 | 18 |
19 #include <stdlib.h> | |
20 #include <stdio.h> | |
21 #include <string.h> | |
22 | |
33179 | 23 #include "cfg.h" |
24 #include "interface.h" | |
25 | |
23077 | 26 #include "config.h" |
27 #include "help_mp.h" | |
30653
3d23e24c5c60
Declare externally used variables from vd.c as extern in vd.h.
diego
parents:
30633
diff
changeset
|
28 #include "libmpcodecs/vd.h" |
23077 | 29 #include "libvo/video_out.h" |
31385
f2aebe1309b2
Declare stop_xscreensaver extern in x11_common.h instead of all over the code.
diego
parents:
30901
diff
changeset
|
30 #include "libvo/x11_common.h" |
33179 | 31 #include "m_option.h" |
32 #include "mixer.h" | |
33 #include "mp_msg.h" | |
34 #include "mpcommon.h" | |
35 #include "mplayer.h" | |
36 #include "parser-cfg.h" | |
37 #include "path.h" | |
32981 | 38 #include "sub/font_load.h" |
33179 | 39 #include "sub/sub.h" |
23077 | 40 |
33265 | 41 m_config_t *gui_conf; |
42 | |
33220 | 43 int gtkCacheOn; |
33180 | 44 int gtkCacheSize = 2048; |
45 | |
33220 | 46 int gtkVfPP; |
23077 | 47 |
33180 | 48 #ifdef CONFIG_DXR3 |
33249 | 49 int gtkVfLAVC; |
33180 | 50 char *gtkDXR3Device; |
51 #endif | |
52 | |
33220 | 53 int gtkAutoSyncOn; |
54 int gtkAutoSync; | |
23077 | 55 |
33220 | 56 int gtkAONorm; |
57 int gtkAOSurround; | |
58 int gtkAOExtraStereo; | |
33221 | 59 float gtkAOExtraStereoMul = 1.0f; |
33180 | 60 |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
61 #ifdef CONFIG_ALSA |
33179 | 62 char *gtkAOALSAMixer; |
63 char *gtkAOALSAMixerChannel; | |
64 char *gtkAOALSADevice; | |
23077 | 65 #endif |
33180 | 66 |
67 #ifdef CONFIG_OSS_AUDIO | |
68 char *gtkAOOSSMixer; | |
69 char *gtkAOOSSMixerChannel; | |
70 char *gtkAOOSSDevice; | |
23077 | 71 #endif |
33180 | 72 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
73 #ifdef CONFIG_ESD |
33179 | 74 char *gtkAOESDDevice; |
23077 | 75 #endif |
76 | |
33180 | 77 #ifdef CONFIG_SDL |
78 char *gtkAOSDLDriver; | |
79 #endif | |
23077 | 80 |
33220 | 81 int gtkEnableAudioEqualizer; |
23077 | 82 |
33220 | 83 int gtkSubDumpMPSub; |
84 int gtkSubDumpSrt; | |
23077 | 85 |
33180 | 86 #ifdef CONFIG_ASS |
87 gtkASS_t gtkASS; | |
88 #endif | |
89 | |
33220 | 90 int gtkEnablePlayBar = 1; |
91 int gtkLoadFullscreen; | |
33179 | 92 int gtkShowVideoWindow = 1; |
23077 | 93 |
33179 | 94 int gui_save_pos = 1; |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
95 int gui_main_pos_x = -3; |
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
96 int gui_main_pos_y = -3; |
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
97 int gui_sub_pos_x = -3; |
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
98 int gui_sub_pos_y = -3; |
23077 | 99 |
33179 | 100 static const m_option_t gui_opts[] = { |
33242 | 101 { "cache", >kCacheOn, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
102 { "cache_size", >kCacheSize, CONF_TYPE_INT, CONF_RANGE, 32, 1048576, NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
103 |
33242 | 104 { "vf_pp", >kVfPP, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 105 |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
106 #ifdef CONFIG_DXR3 |
33249 | 107 { "vf_lavc", >kVfLAVC, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33242 | 108 { "vo_dxr3_device", >kDXR3Device, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 109 #endif |
110 | |
33242 | 111 { "autosync", >kAutoSyncOn, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
112 { "autosync_size", >kAutoSync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL }, | |
23077 | 113 |
33242 | 114 { "ao_volnorm", >kAONorm, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
115 { "ao_surround", >kAOSurround, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
116 { "ao_extra_stereo", >kAOExtraStereo, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33370
c8977ae8c24f
Write all CONF_TYPE_FLOAT values as floating point constants.
ib
parents:
33289
diff
changeset
|
117 { "ao_extra_stereo_coefficient", >kAOExtraStereoMul, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0, NULL }, |
33223 | 118 |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
119 #ifdef CONFIG_ALSA |
33242 | 120 { "ao_alsa_mixer", >kAOALSAMixer, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
121 { "ao_alsa_mixer_channel", >kAOALSAMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
122 { "ao_alsa_device", >kAOALSADevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 123 #endif |
33223 | 124 |
125 #ifdef CONFIG_OSS_AUDIO | |
33242 | 126 { "ao_oss_mixer", >kAOOSSMixer, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
127 { "ao_oss_mixer_channel", >kAOOSSMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
128 { "ao_oss_device", >kAOOSSDevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 129 #endif |
33223 | 130 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
131 #ifdef CONFIG_ESD |
33242 | 132 { "ao_esd_device", >kAOESDDevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 133 #endif |
134 | |
33223 | 135 #ifdef CONFIG_SDL |
33242 | 136 { "ao_sdl_subdriver", >kAOSDLDriver, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 137 #endif |
138 | |
33242 | 139 { "enable_audio_equ", >kEnableAudioEqualizer, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
23077 | 140 |
33242 | 141 { "equ_channel_1", >kEquChannel1, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
142 { "equ_channel_2", >kEquChannel2, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
143 { "equ_channel_3", >kEquChannel3, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
144 { "equ_channel_4", >kEquChannel4, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
145 { "equ_channel_5", >kEquChannel5, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
146 { "equ_channel_6", >kEquChannel6, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
147 |
33223 | 148 #define audio_equ_row(i, j) \ |
33289 | 149 { "equ_band_" # i # j, >kEquChannels[i][j], CONF_TYPE_FLOAT, CONF_RANGE, -15.0, 15.0, NULL } |
150 audio_equ_row(0, 0), audio_equ_row(0, 1), audio_equ_row(0, 2), audio_equ_row(0, 3), audio_equ_row(0, 4), audio_equ_row(0, 5), audio_equ_row(0, 6), audio_equ_row(0, 7), audio_equ_row(0, 8), audio_equ_row(0, 9), | |
151 audio_equ_row(1, 0), audio_equ_row(1, 1), audio_equ_row(1, 2), audio_equ_row(1, 3), audio_equ_row(1, 4), audio_equ_row(1, 5), audio_equ_row(1, 6), audio_equ_row(1, 7), audio_equ_row(1, 8), audio_equ_row(1, 9), | |
152 audio_equ_row(2, 0), audio_equ_row(2, 1), audio_equ_row(2, 2), audio_equ_row(2, 3), audio_equ_row(2, 4), audio_equ_row(2, 5), audio_equ_row(2, 6), audio_equ_row(2, 7), audio_equ_row(2, 8), audio_equ_row(2, 9), | |
153 audio_equ_row(3, 0), audio_equ_row(3, 1), audio_equ_row(3, 2), audio_equ_row(3, 3), audio_equ_row(3, 4), audio_equ_row(3, 5), audio_equ_row(3, 6), audio_equ_row(3, 7), audio_equ_row(3, 8), audio_equ_row(3, 9), | |
154 audio_equ_row(4, 0), audio_equ_row(4, 1), audio_equ_row(4, 2), audio_equ_row(4, 3), audio_equ_row(4, 4), audio_equ_row(4, 5), audio_equ_row(4, 6), audio_equ_row(4, 7), audio_equ_row(4, 8), audio_equ_row(4, 9), | |
155 audio_equ_row(5, 0), audio_equ_row(5, 1), audio_equ_row(5, 2), audio_equ_row(5, 3), audio_equ_row(5, 4), audio_equ_row(5, 5), audio_equ_row(5, 6), audio_equ_row(5, 7), audio_equ_row(5, 8), audio_equ_row(5, 9), | |
23077 | 156 #undef audio_equ_row |
157 | |
33289 | 158 { "playbar", >kEnablePlayBar, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
159 { "load_fullscreen", >kLoadFullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
160 { "show_videowin", >kShowVideoWindow, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 161 |
33289 | 162 { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
163 { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
164 { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
165 { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
166 { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
33223 | 167 |
168 // NOTE TO MYSELF: Do we really need all/any non-gtkOptions, i.e. override mplayer options? | |
169 | |
33289 | 170 { "gui_skin", &skinName, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 171 |
33289 | 172 { "stopxscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 173 |
33289 | 174 { "cdrom_device", &cdrom_device, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
175 { "dvd_device", &dvd_device, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
33223 | 176 |
33289 | 177 { "osd_level", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL }, |
33223 | 178 |
33289 | 179 { "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |
180 { "v_vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, | |
33223 | 181 |
33289 | 182 { "vf_autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL }, |
183 { "vo_direct_render", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
184 { "vo_doublebuffering", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
185 { "vo_panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL }, | |
33223 | 186 |
33289 | 187 { "v_flip", &flip, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL }, |
188 { "v_framedrop", &frame_dropping, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL }, | |
189 { "v_idx", &index_mode, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL }, | |
190 { "v_ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 191 |
33289 | 192 { "ao_driver", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |
193 { "a_afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, | |
33223 | 194 |
33289 | 195 { "softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 196 |
33289 | 197 { "sub_auto_load", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 198 #ifdef CONFIG_ICONV |
33289 | 199 { "sub_cp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 200 #endif |
33289 | 201 { "sub_overlap", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL }, |
202 { "sub_pos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 200, NULL }, | |
203 { "sub_unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 204 |
33289 | 205 { "font_factor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL }, |
206 { "font_name", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
33223 | 207 |
208 #ifdef CONFIG_FREETYPE | |
33289 | 209 { "font_encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33370
c8977ae8c24f
Write all CONF_TYPE_FLOAT values as floating point constants.
ib
parents:
33289
diff
changeset
|
210 { "font_text_scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL }, |
c8977ae8c24f
Write all CONF_TYPE_FLOAT values as floating point constants.
ib
parents:
33289
diff
changeset
|
211 { "font_osd_scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL }, |
c8977ae8c24f
Write all CONF_TYPE_FLOAT values as floating point constants.
ib
parents:
33289
diff
changeset
|
212 { "font_blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL }, |
c8977ae8c24f
Write all CONF_TYPE_FLOAT values as floating point constants.
ib
parents:
33289
diff
changeset
|
213 { "font_outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL }, |
33289 | 214 { "font_autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL }, |
33223 | 215 #endif |
216 | |
217 #ifdef CONFIG_ASS | |
33289 | 218 { "ass_enabled", &ass_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
219 { "ass_use_margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
220 { "ass_top_margin", &ass_top_margin, CONF_TYPE_INT, CONF_RANGE, 0, 512, NULL }, | |
221 { "ass_bottom_margin", &ass_bottom_margin, CONF_TYPE_INT, CONF_RANGE, 0, 512, NULL }, | |
33223 | 222 #endif |
223 | |
33289 | 224 { NULL, NULL, 0, 0, 0, 0, NULL } |
23077 | 225 }; |
226 | |
33179 | 227 static char *gfgets(char *str, int size, FILE *f) |
23077 | 228 { |
33179 | 229 char *s, c; |
230 | |
231 s = fgets(str, size, f); | |
232 | |
233 if (s) { | |
234 c = s[strlen(s) - 1]; | |
235 | |
236 if (c == '\n' || c == '\r') | |
237 s[strlen(s) - 1] = 0; | |
238 | |
239 c = s[strlen(s) - 1]; | |
240 | |
241 if (c == '\n' || c == '\r') | |
242 s[strlen(s) - 1] = 0; | |
243 } | |
244 | |
245 return s; | |
23077 | 246 } |
247 | |
33179 | 248 int cfg_read(void) |
23077 | 249 { |
33179 | 250 char *cfg; |
251 FILE *f; | |
252 | |
253 // configuration | |
254 | |
255 cfg = get_path("gui.conf"); | |
256 | |
257 mp_msg(MSGT_GPLAYER, MSGL_V, "[cfg] reading config file: %s\n", cfg); | |
258 | |
259 gui_conf = m_config_new(); | |
260 m_config_register_options(gui_conf, gui_opts); | |
261 | |
262 if (!disable_gui_conf && (m_config_parse_config_file(gui_conf, cfg) < 0)) { | |
263 mp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_ConfigFileError); | |
33264 | 264 // guiExit(1); |
33179 | 265 } |
266 | |
267 free(cfg); | |
23077 | 268 |
33179 | 269 // playlist |
270 | |
271 cfg = get_path("gui.pl"); | |
272 f = fopen(cfg, "rt"); | |
273 | |
274 if (f) { | |
275 while (!feof(f)) { | |
276 char tmp[512]; | |
277 plItem *item; | |
23077 | 278 |
33179 | 279 if (gfgets(tmp, 512, f) == NULL) |
280 continue; | |
281 | |
282 item = calloc(1, sizeof(plItem)); | |
283 item->path = strdup(tmp); | |
284 gfgets(tmp, 512, f); | |
285 item->name = strdup(tmp); | |
286 gtkSet(gtkAddPlItem, 0, (void *)item); | |
287 } | |
288 | |
289 fclose(f); | |
23077 | 290 } |
33179 | 291 |
292 free(cfg); | |
293 | |
294 // URL list | |
295 | |
296 cfg = get_path("gui.url"); | |
297 f = fopen(cfg, "rt"); | |
23077 | 298 |
33179 | 299 if (f) { |
300 while (!feof(f)) { | |
301 char tmp[512]; | |
302 URLItem *item; | |
303 | |
304 if (gfgets(tmp, 512, f) == NULL) | |
305 continue; | |
306 | |
307 item = calloc(1, sizeof(URLItem)); | |
308 item->url = strdup(tmp); | |
309 gtkSet(gtkAddURLItem, 0, (void *)item); | |
310 } | |
311 | |
312 fclose(f); | |
23077 | 313 } |
33179 | 314 |
315 free(cfg); | |
316 | |
317 // directory history | |
318 | |
319 cfg = get_path("gui.history"); | |
320 f = fopen(cfg, "rt+"); | |
321 | |
322 if (f) { | |
323 int i = 0; | |
23077 | 324 |
33179 | 325 while (!feof(f)) { |
326 char tmp[512]; | |
327 | |
328 if (gfgets(tmp, 512, f) == NULL) | |
329 continue; | |
330 | |
331 fsHistory[i++] = gstrdup(tmp); | |
332 } | |
333 | |
334 fclose(f); | |
23077 | 335 } |
336 | |
33179 | 337 free(cfg); |
338 | |
339 return 0; | |
23077 | 340 } |
341 | |
33179 | 342 int cfg_write(void) |
23077 | 343 { |
33179 | 344 char *cfg; |
345 FILE *f; | |
346 int i; | |
347 | |
348 // configuration | |
349 | |
350 cfg = get_path("gui.conf"); | |
351 f = fopen(cfg, "wt+"); | |
352 | |
353 if (f) { | |
354 for (i = 0; gui_opts[i].name; i++) { | |
355 char *v = m_option_print(&gui_opts[i], gui_opts[i].p); | |
356 | |
357 if (v == (char *)-1) { | |
358 mp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_UnableToSaveOption, gui_opts[i].name); | |
359 v = NULL; | |
360 } | |
23077 | 361 |
33179 | 362 if (v) { |
363 fprintf(f, "%s = \"%s\"\n", gui_opts[i].name, v); | |
364 free(v); | |
365 } | |
366 } | |
367 | |
368 fclose(f); | |
23077 | 369 } |
33179 | 370 |
371 free(cfg); | |
372 | |
373 // playlist | |
374 | |
375 cfg = get_path("gui.pl"); | |
376 f = fopen(cfg, "wt+"); | |
377 | |
378 if (f) { | |
379 plCurrent = plList; | |
380 | |
381 while (plCurrent) { | |
382 if (plCurrent->path && plCurrent->name) { | |
383 fprintf(f, "%s\n", plCurrent->path); | |
384 fprintf(f, "%s\n", plCurrent->name); | |
385 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
386 |
33179 | 387 plCurrent = plCurrent->next; |
388 } | |
389 | |
390 fclose(f); | |
23077 | 391 } |
33179 | 392 |
393 free(cfg); | |
394 | |
395 // URL list | |
396 | |
397 cfg = get_path("gui.url"); | |
398 f = fopen(cfg, "wt+"); | |
399 | |
400 if (f) { | |
401 while (URLList) { | |
402 if (URLList->url) | |
403 fprintf(f, "%s\n", URLList->url); | |
404 | |
405 URLList = URLList->next; | |
406 } | |
23077 | 407 |
33179 | 408 fclose(f); |
23077 | 409 } |
33179 | 410 |
411 free(cfg); | |
412 | |
413 // directory history | |
414 | |
415 cfg = get_path("gui.history"); | |
416 f = fopen(cfg, "wt+"); | |
417 | |
418 if (f) { | |
419 int i = 0; | |
23077 | 420 |
33179 | 421 // while (fsHistory[i] != NULL) |
422 for (i = 0; i < 5; i++) | |
423 if (fsHistory[i]) | |
424 fprintf(f, "%s\n", fsHistory[i]); | |
23077 | 425 |
33179 | 426 fclose(f); |
427 } | |
428 | |
429 free(cfg); | |
430 | |
431 return 0; | |
23077 | 432 } |