KiCad PCB EDA Suite
Loading...
Searching...
No Matches
footprint_editor_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 (C) 2020 Jon Evans <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
22
25#include <common.h>
26#include <layer_ids.h>
27#include <lset.h>
28#include <pgm_base.h>
29#include <eda_text.h>
30#include <pcb_dimension.h>
33#include <settings/parameters.h>
36#include <base_units.h>
37
38#include <wx/config.h>
39#include <wx/log.h>
40
41
43const int fpEditSchemaVersion = 5;
44
45
48 m_DesignSettings( nullptr, "fpedit.settings" ),
50 m_Display(),
51 m_UserGrid(),
52 m_PolarCoords( false ),
53 m_DisplayInvertXAxis( false ),
54 m_DisplayInvertYAxis( false ),
57 m_AutoConstraints( true ),
59 m_LibWidth( 250 ),
61{
63
66 m_MagneticItems.graphics = true;
67 m_MagneticItems.allLayers = false;
68
69 m_AuiPanels.appearance_panel_tab = 0;
70 m_AuiPanels.right_panel_width = -1;
71 m_AuiPanels.show_layer_manager = true;
72
73 m_params.emplace_back( new PARAM<int>( "window.lib_width",
74 &m_LibWidth, 250 ) );
75
76 m_params.emplace_back( new PARAM<bool>( "aui.show_layer_manager",
77 &m_AuiPanels.show_layer_manager, true ) );
78
79 m_params.emplace_back( new PARAM<int>( "aui.right_panel_width",
80 &m_AuiPanels.right_panel_width, -1 ) );
81
82 m_params.emplace_back( new PARAM<int>( "aui.appearance_panel_tab",
83 &m_AuiPanels.appearance_panel_tab, 0, 0, 2 ) );
84
85 m_params.emplace_back( new PARAM<int>( "aui.properties_panel_width",
86 &m_AuiPanels.properties_panel_width, -1 ) );
87
88 m_params.emplace_back( new PARAM<float>( "aui.properties_splitter_proportion",
89 &m_AuiPanels.properties_splitter, 0.5f ) );
90
91 m_params.emplace_back( new PARAM<bool>( "aui.show_properties",
92 &m_AuiPanels.show_properties, true ) );
93
94 m_params.emplace_back( new PARAM<int>( "library.sort_mode",
95 &m_LibrarySortMode, 0 ) );
96
97 m_params.emplace_back( new PARAM<wxString>( "system.last_import_export_path",
98 &m_LastExportPath, "" ) );
99
100 m_params.emplace_back( new PARAM<bool>( "pcb_display.graphics_fill",
101 &m_ViewersDisplay.m_DisplayGraphicsFill, true ) );
102
103 m_params.emplace_back( new PARAM<bool>( "pcb_display.text_fill",
104 &m_ViewersDisplay.m_DisplayTextFill, true ) );
105
106 m_params.emplace_back( new PARAM<bool>( "pcb_display.pad_fill",
107 &m_ViewersDisplay.m_DisplayPadFill, true ) );
108
109 m_params.emplace_back( new PARAM<bool>( "pcb_display.pad_numbers",
110 &m_ViewersDisplay.m_DisplayPadNumbers, true ) );
111
112 m_params.emplace_back( new PARAM<int>( "editing.magnetic_pads",
113 reinterpret_cast<int*>( &m_MagneticItems.pads ),
114 static_cast<int>( MAGNETIC_OPTIONS::CAPTURE_ALWAYS ) ) );
115
116 m_params.emplace_back( new PARAM<bool>( "editing.magnetic_graphics",
117 &m_MagneticItems.graphics, true ) );
118
119 m_params.emplace_back( new PARAM<bool>( "editing.magnetic_all_layers",
120 &m_MagneticItems.allLayers, false ) );
121
123
124 m_params.emplace_back( new PARAM_MAP<int>( "lib_field_editor.field_widths",
125 &m_LibFieldEditor.field_widths, {} ) );
126
127 m_params.emplace_back( new PARAM<int>( "lib_field_editor.selection_mode",
128 &m_LibFieldEditor.selection_mode, 0 ) );
129
130 m_params.emplace_back( new PARAM<int>( "lib_field_editor.sash_pos",
131 &m_LibFieldEditor.sash_pos, 400 ) );
132
133 m_params.emplace_back( new PARAM<int>( "lib_field_editor.variant_sash_pos",
134 &m_LibFieldEditor.variant_sash_pos, 500 ) );
135
136 m_params.emplace_back( new PARAM<bool>( "lib_field_editor.sidebar_collapsed",
137 &m_LibFieldEditor.sidebar_collapsed, false ) );
138
139 m_params.emplace_back( new PARAM<wxString>( "lib_field_editor.bom_export_filename",
140 &m_LibFieldEditorBom.m_BomExportFileName, "${PROJECTNAME}.csv" ) );
141
142 m_params.emplace_back( new PARAM<BOM_PRESET>( "lib_field_editor.bom_settings",
143 &m_LibFieldEditorBom.m_BomSettings, {} ) );
144
145 m_params.emplace_back( new PARAM_LIST<BOM_PRESET>( "lib_field_editor.bom_presets",
146 &m_LibFieldEditorBom.m_BomPresets, {} ) );
147
148 m_params.emplace_back( new PARAM<BOM_FMT_PRESET>( "lib_field_editor.bom_fmt_settings",
149 &m_LibFieldEditorBom.m_BomFmtSettings, BOM_FMT_PRESET::CSV() ) );
150
151 m_params.emplace_back( new PARAM_LIST<BOM_FMT_PRESET>( "lib_field_editor.bom_fmt_presets",
152 &m_LibFieldEditorBom.m_BomFmtPresets, {} ) );
153
154 m_params.emplace_back( new PARAM<bool>( "editing.polar_coords",
155 &m_PolarCoords, false ) );
156
157 m_params.emplace_back( new PARAM<bool>( "origin_invert_x_axis",
158 &m_DisplayInvertXAxis, false ) );
159
160 m_params.emplace_back( new PARAM<bool>( "origin_invert_y_axis",
161 &m_DisplayInvertYAxis, false ) );
162
163 m_params.emplace_back( new PARAM_LAMBDA<int>( "editing.rotation_angle",
164 [this] () -> int
165 {
166 return m_RotationAngle.AsTenthsOfADegree();
167 },
168 [this] ( int aVal )
169 {
170 if( aVal )
172 },
173 900 ) );
174
175 m_params.emplace_back( new PARAM<int>( "editing.fp_angle_snap_mode",
176 reinterpret_cast<int*>( &m_AngleSnapMode ),
177 static_cast<int>( LEADER_MODE::DEG45 ) ) );
178
179 m_params.emplace_back( new PARAM<bool>( "editing.auto_constraints", &m_AutoConstraints, true ) );
180
181 m_params.emplace_back( new PARAM_LAYER_PRESET( "pcb_display.layer_presets", &m_LayerPresets ) );
182
183 m_params.emplace_back( new PARAM<wxString>( "pcb_display.active_layer_preset",
184 &m_ActiveLayerPreset, "" ) );
185
186 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "tabs.open",
187 [&]() -> nlohmann::json
188 {
189 nlohmann::json js = nlohmann::json::array();
190
191 for( const OPEN_TAB& tab : m_OpenTabs )
192 {
193 js.push_back( nlohmann::json( { { "lib", tab.m_lib.ToUTF8() },
194 { "fp_name", tab.m_fpName.ToUTF8() },
195 { "preview", tab.m_preview } } ) );
196 }
197
198 return js;
199 },
200 [&]( const nlohmann::json& aObj )
201 {
202 m_OpenTabs.clear();
203
204 if( !aObj.is_array() )
205 return;
206
207 for( const nlohmann::json& entry : aObj )
208 {
209 if( !entry.is_object() || !entry.contains( "lib" ) || !entry.contains( "fp_name" ) )
210 continue;
211
212 OPEN_TAB tab;
213 tab.m_lib = entry.at( "lib" ).get<wxString>();
214 tab.m_fpName = entry.at( "fp_name" ).get<wxString>();
215
216 // Older configs predate the preview flag and default to a permanent tab.
217 if( entry.contains( "preview" ) )
218 tab.m_preview = entry.at( "preview" ).get<bool>();
219
220 m_OpenTabs.push_back( std::move( tab ) );
221 }
222 },
223 nlohmann::json::array() ) );
224
225 m_params.emplace_back( new PARAM<wxString>( "tabs.active",
226 &m_ActiveTab, "" ) );
227
228 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>(
229 "design_settings.default_footprint_text_items",
230 [&] () -> nlohmann::json
231 {
232 nlohmann::json js = nlohmann::json::array();
233
234 for( const TEXT_ITEM_INFO& item : m_DesignSettings.m_DefaultFPTextItems )
235 {
236 js.push_back( nlohmann::json( { item.m_Text.ToUTF8(),
237 item.m_Visible,
238 LSET::Name( item.m_Layer ) } ) );
239 }
240
241 return js;
242 },
243 [&] ( const nlohmann::json& aObj )
244 {
245 m_DesignSettings.m_DefaultFPTextItems.clear();
246
247 if( !aObj.is_array() )
248 return;
249
250 for( const nlohmann::json& entry : aObj )
251 {
252 if( entry.empty() || !entry.is_array() )
253 continue;
254
255 TEXT_ITEM_INFO textInfo( wxT( "" ), true, F_SilkS );
256
257 textInfo.m_Text = entry.at(0).get<wxString>();
258 textInfo.m_Visible = entry.at(1).get<bool>();
259 wxString layerName = entry.at(2).get<wxString>();
260 int candidateLayer = LSET::NameToLayer( layerName );
261 textInfo.m_Layer = candidateLayer >= 0
262 ? static_cast<PCB_LAYER_ID>(candidateLayer)
263 : F_SilkS;
264
265 m_DesignSettings.m_DefaultFPTextItems.push_back( std::move( textInfo ) );
266 }
267 },
268 nlohmann::json::array( {
269 { "REF**", true, LSET::Name( F_SilkS ) },
270 { "", true, LSET::Name( F_Fab ) },
271 { "${REFERENCE}", true, LSET::Name( F_Fab ) }
272 } ) ) );
273
274 m_params.emplace_back( new PARAM_MAP<wxString>( "design_settings.default_footprint_layer_names",
275 &m_DesignSettings.m_UserLayerNames, {} ) );
276
277 m_params.emplace_back( new PARAM_LAMBDA<int>( "design_settings.user_layer_count",
278 [this]() { return m_DesignSettings.GetUserDefinedLayerCount(); },
279 [this]( int aCount ) { m_DesignSettings.SetUserDefinedLayerCount( aCount ); },
280 4 ) );
281
282 int minTextSize = pcbIUScale.mmToIU( TEXT_MIN_SIZE_MM );
283 int maxTextSize = pcbIUScale.mmToIU( TEXT_MAX_SIZE_MM );
284 int minStroke = 1;
285 int maxStroke = pcbIUScale.mmToIU( 100 );
286
287 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_line_width",
288 &m_DesignSettings.m_LineThickness[ LAYER_CLASS_SILK ],
289 pcbIUScale.mmToIU( DEFAULT_SILK_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
290
291 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_text_size_h",
292 &m_DesignSettings.m_TextSize[ LAYER_CLASS_SILK ].x,
293 pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
294
295 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_text_size_v",
296 &m_DesignSettings.m_TextSize[ LAYER_CLASS_SILK ].y,
297 pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
298
299 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_text_thickness",
300 &m_DesignSettings.m_TextThickness[ LAYER_CLASS_SILK ],
301 pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_WIDTH ), 1, maxTextSize, pcbIUScale.MM_PER_IU ) );
302
303 m_params.emplace_back( new PARAM<bool>( "design_settings.silk_text_italic",
304 &m_DesignSettings.m_TextItalic[ LAYER_CLASS_SILK ], false ) );
305
306 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_line_width",
307 &m_DesignSettings.m_LineThickness[ LAYER_CLASS_COPPER ],
308 pcbIUScale.mmToIU( DEFAULT_COPPER_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
309
310 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_text_size_h",
311 &m_DesignSettings.m_TextSize[ LAYER_CLASS_COPPER ].x,
312 pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
313
314 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_text_size_v",
315 &m_DesignSettings.m_TextSize[ LAYER_CLASS_COPPER ].y,
316 pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
317
318 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_text_thickness",
319 &m_DesignSettings.m_TextThickness[ LAYER_CLASS_COPPER ],
320 pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
321
322 m_params.emplace_back( new PARAM<bool>( "design_settings.copper_text_italic",
323 &m_DesignSettings.m_TextItalic[ LAYER_CLASS_COPPER ], false ) );
324
325 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.edge_line_width",
326 &m_DesignSettings.m_LineThickness[ LAYER_CLASS_EDGES ],
327 pcbIUScale.mmToIU( DEFAULT_EDGE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
328
329 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.courtyard_line_width",
330 &m_DesignSettings.m_LineThickness[ LAYER_CLASS_COURTYARD ],
331 pcbIUScale.mmToIU( DEFAULT_COURTYARD_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
332
333 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_line_width",
334 &m_DesignSettings.m_LineThickness[ LAYER_CLASS_FAB ],
335 pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
336
337 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_text_size_h",
338 &m_DesignSettings.m_TextSize[ LAYER_CLASS_FAB ].x,
339 pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
340
341 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_text_size_v",
342 &m_DesignSettings.m_TextSize[ LAYER_CLASS_FAB ].y,
343 pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
344
345 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_text_thickness",
346 &m_DesignSettings.m_TextThickness[ LAYER_CLASS_FAB ],
347 pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ), 1, maxTextSize, pcbIUScale.MM_PER_IU ) );
348
349 m_params.emplace_back( new PARAM<bool>( "design_settings.fab_text_italic",
350 &m_DesignSettings.m_TextItalic[ LAYER_CLASS_FAB ], false ) );
351
352 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_line_width",
353 &m_DesignSettings.m_LineThickness[ LAYER_CLASS_OTHERS ],
354 pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
355
356 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_text_size_h",
357 &m_DesignSettings.m_TextSize[ LAYER_CLASS_OTHERS ].x,
358 pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
359
360 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_text_size_v",
361 &m_DesignSettings.m_TextSize[ LAYER_CLASS_OTHERS ].y,
362 pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
363
364 m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_text_thickness",
365 &m_DesignSettings.m_TextThickness[ LAYER_CLASS_OTHERS ],
366 pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ), 1, maxTextSize, pcbIUScale.MM_PER_IU ) );
367
368 m_params.emplace_back( new PARAM<bool>( "design_settings.others_text_italic",
369 &m_DesignSettings.m_TextItalic[ LAYER_CLASS_OTHERS ], false ) );
370
371
372 // ---------------------------------------------------------------------------------------------
373 // Dimension settings
374
375 m_params.emplace_back( new PARAM_ENUM<DIM_UNITS_MODE>( "design_settings.dimensions.units",
378
379 m_params.emplace_back( new PARAM_ENUM<DIM_PRECISION>( "design_settings.dimensions.precision",
381
382 m_params.emplace_back( new PARAM_ENUM<DIM_UNITS_FORMAT>( "design_settings.dimensions.units_format",
385
386 m_params.emplace_back( new PARAM<bool>( "design_settings.dimensions.suppress_zeroes",
387 &m_DesignSettings.m_DimensionSuppressZeroes, true ) );
388
389 // NOTE: excluding DIM_TEXT_POSITION::MANUAL from the valid range here
390 m_params.emplace_back( new PARAM_ENUM<DIM_TEXT_POSITION>( "design_settings.dimensions.text_position",
393
394 m_params.emplace_back( new PARAM<bool>( "design_settings.dimensions.keep_text_aligned",
395 &m_DesignSettings.m_DimensionKeepTextAligned, true ) );
396
397 m_params.emplace_back( new PARAM<int>( "design_settings.dimensions.arrow_length",
398 &m_DesignSettings.m_DimensionArrowLength,
400
401 m_params.emplace_back( new PARAM<int>( "design_settings.dimensions.extension_offset",
402 &m_DesignSettings.m_DimensionExtensionOffset,
404
405 // ---------------------------------------------------------------------------------------------
406
407 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "editing.selection_filter",
408 [&]() -> nlohmann::json
409 {
410 nlohmann::json ret;
411
412 ret["lockedItems"] = m_SelectionFilter.lockedItems;
413 ret["footprints"] = m_SelectionFilter.footprints;
414 ret["text"] = m_SelectionFilter.text;
415 ret["tracks"] = m_SelectionFilter.tracks;
416 ret["vias"] = m_SelectionFilter.vias;
417 ret["pads"] = m_SelectionFilter.pads;
418 ret["graphics"] = m_SelectionFilter.graphics;
419 ret["zones"] = m_SelectionFilter.zones;
420 ret["keepouts"] = m_SelectionFilter.keepouts;
421 ret["dimensions"] = m_SelectionFilter.dimensions;
422 ret["points"] = m_SelectionFilter.points;
423 ret["otherItems"] = m_SelectionFilter.otherItems;
424
425 return ret;
426 },
427 [&]( const nlohmann::json& aVal )
428 {
429 if( aVal.empty() || !aVal.is_object() )
430 return;
431
432 SetIfPresent( aVal, "lockedItems", m_SelectionFilter.lockedItems );
433 SetIfPresent( aVal, "footprints", m_SelectionFilter.footprints );
434 SetIfPresent( aVal, "text", m_SelectionFilter.text );
435 SetIfPresent( aVal, "tracks", m_SelectionFilter.tracks );
436 SetIfPresent( aVal, "vias", m_SelectionFilter.vias );
437 SetIfPresent( aVal, "pads", m_SelectionFilter.pads );
438 SetIfPresent( aVal, "graphics", m_SelectionFilter.graphics );
439 SetIfPresent( aVal, "zones", m_SelectionFilter.zones );
440 SetIfPresent( aVal, "keepouts", m_SelectionFilter.keepouts );
441 SetIfPresent( aVal, "dimensions", m_SelectionFilter.dimensions );
442 SetIfPresent( aVal, "points", m_SelectionFilter.points );
443 SetIfPresent( aVal, "otherItems", m_SelectionFilter.otherItems );
444 },
445 {
446 { "lockedItems", false },
447 { "footprints", true },
448 { "text", true },
449 { "tracks", true },
450 { "vias", true },
451 { "pads", true },
452 { "graphics", true },
453 { "zones", true },
454 { "keepouts", true },
455 { "dimensions", true },
456 { "points", true },
457 { "otherItems", true }
458 } ) );
459
461
462 registerMigration( 1, 2,
463 [&]() -> bool
464 {
465 // This is actually a migration for APP_SETTINGS_BASE::m_LibTree
466 return migrateLibTreeWidth();
467 } );
468
472}
473
474
476{
477 bool ret = APP_SETTINGS_BASE::MigrateFromLegacy( aCfg );
478
479 //
480 // NOTE: there's no value in line-wrapping these; it just makes the table unreadable.
481 //
482 ret &= fromLegacy<int>( aCfg, "ModeditLibWidth", "window.lib_width" );
483 ret &= fromLegacyString( aCfg, "import_last_path", "system.last_import_export_path" );
484
485 ret &= fromLegacy<int>( aCfg, "FpEditorMagneticPads", "editing.magnetic_pads" );
486 ret &= fromLegacy<bool>( aCfg, "FpEditorDisplayPolarCoords", "editing.polar_coords" );
487 ret &= fromLegacy<int>( aCfg, "FpEditorUse45DegreeGraphicSegments", "editing.use_45_degree_graphic_segments" );
488
489 ret &= fromLegacy<bool>( aCfg, "FpEditorGraphicLinesDisplayMode", "pcb_display.graphic_items_fill" );
490 ret &= fromLegacy<bool>( aCfg, "FpEditorPadDisplayMode", "pcb_display.pad_fill" );
491 ret &= fromLegacy<bool>( aCfg, "FpEditorTextsDisplayMode", "pcb_display.footprint_text" );
492
493 ret &= fromLegacy<double>( aCfg, "FpEditorSilkLineWidth", "design_settings.silk_line_width" );
494 ret &= fromLegacy<double>( aCfg, "FpEditorSilkTextSizeH", "design_settings.silk_text_size_h" );
495 ret &= fromLegacy<double>( aCfg, "FpEditorSilkTextSizeV", "design_settings.silk_text_size_v" );
496 ret &= fromLegacy<double>( aCfg, "FpEditorSilkTextThickness", "design_settings.silk_text_thickness" );
497 ret &= fromLegacy<bool>( aCfg, "FpEditorSilkTextItalic", "design_settings.silk_text_italic" );
498 ret &= fromLegacy<double>( aCfg, "FpEditorCopperLineWidth", "design_settings.copper_line_width" );
499 ret &= fromLegacy<double>( aCfg, "FpEditorCopperTextSizeH", "design_settings.copper_text_size_h" );
500 ret &= fromLegacy<double>( aCfg, "FpEditorCopperTextSizeV", "design_settings.copper_text_size_v" );
501 ret &= fromLegacy<double>( aCfg, "FpEditorCopperTextThickness", "design_settings.copper_text_thickness" );
502 ret &= fromLegacy<bool>( aCfg, "FpEditorCopperTextItalic", "design_settings.copper_text_italic" );
503 ret &= fromLegacy<double>( aCfg, "FpEditorEdgeCutLineWidth", "design_settings.edge_line_width" );
504 ret &= fromLegacy<double>( aCfg, "FpEditorCourtyardLineWidth", "design_settings.courtyard_line_width" );
505 ret &= fromLegacy<double>( aCfg, "FpEditorOthersLineWidth", "design_settings.others_line_width" );
506 ret &= fromLegacy<double>( aCfg, "FpEditorOthersTextSizeH", "design_settings.others_text_size_h" );
507 ret &= fromLegacy<double>( aCfg, "FpEditorOthersTextSizeV", "design_settings.others_text_size_v" );
508 ret &= fromLegacy<double>( aCfg, "FpEditorOthersTextThickness", "design_settings.others_text_thickness" );
509 ret &= fromLegacy<bool>( aCfg, "FpEditorOthersTextItalic", "design_settings.others_text_italic" );
510
511 nlohmann::json textItems = nlohmann::json::array( {
512 { "REF**", true, F_SilkS },
513 { "", true, F_Fab }
514 } );
515
516 Set( "design_settings.default_footprint_text_items", std::move( textItems ) );
517
518 ret &= fromLegacyString( aCfg, "FpEditorRefDefaultText", "design_settings.default_footprint_text_items.0.0" );
519 ret &= fromLegacy<bool>( aCfg, "FpEditorRefDefaultVisibility", "design_settings.default_footprint_text_items.0.1" );
520 ret &= fromLegacy<int>( aCfg, "FpEditorRefDefaultLayer", "design_settings.default_footprint_text_items.0.2" );
521 ret &= fromLegacyString( aCfg, "FpEditorValueDefaultText", "design_settings.default_footprint_text_items.1.0" );
522 ret &= fromLegacy<bool>( aCfg, "FpEditorValueDefaultVisibility", "design_settings.default_footprint_text_items.1.1" );
523 ret &= fromLegacy<int>( aCfg, "FpEditorValueDefaultLayer", "design_settings.default_footprint_text_items.1.2" );
524
525
526 std::string f = "ModEdit";
527
528 // Migrate color settings that were stored in the pcbnew config file
529 // We create a copy of the user scheme for the footprint editor context
530
532 COLOR_SETTINGS* cs = manager.AddNewColorSettings( "user_footprints" );
533
534 cs->SetName( wxT( "User (Footprints)" ) );
535 manager.Save( cs );
536
537 auto migrateLegacyColor = [&] ( const std::string& aKey, int aLayerId )
538 {
539 wxString str;
540
541 if( aCfg->Read( aKey, &str ) )
542 cs->SetColor( aLayerId, COLOR4D( str ) );
543 };
544
545 for( int i = 0; i < PCB_LAYER_ID_COUNT; ++i )
546 {
547 wxString layer = LSET::Name( PCB_LAYER_ID( i ) );
548 migrateLegacyColor( f + "Color4DPCBLayer_" + layer.ToStdString(), PCB_LAYER_ID( i ) );
549 }
550
551 migrateLegacyColor( f + "Color4DAnchorEx", LAYER_ANCHOR );
552 migrateLegacyColor( f + "Color4DAuxItems", LAYER_AUX_ITEMS );
553 migrateLegacyColor( f + "Color4DGrid", LAYER_GRID );
554 migrateLegacyColor( f + "Color4DNonPlatedEx", LAYER_NON_PLATEDHOLES );
555 migrateLegacyColor( f + "Color4DPCBBackground", LAYER_PCB_BACKGROUND );
556 migrateLegacyColor( f + "Color4DPCBCursor", LAYER_CURSOR );
557 migrateLegacyColor( f + "Color4DRatsEx", LAYER_RATSNEST );
558 migrateLegacyColor( f + "Color4DViaBBlindEx", LAYER_VIA_BLIND );
559 migrateLegacyColor( f + "Color4DViaBBlindEx", LAYER_VIA_BURIED );
560 migrateLegacyColor( f + "Color4DViaMicroEx", LAYER_VIA_MICROVIA );
561 migrateLegacyColor( f + "Color4DViaThruEx", LAYER_VIA_THROUGH );
562 migrateLegacyColor( f + "Color4DWorksheet", LAYER_DRAWINGSHEET );
563
564 manager.SaveColorSettings( cs, "board" );
565
566 ( *m_internals )[m_internals->PointerFromString( "appearance.color_theme" )] = "user_footprints";
567
568 double x = 0, y = 0;
569 f = "ModEditFrame";
570
571 if( aCfg->Read( f + "PcbUserGrid_X", &x ) && aCfg->Read( f + "PcbUserGrid_Y", &y ) )
572 {
573 EDA_UNITS u = static_cast<EDA_UNITS>( aCfg->ReadLong( f + "PcbUserGrid_Unit",
574 static_cast<long>( EDA_UNITS::INCH ) ) );
575
576 // Convert to internal units
579
580 Set( "window.grid.user_grid_x", EDA_UNIT_UTILS::UI::StringFromValue( pcbIUScale, u, x ) );
581 Set( "window.grid.user_grid_y", EDA_UNIT_UTILS::UI::StringFromValue( pcbIUScale, u, y ) );
582 }
583
584 return ret;
585}
586
587
589{
596
597 if( !m_manager )
598 {
599 wxLogTrace( traceSettings,
600 wxT( "Error: FOOTPRINT_EDITOR_SETTINGS migration cannot run unmanaged!" ) );
601 return false;
602 }
603
604 std::string theme_ptr( "appearance.color_theme" );
605
606 if( !Contains( theme_ptr ) )
607 return true;
608
609 wxString selected = At( theme_ptr ).get<wxString>();
610 wxString search = selected + wxT( "_footprints" );
611
612 for( COLOR_SETTINGS* settings : Pgm().GetSettingsManager().GetColorSettingsList() )
613 {
614 if( settings->GetFilename() == search )
615 {
616 wxLogTrace( traceSettings, wxT( "Updating footprint editor theme from %s to %s" ),
617 selected, search );
618 Set( theme_ptr, search );
619 return true;
620 }
621 }
622
623 return true;
624}
625
626
632{
633 auto p( "/pcb_display/layer_presets"_json_pointer );
634
635 if( !m_internals->contains( p ) || !m_internals->at( p ).is_array() )
636 return true;
637
638 nlohmann::json& presets = m_internals->at( p );
639
640 for( nlohmann::json& entry : presets )
642
643 return true;
644}
645
646
651{
652 auto p( "/pcb_display/layer_presets"_json_pointer );
653
654 if( !m_internals->contains( p ) || !m_internals->at( p ).is_array() )
655 return true;
656
657 nlohmann::json& presets = m_internals->at( p );
658
659 for( nlohmann::json& entry : presets )
661
662 return true;
663}
664
665
670{
671 auto p( "/design_settings/default_footprint_text_items"_json_pointer );
672
673 if( !m_internals->contains( p ) || !m_internals->at( p ).is_array() )
674 return true;
675
676 nlohmann::json& defaults = m_internals->at( p );
677
678 bool reset = false;
679
680 for( nlohmann::json& entry : defaults )
681 {
682 TEXT_ITEM_INFO textInfo( wxT( "" ), true, F_SilkS );
683
684 textInfo.m_Text = entry.at(0).get<wxString>();
685 textInfo.m_Visible = entry.at(1).get<bool>();
686 textInfo.m_Layer = static_cast<PCB_LAYER_ID>( entry.at(2).get<int>() );
687
688 if( textInfo.m_Layer == Rescue || textInfo.m_Layer >= User_5 )
689 {
690 // KiCad pre-9.0 nightlies would write buggy preferences out with invalid layers.
691 // If we detect that, reset to defaults
692 reset = true;
693 }
694 else
695 {
696 // Coming from 8.0 or earlier, just migrate to named layers
697 entry.at(2) = LSET::Name( textInfo.m_Layer );
698 }
699 }
700
701 if( reset )
702 {
703 defaults = nlohmann::json::array( {
704 { "REF**", true, LSET::Name( F_SilkS ) },
705 { "", true, LSET::Name( F_Fab ) },
706 { "${REFERENCE}", true, LSET::Name( F_Fab ) }
707 } );
708 }
709
710 return true;
711}
ARC_EDIT_MODE
Settings for arc editing.
@ KEEP_CENTER_ADJUST_ANGLE_RADIUS
When editing endpoints, the angle and radius are adjusted.
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
@ LAYER_CLASS_OTHERS
@ LAYER_CLASS_FAB
@ LAYER_CLASS_COURTYARD
@ LAYER_CLASS_SILK
@ LAYER_CLASS_COPPER
@ LAYER_CLASS_EDGES
#define DEFAULT_TEXT_WIDTH
#define DEFAULT_COPPER_TEXT_WIDTH
#define DEFAULT_DIMENSION_EXTENSION_OFFSET
#define DEFAULT_DIMENSION_ARROW_LENGTH
#define DEFAULT_SILK_TEXT_SIZE
#define DEFAULT_COPPER_LINE_WIDTH
#define DEFAULT_SILK_LINE_WIDTH
#define DEFAULT_SILK_TEXT_WIDTH
#define DEFAULT_EDGE_WIDTH
#define DEFAULT_COPPER_TEXT_SIZE
#define DEFAULT_LINE_WIDTH
#define DEFAULT_COURTYARD_WIDTH
virtual bool MigrateFromLegacy(wxConfigBase *aCfg) override
Migrates from wxConfig to JSON-based configuration.
bool migrateLibTreeWidth()
Migrate the library tree width setting from a single column (Item) to multi-column.
Color settings are a bit different than most of the settings objects in that there can be more than o...
void SetName(const wxString &aName)
void SetColor(int aLayer, const COLOR4D &aColor)
bool migrateSchema3To4()
Schema version 4: move layer presets to use named render layers.
BOARD_DESIGN_SETTINGS m_DesignSettings
Only some of these settings are actually used for footprint editing.
bool migrateSchema2To3()
Schema version 2: Bump for KiCad 9 layer numbering changes Migrate layer presets to use new enum valu...
wxString m_ActiveTab
Tab key ("lib:fpName") of the tab that was active when the editor last closed.
std::vector< LAYER_PRESET > m_LayerPresets
FIELDS_TABLE_SETTINGS m_LibFieldEditor
bool migrateSchema4To5()
Schema version 5: move text defaults to used named layers.
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
FIELDS_TABLE_BOM_SETTINGS m_LibFieldEditorBom
SNAP_INFERENCE_SETTINGS m_SnapInference
PCB_SELECTION_FILTER_OPTIONS m_SelectionFilter
bool fromLegacyString(wxConfigBase *aConfig, const std::string &aKey, const std::string &aDest)
Translates a legacy wxConfig string value to a given JSON pointer value.
bool fromLegacy(wxConfigBase *aConfig, const std::string &aKey, const std::string &aDest)
Translates a legacy wxConfig value to a given JSON pointer value.
void Set(const std::string &aPath, ValueType aVal)
Stores a value into the JSON document Will throw an exception if ValueType isn't something that the l...
SETTINGS_MANAGER * m_manager
A pointer to the settings manager managing this file (may be null)
bool Contains(const std::string &aPath) const
static bool SetIfPresent(const nlohmann::json &aObj, const std::string &aPath, wxString &aTarget)
Sets the given string if the given key/path is present.
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
void registerMigration(int aOldSchemaVersion, int aNewSchemaVersion, std::function< bool(void)> aMigrator)
Registers a migration from one schema version to another.
nlohmann::json & At(const std::string &aPath)
Wrappers for the underlying JSON API so that most consumers don't need json.hpp All of these function...
std::unique_ptr< JSON_SETTINGS_INTERNALS > m_internals
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
static int NameToLayer(wxString &aName)
Return the layer number from a layer name.
Definition lset.cpp:113
static wxString Name(PCB_LAYER_ID aLayerId)
Return the fixed name association with aLayerId.
Definition lset.cpp:184
Stores an enum as an integer.
Definition parameters.h:232
Like a normal param, but with custom getter and setter functions.
Definition parameters.h:299
static void MigrateToV9Layers(nlohmann::json &aJson)
static void MigrateToNamedRenderLayers(nlohmann::json &aJson)
Represents a map of <std::string, Value>.
Definition parameters.h:752
Represents a parameter that has a scaling factor between the value in the file and the value used int...
Definition parameters.h:410
PCB_VIEWERS_SETTINGS_BASE(const std::string &aFilename, int aSchemaVersion)
VIEWERS_DISPLAY_OPTIONS m_ViewersDisplay
void addMatchPropertiesParam()
Opt-in.
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition pgm_base.h:123
void SaveColorSettings(COLOR_SETTINGS *aSettings, const std::string &aNamespace="")
Safely save a COLOR_SETTINGS to disk, preserving any changes outside the given namespace.
COLOR_SETTINGS * AddNewColorSettings(const wxString &aFilename)
Register a new color settings object with the given filename.
#define DEFAULT_TEXT_SIZE
Ratio of the font height to the baseline of the text above the wire.
static constexpr EDA_ANGLE ANGLE_90
Definition eda_angle.h:424
@ TENTHS_OF_A_DEGREE_T
Definition eda_angle.h:30
#define TEXT_MIN_SIZE_MM
Minimum text size (1 micron).
Definition eda_text.h:61
#define TEXT_MAX_SIZE_MM
Maximum text size in mm (~10 inches)
Definition eda_text.h:62
EDA_UNITS
Definition eda_units.h:44
const int fpEditSchemaVersion
! Update the schema version whenever a migration is required
LEADER_MODE
The kind of the leader line.
@ DEG45
45 Degree only
#define traceSettings
@ LAYER_GRID
Definition layer_ids.h:250
@ LAYER_NON_PLATEDHOLES
Draw usual through hole vias.
Definition layer_ids.h:235
@ LAYER_DRAWINGSHEET
Sheet frame and title block.
Definition layer_ids.h:274
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition layer_ids.h:277
@ LAYER_CURSOR
PCB cursor.
Definition layer_ids.h:278
@ LAYER_AUX_ITEMS
Auxiliary items (guides, rule, etc).
Definition layer_ids.h:279
@ LAYER_RATSNEST
Definition layer_ids.h:249
@ LAYER_ANCHOR
Anchor of items having an anchor point (texts, footprints).
Definition layer_ids.h:244
@ LAYER_VIA_BURIED
Draw blind vias.
Definition layer_ids.h:231
@ LAYER_VIA_BLIND
Draw micro vias.
Definition layer_ids.h:230
@ LAYER_VIA_MICROVIA
Definition layer_ids.h:229
@ LAYER_VIA_THROUGH
Draw buried vias.
Definition layer_ids.h:232
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
@ User_5
Definition layer_ids.h:124
@ F_Fab
Definition layer_ids.h:115
@ F_SilkS
Definition layer_ids.h:96
@ Rescue
Definition layer_ids.h:117
@ PCB_LAYER_ID_COUNT
Definition layer_ids.h:167
KICOMMON_API double FromUserUnit(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnit, double aValue)
Return in internal units the value aValue given in a real unit such as "in", "mm",...
KICOMMON_API wxString StringFromValue(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits, double aValue, bool aAddUnitsText=false, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Return the string from aValue according to aUnits (inch, mm ...) for display.
@ OUTSIDE
Text appears outside the dimension line (default)
@ INLINE
Text appears in line with the dimension line.
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
void AddSnapInferenceParams(std::vector< PARAM_BASE * > &aParams, SNAP_INFERENCE_SETTINGS &aSettings)
Register the snap inference parameters.
static BOM_FMT_PRESET CSV()
One open tab persisted across sessions.