#include <grid_text_button_helpers.h>
Definition at line 38 of file grid_text_button_helpers.h.
◆ GRID_CELL_TEXT_BUTTON()
GRID_CELL_TEXT_BUTTON::GRID_CELL_TEXT_BUTTON |
( |
| ) |
|
|
inline |
◆ ApplyEdit()
void GRID_CELL_TEXT_BUTTON::ApplyEdit |
( |
int |
aRow, |
|
|
int |
aCol, |
|
|
wxGrid * |
aGrid |
|
) |
| |
|
override |
◆ BeginEdit()
void GRID_CELL_TEXT_BUTTON::BeginEdit |
( |
int |
aRow, |
|
|
int |
aCol, |
|
|
wxGrid * |
aGrid |
|
) |
| |
|
override |
Definition at line 130 of file grid_text_button_helpers.cpp.
131{
132 auto evtHandler = static_cast< wxGridCellEditorEvtHandler* >( m_control->GetEventHandler() );
133
134
135 evtHandler->SetInSetFocus( true );
136
137 m_value = aGrid->GetTable()->GetValue( aRow, aCol );
138
141}
wxComboCtrl * Combo() const
References Combo(), and m_value.
◆ Combo()
wxComboCtrl * GRID_CELL_TEXT_BUTTON::Combo |
( |
| ) |
const |
|
inlineprotected |
◆ EndEdit()
bool GRID_CELL_TEXT_BUTTON::EndEdit |
( |
int |
, |
|
|
int |
, |
|
|
const wxGrid * |
, |
|
|
const wxString & |
, |
|
|
wxString * |
aNewVal |
|
) |
| |
|
override |
◆ GetValue()
wxString GRID_CELL_TEXT_BUTTON::GetValue |
( |
| ) |
const |
|
override |
◆ Reset()
void GRID_CELL_TEXT_BUTTON::Reset |
( |
| ) |
|
|
override |
◆ SetSize()
void GRID_CELL_TEXT_BUTTON::SetSize |
( |
const wxRect & |
aRect | ) |
|
|
override |
Definition at line 60 of file grid_text_button_helpers.cpp.
61{
62 wxRect rect( aRect );
63
64#if defined( __WXMAC__ )
65 rect.Inflate( 2 );
66#elif defined( __WXGTK__ )
67 rect.Inflate( -3 );
68
69
70
71
72#else
73 rect.Inflate( -1 );
74#endif
75
76 Combo()->SetSize( rect, wxSIZE_ALLOW_MINUS_ONE );
77}
References Combo().
◆ StartingKey()
void GRID_CELL_TEXT_BUTTON::StartingKey |
( |
wxKeyEvent & |
event | ) |
|
|
override |
Definition at line 80 of file grid_text_button_helpers.cpp.
81{
82
83
84
85
86
87
88
89
90 wxTextEntry* textEntry =
static_cast<wxTextEntry*
>(
Combo() );
91 int ch;
92
93 bool isPrintable;
94
95#if wxUSE_UNICODE
96 ch = event.GetUnicodeKey();
97
98 if( ch != WXK_NONE )
99 isPrintable = true;
100 else
101#endif
102 {
103 ch = event.GetKeyCode();
104 isPrintable = ch >= WXK_SPACE && ch < WXK_START;
105 }
106
107 switch( ch )
108 {
109 case WXK_DELETE:
110
111 textEntry->Remove( 0, 1 );
112 break;
113
114 case WXK_BACK:
115
116 {
117 const long pos = textEntry->GetLastPosition();
118 textEntry->Remove( pos - 1, pos );
119 }
120 break;
121
122 default:
123 if( isPrintable )
124 textEntry->WriteText( static_cast<wxChar>( ch ) );
125 break;
126 }
127}
References Combo().
◆ wxDECLARE_NO_COPY_CLASS()
◆ m_value
wxString GRID_CELL_TEXT_BUTTON::m_value |
|
protected |
The documentation for this class was generated from the following files: