KiCad PCB EDA Suite
Loading...
Searching...
No Matches
grid_combobox.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, 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
25
26
27//-------- Renderer ---------------------------------------------------------------------
28// None required; just render as normal text.
29
30
31
32//-------- Editor -----------------------------------------------------------------------
33//
34// Note: this implementation is an adaptation of wxGridCellChoiceEditor
35
36
37GRID_CELL_COMBOBOX::GRID_CELL_COMBOBOX( const wxArrayString& names ) :
38 m_names( names )
39{
40}
41
42
43wxGridCellEditor* GRID_CELL_COMBOBOX::Clone() const
44{
45 return new GRID_CELL_COMBOBOX( m_names );
46}
47
48
49void GRID_CELL_COMBOBOX::Create( wxWindow* aParent, wxWindowID aId, wxEvtHandler* aEventHandler )
50{
51 m_control = new wxComboBox( aParent, wxID_ANY, wxEmptyString,
52 wxDefaultPosition, wxDefaultSize, m_names );
53
54 wxGridCellEditor::Create(aParent, aId, aEventHandler);
55}
56
57
59{
60 return Combo()->GetValue();
61}
62
63
64void GRID_CELL_COMBOBOX::SetSize( const wxRect& aRect )
65{
66 wxRect rect( aRect );
67 rect.Inflate( -1 );
68
69#if defined( __WXMAC__ )
70 rect.Inflate( 3 ); // no FOCUS_RING, even on Mac
71#endif
72
73 Combo()->SetSize( rect, wxSIZE_ALLOW_MINUS_ONE );
74}
75
76
77void GRID_CELL_COMBOBOX::BeginEdit( int aRow, int aCol, wxGrid* aGrid )
78{
79 auto evtHandler = static_cast<wxGridCellEditorEvtHandler*>( m_control->GetEventHandler() );
80
81 // Don't immediately end if we get a kill focus event within BeginEdit
82 evtHandler->SetInSetFocus( true );
83
84 // These event handlers are needed to properly dismiss the editor when the popup is closed
85 m_control->Bind(wxEVT_COMBOBOX_DROPDOWN, &GRID_CELL_COMBOBOX::onComboDropDown, this);
86 m_control->Bind(wxEVT_COMBOBOX_CLOSEUP, &GRID_CELL_COMBOBOX::onComboCloseUp, this);
87
88 m_value = aGrid->GetTable()->GetValue( aRow, aCol );
89
90 Combo()->SetFocus();
91
92 // Work around a wxWidgets bug where the drop-down is the wrong width on the first drop.
93 Combo()->Set( Combo()->GetStrings() );
94
95 Combo()->ChangeValue( m_value );
96 Combo()->SelectAll();
97
98#ifdef __WXOSX_COCOA__
99 // This is a work around for the combobox being simply dismissed when a
100 // choice is made in it under OS X. The bug is almost certainly due to a
101 // problem in focus events generation logic but it's not obvious to fix and
102 // for now this at least allows one to use wxGrid.
103 Combo()->Popup();
104#endif
105
106 // When dropping down the menu, a kill focus event
107 // happens after this point, so we can't reset the flag yet.
108#if !defined(__WXGTK__)
109 evtHandler->SetInSetFocus( false );
110#endif
111}
112
113
114bool GRID_CELL_COMBOBOX::EndEdit( int , int , const wxGrid* , const wxString& , wxString *aNewVal )
115{
116 const wxString value = Combo()->GetValue();
117
118 if( value == m_value )
119 return false;
120
121 m_value = value;
122
123 if( aNewVal )
124 *aNewVal = value;
125
126 return true;
127}
128
129
130void GRID_CELL_COMBOBOX::ApplyEdit( int aRow, int aCol, wxGrid* aGrid )
131{
132 aGrid->GetTable()->SetValue( aRow, aCol, m_value );
133}
134
135
137{
138}
139
140
141void GRID_CELL_COMBOBOX::onComboDropDown( wxCommandEvent& aEvent )
142{
143 auto evtHandler = static_cast<wxGridCellEditorEvtHandler*>( m_control->GetEventHandler() );
144
145 // Once the combobox is dropped, reset the flag to allow the focus-loss handler
146 // to function and close the editor.
147 evtHandler->SetInSetFocus( false );
148}
149
150
151void GRID_CELL_COMBOBOX::onComboCloseUp( wxCommandEvent& aEvent )
152{
153 auto evtHandler = static_cast<wxGridCellEditorEvtHandler*>( m_control->GetEventHandler() );
154
155 // Forward the combobox close up event to the cell event handler as a focus kill event
156 // so that the grid editor is dismissed when the combox closes, otherwise it leaves the
157 // dropdown arrow visible in the cell.
158 wxFocusEvent event( wxEVT_KILL_FOCUS, m_control->GetId() );
159 event.SetEventObject( m_control );
160 evtHandler->ProcessEvent( event );
161}
bool EndEdit(int aRow, int aCol, const wxGrid *, const wxString &, wxString *aNewVal) override
void onComboDropDown(wxCommandEvent &aEvent)
GRID_CELL_COMBOBOX(const wxArrayString &names)
void Create(wxWindow *aParent, wxWindowID aId, wxEvtHandler *aEventHandler) override
void onComboCloseUp(wxCommandEvent &aEvent)
wxString GetValue() const override
void BeginEdit(int aRow, int aCol, wxGrid *aGrid) override
wxArrayString m_names
Definition: grid_combobox.h:58
wxComboBox * Combo() const
Definition: grid_combobox.h:53
void SetSize(const wxRect &aRect) override
void Reset() override
void ApplyEdit(int aRow, int aCol, wxGrid *aGrid) override
wxGridCellEditor * Clone() const override