KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_layer_box_selector.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) 2012-2015 Jean-Pierre Charras, [email protected]
5 * Copyright (C) 1992-2021 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 PCB_LAYER_BOX_SELECTOR_H
26#define PCB_LAYER_BOX_SELECTOR_H
27
28#include <memory>
29
30#include <lset.h>
32
33class PCB_BASE_FRAME;
35
36
41{
42public:
43 // If you are thinking the constructor is a bit curious, just remember it is automatically
44 // generated when used in wxFormBuilder files, and so must have the same signature as the
45 // wxBitmapComboBox constructor. In particular, value and style are not used by this class.
46 PCB_LAYER_BOX_SELECTOR( wxWindow* parent, wxWindowID id, const wxString& value = wxEmptyString,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize, int n = 0,
49 const wxString choices[] = nullptr, int style = 0 );
50
51 // SetBoardFrame should be called after creating a PCB_LAYER_BOX_SELECTOR. It is not passed
52 // through the constructor because it must have the same signature as wxBitmapComboBox for
53 // use with wxFormBuilder.
54 void SetBoardFrame( PCB_BASE_FRAME* aFrame );
55
56 // SetLayerSet allows disabling some layers, which are not shown in list
58
59 // If the UNDEFINED_LAYER should be selectable, give it a name here. Usually either
60 // INDETERMINATE_STATE or INDETERMINATE_ACTION.
61 void SetUndefinedLayerName( const wxString& aName ) { m_undefinedLayerName = aName; }
62
63 // Reload the Layers names and bitmaps
64 void Resync() override;
65
66 // Allow (or not) the layers not activated for the current board to be shown in layer
67 // selector. Not activated layers have their names appended with "(not activated)".
68 void ShowNonActivatedLayers( bool aShow ) { m_showNotEnabledBrdlayers = aShow; }
69
70private:
71 // Returns true if the layer id is enabled (i.e. if it should be displayed)
72 bool isLayerEnabled( int aLayer ) const override;
73
74 LSET getEnabledLayers() const;
75
77
78 LSET m_layerMaskDisable; // A mask to remove some (not allowed) layers
79 // from layer list
80 bool m_showNotEnabledBrdlayers; // true to list all allowed layers
81 // (with not activated layers flagged)
82 wxString m_undefinedLayerName; // if not empty add an item with this name which sets
83 // the layer to UNDEFINED_LAYER
84
85 std::unique_ptr<PCB_LAYER_PRESENTATION> m_layerPresentation;
86};
87
88#endif // PCB_LAYER_BOX_SELECTOR_H
LSET is a set of PCB_LAYER_IDs.
Definition: lset.h:36
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
Class to display a pcb layer list in a wxBitmapComboBox.
void SetBoardFrame(PCB_BASE_FRAME *aFrame)
void SetNotAllowedLayerSet(LSET aMask)
void ShowNonActivatedLayers(bool aShow)
void SetUndefinedLayerName(const wxString &aName)
bool isLayerEnabled(int aLayer) const override
std::unique_ptr< PCB_LAYER_PRESENTATION > m_layerPresentation
Class that manages the presentation of PCB layers in a PCB frame.