-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwxKeylessChoice.cpp
More file actions
37 lines (32 loc) · 898 Bytes
/
wxKeylessChoice.cpp
File metadata and controls
37 lines (32 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "wxKeylessChoice.h"
BEGIN_EVENT_TABLE(wxKeylessChoice,wxChoice)
EVT_KEY_DOWN(wxKeylessChoice::OnKeyDown)
EVT_KEY_UP(wxKeylessChoice::OnKeyUp)
EVT_CHAR(wxKeylessChoice::OnChar)
END_EVENT_TABLE()
void wxKeylessChoice::Create(wxWindow* parent, wxWindowID id,
const wxPoint &pos, const wxSize &size, const wxArrayString& choices, long style )
{
wxChoice::Create( parent, id, pos, size, choices, style );
}
void wxKeylessChoice::OnKeyDown( wxKeyEvent& event )
{
wxWindow* parent = this->GetParent();
if( parent )
{
parent->GetEventHandler()->ProcessEvent( event );
}
//event.Skip(true);
}
void wxKeylessChoice::OnKeyUp( wxKeyEvent& event )
{
wxWindow* parent = this->GetParent();
if( parent )
{
parent->GetEventHandler()->ProcessEvent( event );
}
//event.Skip(true);
}
void wxKeylessChoice::OnChar( wxKeyEvent& )
{
}