KiCad PCB EDA Suite
ZONE_SETTINGS Class Reference

ZONE_SETTINGS handles zones parameters. More...

#include <zone_settings.h>

Public Types

enum  {
  SMOOTHING_UNDEFINED = -1 , SMOOTHING_NONE = 0 , SMOOTHING_CHAMFER , SMOOTHING_FILLET ,
  SMOOTHING_LAST
}
 

Public Member Functions

 ZONE_SETTINGS ()
 
ZONE_SETTINGSoperator<< (const ZONE &aSource)
 operator << ( const ZONE& ) was Function ImportSetting copies settings from a given zone into this object. More...
 
void SetupLayersList (wxDataViewListCtrl *aList, PCB_BASE_FRAME *aFrame, LSET aLayers, bool aFpEditorMode)
 A helper routine for the various zone dialogs (copper, non-copper, keepout). More...
 
void ExportSetting (ZONE &aTarget, bool aFullExport=true) const
 Function ExportSetting copy settings to a given zone. More...
 
void SetCornerSmoothingType (int aType)
 
int GetCornerSmoothingType () const
 
void SetCornerRadius (int aRadius)
 
unsigned int GetCornerRadius () const
 
ZONE_CONNECTION GetPadConnection () const
 
void SetPadConnection (ZONE_CONNECTION aPadConnection)
 
const bool GetIsRuleArea () const
 Accessors to parameters used in Rule Area zones: More...
 
const bool GetDoNotAllowCopperPour () const
 
const bool GetDoNotAllowVias () const
 
const bool GetDoNotAllowTracks () const
 
const bool GetDoNotAllowPads () const
 
const bool GetDoNotAllowFootprints () const
 
void SetIsRuleArea (bool aEnable)
 
void SetDoNotAllowCopperPour (bool aEnable)
 
void SetDoNotAllowVias (bool aEnable)
 
void SetDoNotAllowTracks (bool aEnable)
 
void SetDoNotAllowPads (bool aEnable)
 
void SetDoNotAllowFootprints (bool aEnable)
 
const ISLAND_REMOVAL_MODE GetIslandRemovalMode () const
 
void SetIslandRemovalMode (ISLAND_REMOVAL_MODE aRemove)
 
long long int GetMinIslandArea () const
 
void SetMinIslandArea (long long int aArea)
 

Public Attributes

unsigned m_ZonePriority
 
ZONE_FILL_MODE m_FillMode
 
int m_ZoneClearance
 
int m_ZoneMinThickness
 
int m_HatchThickness
 
int m_HatchGap
 
EDA_ANGLE m_HatchOrientation
 
int m_HatchSmoothingLevel
 
double m_HatchSmoothingValue
 
double m_HatchHoleMinArea
 
int m_HatchBorderAlgorithm
 
int m_NetcodeSelection
 
wxString m_Name
 
LSET m_Layers
 
