KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
cvpcb_settings.cpp
Go to the documentation of this file.
1/*
2* This program source code file is part of KiCad, a free EDA CAD application.
3*
4* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5*
6* This program is free software; you can redistribute it and/or
7* modify it under the terms of the GNU General Public License
8* as published by the Free Software Foundation; either version 2
9* of the License, or (at your option) any later version.
10*
11* This program is distributed in the hope that it will be useful,
12* but WITHOUT ANY WARRANTY; without even the implied warranty of
13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14* GNU General Public License for more details.
15*
16* You should have received a copy of the GNU General Public License
17* along with this program; if not, you may find one here:
18* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19* or you may search the http://www.gnu.org website for the version 2 license,
20* or you may write to the Free Software Foundation, Inc.,
21* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22*/
23
25#include <settings/parameters.h>
26#include <wx/config.h>
27
28
30const int cvpcbSchemaVersion = 0;
31
34 m_FilterFlags( 0 ),
35 m_LibrariesWidth( 0 ),
36 m_FootprintsWidth( 0 )
37{
38 // We always snap and don't let the user configure it
39 m_FootprintViewerMagneticSettings.pads = MAGNETIC_OPTIONS::CAPTURE_ALWAYS;
40 m_FootprintViewerMagneticSettings.tracks = MAGNETIC_OPTIONS::CAPTURE_ALWAYS;
42
43 // Init settings:
44 m_params.emplace_back( new PARAM<int>( "filter_footprint", &m_FilterFlags, 0 ) );
45 m_params.emplace_back( new PARAM<wxString>( "filter_footprint_text", &m_FilterString, "" ) );
46
47 m_params.emplace_back( new PARAM<int>( "libraries_pane_width", &m_LibrariesWidth, 0 ) );
48 m_params.emplace_back( new PARAM<int>( "footprints_pane_width", &m_FootprintsWidth, 0 ) );
49
50 addParamsForWindow( &m_FootprintViewer, "footprint_viewer" );
51
52 m_params.emplace_back( new PARAM<double>( "footprint_viewer.zoom", &m_FootprintViewerZoom,
53 1.0 ) );
54 m_params.emplace_back( new PARAM<bool>( "footprint_viewer.autozoom",
56
57 m_params.emplace_back( new PARAM<bool>( "footprint_viewer.show_pad_fill",
59
60 m_params.emplace_back( new PARAM<bool>( "footprint_viewer.show_pad_number",
62
63 m_params.emplace_back( new PARAM<bool>( "footprint_viewer.show_text_fill",
65
66 m_params.emplace_back( new PARAM<bool>( "footprint_viewer.show_graphic_fill",
68}
69
70
71bool CVPCB_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
72{
73 bool ret = APP_SETTINGS_BASE::MigrateFromLegacy( aCfg );
74
75 ret &= fromLegacy<int>( aCfg, "FilterFootprint", "filter_footprint" );
76
77 ret &= migrateWindowConfig( aCfg, "FootprintViewerFrame", "footprint_viewer" );
78
79 ret &= fromLegacy<bool>( aCfg, "FootprintViewerFrameDiPadFi", "footprint_viewer.pad_fill" );
80 ret &= fromLegacy<bool>( aCfg, "FootprintViewerFrameDiPadNu", "footprint_viewer.pad_numbers" );
81 ret &= fromLegacy<bool>(
82 aCfg, "FootprintViewerFrameDiModTx", "footprint_viewer.footprint_text_fill" );
83
84 ret &= fromLegacy<bool>( aCfg, "FootprintViewerFrameAutoZoom", "footprint_viewer.auto_zoom" );
85 ret &= fromLegacy<double>( aCfg, "FootprintViewerFrameZoom", "footprint_viewer.zoom" );
86
87 return ret;
88}
bool migrateWindowConfig(wxConfigBase *aCfg, const std::string &aFrameName, const std::string &aJsonPath)
Migrate legacy window settings into the JSON document.
virtual bool MigrateFromLegacy(wxConfigBase *aCfg) override
Migrates from wxConfig to JSON-based configuration.
void addParamsForWindow(WINDOW_SETTINGS *aWindow, const std::string &aJsonPath)
Add parameters for the given window object.
MAGNETIC_SETTINGS m_FootprintViewerMagneticSettings
WINDOW_SETTINGS m_FootprintViewer
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
wxString m_FilterString
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
bool m_FootprintViewerAutoZoomOnSelect
true to use automatic zoom on fp selection
VIEWERS_DISPLAY_OPTIONS m_ViewersDisplay
double m_FootprintViewerZoom
The last zoom level used (0 for auto)
const int cvpcbSchemaVersion
! Update the schema version whenever a migration is required
MAGNETIC_OPTIONS tracks
MAGNETIC_OPTIONS pads