39 m_AutoTrackWidth( true ),
41 m_TrackOpacity( 1.0 ),
45 m_ShapeOpacity( 1.0 ),
46 m_ImageOpacity( 0.6 ),
47 m_PcbSelectionFilter(),
48 m_project( aProject ),
49 m_wasMigrated( false )
59 [&](
const std::string& aString )
66 [&]() -> nlohmann::json
68 nlohmann::json ret = nlohmann::json::array();
78 [&](
const nlohmann::json& aVal )
80 if( !aVal.is_array() || aVal.empty() )
89 for(
const nlohmann::json& entry : aVal )
93 std::string vs = entry.get<std::string>();
109 [&]() -> nlohmann::json
127 [&](
const nlohmann::json& aVal )
129 if( aVal.empty() || !aVal.is_object() )
145 {
"lockedItems",
false },
146 {
"footprints",
true },
151 {
"graphics",
true },
153 {
"keepouts",
true },
154 {
"dimensions",
true },
155 {
"otherItems",
true }
166 HIGH_CONTRAST_MODE::NORMAL, HIGH_CONTRAST_MODE::HIDDEN ) );
182 NET_COLOR_MODE::ALL ) );
189 ZONE_DISPLAY_MODE::SHOW_FILLED, ZONE_DISPLAY_MODE::SHOW_FILLED,
190 ZONE_DISPLAY_MODE::SHOW_TRIANGULATION ) );
211 m_params.emplace_back(
new PARAM<bool>(
"net_inspector_panel.show_zero_pad_nets",
212 &m_NetInspectorPanel.show_zero_pad_nets,
false ) );
213 m_params.emplace_back(
new PARAM<bool>(
"net_inspector_panel.show_unconnected_nets",
214 &m_NetInspectorPanel.show_unconnected_nets,
false ) );
215 m_params.emplace_back(
new PARAM<int>(
"net_inspector_panel.sorting_column",
216 &m_NetInspectorPanel.sorting_column, -1 ) );
217 m_params.emplace_back(
new PARAM<bool>(
"net_inspector_panel.sort_ascending",
218 &m_NetInspectorPanel.sort_order_asc,
true ) );
219 m_params.emplace_back(
new PARAM_LIST<int>(
"net_inspector_panel.col_order",
220 &m_NetInspectorPanel.col_order, {} ) );
221 m_params.emplace_back(
new PARAM_LIST<int>(
"net_inspector_panel.col_widths",
222 &m_NetInspectorPanel.col_widths, {} ) );
223 m_params.emplace_back(
new PARAM_LIST<bool>(
"net_inspector_panel.col_hidden",
224 &m_NetInspectorPanel.col_hidden, {} ) );
226 &m_NetInspectorPanel.expanded_rows, {} ) );
231 [&]() -> nlohmann::json
233 nlohmann::json ret = nlohmann::json::array();
238 file[
"name"] = fileState.fileName;
239 file[
"open"] = fileState.open;
241 nlohmann::json window;
242 window[
"maximized"] = fileState.window.maximized;
243 window[
"size_x"] = fileState.window.size_x;
244 window[
"size_y"] = fileState.window.size_y;
245 window[
"pos_x"] = fileState.window.pos_x;
246 window[
"pos_y"] = fileState.window.pos_y;
247 window[
"display"] = fileState.window.display;
249 file[
"window"] = window;
251 ret.push_back( file );
256 [&](
const nlohmann::json& aVal )
258 if( !aVal.is_array() || aVal.empty() )
263 for(
const nlohmann::json& file : aVal )
269 SetIfPresent( file,
"name", fileState.
fileName );
270 SetIfPresent( file,
"open", fileState.
open );
271 SetIfPresent( file,
"window.size_x", fileState.
window.
size_x );
272 SetIfPresent( file,
"window.size_y", fileState.
window.
size_y );
273 SetIfPresent( file,
"window.pos_x", fileState.
window.
pos_x );
274 SetIfPresent( file,
"window.pos_y", fileState.
window.
pos_y );
276 SetIfPresent( file,
"window.display", fileState.
window.
display );
278 m_files.push_back( fileState );
291 [&]() -> nlohmann::json
295 ret[
"lockedItems"] = m_SchSelectionFilter.lockedItems;
296 ret[
"symbols"] = m_SchSelectionFilter.symbols;
297 ret[
"text"] = m_SchSelectionFilter.text;
298 ret[
"wires"] = m_SchSelectionFilter.wires;
299 ret[
"labels"] = m_SchSelectionFilter.labels;
300 ret[
"pins"] = m_SchSelectionFilter.pins;
301 ret[
"graphics"] = m_SchSelectionFilter.graphics;
302 ret[
"images"] = m_SchSelectionFilter.images;
303 ret[
"otherItems"] = m_SchSelectionFilter.otherItems;
307 [&](
const nlohmann::json& aVal )
309 if( aVal.empty() || !aVal.is_object() )
312 SetIfPresent( aVal,
"lockedItems", m_SchSelectionFilter.lockedItems );
313 SetIfPresent( aVal,
"symbols", m_SchSelectionFilter.symbols );
314 SetIfPresent( aVal,
"text", m_SchSelectionFilter.text );
315 SetIfPresent( aVal,
"wires", m_SchSelectionFilter.wires );
316 SetIfPresent( aVal,
"labels", m_SchSelectionFilter.labels );
317 SetIfPresent( aVal,
"pins", m_SchSelectionFilter.pins );
318 SetIfPresent( aVal,
"graphics", m_SchSelectionFilter.graphics );
319 SetIfPresent( aVal,
"images", m_SchSelectionFilter.images );
320 SetIfPresent( aVal,
"otherItems", m_SchSelectionFilter.otherItems );
323 {
"lockedItems",
false },
329 {
"graphics",
true },
331 {
"otherItems",
true }
334 registerMigration( 1, 2,
342 std::string ptr(
"board.visible_items" );
344 if( Contains( ptr ) )
346 if( At( ptr ).is_array() )
353 At(
"board" ).erase(
"visible_items" );
356 m_wasMigrated =
true;
362 registerMigration( 2, 3,
372 const std::map<int, int> offsets = {
391 std::string ptr(
"board.visible_items" );
393 if( Contains( ptr ) && At( ptr ).is_array() )
395 nlohmann::json visible = nlohmann::json::array();
397 for(
const nlohmann::json& val : At( ptr ) )
401 int layer = val.get<
int>();
403 if( offsets.count( layer ) )
404 visible.push_back( offsets.at( layer ) );
406 visible.push_back( layer );
414 At(
"board" )[
"visible_items"] = visible;
415 m_wasMigrated =
true;
421 registerMigration( 3, 4,
426 std::string ptr(
"board.visible_items" );
428 if( Contains( ptr ) )
430 if( At( ptr ).is_array() )
433 At(
"board" ).erase(
"visible_items" );
435 m_wasMigrated =
true;
441 registerMigration( 4, 5,
446 std::string ptr(
"board.visible_items" );
448 if( Contains( ptr ) && At( ptr ).is_array() )
450 std::vector<std::string> newLayers;
452 for( nlohmann::json& entry : At( ptr ) )
454 if( !entry.is_number_integer() )
457 if( std::optional<VISIBILITY_LAYER> vl =
464 At( ptr ) = newLayers;
465 m_wasMigrated =
true;
488 Set(
"meta.filename",
520 return a.fileName == aFileName;
538 return a.fileName == aFileName;
545 fileState.
open =
false;
553 m_files.push_back( fileState );
558 ( *it ).window = aWindowCfg->
state;
559 ( *it ).open = aOpen;
@ NORMAL
Use all material properties from model file.
HIGH_CONTRAST_MODE
Determine how inactive layers should be displayed.
@ RATSNEST
Net/netclass colors are shown on ratsnest lines only.
int ParseHex(const std::string &str)
Convert the output of FmtHex() and replaces this set's values with those given in the input string.
std::string FmtHex() const
Return a hex string showing contents of this set.
Helper for storing and iterating over GAL_LAYER_IDs.
static GAL_SET DefaultVisible()
std::vector< GAL_LAYER_ID > Seq() const
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...
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)
bool m_deleteLegacyAfterMigration
Whether or not to delete legacy file after migration.
void SetFilename(const wxString &aFilename)
virtual bool SaveToFile(const wxString &aDirectory="", bool aForce=false)
Calls Store() and then writes the contents of the JSON document to a file.
static LSET AllLayersMask()
Stores an enum as an integer.
Like a normal param, but with custom getter and setter functions.
bool SaveAs(const wxString &aDirectory, const wxString &aFile)
LSET m_VisibleLayers
Board settings.
double m_PadOpacity
Opacity override for SMD pads and PTH.
bool SaveToFile(const wxString &aDirectory="", bool aForce=false) override
Calls Store() and then writes the contents of the JSON document to a file.
std::vector< PROJECT_FILE_STATE > m_files
Project scope.
double m_ViaOpacity
Opacity override for all types of via.
PANEL_NET_INSPECTOR_SETTINGS m_NetInspectorPanel
The state of the net inspector panel.
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.
wxString m_GitRepoUsername
PROJECT * m_project
A link to the owning project.
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.
bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
GAL_SET m_VisibleItems
The GAL layers (aka items) that are turned on for viewing (.
std::vector< wxString > m_HiddenNets
A list of netnames that have been manually hidden in the board editor.
PROJECT_LOCAL_SETTINGS(PROJECT *aProject, const wxString &aFilename)
std::set< wxString > m_HiddenNetclasses
void SaveFileState(const wxString &aFileName, const WINDOW_SETTINGS *aWindowCfg, bool aOpen)
double m_ImageOpacity
Opacity override for user images.
const PROJECT_FILE_STATE * GetFileState(const wxString &aFileName)
Container for project specific data.
virtual const wxString GetProjectName() const
Return the short name of the project.
static const std::string ProjectLocalSettingsFileExtension
constexpr PCB_LAYER_ID PCBNEW_LAYER_ID_START
GAL_LAYER_ID
GAL layers are "virtual" layers, i.e.
@ LAYER_ZONES
Control for copper zone opacity/visibility (color ignored).
@ LAYER_SHAPES
Copper graphic shape opacity/visibility (color ignored).
@ LAYER_PADS
Meta control for all pads opacity/visibility (color ignored).
std::optional< VISIBILITY_LAYER > VisibilityLayerFromRenderLayer(GAL_LAYER_ID aLayerId)
GAL_SET UserVisbilityLayers()
The set of GAL_LAYER_IDs that correspond to VISIBILITY_LAYERS.
std::string VisibilityLayerToString(VISIBILITY_LAYER aLayerId)
std::optional< GAL_LAYER_ID > RenderLayerFromVisbilityString(const std::string &aLayer)
const int projectLocalSettingsVersion
std::vector< wxString > custom_group_rules
bool otherItems
Anything not fitting one of the above categories.
bool vias
Vias (all types>
bool keepouts
Keepout zones.
bool graphics
Graphic lines, shapes, polygons.
bool footprints
Allow selecting entire footprints.
bool text
Text (free or attached to a footprint)
bool lockedItems
Allow selecting locked items.
bool tracks
Copper tracks.
bool dimensions
Dimension items.
struct WINDOW_STATE window
Store the common settings that are saved and loaded for each window / frame.