2020-01-13 01:44:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-05-01 20:26:29 +00:00
|
|
|
* Copyright (C) 2020-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2020-01-13 01:44:19 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2021-02-06 01:01:50 +00:00
|
|
|
#include <pybind11/pybind11.h>
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <footprint_editor_settings.h>
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <pcbnew_settings.h>
|
|
|
|
#include <pgm_base.h>
|
|
|
|
#include <router/pns_routing_settings.h>
|
|
|
|
#include <settings/common_settings.h>
|
|
|
|
#include <settings/nested_settings.h>
|
|
|
|
#include <settings/parameters.h>
|
|
|
|
#include <settings/settings_manager.h>
|
|
|
|
#include <wx/config.h>
|
|
|
|
#include <wx/tokenzr.h>
|
|
|
|
#include <zones.h>
|
2020-03-04 14:25:54 +00:00
|
|
|
#include <widgets/ui_common.h>
|
2020-06-14 15:08:47 +00:00
|
|
|
#include <base_units.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-06-19 17:28:45 +00:00
|
|
|
#include "../3d-viewer/3d_viewer/eda_3d_viewer_settings.h"
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
///! Update the schema version whenever a migration is required
|
2023-02-23 01:13:44 +00:00
|
|
|
const int pcbnewSchemaVersion = 5;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
|
2020-05-23 17:14:49 +00:00
|
|
|
PCBNEW_SETTINGS::PCBNEW_SETTINGS()
|
2022-07-23 08:34:31 +00:00
|
|
|
: PCB_VIEWERS_SETTINGS_BASE( "pcbnew", pcbnewSchemaVersion ),
|
2020-06-05 11:49:32 +00:00
|
|
|
m_AuiPanels(),
|
|
|
|
m_Cleanup(),
|
|
|
|
m_DrcDialog(),
|
|
|
|
m_ExportIdf(),
|
|
|
|
m_ExportStep(),
|
|
|
|
m_ExportSvg(),
|
|
|
|
m_ExportVrml(),
|
|
|
|
m_FootprintWizardList(),
|
|
|
|
m_GenDrill(),
|
|
|
|
m_ImportGraphics(),
|
|
|
|
m_NetlistDialog(),
|
|
|
|
m_PlaceFile(),
|
|
|
|
m_Plot(),
|
|
|
|
m_FootprintChooser(),
|
|
|
|
m_Zones(),
|
|
|
|
m_FootprintViewer(),
|
|
|
|
m_FootprintWizard(),
|
|
|
|
m_Display(),
|
2020-07-18 22:56:39 +00:00
|
|
|
m_TrackDragAction( TRACK_DRAG_ACTION::DRAG ),
|
2022-12-05 18:27:00 +00:00
|
|
|
m_ArcEditMode( ARC_EDIT_MODE::KEEP_CENTER_ADJUST_ANGLE_RADIUS ),
|
2022-06-16 17:05:48 +00:00
|
|
|
m_CtrlClickHighlight( false ),
|
2021-08-29 23:33:08 +00:00
|
|
|
m_Use45DegreeLimit( false ),
|
2020-05-23 17:14:49 +00:00
|
|
|
m_FlipLeftRight( false ),
|
2022-08-09 07:45:29 +00:00
|
|
|
m_ESCClearsNetHighlight( true ),
|
2020-06-05 11:49:32 +00:00
|
|
|
m_PolarCoords( false ),
|
2022-01-19 13:24:02 +00:00
|
|
|
m_RotationAngle( ANGLE_90 ),
|
2020-05-23 17:14:49 +00:00
|
|
|
m_ShowPageLimits( true ),
|
2022-10-19 10:32:16 +00:00
|
|
|
m_ShowCourtyardCollisions( true ),
|
2022-03-01 19:22:17 +00:00
|
|
|
m_AutoRefillZones( false ),
|
2021-03-27 14:44:51 +00:00
|
|
|
m_AllowFreePads( false ),
|
2020-05-23 17:14:49 +00:00
|
|
|
m_PnsSettings( nullptr ),
|
2022-04-18 08:32:36 +00:00
|
|
|
m_FootprintViewerZoom( 1.0 ),
|
2022-07-11 03:00:46 +00:00
|
|
|
m_FootprintViewerAutoZoomOnSelect( true ),
|
|
|
|
m_FootprintViewerLibListWidth( 200 ),
|
|
|
|
m_FootprintViewerFPListWidth( 300 )
|
2020-01-13 01:44:19 +00:00
|
|
|
{
|
2023-08-17 13:25:26 +00:00
|
|
|
m_MagneticItems.pads = MAGNETIC_OPTIONS::CAPTURE_CURSOR_IN_TRACK_TOOL;
|
|
|
|
m_MagneticItems.tracks = MAGNETIC_OPTIONS::CAPTURE_CURSOR_IN_TRACK_TOOL;
|
|
|
|
m_MagneticItems.graphics = false;
|
|
|
|
m_MagneticItems.allLayers = false;
|
2020-05-22 18:27:05 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "aui.show_layer_manager",
|
|
|
|
&m_AuiPanels.show_layer_manager, true ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.right_panel_width",
|
|
|
|
&m_AuiPanels.right_panel_width, -1 ) );
|
2020-08-16 18:33:40 +00:00
|
|
|
|
2024-03-04 23:00:26 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.net_inspector_width",
|
|
|
|
&m_AuiPanels.net_inspector_width, -1 ) );
|
|
|
|
|
2022-11-25 14:11:20 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.properties_panel_width",
|
|
|
|
&m_AuiPanels.properties_panel_width, -1 ) );
|
|
|
|
|
2022-12-08 02:38:33 +00:00
|
|
|
m_params.emplace_back( new PARAM<float>( "aui.properties_splitter_proportion",
|
2023-09-25 11:35:31 +00:00
|
|
|
&m_AuiPanels.properties_splitter, 0.5f ) );
|
2022-12-08 02:38:33 +00:00
|
|
|
|
2022-11-25 14:11:20 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.search_panel_height",
|
|
|
|
&m_AuiPanels.search_panel_height, -1 ) );
|
|
|
|
|
2023-05-18 20:03:33 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.search_panel_width",
|
|
|
|
&m_AuiPanels.search_panel_width, -1 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.search_panel_dock_direction",
|
2024-01-18 03:26:04 +00:00
|
|
|
&m_AuiPanels.search_panel_dock_direction, 3 ) );
|
2023-05-18 20:03:33 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "aui.appearance_panel_tab",
|
|
|
|
&m_AuiPanels.appearance_panel_tab, 0, 0, 2 ) );
|
2020-08-18 02:06:31 +00:00
|
|
|
|
2022-10-30 23:46:15 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "aui.appearance_expand_layer_display",
|
|
|
|
&m_AuiPanels.appearance_expand_layer_display, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "aui.appearance_expand_net_display",
|
|
|
|
&m_AuiPanels.appearance_expand_net_display, false ) );
|
|
|
|
|
2020-02-04 08:40:25 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "aui.show_properties",
|
2022-12-08 22:38:36 +00:00
|
|
|
&m_AuiPanels.show_properties, false ) );
|
2020-02-04 08:40:25 +00:00
|
|
|
|
2022-09-25 16:03:45 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "aui.show_search",
|
|
|
|
&m_AuiPanels.show_search, false ) );
|
|
|
|
|
2024-03-04 23:00:26 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "aui.show_net_inspector",
|
|
|
|
&m_AuiPanels.show_net_inspector, false ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_chooser.width",
|
|
|
|
&m_FootprintChooser.width, -1 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_chooser.height",
|
|
|
|
&m_FootprintChooser.height, -1 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_chooser.sash_h",
|
|
|
|
&m_FootprintChooser.sash_h, -1 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_chooser.sash_v",
|
|
|
|
&m_FootprintChooser.sash_v, -1 ) );
|
|
|
|
|
2023-05-01 20:26:29 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_chooser.sort_mode",
|
|
|
|
&m_FootprintChooser.sort_mode, 0 ) );
|
|
|
|
|
2023-09-29 16:02:57 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "footprint_chooser.filter_on_pin_count",
|
|
|
|
&m_FootprintChooser.filter_on_pin_count, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "footprint_chooser.use_fp_filters",
|
|
|
|
&m_FootprintChooser.use_fp_filters, false ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.flip_left_right",
|
|
|
|
&m_FlipLeftRight, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2022-08-09 07:45:29 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.esc_clears_net_highlight",
|
|
|
|
&m_ESCClearsNetHighlight, true ) );
|
|
|
|
|
2022-10-19 10:32:16 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.show_courtyard_collisions",
|
|
|
|
&m_ShowCourtyardCollisions, true ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.magnetic_graphics",
|
|
|
|
&m_MagneticItems.graphics, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "editing.magnetic_pads",
|
2020-05-22 18:27:05 +00:00
|
|
|
reinterpret_cast<int*>( &m_MagneticItems.pads ),
|
2020-01-13 01:44:19 +00:00
|
|
|
static_cast<int>( MAGNETIC_OPTIONS::CAPTURE_CURSOR_IN_TRACK_TOOL ) ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "editing.magnetic_tracks",
|
2020-05-22 18:27:05 +00:00
|
|
|
reinterpret_cast<int*>( &m_MagneticItems.tracks ),
|
2020-01-13 01:44:19 +00:00
|
|
|
static_cast<int>( MAGNETIC_OPTIONS::CAPTURE_CURSOR_IN_TRACK_TOOL ) ) );
|
|
|
|
|
2023-08-17 13:25:26 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.magnetic_all_layers",
|
|
|
|
&m_MagneticItems.allLayers, false ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.polar_coords",
|
|
|
|
&m_PolarCoords, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-06-21 19:39:27 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "editing.track_drag_action",
|
|
|
|
reinterpret_cast<int*>( &m_TrackDragAction ),
|
|
|
|
static_cast<int>( TRACK_DRAG_ACTION::DRAG ) ) );
|
|
|
|
|
2022-12-05 18:27:00 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "editing.arc_edit_mode",
|
|
|
|
reinterpret_cast<int*>( &m_ArcEditMode ),
|
|
|
|
static_cast<int>( ARC_EDIT_MODE::KEEP_CENTER_ADJUST_ANGLE_RADIUS ) ) );
|
|
|
|
|
2022-06-16 17:05:48 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.ctrl_click_highlight",
|
|
|
|
&m_CtrlClickHighlight, false ) );
|
|
|
|
|
2021-10-01 11:11:03 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.pcb_use_45_degree_limit",
|
2021-08-29 23:33:08 +00:00
|
|
|
&m_Use45DegreeLimit, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-03-17 18:57:07 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.auto_fill_zones",
|
2023-02-23 01:13:44 +00:00
|
|
|
&m_AutoRefillZones, false ) );
|
2021-03-17 18:57:07 +00:00
|
|
|
|
2021-03-27 14:44:51 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "editing.allow_free_pads",
|
|
|
|
&m_AllowFreePads, false ) );
|
|
|
|
|
2022-01-19 13:24:02 +00:00
|
|
|
m_params.emplace_back( new PARAM_LAMBDA<int>( "editing.rotation_angle",
|
|
|
|
[this] () -> int
|
|
|
|
{
|
2022-03-10 17:43:21 +00:00
|
|
|
int rot = m_RotationAngle.AsTenthsOfADegree();
|
|
|
|
|
|
|
|
// Don't store values larger than 360 degrees
|
|
|
|
return rot % 3600;
|
2022-01-19 13:24:02 +00:00
|
|
|
},
|
|
|
|
[this] ( int aVal )
|
|
|
|
{
|
2022-01-19 19:17:14 +00:00
|
|
|
if( aVal )
|
|
|
|
m_RotationAngle = EDA_ANGLE( aVal, TENTHS_OF_A_DEGREE_T );
|
2022-03-10 17:43:21 +00:00
|
|
|
|
|
|
|
// A misconfiguration allowed some angles to be stored as tenth of a degree but read
|
|
|
|
// as tens of degrees. By disallowing storage of values larger than 360, we can weed out
|
|
|
|
// those invalid values here.
|
|
|
|
while( m_RotationAngle > ANGLE_360 )
|
|
|
|
m_RotationAngle = m_RotationAngle / 100;
|
|
|
|
|
2022-01-19 13:24:02 +00:00
|
|
|
},
|
|
|
|
900 ) );
|
2021-08-31 22:59:14 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.graphic_items_fill",
|
2022-07-23 08:34:31 +00:00
|
|
|
&m_ViewersDisplay.m_DisplayGraphicsFill, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "pcb_display.max_links_shown",
|
|
|
|
&m_Display.m_MaxLinksShowed, 3, 0, 15 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.graphics_fill",
|
2022-07-23 08:34:31 +00:00
|
|
|
&m_ViewersDisplay.m_DisplayGraphicsFill, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.text_fill",
|
2022-07-23 08:34:31 +00:00
|
|
|
&m_ViewersDisplay.m_DisplayTextFill, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "pcb_display.net_names_mode",
|
2022-02-12 16:32:55 +00:00
|
|
|
&m_Display.m_NetNames, 3, 0, 3 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.pad_clearance",
|
2022-02-12 16:32:55 +00:00
|
|
|
&m_Display.m_PadClearance, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.pad_fill",
|
2022-07-23 08:34:31 +00:00
|
|
|
&m_ViewersDisplay.m_DisplayPadFill, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.pad_numbers",
|
2022-07-23 08:34:31 +00:00
|
|
|
&m_ViewersDisplay.m_DisplayPadNumbers, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.ratsnest_global",
|
|
|
|
&m_Display.m_ShowGlobalRatsnest, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.ratsnest_footprint",
|
|
|
|
&m_Display.m_ShowModuleRatsnest, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.ratsnest_curved",
|
|
|
|
&m_Display.m_DisplayRatsnestLinesCurved, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2023-05-20 23:06:51 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "pcb_display.ratsnest_thickness",
|
|
|
|
&m_Display.m_RatsnestThickness, 0.5 ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "pcb_display.track_clearance_mode",
|
2022-02-12 16:32:55 +00:00
|
|
|
reinterpret_cast<int*>( &m_Display.m_TrackClearance ), SHOW_WITH_VIA_WHILE_ROUTING ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.track_fill",
|
|
|
|
&m_Display.m_DisplayPcbTrackFill, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.via_fill",
|
|
|
|
&m_Display.m_DisplayViaFill, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-07-04 19:39:58 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "pcb_display.origin_mode",
|
|
|
|
reinterpret_cast<int*>( &m_Display.m_DisplayOrigin ),
|
2021-12-26 00:36:12 +00:00
|
|
|
PCB_DISPLAY_ORIGIN::PCB_ORIGIN_PAGE ) );
|
2020-07-04 19:39:58 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.origin_invert_x_axis",
|
|
|
|
&m_Display.m_DisplayInvertXAxis, false ) );
|
2020-07-04 19:39:58 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.origin_invert_y_axis",
|
|
|
|
&m_Display.m_DisplayInvertYAxis, false ) );
|
2020-07-04 19:39:58 +00:00
|
|
|
|
2023-08-20 16:08:51 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.force_show_fields_when_fp_selected",
|
|
|
|
&m_Display.m_ForceShowFieldsWhenFPSelected, true ) );
|
|
|
|
|
2021-04-08 02:39:30 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.live_3d_refresh",
|
|
|
|
&m_Display.m_Live3DRefresh, false ) );
|
|
|
|
|
2021-07-25 00:44:15 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "pcb_display.show_page_borders",
|
|
|
|
&m_ShowPageLimits, true ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "cleanup.cleanup_vias",
|
|
|
|
&m_Cleanup.cleanup_vias, true ) );
|
|
|
|
|
2020-07-31 04:21:25 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "cleanup.delete_dangling_vias",
|
|
|
|
&m_Cleanup.delete_dangling_vias, true ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "cleanup.merge_segments",
|
|
|
|
&m_Cleanup.merge_segments, true ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "cleanup.cleanup_unconnected",
|
|
|
|
&m_Cleanup.cleanup_unconnected, true ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "cleanup.cleanup_short_circuits",
|
|
|
|
&m_Cleanup.cleanup_short_circuits, true ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "cleanup.cleanup_tracks_in_pad",
|
2021-05-03 18:47:40 +00:00
|
|
|
&m_Cleanup.cleanup_tracks_in_pad, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "drc_dialog.refill_zones",
|
2020-11-04 19:05:46 +00:00
|
|
|
&m_DrcDialog.refill_zones, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-09-14 15:45:39 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "drc_dialog.test_all_track_errors",
|
|
|
|
&m_DrcDialog.test_all_track_errors, false ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "drc_dialog.test_footprints",
|
|
|
|
&m_DrcDialog.test_footprints, false ) );
|
|
|
|
|
2020-03-04 14:25:54 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "drc_dialog.severities",
|
|
|
|
&m_DrcDialog.severities, RPT_SEVERITY_ERROR | RPT_SEVERITY_WARNING ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "gen_drill.merge_pth_npth",
|
|
|
|
&m_GenDrill.merge_pth_npth, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "gen_drill.minimal_header",
|
|
|
|
&m_GenDrill.minimal_header, false ) );
|
|
|
|
|
2021-07-25 00:44:15 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "gen_drill.mirror",
|
|
|
|
&m_GenDrill.mirror, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "gen_drill.unit_drill_is_inch",
|
|
|
|
&m_GenDrill.unit_drill_is_inch, true ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "gen_drill.use_route_for_oval_holes",
|
|
|
|
&m_GenDrill.use_route_for_oval_holes, true ) );
|
|
|
|
|
2021-07-25 00:44:15 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "gen_drill.drill_file_type",
|
|
|
|
&m_GenDrill.drill_file_type, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "gen_drill.map_file_type",
|
|
|
|
&m_GenDrill.map_file_type, 1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "gen_drill.zeros_format",
|
|
|
|
&m_GenDrill.zeros_format, 0, 0, 3 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2023-06-12 18:12:39 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_2581.units",
|
|
|
|
&m_Export2581.units, 0 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "export_2581.precision",
|
|
|
|
&m_Export2581.precision, 3 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "export_2581.version",
|
|
|
|
&m_Export2581.version, 1 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_2581.compress",
|
|
|
|
&m_Export2581.compress, false ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_idf.auto_adjust",
|
|
|
|
&m_ExportIdf.auto_adjust, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_idf.ref_units",
|
|
|
|
&m_ExportIdf.ref_units, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "export_idf.ref_x",
|
|
|
|
&m_ExportIdf.ref_x, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "export_idf.ref_y",
|
|
|
|
&m_ExportIdf.ref_y, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_idf.units_mils",
|
|
|
|
&m_ExportIdf.units_mils, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_step.origin_mode",
|
2022-11-09 16:20:24 +00:00
|
|
|
&m_ExportStep.origin_mode, 1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_step.origin_units",
|
|
|
|
&m_ExportStep.origin_units, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "export_step.origin_x",
|
|
|
|
&m_ExportStep.origin_x, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "export_step.origin_y",
|
|
|
|
&m_ExportStep.origin_y, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2023-04-13 14:30:31 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_step.no_unspecified",
|
|
|
|
&m_ExportStep.no_unspecified, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_step.no_dnp",
|
|
|
|
&m_ExportStep.no_dnp, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-06-15 07:33:37 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_step.replace_models",
|
2023-01-27 21:40:49 +00:00
|
|
|
&m_ExportStep.replace_models, true ) );
|
2021-06-15 07:33:37 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_step.overwrite_file",
|
|
|
|
&m_ExportStep.overwrite_file, true ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_svg.black_and_white",
|
|
|
|
&m_ExportSvg.black_and_white, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2023-08-31 18:33:31 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_svg.use_theme",
|
|
|
|
&m_ExportSvg.use_selected_theme, true ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "export_svg.color_theme",
|
|
|
|
&m_ExportSvg.color_theme, "" ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_svg.mirror",
|
|
|
|
&m_ExportSvg.mirror, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_svg.one_file",
|
|
|
|
&m_ExportSvg.one_file, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back(new PARAM<bool>( "export_svg.plot_board_edges",
|
|
|
|
&m_ExportSvg.plot_board_edges, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_svg.page_size",
|
|
|
|
&m_ExportSvg.page_size, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<wxString>( "export_svg.output_dir",
|
|
|
|
&m_ExportSvg.output_dir, "" ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM_LIST<int>( "export_svg.layers",
|
|
|
|
&m_ExportSvg.layers, {} ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_vrml.units",
|
|
|
|
&m_ExportVrml.units, 1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2024-03-04 15:05:53 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_vrml.no_unspecified",
|
|
|
|
&m_ExportVrml.no_unspecified, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_vrml.no_dnp",
|
|
|
|
&m_ExportVrml.no_dnp, false ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_vrml.copy_3d_models",
|
|
|
|
&m_ExportVrml.copy_3d_models, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "export_vrml.use_relative_paths",
|
|
|
|
&m_ExportVrml.use_relative_paths, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_vrml.ref_units",
|
|
|
|
&m_ExportVrml.ref_units, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "export_vrml.ref_x",
|
|
|
|
&m_ExportVrml.ref_x, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "export_vrml.ref_y",
|
|
|
|
&m_ExportVrml.ref_y, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-03-17 13:26:26 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "export_vrml.origin_mode",
|
|
|
|
&m_ExportVrml.origin_mode, 0 ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "zones.net_sort_mode",
|
2021-07-12 21:55:46 +00:00
|
|
|
&m_Zones.net_sort_mode, -1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "import_graphics.layer",
|
|
|
|
&m_ImportGraphics.layer, Dwgs_User ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2023-11-15 19:22:43 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "import_graphics.use_dlg_layer_selection",
|
|
|
|
&m_ImportGraphics.use_dlg_layer_selection, true ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "import_graphics.interactive_placement",
|
|
|
|
&m_ImportGraphics.interactive_placement, true ) );
|
|
|
|
|
2023-11-15 19:22:43 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "import_graphics.group_items",
|
|
|
|
&m_ImportGraphics.group_items, true ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "import_graphics.fix_discontinuities",
|
2024-01-16 09:12:56 +00:00
|
|
|
&m_ImportGraphics.fix_discontinuities, true ) );
|
2023-11-15 19:22:43 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<double>( "import_graphics.tolerance",
|
2024-01-16 09:12:56 +00:00
|
|
|
&m_ImportGraphics.tolerance, 1.0, 0.0, 10.0 ) );
|
2023-11-15 19:22:43 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "import_graphics.line_width_units",
|
2022-07-18 16:49:50 +00:00
|
|
|
&m_ImportGraphics.dxf_line_width_units, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "import_graphics.line_width",
|
2022-07-18 16:49:50 +00:00
|
|
|
&m_ImportGraphics.dxf_line_width, 0.2 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "import_graphics.origin_units",
|
|
|
|
&m_ImportGraphics.origin_units, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "import_graphics.origin_x",
|
|
|
|
&m_ImportGraphics.origin_x, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "import_graphics.origin_y",
|
|
|
|
&m_ImportGraphics.origin_y, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "import_graphics.dxf_units",
|
|
|
|
&m_ImportGraphics.dxf_units, 0 ) );
|
2020-11-22 03:11:24 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "netlist.report_filter",
|
|
|
|
&m_NetlistDialog.report_filter, -1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "netlist.update_footprints",
|
|
|
|
&m_NetlistDialog.update_footprints, true ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "netlist.delete_shorting_tracks",
|
|
|
|
&m_NetlistDialog.delete_shorting_tracks, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "netlist.delete_extra_footprints",
|
|
|
|
&m_NetlistDialog.delete_extra_footprints, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "netlist.associate_by_ref_sch",
|
|
|
|
&m_NetlistDialog.associate_by_ref_sch, false ) );
|
2020-05-05 13:20:02 +00:00
|
|
|
|
2024-05-06 10:27:36 +00:00
|
|
|
/*
|
|
|
|
* place_file.output_directory is only used at run-time; actual data is in project file
|
|
|
|
*
|
|
|
|
* m_params.emplace_back( new PARAM<wxString>( "place_file.output_directory",
|
|
|
|
* &m_PlaceFile.output_directory, wxEmptyString ) );
|
|
|
|
*/
|
2022-10-24 21:21:50 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "place_file.units",
|
2020-12-19 00:19:47 +00:00
|
|
|
&m_PlaceFile.units, 1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "place_file.file_options",
|
|
|
|
&m_PlaceFile.file_options, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "place_file.file_format",
|
|
|
|
&m_PlaceFile.file_format, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2022-10-24 21:21:50 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "place_file.excludeTH",
|
|
|
|
&m_PlaceFile.exclude_TH, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "place_file.onlySMD",
|
|
|
|
&m_PlaceFile.only_SMD, false ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "place_file.include_board_edge",
|
|
|
|
&m_PlaceFile.include_board_edge, false ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-06-27 16:39:09 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "place_file.use_place_file_origin",
|
|
|
|
&m_PlaceFile.use_aux_origin, true ) );
|
|
|
|
|
2022-08-02 09:22:12 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "place_file.negate_xcoord",
|
|
|
|
&m_PlaceFile.negate_xcoord, false ) );
|
|
|
|
|
2020-10-21 20:23:28 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "plot.all_layers_on_one_page",
|
|
|
|
&m_Plot.all_layers_on_one_page, 1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-12-19 15:43:02 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "plot.edgecut_on_all_layers",
|
|
|
|
&m_Plot.edgecut_on_all_layers, true ) );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "plot.pads_drill_mode",
|
|
|
|
&m_Plot.pads_drill_mode, 2 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "plot.fine_scale_x",
|
|
|
|
&m_Plot.fine_scale_x, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "plot.fine_scale_y",
|
|
|
|
&m_Plot.fine_scale_y, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "plot.ps_fine_width_adjust",
|
|
|
|
&m_Plot.ps_fine_width_adjust, 0 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "plot.check_zones_before_plotting",
|
|
|
|
&m_Plot.check_zones_before_plotting, true ) );
|
|
|
|
|
2020-10-08 12:26:40 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "plot.mirror",
|
|
|
|
&m_Plot.mirror, false ) );
|
|
|
|
|
2023-11-05 16:22:20 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "plot.as_item_checkboxes",
|
|
|
|
&m_Plot.as_item_checkboxes, false ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_params.emplace_back( new PARAM<wxString>( "window.footprint_text_shown_columns",
|
2024-04-22 16:47:21 +00:00
|
|
|
&m_FootprintTextShownColumns, "0 1 2 3 4 5 7" ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_wizard_list.width",
|
|
|
|
&m_FootprintWizardList.width, -1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_wizard_list.height",
|
|
|
|
&m_FootprintWizardList.height, -1 ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "reannotate_dialog.annotate_sort_on_modules",
|
|
|
|
&m_Reannotate.sort_on_fp_location, true ) );
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "reannotate_dialog.annotate_remove_front_prefix",
|
|
|
|
&m_Reannotate.remove_front_prefix, false ) );
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "reannotate_dialog.annotate_remove_back_prefix",
|
|
|
|
&m_Reannotate.remove_back_prefix, false ) );
|
|
|
|
m_params.emplace_back( new PARAM<bool>( "reannotate_dialog.annotate_exclude_locked",
|
|
|
|
&m_Reannotate.exclude_locked, false ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "reannotate_dialog.annotate_grid_index",
|
|
|
|
&m_Reannotate.grid_index, 0 ) );
|
|
|
|
m_params.emplace_back( new PARAM<int>( "reannotate_dialog.annotate_sort_code",
|
|
|
|
&m_Reannotate.sort_code, 0 ) );
|
|
|
|
m_params.emplace_back( new PARAM<int>( "reannotate_dialog.annotate_choice",
|
|
|
|
&m_Reannotate.annotation_choice, 0 ) );
|
|
|
|
m_params.emplace_back( new PARAM<int>( "reannotate_dialog.annotate_report_severity",
|
|
|
|
&m_Reannotate.report_severity, 0 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "reannotate_dialog.annotate_front_refdes_start",
|
|
|
|
&m_Reannotate.front_refdes_start, "1" ) );
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "reannotate_dialog.annotate_back_refdes_start",
|
|
|
|
&m_Reannotate.back_refdes_start, "" ) );
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "reannotate_dialog.annotate_front_prefix",
|
|
|
|
&m_Reannotate.front_prefix, "" ) );
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "reannotate_dialog.annotate_back_prefix",
|
|
|
|
&m_Reannotate.back_prefix, "" ) );
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "reannotate_dialog.annotate_exclude_list",
|
|
|
|
&m_Reannotate.exclude_list, "" ) );
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "reannotate_dialog.annotate_report_file_name",
|
|
|
|
&m_Reannotate.report_file_name, "" ) );
|
2020-04-21 01:44:17 +00:00
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "action_plugins",
|
|
|
|
[&]() -> nlohmann::json
|
|
|
|
{
|
2020-02-20 15:59:45 +00:00
|
|
|
nlohmann::json js = nlohmann::json::array();
|
|
|
|
|
|
|
|
for( const auto& pair : m_VisibleActionPlugins )
|
|
|
|
js.push_back( nlohmann::json( { { pair.first.ToUTF8(), pair.second } } ) );
|
|
|
|
|
|
|
|
return js;
|
2020-05-08 18:10:47 +00:00
|
|
|
},
|
|
|
|
[&]( const nlohmann::json& aObj )
|
|
|
|
{
|
2020-02-20 15:59:45 +00:00
|
|
|
m_VisibleActionPlugins.clear();
|
|
|
|
|
|
|
|
if( !aObj.is_array() )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( const auto& entry : aObj )
|
|
|
|
{
|
|
|
|
if( entry.empty() || !entry.is_object() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for( const auto& pair : entry.items() )
|
|
|
|
{
|
|
|
|
m_VisibleActionPlugins.emplace_back( std::make_pair(
|
|
|
|
wxString( pair.key().c_str(), wxConvUTF8 ), pair.value() ) );
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 18:10:47 +00:00
|
|
|
},
|
|
|
|
nlohmann::json::array() ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
addParamsForWindow( &m_FootprintViewer, "footprint_viewer" );
|
|
|
|
|
2020-05-23 17:14:49 +00:00
|
|
|
m_params.emplace_back( new PARAM<double>( "footprint_viewer.zoom",
|
|
|
|
&m_FootprintViewerZoom, 1.0 ) );
|
|
|
|
|
2022-04-18 08:32:36 +00:00
|
|
|
m_params.emplace_back( new PARAM<bool>( "footprint_viewer.autozoom",
|
|
|
|
&m_FootprintViewerAutoZoomOnSelect, true ) );
|
|
|
|
|
2022-07-11 03:00:46 +00:00
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_viewer.lib_list_width",
|
|
|
|
&m_FootprintViewerLibListWidth, 200 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "footprint_viewer.fp_list_width",
|
|
|
|
&m_FootprintViewerFPListWidth, 300 ) );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
addParamsForWindow( &m_FootprintWizard, "footprint_wizard" );
|
2020-09-01 02:00:38 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "system.last_footprint_lib_dir",
|
2021-12-07 00:14:36 +00:00
|
|
|
&m_lastFootprintLibDir, "" ) );
|
2020-09-01 02:00:38 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<wxString>( "system.last_footprint3d_dir",
|
2021-12-07 00:14:36 +00:00
|
|
|
&m_lastFootprint3dDir, "" ) );
|
2021-08-31 22:59:14 +00:00
|
|
|
|
|
|
|
registerMigration( 0, 1,
|
|
|
|
[&]()
|
|
|
|
{
|
2022-08-25 22:50:47 +00:00
|
|
|
if( std::optional<int> optval = Get<int>( "pcb_display.rotation_angle" ) )
|
2022-08-30 20:58:43 +00:00
|
|
|
Set( "editing.rotation_angle", *optval );
|
2021-08-31 22:59:14 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
At( "pcb_display" ).erase( "rotation_angle" );
|
|
|
|
}
|
|
|
|
catch( ... )
|
|
|
|
{}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
|
|
|
|
2022-03-01 19:22:17 +00:00
|
|
|
registerMigration( 1, 2,
|
|
|
|
[&]()
|
|
|
|
{
|
|
|
|
// In version 1 this meant "after Zone Properties dialog", but it now means
|
|
|
|
// "everywhere" so we knock it off on transition.
|
|
|
|
Set( "editing.auto_fill_zones", false );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
|
|
|
|
2022-08-15 22:43:42 +00:00
|
|
|
|
|
|
|
registerMigration( 2, 3,
|
|
|
|
[&]() -> bool
|
|
|
|
{
|
|
|
|
// We used to have a bug on GTK which would set the lib tree column width way
|
|
|
|
// too narrow.
|
2022-08-25 22:50:47 +00:00
|
|
|
if( std::optional<int> optval = Get<int>( "lib_tree.column_width" ) )
|
2022-08-15 22:43:42 +00:00
|
|
|
{
|
|
|
|
if( optval < 150 )
|
|
|
|
Set( "lib_tree.column_width", 300 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
2022-08-28 23:02:12 +00:00
|
|
|
|
|
|
|
registerMigration( 3, 4,
|
|
|
|
[&]() -> bool
|
|
|
|
{
|
|
|
|
// This is actually a migration for APP_SETTINGS_BASE::m_LibTree
|
|
|
|
return migrateLibTreeWidth();
|
|
|
|
} );
|
2023-02-23 01:13:44 +00:00
|
|
|
|
|
|
|
registerMigration( 4, 5,
|
|
|
|
[&]() -> bool
|
|
|
|
{
|
|
|
|
// This default proved to be unpopular; bump it off for everyone
|
|
|
|
Set( "editing.auto_fill_zones", false );
|
|
|
|
return true;
|
|
|
|
} );
|
2020-01-13 01:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-28 03:53:00 +00:00
|
|
|
PCBNEW_SETTINGS::~PCBNEW_SETTINGS() = default;
|
|
|
|
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
bool PCBNEW_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
|
|
|
|
{
|
|
|
|
bool ret = APP_SETTINGS_BASE::MigrateFromLegacy( aCfg );
|
|
|
|
|
|
|
|
const std::string f = getLegacyFrameName();
|
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
//
|
|
|
|
// NOTE: there's no value in line-wrapping these; it just makes the table unreadable.
|
|
|
|
//
|
2020-12-19 00:19:47 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, "ShowLayerManagerTools", "aui.show_layer_manager" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
ret &= fromLegacy<int>( aCfg, "FootprintChooserHSashPosition", "footprint_chooser.sash_h" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "FootprintChooserVSashPosition", "footprint_chooser.sash_v" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "FootprintChooserWidth", "footprint_chooser.width" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "FootprintChooserHeight", "footprint_chooser.height" );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, "FlipLeftRight", "editing.flip_left_right" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "MagneticGraphics", "editing.magnetic_graphics" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "MagneticPads", "editing.magnetic_pads" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "MagneticTracks", "editing.magnetic_tracks" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DisplayPolarCoords", "editing.polar_coords" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "Use45DegreeGraphicSegments", "editing.use_45_degree_graphic_segments" );
|
|
|
|
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PcbAffT", "pcb_display.graphic_items_fill" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "MaxLnkS", "pcb_display.max_links_shown" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "ModAffC", "pcb_display.footprint_edge_fill" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "ModAffT", "pcb_display.footprint_text_fill" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "ShowNetNamesMode", "pcb_display.net_names_mode" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PcbDisplayOrigin", "pcb_display.origin_mode" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PcbInvertXAxis", "pcb_display.origin_invert_x_axis" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PcbInvertYAxis", "pcb_display.origin_invert_y_axis" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PadAffG", "pcb_display.pad_clearance" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PadFill", "pcb_display.pad_fill" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PadSNum", "pcb_display.pad_numbers" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "ShowRatsnestLines", "pcb_display.ratsnest_global" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "ShowRatsnestModuleLines", "pcb_display.ratsnest_footprint" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "CurvedRatsnestLines", "pcb_display.ratsnest_curved" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "RotationAngle", "pcb_display.rotation_angle" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "TrackDisplayClearance", "pcb_display.track_clearance_mode" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DisplayTrackFilled", "pcb_display.track_fill" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "ViaFill", "pcb_display.via_fill" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PcbShowZonesMode", "pcb_display.zone_mode" );
|
|
|
|
|
|
|
|
ret &= fromLegacy<double>( aCfg, "PlotLineWidth_mm", "plot.line_width" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
aCfg->SetPath( "/dialogs/cleanup_tracks" );
|
2020-12-19 00:19:47 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, "DialogCleanupVias", "cleanup.cleanup_vias" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DialogCleanupMergeSegments", "cleanup.merge_segments" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DialogCleanupUnconnected", "cleanup.cleanup_unconnected" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DialogCleanupShortCircuit", "cleanup.cleanup_short_circuits" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DialogCleanupTracksInPads", "cleanup.cleanup_tracks_in_pad" );
|
2020-01-13 01:44:19 +00:00
|
|
|
aCfg->SetPath( "../.." );
|
|
|
|
|
2020-12-19 00:19:47 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, "RefillZonesBeforeDrc", "drc_dialog.refill_zones" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DrcTestFootprints", "drc_dialog.test_footprints" );
|
|
|
|
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DrillMergePTHNPTH", "gen_drill.merge_pth_npth" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DrillMinHeader", "gen_drill.minimal_header" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DrillMirrorYOpt", "gen_drill.mirror" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "DrillUnit", "gen_drill.unit_drill_is_inch" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "OvalHolesRouteMode", "gen_drill.use_route_for_oval_holes" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "DrillFileType", "gen_drill.drill_file_type" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "DrillMapFileType", "gen_drill.map_file_type" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "DrillZerosFormat", "gen_drill.zeros_format" );
|
|
|
|
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "IDFRefAutoAdj", "export_idf.auto_adjust" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "IDFRefUnits", "export_idf.ref_units" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "IDFRefX", "export_idf.ref_x" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "IDFRefY", "export_idf.ref_y" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "IDFExportThou", "export_idf.units_mils" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
ret &= fromLegacy<int>( aCfg, "STEP_Origin_Opt", "export_step.origin_mode" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "STEP_UserOriginUnits", "export_step.origin_units" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "STEP_UserOriginX", "export_step.origin_x" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "STEP_UserOriginY", "export_step.origin_y" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "STEP_NoVirtual", "export_step.no_virtual" );
|
|
|
|
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PlotSVGModeColor", "export_svg.black_and_white" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PlotSVGModeMirror", "export_svg.mirror" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PlotSVGModeOneFile", "export_svg.one_file" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PlotSVGBrdEdge", "export_svg.plot_board_edges" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PlotSVGPageOpt", "export_svg.page_size" );
|
|
|
|
ret &= fromLegacyString( aCfg, "PlotSVGDirectory", "export_svg.output_dir" );
|
|
|
|
|
|
|
|
{
|
|
|
|
nlohmann::json js = nlohmann::json::array();
|
|
|
|
wxString key;
|
|
|
|
bool val = false;
|
|
|
|
|
|
|
|
for( unsigned i = 0; i < PCB_LAYER_ID_COUNT; ++i )
|
|
|
|
{
|
|
|
|
key.Printf( wxT( "PlotSVGLayer_%d" ), i );
|
|
|
|
|
|
|
|
if( aCfg->Read( key, &val ) && val )
|
|
|
|
js.push_back( i );
|
|
|
|
}
|
|
|
|
|
2021-06-04 03:52:50 +00:00
|
|
|
Set( "export_svg.layers", js );
|
2020-01-13 01:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
nlohmann::json js = nlohmann::json::array();
|
|
|
|
|
|
|
|
wxString packed;
|
|
|
|
|
|
|
|
if( aCfg->Read( "ActionPluginButtons", &packed ) )
|
|
|
|
{
|
|
|
|
wxStringTokenizer pluginSettingsTokenizer = wxStringTokenizer( packed, ";" );
|
|
|
|
|
|
|
|
while( pluginSettingsTokenizer.HasMoreTokens() )
|
|
|
|
{
|
2020-02-20 15:59:45 +00:00
|
|
|
nlohmann::json row;
|
2020-01-13 01:44:19 +00:00
|
|
|
wxString plugin = pluginSettingsTokenizer.GetNextToken();
|
|
|
|
wxStringTokenizer pluginTokenizer = wxStringTokenizer( plugin, "=" );
|
|
|
|
|
|
|
|
if( pluginTokenizer.CountTokens() != 2 )
|
|
|
|
{
|
|
|
|
// Bad config
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-02-20 15:59:45 +00:00
|
|
|
std::string key( pluginTokenizer.GetNextToken().ToUTF8() );
|
2021-08-02 00:52:58 +00:00
|
|
|
bool value( pluginTokenizer.GetNextToken().Cmp( wxT( "Visible" ) ) == 0 );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-08-02 00:52:58 +00:00
|
|
|
js.push_back( nlohmann::json( { { key, value } } ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-04 03:52:50 +00:00
|
|
|
Set( "action_plugins", js );
|
2020-01-13 01:44:19 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
//
|
|
|
|
// NOTE: there's no value in line-wrapping these; it just makes the table unreadable.
|
|
|
|
//
|
2020-01-13 01:44:19 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, "VrmlExportUnit", "export_vrml.units" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "VrmlExportCopyFiles", "export_vrml.copy_3d_models" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "VrmlUseRelativePaths", "export_vrml.use_relative_paths" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "VrmlRefUnits", "export_vrml.ref_units" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "VrmlRefX", "export_vrml.ref_x" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "VrmlRefY", "export_vrml.ref_y" );
|
2021-03-17 13:26:26 +00:00
|
|
|
ret &= fromLegacy<int> ( aCfg, "VrmlOriginMode", "export_vrml.origin_mode" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
ret &= fromLegacy<int>( aCfg, "Zone_Ouline_Hatch_Opt", "zones.hatching_style" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "Zone_NetSort_Opt", "zones.net_sort_mode" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "Zone_Clearance", "zones.clearance" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "Zone_Thickness", "zones.min_thickness" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "Zone_TH_Gap", "zones.thermal_relief_gap" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "Zone_TH_Copper_Width", "zones.thermal_relief_copper_width" );
|
|
|
|
|
|
|
|
aCfg->SetPath( "ImportGraphics" );
|
2020-05-08 18:10:47 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, "BoardLayer", "import_graphics.layer" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "InteractivePlacement", "import_graphics.interactive_placement" );
|
|
|
|
ret &= fromLegacyString( aCfg, "LastFile", "import_graphics.last_file" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "LineWidth", "import_graphics.line_width" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "LineWidthUnits", "import_graphics.line_width_units" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PositionUnits", "import_graphics.origin_units" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "PositionX", "import_graphics.origin_x" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "PositionY", "import_graphics.origin_y" );
|
2020-01-13 01:44:19 +00:00
|
|
|
aCfg->SetPath( ".." );
|
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, "NetlistReportFilterMsg", "netlist.report_filter" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "NetlistUpdateFootprints", "netlist.update_footprints" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "NetlistDeleteShortingTracks", "netlist.delete_shorting_tracks" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "NetlistDeleteExtraFootprints", "netlist.delete_extra_footprints" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PlaceFileUnits", "place_file.units" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PlaceFileOpts", "place_file.file_options" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "PlaceFileFormat", "place_file.file_format" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "PlaceFileIncludeBrdEdge", "place_file.include_board_edge" );
|
|
|
|
|
2020-10-21 20:23:28 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, "PrintSinglePage", "plot.all_layers_on_one_page" );
|
2020-05-08 18:10:47 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, "PrintPadsDrillOpt", "plot.pads_drill_mode" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "PlotXFineScaleAdj", "plot.fine_scale_x" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "PlotYFineScaleAdj", "plot.fine_scale_y" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "PSPlotFineWidthAdj", "plot.ps_fine_width_adjust" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, "CheckZonesBeforePlotting", "plot.check_zones_before_plotting" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
ret &= fromLegacyString( aCfg, "FootprintTextShownColumns", "window.footprint_text_shown_columns" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, "FpWizardListWidth", "footprint_wizard_list.width" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, "FpWizardListHeight", "footprint_wizard_list.height" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
migrateWindowConfig( aCfg, "ModViewFrame", "footprint_viewer" );
|
|
|
|
|
2020-05-23 17:14:49 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, "ModViewFrameAutoZoom", "footprint_viewer.auto_zoom" );
|
|
|
|
ret &= fromLegacy<double>( aCfg, "ModViewFrameZoom", "footprint_viewer.zoom" );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
migrateWindowConfig( aCfg, "FootprintWizard", "footprint_wizard" );
|
|
|
|
ret &= fromLegacyString( aCfg, "Fpwizard_auiPerspective", "footprint_wizard.perspective" );
|
|
|
|
|
|
|
|
|
|
|
|
const std::string p = "pcbnew.InteractiveRouter.";
|
|
|
|
|
2021-06-04 03:52:50 +00:00
|
|
|
Set( "tools.pns.meta", nlohmann::json( {
|
|
|
|
{ "filename", "pns" },
|
|
|
|
{ "version", 0 }
|
|
|
|
} ) );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
ret &= fromLegacy<int>( aCfg, p + "Mode", "tools.pns.mode" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, p + "OptimizerEffort", "tools.pns.effort" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "RemoveLoops", "tools.pns.remove_loops" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "SmartPads", "tools.pns.smart_pads" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "ShoveVias", "tools.pns.shove_vias" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "StartDiagonal", "tools.pns.start_diagonal" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, p + "ShoveTimeLimit", "tools.pns.shove_time_limit" );
|
|
|
|
ret &= fromLegacy<int>( aCfg, p + "ShoveIterationLimit", "tools.pns.shove_iteration_limit" );
|
2020-06-14 15:08:47 +00:00
|
|
|
ret &= fromLegacy<int>( aCfg, p + "WalkaroundIterationLimit", "tools.pns.walkaround_iteration_limit" );
|
2020-01-13 01:44:19 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "JumpOverObstacles", "tools.pns.jump_over_obstacles" );
|
2020-06-14 15:08:47 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "SmoothDraggedSegments", "tools.pns.smooth_dragged_segments" );
|
2020-01-13 01:44:19 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "CanViolateDRC", "tools.pns.can_violate_drc" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "SuggestFinish", "tools.pns.suggest_finish" );
|
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "FreeAngleMode", "tools.pns.free_angle_mode" );
|
2021-10-24 02:12:25 +00:00
|
|
|
ret &= fromLegacy<bool>( aCfg, p + "InlineDragEnabled", "editing.track_drag_action" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-12-24 02:55:43 +00:00
|
|
|
// Initialize some new PNS settings to legacy behaviors if coming from legacy
|
2021-06-04 03:52:50 +00:00
|
|
|
Set( "tools.pns.fix_all_segments", false );
|
2020-12-24 02:55:43 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
// Migrate color settings that were stored in the pcbnew config file
|
|
|
|
|
2020-10-15 01:57:36 +00:00
|
|
|
COLOR_SETTINGS* cs = Pgm().GetSettingsManager().GetMigratedColorSettings();
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-08-02 00:52:58 +00:00
|
|
|
auto migrateLegacyColor =
|
|
|
|
[&] ( const std::string& aKey, int aLayerId )
|
|
|
|
{
|
|
|
|
wxString str;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2021-08-02 00:52:58 +00:00
|
|
|
if( aCfg->Read( aKey, &str ) )
|
|
|
|
cs->SetColor( aLayerId, COLOR4D( str ) );
|
|
|
|
};
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
for( int i = 0; i < PCB_LAYER_ID_COUNT; ++i )
|
|
|
|
{
|
|
|
|
wxString layer = LSET::Name( PCB_LAYER_ID( i ) );
|
|
|
|
migrateLegacyColor( "Color4DPCBLayer_" + layer.ToStdString(), PCB_LAYER_ID( i ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
migrateLegacyColor( "Color4DAnchorEx", LAYER_ANCHOR );
|
|
|
|
migrateLegacyColor( "Color4DAuxItems", LAYER_AUX_ITEMS );
|
|
|
|
migrateLegacyColor( "Color4DGrid", LAYER_GRID );
|
|
|
|
migrateLegacyColor( "Color4DNonPlatedEx", LAYER_NON_PLATEDHOLES );
|
|
|
|
migrateLegacyColor( "Color4DPadThruHoleEx", LAYER_PADS_TH );
|
|
|
|
migrateLegacyColor( "Color4DPCBBackground", LAYER_PCB_BACKGROUND );
|
|
|
|
migrateLegacyColor( "Color4DPCBCursor", LAYER_CURSOR );
|
|
|
|
migrateLegacyColor( "Color4DRatsEx", LAYER_RATSNEST );
|
2023-08-04 10:13:20 +00:00
|
|
|
migrateLegacyColor( "Color4DTxtInvisEx", LAYER_HIDDEN_TEXT );
|
2020-01-13 01:44:19 +00:00
|
|
|
migrateLegacyColor( "Color4DViaBBlindEx", LAYER_VIA_BBLIND );
|
|
|
|
migrateLegacyColor( "Color4DViaMicroEx", LAYER_VIA_MICROVIA );
|
|
|
|
migrateLegacyColor( "Color4DViaThruEx", LAYER_VIA_THROUGH );
|
2021-02-22 16:37:43 +00:00
|
|
|
migrateLegacyColor( "Color4DWorksheet", LAYER_DRAWINGSHEET );
|
2022-03-24 14:10:47 +00:00
|
|
|
migrateLegacyColor( "Color4DGrid", LAYER_PAGE_LIMITS );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-03-01 02:49:35 +00:00
|
|
|
Pgm().GetSettingsManager().SaveColorSettings( cs, "board" );
|
|
|
|
|
2021-06-04 03:52:50 +00:00
|
|
|
Set( "appearance.color_theme", cs->GetFilename() );
|
2020-10-15 01:57:36 +00:00
|
|
|
|
2023-04-11 08:53:35 +00:00
|
|
|
double x = 0, y = 0;
|
2020-06-14 15:08:47 +00:00
|
|
|
|
|
|
|
if( aCfg->Read( f + "PcbUserGrid_X", &x ) && aCfg->Read( f + "PcbUserGrid_Y", &y ) )
|
|
|
|
{
|
|
|
|
EDA_UNITS u = static_cast<EDA_UNITS>( aCfg->ReadLong( f + "PcbUserGrid_Unit",
|
|
|
|
static_cast<long>( EDA_UNITS::INCHES ) ) );
|
|
|
|
|
|
|
|
// Convert to internal units
|
2022-09-16 04:38:10 +00:00
|
|
|
x = EDA_UNIT_UTILS::UI::FromUserUnit( pcbIUScale, u, x );
|
|
|
|
y = EDA_UNIT_UTILS::UI::FromUserUnit( pcbIUScale, u, y );
|
2020-06-14 15:08:47 +00:00
|
|
|
|
2022-09-16 04:38:10 +00:00
|
|
|
Set( "window.grid.user_grid_x", EDA_UNIT_UTILS::UI::StringFromValue( pcbIUScale, u, x ) );
|
|
|
|
Set( "window.grid.user_grid_y", EDA_UNIT_UTILS::UI::StringFromValue( pcbIUScale, u, y ) );
|
2020-06-14 15:08:47 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
// Footprint editor settings were stored in pcbnew config file. Migrate them here.
|
2023-04-18 20:40:25 +00:00
|
|
|
auto fpedit = Pgm().GetSettingsManager().GetAppSettings<FOOTPRINT_EDITOR_SETTINGS>();
|
2020-01-13 01:44:19 +00:00
|
|
|
fpedit->MigrateFromLegacy( aCfg );
|
|
|
|
fpedit->Load();
|
|
|
|
|
|
|
|
// Same with 3D viewer
|
2023-04-18 20:40:25 +00:00
|
|
|
auto viewer3d = Pgm().GetSettingsManager().GetAppSettings<EDA_3D_VIEWER_SETTINGS>();
|
2020-01-13 01:44:19 +00:00
|
|
|
viewer3d->MigrateFromLegacy( aCfg );
|
|
|
|
viewer3d->Load();
|
|
|
|
|
|
|
|
return ret;
|
2020-05-05 19:12:56 +00:00
|
|
|
}
|
2021-02-06 01:01:50 +00:00
|
|
|
|
|
|
|
//namespace py = pybind11;
|
|
|
|
//
|
|
|
|
//PYBIND11_MODULE( pcbnew, m )
|
|
|
|
//{
|
|
|
|
// py::class_<PCBNEW_SETTINGS>( m, "settings" )
|
|
|
|
// .def_readwrite( "Use45DegreeGraphicSegments", &PCBNEW_SETTINGS::m_Use45DegreeGraphicSegments )
|
|
|
|
// .def_readwrite( "FlipLeftRight", &PCBNEW_SETTINGS::m_FlipLeftRight )
|
|
|
|
// .def_readwrite( "AddUnlockedPads", &PCBNEW_SETTINGS::m_AddUnlockedPads)
|
|
|
|
// .def_readwrite( "UsePolarCoords", &PCBNEW_SETTINGS::m_PolarCoords)
|
|
|
|
// .def_readwrite( "RotationAngle", &PCBNEW_SETTINGS::m_RotationAngle)
|
|
|
|
// .def_readwrite( "ShowPageLimits", &PCBNEW_SETTINGS::m_ShowPageLimits)
|
|
|
|
// ;
|
|
|
|
//}
|