4 #include "lib/vfs/vfs.h" /* vfs_path_t */
6 /*** typedefs(not structures) and defined constants **********************************************/
8 #define CONFIG_APP_SECTION "Midnight-Commander"
9 #define CONFIG_PANELS_SECTION "Panels"
10 #define CONFIG_LAYOUT_SECTION "Layout"
11 #define CONFIG_MISC_SECTION "Misc"
12 #define CONFIG_EXT_EDITOR_VIEWER_SECTION "External editor or viewer parameters"
14 /*** enums ***************************************************************************************/
16 /*** structures declarations (and typedefs of structures)*****************************************/
18 typedef struct mc_config_t
24 /*** global variables defined in .c file *********************************************************/
26 extern int num_history_items_recorded
;
28 /*** declarations of public functions ************************************************************/
30 /* mcconfig/common.c: */
32 mc_config_t
*mc_config_init (const gchar
* ini_path
, gboolean read_only
);
33 void mc_config_deinit (mc_config_t
* mc_config
);
35 gboolean
mc_config_has_param (const mc_config_t
* mc_config
, const char *group
,
37 gboolean
mc_config_has_group (mc_config_t
* mc_config
, const char *group
);
39 gboolean
mc_config_del_key (mc_config_t
* mc_config
, const char *group
, const gchar
* param
);
40 gboolean
mc_config_del_group (mc_config_t
* mc_config
, const char *group
);
42 gboolean
mc_config_read_file (mc_config_t
* mc_config
, const gchar
* ini_path
, gboolean read_only
,
43 gboolean remove_empty
);
44 gboolean
mc_config_save_file (mc_config_t
* config
, GError
** mcerror
);
45 gboolean
mc_config_save_to_file (mc_config_t
* mc_config
, const gchar
* ini_path
,
51 gchar
**mc_config_get_groups (const mc_config_t
* mc_config
, gsize
* len
);
52 gchar
**mc_config_get_keys (const mc_config_t
* mc_config
, const gchar
* group
, gsize
* len
);
54 gchar
*mc_config_get_string (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
56 gchar
*mc_config_get_string_raw (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
58 gboolean
mc_config_get_bool (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
60 int mc_config_get_int (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
, int def
);
62 gchar
**mc_config_get_string_list (mc_config_t
* mc_config
, const gchar
* group
,
63 const gchar
* param
, gsize
* length
);
64 gboolean
*mc_config_get_bool_list (mc_config_t
* mc_config
, const gchar
* group
,
65 const gchar
* param
, gsize
* length
);
66 int *mc_config_get_int_list (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
72 void mc_config_set_string_raw (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
74 void mc_config_set_string_raw_value (mc_config_t
* mc_config
, const gchar
* group
,
75 const gchar
* param
, const gchar
* value
);
76 void mc_config_set_string (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
78 void mc_config_set_bool (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
80 void mc_config_set_int (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
84 mc_config_set_string_list (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
85 const gchar
* const value
[], gsize length
);
86 void mc_config_set_bool_list (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
87 gboolean value
[], gsize length
);
88 void mc_config_set_int_list (mc_config_t
* mc_config
, const gchar
* group
, const gchar
* param
,
89 int value
[], gsize length
);
92 /* mcconfig/paths.c: */
94 void mc_config_init_config_paths (GError
** error
);
95 void mc_config_deinit_config_paths (void);
97 const char *mc_config_get_data_path (void);
98 const char *mc_config_get_cache_path (void);
99 const char *mc_config_get_home_dir (void);
100 const char *mc_config_get_path (void);
101 char *mc_config_get_full_path (const char *config_name
);
102 vfs_path_t
*mc_config_get_full_vpath (const char *config_name
);
104 /* mcconfig/history.h */
106 /* read history to the mc_config, but don't save config to file */
107 GList
*mc_config_history_get (const char *name
);
108 /* read recent item from the history */
109 char *mc_config_history_get_recent_item (const char *name
);
110 /* load history from the mc_config */
111 GList
*mc_config_history_load (mc_config_t
* cfg
, const char *name
);
112 /* save history to the mc_config, but don't save config to file */
113 void mc_config_history_save (mc_config_t
* cfg
, const char *name
, GList
* h
);
116 /*** inline functions ****************************************************************************/
118 #endif /* MC__CONFIG_H */