KiCad PCB EDA Suite
Loading...
Searching...
No Matches
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) 2011-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 1992-2023 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 LAYER_BOX_SELECTOR_H
26#define LAYER_BOX_SELECTOR_H
27
28#include <wx/bmpcbox.h>
29#include <gal/color4d.h>
30#include <layer_ids.h>
31
32using KIGFX::COLOR4D;
33
38{
39public:
41
42 virtual ~LAYER_SELECTOR() { }
43
44 bool SetLayersHotkeys( bool value );
45
46 // Fill the layer bitmap aLayerbmp with the layer color
47 static void DrawColorSwatch( wxBitmap& aLayerbmp, const COLOR4D& aBackground,
48 const COLOR4D& aColor );
49
50protected:
51 // Return a color index from the layer id
52 virtual COLOR4D getLayerColor( int aLayer ) const = 0;
53
54 // Return the name of the layer id
55 virtual wxString getLayerName( int aLayer ) const = 0;
56
57 // Return true if the layer id is enabled (i.e. is it should be displayed)
58 virtual bool isLayerEnabled( int aLayer ) const = 0;
59
61};
62
63
64/*
65 * Display a layer list in a wxBitmapComboBox.
66 */
67class LAYER_BOX_SELECTOR : public wxBitmapComboBox, public LAYER_SELECTOR
68{
69public:
70 LAYER_BOX_SELECTOR( wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition,
71 const wxSize& size = wxDefaultSize, int n = 0,
72 const wxString choices[] = nullptr );
73
74 ~LAYER_BOX_SELECTOR() override;
75
76 int GetLayerSelection() const;
77
78 int SetLayerSelection( int layer );
79
80 // Reload the Layers
81 // Virtual pure function because GerbView uses its own functions in a derived class
82 virtual void Resync() = 0;
83
84 // Reload the Layers bitmaps colors
85 void ResyncBitmapOnly();
86
87private:
88#ifdef __WXMAC__
89 void onKeyDown( wxKeyEvent& aEvent );
90 void OnDrawBackground( wxDC& dc, const wxRect& rect, int item, int flags) const override;
91#endif
92};
93
94#endif // LAYER_BOX_SELECTOR_H
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
int SetLayerSelection(int layer)
virtual void Resync()=0
Base class to build a layer list.
virtual COLOR4D getLayerColor(int aLayer) const =0
static void DrawColorSwatch(wxBitmap &aLayerbmp, const COLOR4D &aBackground, const COLOR4D &aColor)
virtual bool isLayerEnabled(int aLayer) const =0
bool SetLayersHotkeys(bool value)
virtual ~LAYER_SELECTOR()
virtual wxString getLayerName(int aLayer) const =0