1 /* Configure module for the Midnight Commander
2 Copyright (C) 1994, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 2007, 2009 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #include "lib/global.h"
23 #include "lib/strutil.h"
24 #include "lib/mcconfig.h"
26 /*** global variables **************************************************/
28 extern int utf8_display
;
30 /*** file scope macro definitions **************************************/
32 /*** file scope type declarations **************************************/
34 /*** file scope variables **********************************************/
36 /*** file scope functions **********************************************/
38 /*** public functions **************************************************/
41 mc_config_get_groups (mc_config_t
* mc_config
, gsize
* len
)
47 ret
= g_try_malloc0 (sizeof (gchar
**));
52 ret
= g_key_file_get_groups (mc_config
->handle
, len
);
55 ret
= g_try_malloc0 (sizeof (gchar
**));
60 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
63 mc_config_get_keys (mc_config_t
* mc_config
, const gchar
* group
, gsize
* len
)
67 if (!mc_config
|| !group
)
69 ret
= g_try_malloc0 (sizeof (gchar
**));
74 ret
= g_key_file_get_keys (mc_config
->handle
, group
, len
, NULL
);
77 ret
= g_try_malloc0 (sizeof (gchar
**));
82 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
85 mc_config_get_string (mc_config_t
* mc_config
, const gchar
* group
,
86 const gchar
* param
, const gchar
* def
)
91 const char *_system_codepage
= str_detect_termencoding();
93 if (!mc_config
|| !group
|| !param
)
94 return def
? g_strdup (def
) : NULL
;
96 if (! mc_config_has_param(mc_config
, group
, param
))
98 mc_config_set_string (mc_config
, group
, param
, def
? def
: "");
99 return def
? g_strdup (def
) : NULL
;
102 ret
= g_key_file_get_string (mc_config
->handle
, group
, param
, NULL
);
105 ret
= def
? g_strdup (def
) : NULL
;
107 if (str_isutf8 (_system_codepage
))
110 conv
= g_iconv_open (_system_codepage
, "UTF-8");
111 if (conv
== INVALID_CONV
)
114 buffer
= g_string_new ("");
116 if (str_convert (conv
, ret
, buffer
) == ESTR_FAILURE
)
118 g_string_free(buffer
, TRUE
);
119 str_close_conv (conv
);
122 str_close_conv (conv
);
126 return g_string_free(buffer
, FALSE
);
129 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
132 mc_config_get_string_raw (mc_config_t
* mc_config
, const gchar
* group
,
133 const gchar
* param
, const gchar
* def
)
137 if (!mc_config
|| !group
|| !param
)
138 return def
? g_strdup (def
) : NULL
;
140 if (! mc_config_has_param(mc_config
, group
, param
))
142 mc_config_set_string (mc_config
, group
, param
, def
? def
: "");
143 return def
? g_strdup (def
) : NULL
;
146 ret
= g_key_file_get_string (mc_config
->handle
, group
, param
, NULL
);
149 ret
= def
? g_strdup (def
) : NULL
;
154 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
157 mc_config_get_bool (mc_config_t
* mc_config
, const gchar
* group
,
158 const gchar
* param
, gboolean def
)
160 if (!mc_config
|| !group
|| !param
)
163 if (! mc_config_has_param(mc_config
, group
, param
))
165 mc_config_set_bool (mc_config
, group
, param
, def
);
169 return g_key_file_get_boolean (mc_config
->handle
, group
, param
, NULL
);
172 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
175 mc_config_get_int (mc_config_t
* mc_config
, const gchar
* group
,
176 const gchar
* param
, int def
)
178 if (!mc_config
|| !group
|| !param
)
181 if (! mc_config_has_param(mc_config
, group
, param
))
183 mc_config_set_int (mc_config
, group
, param
, def
);
187 return g_key_file_get_integer (mc_config
->handle
, group
, param
, NULL
);
190 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
191 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
194 mc_config_get_string_list (mc_config_t
* mc_config
, const gchar
* group
,
195 const gchar
* param
, gsize
* length
)
197 if (!mc_config
|| !group
|| !param
)
200 return g_key_file_get_string_list (mc_config
->handle
, group
, param
,
204 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
207 mc_config_get_bool_list (mc_config_t
* mc_config
, const gchar
* group
,
208 const gchar
* param
, gsize
* length
)
210 if (!mc_config
|| !group
|| !param
)
213 return g_key_file_get_boolean_list (mc_config
->handle
, group
, param
,
217 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
220 mc_config_get_int_list (mc_config_t
* mc_config
, const gchar
* group
,
221 const gchar
* param
, gsize
* length
)
223 if (!mc_config
|| !group
|| !param
)
226 return g_key_file_get_integer_list (mc_config
->handle
, group
, param
,
230 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */