KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
eeschema_settings.h
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#ifndef _EESCHEMA_SETTINGS_H
25#define _EESCHEMA_SETTINGS_H
26
27#include <wx/aui/framemanager.h>
28
30#include <sim/sim_preferences.h>
31
32using KIGFX::COLOR4D;
33
34
35extern const wxAuiPaneInfo& defaultNetNavigatorPaneInfo();
36extern const wxAuiPaneInfo& defaultPropertiesPaneInfo( wxWindow* aWindow );
37extern const wxAuiPaneInfo& defaultSchSelectionFilterPaneInfo( wxWindow* aWindow );
38extern const wxAuiPaneInfo& defaultDesignBlocksPaneInfo( wxWindow* aWindow );
39
40
41
43{
47
49};
50
51
52enum class POWER_SYMBOLS
53{
54 DEFAULT = 0,
55 GLOBAL,
56 LOCAL
57};
58
60{
61public:
63 {
77 wxString default_font;
92 };
93
95 {
96 int hierarchy_panel_docked_width; // width of hierarchy tree panel and pane when docked
97 int hierarchy_panel_docked_height; // height of hierarchy tree panel and pane when docked
98 int hierarchy_panel_float_width; // width of hierarchy tree panel when floating
99 int hierarchy_panel_float_height; // height of hierarchy tree panel when floating
100 int search_panel_height; // height of the search panel
101 int search_panel_width; // width of the search panel
102 int search_panel_dock_direction; // docking direction of the search panel
103 bool schematic_hierarchy_float; // show hierarchy tree panel as floating
104 bool show_schematic_hierarchy; // show hierarchy tree pane
105 bool show_search; // show the search panel
118 };
119
121 {
122 bool enable;
125 };
126
128 {
130
131 BOM_PLUGIN_SETTINGS( const wxString& aName, const wxString& aPath ) :
132 name( aName ),
133 path( aPath )
134 {}
135
136 wxString name;
137 wxString path;
138 wxString command;
139 };
140
142 {
144
145 NETLIST_PLUGIN_SETTINGS( const wxString& aName, const wxString& aPath ) :
146 name( aName ),
147 path( aPath )
148 {}
149
150 wxString name;
151 wxString path;
152 wxString command;
153 };
154
155 struct DRAWING
156 {
169 wxString field_names;
178 std::vector<double> junction_size_mult_list;
179
180 // Pulldown index for user default junction dot size (e.g. smallest = 0, small = 1, etc)
182 };
183
184 struct INPUT
185 {
188 };
189
191 {
199 };
200
202 {
217 };
218
220 {
223 int scope;
228 };
229
231 {
233 std::vector<BOM_PLUGIN_SETTINGS> plugins;
234 };
235
237 {
238 std::map<std::string, int> field_widths;
239 int width;
241 int page;
244 int scope;
245 };
246
248 {
254 };
255
257 {
258 std::vector<NETLIST_PLUGIN_SETTINGS> plugins;
259 };
260
262 {
264 bool color;
265 wxString color_theme;
275 };
276
278 {
281 int width;
286 };
287
289 {
291 wxString last_file;
295 double origin_x;
296 double origin_y;
298 };
299
301 {
302 struct VIEW
303 {
310 };
311
315 };
316
318 {
323
325 };
326
328
330
331 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
332
333 static std::vector<BOM_PLUGIN_SETTINGS> DefaultBomPlugins();
334
335
336protected:
337 virtual std::string getLegacyFrameName() const override { return "SchematicFrame"; }
338
339private:
340 bool migrateBomSettings();
341
342 nlohmann::json bomSettingsToJson() const;
343
344 static std::vector<BOM_PLUGIN_SETTINGS> bomSettingsFromJson( const nlohmann::json& aObj );
345
346 nlohmann::json netlistSettingsToJson() const;
347 static std::vector<NETLIST_PLUGIN_SETTINGS> netlistSettingsFromJson( const nlohmann::json& aObj );
348
349public:
351
353
355
357
359
361
363
365
367
369
371
373
375
377
379
381
383
385
387};
388
389
390#endif
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
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
virtual ~EESCHEMA_SETTINGS()
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
virtual std::string getLegacyFrameName() const override
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
const wxAuiPaneInfo & defaultSchSelectionFilterPaneInfo(wxWindow *aWindow)
LINE_MODE
@ LINE_MODE_90
@ LINE_MODE_45
@ LINE_MODE_FREE
@ LINE_MODE_COUNT
const wxAuiPaneInfo & defaultPropertiesPaneInfo(wxWindow *aWindow)
POWER_SYMBOLS
const wxAuiPaneInfo & defaultNetNavigatorPaneInfo()
const wxAuiPaneInfo & defaultDesignBlocksPaneInfo(wxWindow *aWindow)
Contains preferences pertaining to the simulator.
BOM_PLUGIN_SETTINGS(const wxString &aName, const wxString &aPath)
std::vector< double > junction_size_mult_list
NETLIST_PLUGIN_SETTINGS(const wxString &aName, const wxString &aPath)
std::vector< BOM_PLUGIN_SETTINGS > plugins
std::map< std::string, int > field_widths
std::vector< NETLIST_PLUGIN_SETTINGS > plugins
Contains preferences pertaining to the simulator.
Store the common settings that are saved and loaded for each window / frame.
Definition: app_settings.h:74