%{
-#include "export.h"
+#include "wxPython.h"
#include "wx/stc/stc.h"
%}
%extern controls.i
+//----------------------------------------------------------------------
+
+%{
+ // Put some wx default wxChar* values into wxStrings.
+ DECLARE_DEF_STRING(STCNameStr);
+%}
//----------------------------------------------------------------------
// Get all our defs from the REAL header file.
def EVT_STC_DWELLEND(win, id, func):
win.Connect(id, -1, wxEVT_STC_DWELLEND, func)
+def EVT_STC_START_DRAG(win, id, func):
+ win.Connect(id, -1, wxEVT_STC_START_DRAG, func)
+
+def EVT_STC_DRAG_OVER(win, id, func):
+ win.Connect(id, -1, wxEVT_STC_DRAG_OVER, func)
+
+def EVT_STC_DO_DROP(win, id, func):
+ win.Connect(id, -1, wxEVT_STC_DO_DROP, func)
+
+def EVT_STC_ZOOM(win, id, func):
+ win.Connect(id, -1, wxEVT_STC_ZOOM, func)
"