KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
eeschema_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
24#include <functional>
25
26#include <dialogs/dialog_bom_cfg_lexer.h>
27#include <eda_draw_frame.h>
28#include <eeschema_settings.h>
29#include <layer_ids.h>
31#include <string_utils.h>
32#include <pgm_base.h>
35#include <settings/parameters.h>
38#include <wx/config.h>
39#include <widgets/ui_common.h>
40#include <default_values.h> // For some default values
41
42using namespace T_BOMCFG_T; // for the BOM_CFG_PARSER parser and its keywords
43
46
47
49const nlohmann::json defaultBomPlugins =
50 {
51 {
52 { "name", "bom_csv_grouped_extra" },
53 { "path", "bom_csv_grouped_extra.py" }
54 },
55 {
56 { "name", "bom_csv_grouped_by_value" },
57 { "path", "bom_csv_grouped_by_value.py" }
58 },
59 {
60 { "name", "bom_csv_grouped_by_value_with_fp" },
61 { "path", "bom_csv_grouped_by_value_with_fp.py" }
62 },
63 };
64
65
66const wxAuiPaneInfo& defaultNetNavigatorPaneInfo()
67{
68 static wxAuiPaneInfo paneInfo;
69
70 paneInfo.Name( wxS( "NetNavigator" ) )
71 .Caption( _( "Net Navigator" ) )
72 .CaptionVisible( true )
73 .PaneBorder( true )
74 .Left().Layer( 3 ).Position( 0 )
75 .TopDockable( false )
76 .BottomDockable( false )
77 .CloseButton( true )
78 .MinSize( 120, 60 )
79 .BestSize( 200, 200 )
80 .FloatingSize( 200, 200 )
81 .FloatingPosition( 50, 200 )
82 .Show( false );
83
84 return paneInfo;
85}
86
87
88const wxAuiPaneInfo& defaultPropertiesPaneInfo( wxWindow* aWindow )
89{
90 static wxAuiPaneInfo paneInfo;
91
92 paneInfo.Name( EDA_DRAW_FRAME::PropertiesPaneName() )
93 .Caption( _( "Properties" ) )
94 .CaptionVisible( true )
95 .PaneBorder( true )
96 .Left().Layer( 3 ).Position( 2 )
97 .TopDockable( false )
98 .BottomDockable( false )
99 .CloseButton( true )
100 .MinSize( aWindow->FromDIP( wxSize( 240, 60 ) ) )
101 .BestSize( aWindow->FromDIP( wxSize( 300, 200 ) ) )
102 .FloatingSize( aWindow->FromDIP( wxSize( 300, 400 ) ) )
103 .FloatingPosition( aWindow->FromDIP( wxPoint( 50, 200 ) ) )
104 .Show( true );
105
106 return paneInfo;
107}
108
109
110const wxAuiPaneInfo& defaultSchSelectionFilterPaneInfo( wxWindow* aWindow )
111{
112 static wxAuiPaneInfo paneInfo;
113
114 paneInfo.Name( wxS( "SelectionFilter" ) )
115 .Caption( _( "Selection Filter" ) )
116 .CaptionVisible( true )
117 .PaneBorder( false )
118 .Left().Layer( 3 ).Position( 4 )
119 .TopDockable( false )
120 .BottomDockable( false )
121 .CloseButton( true )
122 .MinSize( aWindow->FromDIP( wxSize( 180, -1 ) ) )
123 .BestSize( aWindow->FromDIP( wxSize( 180, -1 ) ) )
124 .Show( true );
125
126 return paneInfo;
127}
128
129
130const wxAuiPaneInfo& defaultDesignBlocksPaneInfo( wxWindow* aWindow )
131{
132 static wxAuiPaneInfo paneInfo;
133
134 paneInfo.Name( EDA_DRAW_FRAME::DesignBlocksPaneName() )
135 .Caption( _( "Design Blocks" ) )
136 .CaptionVisible( true )
137 .PaneBorder( true )
138 .Right().Layer( 3 ).Position( 2 )
139 .TopDockable( false )
140 .BottomDockable( false )
141 .CloseButton( true )
142 .MinSize( aWindow->FromDIP( wxSize( 240, 60 ) ) )
143 .BestSize( aWindow->FromDIP( wxSize( 300, 200 ) ) )
144 .FloatingSize( aWindow->FromDIP( wxSize( 800, 600 ) ) )
145 .FloatingPosition( aWindow->FromDIP( wxPoint( 50, 200 ) ) )
146 .Show( true );
147
148 return paneInfo;
149}
150
151
154 m_Appearance(),
155 m_AutoplaceFields(),
156 m_Drawing(),
157 m_FindReplaceExtra(),
158 m_Input(),
159 m_PageSettings(),
160 m_AnnotatePanel(),
161 m_BomPanel(),
162 m_FieldEditorPanel(),
163 m_LibViewPanel(),
164 m_NetlistPanel(),
165 m_PlotPanel(),
166 m_SymChooserPanel(),
167 m_ImportGraphics(),
168 m_Selection(),
169 m_Simulator(),
170 m_RescueNeverShow( false )
171{
172 m_params.emplace_back( new PARAM<wxString>( "appearance.edit_symbol_visible_columns",
173 &m_Appearance.edit_symbol_visible_columns, "0 1 2 3 4 5 6 7" ) );
174
175 m_params.emplace_back( new PARAM<int>( "appearance.edit_symbol_width",
177
178 m_params.emplace_back( new PARAM<int>( "appearance.edit_symbol_height",
180
181 m_params.emplace_back( new PARAM<wxString>( "appearance.edit_sheet_visible_columns",
182 &m_Appearance.edit_sheet_visible_columns, "0 1 2 3 4 5 6 7" ) );
183
184 m_params.emplace_back( new PARAM<int>( "appearance.edit_sheet_width",
186
187 m_params.emplace_back( new PARAM<int>( "appearance.edit_sheet_height",
189
190 m_params.emplace_back( new PARAM<wxString>( "appearance.edit_label_visible_columns",
191 &m_Appearance.edit_label_visible_columns, "0 1 2 3 4 5 6 7" ) );
192
193 m_params.emplace_back( new PARAM<int>( "appearance.edit_label_width",
195
196 m_params.emplace_back( new PARAM<int>( "appearance.edit_label_height",
198
199 m_params.emplace_back( new PARAM<int>( "appearance.erc_severities",
201
202 m_params.emplace_back( new PARAM<bool>( "appearance.footprint_preview",
204
205 m_params.emplace_back( new PARAM<bool>( "appearance.print_sheet_reference",
207
208 m_params.emplace_back( new PARAM<wxString>( "appearance.default_font",
209 &m_Appearance.default_font, "KiCad Font" ) );
210
211 m_params.emplace_back( new PARAM<bool>( "appearance.show_hidden_pins",
212 &m_Appearance.show_hidden_pins, false ) );
213
214 m_params.emplace_back( new PARAM<bool>( "appearance.show_hidden_fields",
216
217 m_params.emplace_back( new PARAM<bool>( "appearance.show_directive_labels",
219
220 m_params.emplace_back( new PARAM<bool>( "appearance.show_erc_warnings",
222
223 m_params.emplace_back( new PARAM<bool>( "appearance.show_erc_errors",
224 &m_Appearance.show_erc_errors, true ) );
225
226 m_params.emplace_back( new PARAM<bool>( "appearance.show_erc_exclusions",
228
229 m_params.emplace_back( new PARAM<bool>( "appearance.mark_sim_exclusions",
231
232 m_params.emplace_back( new PARAM<bool>( "appearance.show_op_voltages",
234
235 m_params.emplace_back( new PARAM<bool>( "appearance.show_op_currents",
237
238 m_params.emplace_back( new PARAM<bool>( "appearance.show_pin_alt_icons",
240
241 m_params.emplace_back( new PARAM<bool>( "appearance.show_illegal_symbol_lib_dialog",
243
244 m_params.emplace_back( new PARAM<bool>( "appearance.show_page_limits",
246
247 m_params.emplace_back( new PARAM<bool>( "appearance.show_sexpr_file_convert_warning",
249
250 m_params.emplace_back(
251 new PARAM<bool>( "appearance.show_sheet_filename_case_sensitivity_dialog",
253
254 m_params.emplace_back( new PARAM<bool>( "aui.show_schematic_hierarchy",
256
257 m_params.emplace_back( new PARAM<int>( "aui.hierarchy_panel_docked_width",
259
260 m_params.emplace_back( new PARAM<int>( "aui.hierarchy_panel_docked_height",
262
263 m_params.emplace_back( new PARAM<int>( "aui.hierarchy_panel_float_width",
265
266 m_params.emplace_back( new PARAM<int>( "aui.hierarchy_panel_float_height",
268
269 m_params.emplace_back( new PARAM<bool>( "aui.design_blocks_show",
271
272 m_params.emplace_back( new PARAM<int>( "aui.design_blocks_panel_docked_width",
274
275 m_params.emplace_back( new PARAM<int>( "aui.design_blocks_panel_float_width",
277
278 m_params.emplace_back( new PARAM<int>( "aui.design_blocks_panel_float_height",
280
281 m_params.emplace_back( new PARAM<bool>( "aui.schematic_hierarchy_float",
283
284 m_params.emplace_back( new PARAM<int>( "aui.search_panel_height",
286
287 m_params.emplace_back( new PARAM<int>( "aui.search_panel_width",
289
290 m_params.emplace_back( new PARAM<int>( "aui.search_panel_dock_direction",
292
293 m_params.emplace_back( new PARAM<bool>( "aui.show_search",
294 &m_AuiPanels.show_search, false ) );
295
296 m_params.emplace_back( new PARAM<bool>( "aui.show_net_nav_panel",
298
299 m_params.emplace_back( new PARAM<bool>( "aui.float_net_nav_panel",
301
302 m_params.emplace_back( new PARAM<wxSize>( "aui.net_nav_panel_docked_size",
303 &m_AuiPanels.net_nav_panel_docked_size, wxSize( 120, -1 ) ) );
304
305 m_params.emplace_back( new PARAM<wxPoint>( "aui.net_nav_panel_float_pos",
306 &m_AuiPanels.net_nav_panel_float_pos, wxPoint( 50, 200 ), false ) );
307
308 m_params.emplace_back( new PARAM<wxSize>( "aui.net_nav_panel_float_size",
309 &m_AuiPanels.net_nav_panel_float_size, wxSize( 200, 200 ) ) );
310
311 m_params.emplace_back( new PARAM<bool>( "aui.show_properties",
312 &m_AuiPanels.show_properties, true ) );
313
314 m_params.emplace_back( new PARAM<int>( "aui.properties_panel_width",
316
317 m_params.emplace_back( new PARAM<float>( "aui.properties_splitter_proportion",
319
320 m_params.emplace_back( new PARAM<bool>( "autoplace_fields.enable",
321 &m_AutoplaceFields.enable, true ) );
322
323 m_params.emplace_back( new PARAM<bool>( "autoplace_fields.allow_rejustify",
325
326 m_params.emplace_back( new PARAM<bool>( "autoplace_fields.align_to_grid",
328
329 m_params.emplace_back( new PARAM<int>( "drawing.default_bus_thickness",
331
332 m_params.emplace_back( new PARAM<int>( "drawing.default_junction_size",
334
335 m_params.emplace_back( new PARAM<int>( "drawing.pin_symbol_size",
337
338 m_params.emplace_back( new PARAM<double>( "drawing.text_offset_ratio",
339 &m_Drawing.text_offset_ratio, 0.08 ) );
340
341 m_params.emplace_back( new PARAM<int>( "drawing.default_line_thickness",
343
344 m_params.emplace_back( new PARAM<int>( "drawing.default_repeat_offset_x",
346
347 m_params.emplace_back( new PARAM<int>( "drawing.default_repeat_offset_y",
349
350 m_params.emplace_back( new PARAM<int>( "drawing.default_wire_thickness",
352
353 m_params.emplace_back( new PARAM<int>( "drawing.default_text_size",
355
356 m_params.emplace_back( new PARAM<wxString>( "drawing.field_names",
357 &m_Drawing.field_names, "" ) );
358
359 m_params.emplace_back( new PARAM<int>( "drawing.line_mode", &m_Drawing.line_mode,
360 LINE_MODE::LINE_MODE_90 ) );
361
362 m_params.emplace_back( new PARAM<bool>( "drawing.auto_start_wires",
363 &m_Drawing.auto_start_wires, true ) );
364
365 m_params.emplace_back( new PARAM<int>( "drawing.repeat_label_increment",
367
368 m_params.emplace_back( new PARAM<COLOR4D>( "drawing.default_sheet_border_color",
369 &m_Drawing.default_sheet_border_color, COLOR4D::UNSPECIFIED ) );
370
371 m_params.emplace_back( new PARAM<COLOR4D>( "drawing.default_sheet_background_color",
372 &m_Drawing.default_sheet_background_color, COLOR4D::UNSPECIFIED ) );
373
374 m_params.emplace_back( new PARAM_ENUM<POWER_SYMBOLS>(
375 "drawing.new_power_symbols", &m_Drawing.new_power_symbols, POWER_SYMBOLS::DEFAULT,
376 POWER_SYMBOLS::DEFAULT, POWER_SYMBOLS::LOCAL ) );
377
378 m_params.emplace_back( new PARAM_LIST<double>( "drawing.junction_size_mult_list",
379 &m_Drawing.junction_size_mult_list, { 0.0, 1.7, 4.0, 6.0, 9.0, 12.0 } ) );
380
381 m_params.emplace_back(new PARAM <int>( "drawing.junction_size_choice",
383
384 m_params.emplace_back( new PARAM<bool>( "find_replace.search_all_fields",
386
387 m_params.emplace_back( new PARAM<bool>( "find_replace.search_all_pins",
389
390 m_params.emplace_back( new PARAM<bool>( "find_replace.search_current_sheet_only",
392 false ) );
393
394 m_params.emplace_back( new PARAM<bool>( "find_replace.replace_references",
396
397 m_params.emplace_back( new PARAM<bool>( "input.drag_is_move",
398 &m_Input.drag_is_move, false ) );
399
400 m_params.emplace_back( new PARAM<bool>( "input.esc_clears_net_highlight",
402
403 m_params.emplace_back( new PARAM<int>( "selection.thickness",
405
406 m_params.emplace_back( new PARAM<int>( "selection.highlight_thickness",
408
409 m_params.emplace_back( new PARAM<bool>( "selection.draw_selected_children",
411
412 m_params.emplace_back( new PARAM<bool>( "selection.fill_shapes",
413 &m_Selection.fill_shapes, false ) );
414
415 m_params.emplace_back( new PARAM<bool>( "selection.highlight_netclass_colors",
417
418 m_params.emplace_back( new PARAM<int>( "selection.highlight_netclass_colors_thickness",
420
421 m_params.emplace_back( new PARAM<double>( "selection.highlight_netclass_colors_alpha",
423
424 m_params.emplace_back( new PARAM<bool>( "annotation.automatic",
425 &m_AnnotatePanel.automatic, true ) );
426
427 m_params.emplace_back( new PARAM<bool>( "annotation.recursive",
428 &m_AnnotatePanel.recursive, true ) );
429
430 m_params.emplace_back( new PARAM<int>( "annotation.method",
431 &m_AnnotatePanel.method, 0, 0, 2 ) );
432
433 m_params.emplace_back( new PARAM<int>( "annotation.scope",
434 &m_AnnotatePanel.scope, 0, 0, 2 ) );
435
436 m_params.emplace_back( new PARAM<int>( "annotation.options",
437 &m_AnnotatePanel.options, 0, 0, 2 ) );
438
439 m_params.emplace_back( new PARAM<int>( "annotation.messages_filter",
441
442 m_params.emplace_back( new PARAM<int>( "annotation.sort_order",
443 &m_AnnotatePanel.sort_order, 0, 0, 1 ) );
444
445 m_params.emplace_back( new PARAM<wxString>( "bom.selected_plugin",
447
448 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "bom.plugins",
449 std::bind( &EESCHEMA_SETTINGS::bomSettingsToJson, this ),
450 [&]( const nlohmann::json& aObj )
451 {
452 if( !aObj.is_array() )
453 return;
454
455 const nlohmann::json& list = aObj.empty() ? defaultBomPlugins : aObj;
456
458 },
460
461 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "netlist.plugins",
463 [&]( const nlohmann::json& aObj )
464 {
465 if( !aObj.is_array() )
466 return;
467
468 if( aObj.empty() )
469 return;
470
471 const nlohmann::json& list = aObj;
472
474 },
475 nullptr ) );
476
477 m_params.emplace_back( new PARAM<bool>( "page_settings.export_paper",
478 &m_PageSettings.export_paper, false ) );
479
480 m_params.emplace_back( new PARAM<bool>( "page_settings.export_revision",
482
483 m_params.emplace_back( new PARAM<bool>( "page_settings.export_date",
484 &m_PageSettings.export_date, false ) );
485
486 m_params.emplace_back( new PARAM<bool>( "page_settings.export_title",
487 &m_PageSettings.export_title, false ) );
488
489 m_params.emplace_back( new PARAM<bool>( "page_settings.export_company",
490 &m_PageSettings.export_company, false ) );
491
492 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment1",
494
495 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment2",
497
498 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment3",
500
501 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment4",
503
504 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment5",
506
507 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment6",
509
510 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment7",
512
513 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment8",
515
516 m_params.emplace_back( new PARAM<bool>( "page_settings.export_comment9",
518
519 m_params.emplace_back( new PARAM_MAP<int>( "field_editor.field_widths",
521
522 m_params.emplace_back( new PARAM<int>( "field_editor.width", &m_FieldEditorPanel.width, 0 ) );
523
524 m_params.emplace_back( new PARAM<int>( "field_editor.height", &m_FieldEditorPanel.height, 0 ) );
525
526 m_params.emplace_back( new PARAM<int>( "field_editor.page", &m_FieldEditorPanel.page, 0 ) );
527
528 m_params.emplace_back( new PARAM<wxString>( "field_editor.export_filename",
529 &m_FieldEditorPanel.export_filename, wxT( "" ) ) );
530
531 m_params.emplace_back( new PARAM<int>( "field_editor.selection_mode",
533
534 m_params.emplace_back( new PARAM<int>( "field_editor.scope", &m_FieldEditorPanel.scope, 0 ) );
535
536 m_params.emplace_back( new PARAM<bool>( "plot.background_color",
537 &m_PlotPanel.background_color, false ) );
538
539 m_params.emplace_back( new PARAM<bool>( "plot.color",
540 &m_PlotPanel.color, true ) );
541
542 m_params.emplace_back( new PARAM<wxString>( "plot.color_theme",
543 &m_PlotPanel.color_theme, wxT( "user" ) ) );
544
545 m_params.emplace_back( new PARAM<int>( "plot.format",
546 &m_PlotPanel.format, 0 ) );
547
548 m_params.emplace_back( new PARAM<bool>( "plot.frame_reference",
549 &m_PlotPanel.frame_reference, true ) );
550
551 m_params.emplace_back( new PARAM<bool>( "plot.pdf_property_popups",
553
554 m_params.emplace_back( new PARAM<bool>( "plot.pdf_hierarchical_links",
556
557 m_params.emplace_back( new PARAM<bool>( "plot.pdf_metadata",
558 &m_PlotPanel.pdf_metadata, true ) );
559
560 m_params.emplace_back( new PARAM<int>( "plot.hpgl_paper_size",
562
563 m_params.emplace_back( new PARAM<double>( "plot.hpgl_pen_size",
564 &m_PlotPanel.hpgl_pen_size, 0.5 ) );
565
566 m_params.emplace_back( new PARAM<int>( "plot.hpgl_origin",
567 &m_PlotPanel.hpgl_origin, 0 ) );
568
569 m_params.emplace_back( new PARAM<bool>( "plot.other_open_file_after_plot",
571
572 m_params.emplace_back( new PARAM<int>( "simulator.window.pos_x",
574
575 m_params.emplace_back( new PARAM<int>( "simulator.window.pos_y",
577
578 m_params.emplace_back( new PARAM<int>( "simulator.window.size_x",
579 &m_Simulator.window.state.size_x, 500 ) );
580
581 m_params.emplace_back( new PARAM<int>( "simulator.window.size_y",
582 &m_Simulator.window.state.size_y, 400 ) );
583
584 m_params.emplace_back( new PARAM<unsigned int>( "simulator.window.display",
586
587 m_params.emplace_back( new PARAM<bool>( "simulator.window.maximized",
588 &m_Simulator.window.state.maximized, false ) );
589
590 m_params.emplace_back( new PARAM<wxString>( "simulator.window.perspective",
592
593 m_params.emplace_back( new PARAM<int>( "simulator.plot_panel_width",
595
596 m_params.emplace_back( new PARAM<int>( "simulator.plot_panel_height",
598
599 m_params.emplace_back( new PARAM<int>( "simulator.signal_panel_height",
601
602 m_params.emplace_back( new PARAM<int>( "simulator.cursors_panel_height",
604
605 m_params.emplace_back( new PARAM<int>( "simulator.measurements_panel_height",
607
608 m_params.emplace_back( new PARAM<bool>( "simulator.white_background",
610
612 "simulator.mouse_wheel_actions.vertical_unmodified",
614 SIM_MOUSE_WHEEL_ACTION::ZOOM, SIM_MOUSE_WHEEL_ACTION::NONE,
615 SIM_MOUSE_WHEEL_ACTION::ZOOM_VERTICALLY ) );
616
618 "simulator.mouse_wheel_actions.vertical_with_ctrl",
620 SIM_MOUSE_WHEEL_ACTION::PAN_LEFT_RIGHT, SIM_MOUSE_WHEEL_ACTION::NONE,
621 SIM_MOUSE_WHEEL_ACTION::ZOOM_VERTICALLY ) );
622
624 "simulator.mouse_wheel_actions.vertical_with_shift",
626 SIM_MOUSE_WHEEL_ACTION::PAN_UP_DOWN, SIM_MOUSE_WHEEL_ACTION::NONE,
627 SIM_MOUSE_WHEEL_ACTION::ZOOM_VERTICALLY ) );
628
630 "simulator.mouse_wheel_actions.vertical_with_alt",
632 SIM_MOUSE_WHEEL_ACTION::NONE, SIM_MOUSE_WHEEL_ACTION::NONE,
633 SIM_MOUSE_WHEEL_ACTION::ZOOM_VERTICALLY ) );
634
636 "simulator.mouse_wheel_actions.horizontal",
637 &m_Simulator.preferences.mouse_wheel_actions.horizontal, SIM_MOUSE_WHEEL_ACTION::NONE,
638 SIM_MOUSE_WHEEL_ACTION::NONE, SIM_MOUSE_WHEEL_ACTION::ZOOM_VERTICALLY ) );
639
640 m_params.emplace_back( new PARAM<int>( "symbol_chooser.sash_pos_h",
642
643 m_params.emplace_back( new PARAM<int>( "symbol_chooser.sash_pos_v",
645
646 m_params.emplace_back( new PARAM<int>( "symbol_chooser.width",
647 &m_SymChooserPanel.width, -1 ) );
648
649 m_params.emplace_back( new PARAM<int>( "symbol_chooser.height",
650 &m_SymChooserPanel.height, -1 ) );
651
652 m_params.emplace_back( new PARAM<int>( "symbol_chooser.sort_mode",
654
655 m_params.emplace_back( new PARAM<bool>( "symbol_chooser.keep_symbol",
656 &m_SymChooserPanel.keep_symbol, false ) );
657
658 m_params.emplace_back( new PARAM<bool>( "symbol_chooser.place_all_units",
660
661 m_params.emplace_back( new PARAM<bool>( "import_graphics.interactive_placement",
663
664 m_params.emplace_back( new PARAM<int>( "import_graphics.line_width_units",
666
667 m_params.emplace_back( new PARAM<double>( "import_graphics.line_width",
669
670 m_params.emplace_back( new PARAM<int>( "import_graphics.origin_units",
672
673 m_params.emplace_back( new PARAM<double>( "import_graphics.origin_x",
675
676 m_params.emplace_back( new PARAM<double>( "import_graphics.origin_y",
678
679 m_params.emplace_back( new PARAM<int>( "import_graphics.dxf_units",
681
682 m_params.emplace_back( new PARAM<bool>( "system.never_show_rescue_dialog",
683 &m_RescueNeverShow, false ) );
684
685 m_params.emplace_back( new PARAM<int>( "lib_view.window.pos_x",
687
688 m_params.emplace_back( new PARAM<int>( "lib_view.window.pos_y",
690
691 m_params.emplace_back( new PARAM<int>( "lib_view.window.size_x",
693
694 m_params.emplace_back( new PARAM<int>( "lib_view.window.size_y",
696
697 m_params.emplace_back( new PARAM<unsigned int>( "lib_view.window.display",
699
700 m_params.emplace_back( new PARAM<bool>( "lib_view.window.maximized",
702
703 m_params.emplace_back( new PARAM<wxString>( "lib_view.window.perspective",
705
706 m_params.emplace_back( new PARAM<int>( "lib_view.lib_list_width",
708
709 m_params.emplace_back( new PARAM<int>( "lib_view.cmp_list_width",
711
712 m_params.emplace_back( new PARAM<bool>( "lib_view.show_pin_electrical_type",
714
715 m_params.emplace_back( new PARAM<wxString>( "system.last_symbol_lib_dir",
716 &m_lastSymbolLibDir, "" ) );
717
718 // Migrations
719 registerMigration( 0, 1,
720 [&]() -> bool
721 {
722 // Version 0 to 1: BOM plugin settings moved from sexpr to JSON
723 return migrateBomSettings();
724 } );
725
726
727 registerMigration( 1, 2,
728 [&]() -> bool
729 {
730 // We used to have a bug on GTK which would set the lib tree column width way
731 // too narrow.
732 if( std::optional<int> optval = Get<int>( "lib_tree.column_width" ) )
733 {
734 if( optval < 150 )
735 Set( "lib_tree.column_width", 300 );
736 }
737
738 return true;
739 } );
740
741 registerMigration( 2, 3,
742 [&]() -> bool
743 {
744 // This is actually a migration for APP_SETTINGS_BASE::m_LibTree
745 return migrateLibTreeWidth();
746 } );
747}
748
749
750bool EESCHEMA_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
751{
752 bool ret = APP_SETTINGS_BASE::MigrateFromLegacy( aCfg );
753
754 // Now modify the loaded grid selection, because in earlier versions the grids index was shared
755 // between all applications and started at 1000 mils. There is a 4-position offset between
756 // this index and the possible eeschema grids list that we have to subtract.
757 std::string gridSizePtr = "window.grid.last_size";
758
759 if( std::optional<int> currentSize = Get<int>( gridSizePtr ) )
760 {
761 Set( gridSizePtr, *currentSize - 4 );
762 }
763 else
764 {
765 // Otherwise, default grid size should be 50 mils; index 1
766 Set( gridSizePtr, 1 );
767 }
768
769 ret &= fromLegacy<bool>( aCfg, "FootprintPreview", "appearance.footprint_preview" );
770 ret &= fromLegacy<bool>( aCfg, "NavigatorStaysOpen", "appearance.navigator_stays_open" );
771 ret &= fromLegacy<bool>( aCfg, "PrintSheetReferenceAndTitleBlock",
772 "appearance.print_sheet_reference" );
773 ret &= fromLegacy<bool>( aCfg, "ShowHiddenPins", "appearance.show_hidden_pins" );
774 ret &= fromLegacy<bool>( aCfg, "ShowIllegalSymbolLibDialog",
775 "appearance.show_illegal_symbol_lib_dialog" );
776 ret &= fromLegacy<bool>( aCfg, "ShowPageLimits", "appearance.show_page_limits" );
777 ret &= fromLegacy<bool>( aCfg, "ShowSheetFileNameCaseSensitivityDlg",
778 "appearance.show_sheet_filename_case_sensitivity_dialog" );
779
780 ret &= fromLegacy<bool>( aCfg, "AutoplaceFields", "autoplace_fields.enable" );
781 ret &= fromLegacy<bool>( aCfg, "AutoplaceJustify", "autoplace_fields.allow_rejustify" );
782 ret &= fromLegacy<bool>( aCfg, "AutoplaceAlign", "autoplace_fields.align_to_grid" );
783
784 ret &= fromLegacy<int>( aCfg, "DefaultBusWidth", "drawing.default_bus_thickness" );
785 ret &= fromLegacy<int>( aCfg, "DefaultJunctionSize", "drawing.default_junction_size" );
786 ret &= fromLegacy<int>( aCfg, "DefaultDrawLineWidth", "drawing.default_line_thickness" );
787 ret &= fromLegacy<int>( aCfg, "RepeatStepX", "drawing.default_repeat_offset_x" );
788 ret &= fromLegacy<int>( aCfg, "RepeatStepY", "drawing.default_repeat_offset_y" );
789 ret &= fromLegacy<int>( aCfg, "DefaultWireWidth", "drawing.default_wire_thickness" );
790 ret &= fromLegacyString( aCfg, "FieldNames", "drawing.field_names" );
791 ret &= fromLegacy<bool>( aCfg, "HorizVertLinesOnly", "drawing.line_mode" );
792 ret &= fromLegacy<int>( aCfg, "RepeatLabelIncrement", "drawing.repeat_label_increment" );
793
794 ret &= fromLegacy<bool>( aCfg, "DragActionIsMove", "input.drag_is_move" );
795
796 ret &= fromLegacy<int>( aCfg, "SelectionThickness", "selection.thickness" );
797 ret &= fromLegacy<bool>( aCfg, "SelectionDrawChildItems", "selection.draw_selected_children" );
798 ret &= fromLegacy<bool>( aCfg, "SelectionFillShapes", "selection.fill_shapes" );
799 ret &= fromLegacy<bool>( aCfg, "SelectPinSelectSymbolOpt",
800 "selection.select_pin_selects_symbol" );
801
802 ret &= fromLegacy<int>( aCfg, "AnnotateAlgoOption", "annotation.method" );
803 ret &= fromLegacy<int>( aCfg, "AnnotateFilterMsg", "annotation.messages_filter" );
804 ret &= fromLegacy<int>( aCfg, "AnnotateSortOption", "annotation.sort_order" );
805
806 ret &= fromLegacyString( aCfg, "bom_plugin_selected", "bom.selected_plugin" );
807 ret &= fromLegacyString( aCfg, "bom_plugins", "bom.plugins" );
808
810
811 ret &= fromLegacyString( aCfg, "SymbolFieldsShownColumns",
812 "edit_sch_component.visible_columns" );
813
814 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportRevision", "page_settings.export_revision" );
815 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportDate", "page_settings.export_date" );
816 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportTitle", "page_settings.export_title" );
817 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportCompany", "page_settings.export_company" );
818 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment1", "page_settings.export_comment1" );
819 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment2", "page_settings.export_comment2" );
820 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment3", "page_settings.export_comment3" );
821 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment4", "page_settings.export_comment4" );
822 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment5", "page_settings.export_comment5" );
823 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment6", "page_settings.export_comment6" );
824 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment7", "page_settings.export_comment7" );
825 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment8", "page_settings.export_comment8" );
826 ret &= fromLegacy<bool>( aCfg, "PageSettingsExportComment9", "page_settings.export_comment9" );
827
828 #if 0 // To do: move this code to the new netlist plugin management in settings
829 {
830 constexpr int max_custom_commands = 8; // from DIALOG_NETLIST
831 nlohmann::json js_cmd = nlohmann::json::array();
832 nlohmann::json js_title = nlohmann::json::array();
833 wxString cmd_key, title_key, cmd, title;
834
835 for( int i = 1; i <= max_custom_commands; ++i )
836 {
837 // Only migrate if both title and command are specified
838 cmd_key.Printf( "CustomNetlistCommand%d", i );
839 title_key.Printf( "CustomNetlistTitle%d", i );
840
841 if( aCfg->Read( cmd_key, &cmd ) && aCfg->Read( title_key, &title )
842 && !cmd.IsEmpty() && !title.IsEmpty() )
843 {
844 js_cmd.push_back( cmd.ToUTF8() );
845 js_title.push_back( title.ToUTF8() );
846 }
847 }
848
849 Set( "netlist.custom_command_titles", js_title );
850 Set( "netlist.custom_command_paths", js_cmd );
851 }
852 #endif
853
854 {
855 // NOTE(JE) These parameters should move to project-local storage before V6, but we are
856 // migrating them here in order to preserve data. There is a bug here that is preserved:
857 // keys are taken directly from the (translated) UI and stored in the config, so if the user
858 // changes languages the keys will no longer work.
859 aCfg->SetPath( "SymbolFieldEditor/Show/" );
860
861 nlohmann::json js = nlohmann::json( {} );
862 wxString key;
863 bool value = false;
864 long index = 0;
865
866 while( aCfg->GetNextEntry( key, index ) )
867 {
868 if( aCfg->Read( key, &value ) )
869 {
870 std::string key_utf( key.ToUTF8() );
871
872 try
873 {
874 js[ std::move( key_utf ) ] = value;
875 }
876 catch(...)
877 {
878 continue;
879 }
880 }
881 }
882
883 Set( "field_editor.fields_show", js );
884
885 aCfg->SetPath( "../GroupBy" );
886
887 while( aCfg->GetNextEntry( key, index ) )
888 {
889 if( aCfg->Read( key, &value ) )
890 {
891 std::string key_utf( key.ToUTF8() );
892
893 try
894 {
895 js[ std::move( key_utf ) ] = value;
896 }
897 catch(...)
898 {
899 continue;
900 }
901 }
902 }
903
904 Set( "field_editor.fields_group_by", js );
905
906 aCfg->SetPath( "../.." );
907 }
908
909 ret &= fromLegacy<bool>( aCfg, "PlotModeColor", "plot.color" );
910 ret &= fromLegacy<int>( aCfg, "PlotFormat", "plot.format" );
911 ret &= fromLegacy<bool>( aCfg, "PlotFrameRef", "plot.frame_reference" );
912 ret &= fromLegacy<bool>( aCfg, "PlotHPGLOrg", "plot.hpgl_origin" );
913 ret &= fromLegacy<int>( aCfg, "PlotHPGLPaperSize", "plot.hpgl_paper_size" );
914 ret &= fromLegacy<double>( aCfg, "PlotHPGLPenSize", "plot.hpgl_pen_size" );
915
916 ret &= fromLegacy<int>( aCfg, "SIM_PLOT_FRAMEPos_x", "simulator.window.pos_x" );
917 ret &= fromLegacy<int>( aCfg, "SIM_PLOT_FRAMEPos_y", "simulator.window.pos_y" );
918 ret &= fromLegacy<int>( aCfg, "SIM_PLOT_FRAMESize_x", "simulator.window.size_x" );
919 ret &= fromLegacy<int>( aCfg, "SIM_PLOT_FRAMESize_y", "simulator.window.size_y" );
920 ret &= fromLegacy<bool>( aCfg, "SIM_PLOT_FRAMEMaximized", "simulator.window.maximized" );
921 ret &= fromLegacyString( aCfg, "SIM_PLOT_FRAMEPerspective", "simulator.window.perspective" );
922 ret &= fromLegacyString( aCfg, "SIM_PLOT_FRAMEMostRecentlyUsedPath", "simulator.mru_path" );
923 ret &= fromLegacy<int>( aCfg, "SimPlotPanelWidth", "simulator.plot_panel_width" );
924 ret &= fromLegacy<int>( aCfg, "SimPlotPanelHeight", "simulator.plot_panel_height" );
925 ret &= fromLegacy<int>( aCfg, "SimSignalPanelHeight", "simulator.signal_panel_height" );
926 ret &= fromLegacy<int>( aCfg, "SimCursorsPanelHeight", "simulator.cursors_panel_height" );
927 ret &= fromLegacy<bool>( aCfg, "SimPlotWhiteBg", "simulator.white_background" );
928
929 ret &= fromLegacy<int>( aCfg, "SymbolChooserHSashPosition", "symbol_chooser.sash_pos_h" );
930 ret &= fromLegacy<int>( aCfg, "SymbolChooserVSashPosition", "symbol_chooser.sash_pos_v" );
931 ret &= fromLegacy<int>( aCfg, "SymbolChooserWidth", "symbol_chooser.width" );
932 ret &= fromLegacy<int>( aCfg, "SymbolChooserHeight", "symbol_chooser.height" );
933 ret &= fromLegacy<bool>( aCfg, "SymbolChooserKeepSymbol", "symbol_chooser.keep_symbol" );
934 ret &= fromLegacy<bool>( aCfg, "SymbolChooserUseUnits", "symbol_chooser.place_all_units" );
935
936 const std::string vlf = "ViewlibFrame";
937 ret &= fromLegacy<bool>( aCfg, vlf + "Maximized", "lib_view.window.maximized" );
938 ret &= fromLegacyString( aCfg, vlf + "MostRecentlyUsedPath", "lib_view.window.mru_path" );
939 ret &= fromLegacy<int>( aCfg, vlf + "Size_x", "lib_view.window.size_x" );
940 ret &= fromLegacy<int>( aCfg, vlf + "Size_y", "lib_view.window.size_y" );
941 ret &= fromLegacyString( aCfg, vlf + "Perspective", "lib_view.window.perspective" );
942 ret &= fromLegacy<int>( aCfg, vlf + "Pos_x", "lib_view.window.pos_x" );
943 ret &= fromLegacy<int>( aCfg, vlf + "Pos_y", "lib_view.window.pos_y" );
944 ret &= fromLegacy<int>( aCfg, "ViewLiblistWidth", "lib_view.lib_list_width" );
945 ret &= fromLegacy<int>( aCfg, "ViewCmplistWidth", "lib_view.cmp_list_width" );
946 ret &= fromLegacy<bool>( aCfg,
947 "ViewCmpShowPinElectricalType", "lib_view.show_pin_electrical_type" );
948 ret &= fromLegacy<bool>( aCfg, vlf + "ShowGrid", "lib_view.grid.show" );
949 ret &= fromLegacy<int>( aCfg, vlf + "_LastGridSize", "lib_view.grid.last_size" );
950
951 ret &= fromLegacy<bool>( aCfg, "RescueNeverShow", "system.never_show_rescue_dialog" );
952
953 // Legacy version stored this setting in eeschema, so move it to common if it exists
954 bool tmp;
955
956 if( aCfg->Read( "MoveWarpsCursor", &tmp ) )
957 Pgm().GetCommonSettings()->m_Input.warp_mouse_on_move = tmp;
958
961
962 auto migrateLegacyColor = [&] ( const std::string& aKey, int aLayerId ) {
963 wxString str;
964
965 if( aCfg->Read( aKey, &str ) )
966 cs->SetColor( aLayerId, COLOR4D( str ) );
967 };
968
969 migrateLegacyColor( "Color4DBgCanvasEx", LAYER_SCHEMATIC_BACKGROUND );
970 migrateLegacyColor( "Color4DBodyBgEx", LAYER_DEVICE_BACKGROUND );
971 migrateLegacyColor( "Color4DBodyEx", LAYER_DEVICE );
972 migrateLegacyColor( "Color4DBrightenedEx", LAYER_BRIGHTENED );
973 migrateLegacyColor( "Color4DBusEx", LAYER_BUS );
974 migrateLegacyColor( "Color4DConnEx", LAYER_JUNCTION );
975 migrateLegacyColor( "Color4DCursorEx", LAYER_SCHEMATIC_CURSOR );
976 migrateLegacyColor( "Color4DErcEEx", LAYER_ERC_ERR );
977 migrateLegacyColor( "Color4DErcWEx", LAYER_ERC_WARN );
978 migrateLegacyColor( "Color4DFieldEx", LAYER_FIELDS );
979 migrateLegacyColor( "Color4DGLabelEx", LAYER_GLOBLABEL );
980 migrateLegacyColor( "Color4DGridEx", LAYER_SCHEMATIC_GRID );
981 migrateLegacyColor( "Color4DHLabelEx", LAYER_HIERLABEL );
982 migrateLegacyColor( "Color4DHiddenEx", LAYER_HIDDEN );
983 migrateLegacyColor( "Color4DLLabelEx", LAYER_LOCLABEL );
984 migrateLegacyColor( "Color4DNoConnectEx", LAYER_NOCONNECT );
985 migrateLegacyColor( "Color4DNoteEx", LAYER_NOTES );
986 migrateLegacyColor( "Color4DPinEx", LAYER_PIN );
987 migrateLegacyColor( "Color4DPinNameEx", LAYER_PINNAM );
988 migrateLegacyColor( "Color4DPinNumEx", LAYER_PINNUM );
989 migrateLegacyColor( "Color4DReferenceEx", LAYER_REFERENCEPART );
990 migrateLegacyColor( "Color4DShadowEx", LAYER_SELECTION_SHADOWS );
991 migrateLegacyColor( "Color4DSheetEx", LAYER_SHEET );
992 migrateLegacyColor( "Color4DSheetFileNameEx", LAYER_SHEETFILENAME );
993 migrateLegacyColor( "Color4DSheetLabelEx", LAYER_SHEETLABEL );
994 migrateLegacyColor( "Color4DSheetNameEx", LAYER_SHEETNAME );
995 migrateLegacyColor( "Color4DValueEx", LAYER_VALUEPART );
996 migrateLegacyColor( "Color4DWireEx", LAYER_WIRE );
997 migrateLegacyColor( "Color4DWorksheetEx", LAYER_SCHEMATIC_DRAWINGSHEET );
998
999 mgr.SaveColorSettings( cs, "schematic" );
1000
1001 Set( "appearance.color_theme", cs->GetFilename() );
1002
1003 // LibEdit settings were stored with eeschema. If eeschema is the first app to run,
1004 // we need to migrate the LibEdit settings here
1005
1007 libedit->MigrateFromLegacy( aCfg );
1008 libedit->Load();
1009
1010 return ret;
1011}
1012
1013
1018class BOM_CFG_PARSER : public DIALOG_BOM_CFG_LEXER
1019{
1020 std::vector<EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS>* m_pluginList;
1021
1022public:
1023 BOM_CFG_PARSER( std::vector<EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS>* aPluginList,
1024 const char* aData, const wxString& aSource );
1025
1026 void Parse();
1027
1028private:
1029 void parseGenerator();
1030};
1031
1032
1033std::vector<EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS> EESCHEMA_SETTINGS::DefaultBomPlugins()
1034{
1036}
1037
1038
1040{
1041 if( !Contains( "bom.plugins" ) )
1042 return false;
1043
1044 wxString list = *Get<wxString>( "bom.plugins" );
1045
1046 BOM_CFG_PARSER cfg_parser( &m_BomPanel.plugins, TO_UTF8( list ), wxT( "plugins" ) );
1047
1048 try
1049 {
1050 cfg_parser.Parse();
1051 }
1052 catch( const IO_ERROR& )
1053 {
1054 return false;
1055 }
1056
1057 // Parser will have loaded up our array, let's dump it out to JSON
1058 At( "bom.plugins" ) = bomSettingsToJson();
1059
1060 return true;
1061}
1062
1063
1065{
1066 nlohmann::json js = nlohmann::json::array();
1067
1068 for( const BOM_PLUGIN_SETTINGS& plugin : m_BomPanel.plugins )
1069 {
1070 nlohmann::json pluginJson;
1071
1072 pluginJson["name"] = plugin.name.ToUTF8();
1073 pluginJson["path"] = plugin.path.ToUTF8();
1074 pluginJson["command"] = plugin.command.ToUTF8();
1075
1076 js.push_back( pluginJson );
1077 }
1078
1079 return js;
1080}
1081
1082
1083std::vector<EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS> EESCHEMA_SETTINGS::bomSettingsFromJson(
1084 const nlohmann::json& aObj )
1085{
1086 std::vector<EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS> ret;
1087
1088 wxASSERT( aObj.is_array() );
1089
1090 for( const nlohmann::json& entry : aObj )
1091 {
1092 if( entry.empty() || !entry.is_object() )
1093 continue;
1094
1095 if( !entry.contains( "name" ) || !entry.contains( "path" ) )
1096 continue;
1097
1098 BOM_PLUGIN_SETTINGS plugin( entry.at( "name" ).get<wxString>(),
1099 entry.at( "path" ).get<wxString>() );
1100
1101 if( entry.contains( "command" ) )
1102 plugin.command = entry.at( "command" ).get<wxString>();
1103
1104 ret.emplace_back( plugin );
1105 }
1106
1107 return ret;
1108}
1109
1110
1112{
1113 nlohmann::json js = nlohmann::json::array();
1114
1115 for( const NETLIST_PLUGIN_SETTINGS& plugin : m_NetlistPanel.plugins )
1116 {
1117 nlohmann::json pluginJson;
1118
1119 pluginJson["name"] = plugin.name.ToUTF8();
1120 pluginJson["path"] = plugin.path.ToUTF8();
1121 pluginJson["command"] = plugin.command.ToUTF8();
1122
1123 js.push_back( pluginJson );
1124 }
1125
1126 return js;
1127}
1128
1129
1130std::vector<EESCHEMA_SETTINGS::NETLIST_PLUGIN_SETTINGS> EESCHEMA_SETTINGS::netlistSettingsFromJson(
1131 const nlohmann::json& aObj )
1132{
1133 std::vector<EESCHEMA_SETTINGS::NETLIST_PLUGIN_SETTINGS> ret;
1134
1135 wxASSERT( aObj.is_array() );
1136
1137 for( const nlohmann::json& entry : aObj )
1138 {
1139 if( entry.empty() || !entry.is_object() )
1140 continue;
1141
1142 if( !entry.contains( "name" ) || !entry.contains( "path" ) )
1143 continue;
1144
1145 NETLIST_PLUGIN_SETTINGS plugin( entry.at( "name" ).get<wxString>(),
1146 entry.at( "path" ).get<wxString>() );
1147
1148 if( entry.contains( "command" ) )
1149 plugin.command = entry.at( "command" ).get<wxString>();
1150
1151 ret.emplace_back( plugin );
1152 }
1153
1154 return ret;
1155}
1156
1157
1158BOM_CFG_PARSER::BOM_CFG_PARSER( std::vector<EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS>* aPluginList,
1159 const char* aLine, const wxString& aSource ) :
1160 DIALOG_BOM_CFG_LEXER( aLine, aSource )
1161{
1162 wxASSERT( aPluginList );
1163 m_pluginList = aPluginList;
1164}
1165
1166
1168{
1169 T token;
1170
1171 while( ( token = NextTok() ) != T_RIGHT )
1172 {
1173 if( token == T_EOF)
1174 break;
1175
1176 if( token == T_LEFT )
1177 token = NextTok();
1178
1179 if( token == T_plugins )
1180 continue;
1181
1182 switch( token )
1183 {
1184 case T_plugin: // Defines a new plugin
1186 break;
1187
1188 default:
1189// Unexpected( CurText() );
1190 break;
1191 }
1192 }
1193}
1194
1195
1197{
1198 wxString str;
1200
1201 NeedSYMBOLorNUMBER();
1202 settings.path = FromUTF8();
1203
1204 T token;
1205
1206 while( ( token = NextTok() ) != T_RIGHT )
1207 {
1208 if( token == T_EOF)
1209 break;
1210
1211 switch( token )
1212 {
1213 case T_LEFT:
1214 break;
1215
1216 case T_cmd:
1217 NeedSYMBOLorNUMBER();
1218
1219 settings.command = FromUTF8();
1220
1221 NeedRIGHT();
1222 break;
1223
1224 case T_opts:
1225 {
1226 NeedSYMBOLorNUMBER();
1227
1228 wxString option = FromUTF8();
1229
1230 if( option.StartsWith( wxS( "nickname=" ), &str ) )
1231 settings.name = str;
1232
1233 NeedRIGHT();
1234 break;
1235 }
1236
1237 default:
1238 Unexpected( CurText() );
1239 break;
1240 }
1241 }
1242
1243 m_pluginList->emplace_back( settings );
1244}
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
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.
Used for parsing legacy-format bom plugin configurations.
BOM_CFG_PARSER(std::vector< EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS > *aPluginList, const char *aData, const wxString &aSource)
std::vector< EESCHEMA_SETTINGS::BOM_PLUGIN_SETTINGS > * m_pluginList
Color settings are a bit different than most of the settings objects in that there can be more than o...
void SetColor(int aLayer, const COLOR4D &aColor)
static const wxString PropertiesPaneName()
static const wxString DesignBlocksPaneName()
PANEL_ANNOTATE m_AnnotatePanel
static std::vector< BOM_PLUGIN_SETTINGS > DefaultBomPlugins()
PANEL_NETLIST m_NetlistPanel
nlohmann::json bomSettingsToJson() const
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
nlohmann::json netlistSettingsToJson() const
PANEL_SYM_CHOOSER m_SymChooserPanel
PAGE_SETTINGS m_PageSettings
static std::vector< BOM_PLUGIN_SETTINGS > bomSettingsFromJson(const nlohmann::json &aObj)
FIND_REPLACE_EXTRA m_FindReplaceExtra
PANEL_LIB_VIEW m_LibViewPanel
AUTOPLACE_FIELDS m_AutoplaceFields
DIALOG_IMPORT_GRAPHICS m_ImportGraphics
static std::vector< NETLIST_PLUGIN_SETTINGS > netlistSettingsFromJson(const nlohmann::json &aObj)
PANEL_FIELD_EDITOR m_FieldEditorPanel
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
bool fromLegacyString(wxConfigBase *aConfig, const std::string &aKey, const std::string &aDest)
Translates a legacy wxConfig string 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...
bool Contains(const std::string &aPath) const
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...
wxString GetFilename() const
Definition: json_settings.h:81
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
Stores an enum as an integer.
Definition: parameters.h:228
Like a normal param, but with custom getter and setter functions.
Definition: parameters.h:295
Represents a map of <std::string, Value>.
Definition: parameters.h:726
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition: pgm_base.cpp:687
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
void SaveColorSettings(COLOR_SETTINGS *aSettings, const std::string &aNamespace="")
Safely save a COLOR_SETTINGS to disk, preserving any changes outside the given namespace.
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
COLOR_SETTINGS * GetMigratedColorSettings()
Return a color theme for storing colors migrated from legacy (5.x and earlier) settings,...
#define DEFAULT_BUS_WIDTH_MILS
The default noconnect size in mils.
#define DEFAULT_JUNCTION_DIAM
The default bus and wire entry size in mils.
#define DEFAULT_WIRE_WIDTH_MILS
The default bus width in mils. (can be changed in preference menu)
#define DEFAULT_LINE_WIDTH_MILS
The default wire width in mils. (can be changed in preference menu)
#define DEFAULT_TEXT_SIZE
Ratio of the font height to the baseline of the text above the wire.
#define _(s)
const nlohmann::json defaultBomPlugins
Default value for bom.plugins.
const wxAuiPaneInfo & defaultSchSelectionFilterPaneInfo(wxWindow *aWindow)
const wxAuiPaneInfo & defaultPropertiesPaneInfo(wxWindow *aWindow)
const wxAuiPaneInfo & defaultNetNavigatorPaneInfo()
const int eeschemaSchemaVersion
Update the schema version whenever a migration is required.
const wxAuiPaneInfo & defaultDesignBlocksPaneInfo(wxWindow *aWindow)
@ LAYER_SHEETNAME
Definition: layer_ids.h:461
@ LAYER_ERC_WARN
Definition: layer_ids.h:468
@ LAYER_SHEETLABEL
Definition: layer_ids.h:464
@ LAYER_PINNUM
Definition: layer_ids.h:447
@ LAYER_DEVICE
Definition: layer_ids.h:455
@ LAYER_BRIGHTENED
Definition: layer_ids.h:480
@ LAYER_HIDDEN
Definition: layer_ids.h:481
@ LAYER_HIERLABEL
Definition: layer_ids.h:446
@ LAYER_PINNAM
Definition: layer_ids.h:448
@ LAYER_GLOBLABEL
Definition: layer_ids.h:445
@ LAYER_WIRE
Definition: layer_ids.h:441
@ LAYER_NOTES
Definition: layer_ids.h:456
@ LAYER_ERC_ERR
Definition: layer_ids.h:469
@ LAYER_PIN
Definition: layer_ids.h:459
@ LAYER_VALUEPART
Definition: layer_ids.h:450
@ LAYER_BUS
Definition: layer_ids.h:442
@ LAYER_SCHEMATIC_CURSOR
Definition: layer_ids.h:478
@ LAYER_FIELDS
Definition: layer_ids.h:451
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:473
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:484
@ LAYER_LOCLABEL
Definition: layer_ids.h:444
@ LAYER_JUNCTION
Definition: layer_ids.h:443
@ LAYER_REFERENCEPART
Definition: layer_ids.h:449
@ LAYER_SHEET
Definition: layer_ids.h:460
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:483
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:477
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:462
@ LAYER_NOCONNECT
Definition: layer_ids.h:465
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:475
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
@ RPT_SEVERITY_WARNING
@ RPT_SEVERITY_ERROR
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Definition: string_utils.h:403
std::vector< double > junction_size_mult_list
std::vector< BOM_PLUGIN_SETTINGS > plugins
std::map< std::string, int > field_widths
std::vector< NETLIST_PLUGIN_SETTINGS > plugins
SIM_MOUSE_WHEEL_ACTION vertical_unmodified
SIM_MOUSE_WHEEL_ACTION vertical_with_alt
SIM_MOUSE_WHEEL_ACTION horizontal
SIM_MOUSE_WHEEL_ACTION vertical_with_ctrl
SIM_MOUSE_WHEEL_ACTION vertical_with_shift
SIM_MOUSE_WHEEL_ACTION_SET mouse_wheel_actions
WINDOW_STATE state
Definition: app_settings.h:75
wxString perspective
Definition: app_settings.h:77
unsigned int display
Definition: app_settings.h:67
Functions to provide common constants and other functions to assist in making a consistent UI.