/* Setup loading/saving. Copyright (C) 1994-2024 Free Software Foundation, Inc. This file is part of the Midnight Commander. The Midnight Commander is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The Midnight Commander is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /** \file setup.c * \brief Source: setup loading/saving */ #include #include #include #include #include #include #include "lib/global.h" #include "lib/tty/tty.h" #include "lib/tty/key.h" #include "lib/mcconfig.h" /* num_history_items_recorded */ #include "lib/fileloc.h" #include "lib/timefmt.h" #include "lib/util.h" #ifdef ENABLE_VFS_FTP #include "src/vfs/ftpfs/ftpfs.h" #endif #ifdef ENABLE_VFS_SHELL #include "src/vfs/shell/shell.h" #endif #ifdef HAVE_CHARSET #include "lib/charsets.h" #endif #include "filemanager/dir.h" #include "filemanager/filemanager.h" #include "filemanager/tree.h" /* xtree_mode */ #include "filemanager/hotlist.h" /* load/save/done hotlist */ #include "filemanager/panelize.h" /* load/save/done panelize */ #include "filemanager/layout.h" #include "filemanager/cmd.h" #include "args.h" #include "execute.h" /* pause_after_run */ #include "clipboard.h" #ifdef HAVE_CHARSET #include "selcodepage.h" #endif #ifdef USE_INTERNAL_EDIT #include "src/editor/edit.h" #endif #include "src/viewer/mcviewer.h" /* For the externs */ #include "setup.h" /*** global variables ****************************************************************************/ /* Only used at program boot */ gboolean boot_current_is_left = TRUE; /* If on, default for "No" in delete operations */ gboolean safe_delete = FALSE; /* If on, default for "No" in overwrite files */ gboolean safe_overwrite = FALSE; /* Controls screen clearing before an exec */ gboolean clear_before_exec = TRUE; /* Asks for confirmation before deleting a file */ gboolean confirm_delete = TRUE; /* Asks for confirmation before deleting a hotlist entry */ gboolean confirm_directory_hotlist_delete = FALSE; /* Asks for confirmation before overwriting a file */ gboolean confirm_overwrite = TRUE; /* Asks for confirmation before executing a program by pressing enter */ gboolean confirm_execute = FALSE; /* Asks for confirmation before leaving the program */ gboolean confirm_exit = FALSE; /* If true, at startup the user-menu is invoked */ gboolean auto_menu = FALSE; /* This flag indicates if the pull down menus by default drop down */ gboolean drop_menus = FALSE; /* Asks for confirmation when using F3 to view a directory and there are tagged files */ gboolean confirm_view_dir = FALSE; /* Ask file name before start the editor */ gboolean editor_ask_filename_before_edit = FALSE; panel_view_mode_t startup_left_mode; panel_view_mode_t startup_right_mode; gboolean copymove_persistent_attr = TRUE; /* Tab size */ int option_tab_spacing = DEFAULT_TAB_SPACING; /* Ugly hack to allow panel_save_setup to work as a place holder for */ /* default panel values */ int saving_setup; panels_options_t panels_options = { .show_mini_info = TRUE, .kilobyte_si = FALSE, .mix_all_files = FALSE, .show_backups = TRUE, .show_dot_files = TRUE, .fast_reload = FALSE, .fast_reload_msg_shown = FALSE, .mark_moves_down = TRUE, .reverse_files_only = TRUE, .auto_save_setup = FALSE, .navigate_with_arrows = FALSE, .scroll_pages = TRUE, .scroll_center = FALSE, .mouse_move_pages = TRUE, .filetype_mode = TRUE, .permission_mode = FALSE, .qsearch_mode = QSEARCH_PANEL_CASE, .torben_fj_mode = FALSE, .select_flags = SELECT_MATCH_CASE | SELECT_SHELL_PATTERNS }; gboolean easy_patterns = TRUE; /* It true saves the setup when quitting */ gboolean auto_save_setup = TRUE; /* If true, then the +, - and \ keys have their special meaning only if the * command line is empty, otherwise they behave like regular letters */ gboolean only_leading_plus_minus = TRUE; /* Automatically fills name with current selected item name on mkdir */ gboolean auto_fill_mkdir_name = TRUE; /* If set and you don't have subshell support, then C-o will give you a shell */ gboolean output_starts_shell = FALSE; #ifdef USE_FILE_CMD /* If set, we execute the file command to check the file type */ gboolean use_file_to_check_type = TRUE; #endif gboolean verbose = TRUE; /* * Whether the Midnight Commander tries to provide more * information about copy/move sizes and bytes transferred * at the expense of some speed */ gboolean file_op_compute_totals = TRUE; /* If true use the internal viewer */ gboolean use_internal_view = TRUE; /* If set, use the builtin editor */ gboolean use_internal_edit = TRUE; #ifdef HAVE_CHARSET /* Numbers of (file I/O) and (input/display) codepages. -1 if not selected */ int default_source_codepage = -1; char *autodetect_codeset = NULL; gboolean is_autodetect_codeset_enabled = FALSE; #endif /* !HAVE_CHARSET */ #ifdef HAVE_ASPELL char *spell_language = NULL; #endif /* Value of "other_dir" key in ini file */ char *saved_other_dir = NULL; /* If set, then print to the given file the last directory we were at */ char *last_wd_string = NULL; /* Set when main loop should be terminated */ int quit = 0; /* Set to TRUE to suppress printing the last directory */ int print_last_revert = FALSE; #ifdef USE_INTERNAL_EDIT /* index to record_macro_buf[], -1 if not recording a macro */ int macro_index = -1; /* macro stuff */ struct macro_action_t record_macro_buf[MAX_MACRO_LENGTH]; GArray *macros_list; #endif /* USE_INTERNAL_EDIT */ /*** file scope macro definitions ****************************************************************/ /* In order to use everywhere the same setup for the locale we use defines */ #define FMTYEAR _("%b %e %Y") #define FMTTIME _("%b %e %H:%M") /*** file scope type declarations ****************************************************************/ /*** forward declarations (file scope functions) *************************************************/ /*** file scope variables ************************************************************************/ static char *profile_name = NULL; /* ${XDG_CONFIG_HOME}/mc/ini */ static char *panels_profile_name = NULL; /* ${XDG_CONFIG_HOME}/mc/panels.ini */ /* *INDENT-OFF* */ static const struct { const char *key; int list_format; } list_formats [] = { { "full", list_full }, { "brief", list_brief }, { "long", list_long }, { "user", list_user }, { NULL, 0 } }; static const struct { const char *opt_name; panel_view_mode_t opt_type; } panel_types [] = { { "listing", view_listing }, { "quickview", view_quick }, { "info", view_info }, { "tree", view_tree }, { NULL, view_listing } }; static const struct { const char *opt_name; int *opt_addr; } layout_int_options [] = { { "output_lines", &output_lines }, { "left_panel_size", &panels_layout.left_panel_size }, { "top_panel_size", &panels_layout.top_panel_size }, { NULL, NULL } }; static const struct { const char *opt_name; gboolean *opt_addr; } layout_bool_options [] = { { "message_visible", &mc_global.message_visible }, { "keybar_visible", &mc_global.keybar_visible }, { "xterm_title", &xterm_title }, { "command_prompt", &command_prompt }, { "menubar_visible", &menubar_visible }, { "free_space", &free_space }, { "horizontal_split", &panels_layout.horizontal_split }, { "vertical_equal", &panels_layout.vertical_equal }, { "horizontal_equal", &panels_layout.horizontal_equal }, { NULL, NULL } }; static const struct { const char *opt_name; gboolean *opt_addr; } bool_options [] = { { "verbose", &verbose }, { "shell_patterns", &easy_patterns }, { "auto_save_setup", &auto_save_setup }, { "preallocate_space", &mc_global.vfs.preallocate_space }, { "auto_menu", &auto_menu }, { "use_internal_view", &use_internal_view }, { "use_internal_edit", &use_internal_edit }, { "clear_before_exec", &clear_before_exec }, { "confirm_delete", &confirm_delete }, { "confirm_overwrite", &confirm_overwrite }, { "confirm_execute", &confirm_execute }, { "confirm_history_cleanup", &mc_global.widget.confirm_history_cleanup }, { "confirm_exit", &confirm_exit }, { "confirm_directory_hotlist_delete", &confirm_directory_hotlist_delete }, { "confirm_view_dir", &confirm_view_dir }, { "safe_delete", &safe_delete }, { "safe_overwrite", &safe_overwrite }, #ifndef HAVE_CHARSET { "eight_bit_clean", &mc_global.eight_bit_clean }, { "full_eight_bits", &mc_global.full_eight_bits }, #endif /* !HAVE_CHARSET */ { "use_8th_bit_as_meta", &use_8th_bit_as_meta }, { "mouse_move_pages_viewer", &mcview_mouse_move_pages }, { "mouse_close_dialog", &mouse_close_dialog}, { "fast_refresh", &fast_refresh }, { "drop_menus", &drop_menus }, { "wrap_mode", &mcview_global_flags.wrap }, { "old_esc_mode", &old_esc_mode }, { "cd_symlinks", &mc_global.vfs.cd_symlinks }, { "show_all_if_ambiguous", &mc_global.widget.show_all_if_ambiguous }, #ifdef USE_FILE_CMD { "use_file_to_guess_type", &use_file_to_check_type }, #endif { "alternate_plus_minus", &mc_global.tty.alternate_plus_minus }, { "only_leading_plus_minus", &only_leading_plus_minus }, { "show_output_starts_shell", &output_starts_shell }, { "xtree_mode", &xtree_mode }, { "file_op_compute_totals", &file_op_compute_totals }, { "classic_progressbar", &classic_progressbar }, #ifdef ENABLE_VFS #ifdef ENABLE_VFS_FTP { "use_netrc", &ftpfs_use_netrc }, { "ftpfs_always_use_proxy", &ftpfs_always_use_proxy }, { "ftpfs_use_passive_connections", &ftpfs_use_passive_connections }, { "ftpfs_use_passive_connections_over_proxy", &ftpfs_use_passive_connections_over_proxy }, { "ftpfs_use_unix_list_options", &ftpfs_use_unix_list_options }, { "ftpfs_first_cd_then_ls", &ftpfs_first_cd_then_ls }, { "ignore_ftp_chattr_errors", & ftpfs_ignore_chattr_errors} , #endif /* ENABLE_VFS_FTP */ #endif /* ENABLE_VFS */ #ifdef USE_INTERNAL_EDIT { "editor_fill_tabs_with_spaces", &edit_options.fill_tabs_with_spaces }, { "editor_return_does_auto_indent", &edit_options.return_does_auto_indent }, { "editor_backspace_through_tabs", &edit_options.backspace_through_tabs }, { "editor_fake_half_tabs", &edit_options.fake_half_tabs }, { "editor_option_save_position", &edit_options.save_position }, { "editor_option_auto_para_formatting", &edit_options.auto_para_formatting }, { "editor_option_typewriter_wrap", &edit_options.typewriter_wrap }, { "editor_edit_confirm_save", &edit_options.confirm_save }, { "editor_syntax_highlighting", &edit_options.syntax_highlighting }, { "editor_persistent_selections", &edit_options.persistent_selections }, { "editor_drop_selection_on_copy", &edit_options.drop_selection_on_copy }, { "editor_cursor_beyond_eol", &edit_options.cursor_beyond_eol }, { "editor_cursor_after_inserted_block", &edit_options.cursor_after_inserted_block }, { "editor_visible_tabs", &edit_options.visible_tabs }, { "editor_visible_spaces", &edit_options.visible_tws }, { "editor_line_state", &edit_options.line_state }, { "editor_simple_statusbar", &edit_options.simple_statusbar }, { "editor_check_new_line", &edit_options.check_nl_at_eof }, { "editor_show_right_margin", &edit_options.show_right_margin }, { "editor_group_undo", &edit_options.group_undo }, { "editor_state_full_filename", &edit_options.state_full_filename }, #endif /* USE_INTERNAL_EDIT */ { "editor_ask_filename_before_edit", &editor_ask_filename_before_edit }, { "nice_rotating_dash", &nice_rotating_dash }, { "shadows", &mc_global.tty.shadows }, { "mcview_remember_file_position", &mcview_remember_file_position }, { "auto_fill_mkdir_name", &auto_fill_mkdir_name }, { "copymove_persistent_attr", ©move_persistent_attr }, { NULL, NULL } }; static const struct { const char *opt_name; int *opt_addr; } int_options [] = { { "pause_after_run", &pause_after_run }, { "mouse_repeat_rate", &mou_auto_repeat }, { "double_click_speed", &double_click_speed }, { "old_esc_mode_timeout", &old_esc_mode_timeout }, { "max_dirt_limit", &mcview_max_dirt_limit }, { "num_history_items_recorded", &num_history_items_recorded }, #ifdef ENABLE_VFS { "vfs_timeout", &vfs_timeout }, #ifdef ENABLE_VFS_FTP { "ftpfs_directory_timeout", &ftpfs_directory_timeout }, { "ftpfs_retry_seconds", &ftpfs_retry_seconds }, #endif /* ENABLE_VFS_FTP */ #ifdef ENABLE_VFS_SHELL { "shell_directory_timeout", &shell_directory_timeout }, #endif /* ENABLE_VFS_SHELL */ #endif /* ENABLE_VFS */ /* option_tab_spacing is used in internal viewer */ { "editor_tab_spacing", &option_tab_spacing }, #ifdef USE_INTERNAL_EDIT { "editor_word_wrap_line_length", &edit_options.word_wrap_line_length }, { "editor_option_save_mode", &edit_options.save_mode }, #endif /* USE_INTERNAL_EDIT */ { NULL, NULL } }; static const struct { const char *opt_name; char **opt_addr; const char *opt_defval; } str_options[] = { #ifdef USE_INTERNAL_EDIT { "editor_backup_extension", &edit_options.backup_ext, "~" }, { "editor_filesize_threshold", &edit_options.filesize_threshold, "64M" }, { "editor_stop_format_chars", &edit_options.stop_format_chars, "-+*\\,.;:&>" }, #endif { "mcview_eof", &mcview_show_eof, "" }, { NULL, NULL, NULL } }; static const struct { const char *opt_name; gboolean *opt_addr; } panels_ini_options[] = { { "show_mini_info", &panels_options.show_mini_info }, { "kilobyte_si", &panels_options.kilobyte_si }, { "mix_all_files", &panels_options.mix_all_files }, { "show_backups", &panels_options.show_backups }, { "show_dot_files", &panels_options.show_dot_files }, { "fast_reload", &panels_options.fast_reload }, { "fast_reload_msg_shown", &panels_options.fast_reload_msg_shown }, { "mark_moves_down", &panels_options.mark_moves_down }, { "reverse_files_only", &panels_options.reverse_files_only }, { "auto_save_setup_panels", &panels_options.auto_save_setup }, { "navigate_with_arrows", &panels_options.navigate_with_arrows }, { "panel_scroll_pages", &panels_options.scroll_pages }, { "panel_scroll_center", &panels_options.scroll_center }, { "mouse_move_pages", &panels_options.mouse_move_pages }, { "filetype_mode", &panels_options.filetype_mode }, { "permission_mode", &panels_options.permission_mode }, { "torben_fj_mode", &panels_options.torben_fj_mode }, { NULL, NULL } }; /* *INDENT-ON* */ /* --------------------------------------------------------------------------------------------- */ /*** file scope functions ************************************************************************/ /* --------------------------------------------------------------------------------------------- */ static const char * setup__is_cfg_group_must_panel_config (const char *grp) { return (!strcasecmp ("Dirs", grp) || !strcasecmp ("Temporal:New Right Panel", grp) || !strcasecmp ("Temporal:New Left Panel", grp) || !strcasecmp ("New Left Panel", grp) || !strcasecmp ("New Right Panel", grp)) ? grp : NULL; } /* --------------------------------------------------------------------------------------------- */ static void setup__move_panels_config_into_separate_file (const char *profile) { mc_config_t *tmp_cfg; char **groups, **curr_grp; if (!exist_file (profile)) return; tmp_cfg = mc_config_init (profile, FALSE); if (tmp_cfg == NULL) return; groups = mc_config_get_groups (tmp_cfg, NULL); if (*groups == NULL) { g_strfreev (groups); mc_config_deinit (tmp_cfg); return; } for (curr_grp = groups; *curr_grp != NULL; curr_grp++) if (setup__is_cfg_group_must_panel_config (*curr_grp) == NULL) mc_config_del_group (tmp_cfg, *curr_grp); mc_config_save_to_file (tmp_cfg, panels_profile_name, NULL); mc_config_deinit (tmp_cfg); tmp_cfg = mc_config_init (profile, FALSE); if (tmp_cfg == NULL) { g_strfreev (groups); return; } for (curr_grp = groups; *curr_grp != NULL; curr_grp++) { const char *need_grp; need_grp = setup__is_cfg_group_must_panel_config (*curr_grp); if (need_grp != NULL) mc_config_del_group (tmp_cfg, need_grp); } g_strfreev (groups); mc_config_save_file (tmp_cfg, NULL); mc_config_deinit (tmp_cfg); } /* --------------------------------------------------------------------------------------------- */ static void load_config (void) { size_t i; const char *kt; /* Load boolean options */ for (i = 0; bool_options[i].opt_name != NULL; i++) *bool_options[i].opt_addr = mc_config_get_bool (mc_global.main_config, CONFIG_APP_SECTION, bool_options[i].opt_name, *bool_options[i].opt_addr); /* Load integer options */ for (i = 0; int_options[i].opt_name != NULL; i++) *int_options[i].opt_addr = mc_config_get_int (mc_global.main_config, CONFIG_APP_SECTION, int_options[i].opt_name, *int_options[i].opt_addr); /* Load string options */ for (i = 0; str_options[i].opt_name != NULL; i++) *str_options[i].opt_addr = mc_config_get_string (mc_global.main_config, CONFIG_APP_SECTION, str_options[i].opt_name, str_options[i].opt_defval); /* Overwrite some options */ #ifdef USE_INTERNAL_EDIT if (edit_options.word_wrap_line_length <= 0) edit_options.word_wrap_line_length = DEFAULT_WRAP_LINE_LENGTH; #else /* Reset forced in case of build without internal editor */ use_internal_edit = FALSE; #endif /* USE_INTERNAL_EDIT */ if (option_tab_spacing <= 0) option_tab_spacing = DEFAULT_TAB_SPACING; kt = getenv ("KEYBOARD_KEY_TIMEOUT_US"); if (kt != NULL && kt[0] != '\0') old_esc_mode_timeout = atoi (kt); } /* --------------------------------------------------------------------------------------------- */ static panel_view_mode_t setup__load_panel_state (const char *section) { char *buffer; size_t i; panel_view_mode_t mode = view_listing; /* Load the display mode */ buffer = mc_config_get_string (mc_global.panels_config, section, "display", "listing"); for (i = 0; panel_types[i].opt_name != NULL; i++) if (g_ascii_strcasecmp (panel_types[i].opt_name, buffer) == 0) { mode = panel_types[i].opt_type; break; } g_free (buffer); return mode; } /* --------------------------------------------------------------------------------------------- */ static void load_layout (void) { size_t i; /* actual options override legacy ones */ for (i = 0; layout_int_options[i].opt_name != NULL; i++) *layout_int_options[i].opt_addr = mc_config_get_int (mc_global.main_config, CONFIG_LAYOUT_SECTION, layout_int_options[i].opt_name, *layout_int_options[i].opt_addr); for (i = 0; layout_bool_options[i].opt_name != NULL; i++) *layout_bool_options[i].opt_addr = mc_config_get_bool (mc_global.main_config, CONFIG_LAYOUT_SECTION, layout_bool_options[i].opt_name, *layout_bool_options[i].opt_addr); startup_left_mode = setup__load_panel_state ("New Left Panel"); startup_right_mode = setup__load_panel_state ("New Right Panel"); /* At least one of the panels is a listing panel */ if (startup_left_mode != view_listing && startup_right_mode != view_listing) startup_left_mode = view_listing; boot_current_is_left = mc_config_get_bool (mc_global.panels_config, "Dirs", "current_is_left", TRUE); } /* --------------------------------------------------------------------------------------------- */ static void load_keys_from_section (const char *terminal, mc_config_t * cfg) { char *section_name; gchar **profile_keys, **keys; char *valcopy, *value; long key_code; if (terminal == NULL) return; section_name = g_strconcat ("terminal:", terminal, (char *) NULL); keys = mc_config_get_keys (cfg, section_name, NULL); for (profile_keys = keys; *profile_keys != NULL; profile_keys++) { /* copy=other causes all keys from [terminal:other] to be loaded. */ if (g_ascii_strcasecmp (*profile_keys, "copy") == 0) { valcopy = mc_config_get_string (cfg, section_name, *profile_keys, ""); load_keys_from_section (valcopy, cfg); g_free (valcopy); continue; } key_code = tty_keyname_to_keycode (*profile_keys, NULL); if (key_code != 0) { gchar **values; values = mc_config_get_string_list (cfg, section_name, *profile_keys, NULL); if (values != NULL) { gchar **curr_values; for (curr_values = values; *curr_values != NULL; curr_values++) { valcopy = convert_controls (*curr_values); define_sequence (key_code, valcopy, MCKEY_NOACTION); g_free (valcopy); } g_strfreev (values); } else { value = mc_config_get_string (cfg, section_name, *profile_keys, ""); valcopy = convert_controls (value); define_sequence (key_code, valcopy, MCKEY_NOACTION); g_free (valcopy); g_free (value); } } } g_strfreev (keys); g_free (section_name); } /* --------------------------------------------------------------------------------------------- */ static void panel_save_type (const char *section, panel_view_mode_t type) { size_t i; for (i = 0; panel_types[i].opt_name != NULL; i++) if (panel_types[i].opt_type == type) { mc_config_set_string (mc_global.panels_config, section, "display", panel_types[i].opt_name); break; } } /* --------------------------------------------------------------------------------------------- */ /** * Load panels options from [Panels] section. */ static void panels_load_options (void) { if (mc_config_has_group (mc_global.main_config, CONFIG_PANELS_SECTION)) { size_t i; int qmode; for (i = 0; panels_ini_options[i].opt_name != NULL; i++) *panels_ini_options[i].opt_addr = mc_config_get_bool (mc_global.main_config, CONFIG_PANELS_SECTION, panels_ini_options[i].opt_name, *panels_ini_options[i].opt_addr); qmode = mc_config_get_int (mc_global.main_config, CONFIG_PANELS_SECTION, "quick_search_mode", (int) panels_options.qsearch_mode); if (qmode < 0) panels_options.qsearch_mode = QSEARCH_CASE_INSENSITIVE; else if (qmode >= QSEARCH_NUM) panels_options.qsearch_mode = QSEARCH_PANEL_CASE; else panels_options.qsearch_mode = (qsearch_mode_t) qmode; panels_options.select_flags = mc_config_get_int (mc_global.main_config, CONFIG_PANELS_SECTION, "select_flags", (int) panels_options.select_flags); } } /* --------------------------------------------------------------------------------------------- */ /** * Save panels options in [Panels] section. */ static void panels_save_options (void) { size_t i; for (i = 0; panels_ini_options[i].opt_name != NULL; i++) mc_config_set_bool (mc_global.main_config, CONFIG_PANELS_SECTION, panels_ini_options[i].opt_name, *panels_ini_options[i].opt_addr); mc_config_set_int (mc_global.main_config, CONFIG_PANELS_SECTION, "quick_search_mode", (int) panels_options.qsearch_mode); mc_config_set_int (mc_global.main_config, CONFIG_PANELS_SECTION, "select_flags", (int) panels_options.select_flags); } /* --------------------------------------------------------------------------------------------- */ static void save_config (void) { size_t i; /* Save boolean options */ for (i = 0; bool_options[i].opt_name != NULL; i++) mc_config_set_bool (mc_global.main_config, CONFIG_APP_SECTION, bool_options[i].opt_name, *bool_options[i].opt_addr); /* Save integer options */ for (i = 0; int_options[i].opt_name != NULL; i++) mc_config_set_int (mc_global.main_config, CONFIG_APP_SECTION, int_options[i].opt_name, *int_options[i].opt_addr); /* Save string options */ for (i = 0; str_options[i].opt_name != NULL; i++) mc_config_set_string (mc_global.main_config, CONFIG_APP_SECTION, str_options[i].opt_name, *str_options[i].opt_addr); } /* --------------------------------------------------------------------------------------------- */ static void save_layout (void) { size_t i; /* Save integer options */ for (i = 0; layout_int_options[i].opt_name != NULL; i++) mc_config_set_int (mc_global.main_config, CONFIG_LAYOUT_SECTION, layout_int_options[i].opt_name, *layout_int_options[i].opt_addr); /* Save boolean options */ for (i = 0; layout_bool_options[i].opt_name != NULL; i++) mc_config_set_bool (mc_global.main_config, CONFIG_LAYOUT_SECTION, layout_bool_options[i].opt_name, *layout_bool_options[i].opt_addr); } /* --------------------------------------------------------------------------------------------- */ /* save panels.ini */ static void save_panel_types (void) { panel_view_mode_t type; if (mc_global.mc_run_mode != MC_RUN_FULL) return; type = get_panel_type (0); panel_save_type ("New Left Panel", type); if (type == view_listing) panel_save_setup (left_panel, left_panel->name); type = get_panel_type (1); panel_save_type ("New Right Panel", type); if (type == view_listing) panel_save_setup (right_panel, right_panel->name); { char *dirs; dirs = get_panel_dir_for (other_panel); mc_config_set_string (mc_global.panels_config, "Dirs", "other_dir", dirs); g_free (dirs); } if (current_panel != NULL) mc_config_set_bool (mc_global.panels_config, "Dirs", "current_is_left", get_current_index () == 0); if (mc_global.panels_config->ini_path == NULL) mc_global.panels_config->ini_path = g_strdup (panels_profile_name); mc_config_del_group (mc_global.panels_config, "Temporal:New Left Panel"); mc_config_del_group (mc_global.panels_config, "Temporal:New Right Panel"); mc_config_save_file (mc_global.panels_config, NULL); } /* --------------------------------------------------------------------------------------------- */ /*** public functions ****************************************************************************/ /* --------------------------------------------------------------------------------------------- */ const char * setup_init (void) { if (profile_name == NULL) { char *profile; profile = mc_config_get_full_path (MC_CONFIG_FILE); if (!exist_file (profile)) { char *inifile; inifile = mc_build_filename (mc_global.sysconfig_dir, "mc.ini", (char *) NULL); if (exist_file (inifile)) { g_free (profile); profile = inifile; } else { g_free (inifile); inifile = mc_build_filename (mc_global.share_data_dir, "mc.ini", (char *) NULL); if (!exist_file (inifile)) g_free (inifile); else { g_free (profile); profile = inifile; } } } profile_name = profile; } return profile_name; } /* --------------------------------------------------------------------------------------------- */ void load_setup (void) { const char *profile; #ifdef HAVE_CHARSET const char *cbuffer; load_codepages_list (); #endif /* HAVE_CHARSET */ profile = setup_init (); /* mc.lib is common for all users, but has priority lower than ${XDG_CONFIG_HOME}/mc/ini. FIXME: it's only used for keys and treestore now */ mc_global.profile_name = g_build_filename (mc_global.sysconfig_dir, MC_GLOBAL_CONFIG_FILE, (char *) NULL); if (!exist_file (mc_global.profile_name)) { g_free (mc_global.profile_name); mc_global.profile_name = g_build_filename (mc_global.share_data_dir, MC_GLOBAL_CONFIG_FILE, (char *) NULL); } panels_profile_name = mc_config_get_full_path (MC_PANELS_FILE); mc_global.main_config = mc_config_init (profile, FALSE); if (!exist_file (panels_profile_name)) setup__move_panels_config_into_separate_file (profile); mc_global.panels_config = mc_config_init (panels_profile_name, FALSE); load_config (); load_layout (); panels_load_options (); external_panelize_load (); /* Load time formats */ user_recent_timeformat = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "timeformat_recent", FMTTIME); user_old_timeformat = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "timeformat_old", FMTYEAR); #ifdef ENABLE_VFS_FTP ftpfs_proxy_host = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "ftp_proxy_host", "gate"); ftpfs_init_passwd (); #endif /* ENABLE_VFS_FTP */ /* The default color and the terminal dependent color */ mc_global.tty.setup_color_string = mc_config_get_string (mc_global.main_config, "Colors", "base_color", ""); mc_global.tty.term_color_string = mc_config_get_string (mc_global.main_config, "Colors", getenv ("TERM"), ""); mc_global.tty.color_terminal_string = mc_config_get_string (mc_global.main_config, "Colors", "color_terminals", ""); /* Load the directory history */ /* directory_history_load (); */ /* Remove the temporal entries */ #ifdef HAVE_CHARSET if (codepages->len > 1) { char *buffer; buffer = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "display_codepage", ""); if (buffer[0] != '\0') { mc_global.display_codepage = get_codepage_index (buffer); cp_display = get_codepage_id (mc_global.display_codepage); } g_free (buffer); buffer = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "source_codepage", ""); if (buffer[0] != '\0') { default_source_codepage = get_codepage_index (buffer); mc_global.source_codepage = default_source_codepage; /* May be source_codepage doesn't need this */ cp_source = get_codepage_id (mc_global.source_codepage); } g_free (buffer); } autodetect_codeset = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "autodetect_codeset", ""); if ((autodetect_codeset[0] != '\0') && (strcmp (autodetect_codeset, "off") != 0)) is_autodetect_codeset_enabled = TRUE; g_free (init_translation_table (mc_global.source_codepage, mc_global.display_codepage)); cbuffer = get_codepage_id (mc_global.display_codepage); if (cbuffer != NULL) mc_global.utf8_display = str_isutf8 (cbuffer); #endif /* HAVE_CHARSET */ #ifdef HAVE_ASPELL spell_language = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "spell_language", "en"); #endif /* HAVE_ASPELL */ clipboard_store_path = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "clipboard_store", ""); clipboard_paste_path = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "clipboard_paste", ""); } /* --------------------------------------------------------------------------------------------- */ gboolean save_setup (gboolean save_options, gboolean save_panel_options) { gboolean ret = TRUE; saving_setup = 1; save_hotlist (); if (save_panel_options) save_panel_types (); if (save_options) { char *tmp_profile; save_config (); save_layout (); panels_save_options (); external_panelize_save (); /* directory_history_save (); */ #ifdef ENABLE_VFS_FTP mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "ftpfs_password", ftpfs_anonymous_passwd); if (ftpfs_proxy_host) mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "ftp_proxy_host", ftpfs_proxy_host); #endif /* ENABLE_VFS_FTP */ #ifdef HAVE_CHARSET mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "display_codepage", get_codepage_id (mc_global.display_codepage)); mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "source_codepage", get_codepage_id (default_source_codepage)); mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "autodetect_codeset", autodetect_codeset); #endif /* HAVE_CHARSET */ #ifdef HAVE_ASPELL mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "spell_language", spell_language); #endif /* HAVE_ASPELL */ mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "clipboard_store", clipboard_store_path); mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "clipboard_paste", clipboard_paste_path); tmp_profile = mc_config_get_full_path (MC_CONFIG_FILE); ret = mc_config_save_to_file (mc_global.main_config, tmp_profile, NULL); g_free (tmp_profile); } saving_setup = 0; return ret; } /* --------------------------------------------------------------------------------------------- */ void done_setup (void) { size_t i; g_free (clipboard_store_path); g_free (clipboard_paste_path); g_free (mc_global.profile_name); g_free (mc_global.tty.color_terminal_string); g_free (mc_global.tty.term_color_string); g_free (mc_global.tty.setup_color_string); g_free (profile_name); g_free (panels_profile_name); mc_config_deinit (mc_global.main_config); mc_config_deinit (mc_global.panels_config); g_free (user_recent_timeformat); g_free (user_old_timeformat); for (i = 0; str_options[i].opt_name != NULL; i++) g_free (*str_options[i].opt_addr); done_hotlist (); external_panelize_free (); /* directory_history_free (); */ #ifdef HAVE_CHARSET g_free (autodetect_codeset); free_codepages_list (); #endif #ifdef HAVE_ASPELL g_free (spell_language); #endif /* HAVE_ASPELL */ } /* --------------------------------------------------------------------------------------------- */ void setup_save_config_show_error (const char *filename, GError ** mcerror) { if (mcerror != NULL && *mcerror != NULL) { message (D_ERROR, MSG_ERROR, _("Cannot save file %s:\n%s"), filename, (*mcerror)->message); g_error_free (*mcerror); *mcerror = NULL; } } /* --------------------------------------------------------------------------------------------- */ void load_key_defs (void) { /* * Load keys from mc.lib before ${XDG_CONFIG_HOME}/mc/ini, so that the user * definitions override global settings. */ mc_config_t *mc_global_config; mc_global_config = mc_config_init (mc_global.profile_name, FALSE); if (mc_global_config != NULL) { load_keys_from_section ("general", mc_global_config); load_keys_from_section (getenv ("TERM"), mc_global_config); mc_config_deinit (mc_global_config); } load_keys_from_section ("general", mc_global.main_config); load_keys_from_section (getenv ("TERM"), mc_global.main_config); } /* --------------------------------------------------------------------------------------------- */ #ifdef ENABLE_VFS_FTP char * load_anon_passwd (void) { char *buffer; buffer = mc_config_get_string (mc_global.main_config, CONFIG_MISC_SECTION, "ftpfs_password", ""); if ((buffer != NULL) && (buffer[0] != '\0')) return buffer; g_free (buffer); return NULL; } #endif /* ENABLE_VFS_FTP */ /* --------------------------------------------------------------------------------------------- */ void panel_load_setup (WPanel * panel, const char *section) { size_t i; char *buffer, buffer2[BUF_TINY]; panel->sort_info.reverse = mc_config_get_bool (mc_global.panels_config, section, "reverse", FALSE); panel->sort_info.case_sensitive = mc_config_get_bool (mc_global.panels_config, section, "case_sensitive", OS_SORT_CASE_SENSITIVE_DEFAULT); panel->sort_info.exec_first = mc_config_get_bool (mc_global.panels_config, section, "exec_first", FALSE); /* Load sort order */ buffer = mc_config_get_string (mc_global.panels_config, section, "sort_order", "name"); panel->sort_field = panel_get_field_by_id (buffer); if (panel->sort_field == NULL) panel->sort_field = panel_get_field_by_id ("name"); g_free (buffer); /* Load the listing format */ buffer = mc_config_get_string (mc_global.panels_config, section, "list_format", NULL); if (buffer == NULL) { /* fallback to old option */ buffer = mc_config_get_string (mc_global.panels_config, section, "list_mode", "full"); } panel->list_format = list_full; for (i = 0; list_formats[i].key != NULL; i++) if (g_ascii_strcasecmp (list_formats[i].key, buffer) == 0) { panel->list_format = list_formats[i].list_format; break; } g_free (buffer); panel->brief_cols = mc_config_get_int (mc_global.panels_config, section, "brief_cols", 2); /* User formats */ g_free (panel->user_format); panel->user_format = mc_config_get_string (mc_global.panels_config, section, "user_format", DEFAULT_USER_FORMAT); for (i = 0; i < LIST_FORMATS; i++) { g_free (panel->user_status_format[i]); g_snprintf (buffer2, sizeof (buffer2), "user_status%lld", (long long) i); panel->user_status_format[i] = mc_config_get_string (mc_global.panels_config, section, buffer2, DEFAULT_USER_FORMAT); } panel->user_mini_status = mc_config_get_bool (mc_global.panels_config, section, "user_mini_status", FALSE); panel->filter.value = mc_config_get_string (mc_global.panels_config, section, "filter_value", NULL); panel->filter.flags = mc_config_get_int (mc_global.panels_config, section, "filter_flags", (int) FILE_FILTER_DEFAULT_FLAGS); } /* --------------------------------------------------------------------------------------------- */ void panel_save_setup (WPanel * panel, const char *section) { char buffer[BUF_TINY]; size_t i; mc_config_set_bool (mc_global.panels_config, section, "reverse", panel->sort_info.reverse); mc_config_set_bool (mc_global.panels_config, section, "case_sensitive", panel->sort_info.case_sensitive); mc_config_set_bool (mc_global.panels_config, section, "exec_first", panel->sort_info.exec_first); mc_config_set_string (mc_global.panels_config, section, "sort_order", panel->sort_field->id); for (i = 0; list_formats[i].key != NULL; i++) if (list_formats[i].list_format == (int) panel->list_format) { mc_config_set_string (mc_global.panels_config, section, "list_format", list_formats[i].key); break; } mc_config_set_int (mc_global.panels_config, section, "brief_cols", panel->brief_cols); mc_config_set_string (mc_global.panels_config, section, "user_format", panel->user_format); for (i = 0; i < LIST_FORMATS; i++) { g_snprintf (buffer, sizeof (buffer), "user_status%lld", (long long) i); mc_config_set_string (mc_global.panels_config, section, buffer, panel->user_status_format[i]); } mc_config_set_bool (mc_global.panels_config, section, "user_mini_status", panel->user_mini_status); /* do not save the default filter */ if (panel->filter.handler != NULL) mc_config_set_string (mc_global.panels_config, section, "filter_value", panel->filter.value); else mc_config_del_key (mc_global.panels_config, section, "filter_value"); mc_config_set_int (mc_global.panels_config, section, "filter_flags", (int) panel->filter.flags); } /* --------------------------------------------------------------------------------------------- */