]> git.saurik.com Git - wxWidgets.git/blob - wxPython/contrib/stc/stc_.i
Significantly changed how the Python interpreter lock and thread state
[wxWidgets.git] / wxPython / contrib / stc / stc_.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: stc.i
3 // Purpose: Wrappers for the wxStyledTextCtrl.
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 12-Oct-1999
8 // RCS-ID: $Id$
9 // Copyright: (c) 2000 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 %module stc_
14
15
16 %{
17 #include "export.h"
18 #include "wx/stc/stc.h"
19 %}
20
21 //---------------------------------------------------------------------------
22
23 %include typemaps.i
24 %include my_typemaps.i
25
26 %extern wx.i
27 %extern windows.i
28 %extern _defs.i
29 %extern events.i
30 %extern controls.i
31
32
33 //----------------------------------------------------------------------
34 // Get all our defs from the REAL header file.
35
36 %include stc.h
37
38 //----------------------------------------------------------------------
39 // Python functions to act like the event macros
40
41 %pragma(python) code = "
42 def EVT_STC_CHANGE(win, id, func):
43 win.Connect(id, -1, wxEVT_STC_CHANGE, func)
44
45 def EVT_STC_STYLENEEDED(win, id, func):
46 win.Connect(id, -1, wxEVT_STC_STYLENEEDED, func)
47
48 def EVT_STC_CHARADDED(win, id, func):
49 win.Connect(id, -1, wxEVT_STC_CHARADDED, func)
50
51 def EVT_STC_SAVEPOINTREACHED(win, id, func):
52 win.Connect(id, -1, wxEVT_STC_SAVEPOINTREACHED, func)
53
54 def EVT_STC_SAVEPOINTLEFT(win, id, func):
55 win.Connect(id, -1, wxEVT_STC_SAVEPOINTLEFT, func)
56
57 def EVT_STC_ROMODIFYATTEMPT(win, id, func):
58 win.Connect(id, -1, wxEVT_STC_ROMODIFYATTEMPT, func)
59
60 def EVT_STC_KEY(win, id, func):
61 win.Connect(id, -1, wxEVT_STC_KEY, func)
62
63 def EVT_STC_DOUBLECLICK(win, id, func):
64 win.Connect(id, -1, wxEVT_STC_DOUBLECLICK, func)
65
66 def EVT_STC_UPDATEUI(win, id, func):
67 win.Connect(id, -1, wxEVT_STC_UPDATEUI, func)
68
69 def EVT_STC_MODIFIED(win, id, func):
70 win.Connect(id, -1, wxEVT_STC_MODIFIED, func)
71
72 def EVT_STC_MACRORECORD(win, id, func):
73 win.Connect(id, -1, wxEVT_STC_MACRORECORD, func)
74
75 def EVT_STC_MARGINCLICK(win, id, func):
76 win.Connect(id, -1, wxEVT_STC_MARGINCLICK, func)
77
78 def EVT_STC_NEEDSHOWN(win, id, func):
79 win.Connect(id, -1, wxEVT_STC_NEEDSHOWN, func)
80
81 def EVT_STC_POSCHANGED(win, id, func):
82 win.Connect(id, -1, wxEVT_STC_POSCHANGED, func)
83
84 def EVT_STC_PAINTED(win, id, func):
85 win.Connect(id, -1, wxEVT_STC_PAINTED, func)
86
87 def EVT_STC_USERLISTSELECTION(win, id, func):
88 win.Connect(id, -1, wxEVT_STC_USERLISTSELECTION, func)
89
90 def EVT_STC_URIDROPPED(win, id, func):
91 win.Connect(id, -1, wxEVT_STC_URIDROPPED, func)
92
93 def EVT_STC_DWELLSTART(win, id, func):
94 win.Connect(id, -1, wxEVT_STC_DWELLSTART, func)
95
96 def EVT_STC_DWELLEND(win, id, func):
97 win.Connect(id, -1, wxEVT_STC_DWELLEND, func)
98
99
100 "
101
102 //----------------------------------------------------------------------
103
104 %init %{
105
106 wxClassInfo::CleanUpClasses();
107 wxClassInfo::InitializeClasses();
108
109 %}
110
111
112 //----------------------------------------------------------------------
113
114 %pragma(python) include="_stcextras.py";
115
116 //----------------------------------------------------------------------
117 //----------------------------------------------------------------------
118
119