diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-01 18:05:11 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-01 18:05:11 -0300 |
commit | 5e0be3d0a505781c31b3d23450fd92d4cc7b7ce7 (patch) | |
tree | c3fd7d83e604abaf5f62ab732e9a2383c0def5e0 /Project/Workspace.wxcp | |
parent | 3a246308dcd76f70a1b6c3e6b08f0d597b255dba (diff) | |
download | PSP.git-5e0be3d0a505781c31b3d23450fd92d4cc7b7ce7.tar.gz PSP.git-5e0be3d0a505781c31b3d23450fd92d4cc7b7ce7.tar.xz PSP.git-5e0be3d0a505781c31b3d23450fd92d4cc7b7ce7.zip |
Attempt to implement Event Handler in Workspace
fail
Diffstat (limited to 'Project/Workspace.wxcp')
-rw-r--r-- | Project/Workspace.wxcp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Project/Workspace.wxcp b/Project/Workspace.wxcp index d29b978..3f13f68 100644 --- a/Project/Workspace.wxcp +++ b/Project/Workspace.wxcp @@ -278,6 +278,20 @@ "m_functionNameAndSignature": "OnLeftClickDown(wxMouseEvent& event)", "m_description": "Process a wxEVT_LEFT_DOWN event. The handler of this event should normally call event.Skip() to allow the default processing to take place as otherwise the window under mouse wouldn't get the focus.", "m_noBody": false + }, { + "m_eventName": "wxEVT_KEY_DOWN", + "m_eventClass": "wxKeyEvent", + "m_eventHandler": "wxKeyEventHandler", + "m_functionNameAndSignature": "OnKeyDown(wxKeyEvent& event)", + "m_description": "Process a wxEVT_KEY_DOWN event (any key has been pressed)", + "m_noBody": false + }, { + "m_eventName": "wxEVT_MOTION", + "m_eventClass": "wxMouseEvent", + "m_eventHandler": "wxMouseEventHandler", + "m_functionNameAndSignature": "OnMouseMotion(wxMouseEvent& event)", + "m_description": "Process a wxEVT_MOTION event", + "m_noBody": false }], "m_children": [] }] |