KiCad PCB EDA Suite
Loading...
Searching...
No Matches
grid_layer_box_helpers.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 The KiCad Developers, see AUTHORS.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#ifndef GRID_LAYER_BOX_HELPERS_H
25#define GRID_LAYER_BOX_HELPERS_H
26
27#include <wx/generic/gridctrl.h>
28#include <wx/generic/grideditors.h>
30#include <lset.h>
31#include <wx/bitmap.h>
32
33class wxGrid;
35
36
37//-------- Custom wxGridCellRenderers --------------------------------------------------
38
39class GRID_CELL_LAYER_RENDERER : public wxGridCellStringRenderer
40{
41public:
44
45 void Draw( wxGrid& aGrid, wxGridCellAttr& aAttr, wxDC& aDC,
46 const wxRect& aRect, int aRow, int aCol, bool isSelected ) override;
47
48private:
50 wxBitmap m_bitmap;
51};
52
53
54//-------- Custom wxGridCellEditors ----------------------------------------------------
55//
56// Note: this implementation is an adaptation of wxGridCellChoiceEditor
57
58class GRID_CELL_LAYER_SELECTOR : public wxGridCellEditor
59{
60public:
61 GRID_CELL_LAYER_SELECTOR( PCB_BASE_FRAME* aFrame, const LSET& forbiddenLayers,
62 bool aShowNonActivated = false );
63
64 wxGridCellEditor* Clone() const override;
65 void Create( wxWindow* aParent, wxWindowID aId, wxEvtHandler* aEventHandler ) override;
66
67 wxString GetValue() const override;
68
69 void SetSize( const wxRect& aRect ) override;
70
71 void BeginEdit( int aRow, int aCol, wxGrid* aGrid ) override;
72 bool EndEdit( int , int , const wxGrid* , const wxString& , wxString *newval ) override;
73 void ApplyEdit( int aRow, int aCol, wxGrid* aGrid ) override;
74 void Reset() override;
75
76protected:
77 // Event handlers to properly dismiss the layer selector when it loses focus
78 void onComboDropDown( wxCommandEvent& aEvent );
79 void onComboCloseUp( wxCommandEvent& aEvent );
80
82 {
83 return static_cast<PCB_LAYER_BOX_SELECTOR*>( m_control );
84 }
85
90
92};
93
94#endif // GRID_LAYER_BOX_HELPERS_H
void Draw(wxGrid &aGrid, wxGridCellAttr &aAttr, wxDC &aDC, const wxRect &aRect, int aRow, int aCol, bool isSelected) override
GRID_CELL_LAYER_RENDERER(PCB_BASE_FRAME *aFrame)
bool EndEdit(int, int, const wxGrid *, const wxString &, wxString *newval) override
wxGridCellEditor * Clone() const override
wxDECLARE_NO_COPY_CLASS(GRID_CELL_LAYER_SELECTOR)
GRID_CELL_LAYER_SELECTOR(PCB_BASE_FRAME *aFrame, const LSET &forbiddenLayers, bool aShowNonActivated=false)
void onComboCloseUp(wxCommandEvent &aEvent)
void onComboDropDown(wxCommandEvent &aEvent)
PCB_LAYER_BOX_SELECTOR * LayerBox() const
void ApplyEdit(int aRow, int aCol, wxGrid *aGrid) override
void BeginEdit(int aRow, int aCol, wxGrid *aGrid) override
void Create(wxWindow *aParent, wxWindowID aId, wxEvtHandler *aEventHandler) override
wxString GetValue() const override
void SetSize(const wxRect &aRect) override
LSET is a set of PCB_LAYER_IDs.
Definition lset.h:37
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
Class to display a pcb layer list in a wxBitmapComboBox.