mcconfig.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #ifndef MC__CONFIG_H
  2. #define MC__CONFIG_H
  3. #include "lib/vfs/vfs.h" /* vfs_path_t */
  4. /*** typedefs(not structures) and defined constants **********************************************/
  5. #define CONFIG_APP_SECTION "Midnight-Commander"
  6. #define CONFIG_PANELS_SECTION "Panels"
  7. #define CONFIG_LAYOUT_SECTION "Layout"
  8. #define CONFIG_MISC_SECTION "Misc"
  9. #define CONFIG_EXT_EDITOR_VIEWER_SECTION "External editor or viewer parameters"
  10. /*** enums ***************************************************************************************/
  11. /*** structures declarations (and typedefs of structures)*****************************************/
  12. typedef struct mc_config_t
  13. {
  14. GKeyFile *handle;
  15. gchar *ini_path;
  16. } mc_config_t;
  17. /*** global variables defined in .c file *********************************************************/
  18. extern int num_history_items_recorded;
  19. /*** declarations of public functions ************************************************************/
  20. /* mcconfig/common.c: */
  21. mc_config_t *mc_config_init (const gchar *ini_path, gboolean read_only);
  22. void mc_config_deinit (mc_config_t *mc_config);
  23. gboolean mc_config_has_param (const mc_config_t *mc_config, const char *group, const gchar *param);
  24. gboolean mc_config_has_group (mc_config_t *mc_config, const char *group);
  25. gboolean mc_config_del_key (mc_config_t *mc_config, const char *group, const gchar *param);
  26. gboolean mc_config_del_group (mc_config_t *mc_config, const char *group);
  27. gboolean mc_config_read_file (mc_config_t *mc_config, const gchar *ini_path, gboolean read_only,
  28. gboolean remove_empty);
  29. gboolean mc_config_save_file (mc_config_t *config, GError **mcerror);
  30. gboolean mc_config_save_to_file (mc_config_t *mc_config, const gchar *ini_path, GError **mcerror);
  31. /* mcconfig/get.c: */
  32. gchar **mc_config_get_groups (const mc_config_t *mc_config, gsize *len);
  33. gchar **mc_config_get_keys (const mc_config_t *mc_config, const gchar *group, gsize *len);
  34. gchar *mc_config_get_string (mc_config_t *mc_config, const gchar *group, const gchar *param,
  35. const gchar *def);
  36. gchar *mc_config_get_string_raw (mc_config_t *mc_config, const gchar *group, const gchar *param,
  37. const gchar *def);
  38. gboolean mc_config_get_bool (mc_config_t *mc_config, const gchar *group, const gchar *param,
  39. gboolean def);
  40. int mc_config_get_int (mc_config_t *mc_config, const gchar *group, const gchar *param, int def);
  41. gchar **mc_config_get_string_list (mc_config_t *mc_config, const gchar *group, const gchar *param,
  42. gsize *length);
  43. gboolean *mc_config_get_bool_list (mc_config_t *mc_config, const gchar *group, const gchar *param,
  44. gsize *length);
  45. int *mc_config_get_int_list (mc_config_t *mc_config, const gchar *group, const gchar *param,
  46. gsize *length);
  47. /* mcconfig/set.c: */
  48. void mc_config_set_string_raw (mc_config_t *mc_config, const gchar *group, const gchar *param,
  49. const gchar *value);
  50. void mc_config_set_string_raw_value (mc_config_t *mc_config, const gchar *group, const gchar *param,
  51. const gchar *value);
  52. void mc_config_set_string (mc_config_t *mc_config, const gchar *group, const gchar *param,
  53. const gchar *value);
  54. void mc_config_set_bool (mc_config_t *mc_config, const gchar *group, const gchar *param,
  55. gboolean value);
  56. void mc_config_set_int (mc_config_t *mc_config, const gchar *group, const gchar *param, int value);
  57. void mc_config_set_string_list (mc_config_t *mc_config, const gchar *group, const gchar *param,
  58. const gchar *const value[], gsize length);
  59. void mc_config_set_bool_list (mc_config_t *mc_config, const gchar *group, const gchar *param,
  60. gboolean value[], gsize length);
  61. void mc_config_set_int_list (mc_config_t *mc_config, const gchar *group, const gchar *param,
  62. int value[], gsize length);
  63. /* mcconfig/paths.c: */
  64. void mc_config_init_config_paths (GError **error);
  65. void mc_config_deinit_config_paths (void);
  66. const char *mc_config_get_data_path (void);
  67. const char *mc_config_get_cache_path (void);
  68. const char *mc_config_get_home_dir (void);
  69. const char *mc_config_get_path (void);
  70. char *mc_config_get_full_path (const char *config_name);
  71. vfs_path_t *mc_config_get_full_vpath (const char *config_name);
  72. /* mcconfig/history.h */
  73. /* read history to the mc_config, but don't save config to file */
  74. GList *mc_config_history_get (const char *name);
  75. /* read recent item from the history */
  76. char *mc_config_history_get_recent_item (const char *name);
  77. /* load history from the mc_config */
  78. GList *mc_config_history_load (mc_config_t *cfg, const char *name);
  79. /* save history to the mc_config, but don't save config to file */
  80. void mc_config_history_save (mc_config_t *cfg, const char *name, GList *h);
  81. /*** inline functions ****************************************************************************/
  82. #endif /* MC__CONFIG_H */