KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_setup_layers.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) 2018-2023 KiCad Developers, see change_log.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24
25#ifndef PANEL_SETUP_LAYERS_H
26#define PANEL_SETUP_LAYERS_H
27
28#include <widgets/unit_binder.h>
31
32class PCB_EDIT_FRAME;
33class BOARD;
36
37
42{
43 PANEL_SETUP_LAYERS_CTLs( wxControl* aName, wxCheckBox* aCheckBox, wxControl* aChoiceOrDesc )
44 {
45 name = aName;
46 checkbox = aCheckBox;
47 choice = aChoiceOrDesc;
48 }
49
50 wxControl* name;
51 wxCheckBox* checkbox;
52 wxControl* choice;
53};
54
55
57{
58public:
59 PANEL_SETUP_LAYERS( wxWindow* aParentWindow, PCB_EDIT_FRAME* aFrame );
60
61 void ImportSettingsFrom( BOARD* aBoard );
62
74 bool CheckCopperLayerCount( BOARD* aWorkingBoard, BOARD* aImportedBoard );
75
78
80 wxString GetLayerName( int layer );
81
87 void SyncCopperLayers( int aNumCopperLayers );
88
90 {
91 m_physicalStackup = aPanel;
92 }
93
94 bool IsInitialized() const { return m_initialized; }
95
96private:
97 void setLayerCheckBox( int layer, bool isChecked );
98 void setCopperLayerCheckBoxes( int copperCount );
101
102 void showBoardLayerNames();
103 void showSelectedLayerCheckBoxes( LSET enableLayerMask );
104 void showLayerTypes();
105
106 int getLayerTypeIndex( int layer );
107
108 void OnCheckBox( wxCommandEvent& event ) override;
109 void DenyChangeCheckBox( wxCommandEvent& event ) override;
110 bool TransferDataToWindow() override;
111 bool TransferDataFromWindow() override;
112 virtual void addUserDefinedLayer( wxCommandEvent& aEvent ) override;
113
114 bool testLayerNames();
115
121
126
127 PANEL_SETUP_LAYERS_CTLs getCTLs( int aLayerNumber );
128 wxControl* getName( int aLayer );
129 wxCheckBox* getCheckBox( int aLayer );
130 wxChoice* getChoice( int aLayer );
131
132private:
138};
139
140
141
142#endif //PANEL_SETUP_LAYERS_H
143
144
Container for design settings for a BOARD object.
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:281
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
Definition: layer_ids.h:520
LSET is a set of PCB_LAYER_IDs.
Definition: layer_ids.h:574
Class PANEL_SETUP_LAYERS_BASE.
wxString GetLayerName(int layer)
PANEL_SETUP_LAYERS_CTLs getCTLs(int aLayerNumber)
void showSelectedLayerCheckBoxes(LSET enableLayerMask)
bool IsInitialized() const
bool CheckCopperLayerCount(BOARD *aWorkingBoard, BOARD *aImportedBoard)
Check and warn if inner copper layers will be deleted.
void DenyChangeCheckBox(wxCommandEvent &event) override
bool TransferDataToWindow() override
void SetPhysicalStackupPanel(PANEL_SETUP_BOARD_STACKUP *aPanel)
int getLayerTypeIndex(int layer)
virtual void addUserDefinedLayer(wxCommandEvent &aEvent) override
void SyncCopperLayers(int aNumCopperLayers)
Called when switching to this tab to make sure that any changes to the copper layer count made on the...
void setLayerCheckBox(int layer, bool isChecked)
PANEL_SETUP_BOARD_STACKUP * m_physicalStackup
PCB_EDIT_FRAME * m_frame
LSEQ getNonRemovableLayers()
Return a list of layers in use in footprints, and therefore not removable.
void setCopperLayerCheckBoxes(int copperCount)
wxControl * getName(int aLayer)
wxChoice * getChoice(int aLayer)
LSEQ getRemovedLayersWithItems()
Return a list of layers removed from the board that contain items.
bool TransferDataFromWindow() override
void OnCheckBox(wxCommandEvent &event) override
void ImportSettingsFrom(BOARD *aBoard)
wxCheckBox * getCheckBox(int aLayer)
The main frame for Pcbnew.
The 3 UI control pointers for a single board layer.
PANEL_SETUP_LAYERS_CTLs(wxControl *aName, wxCheckBox *aCheckBox, wxControl *aChoiceOrDesc)