Refresh po-files
[midnight-commander.git] / lib / skin / ini-file.c
blobdc39b6bf5f045d35156d7a56fc669d40d4ab2009
1 /*
2 Skins engine.
3 Reading and parse ini-files
5 Copyright (C) 2009 The Free Software Foundation, Inc.
7 Written by:
8 Slava Zanko <slavazanko@gmail.com>, 2009.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software; you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation; either version 2 of the
15 License, or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be
18 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
19 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
25 MA 02110-1301, USA.
28 #include <config.h>
29 #include <string.h>
31 #include "internal.h"
32 #include "lib/fileloc.h"
34 #include "src/main.h"
37 /*** global variables ****************************************************************************/
39 /*** file scope macro definitions ****************************************************************/
41 /*** file scope type declarations ****************************************************************/
43 /*** file scope variables ************************************************************************/
45 /*** file scope functions ************************************************************************/
46 /* --------------------------------------------------------------------------------------------- */
48 static gboolean
49 mc_skin_ini_file_load_search_in_dir (mc_skin_t * mc_skin, const gchar * base_dir)
51 char *file_name, *file_name2;
53 file_name = g_build_filename (base_dir, MC_SKINS_SUBDIR, mc_skin->name, NULL);
54 if (exist_file (file_name)) {
55 mc_skin->config = mc_config_init (file_name);
56 g_free (file_name);
57 return (mc_skin->config != NULL);
59 g_free (file_name);
61 file_name2 = g_strdup_printf ("%s.ini", mc_skin->name);
62 file_name = g_build_filename (base_dir, MC_SKINS_SUBDIR, file_name2, NULL);
63 g_free (file_name2);
65 if (exist_file (file_name)) {
66 mc_skin->config = mc_config_init (file_name);
67 g_free (file_name);
68 return (mc_skin->config != NULL);
70 g_free (file_name);
71 return FALSE;
74 /* --------------------------------------------------------------------------------------------- */
75 /*** public functions ****************************************************************************/
76 /* --------------------------------------------------------------------------------------------- */
78 gboolean
79 mc_skin_ini_file_load (mc_skin_t * mc_skin)
81 char *file_name, *user_home_dir;
83 file_name = g_path_get_basename (mc_skin->name);
85 if (strcmp (file_name, mc_skin->name) != 0) {
86 g_free (file_name);
87 if (!g_path_is_absolute (mc_skin->name))
88 return FALSE;
89 mc_skin->config = mc_config_init (mc_skin->name);
90 return (mc_skin->config != NULL);
92 g_free (file_name);
94 /* ~/.mc/skins/ */
95 user_home_dir = concat_dir_and_file (home_dir, MC_USERCONF_DIR);
96 if (mc_skin_ini_file_load_search_in_dir (mc_skin, user_home_dir)) {
97 g_free (user_home_dir);
98 return TRUE;
100 g_free (user_home_dir);
102 /* /etc/mc/skins/ */
103 if (mc_skin_ini_file_load_search_in_dir (mc_skin, mc_home))
104 return TRUE;
106 /* /usr/share/mc/skins/ */
107 return mc_skin_ini_file_load_search_in_dir (mc_skin, mc_home_alt);
110 /* --------------------------------------------------------------------------------------------- */
112 gboolean
113 mc_skin_ini_file_parse (mc_skin_t * mc_skin)
115 mc_skin->description =
116 mc_config_get_string (mc_skin->config, "skin", "description", "- no description -");
117 if (!mc_skin_color_parse_ini_file (mc_skin))
118 return FALSE;
120 mc_skin_lines_parse_ini_file (mc_skin);
122 return TRUE;
125 /* --------------------------------------------------------------------------------------------- */
127 void
128 mc_skin_set_hardcoded_skin (mc_skin_t * mc_skin)
130 mc_skin->config = mc_config_init (NULL);
132 mc_config_set_string (mc_skin->config, "skin", "description", "hardcoded skin");
134 mc_skin_hardcoded_ugly_lines (mc_skin);
135 mc_skin_hardcoded_blackwhite_colors (mc_skin);
138 /* --------------------------------------------------------------------------------------------- */