Public Member Functions | |
WxTextCtrlGettingKeyEvents (wxWindow *parent, wxWindowID id, const wxString &value, const wxPoint &pos, const wxSize &size, int style=0) | |
void | SetWxGUITextEditor (WxGUITextEditor *e) |
void | OnKeyDown (wxKeyEvent &event) |
void | OnKeyUp (wxKeyEvent &event) |
void | OnChar (wxKeyEvent &event) |
Private Attributes | |
WxGUITextEditor * | mWxGUITextEditor |
Definition at line 82 of file bbtkWxGUITextEditor.cxx.
bbtk::WxTextCtrlGettingKeyEvents::WxTextCtrlGettingKeyEvents | ( | wxWindow * | parent, | |
wxWindowID | id, | |||
const wxString & | value, | |||
const wxPoint & | pos, | |||
const wxSize & | size, | |||
int | style = 0 | |||
) | [inline] |
void bbtk::WxTextCtrlGettingKeyEvents::OnChar | ( | wxKeyEvent & | event | ) |
void bbtk::WxTextCtrlGettingKeyEvents::OnKeyDown | ( | wxKeyEvent & | event | ) |
Definition at line 121 of file bbtkWxGUITextEditor.cxx.
References mWxGUITextEditor, and bbtk::WxGUITextEditor::OnKeyDown().
00122 { 00123 mWxGUITextEditor->OnKeyDown(event); 00124 event.Skip(); 00125 }
void bbtk::WxTextCtrlGettingKeyEvents::OnKeyUp | ( | wxKeyEvent & | event | ) |
Definition at line 115 of file bbtkWxGUITextEditor.cxx.
References mWxGUITextEditor, and bbtk::WxGUITextEditor::OnKeyUp().
00116 { 00117 mWxGUITextEditor->OnKeyUp(event); 00118 event.Skip(); 00119 }
void bbtk::WxTextCtrlGettingKeyEvents::SetWxGUITextEditor | ( | WxGUITextEditor * | e | ) | [inline] |
Definition at line 91 of file bbtkWxGUITextEditor.cxx.
References mWxGUITextEditor.
Referenced by bbtk::WxGUITextEditorPage::WxGUITextEditorPage().
00092 { mWxGUITextEditor = e; }
Definition at line 98 of file bbtkWxGUITextEditor.cxx.
Referenced by OnKeyDown(), OnKeyUp(), and SetWxGUITextEditor().