diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-24 18:25:17 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-24 18:25:17 -0200 |
commit | bdb0625280d827ba7333b6fc9d6c6534e0720100 (patch) | |
tree | 6511dd5568556115db2affce10696efb7ff62c8f /Project/ControlEditor.wxcp | |
parent | 56b93d40596cc6e39930faad0f6fdf347275ee49 (diff) | |
download | PSP.git-bdb0625280d827ba7333b6fc9d6c6534e0720100.tar.gz PSP.git-bdb0625280d827ba7333b6fc9d6c6534e0720100.tar.xz PSP.git-bdb0625280d827ba7333b6fc9d6c6534e0720100.zip |
Control editor implementation start
Diffstat (limited to 'Project/ControlEditor.wxcp')
-rw-r--r-- | Project/ControlEditor.wxcp | 51 |
1 files changed, 50 insertions, 1 deletions
diff --git a/Project/ControlEditor.wxcp b/Project/ControlEditor.wxcp index 5ea38e9..b587276 100644 --- a/Project/ControlEditor.wxcp +++ b/Project/ControlEditor.wxcp @@ -1084,7 +1084,56 @@ "m_label": "WX_GL_SAMPLES", "m_value": "" }], - "m_events": [], + "m_events": [{ + "m_eventName": "wxEVT_PAINT", + "m_eventClass": "wxPaintEvent", + "m_eventHandler": "wxPaintEventHandler", + "m_functionNameAndSignature": "OnPaint(wxPaintEvent& event)", + "m_description": "Process a wxEVT_PAINT event", + "m_noBody": false + }, { + "m_eventName": "wxEVT_LEFT_DOWN", + "m_eventClass": "wxMouseEvent", + "m_eventHandler": "wxMouseEventHandler", + "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_LEFT_UP", + "m_eventClass": "wxMouseEvent", + "m_eventHandler": "wxMouseEventHandler", + "m_functionNameAndSignature": "OnLeftClickUp(wxMouseEvent& event)", + "m_description": "Process a wxEVT_LEFT_UP event.", + "m_noBody": false + }, { + "m_eventName": "wxEVT_LEFT_DCLICK", + "m_eventClass": "wxMouseEvent", + "m_eventHandler": "wxMouseEventHandler", + "m_functionNameAndSignature": "OnDoubleClick(wxMouseEvent& event)", + "m_description": "Process a wxEVT_LEFT_DCLICK event.", + "m_noBody": false + }, { + "m_eventName": "wxEVT_MIDDLE_DOWN", + "m_eventClass": "wxMouseEvent", + "m_eventHandler": "wxMouseEventHandler", + "m_functionNameAndSignature": "OnMiddleDown(wxMouseEvent& event)", + "m_description": "Process a wxEVT_MIDDLE_DOWN event", + "m_noBody": false + }, { + "m_eventName": "wxEVT_MIDDLE_UP", + "m_eventClass": "wxMouseEvent", + "m_eventHandler": "wxMouseEventHandler", + "m_functionNameAndSignature": "OnMiddleUp(wxMouseEvent& event)", + "m_description": "Process a wxEVT_MIDDLE_UP event", + "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": [] }] }] |