-
Notifications
You must be signed in to change notification settings - Fork 1
/
wxKeylessButton.cpp
42 lines (37 loc) · 1019 Bytes
/
wxKeylessButton.cpp
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
38
39
40
41
42
#include "wxKeylessButton.h"
BEGIN_EVENT_TABLE(wxKeylessButton,wxButton)
EVT_KEY_DOWN(wxKeylessButton::OnKeyDown)
EVT_KEY_UP(wxKeylessButton::OnKeyUp)
EVT_CHAR(wxKeylessButton::OnChar)
END_EVENT_TABLE()
void wxKeylessButton::Create(wxWindow* parent, wxWindowID id, const wxString &text, const wxPoint &pos, const wxSize &size, long style )
{
wxButton::Create( parent, id, text, pos, size, style );
}
void wxKeylessButton::OnKeyDown( wxKeyEvent& event )
{
wxWindow* parent = this->GetParent();
if( parent )
{
parent->GetEventHandler()->ProcessEvent( event );
}
//event.Skip(true);
}
void wxKeylessButton::OnKeyUp( wxKeyEvent& event )
{
wxWindow* parent = this->GetParent();
if( parent )
{
parent->GetEventHandler()->ProcessEvent( event );
}
//event.Skip(true);
}
void wxKeylessButton::OnChar( wxKeyEvent& event)
{
wxWindow* parent = this->GetParent();
if( parent )
{
parent->GetEventHandler()->ProcessEvent( event );
}
//event.Skip(true);
}