KiCad PCB EDA Suite
Loading...
Searching...
No Matches
grid_layer_box_helpers.cpp
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, see <https://www.gnu.org/licenses/>.
18 */
19
21
22#include <wx/textctrl.h>
23
24#include <pgm_base.h>
28#include <board.h>
29#include <lset.h>
30#include <pcb_edit_frame.h>
34
35
36//-------- Custom wxGridCellRenderers --------------------------------------------------
37
38
43
44
48
49
50void GRID_CELL_LAYER_RENDERER::Draw( wxGrid& aGrid, wxGridCellAttr& aAttr, wxDC& aDC,
51 const wxRect& aRect, int aRow, int aCol, bool isSelected )
52{
53 int value = aGrid.GetTable()->GetValueAsLong( aRow, aCol );
55
56 if( m_frame )
57 cs = m_frame->GetColorSettings();
59 cs = ::GetColorSettings( cfg->m_ColorTheme );
60
61 wxRect rect = aRect;
62 rect.Inflate( -1 );
63
64 // erase background
65 wxGridCellRenderer::Draw( aGrid, aAttr, aDC, aRect, aRow, aCol, isSelected );
66
67 // draw the swatch
68#ifdef __WXMAC__
69 int size = 14;
70#else
71 int size = KiROUND( 14 * aDC.GetContentScaleFactor() );
72#endif
73 if( !m_bitmap.IsOk() || m_bitmap.GetWidth() != size || m_bitmap.GetHeight() != size )
74 m_bitmap = wxBitmap( size, size );
75
78 cs->GetColor( ToLAYER_ID( value ) ) );
79
80 aDC.DrawBitmap( m_bitmap, rect.GetLeft() + 4,
81 rect.GetTop() + ( rect.GetHeight() - m_bitmap.GetHeight() ) / 2, true );
82
83 // draw the text
84 PCB_LAYER_ID layer = ToLAYER_ID( value );
85 wxString layerName;
86
87 if( m_frame )
88 layerName = m_frame->GetBoard()->GetLayerName( layer );
89 else
90 layerName = BOARD::GetStandardLayerName( layer );
91
92 rect.SetLeft( rect.GetLeft() + m_bitmap.GetWidth() + 8 );
93 SetTextColoursAndFont( aGrid, aAttr, aDC, isSelected );
94 aGrid.DrawTextRectangle( aDC, layerName, rect, wxALIGN_LEFT, wxALIGN_CENTRE );
95}
96
97
98
99//-------- Custom wxGridCellEditors ----------------------------------------------------
100//
101// Note: this implementation is an adaptation of wxGridCellChoiceEditor
102
103
105 bool aShowNonActivated ) :
106 m_frame( aFrame ),
107 m_mask( aMask ),
108 m_showNonActivated( aShowNonActivated ),
109 m_value( 0 )
110{
111}
112
113
114wxGridCellEditor* GRID_CELL_LAYER_SELECTOR::Clone() const
115{
117}
118
119
120void GRID_CELL_LAYER_SELECTOR::Create( wxWindow* aParent, wxWindowID aId,
121 wxEvtHandler* aEventHandler )
122{
123 m_control = new PCB_LAYER_BOX_SELECTOR( aParent, aId, wxEmptyString,
124 wxDefaultPosition, wxDefaultSize, 0, nullptr,
125 wxCB_READONLY | wxTE_PROCESS_ENTER | wxTE_PROCESS_TAB | wxBORDER_NONE );
126
127 LayerBox()->SetLayersHotkeys( false );
131
132 wxGridCellEditor::Create(aParent, aId, aEventHandler);
133}
134
135
137{
138 if( LayerBox()->GetLayerSelection() != UNDEFINED_LAYER )
139 {
140 PCB_LAYER_ID layer = ToLAYER_ID( LayerBox()->GetLayerSelection() );
141
142 if( m_frame )
143 return m_frame->GetBoard()->GetLayerName( layer );
144 else
145 return BOARD::GetStandardLayerName( layer );
146 }
147
148 return wxEmptyString;
149}
150
151
152void GRID_CELL_LAYER_SELECTOR::SetSize( const wxRect& aRect )
153{
154 wxRect rect( aRect );
155 rect.Inflate( -1 );
156
157#if !defined( __WXMSW__ ) && !defined( __WXGTK__ )
158 // Only implemented in generic wxBitmapComboBox; MSW and GTK use native controls
159 LayerBox()->SetButtonPosition( 0, 0, wxRIGHT, 0 );
160#endif
161
162#if defined( __WXMAC__ )
163 rect.Inflate( 3 ); // no FOCUS_RING, even on Mac
164#endif
165
166 LayerBox()->SetSize( rect, wxSIZE_ALLOW_MINUS_ONE );
167}
168
169
170void GRID_CELL_LAYER_SELECTOR::BeginEdit( int aRow, int aCol, wxGrid* aGrid )
171{
172 auto* evtHandler = static_cast<wxGridCellEditorEvtHandler*>( m_control->GetEventHandler() );
173
174 // Don't immediately end if we get a kill focus event within BeginEdit
175 evtHandler->SetInSetFocus( true );
176
177 // These event handlers are needed to properly dismiss the editor when the popup is closed
178 m_control->Bind(wxEVT_COMBOBOX_DROPDOWN, &GRID_CELL_LAYER_SELECTOR::onComboDropDown, this);
179 m_control->Bind(wxEVT_COMBOBOX_CLOSEUP, &GRID_CELL_LAYER_SELECTOR::onComboCloseUp, this);
180
181 m_value = aGrid->GetTable()->GetValueAsLong( aRow, aCol );
182
183 // Footprints are defined in a global context and may contain layers not enabled
184 // on the current board. Check and display all layers if so.
185 if( m_frame && !m_frame->GetBoard()->IsLayerEnabled( ToLAYER_ID( m_value ) ) )
187
189 LayerBox()->Resync();
191 LayerBox()->SetFocus();
192
193#ifdef __WXOSX_COCOA__
194 // This is a work around for the combobox being simply dismissed when a
195 // choice is made in it under OS X. The bug is almost certainly due to a
196 // problem in focus events generation logic but it's not obvious to fix and
197 // for now this at least allows one to use wxGrid.
198 if( !LayerBox()->IsPopupShown() )
199 LayerBox()->Popup();
200#endif
201
202 // When dropping down the menu, a kill focus event
203 // happens after this point, so we can't reset the flag yet.
204#if !defined(__WXGTK__)
205 evtHandler->SetInSetFocus( false );
206#endif
207}
208
209
210bool GRID_CELL_LAYER_SELECTOR::EndEdit( int , int , const wxGrid* , const wxString& ,
211 wxString *newval )
212{
213 const int value = LayerBox()->GetLayerSelection();
214
215 if ( value == m_value )
216 return false;
217
218 m_value = value;
219
220 if ( newval )
221 *newval = GetValue();
222
223 return true;
224}
225
226
227void GRID_CELL_LAYER_SELECTOR::ApplyEdit( int aRow, int aCol, wxGrid* aGrid )
228{
229 aGrid->GetTable()->SetValueAsLong( aRow, aCol, (long) m_value );
230}
231
232
237
238
239void GRID_CELL_LAYER_SELECTOR::onComboDropDown( wxCommandEvent& aEvent )
240{
241 // On other platforms this is done in BeginEdit()
242#if defined(__WXGTK__)
243 auto evtHandler = static_cast<wxGridCellEditorEvtHandler*>( m_control->GetEventHandler() );
244
245 // Once the combobox is dropped, reset the flag to allow the focus-loss handler
246 // to function and close the editor.
247 evtHandler->SetInSetFocus( false );
248#endif
249}
250
251
252void GRID_CELL_LAYER_SELECTOR::onComboCloseUp( wxCommandEvent& aEvent )
253{
254 auto evtHandler = static_cast<wxGridCellEditorEvtHandler*>( m_control->GetEventHandler() );
255
256 // Forward the combobox close up event to the cell event handler as a focus kill event
257 // so that the grid editor is dismissed when the combox closes, otherwise it leaves the
258 // dropdown arrow visible in the cell.
259 wxFocusEvent event( wxEVT_KILL_FOCUS, m_control->GetId() );
260 event.SetEventObject( m_control );
261 evtHandler->ProcessEvent( event );
262}
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition box2.h:986
static wxString GetStandardLayerName(PCB_LAYER_ID aLayerId)
Return an "English Standard" name of a PCB layer when given aLayerNumber.
Definition board.h:991
Color settings are a bit different than most of the settings objects in that there can be more than o...
COLOR4D GetColor(int aLayer) const
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
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
int SetLayerSelection(int layer)
static void DrawColorSwatch(wxBitmap &aLayerbmp, const COLOR4D &aBackground, const COLOR4D &aColor)
bool SetLayersHotkeys(bool value)
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.
void SetBoardFrame(PCB_BASE_FRAME *aFrame)
void ShowNonActivatedLayers(bool aShow)
void SetNotAllowedLayerSet(const LSET &aMask)
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition layer_ids.h:277
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
@ UNDEFINED_LAYER
Definition layer_ids.h:57
PCB_LAYER_ID ToLAYER_ID(int aLayer)
Definition lset.cpp:750
see class PGM_BASE
#define DEFAULT_THEME
COLOR_SETTINGS * GetColorSettings(const wxString &aName)
T * GetAppSettings(const char *aFilename)