KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcbnew_config.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) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2012 Wayne Stambaugh <[email protected]>
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#include <pcb_edit_frame.h>
24#include <tool/tool_manager.h>
28#include <filename_resolver.h>
29#include <pcbplot.h>
30#include <pcb_painter.h>
31#include <pgm_base.h>
32#include <project.h>
38
39
41{
43
44 // Load the drawing sheet from the filename stored in the project
45 // If empty, or not existing, the default drawing sheet is loaded.
47 resolver.SetProject( &Prj() );
48 resolver.SetProgramBase( &Pgm() );
49
50 wxString filename = resolver.ResolvePath( project.m_BoardDrawingSheetFile,
51 Prj().GetProjectPath(),
52 { GetBoard()->GetEmbeddedFiles() } );
53
54 wxString msg;
55
56 if( !DS_DATA_MODEL::GetTheInstance().LoadDrawingSheet( filename, &msg ) )
57 ShowInfoBarError( msg, true );
58
59}
60
62{
64 PROJECT_LOCAL_SETTINGS& localSettings = Prj().GetLocalSettings();
65
66 BASE_SCREEN::m_DrawingSheetFileName = project.m_BoardDrawingSheetFile;
67
68 // Load render settings that aren't stored in PCB_DISPLAY_OPTIONS
69
70 std::shared_ptr<NET_SETTINGS>& netSettings = project.NetSettings();
72 KIGFX::PCB_RENDER_SETTINGS* renderSettings = static_cast<KIGFX::PCB_RENDER_SETTINGS*>( rs );
73
74 const NETINFO_LIST& nets = GetBoard()->GetNetInfo();
75
76 std::set<int>& hiddenNets = renderSettings->GetHiddenNets();
77 hiddenNets.clear();
78
79 for( const wxString& hidden : localSettings.m_HiddenNets )
80 {
81 if( NETINFO_ITEM* net = nets.GetNetItem( hidden ) )
82 hiddenNets.insert( net->GetNetCode() );
83 }
84
85 for( NETINFO_ITEM* net : nets )
86 {
87 if( localSettings.m_HiddenNetclasses.count( net->GetNetClass()->GetName() ) )
88 hiddenNets.insert( net->GetNetCode() );
89 }
90
91 std::map<int, KIGFX::COLOR4D>& netColors = renderSettings->GetNetColorMap();
92 netColors.clear();
93
94 for( const auto& [netname, color] : netSettings->GetNetColorAssignments() )
95 {
96 if( color != COLOR4D::UNSPECIFIED )
97 {
98 if( NETINFO_ITEM* net = GetBoard()->GetNetInfo().GetNetItem( netname ) )
99 netColors[ net->GetNetCode() ] = color;
100 }
101 }
102
103 m_appearancePanel->SetUserLayerPresets( project.m_LayerPresets );
104 m_appearancePanel->SetUserViewports( project.m_Viewports );
105
107 PCB_SELECTION_FILTER_OPTIONS& filterOpts = selTool->GetFilter();
108
109 filterOpts = localSettings.m_PcbSelectionFilter;
110 m_selectionFilterPanel->SetCheckboxesFromFilter( filterOpts );
111
113 opts.m_ContrastModeDisplay = localSettings.m_ContrastModeDisplay;
114 opts.m_NetColorMode = localSettings.m_NetColorMode;
115 opts.m_TrackOpacity = localSettings.m_TrackOpacity;
116 opts.m_ViaOpacity = localSettings.m_ViaOpacity;
117 opts.m_PadOpacity = localSettings.m_PadOpacity;
118 opts.m_ZoneOpacity = localSettings.m_ZoneOpacity;
119 opts.m_ZoneDisplayMode = localSettings.m_ZoneDisplayMode;
120 opts.m_ImageOpacity = localSettings.m_ImageOpacity;
121 opts.m_FilledShapeOpacity = localSettings.m_ShapeOpacity;
122
123 // No refresh here: callers of LoadProjectSettings refresh later
124 SetDisplayOptions( opts, false );
125
127 bds.m_UseConnectedTrackWidth = localSettings.m_AutoTrackWidth;
128
129 wxFileName fn( GetCurrentFileName() );
130 fn.MakeRelativeTo( Prj().GetProjectPath() );
131 LoadWindowState( fn.GetFullPath() );
132
133 return true;
134}
135
136
138{
139 wxFileName fn = Prj().GetProjectFullName();
140
141 // Check for the filename before checking IsWritable as this
142 // will throw errors on bad names. Here, we just want to not
143 // save the Settings if we don't have a name
144 if( !fn.IsOk() )
145 return;
146
147 if( !fn.IsDirWritable() )
148 return;
149
151
152 // save some local settings like appearance control settings
154
155 // TODO: Can this be pulled out of BASE_SCREEN?
156 project.m_BoardDrawingSheetFile = BASE_SCREEN::m_DrawingSheetFileName;
157
158 project.m_LayerPresets = m_appearancePanel->GetUserLayerPresets();
159 project.m_Viewports = m_appearancePanel->GetUserViewports();
160
162
163 // Save render settings that aren't stored in PCB_DISPLAY_OPTIONS
164
165 std::shared_ptr<NET_SETTINGS>& netSettings = project.NetSettings();
166 const NETINFO_LIST& nets = GetBoard()->GetNetInfo();
168 KIGFX::PCB_RENDER_SETTINGS* renderSettings = static_cast<KIGFX::PCB_RENDER_SETTINGS*>( rs );
169
170 netSettings->ClearNetColorAssignments();
171
172 for( const auto& [ netcode, color ] : renderSettings->GetNetColorMap() )
173 {
174 if( NETINFO_ITEM* net = nets.GetNetItem( netcode ) )
175 netSettings->SetNetColorAssignment( net->GetNetname(), color );
176 }
177
187 if( !Prj().IsNullProject() && fn.Exists() )
189}
190
191
193{
194 wxFileName fn = Prj().GetProjectFullName();
195
196 // Check for the filename before checking IsWritable as this
197 // will throw errors on bad names. Here, we just want to not
198 // save the Settings if we don't have a name
199 if( !fn.IsOk() )
200 return;
201
202 if( !fn.IsDirWritable() )
203 return;
204
205 PROJECT_LOCAL_SETTINGS& localSettings = Prj().GetLocalSettings();
206
207 // Save appearance control settings
208 localSettings.m_ActiveLayer = GetActiveLayer();
209 localSettings.m_ActiveLayerPreset = m_appearancePanel->GetActiveLayerPreset();
210
211 const PCB_DISPLAY_OPTIONS& displayOpts = GetDisplayOptions();
212
213 localSettings.m_ContrastModeDisplay = displayOpts.m_ContrastModeDisplay;
214 localSettings.m_NetColorMode = displayOpts.m_NetColorMode;
215 localSettings.m_TrackOpacity = displayOpts.m_TrackOpacity;
216 localSettings.m_ViaOpacity = displayOpts.m_ViaOpacity;
217 localSettings.m_PadOpacity = displayOpts.m_PadOpacity;
218 localSettings.m_ZoneOpacity = displayOpts.m_ZoneOpacity;
219 localSettings.m_ZoneDisplayMode = displayOpts.m_ZoneDisplayMode;
220 localSettings.m_ImageOpacity = displayOpts.m_ImageOpacity;
221 localSettings.m_ShapeOpacity = displayOpts.m_FilledShapeOpacity;
222
223 // Save Design settings
225 localSettings.m_AutoTrackWidth = bds.m_UseConnectedTrackWidth;
226
227 // Net display settings
228 const NETINFO_LIST& nets = GetBoard()->GetNetInfo();
230 KIGFX::PCB_RENDER_SETTINGS* renderSettings = static_cast<KIGFX::PCB_RENDER_SETTINGS*>( rs );
231
232 localSettings.m_HiddenNets.clear();
233
234 for( int netcode : renderSettings->GetHiddenNets() )
235 {
236 if( NETINFO_ITEM* net = nets.GetNetItem( netcode ) )
237 localSettings.m_HiddenNets.emplace_back( net->GetNetname() );
238 }
239
240 if( TOOL_MANAGER* toolMgr = GetToolManager() )
241 {
242 if( PCB_SELECTION_TOOL* selTool = toolMgr->GetTool<PCB_SELECTION_TOOL>() )
243 localSettings.m_PcbSelectionFilter = selTool->GetFilter();
244 }
245}
static wxString m_DrawingSheetFileName
the name of the drawing sheet file, or empty to use the default drawing sheet
Definition base_screen.h:81
Container for design settings for a BOARD object.
const NETINFO_LIST & GetNetInfo() const
Definition board.h:1086
EMBEDDED_FILES * GetEmbeddedFiles() override
Definition board.cpp:3413
void RecordDRCExclusions()
Scan existing markers and record data from any that are Excluded.
Definition board.cpp:391
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
Definition color4d.h:398
static DS_DATA_MODEL & GetTheInstance()
Return the instance of DS_DATA_MODEL used in the application.
void LoadWindowState(const wxString &aFileName)
SETTINGS_MANAGER * GetSettingsManager() const
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, INFOBAR_MESSAGE_TYPE aType=INFOBAR_MESSAGE_TYPE::GENERIC)
Show the WX_INFOBAR displayed on the top of the canvas with a message and an error icon on the left o...
Provide an extensible class to resolve 3D model paths.
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
PCB specific render settings.
Definition pcb_painter.h:78
std::set< int > & GetHiddenNets()
std::map< int, KIGFX::COLOR4D > & GetNetColorMap()
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition view.h:225
Handle the data for a net.
Definition netinfo.h:46
Container for NETINFO_ITEM elements, which are the nets.
Definition netinfo.h:221
NETINFO_ITEM * GetNetItem(int aNetCode) const
APPEARANCE_CONTROLS * m_appearancePanel
PANEL_SELECTION_FILTER * m_selectionFilterPanel
const PCB_DISPLAY_OPTIONS & GetDisplayOptions() const
Display options control the way tracks, vias, outlines and other things are shown (for instance solid...
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual PCB_LAYER_ID GetActiveLayer() const
BOARD * GetBoard() const
virtual BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Return the BOARD_DESIGN_SETTINGS for the open project.
void SetDisplayOptions(const PCB_DISPLAY_OPTIONS &aOptions, bool aRefresh=true)
Update the current display options.
double m_TrackOpacity
Opacity override for all tracks.
double m_FilledShapeOpacity
Opacity override for graphic shapes.
double m_ZoneOpacity
Opacity override for filled zone areas.
double m_ImageOpacity
Opacity override for user images.
double m_PadOpacity
Opacity override for SMD pads and PTHs.
double m_ViaOpacity
Opacity override for all types of via.
HIGH_CONTRAST_MODE m_ContrastModeDisplay
How inactive layers are displayed.
NET_COLOR_MODE m_NetColorMode
How to use color overrides on specific nets and netclasses.
ZONE_DISPLAY_MODE m_ZoneDisplayMode
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
void LoadDrawingSheet()
Load the drawing sheet file.
void SaveProjectLocalSettings() override
Save changes to the project local settings.
bool LoadProjectSettings()
Load the current project's file configuration settings which are pertinent to this PCB_EDIT_FRAME ins...
wxString GetCurrentFileName() const override
Get the full filename + path of the currently opened file in the frame.
void saveProjectSettings() override
Save any design-related project settings associated with this frame.
The selection tool: currently supports:
PCB_SELECTION_FILTER_OPTIONS & GetFilter()
Set up handlers for various events.
The backing store for a PROJECT, in JSON format.
The project local settings are things that are attached to a particular project, but also might be pa...
double m_PadOpacity
Opacity override for SMD pads and PTH.
double m_ViaOpacity
Opacity override for all types of via.
PCB_SELECTION_FILTER_OPTIONS m_PcbSelectionFilter
State of the selection filter widgets.
wxString m_ActiveLayerPreset
The name of a LAYER_PRESET that is currently activated (or blank if none)
double m_TrackOpacity
Opacity override for all tracks.
double m_ZoneOpacity
Opacity override for filled zones.
bool m_AutoTrackWidth
The current setting for whether to automatically adjust track widths to match.
ZONE_DISPLAY_MODE m_ZoneDisplayMode
How zones are drawn.
double m_ShapeOpacity
Opacity override for graphic shapes.
PCB_LAYER_ID m_ActiveLayer
The current (active) board layer for editing.
HIGH_CONTRAST_MODE m_ContrastModeDisplay
The current contrast mode.
NET_COLOR_MODE m_NetColorMode
The current net color mode.
std::vector< wxString > m_HiddenNets
A list of netnames that have been manually hidden in the board editor.
std::set< wxString > m_HiddenNetclasses
double m_ImageOpacity
Opacity override for user images.
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
Definition project.cpp:177
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
Definition project.h:206
virtual PROJECT_FILE & GetProjectFile() const
Definition project.h:200
bool SaveProject(const wxString &aFullPath=wxEmptyString, PROJECT *aProject=nullptr)
Save a loaded project.
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
Master controller class:
static FILENAME_RESOLVER * resolver
PROJECT & Prj()
Definition kicad.cpp:730
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
This file contains data structures that are saved in the project file or project local settings file ...