kicad/pcbnew/class_zone_setting.cpp

95 lines
3.7 KiB
C++
Raw Normal View History

2008-10-23 10:26:06 +00:00
/******************************************************/
/* class ZONE_SETTING used to handle zones parameters */
/******************************************************/
#ifndef WX_PRECOMP
#include <wx/wx.h>
2008-10-23 10:26:06 +00:00
#endif
/* For compilers that support precompilation:
*/
#include <wx/wxprec.h>
2008-10-23 10:26:06 +00:00
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include <fctsys.h>
2008-10-23 10:26:06 +00:00
#include <common.h>
#include <pcbnew.h>
#include <zones.h>
#include <class_zone.h>
2008-10-23 10:26:06 +00:00
ZONE_SETTING::ZONE_SETTING( void )
{
m_FillMode = 0; // Mode for filling zone : 1 use segments, 0 use polygons
m_ZoneClearance = 200; // Clearance value
m_ZoneMinThickness = 100; // Min thickness value in filled areas
m_NetcodeSelection = 0; // Net code selection for the current zone
m_CurrentZone_Layer = 0; // Layer used to create the current zone
m_Zone_HatchingStyle = CPolyLine::DIAGONAL_EDGE; // Option to show the zone area (outlines only, short hatches or full hatches
m_ArcToSegmentsCount = ARC_APPROX_SEGMENTS_COUNT_LOW_DEF; /* Option to select number of segments to approximate a circle
* ARC_APPROX_SEGMENTS_COUNT_LOW_DEF
* or ARC_APPROX_SEGMENTS_COUNT_HIGHT_DEF segments */
m_ThermalReliefGap = 200; // tickness of the gap in thermal reliefs
m_ThermalReliefCopperBridge = 200; // tickness of the copper bridge in thermal reliefs
2008-10-23 10:26:06 +00:00
m_Zone_Pad_Options = THERMAL_PAD; // How pads are covered by copper in zone
2011-02-21 19:43:59 +00:00
cornerSmoothingType = SMOOTHING_NONE;
cornerRadius = 0;
2008-10-23 10:26:06 +00:00
}
/**
* Function ImportSetting
2008-10-23 10:26:06 +00:00
* copy settings from a given zone
* @param aSource: the given zone
*/
void ZONE_SETTING::ImportSetting( const ZONE_CONTAINER& aSource )
{
m_FillMode = aSource.m_FillMode;
m_ZoneClearance = aSource.m_ZoneClearance;
m_ZoneMinThickness = aSource.m_ZoneMinThickness;
m_NetcodeSelection = aSource.GetNet();
m_CurrentZone_Layer = aSource.GetLayer();
m_Zone_HatchingStyle = aSource.GetHatchStyle();
m_ArcToSegmentsCount = aSource.m_ArcToSegmentsCount;
m_ThermalReliefGap = aSource.m_ThermalReliefGap;
m_ThermalReliefCopperBridge = aSource.m_ThermalReliefCopperBridge;
2008-10-23 10:26:06 +00:00
m_Zone_Pad_Options = aSource.m_PadOption;
2011-02-21 19:43:59 +00:00
cornerSmoothingType = aSource.GetCornerSmoothingType();
cornerRadius = aSource.GetCornerRadius();
2008-10-23 10:26:06 +00:00
}
/**
* Function ExportSetting
2008-10-23 10:26:06 +00:00
* copy settings to a given zone
* @param aTarget: the given zone
* @param aFullExport: if false: some parameters are NOT exported
* because they must not be exported when export settings from a zone to others zones
* Currently:
* m_NetcodeSelection
2008-10-23 10:26:06 +00:00
*/
void ZONE_SETTING::ExportSetting( ZONE_CONTAINER& aTarget, bool aFullExport )
2008-10-23 10:26:06 +00:00
{
aTarget.m_FillMode = m_FillMode;
aTarget.m_ZoneClearance = m_ZoneClearance;
aTarget.m_ZoneMinThickness = m_ZoneMinThickness;
aTarget.m_Poly->SetHatch( m_Zone_HatchingStyle );
aTarget.m_ArcToSegmentsCount = m_ArcToSegmentsCount;
aTarget.m_ThermalReliefGap = m_ThermalReliefGap;
aTarget.m_ThermalReliefCopperBridge = m_ThermalReliefCopperBridge;
2008-10-23 10:26:06 +00:00
aTarget.m_PadOption = m_Zone_Pad_Options;
2011-02-21 19:43:59 +00:00
aTarget.SetCornerSmoothingType( cornerSmoothingType );
aTarget.SetCornerRadius( cornerRadius );
if( aFullExport )
{
aTarget.SetNet( m_NetcodeSelection );
aTarget.SetLayer( m_CurrentZone_Layer );
}
2008-10-23 10:26:06 +00:00
}