annotate gui/cfg.c @ 34576:7596714e9e76

Replace string constants by symbolic constants. This allows definition at one single location.
author ib
date Thu, 09 Feb 2012 12:52:09 +0000
parents fe172cd7b8e8
children 22887c794c02
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26458
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
1 /*
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
2 * This file is part of MPlayer.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
3 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
5 * it under the terms of the GNU General Public License as published by
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
7 * (at your option) any later version.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
8 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
12 * GNU General Public License for more details.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
13 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
14 * You should have received a copy of the GNU General Public License along
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26422
diff changeset
17 */
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
18
34562
fe172cd7b8e8 Add some missing #includes to cfg.c.
ib
parents: 34561
diff changeset
19 #include <stdio.h>
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
20 #include <stdlib.h>
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
21 #include <string.h>
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
22
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
23 #include "cfg.h"
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
24 #include "interface.h"
33742
e1539e14d60f Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents: 33737
diff changeset
25 #include "util/list.h"
33737
71c29e8ec68f Move string functions from interface.c to string.c.
ib
parents: 33565
diff changeset
26 #include "util/string.h"
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
27
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
28 #include "config.h"
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
29 #include "help_mp.h"
30653
3d23e24c5c60 Declare externally used variables from vd.c as extern in vd.h.
diego
parents: 30633
diff changeset
30 #include "libmpcodecs/vd.h"
34562
fe172cd7b8e8 Add some missing #includes to cfg.c.
ib
parents: 34561
diff changeset
31 #include "libmpdemux/demuxer.h"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
32 #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
33 #include "libvo/x11_common.h"
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
34 #include "mixer.h"
33768
cee9987bc81d Remove guiExit().
ib
parents: 33751
diff changeset
35 #include "mp_core.h"
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
36 #include "mp_msg.h"
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
37 #include "mpcommon.h"
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
38 #include "mplayer.h"
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
39 #include "parser-cfg.h"
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
40 #include "path.h"
34562
fe172cd7b8e8 Add some missing #includes to cfg.c.
ib
parents: 34561
diff changeset
41 #include "stream/stream.h"
fe172cd7b8e8 Add some missing #includes to cfg.c.
ib
parents: 34561
diff changeset
42 #include "sub/ass_mp.h"
32981
6e22bcc85ac5 Cosmetic: Add required include files.
ib
parents: 32467
diff changeset
43 #include "sub/font_load.h"
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
44 #include "sub/sub.h"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
45
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
46 #define GUI_CONFIGURATION "gui.conf"
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
47 #define GUI_HISTORY "gui.history"
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
48 #define GUI_PLAYLIST "gui.pl"
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
49 #define GUI_URLLIST "gui.url"
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
50
33265
62c0471bcf8c Free config.
ib
parents: 33264
diff changeset
51 m_config_t *gui_conf;
62c0471bcf8c Free config.
ib
parents: 33264
diff changeset
52
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
53 int gtkCacheOn;
33180
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
54 int gtkCacheSize = 2048;
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
55
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
56 int gtkVfPP;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
57
33249
8fc02babf810 Limit config option vf_lavc to dxr3.
ib
parents: 33242
diff changeset
58 int gtkVfLAVC;
33180
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
59 char *gtkDXR3Device;
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
60
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
61 int gtkAutoSyncOn;
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
62 int gtkAutoSync;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
63
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
64 int gtkAONorm;
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
65 int gtkAOSurround;
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
66 int gtkAOExtraStereo;
33221
9920df91c2b7 Make initial value explicitly type float.
ib
parents: 33220
diff changeset
67 float gtkAOExtraStereoMul = 1.0f;
33180
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
68
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
69 char *gtkAOALSAMixer;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
70 char *gtkAOALSAMixerChannel;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
71 char *gtkAOALSADevice;
33180
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
72
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
73 char *gtkAOOSSMixer;
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
74 char *gtkAOOSSMixerChannel;
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
75 char *gtkAOOSSDevice;
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
76
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
77 char *gtkAOESDDevice;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
78
33180
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
79 char *gtkAOSDLDriver;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
80
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
81 int gtkEnableAudioEqualizer;
33747
e5959dcf8fe6 Remove config related variables from interface.[ch].
ib
parents: 33742
diff changeset
82 float gtkEquChannels[6][10];
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
83
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
84 int gtkSubDumpMPSub;
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
85 int gtkSubDumpSrt;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
86
33180
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
87 gtkASS_t gtkASS;
422e5d306d44 Group and sort configuration variable definitions.
ib
parents: 33179
diff changeset
88
33220
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
89 int gtkEnablePlayBar = 1;
f17e21799261 Remove needless explicit initialization.
ib
parents: 33218
diff changeset
90 int gtkLoadFullscreen;
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
91 int gtkShowVideoWindow = 1;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
92
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
93 int gui_save_pos = 1;
33218
f0c2a62e3e89 Position windows initially at coordinates given in skin file.
ib
parents: 33180
diff changeset
94 int gui_main_pos_x = -3;
f0c2a62e3e89 Position windows initially at coordinates given in skin file.
ib
parents: 33180
diff changeset
95 int gui_main_pos_y = -3;
f0c2a62e3e89 Position windows initially at coordinates given in skin file.
ib
parents: 33180
diff changeset
96 int gui_sub_pos_x = -3;
f0c2a62e3e89 Position windows initially at coordinates given in skin file.
ib
parents: 33180
diff changeset
97 int gui_sub_pos_y = -3;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
98
33747
e5959dcf8fe6 Remove config related variables from interface.[ch].
ib
parents: 33742
diff changeset
99 int guiWinID = -1;
e5959dcf8fe6 Remove config related variables from interface.[ch].
ib
parents: 33742
diff changeset
100
e5959dcf8fe6 Remove config related variables from interface.[ch].
ib
parents: 33742
diff changeset
101 char *skinName;
e5959dcf8fe6 Remove config related variables from interface.[ch].
ib
parents: 33742
diff changeset
102
33751
c28c967e40e9 Replace numeric constant fsPersistant_MaxPos for fsHistory array size.
ib
parents: 33750
diff changeset
103 char *fsHistory[5];
33750
8b5898908212 Remove variable holding history of selected files from interface.[ch].
ib
parents: 33748
diff changeset
104
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
105 static const m_option_t gui_opts[] = {
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
106 { "cache", &gtkCacheOn, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
107 { "cache_size", &gtkCacheSize, CONF_TYPE_INT, CONF_RANGE, 32, 1048576, NULL },
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28051
diff changeset
108
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
109 { "vf_pp", &gtkVfPP, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
110
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27359
diff changeset
111 #ifdef CONFIG_DXR3
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
112 { "vf_lavc", &gtkVfLAVC, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
113 { "vo_dxr3_device", &gtkDXR3Device, CONF_TYPE_STRING, 0, 0, 0, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
114 #endif
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
115
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
116 { "autosync", &gtkAutoSyncOn, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
117 { "autosync_size", &gtkAutoSync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
118
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
119 { "ao_volnorm", &gtkAONorm, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
120 { "ao_surround", &gtkAOSurround, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
121 { "ao_extra_stereo", &gtkAOExtraStereo, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
122 { "ao_extra_stereo_coefficient", &gtkAOExtraStereoMul, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
123
27390
9d95dc936e66 Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents: 27387
diff changeset
124 #ifdef CONFIG_ALSA
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
125 { "ao_alsa_mixer", &gtkAOALSAMixer, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
126 { "ao_alsa_mixer_channel", &gtkAOALSAMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
127 { "ao_alsa_device", &gtkAOALSADevice, CONF_TYPE_STRING, 0, 0, 0, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
128 #endif
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
129
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
130 #ifdef CONFIG_OSS_AUDIO
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
131 { "ao_oss_mixer", &gtkAOOSSMixer, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
132 { "ao_oss_mixer_channel", &gtkAOOSSMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
133 { "ao_oss_device", &gtkAOOSSDevice, CONF_TYPE_STRING, 0, 0, 0, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
134 #endif
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
135
27341
e7c989f7a7c9 Start unifying names of internal preprocessor directives.
diego
parents: 26458
diff changeset
136 #ifdef CONFIG_ESD
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
137 { "ao_esd_device", &gtkAOESDDevice, CONF_TYPE_STRING, 0, 0, 0, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
138 #endif
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
139
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
140 #ifdef CONFIG_SDL
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
141 { "ao_sdl_subdriver", &gtkAOSDLDriver, CONF_TYPE_STRING, 0, 0, 0, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
142 #endif
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
143
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
144 { "enable_audio_equ", &gtkEnableAudioEqualizer, CONF_TYPE_FLAG, 0, 0, 1, NULL },
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
145
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
146 { "equ_channel_1", &gtkEquChannel1, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
147 { "equ_channel_2", &gtkEquChannel2, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
148 { "equ_channel_3", &gtkEquChannel3, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
149 { "equ_channel_4", &gtkEquChannel4, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
150 { "equ_channel_5", &gtkEquChannel5, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
151 { "equ_channel_6", &gtkEquChannel6, CONF_TYPE_STRING, 0, 0, 0, NULL },
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28051
diff changeset
152
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
153 #define audio_equ_row(i, j) \
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
154 { "equ_band_" # i # j, &gtkEquChannels[i][j], CONF_TYPE_FLOAT, CONF_RANGE, -15.0, 15.0, NULL }
33289
be7d8c249dfd Cosmetic: uncrustify related indent adjustments
ib
parents: 33265
diff changeset
155 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),
be7d8c249dfd Cosmetic: uncrustify related indent adjustments
ib
parents: 33265
diff changeset
156 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),
be7d8c249dfd Cosmetic: uncrustify related indent adjustments
ib
parents: 33265
diff changeset
157 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),
be7d8c249dfd Cosmetic: uncrustify related indent adjustments
ib
parents: 33265
diff changeset
158 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),
be7d8c249dfd Cosmetic: uncrustify related indent adjustments
ib
parents: 33265
diff changeset
159 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),
be7d8c249dfd Cosmetic: uncrustify related indent adjustments
ib
parents: 33265
diff changeset
160 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
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
161 #undef audio_equ_row
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
162
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
163 { "playbar", &gtkEnablePlayBar, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
164 { "load_fullscreen", &gtkLoadFullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
165 { "show_videowin", &gtkShowVideoWindow, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
166
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
167 { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
168 { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
169 { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
170 { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
171 { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
172
33477
49d9967970c0 Add option '-idle' to the GUI configuration file.
ib
parents: 33476
diff changeset
173 { "idle", &player_idle_mode, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL },
49d9967970c0 Add option '-idle' to the GUI configuration file.
ib
parents: 33476
diff changeset
174
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
175 // NOTE TO MYSELF: Do we really need all/any non-gtkOptions, i.e. override mplayer options?
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
176
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
177 { "gui_skin", &skinName, CONF_TYPE_STRING, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
178
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
179 { "stopxscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
180
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
181 { "cdrom_device", &cdrom_device, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
182 { "dvd_device", &dvd_device, CONF_TYPE_STRING, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
183
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
184 { "osd_level", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
185
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
186 { "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
187 { "v_vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
188
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
189 { "vf_autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
190 { "vo_direct_render", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
191 { "vo_doublebuffering", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
192 { "vo_panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
193
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
194 { "v_flip", &flip, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
195 { "v_framedrop", &frame_dropping, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
196 { "v_idx", &index_mode, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
197 { "v_ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
198
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
199 { "ao_driver", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
200 { "a_afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
201
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
202 { "softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
203
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
204 { "sub_auto_load", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
205 #ifdef CONFIG_ICONV
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
206 { "sub_cp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
207 #endif
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
208 { "sub_overlap", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
209 { "sub_pos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 200, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
210 { "sub_unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
211
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
212 { "font_factor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
213 { "font_name", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
214
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
215 #ifdef CONFIG_FREETYPE
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
216 { "font_encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
217 { "font_text_scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
218 { "font_osd_scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
219 { "font_blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
220 { "font_outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
221 { "font_autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
222 #endif
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
224 #ifdef CONFIG_ASS
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
225 { "ass_enabled", &ass_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
226 { "ass_use_margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 0, 1, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
227 { "ass_top_margin", &ass_top_margin, CONF_TYPE_INT, CONF_RANGE, 0, 512, NULL },
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
228 { "ass_bottom_margin", &ass_bottom_margin, CONF_TYPE_INT, CONF_RANGE, 0, 512, NULL },
33223
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
229 #endif
6197c605769e Rearrange GUI options.
ib
parents: 33221
diff changeset
230
33478
a86e08ff3198 Cosmetic: Adjust indent.
ib
parents: 33477
diff changeset
231 { NULL, NULL, 0, 0, 0, 0, NULL }
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
232 };
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
233
33565
9c4163ef54e4 Add const to string pointer argument that will not be modified.
reimar
parents: 33555
diff changeset
234 int cfg_gui_include(m_option_t *conf, const char *filename)
33470
90e5f5c28304 Add option '-gui-include'.
ib
parents: 33370
diff changeset
235 {
90e5f5c28304 Add option '-gui-include'.
ib
parents: 33370
diff changeset
236 (void)conf;
90e5f5c28304 Add option '-gui-include'.
ib
parents: 33370
diff changeset
237
34172
5761a9a31bcb Sanitize include option behaviour.
reimar
parents: 33985
diff changeset
238 return m_config_parse_config_file(gui_conf, filename, 0);
33470
90e5f5c28304 Add option '-gui-include'.
ib
parents: 33370
diff changeset
239 }
90e5f5c28304 Add option '-gui-include'.
ib
parents: 33370
diff changeset
240
34561
f744357e94bd Make cfg_read() and cfg_write() void functions.
ib
parents: 34560
diff changeset
241 void cfg_read(void)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
242 {
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
243 char *cfg;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
244 FILE *f;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
245
33476
d068eac6cbf9 Make option '-noidle' working for the GUI.
ib
parents: 33470
diff changeset
246 player_idle_mode = 1; // GUI is in idle mode by default
d068eac6cbf9 Make option '-noidle' working for the GUI.
ib
parents: 33470
diff changeset
247
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
248 // configuration
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
249
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
250 cfg = get_path(GUI_CONFIGURATION);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
251
33985
d99f341d8442 Replace all mp_dbg() calls by mp_msg().
ib
parents: 33768
diff changeset
252 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[cfg] file: %s\n", cfg);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
253
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
254 gui_conf = m_config_new();
33480
e413b573e4ec Check error when creating the GUI config object.
ib
parents: 33478
diff changeset
255
e413b573e4ec Check error when creating the GUI config object.
ib
parents: 33478
diff changeset
256 if (!gui_conf) {
e413b573e4ec Check error when creating the GUI config object.
ib
parents: 33478
diff changeset
257 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_MemAllocFailed);
33768
cee9987bc81d Remove guiExit().
ib
parents: 33751
diff changeset
258 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0);
33480
e413b573e4ec Check error when creating the GUI config object.
ib
parents: 33478
diff changeset
259 }
e413b573e4ec Check error when creating the GUI config object.
ib
parents: 33478
diff changeset
260
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
261 m_config_register_options(gui_conf, gui_opts);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
262
34172
5761a9a31bcb Sanitize include option behaviour.
reimar
parents: 33985
diff changeset
263 if (!disable_gui_conf && (m_config_parse_config_file(gui_conf, cfg, 1) < 0)) {
33530
7ced3616af42 Revise some messages.
ib
parents: 33480
diff changeset
264 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_ConfigFileError);
33768
cee9987bc81d Remove guiExit().
ib
parents: 33751
diff changeset
265 // mplayer(MPLAYER_EXIT_GUI, 1, 0);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
266 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
267
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
268 free(cfg);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
269
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
270 // playlist
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
271
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
272 cfg = get_path(GUI_PLAYLIST);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
273 f = fopen(cfg, "rt");
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
274
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
275 if (f) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
276 while (!feof(f)) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
277 char tmp[512];
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
278 plItem *item;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
279
34560
abcf26dcec6b Add fgetstr() to read from files without end-of-line characters.
ib
parents: 34454
diff changeset
280 if (fgetstr(tmp, 512, f) == NULL)
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
281 continue;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
282
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
283 item = calloc(1, sizeof(plItem));
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
284 item->path = strdup(tmp);
34560
abcf26dcec6b Add fgetstr() to read from files without end-of-line characters.
ib
parents: 34454
diff changeset
285 fgetstr(tmp, 512, f);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
286 item->name = strdup(tmp);
33742
e1539e14d60f Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents: 33737
diff changeset
287 listSet(gtkAddPlItem, item);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
288 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
289
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
290 fclose(f);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
291 }
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
292
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
293 free(cfg);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
294
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
295 // URL list
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
296
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
297 cfg = get_path(GUI_URLLIST);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
298 f = fopen(cfg, "rt");
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
299
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
300 if (f) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
301 while (!feof(f)) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
302 char tmp[512];
33555
c5a19bbeac2b Cosmetic: Rename some GUI variables and functions.
ib
parents: 33530
diff changeset
303 urlItem *item;
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
304
34560
abcf26dcec6b Add fgetstr() to read from files without end-of-line characters.
ib
parents: 34454
diff changeset
305 if (fgetstr(tmp, 512, f) == NULL)
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
306 continue;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
307
33555
c5a19bbeac2b Cosmetic: Rename some GUI variables and functions.
ib
parents: 33530
diff changeset
308 item = calloc(1, sizeof(urlItem));
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
309 item->url = strdup(tmp);
33742
e1539e14d60f Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents: 33737
diff changeset
310 listSet(gtkAddURLItem, item);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
311 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
312
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
313 fclose(f);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
314 }
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
315
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
316 free(cfg);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
317
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
318 // directory history
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
319
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
320 cfg = get_path(GUI_HISTORY);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
321 f = fopen(cfg, "rt+");
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
322
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
323 if (f) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
324 int i = 0;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
325
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
326 while (!feof(f)) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
327 char tmp[512];
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
328
34560
abcf26dcec6b Add fgetstr() to read from files without end-of-line characters.
ib
parents: 34454
diff changeset
329 if (fgetstr(tmp, 512, f) == NULL)
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
330 continue;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
331
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
332 fsHistory[i++] = gstrdup(tmp);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
333 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
334
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
335 fclose(f);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
336 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
337
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
338 free(cfg);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
339 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
340
34561
f744357e94bd Make cfg_read() and cfg_write() void functions.
ib
parents: 34560
diff changeset
341 void cfg_write(void)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
342 {
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
343 char *cfg;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
344 FILE *f;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
345 int i;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
346
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
347 // configuration
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
348
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
349 cfg = get_path(GUI_CONFIGURATION);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
350 f = fopen(cfg, "wt+");
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
351
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
352 if (f) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
353 for (i = 0; gui_opts[i].name; i++) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
354 char *v = m_option_print(&gui_opts[i], gui_opts[i].p);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
355
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
356 if (v == (char *)-1) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
357 mp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_UnableToSaveOption, gui_opts[i].name);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
358 v = NULL;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
359 }
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
360
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
361 if (v) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
362 fprintf(f, "%s = \"%s\"\n", gui_opts[i].name, v);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
363 free(v);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
364 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
365 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
366
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
367 fclose(f);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
368 }
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
369
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
370 free(cfg);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
371
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
372 // playlist
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
373
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
374 cfg = get_path(GUI_PLAYLIST);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
375 f = fopen(cfg, "wt+");
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
376
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
377 if (f) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
378 plCurrent = plList;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
379
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
380 while (plCurrent) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
381 if (plCurrent->path && plCurrent->name) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
382 fprintf(f, "%s\n", plCurrent->path);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
383 fprintf(f, "%s\n", plCurrent->name);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
384 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28051
diff changeset
385
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
386 plCurrent = plCurrent->next;
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
387 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
388
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
389 fclose(f);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
390 }
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
391
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
392 free(cfg);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
393
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
394 // URL list
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
395
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
396 cfg = get_path(GUI_URLLIST);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
397 f = fopen(cfg, "wt+");
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
398
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
399 if (f) {
33748
5860cfaff0a4 Cosmetic: Rename URLList urlList.
ib
parents: 33747
diff changeset
400 while (urlList) {
5860cfaff0a4 Cosmetic: Rename URLList urlList.
ib
parents: 33747
diff changeset
401 if (urlList->url)
5860cfaff0a4 Cosmetic: Rename URLList urlList.
ib
parents: 33747
diff changeset
402 fprintf(f, "%s\n", urlList->url);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
403
33748
5860cfaff0a4 Cosmetic: Rename URLList urlList.
ib
parents: 33747
diff changeset
404 urlList = urlList->next;
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
405 }
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
406
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
407 fclose(f);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
408 }
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
409
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
410 free(cfg);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
411
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
412 // directory history
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
413
34576
7596714e9e76 Replace string constants by symbolic constants.
ib
parents: 34562
diff changeset
414 cfg = get_path(GUI_HISTORY);
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
415 f = fopen(cfg, "wt+");
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
416
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
417 if (f) {
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
418 int i = 0;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
419
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
420 // while (fsHistory[i] != NULL)
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
421 for (i = 0; i < 5; i++)
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
422 if (fsHistory[i])
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
423 fprintf(f, "%s\n", fsHistory[i]);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
424
33179
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
425 fclose(f);
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
426 }
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
427
218edd8fc782 Cosmetic: Format to MPlayer coding style.
ib
parents: 32981
diff changeset
428 free(cfg);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
429 }