/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors. * * This program 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 2 * of the License, or (at your option) any later version. * * This program 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, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include "libedit_settings.h" #include ///! Update the schema version whenever a migration is required const int libeditSchemaVersion = 0; LIBEDIT_SETTINGS::LIBEDIT_SETTINGS() : APP_SETTINGS_BASE( "libedit", libeditSchemaVersion ), m_Defaults(), m_Repeat(), m_ShowPinElectricalType( true ), m_LibWidth(), m_EditComponentVisibleColumns() { // Make Coverity happy m_UseEeschemaColorSettings = true;; // Init settings: SetLegacyFilename( "eeschema" ); m_params.emplace_back( new PARAM( "defaults.line_width", &m_Defaults.line_width, DEFAULT_LINE_THICKNESS ) ); m_params.emplace_back( new PARAM( "defaults.text_size", &m_Defaults.text_size, DEFAULT_TEXT_SIZE ) ); m_params.emplace_back( new PARAM( "defaults.pin_length", &m_Defaults.pin_length, DEFAULT_PIN_LENGTH ) ); m_params.emplace_back( new PARAM( "defaults.pin_name_size", &m_Defaults.pin_name_size, DEFAULT_PINNAME_SIZE ) ); m_params.emplace_back( new PARAM( "defaults.pin_num_size", &m_Defaults.pin_num_size, DEFAULT_PINNUM_SIZE ) ); m_params.emplace_back( new PARAM( "repeat.label_delta", &m_Repeat.label_delta, 1 ) ); m_params.emplace_back( new PARAM( "repeat.pin_step", &m_Repeat.pin_step, 100 ) ); m_params.emplace_back( new PARAM( "repeat.x_step", &m_Repeat.x_step, 0 ) ); m_params.emplace_back( new PARAM( "repeat.y_step", &m_Repeat.y_step, 100 ) ); m_params.emplace_back( new PARAM( "show_pin_electrical_type", &m_ShowPinElectricalType, true ) ); m_params.emplace_back( new PARAM( "lib_table_width", &m_LibWidth, 250 ) ); m_params.emplace_back( new PARAM( "edit_component_visible_columns", &m_EditComponentVisibleColumns, "0 1 2 3 4 5 6 7" ) ); m_params.emplace_back( new PARAM( "pin_table_visible_columns", &m_PinTableVisibleColumns, "0 1 2 3 4 8 9" ) ); m_params.emplace_back( new PARAM( "use_eeschema_color_settings", &m_UseEeschemaColorSettings, true ) ); } bool LIBEDIT_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg ) { bool ret = APP_SETTINGS_BASE::MigrateFromLegacy( aCfg ); ret &= fromLegacy( aCfg, "DefaultWireWidth", "defaults.line_width" ); ret &= fromLegacy( aCfg, "DefaultPinLength", "defaults.pin_length" ); ret &= fromLegacy( aCfg, "LibeditPinNameSize", "defaults.pin_name_size" ); ret &= fromLegacy( aCfg, "LibeditPinNumSize", "defaults.pin_num_size" ); ret &= fromLegacy( aCfg, "LibeditRepeatLabelInc", "repeat.label_delta" ); ret &= fromLegacy( aCfg, "LibeditPinRepeatStep", "repeat.pin_step" ); ret &= fromLegacy( aCfg, "LibeditRepeatStepX", "repeat.x_step" ); ret &= fromLegacy( aCfg, "LibeditRepeatStepY", "repeat.y_step" ); ret &= fromLegacy( aCfg, "LibeditLibWidth", "lib_table_width" ); ret &= fromLegacy( aCfg, "LibeditShowPinElectricalType", "show_pin_electrical_type" ); ret &= fromLegacyString( aCfg, "LibEditFieldsShownColumns", "edit_component_visible_columns" ); ret &= fromLegacyString( aCfg, "PinTableShownColumns", "pin_table_visible_columns" ); return ret; }