KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_design_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 (C) 2009-2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU 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, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#pragma once
26
27#include <memory>
28#include <optional>
29#include <vector>
30
32#include <eda_units.h>
33#include <lset.h>
35#include <widgets/ui_common.h>
36#include <zone_settings.h>
38#include <router/pns_meander.h>
39
40
41#define DEFAULT_SILK_LINE_WIDTH 0.1
42#define DEFAULT_COPPER_LINE_WIDTH 0.2
43#define DEFAULT_EDGE_WIDTH 0.05
44#define DEFAULT_COURTYARD_WIDTH 0.05
45#define DEFAULT_LINE_WIDTH 0.10
46
47#define DEFAULT_SILK_TEXT_SIZE 1.0
48#define DEFAULT_COPPER_TEXT_SIZE 1.5
49#define DEFAULT_TEXT_SIZE 1.0
50
51#define DEFAULT_SILK_TEXT_WIDTH 0.1
52#define DEFAULT_COPPER_TEXT_WIDTH 0.30
53#define DEFAULT_TEXT_WIDTH 0.15
54
55#define DEFAULT_DIMENSION_ARROW_LENGTH 50 // mils, for legacy purposes
56#define DEFAULT_DIMENSION_EXTENSION_OFFSET 0.5
57
58// Board thickness, mainly for 3D view:
59#define DEFAULT_BOARD_THICKNESS_MM 1.6
60
61#define DEFAULT_PCB_EDGE_THICKNESS 0.15
62
63// soldermask to pad clearance. The default is 0 because usually board houses
64// create a clearance depending on their fab process: mask material, color, price, etc.
65#define DEFAULT_SOLDERMASK_EXPANSION 0.0
66
67#define DEFAULT_SOLDERMASK_TO_COPPER_CLEARANCE 0.0
68
69#define DEFAULT_SOLDERMASK_MIN_WIDTH 0.0
70
71#define DEFAULT_SOLDERPASTE_CLEARANCE 0.0
72#define DEFAULT_SOLDERPASTE_RATIO 0.0
73
74#define DEFAULT_CUSTOMTRACKWIDTH 0.2
75#define DEFAULT_CUSTOMDPAIRWIDTH 0.125
76#define DEFAULT_CUSTOMDPAIRGAP 0.18
77#define DEFAULT_CUSTOMDPAIRVIAGAP 0.18
78
79#define DEFAULT_MEANDER_SPACING 0.6
80#define DEFAULT_DP_MEANDER_SPACING 1.0
81
82#define DEFAULT_MINCLEARANCE 0.0 // overall min clearance
83#define DEFAULT_MINCONNECTION 0.0 // overall min connection width
84#define DEFAULT_TRACKMINWIDTH 0.2 // track width min value (mm)
85#define DEFAULT_VIASMINSIZE 0.5 // vias (not micro vias) min diameter
86#define DEFAULT_MINTHROUGHDRILL 0.3 // through holes (not micro vias) min drill diameter
87#define DEFAULT_MICROVIASMINSIZE 0.2 // micro vias (not vias) min diameter
88#define DEFAULT_MICROVIASMINDRILL 0.1 // micro vias (not vias) min drill diameter
89#define DEFAULT_HOLETOHOLEMIN 0.25 // minimum web thickness between two drilled holes
90#define DEFAULT_HOLECLEARANCE 0.25 // copper-to-hole clearance (from IPC level A)
91
92#define DEFAULT_COPPEREDGECLEARANCE 0.5 // clearance between copper items and edge cuts
93#define LEGACY_COPPEREDGECLEARANCE -0.01 // A flag to indicate the legacy method (based
94 // on edge cut line thicknesses) should be used.
95#define DEFAULT_SILKCLEARANCE 0.0
96#define DEFAULT_MINGROOVEWIDTH 0.0
97
98#define DEFAULT_MINRESOLVEDSPOKES 2 // Fewer resolved spokes indicates a starved thermal
99
100#define MINIMUM_ERROR_SIZE_MM 0.001 // For arc approximation
101#define MAXIMUM_ERROR_SIZE_MM 0.1 // For arc approximation
102
103class DRC_ENGINE;
104class NET_SETTINGS;
105class NETCLASS;
106
107#define MAXIMUM_CLEARANCE pcbIUScale.mmToIU( 500 ) // to prevent int-overflows
108
109// Min/max values used in dialogs to validate settings
110#define MINIMUM_LINE_WIDTH_MM 0.005 // minimal line width entered in a dialog
111#define MAXIMUM_LINE_WIDTH_MM 100.0 // max line width entered in a dialog
112
113// Default pad properties
114#define DEFAULT_PAD_WIDTH_MM 2.54
115#define DEFAULT_PAD_HEIGTH_MM 1.27
116#define DEFAULT_PAD_DRILL_DIAMETER_MM 0.8
117#define DEFAULT_PAD_RR_RADIUS_RATIO 0.15
118
124{
125 int m_Diameter; // <= 0 means use Netclass via diameter
126 int m_Drill; // <= 0 means use Netclass via drill
127
129 {
130 m_Diameter = 0;
131 m_Drill = 0;
132 }
133
134 VIA_DIMENSION( int aDiameter, int aDrill )
135 {
136 m_Diameter = aDiameter;
137 m_Drill = aDrill;
138 }
139
140 bool operator==( const VIA_DIMENSION& aOther ) const
141 {
142 return ( m_Diameter == aOther.m_Diameter ) && ( m_Drill == aOther.m_Drill );
143 }
144
145 bool operator!=( const VIA_DIMENSION& aOther ) const { return !operator==( aOther ); }
146
147 bool operator<( const VIA_DIMENSION& aOther ) const
148 {
149 if( m_Diameter != aOther.m_Diameter )
150 return m_Diameter < aOther.m_Diameter;
151
152 return m_Drill < aOther.m_Drill;
153 }
154};
155
156
162{
163 int m_Width; // <= 0 means use Netclass differential pair width
164 int m_Gap; // <= 0 means use Netclass differential pair gap
165 int m_ViaGap; // <= 0 means use Netclass differential pair via gap
166
168 {
169 m_Width = 0;
170 m_Gap = 0;
171 m_ViaGap = 0;
172 }
173
174 DIFF_PAIR_DIMENSION( int aWidth, int aGap, int aViaGap )
175 {
176 m_Width = aWidth;
177 m_Gap = aGap;
178 m_ViaGap = aViaGap;
179 }
180
181 bool operator==( const DIFF_PAIR_DIMENSION& aOther ) const
182 {
183 return ( m_Width == aOther.m_Width )
184 && ( m_Gap == aOther.m_Gap )
185 && ( m_ViaGap == aOther.m_ViaGap );
186 }
187
188 bool operator!=( const DIFF_PAIR_DIMENSION& aOther ) const { return !operator==( aOther ); }
189
190 bool operator<( const DIFF_PAIR_DIMENSION& aOther ) const
191 {
192 if( m_Width != aOther.m_Width )
193 return m_Width < aOther.m_Width;
194
195 if( m_Gap != aOther.m_Gap )
196 return m_Gap < aOther.m_Gap;
197
198 return m_ViaGap < aOther.m_ViaGap;
199 }
200};
201
202
203enum
204{
211
213};
214
215
217{
218 wxString m_Text;
221
222 TEXT_ITEM_INFO( const wxString& aText, bool aVisible, PCB_LAYER_ID aLayer )
223 {
224 m_Text = aText;
225 m_Visible = aVisible;
226 m_Layer = aLayer;
227 }
228
229 bool operator==( const TEXT_ITEM_INFO& aOther ) const
230 {
231 return m_Text.IsSameAs( aOther.m_Text )
232 && ( m_Visible == aOther.m_Visible )
233 && ( m_Layer == aOther.m_Layer );
234 }
235};
236
237
238// forward declaration from class_track.h
239enum class VIATYPE : int;
240
241// forward declarations from dimension.h
242enum class DIM_UNITS_FORMAT : int;
243enum class DIM_TEXT_POSITION : int;
244enum class DIM_UNITS_MODE : int;
245enum class DIM_PRECISION : int;
246
247class PAD;
248
253{
254public:
255 BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std::string& aPath );
256
257 virtual ~BOARD_DESIGN_SETTINGS();
258
260 {
261 wxString setting_name;
263 };
264
265 bool operator==( const BOARD_DESIGN_SETTINGS& aOther ) const;
266 bool operator!=( const BOARD_DESIGN_SETTINGS& aOther ) const
267 {
268 return !operator==( aOther );
269 }
270
272
274
275 bool LoadFromFile( const wxString& aDirectory = "" ) override;
276
279
284
285 SEVERITY GetSeverity( int aDRCErrorCode );
286
290 bool Ignore( int aDRCErrorCode );
291
297 std::vector<VALIDATION_ERROR> ValidateDesignRules(
298 std::optional<EDA_UNITS> aUnits = std::nullopt ) const;
299
304
305 void SetDefaultZoneSettings( const ZONE_SETTINGS& aSettings )
306 {
307 m_defaultZoneSettings = aSettings;
308 }
309
313 inline const wxString& GetCurrentNetClassName() const
314 {
316 }
317
321 inline bool UseNetClassTrack() const { return ( m_trackWidthIndex <= 0 && !m_useCustomTrackVia ); }
322
326 inline bool UseNetClassVia() const { return ( m_viaSizeIndex <= 0 && !m_useCustomTrackVia ); }
327
331 inline bool UseNetClassDiffPair() const
332 {
333 return ( m_diffPairIndex == 0 && !m_useCustomDiffPair );
334 }
335
339 int GetBiggestClearanceValue() const;
340
344 int GetSmallestClearanceValue() const;
345
349 inline int GetTrackWidthIndex() const { return m_trackWidthIndex; }
350
356 void SetTrackWidthIndex( int aIndex );
357
363 int GetCurrentTrackWidth() const;
364
373 inline void SetCustomTrackWidth( int aWidth ) { m_customTrackWidth = aWidth; }
374 inline int GetCustomTrackWidth() const { return m_customTrackWidth; }
375
379 inline int GetViaSizeIndex() const { return m_viaSizeIndex; }
380
386 void SetViaSizeIndex( int aIndex );
387
393 int GetCurrentViaSize() const;
394
403 inline void SetCustomViaSize( int aSize )
404 {
405 m_customViaSize.m_Diameter = aSize;
406 }
407
411 inline int GetCustomViaSize() const
412 {
413 return m_customViaSize.m_Diameter;
414 }
415
421 int GetCurrentViaDrill() const;
422
431 inline void SetCustomViaDrill( int aDrill )
432 {
433 m_customViaSize.m_Drill = aDrill;
434 }
435
439 inline int GetCustomViaDrill() const
440 {
441 return m_customViaSize.m_Drill;
442 }
443
452 inline void UseCustomTrackViaSize( bool aEnabled )
453 {
454 m_useCustomTrackVia = aEnabled;
455 }
456
460 inline bool UseCustomTrackViaSize() const
461 {
462 return m_useCustomTrackVia;
463 }
464
468 inline int GetDiffPairIndex() const { return m_diffPairIndex; }
469
473 void SetDiffPairIndex( int aIndex );
474
481 inline void SetCustomDiffPairWidth( int aWidth )
482 {
483 m_customDiffPair.m_Width = aWidth;
484 }
485
490 {
491 return m_customDiffPair.m_Width;
492 }
493
499 inline void SetCustomDiffPairGap( int aGap )
500 {
501 m_customDiffPair.m_Gap = aGap;
502 }
503
509 {
510 return m_customDiffPair.m_Gap;
511 }
512
519 inline void SetCustomDiffPairViaGap( int aGap )
520 {
521 m_customDiffPair.m_ViaGap = aGap;
522 }
523
528 {
529 return m_customDiffPair.m_ViaGap > 0 ? m_customDiffPair.m_ViaGap : m_customDiffPair.m_Gap;
530 }
531
537 inline void UseCustomDiffPairDimensions( bool aEnabled )
538 {
539 m_useCustomDiffPair = aEnabled;
540 }
541
545 inline bool UseCustomDiffPairDimensions() const
546 {
547 return m_useCustomDiffPair;
548 }
549
554 int GetCurrentDiffPairWidth() const;
555
560 int GetCurrentDiffPairGap() const;
561
567 int GetCurrentDiffPairViaGap() const;
568
574 inline const LSET& GetEnabledLayers() const
575 {
576 return m_enabledLayers;
577 }
578
584 void SetEnabledLayers( const LSET& aMask );
585
592 inline bool IsLayerEnabled( PCB_LAYER_ID aLayerId ) const
593 {
594 if( aLayerId >= 0 && aLayerId < PCB_LAYER_ID_COUNT )
595 return m_enabledLayers[aLayerId];
596
597 return false;
598 }
599
603 inline int GetCopperLayerCount() const
604 {
605 return m_copperLayerCount;
606 }
607
613 void SetCopperLayerCount( int aNewLayerCount );
614
618 inline int GetUserDefinedLayerCount() const
619 {
621 }
622
628 void SetUserDefinedLayerCount( int aNewLayerCount );
629
634 inline int GetBoardThickness() const { return m_boardThickness; }
635 inline void SetBoardThickness( int aThickness ) { m_boardThickness = aThickness; }
636
643 int GetDRCEpsilon() const;
644
650 int GetHolePlatingThickness() const;
651
655 int GetLineThickness( PCB_LAYER_ID aLayer ) const;
656
660 VECTOR2I GetTextSize( PCB_LAYER_ID aLayer ) const;
661
665 int GetTextThickness( PCB_LAYER_ID aLayer ) const;
666
667 bool GetTextItalic( PCB_LAYER_ID aLayer ) const;
668 bool GetTextUpright( PCB_LAYER_ID aLayer ) const;
669
670 int GetLayerClass( PCB_LAYER_ID aLayer ) const;
671
672 void SetAuxOrigin( const VECTOR2I& aOrigin ) { m_auxOrigin = aOrigin; }
673 const VECTOR2I& GetAuxOrigin() const { return m_auxOrigin; }
674
675 void SetGridOrigin( const VECTOR2I& aOrigin ) { m_gridOrigin = aOrigin; }
676 const VECTOR2I& GetGridOrigin() const { return m_gridOrigin; }
677
678 void SetDefaultMasterPad();
679
680private:
681 void initFromOther( const BOARD_DESIGN_SETTINGS& aOther );
682
683 bool migrateSchema0to1();
684
685public:
686 // Note: the first value in each dimensions list is the current netclass value
687 std::vector<int> m_TrackWidthList;
688 std::vector<VIA_DIMENSION> m_ViasDimensionsList;
689 std::vector<DIFF_PAIR_DIMENSION> m_DiffPairDimensionsList;
690
697
701
703
704 bool m_UseConnectedTrackWidth; // use width of existing track when creating a new,
705 // connected track
706 bool m_TempOverrideTrackWidth; // use selected track width temporarily even when
707 // using connected track width
708 int m_MinClearance; // overall min
709 int m_MinGrooveWidth; // Minimum groove width for creepage checks
710 int m_MinConn; // overall min connection width
711 int m_TrackMinWidth; // overall min track width
712 int m_ViasMinAnnularWidth; // overall minimum width of the via copper ring
713 int m_ViasMinSize; // overall vias (not micro vias) min diameter
714 int m_MinThroughDrill; // through hole (not micro vias) min drill diameter
715 int m_MicroViasMinSize; // micro vias min diameter
716 int m_MicroViasMinDrill; // micro vias min drill diameter
718 int m_HoleClearance; // Hole to copper clearance
719 int m_HoleToHoleMin; // Min width of web between two drilled holes
720 int m_SilkClearance; // Min dist between two silk items
721 int m_MinResolvedSpokes; // Min spoke count to not be a starved thermal
722 int m_MinSilkTextHeight; // Min text height for silkscreen layers
723 int m_MinSilkTextThickness; // Min text thickness for silkscreen layers
724
725 std::shared_ptr<DRC_ENGINE> m_DRCEngine;
726 std::map<int, SEVERITY> m_DRCSeverities; // Map from DRCErrorCode to SEVERITY
727 std::set<wxString> m_DrcExclusions; // Serialized excluded DRC markers
728 std::map<wxString, wxString> m_DrcExclusionComments; // Map from serialization to comment
729
730 // When smoothing the zone's outline there's the question of external fillets (that is, those
731 // applied to concave corners). While it seems safer to never have copper extend outside the
732 // zone outline, 5.1.x and prior did indeed fill them so we leave the mode available.
734
735 // Maximum error allowed when approximating circles and arcs to segments
737
738 // Global mask margins:
739 int m_SolderMaskExpansion; // Solder mask inflation around the pad or via
740 int m_SolderMaskMinWidth; // Solder mask min width (2 areas closer than this
741 // width are merged)
742 int m_SolderMaskToCopperClearance; // Min distance allowed from copper to a mask
743 // aperture of another net
744
745 int m_SolderPasteMargin; // Solder paste margin absolute value
746 double m_SolderPasteMarginRatio; // Solder mask margin ratio value of pad size
747 // The final margin is the sum of these 2 values
749
750 bool m_TentViasFront; // The default tenting option if not overridden on an
751 bool m_TentViasBack; // individual via
752
753 bool m_CoverViasFront; // The default covering option if not overridden on an
754 bool m_CoverViasBack; // individual via
755
756 bool m_PlugViasFront; // The default plugging option if not overridden on an
757 bool m_PlugViasBack; // individual via
758
759 bool m_CapVias; // The default capping option if not overridden on an
760 // individual via
761
762 bool m_FillVias; // The default filling option if not overridden on ana
763 // individual via
764
765 std::shared_ptr<NET_SETTINGS> m_NetSettings;
766
767 // Variables used in footprint editing (default value in item/footprint creation)
768 std::vector<TEXT_ITEM_INFO> m_DefaultFPTextItems;
769
770 // Map between user layer default names and custom names
771 std::map<std::string, wxString> m_UserLayerNames;
772
773 // Default zone hatching offsets
774 std::map<PCB_LAYER_ID, ZONE_LAYER_PROPERTIES> m_ZoneLayerProperties;
775
776 // Arrays of default values for the various layer classes.
782
783 // Default values for dimension objects
792
798
799 // Miscellaneous
800 std::unique_ptr<PAD> m_Pad_Master; // A dummy pad to store all default parameters
801 // when importing values or creating a new pad
802
803 // Set to true if the board has a stackup management.
804 // If not set a default basic stackup will be used to generate the gbrjob file.
805 // Could be removed later, or at least always set to true
807
810
811private:
814
815 // Indices into the trackWidth, viaSizes and diffPairDimensions lists.
816 // The 0 index is always the current netclass value(s)
820
821 // Custom values for track/via sizes (specified via dialog instead of netclass or lists)
825
826 // Custom values for differential pairs (specified via dialog instead of netclass/lists)
829
833
835
839
847
850};
@ LAYER_CLASS_OTHERS
@ LAYER_CLASS_COUNT
@ LAYER_CLASS_FAB
@ LAYER_CLASS_COURTYARD
@ LAYER_CLASS_SILK
@ LAYER_CLASS_COPPER
@ LAYER_CLASS_EDGES
Container for design settings for a BOARD object.
DIM_PRECISION m_DimensionPrecision
Number of digits after the decimal.
TEARDROP_PARAMETERS_LIST * GetTeadropParamsList()
void UseCustomTrackViaSize(bool aEnabled)
Enables/disables custom track/via size settings.
std::vector< TEXT_ITEM_INFO > m_DefaultFPTextItems
int GetHolePlatingThickness() const
Pad & via drills are finish size.
void SetCustomDiffPairWidth(int aWidth)
Sets custom track width for differential pairs (i.e.
VIATYPE m_CurrentViaType
(VIA_BLIND_BURIED, VIA_THROUGH, VIA_MICROVIA)
int GetCustomDiffPairGap()
Function GetCustomDiffPairGap.
void SetEnabledLayers(const LSET &aMask)
Change the bit-mask of enabled layers to aMask.
std::shared_ptr< NET_SETTINGS > m_NetSettings
bool operator==(const BOARD_DESIGN_SETTINGS &aOther) const
void SetCustomTrackWidth(int aWidth)
Sets custom width for track (i.e.
std::map< wxString, wxString > m_DrcExclusionComments
DIM_UNITS_FORMAT m_DimensionUnitsFormat
void initFromOther(const BOARD_DESIGN_SETTINGS &aOther)
bool GetTextUpright(PCB_LAYER_ID aLayer) const
std::map< int, SEVERITY > m_DRCSeverities
VECTOR2I m_gridOrigin
origin for grid offsets
int GetTextThickness(PCB_LAYER_ID aLayer) const
Return the default text thickness from the layer class for the given layer.
std::map< PCB_LAYER_ID, ZONE_LAYER_PROPERTIES > m_ZoneLayerProperties
void SetGridOrigin(const VECTOR2I &aOrigin)
VECTOR2I m_auxOrigin
origin for plot exports
bool m_TextUpright[LAYER_CLASS_COUNT]
BOARD_DESIGN_SETTINGS(JSON_SETTINGS *aParent, const std::string &aPath)
bool GetTextItalic(PCB_LAYER_ID aLayer) const
const wxString & GetCurrentNetClassName() const
wxString m_currentNetClassName
Current net class name used to display netclass info.
void SetViaSizeIndex(int aIndex)
Set the current via size list index to aIndex.
std::shared_ptr< DRC_ENGINE > m_DRCEngine
std::vector< DIFF_PAIR_DIMENSION > m_DiffPairDimensionsList
std::set< wxString > m_DrcExclusions
bool Ignore(int aDRCErrorCode)
Return true if the DRC error code's severity is SEVERITY_IGNORE.
void SetCustomViaSize(int aSize)
Set custom size for via diameter (i.e.
const LSET & GetEnabledLayers() const
Return a bit-mask of all the layers that are enabled.
std::map< std::string, wxString > m_UserLayerNames
const VECTOR2I & GetGridOrigin() const
int GetBoardThickness() const
The full thickness of the board including copper and masks.
std::unique_ptr< PAD > m_Pad_Master
void SetCustomDiffPairGap(int aGap)
Sets custom gap for differential pairs (i.e.
bool IsLayerEnabled(PCB_LAYER_ID aLayerId) const
Test whether a given layer aLayerId is enabled.
TEARDROP_PARAMETERS_LIST m_TeardropParamsList
The parameters of teardrops for the different teardrop targets (via/pad, track end).
void SetUserDefinedLayerCount(int aNewLayerCount)
Set the number of user defined layers to aNewLayerCount.
void SetAuxOrigin(const VECTOR2I &aOrigin)
const VECTOR2I & GetAuxOrigin() const
bool operator!=(const BOARD_DESIGN_SETTINGS &aOther) const
int GetDRCEpsilon() const
Return an epsilon which accounts for rounding errors, etc.
int GetLayerClass(PCB_LAYER_ID aLayer) const
PNS::MEANDER_SETTINGS m_DiffPairMeanderSettings
bool UseNetClassVia() const
Return true if netclass values should be used to obtain appropriate via size.
BOARD_STACKUP & GetStackupDescriptor()
int m_boardThickness
Board thickness for 3D viewer.
int m_copperLayerCount
Number of copper layers for this design.
bool UseNetClassTrack() const
Return true if netclass values should be used to obtain appropriate track width.
int m_userDefinedLayerCount
Number of user defined layers for this design.
bool UseNetClassDiffPair() const
Return true if netclass values should be used to obtain appropriate diff pair dimensions.
void SetCustomViaDrill(int aDrill)
Sets custom size for via drill (i.e.
bool LoadFromFile(const wxString &aDirectory="") override
Loads the backing file from disk and then calls Load()
void SetDefaultZoneSettings(const ZONE_SETTINGS &aSettings)
PNS::MEANDER_SETTINGS m_SingleTrackMeanderSettings
void SetTrackWidthIndex(int aIndex)
Set the current track width list index to aIndex.
int m_TextThickness[LAYER_CLASS_COUNT]
ZONE_SETTINGS m_defaultZoneSettings
The default settings that will be used for new zones.
const BOARD_STACKUP & GetStackupDescriptor() const
void UseCustomDiffPairDimensions(bool aEnabled)
Enables/disables custom differential pair dimensions.
SEVERITY GetSeverity(int aDRCErrorCode)
std::vector< int > m_TrackWidthList
DIFF_PAIR_DIMENSION m_customDiffPair
std::vector< VALIDATION_ERROR > ValidateDesignRules(std::optional< EDA_UNITS > aUnits=std::nullopt) const
Validate design settings values and return per-field errors.
int m_LineThickness[LAYER_CLASS_COUNT]
VECTOR2I GetTextSize(PCB_LAYER_ID aLayer) const
Return the default text size from the layer class for the given layer.
void SetBoardThickness(int aThickness)
int GetLineThickness(PCB_LAYER_ID aLayer) const
Return the default graphic segment thickness from the layer class for the given layer.
ZONE_SETTINGS & GetDefaultZoneSettings()
bool m_UseHeightForLengthCalcs
Enable inclusion of stackup height in track length measurements and length tuning.
VECTOR2I m_TextSize[LAYER_CLASS_COUNT]
PNS::MEANDER_SETTINGS m_SkewMeanderSettings
LSET m_enabledLayers
Bit-mask for layer enabling.
bool m_TextItalic[LAYER_CLASS_COUNT]
void SetCopperLayerCount(int aNewLayerCount)
Set the copper layer count to aNewLayerCount.
DIM_TEXT_POSITION m_DimensionTextPosition
BOARD_STACKUP m_stackup
The description of layers stackup, for board fabrication only physical layers are in layers stackup.
std::vector< VIA_DIMENSION > m_ViasDimensionsList
BOARD_DESIGN_SETTINGS & operator=(const BOARD_DESIGN_SETTINGS &aOther)
void SetCustomDiffPairViaGap(int aGap)
Sets custom via gap for differential pairs (i.e.
Manage layers needed to make a physical board.
Design Rule Checker object that performs all the DRC tests.
Definition drc_engine.h:133
JSON_SETTINGS(const wxString &aFilename, SETTINGS_LOC aLocation, int aSchemaVersion)
LSET is a set of PCB_LAYER_IDs.
Definition lset.h:37
NESTED_SETTINGS(const std::string &aName, int aSchemaVersion, JSON_SETTINGS *aParent, const std::string &aPath, bool aLoadFromFile=true)
A collection of nets and the parameters used to route or test these nets.
Definition netclass.h:42
NET_SETTINGS stores various net-related settings in a project context.
Definition pad.h:55
Dimensions for the meandering algorithm.
Definition pns_meander.h:70
TEARDROP_PARAMETERS_LIST is a helper class to handle the list of TEARDROP_PARAMETERS needed to build ...
ZONE_SETTINGS handles zones parameters.
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:60
@ PCB_LAYER_ID_COUNT
Definition layer_ids.h:171
DIM_TEXT_POSITION
Where to place the text on a dimension.
DIM_UNITS_FORMAT
How to display the units in a dimension's text.
DIM_UNITS_MODE
Used for storing the units selection in the file because EDA_UNITS alone doesn't cut it.
DIM_PRECISION
VIATYPE
SEVERITY
Container to handle a stock of specific differential pairs each with unique track width,...
DIFF_PAIR_DIMENSION(int aWidth, int aGap, int aViaGap)
bool operator<(const DIFF_PAIR_DIMENSION &aOther) const
bool operator==(const DIFF_PAIR_DIMENSION &aOther) const
bool operator!=(const DIFF_PAIR_DIMENSION &aOther) const
TEXT_ITEM_INFO(const wxString &aText, bool aVisible, PCB_LAYER_ID aLayer)
bool operator==(const TEXT_ITEM_INFO &aOther) const
Container to handle a stock of specific vias each with unique diameter and drill sizes in the BOARD c...
bool operator==(const VIA_DIMENSION &aOther) const
VIA_DIMENSION(int aDiameter, int aDrill)
bool operator!=(const VIA_DIMENSION &aOther) const
bool operator<(const VIA_DIMENSION &aOther) const
Functions to provide common constants and other functions to assist in making a consistent UI.
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:687
Class ZONE_SETTINGS used to handle zones parameters in dialogs.