]>
Commit | Line | Data |
---|---|---|
e91a9dfc | 1 | /* |
c368d904 | 2 | * FILE : contrib/ogl/ogl.cpp |
e91a9dfc RD |
3 | * |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
185d7c3e | 6 | * Version 1.1 (Build 883) |
e91a9dfc RD |
7 | * |
8 | * Portions Copyright (c) 1995-1998 | |
9 | * The University of Utah and The Regents of the University of California. | |
10 | * Permission is granted to distribute this file in any manner provided | |
11 | * this notice remains intact. | |
12 | * | |
13 | * Do not make changes to this file--changes will be lost! | |
14 | * | |
15 | */ | |
16 | ||
17 | ||
18 | #define SWIGCODE | |
19 | /* Implementation : PYTHON */ | |
20 | ||
21 | #define SWIGPYTHON | |
22 | #include <string.h> | |
23 | #include <stdlib.h> | |
24 | /* Definitions for Windows/Unix exporting */ | |
25 | #if defined(__WIN32__) | |
26 | # if defined(_MSC_VER) | |
27 | # define SWIGEXPORT(a) __declspec(dllexport) a | |
28 | # else | |
29 | # if defined(__BORLANDC__) | |
9c4165ad | 30 | # define SWIGEXPORT(a) a _export |
e91a9dfc | 31 | # else |
9c4165ad | 32 | # define SWIGEXPORT(a) a |
e91a9dfc RD |
33 | # endif |
34 | # endif | |
35 | #else | |
9c4165ad | 36 | # define SWIGEXPORT(a) a |
e91a9dfc RD |
37 | #endif |
38 | ||
39 | #ifdef __cplusplus | |
40 | extern "C" { | |
41 | #endif | |
9c4165ad | 42 | #include "Python.h" |
e91a9dfc RD |
43 | extern void SWIG_MakePtr(char *, void *, char *); |
44 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); | |
45 | extern char *SWIG_GetPtr(char *, void **, char *); | |
46 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); | |
47 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); | |
48 | extern PyObject *SWIG_newvarlink(void); | |
49 | #ifdef __cplusplus | |
50 | } | |
51 | #endif | |
52 | #define SWIG_init initoglc | |
53 | ||
54 | #define SWIG_name "oglc" | |
55 | ||
1e7ecb7b | 56 | #include "export.h" |
e91a9dfc | 57 | #include "oglhelpers.h" |
e91a9dfc RD |
58 | |
59 | static PyObject* l_output_helper(PyObject* target, PyObject* o) { | |
60 | PyObject* o2; | |
185d7c3e | 61 | if (!target) { |
e91a9dfc | 62 | target = o; |
185d7c3e | 63 | } else if (target == Py_None) { |
e91a9dfc RD |
64 | Py_DECREF(Py_None); |
65 | target = o; | |
185d7c3e | 66 | } else { |
e91a9dfc RD |
67 | if (!PyList_Check(target)) { |
68 | o2 = target; | |
69 | target = PyList_New(0); | |
70 | PyList_Append(target, o2); | |
71 | Py_XDECREF(o2); | |
72 | } | |
73 | PyList_Append(target,o); | |
74 | Py_XDECREF(o); | |
75 | } | |
76 | return target; | |
77 | } | |
78 | ||
79 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
80 | PyObject* o2; | |
81 | PyObject* o3; | |
82 | ||
185d7c3e | 83 | if (!target) { |
e91a9dfc | 84 | target = o; |
185d7c3e | 85 | } else if (target == Py_None) { |
e91a9dfc RD |
86 | Py_DECREF(Py_None); |
87 | target = o; | |
185d7c3e | 88 | } else { |
e91a9dfc RD |
89 | if (!PyTuple_Check(target)) { |
90 | o2 = target; | |
91 | target = PyTuple_New(1); | |
92 | PyTuple_SetItem(target, 0, o2); | |
93 | } | |
185d7c3e RD |
94 | o3 = PyTuple_New(1); |
95 | PyTuple_SetItem(o3, 0, o); | |
e91a9dfc RD |
96 | |
97 | o2 = target; | |
185d7c3e RD |
98 | target = PySequence_Concat(o2, o3); |
99 | Py_DECREF(o2); | |
e91a9dfc RD |
100 | Py_DECREF(o3); |
101 | } | |
102 | return target; | |
103 | } | |
104 | ||
e91a9dfc RD |
105 | static char* wxStringErrorMsg = "string type is required for parameter"; |
106 | ||
1e7ecb7b RD |
107 | //--------------------------------------------------------------------------- |
108 | // This one will work for any class for the VERY generic cases, but beyond that | |
109 | // the helper needs to know more about the type. | |
110 | ||
111 | wxList* wxPy_wxListHelper(PyObject* pyList, char* className) { | |
112 | bool doSave = wxPyRestoreThread(); | |
113 | if (!PyList_Check(pyList)) { | |
114 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
115 | wxPySaveThread(doSave); | |
116 | return NULL; | |
117 | } | |
118 | int count = PyList_Size(pyList); | |
119 | wxList* list = new wxList; | |
120 | if (! list) { | |
121 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object"); | |
122 | wxPySaveThread(doSave); | |
123 | return NULL; | |
124 | } | |
125 | for (int x=0; x<count; x++) { | |
126 | PyObject* pyo = PyList_GetItem(pyList, x); | |
127 | wxObject* wxo = NULL; | |
128 | ||
129 | if (SWIG_GetPtrObj(pyo, (void **)&wxo, className)) { | |
130 | char errmsg[1024]; | |
131 | sprintf(errmsg, "Type error, expected list of %s objects", className); | |
132 | PyErr_SetString(PyExc_TypeError, errmsg); | |
133 | wxPySaveThread(doSave); | |
134 | return NULL; | |
135 | } | |
136 | list->Append(wxo); | |
137 | } | |
138 | wxPySaveThread(doSave); | |
139 | return list; | |
140 | } | |
141 | ||
142 | //--------------------------------------------------------------------------- | |
143 | ||
144 | wxList* wxPy_wxRealPoint_ListHelper(PyObject* pyList) { | |
145 | bool doSave = wxPyRestoreThread(); | |
146 | if (!PyList_Check(pyList)) { | |
147 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
148 | wxPySaveThread(doSave); | |
149 | return NULL; | |
150 | } | |
151 | int count = PyList_Size(pyList); | |
152 | wxList* list = new wxList; | |
153 | if (! list) { | |
154 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object"); | |
155 | wxPySaveThread(doSave); | |
156 | return NULL; | |
157 | } | |
158 | for (int x=0; x<count; x++) { | |
159 | PyObject* pyo = PyList_GetItem(pyList, x); | |
160 | ||
161 | if (PyTuple_Check(pyo)) { | |
162 | PyObject* o1 = PyNumber_Float(PyTuple_GetItem(pyo, 0)); | |
163 | PyObject* o2 = PyNumber_Float(PyTuple_GetItem(pyo, 1)); | |
164 | ||
165 | double val1 = (o1 ? PyFloat_AsDouble(o1) : 0.0); | |
166 | double val2 = (o2 ? PyFloat_AsDouble(o2) : 0.0); | |
167 | ||
168 | list->Append((wxObject*) new wxRealPoint(val1, val2)); | |
169 | ||
170 | } else { | |
171 | wxRealPoint* wxo = NULL; | |
172 | if (SWIG_GetPtrObj(pyo, (void **)&wxo, "_wxRealPoint_p")) { | |
173 | PyErr_SetString(PyExc_TypeError, "Type error, expected list of wxRealPoint objects or 2-tuples"); | |
174 | wxPySaveThread(doSave); | |
175 | return NULL; | |
176 | } | |
177 | list->Append((wxObject*) new wxRealPoint(*wxo)); | |
178 | } | |
179 | } | |
180 | wxPySaveThread(doSave); | |
181 | return list; | |
182 | } | |
183 | ||
184 | ||
185 | //--------------------------------------------------------------------------- | |
186 | ||
187 | ||
e91a9dfc RD |
188 | extern "C" SWIGEXPORT(void) initoglbasicc(); |
189 | extern "C" SWIGEXPORT(void) initoglshapesc(); | |
190 | extern "C" SWIGEXPORT(void) initoglshapes2c(); | |
191 | extern "C" SWIGEXPORT(void) initoglcanvasc(); | |
192 | #ifdef __cplusplus | |
193 | extern "C" { | |
194 | #endif | |
195 | static PyObject *_wrap_wxOGLInitialize(PyObject *self, PyObject *args, PyObject *kwargs) { | |
196 | PyObject * _resultobj; | |
197 | char *_kwnames[] = { NULL }; | |
198 | ||
199 | self = self; | |
200 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxOGLInitialize",_kwnames)) | |
201 | return NULL; | |
202 | { | |
203 | wxPy_BEGIN_ALLOW_THREADS; | |
204 | wxOGLInitialize(); | |
205 | ||
206 | wxPy_END_ALLOW_THREADS; | |
207 | } Py_INCREF(Py_None); | |
208 | _resultobj = Py_None; | |
209 | return _resultobj; | |
210 | } | |
211 | ||
212 | static PyObject *_wrap_wxOGLCleanUp(PyObject *self, PyObject *args, PyObject *kwargs) { | |
213 | PyObject * _resultobj; | |
214 | char *_kwnames[] = { NULL }; | |
215 | ||
216 | self = self; | |
217 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxOGLCleanUp",_kwnames)) | |
218 | return NULL; | |
219 | { | |
220 | wxPy_BEGIN_ALLOW_THREADS; | |
221 | wxOGLCleanUp(); | |
222 | ||
223 | wxPy_END_ALLOW_THREADS; | |
224 | } Py_INCREF(Py_None); | |
225 | _resultobj = Py_None; | |
226 | return _resultobj; | |
227 | } | |
228 | ||
229 | static PyMethodDef oglcMethods[] = { | |
230 | { "wxOGLCleanUp", (PyCFunction) _wrap_wxOGLCleanUp, METH_VARARGS | METH_KEYWORDS }, | |
231 | { "wxOGLInitialize", (PyCFunction) _wrap_wxOGLInitialize, METH_VARARGS | METH_KEYWORDS }, | |
232 | { NULL, NULL } | |
233 | }; | |
234 | #ifdef __cplusplus | |
235 | } | |
236 | #endif | |
237 | /* | |
238 | * This table is used by the pointer type-checker | |
239 | */ | |
240 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
241 | { "_wxAcceleratorTable","_class_wxAcceleratorTable",0}, | |
242 | { "_wxEvent","_class_wxEvent",0}, | |
243 | { "_class_wxActivateEvent","_wxActivateEvent",0}, | |
244 | { "_signed_long","_long",0}, | |
245 | { "_wxMenuEvent","_class_wxMenuEvent",0}, | |
c368d904 | 246 | { "_class_wxProcessEvent","_wxProcessEvent",0}, |
e91a9dfc | 247 | { "_class_wxJPEGHandler","_wxJPEGHandler",0}, |
c368d904 | 248 | { "_class_wxFSFile","_wxFSFile",0}, |
4c9993c3 RD |
249 | { "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0}, |
250 | { "_wxBitmapDataObject","_class_wxBitmapDataObject",0}, | |
2348eaee | 251 | { "_class_wxPyCommandEvent","_wxPyCommandEvent",0}, |
e91a9dfc RD |
252 | { "_wxBMPHandler","_class_wxBMPHandler",0}, |
253 | { "_wxImage","_class_wxImage",0}, | |
f6bcfd97 | 254 | { "_wxFlexGridSizer","_class_wxFlexGridSizer",0}, |
c368d904 RD |
255 | { "_wxWindowDisabler","_class_wxWindowDisabler",0}, |
256 | { "_class_wxDateTime","_wxDateTime",0}, | |
4c9993c3 | 257 | { "_wxPrintQuality","_wxCoord",0}, |
e91a9dfc RD |
258 | { "_wxPrintQuality","_int",0}, |
259 | { "_wxPrintQuality","_signed_int",0}, | |
260 | { "_wxPrintQuality","_unsigned_int",0}, | |
261 | { "_wxPrintQuality","_wxWindowID",0}, | |
262 | { "_wxPrintQuality","_uint",0}, | |
263 | { "_wxPrintQuality","_EBool",0}, | |
264 | { "_wxPrintQuality","_size_t",0}, | |
c368d904 | 265 | { "_wxPrintQuality","_time_t",0}, |
4c9993c3 | 266 | { "_class_wxCustomDataObject","_wxCustomDataObject",0}, |
c368d904 | 267 | { "_wxSpinCtrl","_class_wxSpinCtrl",0}, |
e91a9dfc | 268 | { "_wxFontData","_class_wxFontData",0}, |
e91a9dfc | 269 | { "_class_wxRegionIterator","_wxRegionIterator",0}, |
4c9993c3 | 270 | { "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0}, |
e91a9dfc RD |
271 | { "_class_wxMenuBar","_wxMenuBar",0}, |
272 | { "_class_wxPyTreeItemData","_wxPyTreeItemData",0}, | |
2348eaee | 273 | { "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0}, |
e91a9dfc RD |
274 | { "_class_wxEvtHandler","_wxEvtHandler",0}, |
275 | { "_wxPaintEvent","_class_wxPaintEvent",0}, | |
276 | { "_wxGIFHandler","_class_wxGIFHandler",0}, | |
2348eaee | 277 | { "_wxPySizer","_class_wxPySizer",0}, |
c368d904 | 278 | { "_wxInternetFSHandler","_class_wxInternetFSHandler",0}, |
e91a9dfc RD |
279 | { "_wxPyCompositeShape","_class_wxPyCompositeShape",0}, |
280 | { "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0}, | |
281 | { "_wxCursor","_class_wxCursor",0}, | |
282 | { "_wxNotifyEvent","_class_wxNotifyEvent",0}, | |
c368d904 RD |
283 | { "_wxPyProcess","_class_wxPyProcess",0}, |
284 | { "_wxPyTreeCtrl","_class_wxPyTreeCtrl",0}, | |
e91a9dfc RD |
285 | { "_wxImageHandler","_class_wxImageHandler",0}, |
286 | { "_class_wxPyRectangleShape","_wxPyRectangleShape",0}, | |
c368d904 | 287 | { "_wxLog","_class_wxLog",0}, |
4c9993c3 | 288 | { "_class_wxToolBarBase","_wxToolBarBase",0}, |
e91a9dfc RD |
289 | { "_wxMask","_class_wxMask",0}, |
290 | { "_wxToolTip","_class_wxToolTip",0}, | |
e91a9dfc RD |
291 | { "_wxPNGHandler","_class_wxPNGHandler",0}, |
292 | { "_class_wxOGLConstraint","_wxOGLConstraint",0}, | |
293 | { "_class_wxColourData","_wxColourData",0}, | |
294 | { "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0}, | |
295 | { "_wxPrinter","_class_wxPrinter",0}, | |
296 | { "_wxPseudoMetaFile","_class_wxPseudoMetaFile",0}, | |
297 | { "_class_wxArrowHead","_wxArrowHead",0}, | |
298 | { "_wxPen","_class_wxPen",0}, | |
299 | { "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0}, | |
f6bcfd97 | 300 | { "_class_wxNotebookSizer","_wxNotebookSizer",0}, |
e91a9dfc | 301 | { "_byte","_unsigned_char",0}, |
4c9993c3 RD |
302 | { "_wxDataObject","_class_wxDataObject",0}, |
303 | { "_class_wxPyFontEnumerator","_wxPyFontEnumerator",0}, | |
e91a9dfc | 304 | { "_wxStaticBox","_class_wxStaticBox",0}, |
4c9993c3 RD |
305 | { "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0}, |
306 | { "_wxPyDropSource","_class_wxPyDropSource",0}, | |
e91a9dfc RD |
307 | { "_wxChoice","_class_wxChoice",0}, |
308 | { "_wxSlider","_class_wxSlider",0}, | |
309 | { "_wxNotebookEvent","_class_wxNotebookEvent",0}, | |
310 | { "_wxPyPrintout","_class_wxPyPrintout",0}, | |
311 | { "_wxShapeRegion","_class_wxShapeRegion",0}, | |
e91a9dfc RD |
312 | { "_long","_unsigned_long",0}, |
313 | { "_long","_signed_long",0}, | |
314 | { "_wxImageList","_class_wxImageList",0}, | |
4c9993c3 | 315 | { "_wxDataObjectSimple","_class_wxDataObjectSimple",0}, |
e91a9dfc RD |
316 | { "_wxDropFilesEvent","_class_wxDropFilesEvent",0}, |
317 | { "_wxBitmapButton","_class_wxBitmapButton",0}, | |
318 | { "_wxSashWindow","_class_wxSashWindow",0}, | |
2348eaee | 319 | { "_class_wxSizer","_wxSizer",0}, |
4c9993c3 | 320 | { "_class_wxTIFFHandler","_wxTIFFHandler",0}, |
e91a9dfc | 321 | { "_class_wxPrintDialogData","_wxPrintDialogData",0}, |
f6bcfd97 | 322 | { "_wxGridSizer","_class_wxGridSizer",0}, |
e91a9dfc | 323 | { "_class_wxAcceleratorTable","_wxAcceleratorTable",0}, |
4c9993c3 | 324 | { "_class_wxClipboard","_wxClipboard",0}, |
e91a9dfc RD |
325 | { "_class_wxGauge","_wxGauge",0}, |
326 | { "_class_wxSashEvent","_wxSashEvent",0}, | |
327 | { "_wxDC","_class_wxDC",0}, | |
2348eaee | 328 | { "_wxSizerItem","_class_wxSizerItem",0}, |
4c9993c3 | 329 | { "_class_wxBitmapDataObject","_wxBitmapDataObject",0}, |
e91a9dfc RD |
330 | { "_wxListEvent","_class_wxListEvent",0}, |
331 | { "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0}, | |
332 | { "_wxProgressDialog","_class_wxProgressDialog",0}, | |
333 | { "_class_wxBMPHandler","_wxBMPHandler",0}, | |
334 | { "_wxPrintPreview","_class_wxPrintPreview",0}, | |
f6bcfd97 | 335 | { "_class_wxFlexGridSizer","_wxFlexGridSizer",0}, |
e91a9dfc RD |
336 | { "_wxSpinEvent","_class_wxSpinEvent",0}, |
337 | { "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0}, | |
338 | { "_wxPyBitmapShape","_class_wxPyBitmapShape",0}, | |
339 | { "_class_wxPyEllipseShape","_wxPyEllipseShape",0}, | |
4c9993c3 | 340 | { "_size_t","_wxCoord",0}, |
e91a9dfc | 341 | { "_size_t","_wxPrintQuality",0}, |
c368d904 | 342 | { "_size_t","_time_t",0}, |
e91a9dfc RD |
343 | { "_size_t","_unsigned_int",0}, |
344 | { "_size_t","_int",0}, | |
345 | { "_size_t","_wxWindowID",0}, | |
346 | { "_size_t","_uint",0}, | |
347 | { "_class_wxRealPoint","_wxRealPoint",0}, | |
4c9993c3 RD |
348 | { "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0}, |
349 | { "_wxPNMHandler","_class_wxPNMHandler",0}, | |
350 | { "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0}, | |
c368d904 | 351 | { "_wxLogGui","_class_wxLogGui",0}, |
e91a9dfc RD |
352 | { "_class_wxPyShapeEvtHandler","_wxPyShapeEvtHandler",0}, |
353 | { "_class_wxMenuItem","_wxMenuItem",0}, | |
354 | { "_class_wxPaintEvent","_wxPaintEvent",0}, | |
355 | { "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0}, | |
356 | { "_class_wxStatusBar","_wxStatusBar",0}, | |
357 | { "_class_wxGIFHandler","_wxGIFHandler",0}, | |
2348eaee | 358 | { "_class_wxPySizer","_wxPySizer",0}, |
e91a9dfc RD |
359 | { "_class_wxPyCompositeShape","_wxPyCompositeShape",0}, |
360 | { "_wxPyPolygonShape","_class_wxPyPolygonShape",0}, | |
9c4165ad | 361 | { "_class_wxPostScriptDC","_wxPostScriptDC",0}, |
e91a9dfc RD |
362 | { "_wxPanel","_class_wxPanel",0}, |
363 | { "_wxInitDialogEvent","_class_wxInitDialogEvent",0}, | |
364 | { "_wxCheckBox","_class_wxCheckBox",0}, | |
c368d904 | 365 | { "_class_wxPyTreeCtrl","_wxPyTreeCtrl",0}, |
e91a9dfc RD |
366 | { "_wxPyEvent","_class_wxPyEvent",0}, |
367 | { "_wxTextCtrl","_class_wxTextCtrl",0}, | |
368 | { "_class_wxMask","_wxMask",0}, | |
4c9993c3 | 369 | { "_wxTextDataObject","_class_wxTextDataObject",0}, |
e91a9dfc | 370 | { "_class_wxKeyEvent","_wxKeyEvent",0}, |
4c9993c3 | 371 | { "_class_wxToolTip","_wxToolTip",0}, |
e91a9dfc | 372 | { "_class_wxPNGHandler","_wxPNGHandler",0}, |
c368d904 | 373 | { "_wxFileConfig","_class_wxFileConfig",0}, |
e91a9dfc RD |
374 | { "_wxColour","_class_wxColour",0}, |
375 | { "_class_wxDialog","_wxDialog",0}, | |
4c9993c3 | 376 | { "_wxBusyCursor","_class_wxBusyCursor",0}, |
e91a9dfc RD |
377 | { "_wxPageSetupDialog","_class_wxPageSetupDialog",0}, |
378 | { "_class_wxPrinter","_wxPrinter",0}, | |
4c9993c3 | 379 | { "_class_wxFileDataObject","_wxFileDataObject",0}, |
e91a9dfc RD |
380 | { "_wxIdleEvent","_class_wxIdleEvent",0}, |
381 | { "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0}, | |
382 | { "_wxToolBar","_class_wxToolBar",0}, | |
4c9993c3 | 383 | { "_class_wxDataObject","_wxDataObject",0}, |
f0261a72 | 384 | { "_wxCaret","_class_wxCaret",0}, |
e91a9dfc RD |
385 | { "_wxStaticLine","_class_wxStaticLine",0}, |
386 | { "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0}, | |
387 | { "_wxBrush","_class_wxBrush",0}, | |
388 | { "_wxMiniFrame","_class_wxMiniFrame",0}, | |
389 | { "_class_wxNotebookEvent","_wxNotebookEvent",0}, | |
390 | { "_class_wxPyPrintout","_wxPyPrintout",0}, | |
4c9993c3 RD |
391 | { "_wxDataFormat","_class_wxDataFormat",0}, |
392 | { "_class_wxDataObjectSimple","_wxDataObjectSimple",0}, | |
e91a9dfc RD |
393 | { "_class_wxSashWindow","_wxSashWindow",0}, |
394 | { "_wxShowEvent","_class_wxShowEvent",0}, | |
395 | { "_class_wxPyDivisionShape","_wxPyDivisionShape",0}, | |
4c9993c3 | 396 | { "_uint","_wxCoord",0}, |
e91a9dfc | 397 | { "_uint","_wxPrintQuality",0}, |
c368d904 | 398 | { "_uint","_time_t",0}, |
e91a9dfc RD |
399 | { "_uint","_size_t",0}, |
400 | { "_uint","_unsigned_int",0}, | |
401 | { "_uint","_int",0}, | |
402 | { "_uint","_wxWindowID",0}, | |
c368d904 | 403 | { "_wxChar","_char",0}, |
f0261a72 | 404 | { "_wxPyValidator","_class_wxPyValidator",0}, |
e91a9dfc RD |
405 | { "_class_wxEvent","_wxEvent",0}, |
406 | { "_wxCheckListBox","_class_wxCheckListBox",0}, | |
407 | { "_wxSplitterEvent","_class_wxSplitterEvent",0}, | |
e91a9dfc RD |
408 | { "_wxRect","_class_wxRect",0}, |
409 | { "_wxCommandEvent","_class_wxCommandEvent",0}, | |
410 | { "_wxPyShapeCanvas","_class_wxPyShapeCanvas",0}, | |
411 | { "_wxSizeEvent","_class_wxSizeEvent",0}, | |
c368d904 | 412 | { "_class_wxLogWindow","_wxLogWindow",0}, |
e91a9dfc RD |
413 | { "_class_wxImage","_wxImage",0}, |
414 | { "_wxPoint","_class_wxPoint",0}, | |
c368d904 | 415 | { "_class_wxWindowDisabler","_wxWindowDisabler",0}, |
e91a9dfc RD |
416 | { "_class_wxSashLayoutWindow","_wxSashLayoutWindow",0}, |
417 | { "_class_wxPyBitmapShape","_wxPyBitmapShape",0}, | |
418 | { "_class_wxButton","_wxButton",0}, | |
419 | { "_wxRadioBox","_class_wxRadioBox",0}, | |
c368d904 | 420 | { "_class_wxSpinCtrl","_wxSpinCtrl",0}, |
e91a9dfc | 421 | { "_class_wxFontData","_wxFontData",0}, |
4c9993c3 | 422 | { "_class_wxPNMHandler","_wxPNMHandler",0}, |
2348eaee | 423 | { "_wxBoxSizer","_class_wxBoxSizer",0}, |
c368d904 RD |
424 | { "_class_wxZipFSHandler","_wxZipFSHandler",0}, |
425 | { "_char","_wxChar",0}, | |
e91a9dfc | 426 | { "_wxBitmap","_class_wxBitmap",0}, |
e91a9dfc | 427 | { "_wxPrintDialog","_class_wxPrintDialog",0}, |
2348eaee | 428 | { "_wxPyControlPoint","_class_wxPyControlPoint",0}, |
e91a9dfc | 429 | { "_wxWindowDC","_class_wxWindowDC",0}, |
c368d904 RD |
430 | { "_wxTimerEvent","_class_wxTimerEvent",0}, |
431 | { "_wxPyTimer","_class_wxPyTimer",0}, | |
e91a9dfc RD |
432 | { "_wxScrollBar","_class_wxScrollBar",0}, |
433 | { "_wxSpinButton","_class_wxSpinButton",0}, | |
e91a9dfc RD |
434 | { "_wxColourDialog","_class_wxColourDialog",0}, |
435 | { "_wxPrintData","_class_wxPrintData",0}, | |
c368d904 | 436 | { "_class_wxInternetFSHandler","_wxInternetFSHandler",0}, |
e91a9dfc RD |
437 | { "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0}, |
438 | { "_class_wxNotifyEvent","_wxNotifyEvent",0}, | |
439 | { "_wxMessageDialog","_class_wxMessageDialog",0}, | |
f0261a72 | 440 | { "_class_wxValidator","_wxValidator",0}, |
e91a9dfc RD |
441 | { "_class_wxPyEvent","_wxPyEvent",0}, |
442 | { "_wxTextEntryDialog","_class_wxTextEntryDialog",0}, | |
c368d904 | 443 | { "_wxConfig","_class_wxConfig",0}, |
e91a9dfc RD |
444 | { "_class_wxIconizeEvent","_wxIconizeEvent",0}, |
445 | { "_class_wxStaticBitmap","_wxStaticBitmap",0}, | |
c368d904 | 446 | { "_class_wxFileConfig","_wxFileConfig",0}, |
e91a9dfc | 447 | { "_class_wxPyDrawnShape","_wxPyDrawnShape",0}, |
4c9993c3 RD |
448 | { "_class_wxBusyCursor","_wxBusyCursor",0}, |
449 | { "_wxToolBarSimple","_class_wxToolBarSimple",0}, | |
e91a9dfc RD |
450 | { "_wxMDIChildFrame","_class_wxMDIChildFrame",0}, |
451 | { "_wxListItem","_class_wxListItem",0}, | |
452 | { "_class_wxPseudoMetaFile","_wxPseudoMetaFile",0}, | |
453 | { "_class_wxToolBar","_wxToolBar",0}, | |
4c9993c3 | 454 | { "_wxDropTarget","_class_wxDropTarget",0}, |
e91a9dfc RD |
455 | { "_class_wxStaticLine","_wxStaticLine",0}, |
456 | { "_wxScrollEvent","_class_wxScrollEvent",0}, | |
4c9993c3 | 457 | { "_wxToolBarToolBase","_class_wxToolBarToolBase",0}, |
e91a9dfc | 458 | { "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0}, |
c368d904 | 459 | { "_class_wxMemoryFSHandler","_wxMemoryFSHandler",0}, |
e91a9dfc | 460 | { "_class_wxShapeRegion","_wxShapeRegion",0}, |
4c9993c3 | 461 | { "_EBool","_wxCoord",0}, |
e91a9dfc RD |
462 | { "_EBool","_wxPrintQuality",0}, |
463 | { "_EBool","_signed_int",0}, | |
464 | { "_EBool","_int",0}, | |
465 | { "_EBool","_wxWindowID",0}, | |
466 | { "_class_wxRegion","_wxRegion",0}, | |
4c9993c3 | 467 | { "_class_wxDataFormat","_wxDataFormat",0}, |
e91a9dfc | 468 | { "_class_wxDropFilesEvent","_wxDropFilesEvent",0}, |
4c9993c3 | 469 | { "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0}, |
e91a9dfc RD |
470 | { "_class_wxPreviewFrame","_wxPreviewFrame",0}, |
471 | { "_wxStaticText","_class_wxStaticText",0}, | |
472 | { "_wxFont","_class_wxFont",0}, | |
4c9993c3 | 473 | { "_class_wxPyDropTarget","_wxPyDropTarget",0}, |
e91a9dfc RD |
474 | { "_wxCloseEvent","_class_wxCloseEvent",0}, |
475 | { "_class_wxSplitterEvent","_wxSplitterEvent",0}, | |
c368d904 | 476 | { "_wxProcessEvent","_class_wxProcessEvent",0}, |
e91a9dfc | 477 | { "_wxNotebook","_class_wxNotebook",0}, |
c368d904 | 478 | { "_wxFSFile","_class_wxFSFile",0}, |
e91a9dfc RD |
479 | { "_unsigned_long","_long",0}, |
480 | { "_class_wxRect","_wxRect",0}, | |
481 | { "_class_wxDC","_wxDC",0}, | |
9cce9de1 | 482 | { "_wxScrollWinEvent","_class_wxScrollWinEvent",0}, |
e91a9dfc RD |
483 | { "_wxPyCircleShape","_class_wxPyCircleShape",0}, |
484 | { "_class_wxPyShapeCanvas","_wxPyShapeCanvas",0}, | |
f6bcfd97 | 485 | { "_wxGenericDragImage","_class_wxGenericDragImage",0}, |
e91a9dfc | 486 | { "_class_wxProgressDialog","_wxProgressDialog",0}, |
4c9993c3 | 487 | { "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0}, |
c368d904 | 488 | { "_wxPyInputStream","_class_wxPyInputStream",0}, |
e91a9dfc | 489 | { "_wxPyApp","_class_wxPyApp",0}, |
4c9993c3 | 490 | { "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0}, |
c368d904 RD |
491 | { "_class_wxOutputStream","_wxOutputStream",0}, |
492 | { "_wxLogTextCtrl","_class_wxLogTextCtrl",0}, | |
e91a9dfc RD |
493 | { "_wxMDIParentFrame","_class_wxMDIParentFrame",0}, |
494 | { "_class_wxTreeEvent","_wxTreeEvent",0}, | |
495 | { "_class_wxDirDialog","_wxDirDialog",0}, | |
c368d904 | 496 | { "_wxTimeSpan","_class_wxTimeSpan",0}, |
e91a9dfc | 497 | { "_wxPyLineShape","_class_wxPyLineShape",0}, |
e91a9dfc RD |
498 | { "_wxFocusEvent","_class_wxFocusEvent",0}, |
499 | { "_wxMaximizeEvent","_class_wxMaximizeEvent",0}, | |
c368d904 RD |
500 | { "_class_wxTimerEvent","_wxTimerEvent",0}, |
501 | { "_class_wxPyTimer","_wxPyTimer",0}, | |
e91a9dfc RD |
502 | { "_class_wxSpinButton","_wxSpinButton",0}, |
503 | { "_class_wxPyPolygonShape","_wxPyPolygonShape",0}, | |
504 | { "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0}, | |
505 | { "_class_wxPanel","_wxPanel",0}, | |
506 | { "_class_wxCheckBox","_wxCheckBox",0}, | |
507 | { "_wxComboBox","_class_wxComboBox",0}, | |
508 | { "_wxRadioButton","_class_wxRadioButton",0}, | |
509 | { "_class_wxMessageDialog","_wxMessageDialog",0}, | |
4c9993c3 | 510 | { "_signed_int","_wxCoord",0}, |
e91a9dfc RD |
511 | { "_signed_int","_wxPrintQuality",0}, |
512 | { "_signed_int","_EBool",0}, | |
513 | { "_signed_int","_wxWindowID",0}, | |
514 | { "_signed_int","_int",0}, | |
515 | { "_class_wxTextCtrl","_wxTextCtrl",0}, | |
f6bcfd97 | 516 | { "_class_wxListItemAttr","_wxListItemAttr",0}, |
e91a9dfc | 517 | { "_wxLayoutConstraints","_class_wxLayoutConstraints",0}, |
4c9993c3 | 518 | { "_class_wxTextDataObject","_wxTextDataObject",0}, |
e91a9dfc RD |
519 | { "_wxMenu","_class_wxMenu",0}, |
520 | { "_class_wxMoveEvent","_wxMoveEvent",0}, | |
521 | { "_wxListBox","_class_wxListBox",0}, | |
522 | { "_wxScreenDC","_class_wxScreenDC",0}, | |
4c9993c3 | 523 | { "_class_wxToolBarSimple","_wxToolBarSimple",0}, |
e91a9dfc RD |
524 | { "_class_wxMDIChildFrame","_wxMDIChildFrame",0}, |
525 | { "_wxArrowHead","_class_wxArrowHead",0}, | |
c368d904 | 526 | { "_WXTYPE","_wxDateTime_t",0}, |
e91a9dfc RD |
527 | { "_WXTYPE","_short",0}, |
528 | { "_WXTYPE","_signed_short",0}, | |
529 | { "_WXTYPE","_unsigned_short",0}, | |
530 | { "_wxFileDialog","_class_wxFileDialog",0}, | |
4c9993c3 | 531 | { "_class_wxDropTarget","_wxDropTarget",0}, |
f0261a72 | 532 | { "_class_wxCaret","_wxCaret",0}, |
e91a9dfc RD |
533 | { "_class_wxMDIClientWindow","_wxMDIClientWindow",0}, |
534 | { "_class_wxBrush","_wxBrush",0}, | |
f6bcfd97 | 535 | { "_wxTipProvider","_class_wxTipProvider",0}, |
c368d904 | 536 | { "_unsigned_short","_wxDateTime_t",0}, |
e91a9dfc RD |
537 | { "_unsigned_short","_WXTYPE",0}, |
538 | { "_unsigned_short","_short",0}, | |
539 | { "_class_wxWindow","_wxWindow",0}, | |
c368d904 | 540 | { "_class_wxLogStderr","_wxLogStderr",0}, |
e91a9dfc | 541 | { "_wxSplitterWindow","_class_wxSplitterWindow",0}, |
c368d904 | 542 | { "_wxDateSpan","_class_wxDateSpan",0}, |
e91a9dfc RD |
543 | { "_class_wxStaticText","_wxStaticText",0}, |
544 | { "_wxPrintDialogData","_class_wxPrintDialogData",0}, | |
545 | { "_class_wxFont","_wxFont",0}, | |
4c9993c3 | 546 | { "_wxClipboard","_class_wxClipboard",0}, |
f0261a72 | 547 | { "_class_wxPyValidator","_wxPyValidator",0}, |
e91a9dfc RD |
548 | { "_class_wxCloseEvent","_wxCloseEvent",0}, |
549 | { "_wxSashEvent","_class_wxSashEvent",0}, | |
4c9993c3 | 550 | { "_wxBusyInfo","_class_wxBusyInfo",0}, |
e91a9dfc | 551 | { "_class_wxMenuEvent","_wxMenuEvent",0}, |
4c9993c3 RD |
552 | { "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0}, |
553 | { "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0}, | |
e91a9dfc RD |
554 | { "_class_wxPyCircleShape","_wxPyCircleShape",0}, |
555 | { "_wxClientDC","_class_wxClientDC",0}, | |
556 | { "_wxMouseEvent","_class_wxMouseEvent",0}, | |
f6bcfd97 | 557 | { "_class_wxGenericDragImage","_wxGenericDragImage",0}, |
e91a9dfc RD |
558 | { "_wxListCtrl","_class_wxListCtrl",0}, |
559 | { "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0}, | |
560 | { "_wxPyDividedShape","_class_wxPyDividedShape",0}, | |
561 | { "_class_wxPoint","_wxPoint",0}, | |
c368d904 | 562 | { "_class_wxPyInputStream","_wxPyInputStream",0}, |
e91a9dfc RD |
563 | { "_wxRealPoint","_class_wxRealPoint",0}, |
564 | { "_class_wxRadioBox","_wxRadioBox",0}, | |
2348eaee | 565 | { "_class_wxBoxSizer","_wxBoxSizer",0}, |
e91a9dfc RD |
566 | { "_signed_short","_WXTYPE",0}, |
567 | { "_signed_short","_short",0}, | |
568 | { "_wxMemoryDC","_class_wxMemoryDC",0}, | |
4c9993c3 | 569 | { "_wxPyTextDataObject","_class_wxPyTextDataObject",0}, |
e91a9dfc | 570 | { "_class_wxPrintDialog","_wxPrintDialog",0}, |
c368d904 | 571 | { "_wxPyFileSystemHandler","_class_wxPyFileSystemHandler",0}, |
2348eaee | 572 | { "_class_wxPyControlPoint","_wxPyControlPoint",0}, |
e91a9dfc RD |
573 | { "_wxPaintDC","_class_wxPaintDC",0}, |
574 | { "_class_wxWindowDC","_wxWindowDC",0}, | |
575 | { "_class_wxFocusEvent","_wxFocusEvent",0}, | |
576 | { "_class_wxMaximizeEvent","_wxMaximizeEvent",0}, | |
577 | { "_wxStatusBar","_class_wxStatusBar",0}, | |
e91a9dfc RD |
578 | { "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0}, |
579 | { "_class_wxCursor","_wxCursor",0}, | |
9c4165ad | 580 | { "_wxPostScriptDC","_class_wxPostScriptDC",0}, |
4c9993c3 | 581 | { "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0}, |
c368d904 | 582 | { "_class_wxPyProcess","_wxPyProcess",0}, |
e91a9dfc RD |
583 | { "_class_wxImageHandler","_wxImageHandler",0}, |
584 | { "_wxPyShape","_class_wxPyShape",0}, | |
585 | { "_wxScrolledWindow","_class_wxScrolledWindow",0}, | |
c368d904 | 586 | { "_class_wxLog","_wxLog",0}, |
e91a9dfc RD |
587 | { "_wxTreeItemId","_class_wxTreeItemId",0}, |
588 | { "_unsigned_char","_byte",0}, | |
e91a9dfc RD |
589 | { "_class_wxMenu","_wxMenu",0}, |
590 | { "_wxControl","_class_wxControl",0}, | |
591 | { "_class_wxListBox","_wxListBox",0}, | |
4c9993c3 | 592 | { "_unsigned_int","_wxCoord",0}, |
e91a9dfc | 593 | { "_unsigned_int","_wxPrintQuality",0}, |
c368d904 | 594 | { "_unsigned_int","_time_t",0}, |
e91a9dfc RD |
595 | { "_unsigned_int","_size_t",0}, |
596 | { "_unsigned_int","_uint",0}, | |
597 | { "_unsigned_int","_wxWindowID",0}, | |
598 | { "_unsigned_int","_int",0}, | |
599 | { "_wxIcon","_class_wxIcon",0}, | |
600 | { "_wxDialog","_class_wxDialog",0}, | |
601 | { "_class_wxListItem","_wxListItem",0}, | |
602 | { "_class_wxPen","_wxPen",0}, | |
603 | { "_class_wxFileDialog","_wxFileDialog",0}, | |
604 | { "_wxQueryLayoutInfoEvent","_class_wxQueryLayoutInfoEvent",0}, | |
c368d904 RD |
605 | { "_wxConfigBase","_class_wxConfigBase",0}, |
606 | { "_short","_wxDateTime_t",0}, | |
e91a9dfc RD |
607 | { "_short","_WXTYPE",0}, |
608 | { "_short","_unsigned_short",0}, | |
609 | { "_short","_signed_short",0}, | |
610 | { "_class_wxStaticBox","_wxStaticBox",0}, | |
611 | { "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0}, | |
612 | { "_wxPyTextShape","_class_wxPyTextShape",0}, | |
4c9993c3 RD |
613 | { "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0}, |
614 | { "_class_wxPyDropSource","_wxPyDropSource",0}, | |
e91a9dfc RD |
615 | { "_class_wxScrollEvent","_wxScrollEvent",0}, |
616 | { "_wxJoystickEvent","_class_wxJoystickEvent",0}, | |
617 | { "_class_wxChoice","_wxChoice",0}, | |
618 | { "_class_wxSlider","_wxSlider",0}, | |
619 | { "_class_wxCalculateLayoutEvent","_wxCalculateLayoutEvent",0}, | |
620 | { "_class_wxImageList","_wxImageList",0}, | |
621 | { "_class_wxBitmapButton","_wxBitmapButton",0}, | |
c368d904 | 622 | { "_wxFileSystemHandler","_class_wxFileSystemHandler",0}, |
f6bcfd97 | 623 | { "_wxPyTipProvider","_class_wxPyTipProvider",0}, |
e91a9dfc | 624 | { "_wxFrame","_class_wxFrame",0}, |
4c9993c3 | 625 | { "_wxPCXHandler","_class_wxPCXHandler",0}, |
f6bcfd97 | 626 | { "_class_wxGridSizer","_wxGridSizer",0}, |
e91a9dfc | 627 | { "_wxPyDivisionShape","_class_wxPyDivisionShape",0}, |
4c9993c3 | 628 | { "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0}, |
e91a9dfc RD |
629 | { "_class_wxNotebook","_wxNotebook",0}, |
630 | { "_wxJPEGHandler","_class_wxJPEGHandler",0}, | |
4c9993c3 | 631 | { "_wxWindowID","_wxCoord",0}, |
e91a9dfc | 632 | { "_wxWindowID","_wxPrintQuality",0}, |
c368d904 | 633 | { "_wxWindowID","_time_t",0}, |
e91a9dfc RD |
634 | { "_wxWindowID","_size_t",0}, |
635 | { "_wxWindowID","_EBool",0}, | |
636 | { "_wxWindowID","_uint",0}, | |
637 | { "_wxWindowID","_int",0}, | |
638 | { "_wxWindowID","_signed_int",0}, | |
639 | { "_wxWindowID","_unsigned_int",0}, | |
9cce9de1 | 640 | { "_class_wxScrollWinEvent","_wxScrollWinEvent",0}, |
2348eaee | 641 | { "_class_wxSizerItem","_wxSizerItem",0}, |
4c9993c3 | 642 | { "_int","_wxCoord",0}, |
e91a9dfc | 643 | { "_int","_wxPrintQuality",0}, |
c368d904 | 644 | { "_int","_time_t",0}, |
e91a9dfc RD |
645 | { "_int","_size_t",0}, |
646 | { "_int","_EBool",0}, | |
647 | { "_int","_uint",0}, | |
648 | { "_int","_wxWindowID",0}, | |
649 | { "_int","_unsigned_int",0}, | |
650 | { "_int","_signed_int",0}, | |
651 | { "_class_wxMouseEvent","_wxMouseEvent",0}, | |
2348eaee | 652 | { "_wxPyCommandEvent","_class_wxPyCommandEvent",0}, |
c368d904 | 653 | { "_wxLogWindow","_class_wxLogWindow",0}, |
e91a9dfc RD |
654 | { "_class_wxListEvent","_wxListEvent",0}, |
655 | { "_class_wxPrintPreview","_wxPrintPreview",0}, | |
c368d904 RD |
656 | { "_wxDateTime_t","_unsigned_short",0}, |
657 | { "_wxDateTime_t","_short",0}, | |
658 | { "_wxDateTime_t","_WXTYPE",0}, | |
e91a9dfc | 659 | { "_class_wxSpinEvent","_wxSpinEvent",0}, |
4c9993c3 | 660 | { "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0}, |
c368d904 RD |
661 | { "_wxDateTime","_class_wxDateTime",0}, |
662 | { "_time_t","_wxCoord",0}, | |
663 | { "_time_t","_wxPrintQuality",0}, | |
664 | { "_time_t","_unsigned_int",0}, | |
665 | { "_time_t","_int",0}, | |
666 | { "_time_t","_wxWindowID",0}, | |
667 | { "_time_t","_uint",0}, | |
668 | { "_time_t","_size_t",0}, | |
4c9993c3 | 669 | { "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0}, |
c368d904 | 670 | { "_wxLogNull","_class_wxLogNull",0}, |
e91a9dfc | 671 | { "_wxButton","_class_wxButton",0}, |
c368d904 | 672 | { "_wxZipFSHandler","_class_wxZipFSHandler",0}, |
e91a9dfc RD |
673 | { "_class_wxPyApp","_wxPyApp",0}, |
674 | { "_wxSize","_class_wxSize",0}, | |
675 | { "_wxRegionIterator","_class_wxRegionIterator",0}, | |
4c9993c3 | 676 | { "_class_wxPyTextDataObject","_wxPyTextDataObject",0}, |
c368d904 RD |
677 | { "_class_wxLogTextCtrl","_wxLogTextCtrl",0}, |
678 | { "_class_wxLogGui","_wxLogGui",0}, | |
e91a9dfc RD |
679 | { "_class_wxMDIParentFrame","_wxMDIParentFrame",0}, |
680 | { "_wxPyTreeItemData","_class_wxPyTreeItemData",0}, | |
2348eaee | 681 | { "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0}, |
c368d904 RD |
682 | { "_class_wxTimeSpan","_wxTimeSpan",0}, |
683 | { "_class_wxPyFileSystemHandler","_wxPyFileSystemHandler",0}, | |
e91a9dfc RD |
684 | { "_class_wxPyLineShape","_wxPyLineShape",0}, |
685 | { "_class_wxPaintDC","_wxPaintDC",0}, | |
686 | { "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0}, | |
4c9993c3 | 687 | { "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0}, |
e91a9dfc RD |
688 | { "_class_wxInitDialogEvent","_wxInitDialogEvent",0}, |
689 | { "_class_wxComboBox","_wxComboBox",0}, | |
690 | { "_class_wxRadioButton","_wxRadioButton",0}, | |
691 | { "_class_wxPyShape","_wxPyShape",0}, | |
f0261a72 | 692 | { "_wxValidator","_class_wxValidator",0}, |
4c9993c3 | 693 | { "_wxToolBarBase","_class_wxToolBarBase",0}, |
e91a9dfc | 694 | { "_class_wxTreeItemId","_wxTreeItemId",0}, |
e91a9dfc RD |
695 | { "_class_wxLayoutConstraints","_wxLayoutConstraints",0}, |
696 | { "_wxIconizeEvent","_class_wxIconizeEvent",0}, | |
697 | { "_class_wxControl","_wxControl",0}, | |
698 | { "_wxStaticBitmap","_class_wxStaticBitmap",0}, | |
699 | { "_wxPyDrawnShape","_class_wxPyDrawnShape",0}, | |
700 | { "_class_wxIcon","_wxIcon",0}, | |
701 | { "_class_wxColour","_wxColour",0}, | |
702 | { "_class_wxScreenDC","_wxScreenDC",0}, | |
703 | { "_class_wxPageSetupDialog","_wxPageSetupDialog",0}, | |
704 | { "_wxPalette","_class_wxPalette",0}, | |
705 | { "_class_wxIdleEvent","_wxIdleEvent",0}, | |
c368d904 | 706 | { "_class_wxConfigBase","_wxConfigBase",0}, |
4c9993c3 RD |
707 | { "_wxCoord","_int",0}, |
708 | { "_wxCoord","_signed_int",0}, | |
709 | { "_wxCoord","_unsigned_int",0}, | |
710 | { "_wxCoord","_wxWindowID",0}, | |
711 | { "_wxCoord","_uint",0}, | |
712 | { "_wxCoord","_EBool",0}, | |
713 | { "_wxCoord","_size_t",0}, | |
c368d904 | 714 | { "_wxCoord","_time_t",0}, |
4c9993c3 | 715 | { "_wxCoord","_wxPrintQuality",0}, |
e91a9dfc | 716 | { "_wxEraseEvent","_class_wxEraseEvent",0}, |
4c9993c3 | 717 | { "_wxDataObjectComposite","_class_wxDataObjectComposite",0}, |
e91a9dfc | 718 | { "_class_wxJoystickEvent","_wxJoystickEvent",0}, |
f6bcfd97 | 719 | { "_class_wxTipProvider","_wxTipProvider",0}, |
e91a9dfc RD |
720 | { "_class_wxMiniFrame","_wxMiniFrame",0}, |
721 | { "_wxFontDialog","_class_wxFontDialog",0}, | |
c368d904 | 722 | { "_wxMemoryFSHandler","_class_wxMemoryFSHandler",0}, |
e91a9dfc RD |
723 | { "_wxRegion","_class_wxRegion",0}, |
724 | { "_class_wxSplitterWindow","_wxSplitterWindow",0}, | |
725 | { "_wxPreviewFrame","_class_wxPreviewFrame",0}, | |
2348eaee | 726 | { "_wxSizer","_class_wxSizer",0}, |
c368d904 RD |
727 | { "_class_wxDateSpan","_wxDateSpan",0}, |
728 | { "_wxFileSystem","_class_wxFileSystem",0}, | |
e91a9dfc | 729 | { "_class_wxShowEvent","_wxShowEvent",0}, |
f6bcfd97 | 730 | { "_class_wxPyTipProvider","_wxPyTipProvider",0}, |
4c9993c3 RD |
731 | { "_class_wxPCXHandler","_wxPCXHandler",0}, |
732 | { "_wxTIFFHandler","_class_wxTIFFHandler",0}, | |
e91a9dfc | 733 | { "_wxDiagram","_class_wxDiagram",0}, |
4c9993c3 | 734 | { "_wxPyDropTarget","_class_wxPyDropTarget",0}, |
e91a9dfc RD |
735 | { "_wxActivateEvent","_class_wxActivateEvent",0}, |
736 | { "_wxGauge","_class_wxGauge",0}, | |
737 | { "_class_wxCheckListBox","_wxCheckListBox",0}, | |
4c9993c3 | 738 | { "_class_wxBusyInfo","_wxBusyInfo",0}, |
e91a9dfc RD |
739 | { "_class_wxCommandEvent","_wxCommandEvent",0}, |
740 | { "_class_wxClientDC","_wxClientDC",0}, | |
741 | { "_class_wxSizeEvent","_wxSizeEvent",0}, | |
742 | { "_class_wxListCtrl","_wxListCtrl",0}, | |
743 | { "_class_wxPyDividedShape","_wxPyDividedShape",0}, | |
744 | { "_wxPyEllipseShape","_class_wxPyEllipseShape",0}, | |
4c9993c3 | 745 | { "_wxCustomDataObject","_class_wxCustomDataObject",0}, |
c368d904 | 746 | { "_class_wxLogNull","_wxLogNull",0}, |
e91a9dfc RD |
747 | { "_class_wxSize","_wxSize",0}, |
748 | { "_class_wxBitmap","_wxBitmap",0}, | |
749 | { "_class_wxMemoryDC","_wxMemoryDC",0}, | |
4c9993c3 | 750 | { "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0}, |
e91a9dfc | 751 | { "_wxMenuBar","_class_wxMenuBar",0}, |
c368d904 | 752 | { "_wxOutputStream","_class_wxOutputStream",0}, |
e91a9dfc RD |
753 | { "_wxTreeEvent","_class_wxTreeEvent",0}, |
754 | { "_wxDirDialog","_class_wxDirDialog",0}, | |
755 | { "_wxPyShapeEvtHandler","_class_wxPyShapeEvtHandler",0}, | |
756 | { "_wxEvtHandler","_class_wxEvtHandler",0}, | |
757 | { "_wxMenuItem","_class_wxMenuItem",0}, | |
758 | { "_class_wxScrollBar","_wxScrollBar",0}, | |
759 | { "_class_wxColourDialog","_wxColourDialog",0}, | |
760 | { "_class_wxPrintData","_wxPrintData",0}, | |
e91a9dfc RD |
761 | { "_wxPyRectangleShape","_class_wxPyRectangleShape",0}, |
762 | { "_class_wxScrolledWindow","_wxScrolledWindow",0}, | |
f6bcfd97 | 763 | { "_wxListItemAttr","_class_wxListItemAttr",0}, |
e91a9dfc | 764 | { "_class_wxTextEntryDialog","_wxTextEntryDialog",0}, |
c368d904 | 765 | { "_class_wxConfig","_wxConfig",0}, |
e91a9dfc RD |
766 | { "_wxKeyEvent","_class_wxKeyEvent",0}, |
767 | { "_wxMoveEvent","_class_wxMoveEvent",0}, | |
768 | { "_wxOGLConstraint","_class_wxOGLConstraint",0}, | |
769 | { "_wxColourData","_class_wxColourData",0}, | |
770 | { "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0}, | |
771 | { "_class_wxPalette","_wxPalette",0}, | |
4c9993c3 | 772 | { "_wxFileDataObject","_class_wxFileDataObject",0}, |
e91a9dfc | 773 | { "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0}, |
f6bcfd97 | 774 | { "_wxNotebookSizer","_class_wxNotebookSizer",0}, |
e91a9dfc | 775 | { "_class_wxEraseEvent","_wxEraseEvent",0}, |
4c9993c3 | 776 | { "_wxPyFontEnumerator","_class_wxPyFontEnumerator",0}, |
e91a9dfc RD |
777 | { "_wxMDIClientWindow","_class_wxMDIClientWindow",0}, |
778 | { "_class_wxPyTextShape","_wxPyTextShape",0}, | |
4c9993c3 RD |
779 | { "_class_wxDataObjectComposite","_wxDataObjectComposite",0}, |
780 | { "_class_wxToolBarToolBase","_wxToolBarToolBase",0}, | |
e91a9dfc RD |
781 | { "_class_wxFontDialog","_wxFontDialog",0}, |
782 | { "_wxWindow","_class_wxWindow",0}, | |
4c9993c3 | 783 | { "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0}, |
c368d904 RD |
784 | { "_wxLogStderr","_class_wxLogStderr",0}, |
785 | { "_class_wxFileSystemHandler","_wxFileSystemHandler",0}, | |
786 | { "_class_wxFileSystem","_wxFileSystem",0}, | |
e91a9dfc RD |
787 | { "_class_wxFrame","_wxFrame",0}, |
788 | { "_class_wxDiagram","_wxDiagram",0}, | |
789 | {0,0,0}}; | |
790 | ||
791 | static PyObject *SWIG_globals; | |
792 | #ifdef __cplusplus | |
793 | extern "C" | |
794 | #endif | |
795 | SWIGEXPORT(void) initoglc() { | |
796 | PyObject *m, *d; | |
797 | SWIG_globals = SWIG_newvarlink(); | |
798 | m = Py_InitModule("oglc", oglcMethods); | |
799 | d = PyModule_GetDict(m); | |
800 | PyDict_SetItemString(d,"KEY_SHIFT", PyInt_FromLong((long) KEY_SHIFT)); | |
801 | PyDict_SetItemString(d,"KEY_CTRL", PyInt_FromLong((long) KEY_CTRL)); | |
802 | PyDict_SetItemString(d,"ARROW_NONE", PyInt_FromLong((long) ARROW_NONE)); | |
803 | PyDict_SetItemString(d,"ARROW_END", PyInt_FromLong((long) ARROW_END)); | |
804 | PyDict_SetItemString(d,"ARROW_BOTH", PyInt_FromLong((long) ARROW_BOTH)); | |
805 | PyDict_SetItemString(d,"ARROW_MIDDLE", PyInt_FromLong((long) ARROW_MIDDLE)); | |
806 | PyDict_SetItemString(d,"ARROW_START", PyInt_FromLong((long) ARROW_START)); | |
807 | PyDict_SetItemString(d,"ARROW_HOLLOW_CIRCLE", PyInt_FromLong((long) ARROW_HOLLOW_CIRCLE)); | |
808 | PyDict_SetItemString(d,"ARROW_FILLED_CIRCLE", PyInt_FromLong((long) ARROW_FILLED_CIRCLE)); | |
809 | PyDict_SetItemString(d,"ARROW_ARROW", PyInt_FromLong((long) ARROW_ARROW)); | |
810 | PyDict_SetItemString(d,"ARROW_SINGLE_OBLIQUE", PyInt_FromLong((long) ARROW_SINGLE_OBLIQUE)); | |
811 | PyDict_SetItemString(d,"ARROW_DOUBLE_OBLIQUE", PyInt_FromLong((long) ARROW_DOUBLE_OBLIQUE)); | |
812 | PyDict_SetItemString(d,"ARROW_METAFILE", PyInt_FromLong((long) ARROW_METAFILE)); | |
813 | PyDict_SetItemString(d,"ARROW_POSITION_END", PyInt_FromLong((long) ARROW_POSITION_END)); | |
814 | PyDict_SetItemString(d,"ARROW_POSITION_START", PyInt_FromLong((long) ARROW_POSITION_START)); | |
815 | PyDict_SetItemString(d,"CONTROL_POINT_VERTICAL", PyInt_FromLong((long) CONTROL_POINT_VERTICAL)); | |
816 | PyDict_SetItemString(d,"CONTROL_POINT_HORIZONTAL", PyInt_FromLong((long) CONTROL_POINT_HORIZONTAL)); | |
817 | PyDict_SetItemString(d,"CONTROL_POINT_DIAGONAL", PyInt_FromLong((long) CONTROL_POINT_DIAGONAL)); | |
818 | PyDict_SetItemString(d,"CONTROL_POINT_ENDPOINT_TO", PyInt_FromLong((long) CONTROL_POINT_ENDPOINT_TO)); | |
819 | PyDict_SetItemString(d,"CONTROL_POINT_ENDPOINT_FROM", PyInt_FromLong((long) CONTROL_POINT_ENDPOINT_FROM)); | |
820 | PyDict_SetItemString(d,"CONTROL_POINT_LINE", PyInt_FromLong((long) CONTROL_POINT_LINE)); | |
821 | PyDict_SetItemString(d,"FORMAT_NONE", PyInt_FromLong((long) FORMAT_NONE)); | |
822 | PyDict_SetItemString(d,"FORMAT_CENTRE_HORIZ", PyInt_FromLong((long) FORMAT_CENTRE_HORIZ)); | |
823 | PyDict_SetItemString(d,"FORMAT_CENTRE_VERT", PyInt_FromLong((long) FORMAT_CENTRE_VERT)); | |
824 | PyDict_SetItemString(d,"FORMAT_SIZE_TO_CONTENTS", PyInt_FromLong((long) FORMAT_SIZE_TO_CONTENTS)); | |
825 | PyDict_SetItemString(d,"LINE_ALIGNMENT_HORIZ", PyInt_FromLong((long) LINE_ALIGNMENT_HORIZ)); | |
826 | PyDict_SetItemString(d,"LINE_ALIGNMENT_VERT", PyInt_FromLong((long) LINE_ALIGNMENT_VERT)); | |
827 | PyDict_SetItemString(d,"LINE_ALIGNMENT_TO_NEXT_HANDLE", PyInt_FromLong((long) LINE_ALIGNMENT_TO_NEXT_HANDLE)); | |
828 | PyDict_SetItemString(d,"LINE_ALIGNMENT_NONE", PyInt_FromLong((long) LINE_ALIGNMENT_NONE)); | |
829 | PyDict_SetItemString(d,"SHADOW_NONE", PyInt_FromLong((long) SHADOW_NONE)); | |
830 | PyDict_SetItemString(d,"SHADOW_LEFT", PyInt_FromLong((long) SHADOW_LEFT)); | |
831 | PyDict_SetItemString(d,"SHADOW_RIGHT", PyInt_FromLong((long) SHADOW_RIGHT)); | |
832 | PyDict_SetItemString(d,"OP_CLICK_LEFT", PyInt_FromLong((long) OP_CLICK_LEFT)); | |
833 | PyDict_SetItemString(d,"OP_CLICK_RIGHT", PyInt_FromLong((long) OP_CLICK_RIGHT)); | |
834 | PyDict_SetItemString(d,"OP_DRAG_LEFT", PyInt_FromLong((long) OP_DRAG_LEFT)); | |
835 | PyDict_SetItemString(d,"OP_DRAG_RIGHT", PyInt_FromLong((long) OP_DRAG_RIGHT)); | |
836 | PyDict_SetItemString(d,"OP_ALL", PyInt_FromLong((long) OP_ALL)); | |
837 | PyDict_SetItemString(d,"ATTACHMENT_MODE_NONE", PyInt_FromLong((long) ATTACHMENT_MODE_NONE)); | |
838 | PyDict_SetItemString(d,"ATTACHMENT_MODE_EDGE", PyInt_FromLong((long) ATTACHMENT_MODE_EDGE)); | |
839 | PyDict_SetItemString(d,"ATTACHMENT_MODE_BRANCHING", PyInt_FromLong((long) ATTACHMENT_MODE_BRANCHING)); | |
840 | PyDict_SetItemString(d,"BRANCHING_ATTACHMENT_NORMAL", PyInt_FromLong((long) BRANCHING_ATTACHMENT_NORMAL)); | |
841 | PyDict_SetItemString(d,"BRANCHING_ATTACHMENT_BLOB", PyInt_FromLong((long) BRANCHING_ATTACHMENT_BLOB)); | |
842 | PyDict_SetItemString(d,"gyCONSTRAINT_CENTRED_VERTICALLY", PyInt_FromLong((long) gyCONSTRAINT_CENTRED_VERTICALLY)); | |
843 | PyDict_SetItemString(d,"gyCONSTRAINT_CENTRED_HORIZONTALLY", PyInt_FromLong((long) gyCONSTRAINT_CENTRED_HORIZONTALLY)); | |
844 | PyDict_SetItemString(d,"gyCONSTRAINT_CENTRED_BOTH", PyInt_FromLong((long) gyCONSTRAINT_CENTRED_BOTH)); | |
845 | PyDict_SetItemString(d,"gyCONSTRAINT_LEFT_OF", PyInt_FromLong((long) gyCONSTRAINT_LEFT_OF)); | |
846 | PyDict_SetItemString(d,"gyCONSTRAINT_RIGHT_OF", PyInt_FromLong((long) gyCONSTRAINT_RIGHT_OF)); | |
847 | PyDict_SetItemString(d,"gyCONSTRAINT_ABOVE", PyInt_FromLong((long) gyCONSTRAINT_ABOVE)); | |
848 | PyDict_SetItemString(d,"gyCONSTRAINT_BELOW", PyInt_FromLong((long) gyCONSTRAINT_BELOW)); | |
849 | PyDict_SetItemString(d,"gyCONSTRAINT_ALIGNED_TOP", PyInt_FromLong((long) gyCONSTRAINT_ALIGNED_TOP)); | |
850 | PyDict_SetItemString(d,"gyCONSTRAINT_ALIGNED_BOTTOM", PyInt_FromLong((long) gyCONSTRAINT_ALIGNED_BOTTOM)); | |
851 | PyDict_SetItemString(d,"gyCONSTRAINT_ALIGNED_LEFT", PyInt_FromLong((long) gyCONSTRAINT_ALIGNED_LEFT)); | |
852 | PyDict_SetItemString(d,"gyCONSTRAINT_ALIGNED_RIGHT", PyInt_FromLong((long) gyCONSTRAINT_ALIGNED_RIGHT)); | |
853 | PyDict_SetItemString(d,"gyCONSTRAINT_MIDALIGNED_TOP", PyInt_FromLong((long) gyCONSTRAINT_MIDALIGNED_TOP)); | |
854 | PyDict_SetItemString(d,"gyCONSTRAINT_MIDALIGNED_BOTTOM", PyInt_FromLong((long) gyCONSTRAINT_MIDALIGNED_BOTTOM)); | |
855 | PyDict_SetItemString(d,"gyCONSTRAINT_MIDALIGNED_LEFT", PyInt_FromLong((long) gyCONSTRAINT_MIDALIGNED_LEFT)); | |
856 | PyDict_SetItemString(d,"gyCONSTRAINT_MIDALIGNED_RIGHT", PyInt_FromLong((long) gyCONSTRAINT_MIDALIGNED_RIGHT)); | |
857 | PyDict_SetItemString(d,"DIVISION_SIDE_NONE", PyInt_FromLong((long) DIVISION_SIDE_NONE)); | |
858 | PyDict_SetItemString(d,"DIVISION_SIDE_LEFT", PyInt_FromLong((long) DIVISION_SIDE_LEFT)); | |
859 | PyDict_SetItemString(d,"DIVISION_SIDE_TOP", PyInt_FromLong((long) DIVISION_SIDE_TOP)); | |
860 | PyDict_SetItemString(d,"DIVISION_SIDE_RIGHT", PyInt_FromLong((long) DIVISION_SIDE_RIGHT)); | |
861 | PyDict_SetItemString(d,"DIVISION_SIDE_BOTTOM", PyInt_FromLong((long) DIVISION_SIDE_BOTTOM)); | |
862 | ||
863 | ||
864 | initoglbasicc(); | |
865 | initoglshapesc(); | |
866 | initoglshapes2c(); | |
867 | initoglcanvasc(); | |
868 | ||
869 | ||
e508a2b6 RD |
870 | wxClassInfo::CleanUpClasses(); |
871 | wxClassInfo::InitializeClasses(); | |
e91a9dfc RD |
872 | |
873 | { | |
874 | int i; | |
875 | for (i = 0; _swig_mapping[i].n1; i++) | |
876 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
877 | } | |
878 | } |