KiCad PCB EDA Suite
Loading...
Searching...
No Matches
zones.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) 2008-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 1992-2022 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#ifndef ZONES_H_
26#define ZONES_H_
27
28#include <wx/translation.h>
29
30struct CONVERT_SETTINGS;
31
32// Default values in mm for parameters in ZONE_SETTINGS
33#define ZONE_THERMAL_RELIEF_GAP_MM 0.5 // ZONE_SETTINGS::m_ThermalReliefGap
34#define ZONE_THERMAL_RELIEF_COPPER_WIDTH_MM 0.5 // ZONE_SETTINGS::m_ThermalReliefCopperBridge
35#define ZONE_THICKNESS_MM 0.25 // ZONE_SETTINGS::m_ZoneMinThickness
36#define ZONE_THICKNESS_MIN_VALUE_MM 0.025 // Minimum for ZONE_SETTINGS::m_ZoneMinThickness
37#define ZONE_CLEARANCE_MM 0.5 // ZONE_SETTINGS::m_ZoneClearance
38#define ZONE_CLEARANCE_MAX_VALUE_MM 100 // Maximum for ZONE_SETTINGS::m_ZoneClearance
39#define ZONE_BORDER_HATCH_DIST_MM 0.5 // ZONE_SETTINGS::m_BorderHatchPitch
40#define ZONE_BORDER_HATCH_MINDIST_MM 0.1 // Minimum for ZONE_SETTINGS::m_BorderHatchPitch
41#define ZONE_BORDER_HATCH_MAXDIST_MM 2.0 // Maximum for ZONE_SETTINGS::m_BorderHatchPitch
42
43
44#define ZONE_MANAGER_REPOUR 1005 //Reported if repour option is checked while clicking OK
46enum class ZONE_CONNECTION
47{
48 INHERITED = -1,
49 NONE,
50 THERMAL,
51 FULL,
53};
54
55
56inline wxString PrintZoneConnection( ZONE_CONNECTION aConnection )
57{
58 switch( aConnection )
59 {
60 default:
61 case ZONE_CONNECTION::INHERITED: return _( "inherited" );
62 case ZONE_CONNECTION::NONE: return _( "none" );
63 case ZONE_CONNECTION::THERMAL: return _( "thermal reliefs" );
64 case ZONE_CONNECTION::FULL: return _( "solid" );
65 case ZONE_CONNECTION::THT_THERMAL: return _( "thermal reliefs for PTH" );
66 }
67}
68
69
70class ZONE;
71class ZONE_SETTINGS;
72class PCB_BASE_FRAME;
73
84 CONVERT_SETTINGS* aConvertSettings = nullptr );
85
96 CONVERT_SETTINGS* aConvertSettings = nullptr );
97
107int InvokeRuleAreaEditor( PCB_BASE_FRAME* aCaller, ZONE_SETTINGS* aSettings,
108 CONVERT_SETTINGS* aConvertSettings = nullptr );
109
118int InvokeZonesManager( PCB_BASE_FRAME* aCall, ZONE_SETTINGS* aSettings );
119
120#endif // ZONES_H_
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
ZONE_SETTINGS handles zones parameters.
Definition: zone_settings.h:71
Handle a list of polygons defining a copper zone.
Definition: zone.h:72
#define _(s)
wxString PrintZoneConnection(ZONE_CONNECTION aConnection)
Definition: zones.h:56
int InvokeNonCopperZonesEditor(PCB_BASE_FRAME *aParent, ZONE_SETTINGS *aSettings, CONVERT_SETTINGS *aConvertSettings=nullptr)
Function InvokeNonCopperZonesEditor invokes up a modal dialog window for non-copper zone editing.
int InvokeRuleAreaEditor(PCB_BASE_FRAME *aCaller, ZONE_SETTINGS *aSettings, CONVERT_SETTINGS *aConvertSettings=nullptr)
Function InvokeRuleAreaEditor invokes up a modal dialog window for copper zone editing.
ZONE_CONNECTION
How pads are covered by copper in zone.
Definition: zones.h:47
@ THERMAL
Use thermal relief for pads.
@ THT_THERMAL
Thermal relief only for THT pads.
@ NONE
Pads are not covered.
@ FULL
pads are covered by copper
int InvokeZonesManager(PCB_BASE_FRAME *aCall, ZONE_SETTINGS *aSettings)
Function InvokeZonesManager invokes up a modal dialog window for zones manager.
int InvokeCopperZonesEditor(PCB_BASE_FRAME *aCaller, ZONE_SETTINGS *aSettings, CONVERT_SETTINGS *aConvertSettings=nullptr)
Function InvokeCopperZonesEditor invokes up a modal dialog window for copper zone editing.