ZONE_BORDER_DISPLAY_STYLE m_ZoneBorderDisplayStyle
 Option to show the zone area (outlines only, short hatches or full hatches. More...
 
int m_BorderHatchPitch
 
long m_ThermalReliefGap
 
long m_ThermalReliefSpokeWidth
 
bool m_Locked
 
TEARDROP_TYPE m_TeardropType
 

Private Attributes

int m_cornerSmoothingType
 
unsigned int m_cornerRadius
 
ZONE_CONNECTION m_padConnection
 
bool m_isRuleArea
 
bool m_keepoutDoNotAllowCopperPour
 
bool m_keepoutDoNotAllowVias
 
bool m_keepoutDoNotAllowTracks
 
bool m_keepoutDoNotAllowPads
 
bool m_keepoutDoNotAllowFootprints
 
ISLAND_REMOVAL_MODE m_removeIslands
 
long long int m_minIslandArea
 

Detailed Description

ZONE_SETTINGS handles zones parameters.

Because a zone can be on copper or non copper layers, and can be also a keepout area, some parameters are irrelevant depending on the type of zone

Definition at line 69 of file zone_settings.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
SMOOTHING_UNDEFINED 
SMOOTHING_NONE 
SMOOTHING_CHAMFER 
SMOOTHING_FILLET 
SMOOTHING_LAST 

Definition at line 73 of file zone_settings.h.

73 {
75 SMOOTHING_NONE = 0, // Zone outline is used without change
76 SMOOTHING_CHAMFER, // Zone outline is used after chamfering corners
77 SMOOTHING_FILLET, // Zone outline is used after rounding corners
78 SMOOTHING_LAST // sentinel
79 };

Constructor & Destructor Documentation

◆ ZONE_SETTINGS()

ZONE_SETTINGS::ZONE_SETTINGS ( )

Definition at line 38 of file zone_settings.cpp.

39{
41 m_FillMode = ZONE_FILL_MODE::POLYGONS; // Mode for filling zone
42 // Zone clearance value
44 // Min thickness value in filled areas (this is the minimum width of copper to fill solid areas) :
46 // Arbitrary defaults for the hatch settings
47 m_HatchThickness = std::max( m_ZoneMinThickness * 4, pcbIUScale.mmToIU( 1.0 ) );
48 m_HatchGap = std::max( m_ZoneMinThickness * 6, pcbIUScale.mmToIU( 1.5 ) );
49 m_HatchOrientation = ANGLE_0; // Grid style: orientation of grid lines
50 m_HatchSmoothingLevel = 0; // Grid pattern smoothing type. 0 = no smoothing
51 m_HatchSmoothingValue = 0.1; // Grid pattern chamfer value relative to the gap value
52 m_HatchHoleMinArea = 0.3; // Min size before holes are dropped (ratio of hole size)
53 m_HatchBorderAlgorithm = 1; // 0 = use zone min thickness; 1 = use hatch width
54 m_NetcodeSelection = 0; // Net code selection for the current zone
56 // outlines only, short
57 // hatches or full hatches
59
60 m_Layers.reset().set( F_Cu );
61 m_Name = wxEmptyString;
62
63 // thickness of the gap in thermal reliefs:
65 // thickness of the copper bridge in thermal reliefs:
67
68 m_padConnection = ZONE_CONNECTION::THERMAL; // How pads are covered by copper in zone
69
70 m_Locked = false;
71
74
77
78 SetIsRuleArea( false );
80 SetDoNotAllowVias( true );
81 SetDoNotAllowTracks( true );
82 SetDoNotAllowPads( true );
84
86}
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:109
void SetIsRuleArea(bool aEnable)
unsigned int m_cornerRadius
EDA_ANGLE m_HatchOrientation
Definition: zone_settings.h:88
int m_HatchBorderAlgorithm
Definition: zone_settings.h:93
void SetDoNotAllowVias(bool aEnable)
int m_NetcodeSelection
Definition: zone_settings.h:95
long long int m_minIslandArea
double m_HatchSmoothingValue
Definition: zone_settings.h:91
int m_cornerSmoothingType
void SetDoNotAllowTracks(bool aEnable)
ISLAND_REMOVAL_MODE m_removeIslands
double m_HatchHoleMinArea
Definition: zone_settings.h:92
int m_ZoneMinThickness
Definition: zone_settings.h:85
long m_ThermalReliefSpokeWidth
TEARDROP_TYPE m_TeardropType
unsigned m_ZonePriority
Definition: zone_settings.h:81
wxString m_Name
Definition: zone_settings.h:97
ZONE_FILL_MODE m_FillMode
Definition: zone_settings.h:83
ZONE_CONNECTION m_padConnection
long m_ThermalReliefGap
void SetDoNotAllowFootprints(bool aEnable)
void SetDoNotAllowPads(bool aEnable)
int m_HatchSmoothingLevel
Definition: zone_settings.h:89
ZONE_BORDER_DISPLAY_STYLE m_ZoneBorderDisplayStyle
Option to show the zone area (outlines only, short hatches or full hatches.
void SetDoNotAllowCopperPour(bool aEnable)
static constexpr EDA_ANGLE & ANGLE_0
Definition: eda_angle.h:429
@ F_Cu
Definition: layer_ids.h:64
const double IU_PER_MM
Definition: base_units.h:77
constexpr int mmToIU(double mm) const
Definition: base_units.h:89
#define ZONE_THERMAL_RELIEF_GAP_MM
Definition: zones.h:33
@ THERMAL
Use thermal relief for pads.
#define ZONE_BORDER_HATCH_DIST_MM
Definition: zones.h:39
#define ZONE_THERMAL_RELIEF_COPPER_WIDTH_MM
Definition: zones.h:34
#define ZONE_CLEARANCE_MM
Definition: zones.h:37
#define ZONE_THICKNESS_MM
Definition: zones.h:35

References ALWAYS, ANGLE_0, DIAGONAL_EDGE, F_Cu, EDA_IU_SCALE::IU_PER_MM, m_BorderHatchPitch, m_cornerRadius, m_cornerSmoothingType, m_FillMode, m_HatchBorderAlgorithm, m_HatchGap, m_HatchHoleMinArea, m_HatchOrientation, m_HatchSmoothingLevel, m_HatchSmoothingValue, m_HatchThickness, m_Layers, m_Locked, m_minIslandArea, m_Name, m_NetcodeSelection, m_padConnection, m_removeIslands, m_TeardropType, m_ThermalReliefGap, m_ThermalReliefSpokeWidth, m_ZoneBorderDisplayStyle, m_ZoneClearance, m_ZoneMinThickness, m_ZonePriority, EDA_IU_SCALE::mmToIU(), pcbIUScale, POLYGONS, SetDoNotAllowCopperPour(), SetDoNotAllowFootprints(), SetDoNotAllowPads(), SetDoNotAllowTracks(), SetDoNotAllowVias(), SetIsRuleArea(), SMOOTHING_NONE, TD_NONE, THERMAL, ZONE_BORDER_HATCH_DIST_MM, ZONE_CLEARANCE_MM, ZONE_THERMAL_RELIEF_COPPER_WIDTH_MM, ZONE_THERMAL_RELIEF_GAP_MM, and ZONE_THICKNESS_MM.

Member Function Documentation

◆ ExportSetting()

void ZONE_SETTINGS::ExportSetting ( ZONE aTarget,
bool  aFullExport = true 
) const

Function ExportSetting copy settings to a given zone.

Parameters
aTargetthe given zone
aFullExportif false: some parameters are NOT exported because they must not be exported when export settings from a zone to others zones Currently: m_NetcodeSelection

Definition at line 132 of file zone_settings.cpp.

133{
134 aTarget.SetFillMode( m_FillMode );
138 aTarget.SetHatchGap( m_HatchGap );
149 aTarget.SetIsRuleArea( GetIsRuleArea() );
155 aTarget.SetLocked( m_Locked );
158 // Currently, the teardrop area type is not imported from a ZONE_SETTINGS, because
159 // it is not really a ZONE_SETTINGS parameter, but a ZONE parameter only
160#if 0
162#endif
163
164
165 if( aFullExport )
166 {
168 aTarget.SetLayerSet( m_Layers );
169 aTarget.SetZoneName( m_Name );
170
171 if( !m_isRuleArea )
173 }
174
175 // call SetBorderDisplayStyle last, because hatch lines will be rebuilt,
176 // using new parameters values
178 m_BorderHatchPitch, true );
179}
bool SetNetCode(int aNetCode, bool aNoAssert)
Set net using a net code.
virtual void SetLocked(bool aLocked)
Definition: board_item.h:266
const ISLAND_REMOVAL_MODE GetIslandRemovalMode() const
const bool GetDoNotAllowCopperPour() const
const bool GetDoNotAllowFootprints() const
const bool GetDoNotAllowVias() const
const bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
const bool GetDoNotAllowTracks() const
long long int GetMinIslandArea() const
const bool GetDoNotAllowPads() const
void SetHatchThickness(int aThickness)
Definition: zone.h:267
void SetHatchBorderAlgorithm(int aAlgo)
Definition: zone.h:285
void SetDoNotAllowPads(bool aEnable)
Definition: zone.h:714
void SetCornerRadius(unsigned int aRadius)
Definition: zone.cpp:381
void SetCornerSmoothingType(int aType)
Definition: zone.h:652
void SetBorderDisplayStyle(ZONE_BORDER_DISPLAY_STYLE aBorderHatchStyle, int aBorderHatchPitch, bool aRebuilBorderdHatch)
Set all hatch parameters for the zone.
Definition: zone.cpp:826
void SetMinThickness(int aMinThickness)
Definition: zone.h:252
void SetHatchOrientation(const EDA_ANGLE &aStep)
Definition: zone.h:273
void SetHatchSmoothingValue(double aValue)
Definition: zone.h:279
void SetHatchSmoothingLevel(int aLevel)
Definition: zone.h:276
void SetDoNotAllowCopperPour(bool aEnable)
Definition: zone.h:711
void SetThermalReliefSpokeWidth(int aThermalReliefSpokeWidth)
Definition: zone.h:187
void SetIsRuleArea(bool aEnable)
Definition: zone.h:710
void SetDoNotAllowTracks(bool aEnable)
Definition: zone.h:713
void SetFillMode(ZONE_FILL_MODE aFillMode)
Definition: zone.h:173
void SetDoNotAllowVias(bool aEnable)
Definition: zone.h:712
void SetLocalClearance(int aClearance)
Definition: zone.h:153
void SetThermalReliefGap(int aThermalReliefGap)
Definition: zone.h:176
void SetLayerSet(LSET aLayerSet) override
Definition: zone.cpp:272
void SetDoNotAllowFootprints(bool aEnable)
Definition: zone.h:715
void SetHatchHoleMinArea(double aPct)
Definition: zone.h:282
void SetAssignedPriority(unsigned aPriority)
Definition: zone.h:107
void SetPadConnection(ZONE_CONNECTION aPadConnection)
Definition: zone.h:249
void SetZoneName(const wxString &aName)
Definition: zone.h:125
void SetTeardropAreaType(TEARDROP_TYPE aType)
Set the type of teardrop if the zone is a teardrop area for non teardrop area, the type must be TEARD...
Definition: zone.h:693
void SetIslandRemovalMode(ISLAND_REMOVAL_MODE aRemove)
Definition: zone.h:718
void SetMinIslandArea(long long int aArea)
Definition: zone.h:721
void SetHatchGap(int aStep)
Definition: zone.h:270

References GetDoNotAllowCopperPour(), GetDoNotAllowFootprints(), GetDoNotAllowPads(), GetDoNotAllowTracks(), GetDoNotAllowVias(), GetIslandRemovalMode(), GetIsRuleArea(), GetMinIslandArea(), m_BorderHatchPitch, m_cornerRadius, m_cornerSmoothingType, m_FillMode, m_HatchBorderAlgorithm, m_HatchGap, m_HatchHoleMinArea, m_HatchOrientation, m_HatchSmoothingLevel, m_HatchSmoothingValue, m_HatchThickness, m_isRuleArea, m_Layers, m_Locked, m_Name, m_NetcodeSelection, m_padConnection, m_TeardropType, m_ThermalReliefGap, m_ThermalReliefSpokeWidth, m_ZoneBorderDisplayStyle, m_ZoneClearance, m_ZoneMinThickness, m_ZonePriority, ZONE::SetAssignedPriority(), ZONE::SetBorderDisplayStyle(), ZONE::SetCornerRadius(), ZONE::SetCornerSmoothingType(), ZONE::SetDoNotAllowCopperPour(), ZONE::SetDoNotAllowFootprints(), ZONE::SetDoNotAllowPads(), ZONE::SetDoNotAllowTracks(), ZONE::SetDoNotAllowVias(), ZONE::SetFillMode(), ZONE::SetHatchBorderAlgorithm(), ZONE::SetHatchGap(), ZONE::SetHatchHoleMinArea(), ZONE::SetHatchOrientation(), ZONE::SetHatchSmoothingLevel(), ZONE::SetHatchSmoothingValue(), ZONE::SetHatchThickness(), ZONE::SetIslandRemovalMode(), ZONE::SetIsRuleArea(), ZONE::SetLayerSet(), ZONE::SetLocalClearance(), BOARD_ITEM::SetLocked(), ZONE::SetMinIslandArea(), ZONE::SetMinThickness(), BOARD_CONNECTED_ITEM::SetNetCode(), ZONE::SetPadConnection(), ZONE::SetTeardropAreaType(), ZONE::SetThermalReliefGap(), ZONE::SetThermalReliefSpokeWidth(), and ZONE::SetZoneName().

Referenced by ZONE_CREATE_HELPER::createNewZone(), CONVERT_TOOL::CreatePolys(), TEARDROP_MANAGER::createTeardrop(), ZONE_CREATE_HELPER::createZoneFromExisting(), PCB_EDIT_FRAME::Edit_Zone_Params(), DIALOG_COPPER_ZONE::ExportSetupToOtherCopperZones(), FOOTPRINT_EDIT_FRAME::OnEditItemRequest(), ZONE::ZONE(), and BOARD_EDITOR_CONTROL::ZoneDuplicate().

◆ GetCornerRadius()

unsigned int ZONE_SETTINGS::GetCornerRadius ( ) const
inline

◆ GetCornerSmoothingType()

◆ GetDoNotAllowCopperPour()

const bool ZONE_SETTINGS::GetDoNotAllowCopperPour ( ) const
inline

◆ GetDoNotAllowFootprints()

const bool ZONE_SETTINGS::GetDoNotAllowFootprints ( ) const
inline

◆ GetDoNotAllowPads()

const bool ZONE_SETTINGS::GetDoNotAllowPads ( ) const
inline

◆ GetDoNotAllowTracks()

const bool ZONE_SETTINGS::GetDoNotAllowTracks ( ) const
inline

◆ GetDoNotAllowVias()

const bool ZONE_SETTINGS::GetDoNotAllowVias ( ) const
inline

◆ GetIslandRemovalMode()

const ISLAND_REMOVAL_MODE ZONE_SETTINGS::GetIslandRemovalMode ( ) const
inline

◆ GetIsRuleArea()

const bool ZONE_SETTINGS::GetIsRuleArea ( ) const
inline

Accessors to parameters used in Rule Area zones:

Definition at line 178 of file zone_settings.h.

178{ return m_isRuleArea; }

References m_isRuleArea.

Referenced by ExportSetting().

◆ GetMinIslandArea()

long long int ZONE_SETTINGS::GetMinIslandArea ( ) const
inline

Definition at line 195 of file zone_settings.h.

195{ return m_minIslandArea; }

References m_minIslandArea.

Referenced by ExportSetting(), and DIALOG_COPPER_ZONE::TransferDataToWindow().

◆ GetPadConnection()

ZONE_CONNECTION ZONE_SETTINGS::GetPadConnection ( ) const
inline

Definition at line 172 of file zone_settings.h.

172{ return m_padConnection; }

References m_padConnection.

Referenced by DIALOG_COPPER_ZONE::TransferDataToWindow().

◆ operator<<()

ZONE_SETTINGS & ZONE_SETTINGS::operator<< ( const ZONE aSource)

operator << ( const ZONE& ) was Function ImportSetting copies settings from a given zone into this object.

Parameters
aSourcethe given zone

Definition at line 89 of file zone_settings.cpp.

90{
92 m_FillMode = aSource.GetFillMode();
96 m_HatchGap = aSource.GetHatchGap();
102 m_NetcodeSelection = aSource.GetNetCode();
103 m_Name = aSource.GetZoneName();
111 m_isRuleArea = aSource.GetIsRuleArea();
117 m_Locked = aSource.IsLocked();
120
121 // Currently, the teardrop area type is not really a ZONE_SETTINGS parameter,
122 // but a ZONE parameter only.
123 // However it can be used in dialogs
125
126 m_Layers = aSource.GetLayerSet();
127
128 return *this;
129}
virtual bool IsLocked() const
Definition: board_item.cpp:71
int GetHatchBorderAlgorithm() const
Definition: zone.h:284
bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
Definition: zone.h:703
bool GetDoNotAllowVias() const
Definition: zone.h:705
const ISLAND_REMOVAL_MODE GetIslandRemovalMode() const
Definition: zone.h:717
bool GetDoNotAllowPads() const
Definition: zone.h:707
bool GetDoNotAllowTracks() const
Definition: zone.h:706
long long int GetMinIslandArea() const
Definition: zone.h:720
wxString GetZoneName() const
Definition: zone.h:124
int GetLocalClearance(wxString *aSource) const override
Return any local clearances set in the "classic" (ie: pre-rule) system.
Definition: zone.cpp:476
int GetMinThickness() const
Definition: zone.h:251
ZONE_CONNECTION GetPadConnection() const
Definition: zone.h:248
int GetHatchThickness() const
Definition: zone.h:266
double GetHatchHoleMinArea() const
Definition: zone.h:281
int GetThermalReliefSpokeWidth() const
Definition: zone.h:195
int GetBorderHatchPitch() const
HatchBorder related methods.
Definition: zone.cpp:820
ZONE_BORDER_DISPLAY_STYLE GetHatchStyle() const
Definition: zone.h:586
EDA_ANGLE GetHatchOrientation() const
Definition: zone.h:272
bool GetDoNotAllowFootprints() const
Definition: zone.h:708
ZONE_FILL_MODE GetFillMode() const
Definition: zone.h:174
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: zone.h:122
bool GetDoNotAllowCopperPour() const
Definition: zone.h:704
int GetHatchGap() const
Definition: zone.h:269
TEARDROP_TYPE GetTeardropAreaType() const
Definition: zone.h:698
double GetHatchSmoothingValue() const
Definition: zone.h:278
int GetHatchSmoothingLevel() const
Definition: zone.h:275
unsigned int GetCornerRadius() const
Definition: zone.h:658
int GetCornerSmoothingType() const
Definition: zone.h:654
int GetThermalReliefGap() const
Definition: zone.h:184
unsigned GetAssignedPriority() const
Definition: zone.h:112

References ZONE::GetAssignedPriority(), ZONE::GetBorderHatchPitch(), ZONE::GetCornerRadius(), ZONE::GetCornerSmoothingType(), ZONE::GetDoNotAllowCopperPour(), ZONE::GetDoNotAllowFootprints(), ZONE::GetDoNotAllowPads(), ZONE::GetDoNotAllowTracks(), ZONE::GetDoNotAllowVias(), ZONE::GetFillMode(), ZONE::GetHatchBorderAlgorithm(), ZONE::GetHatchGap(), ZONE::GetHatchHoleMinArea(), ZONE::GetHatchOrientation(), ZONE::GetHatchSmoothingLevel(), ZONE::GetHatchSmoothingValue(), ZONE::GetHatchStyle(), ZONE::GetHatchThickness(), ZONE::GetIslandRemovalMode(), ZONE::GetIsRuleArea(), ZONE::GetLayerSet(), ZONE::GetLocalClearance(), ZONE::GetMinIslandArea(), ZONE::GetMinThickness(), BOARD_CONNECTED_ITEM::GetNetCode(), ZONE::GetPadConnection(), ZONE::GetTeardropAreaType(), ZONE::GetThermalReliefGap(), ZONE::GetThermalReliefSpokeWidth(), ZONE::GetZoneName(), BOARD_ITEM::IsLocked(), m_BorderHatchPitch, m_cornerRadius, m_cornerSmoothingType, m_FillMode, m_HatchBorderAlgorithm, m_HatchGap, m_HatchHoleMinArea, m_HatchOrientation, m_HatchSmoothingLevel, m_HatchSmoothingValue, m_HatchThickness, m_isRuleArea, m_keepoutDoNotAllowCopperPour, m_keepoutDoNotAllowFootprints, m_keepoutDoNotAllowPads, m_keepoutDoNotAllowTracks, m_keepoutDoNotAllowVias, m_Layers, m_Locked, m_minIslandArea, m_Name, m_NetcodeSelection, m_padConnection, m_removeIslands, m_TeardropType, m_ThermalReliefGap, m_ThermalReliefSpokeWidth, m_ZoneBorderDisplayStyle, m_ZoneClearance, m_ZoneMinThickness, and m_ZonePriority.

◆ SetCornerRadius()

void ZONE_SETTINGS::SetCornerRadius ( int  aRadius)

Definition at line 182 of file zone_settings.cpp.

183{
184 if( aRadius < 0 )
185 m_cornerRadius = 0;
186 else
187 m_cornerRadius = aRadius;
188}

References m_cornerRadius.

Referenced by DIALOG_COPPER_ZONE::AcceptOptions(), and DIALOG_NON_COPPER_ZONES_EDITOR::TransferDataFromWindow().

◆ SetCornerSmoothingType()

void ZONE_SETTINGS::SetCornerSmoothingType ( int  aType)
inline

◆ SetDoNotAllowCopperPour()

void ZONE_SETTINGS::SetDoNotAllowCopperPour ( bool  aEnable)
inline

◆ SetDoNotAllowFootprints()

void ZONE_SETTINGS::SetDoNotAllowFootprints ( bool  aEnable)
inline

◆ SetDoNotAllowPads()

void ZONE_SETTINGS::SetDoNotAllowPads ( bool  aEnable)
inline

◆ SetDoNotAllowTracks()

void ZONE_SETTINGS::SetDoNotAllowTracks ( bool  aEnable)
inline

◆ SetDoNotAllowVias()

void ZONE_SETTINGS::SetDoNotAllowVias ( bool  aEnable)
inline

◆ SetIslandRemovalMode()

void ZONE_SETTINGS::SetIslandRemovalMode ( ISLAND_REMOVAL_MODE  aRemove)
inline

Definition at line 193 of file zone_settings.h.

193{ m_removeIslands = aRemove; }

References m_removeIslands.

Referenced by DIALOG_COPPER_ZONE::AcceptOptions(), and DIALOG_COPPER_ZONE::OnNetSelectionUpdated().

◆ SetIsRuleArea()

void ZONE_SETTINGS::SetIsRuleArea ( bool  aEnable)
inline

◆ SetMinIslandArea()

void ZONE_SETTINGS::SetMinIslandArea ( long long int  aArea)
inline

Definition at line 196 of file zone_settings.h.

196{ m_minIslandArea = aArea; }

References m_minIslandArea.

Referenced by DIALOG_COPPER_ZONE::AcceptOptions().

◆ SetPadConnection()

void ZONE_SETTINGS::SetPadConnection ( ZONE_CONNECTION  aPadConnection)
inline

Definition at line 173 of file zone_settings.h.

173{ m_padConnection = aPadConnection; }

References m_padConnection.

Referenced by DIALOG_COPPER_ZONE::AcceptOptions().

◆ SetupLayersList()

void ZONE_SETTINGS::SetupLayersList ( wxDataViewListCtrl *  aList,
PCB_BASE_FRAME aFrame,
LSET  aLayers,
bool  aFpEditorMode 
)

A helper routine for the various zone dialogs (copper, non-copper, keepout).

Parameters
aListthe wxDataViewListCtrl to populate
aFramethe parent editor frame
aFpEditorModetrue to show a single "Inner Layers" item for all inner copper layers

Definition at line 202 of file zone_settings.cpp.

204{
205 BOARD* board = aFrame->GetBoard();
206 COLOR4D backgroundColor = aFrame->GetColorSettings()->GetColor( LAYER_PCB_BACKGROUND );
207
208 // In the Footprint Editor In1_Cu is used as a proxy for "all inner layers"
209 if( aFpEditorMode )
210 aLayers.set( In1_Cu );
211
212 wxDataViewColumn* checkColumn = aList->AppendToggleColumn( wxEmptyString );
213 wxDataViewColumn* layerColumn = aList->AppendIconTextColumn( wxEmptyString );
214 wxDataViewColumn* layerIDColumn = aList->AppendTextColumn( wxEmptyString );
215 layerIDColumn->SetHidden( true );
216
217 int textWidth = 0;
218
219 for( LSEQ layer = aLayers.UIOrder(); layer; ++layer )
220 {
221 PCB_LAYER_ID layerID = *layer;
222 wxString layerName = board->GetLayerName( layerID );
223
224 if( aFpEditorMode && layerID == In1_Cu )
225 layerName = _( "Inner layers" );
226
227 // wxCOL_WIDTH_AUTOSIZE doesn't work on all platforms, so we calculate width here
228 textWidth = std::max( textWidth, KIUI::GetTextSize( layerName, aList ).x );
229
230 COLOR4D layerColor = aFrame->GetColorSettings()->GetColor( layerID );
231 auto bitmap = COLOR_SWATCH::MakeBitmap( layerColor, backgroundColor, LAYER_BITMAP_SIZE,
232 CHECKERBOARD_SIZE, aList->GetBackgroundColour() );
233 wxIcon icon;
234 icon.CopyFromBitmap( bitmap );
235
236 wxVector<wxVariant> row;
237 row.push_back( wxVariant( m_Layers.test( layerID ) ) );
238 row.push_back( wxVariant( wxDataViewIconText( layerName, icon ) ) );
239 row.push_back( wxVariant( wxString::Format( wxT( "%i" ), layerID ) ) );
240 aList->AppendItem( row );
241
242 if( m_Layers.test( layerID ) )
243 aList->SetToggleValue( true, (unsigned) aList->GetItemCount() - 1, 0 );
244 }
245
246 int checkColSize = 22;
247 int layerColSize = textWidth + LAYER_BITMAP_SIZE.x + 15;
248
249#ifdef __WXMAC__
250 // TODO: something in wxWidgets 3.1.x pads checkbox columns with extra space. (It used to
251 // also be that the width of the column would get set too wide (to 30), but that's patched in
252 // our local wxWidgets fork.)
253 int checkColMargins = 40;
254#else
255 int checkColMargins = 0;
256#endif
257
258 // You'd think the fact that m_layers is a list would encourage wxWidgets not to save room
259 // for the tree expanders... but you'd be wrong. Force indent to 0.
260 aList->SetIndent( 0 );
261 aList->SetMinClientSize( wxSize( checkColSize + checkColMargins + layerColSize,
262 aList->GetMinClientSize().y ) );
263
264 checkColumn->SetWidth( checkColSize );
265 layerColumn->SetWidth( layerColSize );
266}
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:269
const wxString GetLayerName(PCB_LAYER_ID aLayer) const
Return the name of a aLayer.
Definition: board.cpp:474
COLOR4D GetColor(int aLayer) const
static wxBitmap MakeBitmap(const KIGFX::COLOR4D &aColor, const KIGFX::COLOR4D &aBackground, const wxSize &aSize, const wxSize &aCheckerboardSize, const KIGFX::COLOR4D &aCheckerboardBackground)
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:102
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
Definition: layer_ids.h:493
LSEQ UIOrder() const
Definition: lset.cpp:922
BOARD * GetBoard() const
virtual COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const override
Helper to retrieve the current color settings.
#define _(s)
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition: layer_ids.h:220
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:59
@ In1_Cu
Definition: layer_ids.h:65
wxSize GetTextSize(const wxString &aSingleLine, wxWindow *aWindow)
Return the size of aSingleLine of text when it is rendered in aWindow using whatever font is currentl...
Definition: ui_common.cpp:70
void Format(OUTPUTFORMATTER *out, int aNestLevel, int aCtl, const CPTREE &aTree)
Output a PTREE into s-expression format via an OUTPUTFORMATTER derivative.
Definition: ptree.cpp:200
static const wxSize CHECKERBOARD_SIZE(8, 8)
static const wxSize LAYER_BITMAP_SIZE(24, 16)

References _, CHECKERBOARD_SIZE(), Format(), PCB_BASE_FRAME::GetBoard(), COLOR_SETTINGS::GetColor(), PCB_BASE_FRAME::GetColorSettings(), BOARD::GetLayerName(), KIUI::GetTextSize(), In1_Cu, LAYER_BITMAP_SIZE(), LAYER_PCB_BACKGROUND, m_Layers, COLOR_SWATCH::MakeBitmap(), and LSET::UIOrder().

Referenced by DIALOG_COPPER_ZONE::DIALOG_COPPER_ZONE(), DIALOG_NON_COPPER_ZONES_EDITOR::DIALOG_NON_COPPER_ZONES_EDITOR(), and DIALOG_RULE_AREA_PROPERTIES::DIALOG_RULE_AREA_PROPERTIES().

Member Data Documentation

◆ m_BorderHatchPitch

◆ m_cornerRadius

unsigned int ZONE_SETTINGS::m_cornerRadius
private

◆ m_cornerSmoothingType

int ZONE_SETTINGS::m_cornerSmoothingType
private

◆ m_FillMode

◆ m_HatchBorderAlgorithm

int ZONE_SETTINGS::m_HatchBorderAlgorithm

Definition at line 93 of file zone_settings.h.

Referenced by ExportSetting(), operator<<(), and ZONE_SETTINGS().

◆ m_HatchGap

◆ m_HatchHoleMinArea

double ZONE_SETTINGS::m_HatchHoleMinArea

Definition at line 92 of file zone_settings.h.

Referenced by ExportSetting(), operator<<(), and ZONE_SETTINGS().

◆ m_HatchOrientation

◆ m_HatchSmoothingLevel

◆ m_HatchSmoothingValue

◆ m_HatchThickness

◆ m_isRuleArea

bool ZONE_SETTINGS::m_isRuleArea
private

Definition at line 124 of file zone_settings.h.

Referenced by ExportSetting(), GetIsRuleArea(), operator<<(), and SetIsRuleArea().

◆ m_keepoutDoNotAllowCopperPour

bool ZONE_SETTINGS::m_keepoutDoNotAllowCopperPour
private

Definition at line 126 of file zone_settings.h.

Referenced by GetDoNotAllowCopperPour(), operator<<(), and SetDoNotAllowCopperPour().

◆ m_keepoutDoNotAllowFootprints

bool ZONE_SETTINGS::m_keepoutDoNotAllowFootprints
private

Definition at line 130 of file zone_settings.h.

Referenced by GetDoNotAllowFootprints(), operator<<(), and SetDoNotAllowFootprints().

◆ m_keepoutDoNotAllowPads

bool ZONE_SETTINGS::m_keepoutDoNotAllowPads
private

Definition at line 129 of file zone_settings.h.

Referenced by GetDoNotAllowPads(), operator<<(), and SetDoNotAllowPads().

◆ m_keepoutDoNotAllowTracks

bool ZONE_SETTINGS::m_keepoutDoNotAllowTracks
private

Definition at line 128 of file zone_settings.h.

Referenced by GetDoNotAllowTracks(), operator<<(), and SetDoNotAllowTracks().

◆ m_keepoutDoNotAllowVias

bool ZONE_SETTINGS::m_keepoutDoNotAllowVias
private

Definition at line 127 of file zone_settings.h.

Referenced by GetDoNotAllowVias(), operator<<(), and SetDoNotAllowVias().

◆ m_Layers

◆ m_Locked

◆ m_minIslandArea

long long int ZONE_SETTINGS::m_minIslandArea
private

Definition at line 133 of file zone_settings.h.

Referenced by GetMinIslandArea(), operator<<(), SetMinIslandArea(), and ZONE_SETTINGS().

◆ m_Name

◆ m_NetcodeSelection

◆ m_padConnection

ZONE_CONNECTION ZONE_SETTINGS::m_padConnection
private

◆ m_removeIslands

ISLAND_REMOVAL_MODE ZONE_SETTINGS::m_removeIslands
private

◆ m_TeardropType

◆ m_ThermalReliefGap

long ZONE_SETTINGS::m_ThermalReliefGap

◆ m_ThermalReliefSpokeWidth

long ZONE_SETTINGS::m_ThermalReliefSpokeWidth

◆ m_ZoneBorderDisplayStyle

◆ m_ZoneClearance

◆ m_ZoneMinThickness

◆ m_ZonePriority


The documentation for this class was generated from the following files: