]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * FILE : gtk/controls2.cpp | |
3 | * | |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
6 | * Version 1.1 (Build 810) | |
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__) | |
30 | # define SWIGEXPORT(a) a _export | |
31 | # else | |
32 | # define SWIGEXPORT(a) a | |
33 | # endif | |
34 | # endif | |
35 | #else | |
36 | # define SWIGEXPORT(a) a | |
37 | #endif | |
38 | ||
39 | #ifdef __cplusplus | |
40 | extern "C" { | |
41 | #endif | |
42 | #include "Python.h" | |
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 initcontrols2c | |
53 | ||
54 | #define SWIG_name "controls2c" | |
55 | ||
56 | #include "helpers.h" | |
57 | #ifdef __WXMSW__ | |
58 | #include <windows.h> | |
59 | #endif | |
60 | #include <wx/listctrl.h> | |
61 | #include <wx/treectrl.h> | |
62 | ||
63 | static PyObject* l_output_helper(PyObject* target, PyObject* o) { | |
64 | PyObject* o2; | |
65 | PyObject* o3; | |
66 | if (!target) { | |
67 | target = o; | |
68 | } else if (target == Py_None) { | |
69 | Py_DECREF(Py_None); | |
70 | target = o; | |
71 | } else { | |
72 | if (!PyList_Check(target)) { | |
73 | o2 = target; | |
74 | target = PyList_New(0); | |
75 | PyList_Append(target, o2); | |
76 | Py_XDECREF(o2); | |
77 | } | |
78 | PyList_Append(target,o); | |
79 | Py_XDECREF(o); | |
80 | } | |
81 | return target; | |
82 | } | |
83 | ||
84 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
85 | PyObject* o2; | |
86 | PyObject* o3; | |
87 | ||
88 | if (!target) { | |
89 | target = o; | |
90 | } else if (target == Py_None) { | |
91 | Py_DECREF(Py_None); | |
92 | target = o; | |
93 | } else { | |
94 | if (!PyTuple_Check(target)) { | |
95 | o2 = target; | |
96 | target = PyTuple_New(1); | |
97 | PyTuple_SetItem(target, 0, o2); | |
98 | } | |
99 | o3 = PyTuple_New(1); | |
100 | PyTuple_SetItem(o3, 0, o); | |
101 | ||
102 | o2 = target; | |
103 | target = PySequence_Concat(o2, o3); | |
104 | Py_DECREF(o2); | |
105 | Py_DECREF(o3); | |
106 | } | |
107 | return target; | |
108 | } | |
109 | ||
110 | static char* wxStringErrorMsg = "string type is required for parameter"; | |
111 | ||
112 | extern wxValidator wxPyDefaultValidator; | |
113 | ||
114 | class wxPyTreeItemData : public wxTreeItemData { | |
115 | public: | |
116 | wxPyTreeItemData(PyObject* obj = NULL) { | |
117 | if (obj == NULL) | |
118 | obj = Py_None; | |
119 | Py_INCREF(obj); | |
120 | m_obj = obj; | |
121 | } | |
122 | ||
123 | ~wxPyTreeItemData() { | |
124 | bool doSave = wxPyRestoreThread(); | |
125 | Py_DECREF(m_obj); | |
126 | wxPySaveThread(doSave); | |
127 | } | |
128 | ||
129 | PyObject* GetData() { | |
130 | Py_INCREF(m_obj); | |
131 | return m_obj; | |
132 | } | |
133 | ||
134 | void SetData(PyObject* obj) { | |
135 | Py_DECREF(m_obj); | |
136 | m_obj = obj; | |
137 | Py_INCREF(obj); | |
138 | } | |
139 | ||
140 | PyObject* m_obj; | |
141 | }; | |
142 | #ifdef __cplusplus | |
143 | extern "C" { | |
144 | #endif | |
145 | #define wxListItem_m_mask_set(_swigobj,_swigval) (_swigobj->m_mask = _swigval,_swigval) | |
146 | static PyObject *_wrap_wxListItem_m_mask_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
147 | PyObject * _resultobj; | |
148 | long _result; | |
149 | wxListItem * _arg0; | |
150 | long _arg1; | |
151 | PyObject * _argo0 = 0; | |
152 | char *_kwnames[] = { "self","m_mask", NULL }; | |
153 | ||
154 | self = self; | |
155 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_mask_set",_kwnames,&_argo0,&_arg1)) | |
156 | return NULL; | |
157 | if (_argo0) { | |
158 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
159 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
160 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_mask_set. Expected _wxListItem_p."); | |
161 | return NULL; | |
162 | } | |
163 | } | |
164 | { | |
165 | wxPy_BEGIN_ALLOW_THREADS; | |
166 | _result = (long )wxListItem_m_mask_set(_arg0,_arg1); | |
167 | ||
168 | wxPy_END_ALLOW_THREADS; | |
169 | } _resultobj = Py_BuildValue("l",_result); | |
170 | return _resultobj; | |
171 | } | |
172 | ||
173 | #define wxListItem_m_mask_get(_swigobj) ((long ) _swigobj->m_mask) | |
174 | static PyObject *_wrap_wxListItem_m_mask_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
175 | PyObject * _resultobj; | |
176 | long _result; | |
177 | wxListItem * _arg0; | |
178 | PyObject * _argo0 = 0; | |
179 | char *_kwnames[] = { "self", NULL }; | |
180 | ||
181 | self = self; | |
182 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_mask_get",_kwnames,&_argo0)) | |
183 | return NULL; | |
184 | if (_argo0) { | |
185 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
186 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
187 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_mask_get. Expected _wxListItem_p."); | |
188 | return NULL; | |
189 | } | |
190 | } | |
191 | { | |
192 | wxPy_BEGIN_ALLOW_THREADS; | |
193 | _result = (long )wxListItem_m_mask_get(_arg0); | |
194 | ||
195 | wxPy_END_ALLOW_THREADS; | |
196 | } _resultobj = Py_BuildValue("l",_result); | |
197 | return _resultobj; | |
198 | } | |
199 | ||
200 | #define wxListItem_m_itemId_set(_swigobj,_swigval) (_swigobj->m_itemId = _swigval,_swigval) | |
201 | static PyObject *_wrap_wxListItem_m_itemId_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
202 | PyObject * _resultobj; | |
203 | long _result; | |
204 | wxListItem * _arg0; | |
205 | long _arg1; | |
206 | PyObject * _argo0 = 0; | |
207 | char *_kwnames[] = { "self","m_itemId", NULL }; | |
208 | ||
209 | self = self; | |
210 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_itemId_set",_kwnames,&_argo0,&_arg1)) | |
211 | return NULL; | |
212 | if (_argo0) { | |
213 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
214 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
215 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_itemId_set. Expected _wxListItem_p."); | |
216 | return NULL; | |
217 | } | |
218 | } | |
219 | { | |
220 | wxPy_BEGIN_ALLOW_THREADS; | |
221 | _result = (long )wxListItem_m_itemId_set(_arg0,_arg1); | |
222 | ||
223 | wxPy_END_ALLOW_THREADS; | |
224 | } _resultobj = Py_BuildValue("l",_result); | |
225 | return _resultobj; | |
226 | } | |
227 | ||
228 | #define wxListItem_m_itemId_get(_swigobj) ((long ) _swigobj->m_itemId) | |
229 | static PyObject *_wrap_wxListItem_m_itemId_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
230 | PyObject * _resultobj; | |
231 | long _result; | |
232 | wxListItem * _arg0; | |
233 | PyObject * _argo0 = 0; | |
234 | char *_kwnames[] = { "self", NULL }; | |
235 | ||
236 | self = self; | |
237 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_itemId_get",_kwnames,&_argo0)) | |
238 | return NULL; | |
239 | if (_argo0) { | |
240 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
241 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
242 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_itemId_get. Expected _wxListItem_p."); | |
243 | return NULL; | |
244 | } | |
245 | } | |
246 | { | |
247 | wxPy_BEGIN_ALLOW_THREADS; | |
248 | _result = (long )wxListItem_m_itemId_get(_arg0); | |
249 | ||
250 | wxPy_END_ALLOW_THREADS; | |
251 | } _resultobj = Py_BuildValue("l",_result); | |
252 | return _resultobj; | |
253 | } | |
254 | ||
255 | #define wxListItem_m_col_set(_swigobj,_swigval) (_swigobj->m_col = _swigval,_swigval) | |
256 | static PyObject *_wrap_wxListItem_m_col_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
257 | PyObject * _resultobj; | |
258 | int _result; | |
259 | wxListItem * _arg0; | |
260 | int _arg1; | |
261 | PyObject * _argo0 = 0; | |
262 | char *_kwnames[] = { "self","m_col", NULL }; | |
263 | ||
264 | self = self; | |
265 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_col_set",_kwnames,&_argo0,&_arg1)) | |
266 | return NULL; | |
267 | if (_argo0) { | |
268 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
269 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
270 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_col_set. Expected _wxListItem_p."); | |
271 | return NULL; | |
272 | } | |
273 | } | |
274 | { | |
275 | wxPy_BEGIN_ALLOW_THREADS; | |
276 | _result = (int )wxListItem_m_col_set(_arg0,_arg1); | |
277 | ||
278 | wxPy_END_ALLOW_THREADS; | |
279 | } _resultobj = Py_BuildValue("i",_result); | |
280 | return _resultobj; | |
281 | } | |
282 | ||
283 | #define wxListItem_m_col_get(_swigobj) ((int ) _swigobj->m_col) | |
284 | static PyObject *_wrap_wxListItem_m_col_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
285 | PyObject * _resultobj; | |
286 | int _result; | |
287 | wxListItem * _arg0; | |
288 | PyObject * _argo0 = 0; | |
289 | char *_kwnames[] = { "self", NULL }; | |
290 | ||
291 | self = self; | |
292 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_col_get",_kwnames,&_argo0)) | |
293 | return NULL; | |
294 | if (_argo0) { | |
295 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
296 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
297 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_col_get. Expected _wxListItem_p."); | |
298 | return NULL; | |
299 | } | |
300 | } | |
301 | { | |
302 | wxPy_BEGIN_ALLOW_THREADS; | |
303 | _result = (int )wxListItem_m_col_get(_arg0); | |
304 | ||
305 | wxPy_END_ALLOW_THREADS; | |
306 | } _resultobj = Py_BuildValue("i",_result); | |
307 | return _resultobj; | |
308 | } | |
309 | ||
310 | #define wxListItem_m_state_set(_swigobj,_swigval) (_swigobj->m_state = _swigval,_swigval) | |
311 | static PyObject *_wrap_wxListItem_m_state_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
312 | PyObject * _resultobj; | |
313 | long _result; | |
314 | wxListItem * _arg0; | |
315 | long _arg1; | |
316 | PyObject * _argo0 = 0; | |
317 | char *_kwnames[] = { "self","m_state", NULL }; | |
318 | ||
319 | self = self; | |
320 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_state_set",_kwnames,&_argo0,&_arg1)) | |
321 | return NULL; | |
322 | if (_argo0) { | |
323 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
324 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
325 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_state_set. Expected _wxListItem_p."); | |
326 | return NULL; | |
327 | } | |
328 | } | |
329 | { | |
330 | wxPy_BEGIN_ALLOW_THREADS; | |
331 | _result = (long )wxListItem_m_state_set(_arg0,_arg1); | |
332 | ||
333 | wxPy_END_ALLOW_THREADS; | |
334 | } _resultobj = Py_BuildValue("l",_result); | |
335 | return _resultobj; | |
336 | } | |
337 | ||
338 | #define wxListItem_m_state_get(_swigobj) ((long ) _swigobj->m_state) | |
339 | static PyObject *_wrap_wxListItem_m_state_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
340 | PyObject * _resultobj; | |
341 | long _result; | |
342 | wxListItem * _arg0; | |
343 | PyObject * _argo0 = 0; | |
344 | char *_kwnames[] = { "self", NULL }; | |
345 | ||
346 | self = self; | |
347 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_state_get",_kwnames,&_argo0)) | |
348 | return NULL; | |
349 | if (_argo0) { | |
350 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
351 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
352 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_state_get. Expected _wxListItem_p."); | |
353 | return NULL; | |
354 | } | |
355 | } | |
356 | { | |
357 | wxPy_BEGIN_ALLOW_THREADS; | |
358 | _result = (long )wxListItem_m_state_get(_arg0); | |
359 | ||
360 | wxPy_END_ALLOW_THREADS; | |
361 | } _resultobj = Py_BuildValue("l",_result); | |
362 | return _resultobj; | |
363 | } | |
364 | ||
365 | #define wxListItem_m_stateMask_set(_swigobj,_swigval) (_swigobj->m_stateMask = _swigval,_swigval) | |
366 | static PyObject *_wrap_wxListItem_m_stateMask_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
367 | PyObject * _resultobj; | |
368 | long _result; | |
369 | wxListItem * _arg0; | |
370 | long _arg1; | |
371 | PyObject * _argo0 = 0; | |
372 | char *_kwnames[] = { "self","m_stateMask", NULL }; | |
373 | ||
374 | self = self; | |
375 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_stateMask_set",_kwnames,&_argo0,&_arg1)) | |
376 | return NULL; | |
377 | if (_argo0) { | |
378 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
379 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
380 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_stateMask_set. Expected _wxListItem_p."); | |
381 | return NULL; | |
382 | } | |
383 | } | |
384 | { | |
385 | wxPy_BEGIN_ALLOW_THREADS; | |
386 | _result = (long )wxListItem_m_stateMask_set(_arg0,_arg1); | |
387 | ||
388 | wxPy_END_ALLOW_THREADS; | |
389 | } _resultobj = Py_BuildValue("l",_result); | |
390 | return _resultobj; | |
391 | } | |
392 | ||
393 | #define wxListItem_m_stateMask_get(_swigobj) ((long ) _swigobj->m_stateMask) | |
394 | static PyObject *_wrap_wxListItem_m_stateMask_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
395 | PyObject * _resultobj; | |
396 | long _result; | |
397 | wxListItem * _arg0; | |
398 | PyObject * _argo0 = 0; | |
399 | char *_kwnames[] = { "self", NULL }; | |
400 | ||
401 | self = self; | |
402 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_stateMask_get",_kwnames,&_argo0)) | |
403 | return NULL; | |
404 | if (_argo0) { | |
405 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
406 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
407 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_stateMask_get. Expected _wxListItem_p."); | |
408 | return NULL; | |
409 | } | |
410 | } | |
411 | { | |
412 | wxPy_BEGIN_ALLOW_THREADS; | |
413 | _result = (long )wxListItem_m_stateMask_get(_arg0); | |
414 | ||
415 | wxPy_END_ALLOW_THREADS; | |
416 | } _resultobj = Py_BuildValue("l",_result); | |
417 | return _resultobj; | |
418 | } | |
419 | ||
420 | #define wxListItem_m_text_set(_swigobj,_swigval) (_swigobj->m_text = *(_swigval),_swigval) | |
421 | static PyObject *_wrap_wxListItem_m_text_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
422 | PyObject * _resultobj; | |
423 | wxString * _result; | |
424 | wxListItem * _arg0; | |
425 | wxString * _arg1; | |
426 | PyObject * _argo0 = 0; | |
427 | PyObject * _obj1 = 0; | |
428 | char *_kwnames[] = { "self","m_text", NULL }; | |
429 | ||
430 | self = self; | |
431 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItem_m_text_set",_kwnames,&_argo0,&_obj1)) | |
432 | return NULL; | |
433 | if (_argo0) { | |
434 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
435 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
436 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_text_set. Expected _wxListItem_p."); | |
437 | return NULL; | |
438 | } | |
439 | } | |
440 | { | |
441 | if (!PyString_Check(_obj1)) { | |
442 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
443 | return NULL; | |
444 | } | |
445 | _arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1)); | |
446 | } | |
447 | { | |
448 | wxPy_BEGIN_ALLOW_THREADS; | |
449 | _result = (wxString *)wxListItem_m_text_set(_arg0,_arg1); | |
450 | ||
451 | wxPy_END_ALLOW_THREADS; | |
452 | }{ | |
453 | _resultobj = PyString_FromString(WXSTRINGCAST (*_result)); | |
454 | } | |
455 | { | |
456 | if (_obj1) | |
457 | delete _arg1; | |
458 | } | |
459 | return _resultobj; | |
460 | } | |
461 | ||
462 | #define wxListItem_m_text_get(_swigobj) (&_swigobj->m_text) | |
463 | static PyObject *_wrap_wxListItem_m_text_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
464 | PyObject * _resultobj; | |
465 | wxString * _result; | |
466 | wxListItem * _arg0; | |
467 | PyObject * _argo0 = 0; | |
468 | char *_kwnames[] = { "self", NULL }; | |
469 | ||
470 | self = self; | |
471 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_text_get",_kwnames,&_argo0)) | |
472 | return NULL; | |
473 | if (_argo0) { | |
474 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
475 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
476 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_text_get. Expected _wxListItem_p."); | |
477 | return NULL; | |
478 | } | |
479 | } | |
480 | { | |
481 | wxPy_BEGIN_ALLOW_THREADS; | |
482 | _result = (wxString *)wxListItem_m_text_get(_arg0); | |
483 | ||
484 | wxPy_END_ALLOW_THREADS; | |
485 | }{ | |
486 | _resultobj = PyString_FromString(WXSTRINGCAST (*_result)); | |
487 | } | |
488 | return _resultobj; | |
489 | } | |
490 | ||
491 | #define wxListItem_m_image_set(_swigobj,_swigval) (_swigobj->m_image = _swigval,_swigval) | |
492 | static PyObject *_wrap_wxListItem_m_image_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
493 | PyObject * _resultobj; | |
494 | int _result; | |
495 | wxListItem * _arg0; | |
496 | int _arg1; | |
497 | PyObject * _argo0 = 0; | |
498 | char *_kwnames[] = { "self","m_image", NULL }; | |
499 | ||
500 | self = self; | |
501 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_image_set",_kwnames,&_argo0,&_arg1)) | |
502 | return NULL; | |
503 | if (_argo0) { | |
504 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
505 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
506 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_image_set. Expected _wxListItem_p."); | |
507 | return NULL; | |
508 | } | |
509 | } | |
510 | { | |
511 | wxPy_BEGIN_ALLOW_THREADS; | |
512 | _result = (int )wxListItem_m_image_set(_arg0,_arg1); | |
513 | ||
514 | wxPy_END_ALLOW_THREADS; | |
515 | } _resultobj = Py_BuildValue("i",_result); | |
516 | return _resultobj; | |
517 | } | |
518 | ||
519 | #define wxListItem_m_image_get(_swigobj) ((int ) _swigobj->m_image) | |
520 | static PyObject *_wrap_wxListItem_m_image_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
521 | PyObject * _resultobj; | |
522 | int _result; | |
523 | wxListItem * _arg0; | |
524 | PyObject * _argo0 = 0; | |
525 | char *_kwnames[] = { "self", NULL }; | |
526 | ||
527 | self = self; | |
528 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_image_get",_kwnames,&_argo0)) | |
529 | return NULL; | |
530 | if (_argo0) { | |
531 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
532 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
533 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_image_get. Expected _wxListItem_p."); | |
534 | return NULL; | |
535 | } | |
536 | } | |
537 | { | |
538 | wxPy_BEGIN_ALLOW_THREADS; | |
539 | _result = (int )wxListItem_m_image_get(_arg0); | |
540 | ||
541 | wxPy_END_ALLOW_THREADS; | |
542 | } _resultobj = Py_BuildValue("i",_result); | |
543 | return _resultobj; | |
544 | } | |
545 | ||
546 | #define wxListItem_m_data_set(_swigobj,_swigval) (_swigobj->m_data = _swigval,_swigval) | |
547 | static PyObject *_wrap_wxListItem_m_data_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
548 | PyObject * _resultobj; | |
549 | long _result; | |
550 | wxListItem * _arg0; | |
551 | long _arg1; | |
552 | PyObject * _argo0 = 0; | |
553 | char *_kwnames[] = { "self","m_data", NULL }; | |
554 | ||
555 | self = self; | |
556 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_data_set",_kwnames,&_argo0,&_arg1)) | |
557 | return NULL; | |
558 | if (_argo0) { | |
559 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
560 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
561 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_data_set. Expected _wxListItem_p."); | |
562 | return NULL; | |
563 | } | |
564 | } | |
565 | { | |
566 | wxPy_BEGIN_ALLOW_THREADS; | |
567 | _result = (long )wxListItem_m_data_set(_arg0,_arg1); | |
568 | ||
569 | wxPy_END_ALLOW_THREADS; | |
570 | } _resultobj = Py_BuildValue("l",_result); | |
571 | return _resultobj; | |
572 | } | |
573 | ||
574 | #define wxListItem_m_data_get(_swigobj) ((long ) _swigobj->m_data) | |
575 | static PyObject *_wrap_wxListItem_m_data_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
576 | PyObject * _resultobj; | |
577 | long _result; | |
578 | wxListItem * _arg0; | |
579 | PyObject * _argo0 = 0; | |
580 | char *_kwnames[] = { "self", NULL }; | |
581 | ||
582 | self = self; | |
583 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_data_get",_kwnames,&_argo0)) | |
584 | return NULL; | |
585 | if (_argo0) { | |
586 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
587 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
588 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_data_get. Expected _wxListItem_p."); | |
589 | return NULL; | |
590 | } | |
591 | } | |
592 | { | |
593 | wxPy_BEGIN_ALLOW_THREADS; | |
594 | _result = (long )wxListItem_m_data_get(_arg0); | |
595 | ||
596 | wxPy_END_ALLOW_THREADS; | |
597 | } _resultobj = Py_BuildValue("l",_result); | |
598 | return _resultobj; | |
599 | } | |
600 | ||
601 | #define wxListItem_m_format_set(_swigobj,_swigval) (_swigobj->m_format = _swigval,_swigval) | |
602 | static PyObject *_wrap_wxListItem_m_format_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
603 | PyObject * _resultobj; | |
604 | int _result; | |
605 | wxListItem * _arg0; | |
606 | int _arg1; | |
607 | PyObject * _argo0 = 0; | |
608 | char *_kwnames[] = { "self","m_format", NULL }; | |
609 | ||
610 | self = self; | |
611 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_format_set",_kwnames,&_argo0,&_arg1)) | |
612 | return NULL; | |
613 | if (_argo0) { | |
614 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
615 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
616 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_format_set. Expected _wxListItem_p."); | |
617 | return NULL; | |
618 | } | |
619 | } | |
620 | { | |
621 | wxPy_BEGIN_ALLOW_THREADS; | |
622 | _result = (int )wxListItem_m_format_set(_arg0,_arg1); | |
623 | ||
624 | wxPy_END_ALLOW_THREADS; | |
625 | } _resultobj = Py_BuildValue("i",_result); | |
626 | return _resultobj; | |
627 | } | |
628 | ||
629 | #define wxListItem_m_format_get(_swigobj) ((int ) _swigobj->m_format) | |
630 | static PyObject *_wrap_wxListItem_m_format_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
631 | PyObject * _resultobj; | |
632 | int _result; | |
633 | wxListItem * _arg0; | |
634 | PyObject * _argo0 = 0; | |
635 | char *_kwnames[] = { "self", NULL }; | |
636 | ||
637 | self = self; | |
638 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_format_get",_kwnames,&_argo0)) | |
639 | return NULL; | |
640 | if (_argo0) { | |
641 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
642 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
643 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_format_get. Expected _wxListItem_p."); | |
644 | return NULL; | |
645 | } | |
646 | } | |
647 | { | |
648 | wxPy_BEGIN_ALLOW_THREADS; | |
649 | _result = (int )wxListItem_m_format_get(_arg0); | |
650 | ||
651 | wxPy_END_ALLOW_THREADS; | |
652 | } _resultobj = Py_BuildValue("i",_result); | |
653 | return _resultobj; | |
654 | } | |
655 | ||
656 | #define wxListItem_m_width_set(_swigobj,_swigval) (_swigobj->m_width = _swigval,_swigval) | |
657 | static PyObject *_wrap_wxListItem_m_width_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
658 | PyObject * _resultobj; | |
659 | int _result; | |
660 | wxListItem * _arg0; | |
661 | int _arg1; | |
662 | PyObject * _argo0 = 0; | |
663 | char *_kwnames[] = { "self","m_width", NULL }; | |
664 | ||
665 | self = self; | |
666 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_width_set",_kwnames,&_argo0,&_arg1)) | |
667 | return NULL; | |
668 | if (_argo0) { | |
669 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
670 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
671 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_width_set. Expected _wxListItem_p."); | |
672 | return NULL; | |
673 | } | |
674 | } | |
675 | { | |
676 | wxPy_BEGIN_ALLOW_THREADS; | |
677 | _result = (int )wxListItem_m_width_set(_arg0,_arg1); | |
678 | ||
679 | wxPy_END_ALLOW_THREADS; | |
680 | } _resultobj = Py_BuildValue("i",_result); | |
681 | return _resultobj; | |
682 | } | |
683 | ||
684 | #define wxListItem_m_width_get(_swigobj) ((int ) _swigobj->m_width) | |
685 | static PyObject *_wrap_wxListItem_m_width_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
686 | PyObject * _resultobj; | |
687 | int _result; | |
688 | wxListItem * _arg0; | |
689 | PyObject * _argo0 = 0; | |
690 | char *_kwnames[] = { "self", NULL }; | |
691 | ||
692 | self = self; | |
693 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_width_get",_kwnames,&_argo0)) | |
694 | return NULL; | |
695 | if (_argo0) { | |
696 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
697 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
698 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_width_get. Expected _wxListItem_p."); | |
699 | return NULL; | |
700 | } | |
701 | } | |
702 | { | |
703 | wxPy_BEGIN_ALLOW_THREADS; | |
704 | _result = (int )wxListItem_m_width_get(_arg0); | |
705 | ||
706 | wxPy_END_ALLOW_THREADS; | |
707 | } _resultobj = Py_BuildValue("i",_result); | |
708 | return _resultobj; | |
709 | } | |
710 | ||
711 | #define new_wxListItem() (new wxListItem()) | |
712 | static PyObject *_wrap_new_wxListItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
713 | PyObject * _resultobj; | |
714 | wxListItem * _result; | |
715 | char *_kwnames[] = { NULL }; | |
716 | char _ptemp[128]; | |
717 | ||
718 | self = self; | |
719 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxListItem",_kwnames)) | |
720 | return NULL; | |
721 | { | |
722 | wxPy_BEGIN_ALLOW_THREADS; | |
723 | _result = (wxListItem *)new_wxListItem(); | |
724 | ||
725 | wxPy_END_ALLOW_THREADS; | |
726 | } if (_result) { | |
727 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItem_p"); | |
728 | _resultobj = Py_BuildValue("s",_ptemp); | |
729 | } else { | |
730 | Py_INCREF(Py_None); | |
731 | _resultobj = Py_None; | |
732 | } | |
733 | return _resultobj; | |
734 | } | |
735 | ||
736 | #define delete_wxListItem(_swigobj) (delete _swigobj) | |
737 | static PyObject *_wrap_delete_wxListItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
738 | PyObject * _resultobj; | |
739 | wxListItem * _arg0; | |
740 | PyObject * _argo0 = 0; | |
741 | char *_kwnames[] = { "self", NULL }; | |
742 | ||
743 | self = self; | |
744 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxListItem",_kwnames,&_argo0)) | |
745 | return NULL; | |
746 | if (_argo0) { | |
747 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
748 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
749 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxListItem. Expected _wxListItem_p."); | |
750 | return NULL; | |
751 | } | |
752 | } | |
753 | { | |
754 | wxPy_BEGIN_ALLOW_THREADS; | |
755 | delete_wxListItem(_arg0); | |
756 | ||
757 | wxPy_END_ALLOW_THREADS; | |
758 | } Py_INCREF(Py_None); | |
759 | _resultobj = Py_None; | |
760 | return _resultobj; | |
761 | } | |
762 | ||
763 | static void *SwigwxListEventTowxCommandEvent(void *ptr) { | |
764 | wxListEvent *src; | |
765 | wxCommandEvent *dest; | |
766 | src = (wxListEvent *) ptr; | |
767 | dest = (wxCommandEvent *) src; | |
768 | return (void *) dest; | |
769 | } | |
770 | ||
771 | static void *SwigwxListEventTowxEvent(void *ptr) { | |
772 | wxListEvent *src; | |
773 | wxEvent *dest; | |
774 | src = (wxListEvent *) ptr; | |
775 | dest = (wxEvent *) src; | |
776 | return (void *) dest; | |
777 | } | |
778 | ||
779 | #define wxListEvent_m_code_set(_swigobj,_swigval) (_swigobj->m_code = _swigval,_swigval) | |
780 | static PyObject *_wrap_wxListEvent_m_code_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
781 | PyObject * _resultobj; | |
782 | int _result; | |
783 | wxListEvent * _arg0; | |
784 | int _arg1; | |
785 | PyObject * _argo0 = 0; | |
786 | char *_kwnames[] = { "self","m_code", NULL }; | |
787 | ||
788 | self = self; | |
789 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListEvent_m_code_set",_kwnames,&_argo0,&_arg1)) | |
790 | return NULL; | |
791 | if (_argo0) { | |
792 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
793 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
794 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_code_set. Expected _wxListEvent_p."); | |
795 | return NULL; | |
796 | } | |
797 | } | |
798 | { | |
799 | wxPy_BEGIN_ALLOW_THREADS; | |
800 | _result = (int )wxListEvent_m_code_set(_arg0,_arg1); | |
801 | ||
802 | wxPy_END_ALLOW_THREADS; | |
803 | } _resultobj = Py_BuildValue("i",_result); | |
804 | return _resultobj; | |
805 | } | |
806 | ||
807 | #define wxListEvent_m_code_get(_swigobj) ((int ) _swigobj->m_code) | |
808 | static PyObject *_wrap_wxListEvent_m_code_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
809 | PyObject * _resultobj; | |
810 | int _result; | |
811 | wxListEvent * _arg0; | |
812 | PyObject * _argo0 = 0; | |
813 | char *_kwnames[] = { "self", NULL }; | |
814 | ||
815 | self = self; | |
816 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_code_get",_kwnames,&_argo0)) | |
817 | return NULL; | |
818 | if (_argo0) { | |
819 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
820 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
821 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_code_get. Expected _wxListEvent_p."); | |
822 | return NULL; | |
823 | } | |
824 | } | |
825 | { | |
826 | wxPy_BEGIN_ALLOW_THREADS; | |
827 | _result = (int )wxListEvent_m_code_get(_arg0); | |
828 | ||
829 | wxPy_END_ALLOW_THREADS; | |
830 | } _resultobj = Py_BuildValue("i",_result); | |
831 | return _resultobj; | |
832 | } | |
833 | ||
834 | #define wxListEvent_m_itemIndex_set(_swigobj,_swigval) (_swigobj->m_itemIndex = _swigval,_swigval) | |
835 | static PyObject *_wrap_wxListEvent_m_itemIndex_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
836 | PyObject * _resultobj; | |
837 | long _result; | |
838 | wxListEvent * _arg0; | |
839 | long _arg1; | |
840 | PyObject * _argo0 = 0; | |
841 | char *_kwnames[] = { "self","m_itemIndex", NULL }; | |
842 | ||
843 | self = self; | |
844 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListEvent_m_itemIndex_set",_kwnames,&_argo0,&_arg1)) | |
845 | return NULL; | |
846 | if (_argo0) { | |
847 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
848 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
849 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_itemIndex_set. Expected _wxListEvent_p."); | |
850 | return NULL; | |
851 | } | |
852 | } | |
853 | { | |
854 | wxPy_BEGIN_ALLOW_THREADS; | |
855 | _result = (long )wxListEvent_m_itemIndex_set(_arg0,_arg1); | |
856 | ||
857 | wxPy_END_ALLOW_THREADS; | |
858 | } _resultobj = Py_BuildValue("l",_result); | |
859 | return _resultobj; | |
860 | } | |
861 | ||
862 | #define wxListEvent_m_itemIndex_get(_swigobj) ((long ) _swigobj->m_itemIndex) | |
863 | static PyObject *_wrap_wxListEvent_m_itemIndex_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
864 | PyObject * _resultobj; | |
865 | long _result; | |
866 | wxListEvent * _arg0; | |
867 | PyObject * _argo0 = 0; | |
868 | char *_kwnames[] = { "self", NULL }; | |
869 | ||
870 | self = self; | |
871 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_itemIndex_get",_kwnames,&_argo0)) | |
872 | return NULL; | |
873 | if (_argo0) { | |
874 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
875 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
876 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_itemIndex_get. Expected _wxListEvent_p."); | |
877 | return NULL; | |
878 | } | |
879 | } | |
880 | { | |
881 | wxPy_BEGIN_ALLOW_THREADS; | |
882 | _result = (long )wxListEvent_m_itemIndex_get(_arg0); | |
883 | ||
884 | wxPy_END_ALLOW_THREADS; | |
885 | } _resultobj = Py_BuildValue("l",_result); | |
886 | return _resultobj; | |
887 | } | |
888 | ||
889 | #define wxListEvent_m_oldItemIndex_set(_swigobj,_swigval) (_swigobj->m_oldItemIndex = _swigval,_swigval) | |
890 | static PyObject *_wrap_wxListEvent_m_oldItemIndex_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
891 | PyObject * _resultobj; | |
892 | long _result; | |
893 | wxListEvent * _arg0; | |
894 | long _arg1; | |
895 | PyObject * _argo0 = 0; | |
896 | char *_kwnames[] = { "self","m_oldItemIndex", NULL }; | |
897 | ||
898 | self = self; | |
899 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListEvent_m_oldItemIndex_set",_kwnames,&_argo0,&_arg1)) | |
900 | return NULL; | |
901 | if (_argo0) { | |
902 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
903 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
904 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_oldItemIndex_set. Expected _wxListEvent_p."); | |
905 | return NULL; | |
906 | } | |
907 | } | |
908 | { | |
909 | wxPy_BEGIN_ALLOW_THREADS; | |
910 | _result = (long )wxListEvent_m_oldItemIndex_set(_arg0,_arg1); | |
911 | ||
912 | wxPy_END_ALLOW_THREADS; | |
913 | } _resultobj = Py_BuildValue("l",_result); | |
914 | return _resultobj; | |
915 | } | |
916 | ||
917 | #define wxListEvent_m_oldItemIndex_get(_swigobj) ((long ) _swigobj->m_oldItemIndex) | |
918 | static PyObject *_wrap_wxListEvent_m_oldItemIndex_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
919 | PyObject * _resultobj; | |
920 | long _result; | |
921 | wxListEvent * _arg0; | |
922 | PyObject * _argo0 = 0; | |
923 | char *_kwnames[] = { "self", NULL }; | |
924 | ||
925 | self = self; | |
926 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_oldItemIndex_get",_kwnames,&_argo0)) | |
927 | return NULL; | |
928 | if (_argo0) { | |
929 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
930 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
931 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_oldItemIndex_get. Expected _wxListEvent_p."); | |
932 | return NULL; | |
933 | } | |
934 | } | |
935 | { | |
936 | wxPy_BEGIN_ALLOW_THREADS; | |
937 | _result = (long )wxListEvent_m_oldItemIndex_get(_arg0); | |
938 | ||
939 | wxPy_END_ALLOW_THREADS; | |
940 | } _resultobj = Py_BuildValue("l",_result); | |
941 | return _resultobj; | |
942 | } | |
943 | ||
944 | #define wxListEvent_m_col_set(_swigobj,_swigval) (_swigobj->m_col = _swigval,_swigval) | |
945 | static PyObject *_wrap_wxListEvent_m_col_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
946 | PyObject * _resultobj; | |
947 | int _result; | |
948 | wxListEvent * _arg0; | |
949 | int _arg1; | |
950 | PyObject * _argo0 = 0; | |
951 | char *_kwnames[] = { "self","m_col", NULL }; | |
952 | ||
953 | self = self; | |
954 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListEvent_m_col_set",_kwnames,&_argo0,&_arg1)) | |
955 | return NULL; | |
956 | if (_argo0) { | |
957 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
958 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
959 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_col_set. Expected _wxListEvent_p."); | |
960 | return NULL; | |
961 | } | |
962 | } | |
963 | { | |
964 | wxPy_BEGIN_ALLOW_THREADS; | |
965 | _result = (int )wxListEvent_m_col_set(_arg0,_arg1); | |
966 | ||
967 | wxPy_END_ALLOW_THREADS; | |
968 | } _resultobj = Py_BuildValue("i",_result); | |
969 | return _resultobj; | |
970 | } | |
971 | ||
972 | #define wxListEvent_m_col_get(_swigobj) ((int ) _swigobj->m_col) | |
973 | static PyObject *_wrap_wxListEvent_m_col_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
974 | PyObject * _resultobj; | |
975 | int _result; | |
976 | wxListEvent * _arg0; | |
977 | PyObject * _argo0 = 0; | |
978 | char *_kwnames[] = { "self", NULL }; | |
979 | ||
980 | self = self; | |
981 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_col_get",_kwnames,&_argo0)) | |
982 | return NULL; | |
983 | if (_argo0) { | |
984 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
985 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
986 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_col_get. Expected _wxListEvent_p."); | |
987 | return NULL; | |
988 | } | |
989 | } | |
990 | { | |
991 | wxPy_BEGIN_ALLOW_THREADS; | |
992 | _result = (int )wxListEvent_m_col_get(_arg0); | |
993 | ||
994 | wxPy_END_ALLOW_THREADS; | |
995 | } _resultobj = Py_BuildValue("i",_result); | |
996 | return _resultobj; | |
997 | } | |
998 | ||
999 | #define wxListEvent_m_cancelled_set(_swigobj,_swigval) (_swigobj->m_cancelled = _swigval,_swigval) | |
1000 | static PyObject *_wrap_wxListEvent_m_cancelled_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1001 | PyObject * _resultobj; | |
1002 | bool _result; | |
1003 | wxListEvent * _arg0; | |
1004 | bool _arg1; | |
1005 | PyObject * _argo0 = 0; | |
1006 | int tempbool1; | |
1007 | char *_kwnames[] = { "self","m_cancelled", NULL }; | |
1008 | ||
1009 | self = self; | |
1010 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListEvent_m_cancelled_set",_kwnames,&_argo0,&tempbool1)) | |
1011 | return NULL; | |
1012 | if (_argo0) { | |
1013 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1014 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
1015 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_cancelled_set. Expected _wxListEvent_p."); | |
1016 | return NULL; | |
1017 | } | |
1018 | } | |
1019 | _arg1 = (bool ) tempbool1; | |
1020 | { | |
1021 | wxPy_BEGIN_ALLOW_THREADS; | |
1022 | _result = (bool )wxListEvent_m_cancelled_set(_arg0,_arg1); | |
1023 | ||
1024 | wxPy_END_ALLOW_THREADS; | |
1025 | } _resultobj = Py_BuildValue("i",_result); | |
1026 | return _resultobj; | |
1027 | } | |
1028 | ||
1029 | #define wxListEvent_m_cancelled_get(_swigobj) ((bool ) _swigobj->m_cancelled) | |
1030 | static PyObject *_wrap_wxListEvent_m_cancelled_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1031 | PyObject * _resultobj; | |
1032 | bool _result; | |
1033 | wxListEvent * _arg0; | |
1034 | PyObject * _argo0 = 0; | |
1035 | char *_kwnames[] = { "self", NULL }; | |
1036 | ||
1037 | self = self; | |
1038 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_cancelled_get",_kwnames,&_argo0)) | |
1039 | return NULL; | |
1040 | if (_argo0) { | |
1041 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1042 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
1043 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_cancelled_get. Expected _wxListEvent_p."); | |
1044 | return NULL; | |
1045 | } | |
1046 | } | |
1047 | { | |
1048 | wxPy_BEGIN_ALLOW_THREADS; | |
1049 | _result = (bool )wxListEvent_m_cancelled_get(_arg0); | |
1050 | ||
1051 | wxPy_END_ALLOW_THREADS; | |
1052 | } _resultobj = Py_BuildValue("i",_result); | |
1053 | return _resultobj; | |
1054 | } | |
1055 | ||
1056 | #define wxListEvent_m_pointDrag_set(_swigobj,_swigval) (_swigobj->m_pointDrag = *(_swigval),_swigval) | |
1057 | static PyObject *_wrap_wxListEvent_m_pointDrag_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1058 | PyObject * _resultobj; | |
1059 | wxPoint * _result; | |
1060 | wxListEvent * _arg0; | |
1061 | wxPoint * _arg1; | |
1062 | PyObject * _argo0 = 0; | |
1063 | wxPoint temp; | |
1064 | PyObject * _obj1 = 0; | |
1065 | char *_kwnames[] = { "self","m_pointDrag", NULL }; | |
1066 | char _ptemp[128]; | |
1067 | ||
1068 | self = self; | |
1069 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListEvent_m_pointDrag_set",_kwnames,&_argo0,&_obj1)) | |
1070 | return NULL; | |
1071 | if (_argo0) { | |
1072 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1073 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
1074 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_pointDrag_set. Expected _wxListEvent_p."); | |
1075 | return NULL; | |
1076 | } | |
1077 | } | |
1078 | { | |
1079 | _arg1 = &temp; | |
1080 | if (! wxPoint_helper(_obj1, &_arg1)) | |
1081 | return NULL; | |
1082 | } | |
1083 | { | |
1084 | wxPy_BEGIN_ALLOW_THREADS; | |
1085 | _result = (wxPoint *)wxListEvent_m_pointDrag_set(_arg0,_arg1); | |
1086 | ||
1087 | wxPy_END_ALLOW_THREADS; | |
1088 | } if (_result) { | |
1089 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
1090 | _resultobj = Py_BuildValue("s",_ptemp); | |
1091 | } else { | |
1092 | Py_INCREF(Py_None); | |
1093 | _resultobj = Py_None; | |
1094 | } | |
1095 | return _resultobj; | |
1096 | } | |
1097 | ||
1098 | #define wxListEvent_m_pointDrag_get(_swigobj) (&_swigobj->m_pointDrag) | |
1099 | static PyObject *_wrap_wxListEvent_m_pointDrag_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1100 | PyObject * _resultobj; | |
1101 | wxPoint * _result; | |
1102 | wxListEvent * _arg0; | |
1103 | PyObject * _argo0 = 0; | |
1104 | char *_kwnames[] = { "self", NULL }; | |
1105 | char _ptemp[128]; | |
1106 | ||
1107 | self = self; | |
1108 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_pointDrag_get",_kwnames,&_argo0)) | |
1109 | return NULL; | |
1110 | if (_argo0) { | |
1111 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1112 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
1113 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_pointDrag_get. Expected _wxListEvent_p."); | |
1114 | return NULL; | |
1115 | } | |
1116 | } | |
1117 | { | |
1118 | wxPy_BEGIN_ALLOW_THREADS; | |
1119 | _result = (wxPoint *)wxListEvent_m_pointDrag_get(_arg0); | |
1120 | ||
1121 | wxPy_END_ALLOW_THREADS; | |
1122 | } if (_result) { | |
1123 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
1124 | _resultobj = Py_BuildValue("s",_ptemp); | |
1125 | } else { | |
1126 | Py_INCREF(Py_None); | |
1127 | _resultobj = Py_None; | |
1128 | } | |
1129 | return _resultobj; | |
1130 | } | |
1131 | ||
1132 | #define wxListEvent_m_item_set(_swigobj,_swigval) (_swigobj->m_item = *(_swigval),_swigval) | |
1133 | static PyObject *_wrap_wxListEvent_m_item_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1134 | PyObject * _resultobj; | |
1135 | wxListItem * _result; | |
1136 | wxListEvent * _arg0; | |
1137 | wxListItem * _arg1; | |
1138 | PyObject * _argo0 = 0; | |
1139 | PyObject * _argo1 = 0; | |
1140 | char *_kwnames[] = { "self","m_item", NULL }; | |
1141 | char _ptemp[128]; | |
1142 | ||
1143 | self = self; | |
1144 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListEvent_m_item_set",_kwnames,&_argo0,&_argo1)) | |
1145 | return NULL; | |
1146 | if (_argo0) { | |
1147 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1148 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
1149 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_item_set. Expected _wxListEvent_p."); | |
1150 | return NULL; | |
1151 | } | |
1152 | } | |
1153 | if (_argo1) { | |
1154 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1155 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxListItem_p")) { | |
1156 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListEvent_m_item_set. Expected _wxListItem_p."); | |
1157 | return NULL; | |
1158 | } | |
1159 | } | |
1160 | { | |
1161 | wxPy_BEGIN_ALLOW_THREADS; | |
1162 | _result = (wxListItem *)wxListEvent_m_item_set(_arg0,_arg1); | |
1163 | ||
1164 | wxPy_END_ALLOW_THREADS; | |
1165 | } if (_result) { | |
1166 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItem_p"); | |
1167 | _resultobj = Py_BuildValue("s",_ptemp); | |
1168 | } else { | |
1169 | Py_INCREF(Py_None); | |
1170 | _resultobj = Py_None; | |
1171 | } | |
1172 | return _resultobj; | |
1173 | } | |
1174 | ||
1175 | #define wxListEvent_m_item_get(_swigobj) (&_swigobj->m_item) | |
1176 | static PyObject *_wrap_wxListEvent_m_item_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1177 | PyObject * _resultobj; | |
1178 | wxListItem * _result; | |
1179 | wxListEvent * _arg0; | |
1180 | PyObject * _argo0 = 0; | |
1181 | char *_kwnames[] = { "self", NULL }; | |
1182 | char _ptemp[128]; | |
1183 | ||
1184 | self = self; | |
1185 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_item_get",_kwnames,&_argo0)) | |
1186 | return NULL; | |
1187 | if (_argo0) { | |
1188 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1189 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
1190 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_item_get. Expected _wxListEvent_p."); | |
1191 | return NULL; | |
1192 | } | |
1193 | } | |
1194 | { | |
1195 | wxPy_BEGIN_ALLOW_THREADS; | |
1196 | _result = (wxListItem *)wxListEvent_m_item_get(_arg0); | |
1197 | ||
1198 | wxPy_END_ALLOW_THREADS; | |
1199 | } if (_result) { | |
1200 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItem_p"); | |
1201 | _resultobj = Py_BuildValue("s",_ptemp); | |
1202 | } else { | |
1203 | Py_INCREF(Py_None); | |
1204 | _resultobj = Py_None; | |
1205 | } | |
1206 | return _resultobj; | |
1207 | } | |
1208 | ||
1209 | static void *SwigwxListCtrlTowxControl(void *ptr) { | |
1210 | wxListCtrl *src; | |
1211 | wxControl *dest; | |
1212 | src = (wxListCtrl *) ptr; | |
1213 | dest = (wxControl *) src; | |
1214 | return (void *) dest; | |
1215 | } | |
1216 | ||
1217 | static void *SwigwxListCtrlTowxWindow(void *ptr) { | |
1218 | wxListCtrl *src; | |
1219 | wxWindow *dest; | |
1220 | src = (wxListCtrl *) ptr; | |
1221 | dest = (wxWindow *) src; | |
1222 | return (void *) dest; | |
1223 | } | |
1224 | ||
1225 | static void *SwigwxListCtrlTowxEvtHandler(void *ptr) { | |
1226 | wxListCtrl *src; | |
1227 | wxEvtHandler *dest; | |
1228 | src = (wxListCtrl *) ptr; | |
1229 | dest = (wxEvtHandler *) src; | |
1230 | return (void *) dest; | |
1231 | } | |
1232 | ||
1233 | #define new_wxListCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxListCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
1234 | static PyObject *_wrap_new_wxListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1235 | PyObject * _resultobj; | |
1236 | wxListCtrl * _result; | |
1237 | wxWindow * _arg0; | |
1238 | wxWindowID _arg1; | |
1239 | wxPoint * _arg2 = (wxPoint *) &wxPyDefaultPosition; | |
1240 | wxSize * _arg3 = (wxSize *) &wxPyDefaultSize; | |
1241 | long _arg4 = (long ) wxLC_ICON; | |
1242 | wxValidator * _arg5 = (wxValidator *) &wxPyDefaultValidator; | |
1243 | char * _arg6 = (char *) "listCtrl"; | |
1244 | PyObject * _argo0 = 0; | |
1245 | wxPoint temp; | |
1246 | PyObject * _obj2 = 0; | |
1247 | wxSize temp0; | |
1248 | PyObject * _obj3 = 0; | |
1249 | PyObject * _argo5 = 0; | |
1250 | char *_kwnames[] = { "parent","id","pos","size","style","validator","name", NULL }; | |
1251 | char _ptemp[128]; | |
1252 | ||
1253 | self = self; | |
1254 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOlOs:new_wxListCtrl",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_argo5,&_arg6)) | |
1255 | return NULL; | |
1256 | if (_argo0) { | |
1257 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1258 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
1259 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxListCtrl. Expected _wxWindow_p."); | |
1260 | return NULL; | |
1261 | } | |
1262 | } | |
1263 | if (_obj2) | |
1264 | { | |
1265 | _arg2 = &temp; | |
1266 | if (! wxPoint_helper(_obj2, &_arg2)) | |
1267 | return NULL; | |
1268 | } | |
1269 | if (_obj3) | |
1270 | { | |
1271 | _arg3 = &temp0; | |
1272 | if (! wxSize_helper(_obj3, &_arg3)) | |
1273 | return NULL; | |
1274 | } | |
1275 | if (_argo5) { | |
1276 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
1277 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxValidator_p")) { | |
1278 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxListCtrl. Expected _wxValidator_p."); | |
1279 | return NULL; | |
1280 | } | |
1281 | } | |
1282 | { | |
1283 | wxPy_BEGIN_ALLOW_THREADS; | |
1284 | _result = (wxListCtrl *)new_wxListCtrl(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5,_arg6); | |
1285 | ||
1286 | wxPy_END_ALLOW_THREADS; | |
1287 | } if (_result) { | |
1288 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListCtrl_p"); | |
1289 | _resultobj = Py_BuildValue("s",_ptemp); | |
1290 | } else { | |
1291 | Py_INCREF(Py_None); | |
1292 | _resultobj = Py_None; | |
1293 | } | |
1294 | return _resultobj; | |
1295 | } | |
1296 | ||
1297 | #define wxListCtrl_Arrange(_swigobj,_swigarg0) (_swigobj->Arrange(_swigarg0)) | |
1298 | static PyObject *_wrap_wxListCtrl_Arrange(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1299 | PyObject * _resultobj; | |
1300 | bool _result; | |
1301 | wxListCtrl * _arg0; | |
1302 | int _arg1 = (int ) (wxLIST_ALIGN_DEFAULT); | |
1303 | PyObject * _argo0 = 0; | |
1304 | char *_kwnames[] = { "self","flag", NULL }; | |
1305 | ||
1306 | self = self; | |
1307 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxListCtrl_Arrange",_kwnames,&_argo0,&_arg1)) | |
1308 | return NULL; | |
1309 | if (_argo0) { | |
1310 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1311 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1312 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_Arrange. Expected _wxListCtrl_p."); | |
1313 | return NULL; | |
1314 | } | |
1315 | } | |
1316 | { | |
1317 | wxPy_BEGIN_ALLOW_THREADS; | |
1318 | _result = (bool )wxListCtrl_Arrange(_arg0,_arg1); | |
1319 | ||
1320 | wxPy_END_ALLOW_THREADS; | |
1321 | } _resultobj = Py_BuildValue("i",_result); | |
1322 | return _resultobj; | |
1323 | } | |
1324 | ||
1325 | #define wxListCtrl_DeleteItem(_swigobj,_swigarg0) (_swigobj->DeleteItem(_swigarg0)) | |
1326 | static PyObject *_wrap_wxListCtrl_DeleteItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1327 | PyObject * _resultobj; | |
1328 | bool _result; | |
1329 | wxListCtrl * _arg0; | |
1330 | long _arg1; | |
1331 | PyObject * _argo0 = 0; | |
1332 | char *_kwnames[] = { "self","item", NULL }; | |
1333 | ||
1334 | self = self; | |
1335 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_DeleteItem",_kwnames,&_argo0,&_arg1)) | |
1336 | return NULL; | |
1337 | if (_argo0) { | |
1338 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1339 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1340 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteItem. Expected _wxListCtrl_p."); | |
1341 | return NULL; | |
1342 | } | |
1343 | } | |
1344 | { | |
1345 | wxPy_BEGIN_ALLOW_THREADS; | |
1346 | _result = (bool )wxListCtrl_DeleteItem(_arg0,_arg1); | |
1347 | ||
1348 | wxPy_END_ALLOW_THREADS; | |
1349 | } _resultobj = Py_BuildValue("i",_result); | |
1350 | return _resultobj; | |
1351 | } | |
1352 | ||
1353 | #define wxListCtrl_DeleteAllItems(_swigobj) (_swigobj->DeleteAllItems()) | |
1354 | static PyObject *_wrap_wxListCtrl_DeleteAllItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1355 | PyObject * _resultobj; | |
1356 | bool _result; | |
1357 | wxListCtrl * _arg0; | |
1358 | PyObject * _argo0 = 0; | |
1359 | char *_kwnames[] = { "self", NULL }; | |
1360 | ||
1361 | self = self; | |
1362 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_DeleteAllItems",_kwnames,&_argo0)) | |
1363 | return NULL; | |
1364 | if (_argo0) { | |
1365 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1366 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1367 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteAllItems. Expected _wxListCtrl_p."); | |
1368 | return NULL; | |
1369 | } | |
1370 | } | |
1371 | { | |
1372 | wxPy_BEGIN_ALLOW_THREADS; | |
1373 | _result = (bool )wxListCtrl_DeleteAllItems(_arg0); | |
1374 | ||
1375 | wxPy_END_ALLOW_THREADS; | |
1376 | } _resultobj = Py_BuildValue("i",_result); | |
1377 | return _resultobj; | |
1378 | } | |
1379 | ||
1380 | #define wxListCtrl_DeleteColumn(_swigobj,_swigarg0) (_swigobj->DeleteColumn(_swigarg0)) | |
1381 | static PyObject *_wrap_wxListCtrl_DeleteColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1382 | PyObject * _resultobj; | |
1383 | bool _result; | |
1384 | wxListCtrl * _arg0; | |
1385 | int _arg1; | |
1386 | PyObject * _argo0 = 0; | |
1387 | char *_kwnames[] = { "self","col", NULL }; | |
1388 | ||
1389 | self = self; | |
1390 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_DeleteColumn",_kwnames,&_argo0,&_arg1)) | |
1391 | return NULL; | |
1392 | if (_argo0) { | |
1393 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1394 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1395 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteColumn. Expected _wxListCtrl_p."); | |
1396 | return NULL; | |
1397 | } | |
1398 | } | |
1399 | { | |
1400 | wxPy_BEGIN_ALLOW_THREADS; | |
1401 | _result = (bool )wxListCtrl_DeleteColumn(_arg0,_arg1); | |
1402 | ||
1403 | wxPy_END_ALLOW_THREADS; | |
1404 | } _resultobj = Py_BuildValue("i",_result); | |
1405 | return _resultobj; | |
1406 | } | |
1407 | ||
1408 | #define wxListCtrl_DeleteAllColumns(_swigobj) (_swigobj->DeleteAllColumns()) | |
1409 | static PyObject *_wrap_wxListCtrl_DeleteAllColumns(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1410 | PyObject * _resultobj; | |
1411 | bool _result; | |
1412 | wxListCtrl * _arg0; | |
1413 | PyObject * _argo0 = 0; | |
1414 | char *_kwnames[] = { "self", NULL }; | |
1415 | ||
1416 | self = self; | |
1417 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_DeleteAllColumns",_kwnames,&_argo0)) | |
1418 | return NULL; | |
1419 | if (_argo0) { | |
1420 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1421 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1422 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteAllColumns. Expected _wxListCtrl_p."); | |
1423 | return NULL; | |
1424 | } | |
1425 | } | |
1426 | { | |
1427 | wxPy_BEGIN_ALLOW_THREADS; | |
1428 | _result = (bool )wxListCtrl_DeleteAllColumns(_arg0); | |
1429 | ||
1430 | wxPy_END_ALLOW_THREADS; | |
1431 | } _resultobj = Py_BuildValue("i",_result); | |
1432 | return _resultobj; | |
1433 | } | |
1434 | ||
1435 | #define wxListCtrl_ClearAll(_swigobj) (_swigobj->ClearAll()) | |
1436 | static PyObject *_wrap_wxListCtrl_ClearAll(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1437 | PyObject * _resultobj; | |
1438 | wxListCtrl * _arg0; | |
1439 | PyObject * _argo0 = 0; | |
1440 | char *_kwnames[] = { "self", NULL }; | |
1441 | ||
1442 | self = self; | |
1443 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_ClearAll",_kwnames,&_argo0)) | |
1444 | return NULL; | |
1445 | if (_argo0) { | |
1446 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1447 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1448 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_ClearAll. Expected _wxListCtrl_p."); | |
1449 | return NULL; | |
1450 | } | |
1451 | } | |
1452 | { | |
1453 | wxPy_BEGIN_ALLOW_THREADS; | |
1454 | wxListCtrl_ClearAll(_arg0); | |
1455 | ||
1456 | wxPy_END_ALLOW_THREADS; | |
1457 | } Py_INCREF(Py_None); | |
1458 | _resultobj = Py_None; | |
1459 | return _resultobj; | |
1460 | } | |
1461 | ||
1462 | #define wxListCtrl_EditLabel(_swigobj,_swigarg0) (_swigobj->EditLabel(_swigarg0)) | |
1463 | static PyObject *_wrap_wxListCtrl_EditLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1464 | PyObject * _resultobj; | |
1465 | wxListCtrl * _arg0; | |
1466 | long _arg1; | |
1467 | PyObject * _argo0 = 0; | |
1468 | char *_kwnames[] = { "self","item", NULL }; | |
1469 | ||
1470 | self = self; | |
1471 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_EditLabel",_kwnames,&_argo0,&_arg1)) | |
1472 | return NULL; | |
1473 | if (_argo0) { | |
1474 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1475 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1476 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_EditLabel. Expected _wxListCtrl_p."); | |
1477 | return NULL; | |
1478 | } | |
1479 | } | |
1480 | { | |
1481 | wxPy_BEGIN_ALLOW_THREADS; | |
1482 | wxListCtrl_EditLabel(_arg0,_arg1); | |
1483 | ||
1484 | wxPy_END_ALLOW_THREADS; | |
1485 | } Py_INCREF(Py_None); | |
1486 | _resultobj = Py_None; | |
1487 | return _resultobj; | |
1488 | } | |
1489 | ||
1490 | #define wxListCtrl_EnsureVisible(_swigobj,_swigarg0) (_swigobj->EnsureVisible(_swigarg0)) | |
1491 | static PyObject *_wrap_wxListCtrl_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1492 | PyObject * _resultobj; | |
1493 | bool _result; | |
1494 | wxListCtrl * _arg0; | |
1495 | long _arg1; | |
1496 | PyObject * _argo0 = 0; | |
1497 | char *_kwnames[] = { "self","item", NULL }; | |
1498 | ||
1499 | self = self; | |
1500 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_EnsureVisible",_kwnames,&_argo0,&_arg1)) | |
1501 | return NULL; | |
1502 | if (_argo0) { | |
1503 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1504 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1505 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_EnsureVisible. Expected _wxListCtrl_p."); | |
1506 | return NULL; | |
1507 | } | |
1508 | } | |
1509 | { | |
1510 | wxPy_BEGIN_ALLOW_THREADS; | |
1511 | _result = (bool )wxListCtrl_EnsureVisible(_arg0,_arg1); | |
1512 | ||
1513 | wxPy_END_ALLOW_THREADS; | |
1514 | } _resultobj = Py_BuildValue("i",_result); | |
1515 | return _resultobj; | |
1516 | } | |
1517 | ||
1518 | #define wxListCtrl_FindItem(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->FindItem(_swigarg0,_swigarg1,_swigarg2)) | |
1519 | static PyObject *_wrap_wxListCtrl_FindItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1520 | PyObject * _resultobj; | |
1521 | long _result; | |
1522 | wxListCtrl * _arg0; | |
1523 | long _arg1; | |
1524 | wxString * _arg2; | |
1525 | bool _arg3 = (bool ) FALSE; | |
1526 | PyObject * _argo0 = 0; | |
1527 | PyObject * _obj2 = 0; | |
1528 | int tempbool3 = (int) FALSE; | |
1529 | char *_kwnames[] = { "self","start","str","partial", NULL }; | |
1530 | ||
1531 | self = self; | |
1532 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO|i:wxListCtrl_FindItem",_kwnames,&_argo0,&_arg1,&_obj2,&tempbool3)) | |
1533 | return NULL; | |
1534 | if (_argo0) { | |
1535 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1536 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1537 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_FindItem. Expected _wxListCtrl_p."); | |
1538 | return NULL; | |
1539 | } | |
1540 | } | |
1541 | { | |
1542 | if (!PyString_Check(_obj2)) { | |
1543 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1544 | return NULL; | |
1545 | } | |
1546 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
1547 | } | |
1548 | _arg3 = (bool ) tempbool3; | |
1549 | { | |
1550 | wxPy_BEGIN_ALLOW_THREADS; | |
1551 | _result = (long )wxListCtrl_FindItem(_arg0,_arg1,*_arg2,_arg3); | |
1552 | ||
1553 | wxPy_END_ALLOW_THREADS; | |
1554 | } _resultobj = Py_BuildValue("l",_result); | |
1555 | { | |
1556 | if (_obj2) | |
1557 | delete _arg2; | |
1558 | } | |
1559 | return _resultobj; | |
1560 | } | |
1561 | ||
1562 | #define wxListCtrl_FindItemData(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindItem(_swigarg0,_swigarg1)) | |
1563 | static PyObject *_wrap_wxListCtrl_FindItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1564 | PyObject * _resultobj; | |
1565 | long _result; | |
1566 | wxListCtrl * _arg0; | |
1567 | long _arg1; | |
1568 | long _arg2; | |
1569 | PyObject * _argo0 = 0; | |
1570 | char *_kwnames[] = { "self","start","data", NULL }; | |
1571 | ||
1572 | self = self; | |
1573 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_FindItemData",_kwnames,&_argo0,&_arg1,&_arg2)) | |
1574 | return NULL; | |
1575 | if (_argo0) { | |
1576 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1577 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1578 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_FindItemData. Expected _wxListCtrl_p."); | |
1579 | return NULL; | |
1580 | } | |
1581 | } | |
1582 | { | |
1583 | wxPy_BEGIN_ALLOW_THREADS; | |
1584 | _result = (long )wxListCtrl_FindItemData(_arg0,_arg1,_arg2); | |
1585 | ||
1586 | wxPy_END_ALLOW_THREADS; | |
1587 | } _resultobj = Py_BuildValue("l",_result); | |
1588 | return _resultobj; | |
1589 | } | |
1590 | ||
1591 | #define wxListCtrl_FindItemAtPos(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->FindItem(_swigarg0,_swigarg1,_swigarg2)) | |
1592 | static PyObject *_wrap_wxListCtrl_FindItemAtPos(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1593 | PyObject * _resultobj; | |
1594 | long _result; | |
1595 | wxListCtrl * _arg0; | |
1596 | long _arg1; | |
1597 | wxPoint * _arg2; | |
1598 | int _arg3; | |
1599 | PyObject * _argo0 = 0; | |
1600 | wxPoint temp; | |
1601 | PyObject * _obj2 = 0; | |
1602 | char *_kwnames[] = { "self","start","pt","direction", NULL }; | |
1603 | ||
1604 | self = self; | |
1605 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlOi:wxListCtrl_FindItemAtPos",_kwnames,&_argo0,&_arg1,&_obj2,&_arg3)) | |
1606 | return NULL; | |
1607 | if (_argo0) { | |
1608 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1609 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1610 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_FindItemAtPos. Expected _wxListCtrl_p."); | |
1611 | return NULL; | |
1612 | } | |
1613 | } | |
1614 | { | |
1615 | _arg2 = &temp; | |
1616 | if (! wxPoint_helper(_obj2, &_arg2)) | |
1617 | return NULL; | |
1618 | } | |
1619 | { | |
1620 | wxPy_BEGIN_ALLOW_THREADS; | |
1621 | _result = (long )wxListCtrl_FindItemAtPos(_arg0,_arg1,*_arg2,_arg3); | |
1622 | ||
1623 | wxPy_END_ALLOW_THREADS; | |
1624 | } _resultobj = Py_BuildValue("l",_result); | |
1625 | return _resultobj; | |
1626 | } | |
1627 | ||
1628 | #define wxListCtrl_GetColumn(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetColumn(_swigarg0,_swigarg1)) | |
1629 | static PyObject *_wrap_wxListCtrl_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1630 | PyObject * _resultobj; | |
1631 | bool _result; | |
1632 | wxListCtrl * _arg0; | |
1633 | int _arg1; | |
1634 | wxListItem * _arg2; | |
1635 | PyObject * _argo0 = 0; | |
1636 | PyObject * _argo2 = 0; | |
1637 | char *_kwnames[] = { "self","col","item", NULL }; | |
1638 | ||
1639 | self = self; | |
1640 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxListCtrl_GetColumn",_kwnames,&_argo0,&_arg1,&_argo2)) | |
1641 | return NULL; | |
1642 | if (_argo0) { | |
1643 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1644 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1645 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetColumn. Expected _wxListCtrl_p."); | |
1646 | return NULL; | |
1647 | } | |
1648 | } | |
1649 | if (_argo2) { | |
1650 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
1651 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxListItem_p")) { | |
1652 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxListCtrl_GetColumn. Expected _wxListItem_p."); | |
1653 | return NULL; | |
1654 | } | |
1655 | } | |
1656 | { | |
1657 | wxPy_BEGIN_ALLOW_THREADS; | |
1658 | _result = (bool )wxListCtrl_GetColumn(_arg0,_arg1,*_arg2); | |
1659 | ||
1660 | wxPy_END_ALLOW_THREADS; | |
1661 | } _resultobj = Py_BuildValue("i",_result); | |
1662 | return _resultobj; | |
1663 | } | |
1664 | ||
1665 | #define wxListCtrl_GetColumnWidth(_swigobj,_swigarg0) (_swigobj->GetColumnWidth(_swigarg0)) | |
1666 | static PyObject *_wrap_wxListCtrl_GetColumnWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1667 | PyObject * _resultobj; | |
1668 | int _result; | |
1669 | wxListCtrl * _arg0; | |
1670 | int _arg1; | |
1671 | PyObject * _argo0 = 0; | |
1672 | char *_kwnames[] = { "self","col", NULL }; | |
1673 | ||
1674 | self = self; | |
1675 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_GetColumnWidth",_kwnames,&_argo0,&_arg1)) | |
1676 | return NULL; | |
1677 | if (_argo0) { | |
1678 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1679 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1680 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetColumnWidth. Expected _wxListCtrl_p."); | |
1681 | return NULL; | |
1682 | } | |
1683 | } | |
1684 | { | |
1685 | wxPy_BEGIN_ALLOW_THREADS; | |
1686 | _result = (int )wxListCtrl_GetColumnWidth(_arg0,_arg1); | |
1687 | ||
1688 | wxPy_END_ALLOW_THREADS; | |
1689 | } _resultobj = Py_BuildValue("i",_result); | |
1690 | return _resultobj; | |
1691 | } | |
1692 | ||
1693 | #define wxListCtrl_GetCountPerPage(_swigobj) (_swigobj->GetCountPerPage()) | |
1694 | static PyObject *_wrap_wxListCtrl_GetCountPerPage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1695 | PyObject * _resultobj; | |
1696 | int _result; | |
1697 | wxListCtrl * _arg0; | |
1698 | PyObject * _argo0 = 0; | |
1699 | char *_kwnames[] = { "self", NULL }; | |
1700 | ||
1701 | self = self; | |
1702 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetCountPerPage",_kwnames,&_argo0)) | |
1703 | return NULL; | |
1704 | if (_argo0) { | |
1705 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1706 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1707 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetCountPerPage. Expected _wxListCtrl_p."); | |
1708 | return NULL; | |
1709 | } | |
1710 | } | |
1711 | { | |
1712 | wxPy_BEGIN_ALLOW_THREADS; | |
1713 | _result = (int )wxListCtrl_GetCountPerPage(_arg0); | |
1714 | ||
1715 | wxPy_END_ALLOW_THREADS; | |
1716 | } _resultobj = Py_BuildValue("i",_result); | |
1717 | return _resultobj; | |
1718 | } | |
1719 | ||
1720 | #define wxListCtrl_GetImageList(_swigobj,_swigarg0) (_swigobj->GetImageList(_swigarg0)) | |
1721 | static PyObject *_wrap_wxListCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1722 | PyObject * _resultobj; | |
1723 | wxImageList * _result; | |
1724 | wxListCtrl * _arg0; | |
1725 | int _arg1; | |
1726 | PyObject * _argo0 = 0; | |
1727 | char *_kwnames[] = { "self","which", NULL }; | |
1728 | char _ptemp[128]; | |
1729 | ||
1730 | self = self; | |
1731 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_GetImageList",_kwnames,&_argo0,&_arg1)) | |
1732 | return NULL; | |
1733 | if (_argo0) { | |
1734 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1735 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1736 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetImageList. Expected _wxListCtrl_p."); | |
1737 | return NULL; | |
1738 | } | |
1739 | } | |
1740 | { | |
1741 | wxPy_BEGIN_ALLOW_THREADS; | |
1742 | _result = (wxImageList *)wxListCtrl_GetImageList(_arg0,_arg1); | |
1743 | ||
1744 | wxPy_END_ALLOW_THREADS; | |
1745 | } if (_result) { | |
1746 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImageList_p"); | |
1747 | _resultobj = Py_BuildValue("s",_ptemp); | |
1748 | } else { | |
1749 | Py_INCREF(Py_None); | |
1750 | _resultobj = Py_None; | |
1751 | } | |
1752 | return _resultobj; | |
1753 | } | |
1754 | ||
1755 | #define wxListCtrl_GetItemData(_swigobj,_swigarg0) (_swigobj->GetItemData(_swigarg0)) | |
1756 | static PyObject *_wrap_wxListCtrl_GetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1757 | PyObject * _resultobj; | |
1758 | long _result; | |
1759 | wxListCtrl * _arg0; | |
1760 | long _arg1; | |
1761 | PyObject * _argo0 = 0; | |
1762 | char *_kwnames[] = { "self","item", NULL }; | |
1763 | ||
1764 | self = self; | |
1765 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_GetItemData",_kwnames,&_argo0,&_arg1)) | |
1766 | return NULL; | |
1767 | if (_argo0) { | |
1768 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1769 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1770 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemData. Expected _wxListCtrl_p."); | |
1771 | return NULL; | |
1772 | } | |
1773 | } | |
1774 | { | |
1775 | wxPy_BEGIN_ALLOW_THREADS; | |
1776 | _result = (long )wxListCtrl_GetItemData(_arg0,_arg1); | |
1777 | ||
1778 | wxPy_END_ALLOW_THREADS; | |
1779 | } _resultobj = Py_BuildValue("l",_result); | |
1780 | return _resultobj; | |
1781 | } | |
1782 | ||
1783 | static wxListItem * wxListCtrl_GetItem(wxListCtrl *self,long itemId,int col) { | |
1784 | wxListItem* info = new wxListItem; | |
1785 | info->m_itemId = itemId; | |
1786 | info->m_col = col; | |
1787 | self->GetItem(*info); | |
1788 | return info; | |
1789 | } | |
1790 | static PyObject *_wrap_wxListCtrl_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1791 | PyObject * _resultobj; | |
1792 | wxListItem * _result; | |
1793 | wxListCtrl * _arg0; | |
1794 | long _arg1; | |
1795 | int _arg2 = (int ) 0; | |
1796 | PyObject * _argo0 = 0; | |
1797 | char *_kwnames[] = { "self","itemId","col", NULL }; | |
1798 | char _ptemp[128]; | |
1799 | ||
1800 | self = self; | |
1801 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListCtrl_GetItem",_kwnames,&_argo0,&_arg1,&_arg2)) | |
1802 | return NULL; | |
1803 | if (_argo0) { | |
1804 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1805 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1806 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItem. Expected _wxListCtrl_p."); | |
1807 | return NULL; | |
1808 | } | |
1809 | } | |
1810 | { | |
1811 | wxPy_BEGIN_ALLOW_THREADS; | |
1812 | _result = (wxListItem *)wxListCtrl_GetItem(_arg0,_arg1,_arg2); | |
1813 | ||
1814 | wxPy_END_ALLOW_THREADS; | |
1815 | } if (_result) { | |
1816 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItem_p"); | |
1817 | _resultobj = Py_BuildValue("s",_ptemp); | |
1818 | } else { | |
1819 | Py_INCREF(Py_None); | |
1820 | _resultobj = Py_None; | |
1821 | } | |
1822 | return _resultobj; | |
1823 | } | |
1824 | ||
1825 | static wxPoint * wxListCtrl_GetItemPosition(wxListCtrl *self,long item) { | |
1826 | wxPoint* pos = new wxPoint; | |
1827 | self->GetItemPosition(item, *pos); | |
1828 | return pos; | |
1829 | } | |
1830 | static PyObject *_wrap_wxListCtrl_GetItemPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1831 | PyObject * _resultobj; | |
1832 | wxPoint * _result; | |
1833 | wxListCtrl * _arg0; | |
1834 | long _arg1; | |
1835 | PyObject * _argo0 = 0; | |
1836 | char *_kwnames[] = { "self","item", NULL }; | |
1837 | char _ptemp[128]; | |
1838 | ||
1839 | self = self; | |
1840 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_GetItemPosition",_kwnames,&_argo0,&_arg1)) | |
1841 | return NULL; | |
1842 | if (_argo0) { | |
1843 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1844 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1845 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemPosition. Expected _wxListCtrl_p."); | |
1846 | return NULL; | |
1847 | } | |
1848 | } | |
1849 | { | |
1850 | wxPy_BEGIN_ALLOW_THREADS; | |
1851 | _result = (wxPoint *)wxListCtrl_GetItemPosition(_arg0,_arg1); | |
1852 | ||
1853 | wxPy_END_ALLOW_THREADS; | |
1854 | } if (_result) { | |
1855 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
1856 | _resultobj = Py_BuildValue("s",_ptemp); | |
1857 | } else { | |
1858 | Py_INCREF(Py_None); | |
1859 | _resultobj = Py_None; | |
1860 | } | |
1861 | return _resultobj; | |
1862 | } | |
1863 | ||
1864 | static wxRect * wxListCtrl_GetItemRect(wxListCtrl *self,long item,int code) { | |
1865 | wxRect* rect= new wxRect; | |
1866 | self->GetItemRect(item, *rect, code); | |
1867 | return rect; | |
1868 | } | |
1869 | static PyObject *_wrap_wxListCtrl_GetItemRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1870 | PyObject * _resultobj; | |
1871 | wxRect * _result; | |
1872 | wxListCtrl * _arg0; | |
1873 | long _arg1; | |
1874 | int _arg2 = (int ) (wxLIST_RECT_BOUNDS); | |
1875 | PyObject * _argo0 = 0; | |
1876 | char *_kwnames[] = { "self","item","code", NULL }; | |
1877 | char _ptemp[128]; | |
1878 | ||
1879 | self = self; | |
1880 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListCtrl_GetItemRect",_kwnames,&_argo0,&_arg1,&_arg2)) | |
1881 | return NULL; | |
1882 | if (_argo0) { | |
1883 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1884 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1885 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemRect. Expected _wxListCtrl_p."); | |
1886 | return NULL; | |
1887 | } | |
1888 | } | |
1889 | { | |
1890 | wxPy_BEGIN_ALLOW_THREADS; | |
1891 | _result = (wxRect *)wxListCtrl_GetItemRect(_arg0,_arg1,_arg2); | |
1892 | ||
1893 | wxPy_END_ALLOW_THREADS; | |
1894 | } if (_result) { | |
1895 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxRect_p"); | |
1896 | _resultobj = Py_BuildValue("s",_ptemp); | |
1897 | } else { | |
1898 | Py_INCREF(Py_None); | |
1899 | _resultobj = Py_None; | |
1900 | } | |
1901 | return _resultobj; | |
1902 | } | |
1903 | ||
1904 | #define wxListCtrl_GetItemState(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetItemState(_swigarg0,_swigarg1)) | |
1905 | static PyObject *_wrap_wxListCtrl_GetItemState(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1906 | PyObject * _resultobj; | |
1907 | int _result; | |
1908 | wxListCtrl * _arg0; | |
1909 | long _arg1; | |
1910 | long _arg2; | |
1911 | PyObject * _argo0 = 0; | |
1912 | char *_kwnames[] = { "self","item","stateMask", NULL }; | |
1913 | ||
1914 | self = self; | |
1915 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_GetItemState",_kwnames,&_argo0,&_arg1,&_arg2)) | |
1916 | return NULL; | |
1917 | if (_argo0) { | |
1918 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1919 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1920 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemState. Expected _wxListCtrl_p."); | |
1921 | return NULL; | |
1922 | } | |
1923 | } | |
1924 | { | |
1925 | wxPy_BEGIN_ALLOW_THREADS; | |
1926 | _result = (int )wxListCtrl_GetItemState(_arg0,_arg1,_arg2); | |
1927 | ||
1928 | wxPy_END_ALLOW_THREADS; | |
1929 | } _resultobj = Py_BuildValue("i",_result); | |
1930 | return _resultobj; | |
1931 | } | |
1932 | ||
1933 | #define wxListCtrl_GetItemCount(_swigobj) (_swigobj->GetItemCount()) | |
1934 | static PyObject *_wrap_wxListCtrl_GetItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1935 | PyObject * _resultobj; | |
1936 | int _result; | |
1937 | wxListCtrl * _arg0; | |
1938 | PyObject * _argo0 = 0; | |
1939 | char *_kwnames[] = { "self", NULL }; | |
1940 | ||
1941 | self = self; | |
1942 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetItemCount",_kwnames,&_argo0)) | |
1943 | return NULL; | |
1944 | if (_argo0) { | |
1945 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1946 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1947 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemCount. Expected _wxListCtrl_p."); | |
1948 | return NULL; | |
1949 | } | |
1950 | } | |
1951 | { | |
1952 | wxPy_BEGIN_ALLOW_THREADS; | |
1953 | _result = (int )wxListCtrl_GetItemCount(_arg0); | |
1954 | ||
1955 | wxPy_END_ALLOW_THREADS; | |
1956 | } _resultobj = Py_BuildValue("i",_result); | |
1957 | return _resultobj; | |
1958 | } | |
1959 | ||
1960 | #define wxListCtrl_GetItemSpacing(_swigobj,_swigarg0) (_swigobj->GetItemSpacing(_swigarg0)) | |
1961 | static PyObject *_wrap_wxListCtrl_GetItemSpacing(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1962 | PyObject * _resultobj; | |
1963 | int _result; | |
1964 | wxListCtrl * _arg0; | |
1965 | bool _arg1; | |
1966 | PyObject * _argo0 = 0; | |
1967 | int tempbool1; | |
1968 | char *_kwnames[] = { "self","isSmall", NULL }; | |
1969 | ||
1970 | self = self; | |
1971 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_GetItemSpacing",_kwnames,&_argo0,&tempbool1)) | |
1972 | return NULL; | |
1973 | if (_argo0) { | |
1974 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1975 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
1976 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemSpacing. Expected _wxListCtrl_p."); | |
1977 | return NULL; | |
1978 | } | |
1979 | } | |
1980 | _arg1 = (bool ) tempbool1; | |
1981 | { | |
1982 | wxPy_BEGIN_ALLOW_THREADS; | |
1983 | _result = (int )wxListCtrl_GetItemSpacing(_arg0,_arg1); | |
1984 | ||
1985 | wxPy_END_ALLOW_THREADS; | |
1986 | } _resultobj = Py_BuildValue("i",_result); | |
1987 | return _resultobj; | |
1988 | } | |
1989 | ||
1990 | #define wxListCtrl_GetItemText(_swigobj,_swigarg0) (_swigobj->GetItemText(_swigarg0)) | |
1991 | static PyObject *_wrap_wxListCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1992 | PyObject * _resultobj; | |
1993 | wxString * _result; | |
1994 | wxListCtrl * _arg0; | |
1995 | long _arg1; | |
1996 | PyObject * _argo0 = 0; | |
1997 | char *_kwnames[] = { "self","item", NULL }; | |
1998 | ||
1999 | self = self; | |
2000 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_GetItemText",_kwnames,&_argo0,&_arg1)) | |
2001 | return NULL; | |
2002 | if (_argo0) { | |
2003 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2004 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2005 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemText. Expected _wxListCtrl_p."); | |
2006 | return NULL; | |
2007 | } | |
2008 | } | |
2009 | { | |
2010 | wxPy_BEGIN_ALLOW_THREADS; | |
2011 | _result = new wxString (wxListCtrl_GetItemText(_arg0,_arg1)); | |
2012 | ||
2013 | wxPy_END_ALLOW_THREADS; | |
2014 | }{ | |
2015 | _resultobj = PyString_FromString(WXSTRINGCAST *(_result)); | |
2016 | } | |
2017 | { | |
2018 | delete _result; | |
2019 | } | |
2020 | return _resultobj; | |
2021 | } | |
2022 | ||
2023 | #define wxListCtrl_GetNextItem(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->GetNextItem(_swigarg0,_swigarg1,_swigarg2)) | |
2024 | static PyObject *_wrap_wxListCtrl_GetNextItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2025 | PyObject * _resultobj; | |
2026 | long _result; | |
2027 | wxListCtrl * _arg0; | |
2028 | long _arg1; | |
2029 | int _arg2 = (int ) (wxLIST_NEXT_ALL); | |
2030 | int _arg3 = (int ) (wxLIST_STATE_DONTCARE); | |
2031 | PyObject * _argo0 = 0; | |
2032 | char *_kwnames[] = { "self","item","geometry","state", NULL }; | |
2033 | ||
2034 | self = self; | |
2035 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|ii:wxListCtrl_GetNextItem",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
2036 | return NULL; | |
2037 | if (_argo0) { | |
2038 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2039 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2040 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetNextItem. Expected _wxListCtrl_p."); | |
2041 | return NULL; | |
2042 | } | |
2043 | } | |
2044 | { | |
2045 | wxPy_BEGIN_ALLOW_THREADS; | |
2046 | _result = (long )wxListCtrl_GetNextItem(_arg0,_arg1,_arg2,_arg3); | |
2047 | ||
2048 | wxPy_END_ALLOW_THREADS; | |
2049 | } _resultobj = Py_BuildValue("l",_result); | |
2050 | return _resultobj; | |
2051 | } | |
2052 | ||
2053 | #define wxListCtrl_GetSelectedItemCount(_swigobj) (_swigobj->GetSelectedItemCount()) | |
2054 | static PyObject *_wrap_wxListCtrl_GetSelectedItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2055 | PyObject * _resultobj; | |
2056 | int _result; | |
2057 | wxListCtrl * _arg0; | |
2058 | PyObject * _argo0 = 0; | |
2059 | char *_kwnames[] = { "self", NULL }; | |
2060 | ||
2061 | self = self; | |
2062 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetSelectedItemCount",_kwnames,&_argo0)) | |
2063 | return NULL; | |
2064 | if (_argo0) { | |
2065 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2066 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2067 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetSelectedItemCount. Expected _wxListCtrl_p."); | |
2068 | return NULL; | |
2069 | } | |
2070 | } | |
2071 | { | |
2072 | wxPy_BEGIN_ALLOW_THREADS; | |
2073 | _result = (int )wxListCtrl_GetSelectedItemCount(_arg0); | |
2074 | ||
2075 | wxPy_END_ALLOW_THREADS; | |
2076 | } _resultobj = Py_BuildValue("i",_result); | |
2077 | return _resultobj; | |
2078 | } | |
2079 | ||
2080 | #define wxListCtrl_GetTopItem(_swigobj) (_swigobj->GetTopItem()) | |
2081 | static PyObject *_wrap_wxListCtrl_GetTopItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2082 | PyObject * _resultobj; | |
2083 | long _result; | |
2084 | wxListCtrl * _arg0; | |
2085 | PyObject * _argo0 = 0; | |
2086 | char *_kwnames[] = { "self", NULL }; | |
2087 | ||
2088 | self = self; | |
2089 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetTopItem",_kwnames,&_argo0)) | |
2090 | return NULL; | |
2091 | if (_argo0) { | |
2092 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2093 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2094 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetTopItem. Expected _wxListCtrl_p."); | |
2095 | return NULL; | |
2096 | } | |
2097 | } | |
2098 | { | |
2099 | wxPy_BEGIN_ALLOW_THREADS; | |
2100 | _result = (long )wxListCtrl_GetTopItem(_arg0); | |
2101 | ||
2102 | wxPy_END_ALLOW_THREADS; | |
2103 | } _resultobj = Py_BuildValue("l",_result); | |
2104 | return _resultobj; | |
2105 | } | |
2106 | ||
2107 | #define wxListCtrl_HitTest(_swigobj,_swigarg0,_swigarg1) (_swigobj->HitTest(_swigarg0,_swigarg1)) | |
2108 | static PyObject *_wrap_wxListCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2109 | PyObject * _resultobj; | |
2110 | long _result; | |
2111 | wxListCtrl * _arg0; | |
2112 | wxPoint * _arg1; | |
2113 | int * _arg2; | |
2114 | int temp; | |
2115 | PyObject * _argo0 = 0; | |
2116 | wxPoint temp0; | |
2117 | PyObject * _obj1 = 0; | |
2118 | char *_kwnames[] = { "self","point", NULL }; | |
2119 | ||
2120 | self = self; | |
2121 | { | |
2122 | _arg2 = &temp; | |
2123 | } | |
2124 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_HitTest",_kwnames,&_argo0,&_obj1)) | |
2125 | return NULL; | |
2126 | if (_argo0) { | |
2127 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2128 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_HitTest. Expected _wxListCtrl_p."); | |
2130 | return NULL; | |
2131 | } | |
2132 | } | |
2133 | { | |
2134 | _arg1 = &temp0; | |
2135 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2136 | return NULL; | |
2137 | } | |
2138 | { | |
2139 | wxPy_BEGIN_ALLOW_THREADS; | |
2140 | _result = (long )wxListCtrl_HitTest(_arg0,*_arg1,*_arg2); | |
2141 | ||
2142 | wxPy_END_ALLOW_THREADS; | |
2143 | } _resultobj = Py_BuildValue("l",_result); | |
2144 | { | |
2145 | PyObject *o; | |
2146 | o = PyInt_FromLong((long) (*_arg2)); | |
2147 | _resultobj = t_output_helper(_resultobj, o); | |
2148 | } | |
2149 | return _resultobj; | |
2150 | } | |
2151 | ||
2152 | #define wxListCtrl_InsertColumnWith(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertColumn(_swigarg0,_swigarg1)) | |
2153 | static PyObject *_wrap_wxListCtrl_InsertColumnWith(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2154 | PyObject * _resultobj; | |
2155 | long _result; | |
2156 | wxListCtrl * _arg0; | |
2157 | long _arg1; | |
2158 | wxListItem * _arg2; | |
2159 | PyObject * _argo0 = 0; | |
2160 | PyObject * _argo2 = 0; | |
2161 | char *_kwnames[] = { "self","col","info", NULL }; | |
2162 | ||
2163 | self = self; | |
2164 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_InsertColumnWith",_kwnames,&_argo0,&_arg1,&_argo2)) | |
2165 | return NULL; | |
2166 | if (_argo0) { | |
2167 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2168 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2169 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertColumnWith. Expected _wxListCtrl_p."); | |
2170 | return NULL; | |
2171 | } | |
2172 | } | |
2173 | if (_argo2) { | |
2174 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
2175 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxListItem_p")) { | |
2176 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxListCtrl_InsertColumnWith. Expected _wxListItem_p."); | |
2177 | return NULL; | |
2178 | } | |
2179 | } | |
2180 | { | |
2181 | wxPy_BEGIN_ALLOW_THREADS; | |
2182 | _result = (long )wxListCtrl_InsertColumnWith(_arg0,_arg1,*_arg2); | |
2183 | ||
2184 | wxPy_END_ALLOW_THREADS; | |
2185 | } _resultobj = Py_BuildValue("l",_result); | |
2186 | return _resultobj; | |
2187 | } | |
2188 | ||
2189 | #define wxListCtrl_InsertColumn(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->InsertColumn(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
2190 | static PyObject *_wrap_wxListCtrl_InsertColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2191 | PyObject * _resultobj; | |
2192 | long _result; | |
2193 | wxListCtrl * _arg0; | |
2194 | long _arg1; | |
2195 | wxString * _arg2; | |
2196 | int _arg3 = (int ) (wxLIST_FORMAT_LEFT); | |
2197 | int _arg4 = (int ) -1; | |
2198 | PyObject * _argo0 = 0; | |
2199 | PyObject * _obj2 = 0; | |
2200 | char *_kwnames[] = { "self","col","heading","format","width", NULL }; | |
2201 | ||
2202 | self = self; | |
2203 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO|ii:wxListCtrl_InsertColumn",_kwnames,&_argo0,&_arg1,&_obj2,&_arg3,&_arg4)) | |
2204 | return NULL; | |
2205 | if (_argo0) { | |
2206 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2207 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2208 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertColumn. Expected _wxListCtrl_p."); | |
2209 | return NULL; | |
2210 | } | |
2211 | } | |
2212 | { | |
2213 | if (!PyString_Check(_obj2)) { | |
2214 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2215 | return NULL; | |
2216 | } | |
2217 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
2218 | } | |
2219 | { | |
2220 | wxPy_BEGIN_ALLOW_THREADS; | |
2221 | _result = (long )wxListCtrl_InsertColumn(_arg0,_arg1,*_arg2,_arg3,_arg4); | |
2222 | ||
2223 | wxPy_END_ALLOW_THREADS; | |
2224 | } _resultobj = Py_BuildValue("l",_result); | |
2225 | { | |
2226 | if (_obj2) | |
2227 | delete _arg2; | |
2228 | } | |
2229 | return _resultobj; | |
2230 | } | |
2231 | ||
2232 | #define wxListCtrl_InsertItem(_swigobj,_swigarg0) (_swigobj->InsertItem(_swigarg0)) | |
2233 | static PyObject *_wrap_wxListCtrl_InsertItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2234 | PyObject * _resultobj; | |
2235 | long _result; | |
2236 | wxListCtrl * _arg0; | |
2237 | wxListItem * _arg1; | |
2238 | PyObject * _argo0 = 0; | |
2239 | PyObject * _argo1 = 0; | |
2240 | char *_kwnames[] = { "self","info", NULL }; | |
2241 | ||
2242 | self = self; | |
2243 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_InsertItem",_kwnames,&_argo0,&_argo1)) | |
2244 | return NULL; | |
2245 | if (_argo0) { | |
2246 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2247 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2248 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertItem. Expected _wxListCtrl_p."); | |
2249 | return NULL; | |
2250 | } | |
2251 | } | |
2252 | if (_argo1) { | |
2253 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2254 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxListItem_p")) { | |
2255 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_InsertItem. Expected _wxListItem_p."); | |
2256 | return NULL; | |
2257 | } | |
2258 | } | |
2259 | { | |
2260 | wxPy_BEGIN_ALLOW_THREADS; | |
2261 | _result = (long )wxListCtrl_InsertItem(_arg0,*_arg1); | |
2262 | ||
2263 | wxPy_END_ALLOW_THREADS; | |
2264 | } _resultobj = Py_BuildValue("l",_result); | |
2265 | return _resultobj; | |
2266 | } | |
2267 | ||
2268 | #define wxListCtrl_InsertStringItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertItem(_swigarg0,_swigarg1)) | |
2269 | static PyObject *_wrap_wxListCtrl_InsertStringItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2270 | PyObject * _resultobj; | |
2271 | long _result; | |
2272 | wxListCtrl * _arg0; | |
2273 | long _arg1; | |
2274 | wxString * _arg2; | |
2275 | PyObject * _argo0 = 0; | |
2276 | PyObject * _obj2 = 0; | |
2277 | char *_kwnames[] = { "self","index","label", NULL }; | |
2278 | ||
2279 | self = self; | |
2280 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_InsertStringItem",_kwnames,&_argo0,&_arg1,&_obj2)) | |
2281 | return NULL; | |
2282 | if (_argo0) { | |
2283 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2284 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2285 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertStringItem. Expected _wxListCtrl_p."); | |
2286 | return NULL; | |
2287 | } | |
2288 | } | |
2289 | { | |
2290 | if (!PyString_Check(_obj2)) { | |
2291 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2292 | return NULL; | |
2293 | } | |
2294 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
2295 | } | |
2296 | { | |
2297 | wxPy_BEGIN_ALLOW_THREADS; | |
2298 | _result = (long )wxListCtrl_InsertStringItem(_arg0,_arg1,*_arg2); | |
2299 | ||
2300 | wxPy_END_ALLOW_THREADS; | |
2301 | } _resultobj = Py_BuildValue("l",_result); | |
2302 | { | |
2303 | if (_obj2) | |
2304 | delete _arg2; | |
2305 | } | |
2306 | return _resultobj; | |
2307 | } | |
2308 | ||
2309 | #define wxListCtrl_InsertImageItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertItem(_swigarg0,_swigarg1)) | |
2310 | static PyObject *_wrap_wxListCtrl_InsertImageItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2311 | PyObject * _resultobj; | |
2312 | long _result; | |
2313 | wxListCtrl * _arg0; | |
2314 | long _arg1; | |
2315 | int _arg2; | |
2316 | PyObject * _argo0 = 0; | |
2317 | char *_kwnames[] = { "self","index","imageIndex", NULL }; | |
2318 | ||
2319 | self = self; | |
2320 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oli:wxListCtrl_InsertImageItem",_kwnames,&_argo0,&_arg1,&_arg2)) | |
2321 | return NULL; | |
2322 | if (_argo0) { | |
2323 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2324 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2325 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertImageItem. Expected _wxListCtrl_p."); | |
2326 | return NULL; | |
2327 | } | |
2328 | } | |
2329 | { | |
2330 | wxPy_BEGIN_ALLOW_THREADS; | |
2331 | _result = (long )wxListCtrl_InsertImageItem(_arg0,_arg1,_arg2); | |
2332 | ||
2333 | wxPy_END_ALLOW_THREADS; | |
2334 | } _resultobj = Py_BuildValue("l",_result); | |
2335 | return _resultobj; | |
2336 | } | |
2337 | ||
2338 | #define wxListCtrl_InsertImageStringItem(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->InsertItem(_swigarg0,_swigarg1,_swigarg2)) | |
2339 | static PyObject *_wrap_wxListCtrl_InsertImageStringItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2340 | PyObject * _resultobj; | |
2341 | long _result; | |
2342 | wxListCtrl * _arg0; | |
2343 | long _arg1; | |
2344 | wxString * _arg2; | |
2345 | int _arg3; | |
2346 | PyObject * _argo0 = 0; | |
2347 | PyObject * _obj2 = 0; | |
2348 | char *_kwnames[] = { "self","index","label","imageIndex", NULL }; | |
2349 | ||
2350 | self = self; | |
2351 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlOi:wxListCtrl_InsertImageStringItem",_kwnames,&_argo0,&_arg1,&_obj2,&_arg3)) | |
2352 | return NULL; | |
2353 | if (_argo0) { | |
2354 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2355 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2356 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertImageStringItem. Expected _wxListCtrl_p."); | |
2357 | return NULL; | |
2358 | } | |
2359 | } | |
2360 | { | |
2361 | if (!PyString_Check(_obj2)) { | |
2362 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2363 | return NULL; | |
2364 | } | |
2365 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
2366 | } | |
2367 | { | |
2368 | wxPy_BEGIN_ALLOW_THREADS; | |
2369 | _result = (long )wxListCtrl_InsertImageStringItem(_arg0,_arg1,*_arg2,_arg3); | |
2370 | ||
2371 | wxPy_END_ALLOW_THREADS; | |
2372 | } _resultobj = Py_BuildValue("l",_result); | |
2373 | { | |
2374 | if (_obj2) | |
2375 | delete _arg2; | |
2376 | } | |
2377 | return _resultobj; | |
2378 | } | |
2379 | ||
2380 | #define wxListCtrl_ScrollList(_swigobj,_swigarg0,_swigarg1) (_swigobj->ScrollList(_swigarg0,_swigarg1)) | |
2381 | static PyObject *_wrap_wxListCtrl_ScrollList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2382 | PyObject * _resultobj; | |
2383 | bool _result; | |
2384 | wxListCtrl * _arg0; | |
2385 | int _arg1; | |
2386 | int _arg2; | |
2387 | PyObject * _argo0 = 0; | |
2388 | char *_kwnames[] = { "self","dx","dy", NULL }; | |
2389 | ||
2390 | self = self; | |
2391 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxListCtrl_ScrollList",_kwnames,&_argo0,&_arg1,&_arg2)) | |
2392 | return NULL; | |
2393 | if (_argo0) { | |
2394 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2395 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2396 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_ScrollList. Expected _wxListCtrl_p."); | |
2397 | return NULL; | |
2398 | } | |
2399 | } | |
2400 | { | |
2401 | wxPy_BEGIN_ALLOW_THREADS; | |
2402 | _result = (bool )wxListCtrl_ScrollList(_arg0,_arg1,_arg2); | |
2403 | ||
2404 | wxPy_END_ALLOW_THREADS; | |
2405 | } _resultobj = Py_BuildValue("i",_result); | |
2406 | return _resultobj; | |
2407 | } | |
2408 | ||
2409 | #define wxListCtrl_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
2410 | static PyObject *_wrap_wxListCtrl_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2411 | PyObject * _resultobj; | |
2412 | wxListCtrl * _arg0; | |
2413 | wxColour * _arg1; | |
2414 | PyObject * _argo0 = 0; | |
2415 | PyObject * _argo1 = 0; | |
2416 | char *_kwnames[] = { "self","col", NULL }; | |
2417 | ||
2418 | self = self; | |
2419 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SetBackgroundColour",_kwnames,&_argo0,&_argo1)) | |
2420 | return NULL; | |
2421 | if (_argo0) { | |
2422 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2423 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2424 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetBackgroundColour. Expected _wxListCtrl_p."); | |
2425 | return NULL; | |
2426 | } | |
2427 | } | |
2428 | if (_argo1) { | |
2429 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2430 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxColour_p")) { | |
2431 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_SetBackgroundColour. Expected _wxColour_p."); | |
2432 | return NULL; | |
2433 | } | |
2434 | } | |
2435 | { | |
2436 | wxPy_BEGIN_ALLOW_THREADS; | |
2437 | wxListCtrl_SetBackgroundColour(_arg0,*_arg1); | |
2438 | ||
2439 | wxPy_END_ALLOW_THREADS; | |
2440 | } Py_INCREF(Py_None); | |
2441 | _resultobj = Py_None; | |
2442 | return _resultobj; | |
2443 | } | |
2444 | ||
2445 | #define wxListCtrl_SetColumn(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetColumn(_swigarg0,_swigarg1)) | |
2446 | static PyObject *_wrap_wxListCtrl_SetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2447 | PyObject * _resultobj; | |
2448 | bool _result; | |
2449 | wxListCtrl * _arg0; | |
2450 | int _arg1; | |
2451 | wxListItem * _arg2; | |
2452 | PyObject * _argo0 = 0; | |
2453 | PyObject * _argo2 = 0; | |
2454 | char *_kwnames[] = { "self","col","item", NULL }; | |
2455 | ||
2456 | self = self; | |
2457 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxListCtrl_SetColumn",_kwnames,&_argo0,&_arg1,&_argo2)) | |
2458 | return NULL; | |
2459 | if (_argo0) { | |
2460 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2461 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2462 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetColumn. Expected _wxListCtrl_p."); | |
2463 | return NULL; | |
2464 | } | |
2465 | } | |
2466 | if (_argo2) { | |
2467 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
2468 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxListItem_p")) { | |
2469 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxListCtrl_SetColumn. Expected _wxListItem_p."); | |
2470 | return NULL; | |
2471 | } | |
2472 | } | |
2473 | { | |
2474 | wxPy_BEGIN_ALLOW_THREADS; | |
2475 | _result = (bool )wxListCtrl_SetColumn(_arg0,_arg1,*_arg2); | |
2476 | ||
2477 | wxPy_END_ALLOW_THREADS; | |
2478 | } _resultobj = Py_BuildValue("i",_result); | |
2479 | return _resultobj; | |
2480 | } | |
2481 | ||
2482 | #define wxListCtrl_SetColumnWidth(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetColumnWidth(_swigarg0,_swigarg1)) | |
2483 | static PyObject *_wrap_wxListCtrl_SetColumnWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2484 | PyObject * _resultobj; | |
2485 | bool _result; | |
2486 | wxListCtrl * _arg0; | |
2487 | int _arg1; | |
2488 | int _arg2; | |
2489 | PyObject * _argo0 = 0; | |
2490 | char *_kwnames[] = { "self","col","width", NULL }; | |
2491 | ||
2492 | self = self; | |
2493 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxListCtrl_SetColumnWidth",_kwnames,&_argo0,&_arg1,&_arg2)) | |
2494 | return NULL; | |
2495 | if (_argo0) { | |
2496 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2497 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2498 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetColumnWidth. Expected _wxListCtrl_p."); | |
2499 | return NULL; | |
2500 | } | |
2501 | } | |
2502 | { | |
2503 | wxPy_BEGIN_ALLOW_THREADS; | |
2504 | _result = (bool )wxListCtrl_SetColumnWidth(_arg0,_arg1,_arg2); | |
2505 | ||
2506 | wxPy_END_ALLOW_THREADS; | |
2507 | } _resultobj = Py_BuildValue("i",_result); | |
2508 | return _resultobj; | |
2509 | } | |
2510 | ||
2511 | #define wxListCtrl_SetImageList(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetImageList(_swigarg0,_swigarg1)) | |
2512 | static PyObject *_wrap_wxListCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2513 | PyObject * _resultobj; | |
2514 | wxListCtrl * _arg0; | |
2515 | wxImageList * _arg1; | |
2516 | int _arg2; | |
2517 | PyObject * _argo0 = 0; | |
2518 | PyObject * _argo1 = 0; | |
2519 | char *_kwnames[] = { "self","imageList","which", NULL }; | |
2520 | ||
2521 | self = self; | |
2522 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxListCtrl_SetImageList",_kwnames,&_argo0,&_argo1,&_arg2)) | |
2523 | return NULL; | |
2524 | if (_argo0) { | |
2525 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2526 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2527 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetImageList. Expected _wxListCtrl_p."); | |
2528 | return NULL; | |
2529 | } | |
2530 | } | |
2531 | if (_argo1) { | |
2532 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2533 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
2534 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_SetImageList. Expected _wxImageList_p."); | |
2535 | return NULL; | |
2536 | } | |
2537 | } | |
2538 | { | |
2539 | wxPy_BEGIN_ALLOW_THREADS; | |
2540 | wxListCtrl_SetImageList(_arg0,_arg1,_arg2); | |
2541 | ||
2542 | wxPy_END_ALLOW_THREADS; | |
2543 | } Py_INCREF(Py_None); | |
2544 | _resultobj = Py_None; | |
2545 | return _resultobj; | |
2546 | } | |
2547 | ||
2548 | #define wxListCtrl_SetItem(_swigobj,_swigarg0) (_swigobj->SetItem(_swigarg0)) | |
2549 | static PyObject *_wrap_wxListCtrl_SetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2550 | PyObject * _resultobj; | |
2551 | bool _result; | |
2552 | wxListCtrl * _arg0; | |
2553 | wxListItem * _arg1; | |
2554 | PyObject * _argo0 = 0; | |
2555 | PyObject * _argo1 = 0; | |
2556 | char *_kwnames[] = { "self","info", NULL }; | |
2557 | ||
2558 | self = self; | |
2559 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SetItem",_kwnames,&_argo0,&_argo1)) | |
2560 | return NULL; | |
2561 | if (_argo0) { | |
2562 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2563 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2564 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItem. Expected _wxListCtrl_p."); | |
2565 | return NULL; | |
2566 | } | |
2567 | } | |
2568 | if (_argo1) { | |
2569 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2570 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxListItem_p")) { | |
2571 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_SetItem. Expected _wxListItem_p."); | |
2572 | return NULL; | |
2573 | } | |
2574 | } | |
2575 | { | |
2576 | wxPy_BEGIN_ALLOW_THREADS; | |
2577 | _result = (bool )wxListCtrl_SetItem(_arg0,*_arg1); | |
2578 | ||
2579 | wxPy_END_ALLOW_THREADS; | |
2580 | } _resultobj = Py_BuildValue("i",_result); | |
2581 | return _resultobj; | |
2582 | } | |
2583 | ||
2584 | #define wxListCtrl_SetStringItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->SetItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
2585 | static PyObject *_wrap_wxListCtrl_SetStringItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2586 | PyObject * _resultobj; | |
2587 | long _result; | |
2588 | wxListCtrl * _arg0; | |
2589 | long _arg1; | |
2590 | int _arg2; | |
2591 | wxString * _arg3; | |
2592 | int _arg4 = (int ) -1; | |
2593 | PyObject * _argo0 = 0; | |
2594 | PyObject * _obj3 = 0; | |
2595 | char *_kwnames[] = { "self","index","col","label","imageId", NULL }; | |
2596 | ||
2597 | self = self; | |
2598 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OliO|i:wxListCtrl_SetStringItem",_kwnames,&_argo0,&_arg1,&_arg2,&_obj3,&_arg4)) | |
2599 | return NULL; | |
2600 | if (_argo0) { | |
2601 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2602 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2603 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetStringItem. Expected _wxListCtrl_p."); | |
2604 | return NULL; | |
2605 | } | |
2606 | } | |
2607 | { | |
2608 | if (!PyString_Check(_obj3)) { | |
2609 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2610 | return NULL; | |
2611 | } | |
2612 | _arg3 = new wxString(PyString_AsString(_obj3), PyString_Size(_obj3)); | |
2613 | } | |
2614 | { | |
2615 | wxPy_BEGIN_ALLOW_THREADS; | |
2616 | _result = (long )wxListCtrl_SetStringItem(_arg0,_arg1,_arg2,*_arg3,_arg4); | |
2617 | ||
2618 | wxPy_END_ALLOW_THREADS; | |
2619 | } _resultobj = Py_BuildValue("l",_result); | |
2620 | { | |
2621 | if (_obj3) | |
2622 | delete _arg3; | |
2623 | } | |
2624 | return _resultobj; | |
2625 | } | |
2626 | ||
2627 | #define wxListCtrl_SetItemData(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemData(_swigarg0,_swigarg1)) | |
2628 | static PyObject *_wrap_wxListCtrl_SetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2629 | PyObject * _resultobj; | |
2630 | bool _result; | |
2631 | wxListCtrl * _arg0; | |
2632 | long _arg1; | |
2633 | long _arg2; | |
2634 | PyObject * _argo0 = 0; | |
2635 | char *_kwnames[] = { "self","item","data", NULL }; | |
2636 | ||
2637 | self = self; | |
2638 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_SetItemData",_kwnames,&_argo0,&_arg1,&_arg2)) | |
2639 | return NULL; | |
2640 | if (_argo0) { | |
2641 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2642 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2643 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemData. Expected _wxListCtrl_p."); | |
2644 | return NULL; | |
2645 | } | |
2646 | } | |
2647 | { | |
2648 | wxPy_BEGIN_ALLOW_THREADS; | |
2649 | _result = (bool )wxListCtrl_SetItemData(_arg0,_arg1,_arg2); | |
2650 | ||
2651 | wxPy_END_ALLOW_THREADS; | |
2652 | } _resultobj = Py_BuildValue("i",_result); | |
2653 | return _resultobj; | |
2654 | } | |
2655 | ||
2656 | #define wxListCtrl_SetItemImage(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetItemImage(_swigarg0,_swigarg1,_swigarg2)) | |
2657 | static PyObject *_wrap_wxListCtrl_SetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2658 | PyObject * _resultobj; | |
2659 | bool _result; | |
2660 | wxListCtrl * _arg0; | |
2661 | long _arg1; | |
2662 | int _arg2; | |
2663 | int _arg3; | |
2664 | PyObject * _argo0 = 0; | |
2665 | char *_kwnames[] = { "self","item","image","selImage", NULL }; | |
2666 | ||
2667 | self = self; | |
2668 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Olii:wxListCtrl_SetItemImage",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
2669 | return NULL; | |
2670 | if (_argo0) { | |
2671 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2672 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2673 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemImage. Expected _wxListCtrl_p."); | |
2674 | return NULL; | |
2675 | } | |
2676 | } | |
2677 | { | |
2678 | wxPy_BEGIN_ALLOW_THREADS; | |
2679 | _result = (bool )wxListCtrl_SetItemImage(_arg0,_arg1,_arg2,_arg3); | |
2680 | ||
2681 | wxPy_END_ALLOW_THREADS; | |
2682 | } _resultobj = Py_BuildValue("i",_result); | |
2683 | return _resultobj; | |
2684 | } | |
2685 | ||
2686 | #define wxListCtrl_SetItemPosition(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemPosition(_swigarg0,_swigarg1)) | |
2687 | static PyObject *_wrap_wxListCtrl_SetItemPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2688 | PyObject * _resultobj; | |
2689 | bool _result; | |
2690 | wxListCtrl * _arg0; | |
2691 | long _arg1; | |
2692 | wxPoint * _arg2; | |
2693 | PyObject * _argo0 = 0; | |
2694 | wxPoint temp; | |
2695 | PyObject * _obj2 = 0; | |
2696 | char *_kwnames[] = { "self","item","pos", NULL }; | |
2697 | ||
2698 | self = self; | |
2699 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_SetItemPosition",_kwnames,&_argo0,&_arg1,&_obj2)) | |
2700 | return NULL; | |
2701 | if (_argo0) { | |
2702 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2703 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2704 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemPosition. Expected _wxListCtrl_p."); | |
2705 | return NULL; | |
2706 | } | |
2707 | } | |
2708 | { | |
2709 | _arg2 = &temp; | |
2710 | if (! wxPoint_helper(_obj2, &_arg2)) | |
2711 | return NULL; | |
2712 | } | |
2713 | { | |
2714 | wxPy_BEGIN_ALLOW_THREADS; | |
2715 | _result = (bool )wxListCtrl_SetItemPosition(_arg0,_arg1,*_arg2); | |
2716 | ||
2717 | wxPy_END_ALLOW_THREADS; | |
2718 | } _resultobj = Py_BuildValue("i",_result); | |
2719 | return _resultobj; | |
2720 | } | |
2721 | ||
2722 | #define wxListCtrl_SetItemState(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetItemState(_swigarg0,_swigarg1,_swigarg2)) | |
2723 | static PyObject *_wrap_wxListCtrl_SetItemState(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2724 | PyObject * _resultobj; | |
2725 | bool _result; | |
2726 | wxListCtrl * _arg0; | |
2727 | long _arg1; | |
2728 | long _arg2; | |
2729 | long _arg3; | |
2730 | PyObject * _argo0 = 0; | |
2731 | char *_kwnames[] = { "self","item","state","stateMask", NULL }; | |
2732 | ||
2733 | self = self; | |
2734 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Olll:wxListCtrl_SetItemState",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
2735 | return NULL; | |
2736 | if (_argo0) { | |
2737 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2738 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2739 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemState. Expected _wxListCtrl_p."); | |
2740 | return NULL; | |
2741 | } | |
2742 | } | |
2743 | { | |
2744 | wxPy_BEGIN_ALLOW_THREADS; | |
2745 | _result = (bool )wxListCtrl_SetItemState(_arg0,_arg1,_arg2,_arg3); | |
2746 | ||
2747 | wxPy_END_ALLOW_THREADS; | |
2748 | } _resultobj = Py_BuildValue("i",_result); | |
2749 | return _resultobj; | |
2750 | } | |
2751 | ||
2752 | #define wxListCtrl_SetItemText(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemText(_swigarg0,_swigarg1)) | |
2753 | static PyObject *_wrap_wxListCtrl_SetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2754 | PyObject * _resultobj; | |
2755 | wxListCtrl * _arg0; | |
2756 | long _arg1; | |
2757 | wxString * _arg2; | |
2758 | PyObject * _argo0 = 0; | |
2759 | PyObject * _obj2 = 0; | |
2760 | char *_kwnames[] = { "self","item","text", NULL }; | |
2761 | ||
2762 | self = self; | |
2763 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_SetItemText",_kwnames,&_argo0,&_arg1,&_obj2)) | |
2764 | return NULL; | |
2765 | if (_argo0) { | |
2766 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2767 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2768 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemText. Expected _wxListCtrl_p."); | |
2769 | return NULL; | |
2770 | } | |
2771 | } | |
2772 | { | |
2773 | if (!PyString_Check(_obj2)) { | |
2774 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
2775 | return NULL; | |
2776 | } | |
2777 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
2778 | } | |
2779 | { | |
2780 | wxPy_BEGIN_ALLOW_THREADS; | |
2781 | wxListCtrl_SetItemText(_arg0,_arg1,*_arg2); | |
2782 | ||
2783 | wxPy_END_ALLOW_THREADS; | |
2784 | } Py_INCREF(Py_None); | |
2785 | _resultobj = Py_None; | |
2786 | { | |
2787 | if (_obj2) | |
2788 | delete _arg2; | |
2789 | } | |
2790 | return _resultobj; | |
2791 | } | |
2792 | ||
2793 | #define wxListCtrl_SetSingleStyle(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetSingleStyle(_swigarg0,_swigarg1)) | |
2794 | static PyObject *_wrap_wxListCtrl_SetSingleStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2795 | PyObject * _resultobj; | |
2796 | wxListCtrl * _arg0; | |
2797 | long _arg1; | |
2798 | bool _arg2 = (bool ) TRUE; | |
2799 | PyObject * _argo0 = 0; | |
2800 | int tempbool2 = (int) TRUE; | |
2801 | char *_kwnames[] = { "self","style","add", NULL }; | |
2802 | ||
2803 | self = self; | |
2804 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListCtrl_SetSingleStyle",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
2805 | return NULL; | |
2806 | if (_argo0) { | |
2807 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2808 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2809 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetSingleStyle. Expected _wxListCtrl_p."); | |
2810 | return NULL; | |
2811 | } | |
2812 | } | |
2813 | _arg2 = (bool ) tempbool2; | |
2814 | { | |
2815 | wxPy_BEGIN_ALLOW_THREADS; | |
2816 | wxListCtrl_SetSingleStyle(_arg0,_arg1,_arg2); | |
2817 | ||
2818 | wxPy_END_ALLOW_THREADS; | |
2819 | } Py_INCREF(Py_None); | |
2820 | _resultobj = Py_None; | |
2821 | return _resultobj; | |
2822 | } | |
2823 | ||
2824 | #define wxListCtrl_SetWindowStyleFlag(_swigobj,_swigarg0) (_swigobj->SetWindowStyleFlag(_swigarg0)) | |
2825 | static PyObject *_wrap_wxListCtrl_SetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2826 | PyObject * _resultobj; | |
2827 | wxListCtrl * _arg0; | |
2828 | long _arg1; | |
2829 | PyObject * _argo0 = 0; | |
2830 | char *_kwnames[] = { "self","style", NULL }; | |
2831 | ||
2832 | self = self; | |
2833 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_SetWindowStyleFlag",_kwnames,&_argo0,&_arg1)) | |
2834 | return NULL; | |
2835 | if (_argo0) { | |
2836 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2837 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListCtrl_p")) { | |
2838 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetWindowStyleFlag. Expected _wxListCtrl_p."); | |
2839 | return NULL; | |
2840 | } | |
2841 | } | |
2842 | { | |
2843 | wxPy_BEGIN_ALLOW_THREADS; | |
2844 | wxListCtrl_SetWindowStyleFlag(_arg0,_arg1); | |
2845 | ||
2846 | wxPy_END_ALLOW_THREADS; | |
2847 | } Py_INCREF(Py_None); | |
2848 | _resultobj = Py_None; | |
2849 | return _resultobj; | |
2850 | } | |
2851 | ||
2852 | #define new_wxTreeItemId() (new wxTreeItemId()) | |
2853 | static PyObject *_wrap_new_wxTreeItemId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2854 | PyObject * _resultobj; | |
2855 | wxTreeItemId * _result; | |
2856 | char *_kwnames[] = { NULL }; | |
2857 | char _ptemp[128]; | |
2858 | ||
2859 | self = self; | |
2860 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxTreeItemId",_kwnames)) | |
2861 | return NULL; | |
2862 | { | |
2863 | wxPy_BEGIN_ALLOW_THREADS; | |
2864 | _result = (wxTreeItemId *)new_wxTreeItemId(); | |
2865 | ||
2866 | wxPy_END_ALLOW_THREADS; | |
2867 | } if (_result) { | |
2868 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeItemId_p"); | |
2869 | _resultobj = Py_BuildValue("s",_ptemp); | |
2870 | } else { | |
2871 | Py_INCREF(Py_None); | |
2872 | _resultobj = Py_None; | |
2873 | } | |
2874 | return _resultobj; | |
2875 | } | |
2876 | ||
2877 | #define delete_wxTreeItemId(_swigobj) (delete _swigobj) | |
2878 | static PyObject *_wrap_delete_wxTreeItemId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2879 | PyObject * _resultobj; | |
2880 | wxTreeItemId * _arg0; | |
2881 | PyObject * _argo0 = 0; | |
2882 | char *_kwnames[] = { "self", NULL }; | |
2883 | ||
2884 | self = self; | |
2885 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxTreeItemId",_kwnames,&_argo0)) | |
2886 | return NULL; | |
2887 | if (_argo0) { | |
2888 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2889 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemId_p")) { | |
2890 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxTreeItemId. Expected _wxTreeItemId_p."); | |
2891 | return NULL; | |
2892 | } | |
2893 | } | |
2894 | { | |
2895 | wxPy_BEGIN_ALLOW_THREADS; | |
2896 | delete_wxTreeItemId(_arg0); | |
2897 | ||
2898 | wxPy_END_ALLOW_THREADS; | |
2899 | } Py_INCREF(Py_None); | |
2900 | _resultobj = Py_None; | |
2901 | return _resultobj; | |
2902 | } | |
2903 | ||
2904 | #define wxTreeItemId_IsOk(_swigobj) (_swigobj->IsOk()) | |
2905 | static PyObject *_wrap_wxTreeItemId_IsOk(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2906 | PyObject * _resultobj; | |
2907 | bool _result; | |
2908 | wxTreeItemId * _arg0; | |
2909 | PyObject * _argo0 = 0; | |
2910 | char *_kwnames[] = { "self", NULL }; | |
2911 | ||
2912 | self = self; | |
2913 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemId_IsOk",_kwnames,&_argo0)) | |
2914 | return NULL; | |
2915 | if (_argo0) { | |
2916 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2917 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemId_p")) { | |
2918 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemId_IsOk. Expected _wxTreeItemId_p."); | |
2919 | return NULL; | |
2920 | } | |
2921 | } | |
2922 | { | |
2923 | wxPy_BEGIN_ALLOW_THREADS; | |
2924 | _result = (bool )wxTreeItemId_IsOk(_arg0); | |
2925 | ||
2926 | wxPy_END_ALLOW_THREADS; | |
2927 | } _resultobj = Py_BuildValue("i",_result); | |
2928 | return _resultobj; | |
2929 | } | |
2930 | ||
2931 | #define new_wxTreeItemData(_swigarg0) (new wxPyTreeItemData(_swigarg0)) | |
2932 | static PyObject *_wrap_new_wxTreeItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2933 | PyObject * _resultobj; | |
2934 | wxPyTreeItemData * _result; | |
2935 | PyObject * _arg0 = (PyObject *) NULL; | |
2936 | PyObject * _obj0 = 0; | |
2937 | char *_kwnames[] = { "obj", NULL }; | |
2938 | char _ptemp[128]; | |
2939 | ||
2940 | self = self; | |
2941 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|O:new_wxTreeItemData",_kwnames,&_obj0)) | |
2942 | return NULL; | |
2943 | if (_obj0) | |
2944 | { | |
2945 | _arg0 = _obj0; | |
2946 | } | |
2947 | { | |
2948 | wxPy_BEGIN_ALLOW_THREADS; | |
2949 | _result = (wxPyTreeItemData *)new_wxTreeItemData(_arg0); | |
2950 | ||
2951 | wxPy_END_ALLOW_THREADS; | |
2952 | } if (_result) { | |
2953 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeItemData_p"); | |
2954 | _resultobj = Py_BuildValue("s",_ptemp); | |
2955 | } else { | |
2956 | Py_INCREF(Py_None); | |
2957 | _resultobj = Py_None; | |
2958 | } | |
2959 | return _resultobj; | |
2960 | } | |
2961 | ||
2962 | #define wxTreeItemData_GetData(_swigobj) (_swigobj->GetData()) | |
2963 | static PyObject *_wrap_wxTreeItemData_GetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2964 | PyObject * _resultobj; | |
2965 | PyObject * _result; | |
2966 | wxPyTreeItemData * _arg0; | |
2967 | PyObject * _argo0 = 0; | |
2968 | char *_kwnames[] = { "self", NULL }; | |
2969 | ||
2970 | self = self; | |
2971 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemData_GetData",_kwnames,&_argo0)) | |
2972 | return NULL; | |
2973 | if (_argo0) { | |
2974 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2975 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
2976 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_GetData. Expected _wxPyTreeItemData_p."); | |
2977 | return NULL; | |
2978 | } | |
2979 | } | |
2980 | { | |
2981 | wxPy_BEGIN_ALLOW_THREADS; | |
2982 | _result = (PyObject *)wxTreeItemData_GetData(_arg0); | |
2983 | ||
2984 | wxPy_END_ALLOW_THREADS; | |
2985 | }{ | |
2986 | _resultobj = _result; | |
2987 | } | |
2988 | return _resultobj; | |
2989 | } | |
2990 | ||
2991 | #define wxTreeItemData_SetData(_swigobj,_swigarg0) (_swigobj->SetData(_swigarg0)) | |
2992 | static PyObject *_wrap_wxTreeItemData_SetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2993 | PyObject * _resultobj; | |
2994 | wxPyTreeItemData * _arg0; | |
2995 | PyObject * _arg1; | |
2996 | PyObject * _argo0 = 0; | |
2997 | PyObject * _obj1 = 0; | |
2998 | char *_kwnames[] = { "self","obj", NULL }; | |
2999 | ||
3000 | self = self; | |
3001 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemData_SetData",_kwnames,&_argo0,&_obj1)) | |
3002 | return NULL; | |
3003 | if (_argo0) { | |
3004 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3005 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
3006 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_SetData. Expected _wxPyTreeItemData_p."); | |
3007 | return NULL; | |
3008 | } | |
3009 | } | |
3010 | { | |
3011 | _arg1 = _obj1; | |
3012 | } | |
3013 | { | |
3014 | wxPy_BEGIN_ALLOW_THREADS; | |
3015 | wxTreeItemData_SetData(_arg0,_arg1); | |
3016 | ||
3017 | wxPy_END_ALLOW_THREADS; | |
3018 | } Py_INCREF(Py_None); | |
3019 | _resultobj = Py_None; | |
3020 | return _resultobj; | |
3021 | } | |
3022 | ||
3023 | #define wxTreeItemData_GetId(_swigobj) (_swigobj->GetId()) | |
3024 | static PyObject *_wrap_wxTreeItemData_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3025 | PyObject * _resultobj; | |
3026 | wxTreeItemId * _result; | |
3027 | wxPyTreeItemData * _arg0; | |
3028 | PyObject * _argo0 = 0; | |
3029 | char *_kwnames[] = { "self", NULL }; | |
3030 | char _ptemp[128]; | |
3031 | ||
3032 | self = self; | |
3033 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemData_GetId",_kwnames,&_argo0)) | |
3034 | return NULL; | |
3035 | if (_argo0) { | |
3036 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3037 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
3038 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_GetId. Expected _wxPyTreeItemData_p."); | |
3039 | return NULL; | |
3040 | } | |
3041 | } | |
3042 | { | |
3043 | wxPy_BEGIN_ALLOW_THREADS; | |
3044 | const wxTreeItemId & _result_ref = wxTreeItemData_GetId(_arg0); | |
3045 | _result = (wxTreeItemId *) &_result_ref; | |
3046 | ||
3047 | wxPy_END_ALLOW_THREADS; | |
3048 | } if (_result) { | |
3049 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeItemId_p"); | |
3050 | _resultobj = Py_BuildValue("s",_ptemp); | |
3051 | } else { | |
3052 | Py_INCREF(Py_None); | |
3053 | _resultobj = Py_None; | |
3054 | } | |
3055 | return _resultobj; | |
3056 | } | |
3057 | ||
3058 | #define wxTreeItemData_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) | |
3059 | static PyObject *_wrap_wxTreeItemData_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3060 | PyObject * _resultobj; | |
3061 | wxPyTreeItemData * _arg0; | |
3062 | wxTreeItemId * _arg1; | |
3063 | PyObject * _argo0 = 0; | |
3064 | PyObject * _argo1 = 0; | |
3065 | char *_kwnames[] = { "self","id", NULL }; | |
3066 | ||
3067 | self = self; | |
3068 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemData_SetId",_kwnames,&_argo0,&_argo1)) | |
3069 | return NULL; | |
3070 | if (_argo0) { | |
3071 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3072 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
3073 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_SetId. Expected _wxPyTreeItemData_p."); | |
3074 | return NULL; | |
3075 | } | |
3076 | } | |
3077 | if (_argo1) { | |
3078 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3079 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3080 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeItemData_SetId. Expected _wxTreeItemId_p."); | |
3081 | return NULL; | |
3082 | } | |
3083 | } | |
3084 | { | |
3085 | wxPy_BEGIN_ALLOW_THREADS; | |
3086 | wxTreeItemData_SetId(_arg0,*_arg1); | |
3087 | ||
3088 | wxPy_END_ALLOW_THREADS; | |
3089 | } Py_INCREF(Py_None); | |
3090 | _resultobj = Py_None; | |
3091 | return _resultobj; | |
3092 | } | |
3093 | ||
3094 | static void *SwigwxTreeEventTowxNotifyEvent(void *ptr) { | |
3095 | wxTreeEvent *src; | |
3096 | wxNotifyEvent *dest; | |
3097 | src = (wxTreeEvent *) ptr; | |
3098 | dest = (wxNotifyEvent *) src; | |
3099 | return (void *) dest; | |
3100 | } | |
3101 | ||
3102 | static void *SwigwxTreeEventTowxCommandEvent(void *ptr) { | |
3103 | wxTreeEvent *src; | |
3104 | wxCommandEvent *dest; | |
3105 | src = (wxTreeEvent *) ptr; | |
3106 | dest = (wxCommandEvent *) src; | |
3107 | return (void *) dest; | |
3108 | } | |
3109 | ||
3110 | static void *SwigwxTreeEventTowxEvent(void *ptr) { | |
3111 | wxTreeEvent *src; | |
3112 | wxEvent *dest; | |
3113 | src = (wxTreeEvent *) ptr; | |
3114 | dest = (wxEvent *) src; | |
3115 | return (void *) dest; | |
3116 | } | |
3117 | ||
3118 | #define wxTreeEvent_GetItem(_swigobj) (_swigobj->GetItem()) | |
3119 | static PyObject *_wrap_wxTreeEvent_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3120 | PyObject * _resultobj; | |
3121 | wxTreeItemId * _result; | |
3122 | wxTreeEvent * _arg0; | |
3123 | PyObject * _argo0 = 0; | |
3124 | char *_kwnames[] = { "self", NULL }; | |
3125 | char _ptemp[128]; | |
3126 | ||
3127 | self = self; | |
3128 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetItem",_kwnames,&_argo0)) | |
3129 | return NULL; | |
3130 | if (_argo0) { | |
3131 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3132 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
3133 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetItem. Expected _wxTreeEvent_p."); | |
3134 | return NULL; | |
3135 | } | |
3136 | } | |
3137 | { | |
3138 | wxPy_BEGIN_ALLOW_THREADS; | |
3139 | _result = new wxTreeItemId (wxTreeEvent_GetItem(_arg0)); | |
3140 | ||
3141 | wxPy_END_ALLOW_THREADS; | |
3142 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
3143 | _resultobj = Py_BuildValue("s",_ptemp); | |
3144 | return _resultobj; | |
3145 | } | |
3146 | ||
3147 | #define wxTreeEvent_GetOldItem(_swigobj) (_swigobj->GetOldItem()) | |
3148 | static PyObject *_wrap_wxTreeEvent_GetOldItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3149 | PyObject * _resultobj; | |
3150 | wxTreeItemId * _result; | |
3151 | wxTreeEvent * _arg0; | |
3152 | PyObject * _argo0 = 0; | |
3153 | char *_kwnames[] = { "self", NULL }; | |
3154 | char _ptemp[128]; | |
3155 | ||
3156 | self = self; | |
3157 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetOldItem",_kwnames,&_argo0)) | |
3158 | return NULL; | |
3159 | if (_argo0) { | |
3160 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3161 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
3162 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetOldItem. Expected _wxTreeEvent_p."); | |
3163 | return NULL; | |
3164 | } | |
3165 | } | |
3166 | { | |
3167 | wxPy_BEGIN_ALLOW_THREADS; | |
3168 | _result = new wxTreeItemId (wxTreeEvent_GetOldItem(_arg0)); | |
3169 | ||
3170 | wxPy_END_ALLOW_THREADS; | |
3171 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
3172 | _resultobj = Py_BuildValue("s",_ptemp); | |
3173 | return _resultobj; | |
3174 | } | |
3175 | ||
3176 | #define wxTreeEvent_GetPoint(_swigobj) (_swigobj->GetPoint()) | |
3177 | static PyObject *_wrap_wxTreeEvent_GetPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3178 | PyObject * _resultobj; | |
3179 | wxPoint * _result; | |
3180 | wxTreeEvent * _arg0; | |
3181 | PyObject * _argo0 = 0; | |
3182 | char *_kwnames[] = { "self", NULL }; | |
3183 | char _ptemp[128]; | |
3184 | ||
3185 | self = self; | |
3186 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetPoint",_kwnames,&_argo0)) | |
3187 | return NULL; | |
3188 | if (_argo0) { | |
3189 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3190 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
3191 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetPoint. Expected _wxTreeEvent_p."); | |
3192 | return NULL; | |
3193 | } | |
3194 | } | |
3195 | { | |
3196 | wxPy_BEGIN_ALLOW_THREADS; | |
3197 | _result = new wxPoint (wxTreeEvent_GetPoint(_arg0)); | |
3198 | ||
3199 | wxPy_END_ALLOW_THREADS; | |
3200 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
3201 | _resultobj = Py_BuildValue("s",_ptemp); | |
3202 | return _resultobj; | |
3203 | } | |
3204 | ||
3205 | #define wxTreeEvent_GetCode(_swigobj) (_swigobj->GetCode()) | |
3206 | static PyObject *_wrap_wxTreeEvent_GetCode(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3207 | PyObject * _resultobj; | |
3208 | int _result; | |
3209 | wxTreeEvent * _arg0; | |
3210 | PyObject * _argo0 = 0; | |
3211 | char *_kwnames[] = { "self", NULL }; | |
3212 | ||
3213 | self = self; | |
3214 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetCode",_kwnames,&_argo0)) | |
3215 | return NULL; | |
3216 | if (_argo0) { | |
3217 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3218 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
3219 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetCode. Expected _wxTreeEvent_p."); | |
3220 | return NULL; | |
3221 | } | |
3222 | } | |
3223 | { | |
3224 | wxPy_BEGIN_ALLOW_THREADS; | |
3225 | _result = (int )wxTreeEvent_GetCode(_arg0); | |
3226 | ||
3227 | wxPy_END_ALLOW_THREADS; | |
3228 | } _resultobj = Py_BuildValue("i",_result); | |
3229 | return _resultobj; | |
3230 | } | |
3231 | ||
3232 | #define wxTreeEvent_GetLabel(_swigobj) (_swigobj->GetLabel()) | |
3233 | static PyObject *_wrap_wxTreeEvent_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3234 | PyObject * _resultobj; | |
3235 | wxString * _result; | |
3236 | wxTreeEvent * _arg0; | |
3237 | PyObject * _argo0 = 0; | |
3238 | char *_kwnames[] = { "self", NULL }; | |
3239 | ||
3240 | self = self; | |
3241 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetLabel",_kwnames,&_argo0)) | |
3242 | return NULL; | |
3243 | if (_argo0) { | |
3244 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3245 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
3246 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetLabel. Expected _wxTreeEvent_p."); | |
3247 | return NULL; | |
3248 | } | |
3249 | } | |
3250 | { | |
3251 | wxPy_BEGIN_ALLOW_THREADS; | |
3252 | const wxString & _result_ref = wxTreeEvent_GetLabel(_arg0); | |
3253 | _result = (wxString *) &_result_ref; | |
3254 | ||
3255 | wxPy_END_ALLOW_THREADS; | |
3256 | }{ | |
3257 | _resultobj = PyString_FromString(WXSTRINGCAST (*_result)); | |
3258 | } | |
3259 | return _resultobj; | |
3260 | } | |
3261 | ||
3262 | static void *SwigwxTreeCtrlTowxControl(void *ptr) { | |
3263 | wxTreeCtrl *src; | |
3264 | wxControl *dest; | |
3265 | src = (wxTreeCtrl *) ptr; | |
3266 | dest = (wxControl *) src; | |
3267 | return (void *) dest; | |
3268 | } | |
3269 | ||
3270 | static void *SwigwxTreeCtrlTowxWindow(void *ptr) { | |
3271 | wxTreeCtrl *src; | |
3272 | wxWindow *dest; | |
3273 | src = (wxTreeCtrl *) ptr; | |
3274 | dest = (wxWindow *) src; | |
3275 | return (void *) dest; | |
3276 | } | |
3277 | ||
3278 | static void *SwigwxTreeCtrlTowxEvtHandler(void *ptr) { | |
3279 | wxTreeCtrl *src; | |
3280 | wxEvtHandler *dest; | |
3281 | src = (wxTreeCtrl *) ptr; | |
3282 | dest = (wxEvtHandler *) src; | |
3283 | return (void *) dest; | |
3284 | } | |
3285 | ||
3286 | #define new_wxTreeCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxTreeCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
3287 | static PyObject *_wrap_new_wxTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3288 | PyObject * _resultobj; | |
3289 | wxTreeCtrl * _result; | |
3290 | wxWindow * _arg0; | |
3291 | wxWindowID _arg1 = (wxWindowID ) -1; | |
3292 | wxPoint * _arg2 = (wxPoint *) &wxPyDefaultPosition; | |
3293 | wxSize * _arg3 = (wxSize *) &wxPyDefaultSize; | |
3294 | long _arg4 = (long ) wxTR_HAS_BUTTONS|wxTR_LINES_AT_ROOT; | |
3295 | wxValidator * _arg5 = (wxValidator *) &wxPyDefaultValidator; | |
3296 | char * _arg6 = (char *) "wxTreeCtrl"; | |
3297 | PyObject * _argo0 = 0; | |
3298 | wxPoint temp; | |
3299 | PyObject * _obj2 = 0; | |
3300 | wxSize temp0; | |
3301 | PyObject * _obj3 = 0; | |
3302 | PyObject * _argo5 = 0; | |
3303 | char *_kwnames[] = { "parent","id","pos","size","style","validator","name", NULL }; | |
3304 | char _ptemp[128]; | |
3305 | ||
3306 | self = self; | |
3307 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOlOs:new_wxTreeCtrl",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_argo5,&_arg6)) | |
3308 | return NULL; | |
3309 | if (_argo0) { | |
3310 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3311 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
3312 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxTreeCtrl. Expected _wxWindow_p."); | |
3313 | return NULL; | |
3314 | } | |
3315 | } | |
3316 | if (_obj2) | |
3317 | { | |
3318 | _arg2 = &temp; | |
3319 | if (! wxPoint_helper(_obj2, &_arg2)) | |
3320 | return NULL; | |
3321 | } | |
3322 | if (_obj3) | |
3323 | { | |
3324 | _arg3 = &temp0; | |
3325 | if (! wxSize_helper(_obj3, &_arg3)) | |
3326 | return NULL; | |
3327 | } | |
3328 | if (_argo5) { | |
3329 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
3330 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxValidator_p")) { | |
3331 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxTreeCtrl. Expected _wxValidator_p."); | |
3332 | return NULL; | |
3333 | } | |
3334 | } | |
3335 | { | |
3336 | wxPy_BEGIN_ALLOW_THREADS; | |
3337 | _result = (wxTreeCtrl *)new_wxTreeCtrl(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5,_arg6); | |
3338 | ||
3339 | wxPy_END_ALLOW_THREADS; | |
3340 | } if (_result) { | |
3341 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeCtrl_p"); | |
3342 | _resultobj = Py_BuildValue("s",_ptemp); | |
3343 | } else { | |
3344 | Py_INCREF(Py_None); | |
3345 | _resultobj = Py_None; | |
3346 | } | |
3347 | return _resultobj; | |
3348 | } | |
3349 | ||
3350 | #define wxTreeCtrl_GetCount(_swigobj) (_swigobj->GetCount()) | |
3351 | static PyObject *_wrap_wxTreeCtrl_GetCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3352 | PyObject * _resultobj; | |
3353 | size_t _result; | |
3354 | wxTreeCtrl * _arg0; | |
3355 | PyObject * _argo0 = 0; | |
3356 | char *_kwnames[] = { "self", NULL }; | |
3357 | ||
3358 | self = self; | |
3359 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetCount",_kwnames,&_argo0)) | |
3360 | return NULL; | |
3361 | if (_argo0) { | |
3362 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3363 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3364 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetCount. Expected _wxTreeCtrl_p."); | |
3365 | return NULL; | |
3366 | } | |
3367 | } | |
3368 | { | |
3369 | wxPy_BEGIN_ALLOW_THREADS; | |
3370 | _result = (size_t )wxTreeCtrl_GetCount(_arg0); | |
3371 | ||
3372 | wxPy_END_ALLOW_THREADS; | |
3373 | } _resultobj = Py_BuildValue("i",_result); | |
3374 | return _resultobj; | |
3375 | } | |
3376 | ||
3377 | #define wxTreeCtrl_GetIndent(_swigobj) (_swigobj->GetIndent()) | |
3378 | static PyObject *_wrap_wxTreeCtrl_GetIndent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3379 | PyObject * _resultobj; | |
3380 | unsigned int _result; | |
3381 | wxTreeCtrl * _arg0; | |
3382 | PyObject * _argo0 = 0; | |
3383 | char *_kwnames[] = { "self", NULL }; | |
3384 | ||
3385 | self = self; | |
3386 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetIndent",_kwnames,&_argo0)) | |
3387 | return NULL; | |
3388 | if (_argo0) { | |
3389 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3390 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3391 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetIndent. Expected _wxTreeCtrl_p."); | |
3392 | return NULL; | |
3393 | } | |
3394 | } | |
3395 | { | |
3396 | wxPy_BEGIN_ALLOW_THREADS; | |
3397 | _result = (unsigned int )wxTreeCtrl_GetIndent(_arg0); | |
3398 | ||
3399 | wxPy_END_ALLOW_THREADS; | |
3400 | } _resultobj = Py_BuildValue("i",_result); | |
3401 | return _resultobj; | |
3402 | } | |
3403 | ||
3404 | #define wxTreeCtrl_SetIndent(_swigobj,_swigarg0) (_swigobj->SetIndent(_swigarg0)) | |
3405 | static PyObject *_wrap_wxTreeCtrl_SetIndent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3406 | PyObject * _resultobj; | |
3407 | wxTreeCtrl * _arg0; | |
3408 | unsigned int _arg1; | |
3409 | PyObject * _argo0 = 0; | |
3410 | char *_kwnames[] = { "self","indent", NULL }; | |
3411 | ||
3412 | self = self; | |
3413 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxTreeCtrl_SetIndent",_kwnames,&_argo0,&_arg1)) | |
3414 | return NULL; | |
3415 | if (_argo0) { | |
3416 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3417 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3418 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetIndent. Expected _wxTreeCtrl_p."); | |
3419 | return NULL; | |
3420 | } | |
3421 | } | |
3422 | { | |
3423 | wxPy_BEGIN_ALLOW_THREADS; | |
3424 | wxTreeCtrl_SetIndent(_arg0,_arg1); | |
3425 | ||
3426 | wxPy_END_ALLOW_THREADS; | |
3427 | } Py_INCREF(Py_None); | |
3428 | _resultobj = Py_None; | |
3429 | return _resultobj; | |
3430 | } | |
3431 | ||
3432 | #define wxTreeCtrl_GetImageList(_swigobj) (_swigobj->GetImageList()) | |
3433 | static PyObject *_wrap_wxTreeCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3434 | PyObject * _resultobj; | |
3435 | wxImageList * _result; | |
3436 | wxTreeCtrl * _arg0; | |
3437 | PyObject * _argo0 = 0; | |
3438 | char *_kwnames[] = { "self", NULL }; | |
3439 | char _ptemp[128]; | |
3440 | ||
3441 | self = self; | |
3442 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetImageList",_kwnames,&_argo0)) | |
3443 | return NULL; | |
3444 | if (_argo0) { | |
3445 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3446 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3447 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetImageList. Expected _wxTreeCtrl_p."); | |
3448 | return NULL; | |
3449 | } | |
3450 | } | |
3451 | { | |
3452 | wxPy_BEGIN_ALLOW_THREADS; | |
3453 | _result = (wxImageList *)wxTreeCtrl_GetImageList(_arg0); | |
3454 | ||
3455 | wxPy_END_ALLOW_THREADS; | |
3456 | } if (_result) { | |
3457 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImageList_p"); | |
3458 | _resultobj = Py_BuildValue("s",_ptemp); | |
3459 | } else { | |
3460 | Py_INCREF(Py_None); | |
3461 | _resultobj = Py_None; | |
3462 | } | |
3463 | return _resultobj; | |
3464 | } | |
3465 | ||
3466 | #define wxTreeCtrl_GetStateImageList(_swigobj) (_swigobj->GetStateImageList()) | |
3467 | static PyObject *_wrap_wxTreeCtrl_GetStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3468 | PyObject * _resultobj; | |
3469 | wxImageList * _result; | |
3470 | wxTreeCtrl * _arg0; | |
3471 | PyObject * _argo0 = 0; | |
3472 | char *_kwnames[] = { "self", NULL }; | |
3473 | char _ptemp[128]; | |
3474 | ||
3475 | self = self; | |
3476 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetStateImageList",_kwnames,&_argo0)) | |
3477 | return NULL; | |
3478 | if (_argo0) { | |
3479 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3480 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3481 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetStateImageList. Expected _wxTreeCtrl_p."); | |
3482 | return NULL; | |
3483 | } | |
3484 | } | |
3485 | { | |
3486 | wxPy_BEGIN_ALLOW_THREADS; | |
3487 | _result = (wxImageList *)wxTreeCtrl_GetStateImageList(_arg0); | |
3488 | ||
3489 | wxPy_END_ALLOW_THREADS; | |
3490 | } if (_result) { | |
3491 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxImageList_p"); | |
3492 | _resultobj = Py_BuildValue("s",_ptemp); | |
3493 | } else { | |
3494 | Py_INCREF(Py_None); | |
3495 | _resultobj = Py_None; | |
3496 | } | |
3497 | return _resultobj; | |
3498 | } | |
3499 | ||
3500 | #define wxTreeCtrl_SetImageList(_swigobj,_swigarg0) (_swigobj->SetImageList(_swigarg0)) | |
3501 | static PyObject *_wrap_wxTreeCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3502 | PyObject * _resultobj; | |
3503 | wxTreeCtrl * _arg0; | |
3504 | wxImageList * _arg1; | |
3505 | PyObject * _argo0 = 0; | |
3506 | PyObject * _argo1 = 0; | |
3507 | char *_kwnames[] = { "self","imageList", NULL }; | |
3508 | ||
3509 | self = self; | |
3510 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SetImageList",_kwnames,&_argo0,&_argo1)) | |
3511 | return NULL; | |
3512 | if (_argo0) { | |
3513 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3514 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3515 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetImageList. Expected _wxTreeCtrl_p."); | |
3516 | return NULL; | |
3517 | } | |
3518 | } | |
3519 | if (_argo1) { | |
3520 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3521 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
3522 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetImageList. Expected _wxImageList_p."); | |
3523 | return NULL; | |
3524 | } | |
3525 | } | |
3526 | { | |
3527 | wxPy_BEGIN_ALLOW_THREADS; | |
3528 | wxTreeCtrl_SetImageList(_arg0,_arg1); | |
3529 | ||
3530 | wxPy_END_ALLOW_THREADS; | |
3531 | } Py_INCREF(Py_None); | |
3532 | _resultobj = Py_None; | |
3533 | return _resultobj; | |
3534 | } | |
3535 | ||
3536 | #define wxTreeCtrl_SetStateImageList(_swigobj,_swigarg0) (_swigobj->SetStateImageList(_swigarg0)) | |
3537 | static PyObject *_wrap_wxTreeCtrl_SetStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3538 | PyObject * _resultobj; | |
3539 | wxTreeCtrl * _arg0; | |
3540 | wxImageList * _arg1; | |
3541 | PyObject * _argo0 = 0; | |
3542 | PyObject * _argo1 = 0; | |
3543 | char *_kwnames[] = { "self","imageList", NULL }; | |
3544 | ||
3545 | self = self; | |
3546 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SetStateImageList",_kwnames,&_argo0,&_argo1)) | |
3547 | return NULL; | |
3548 | if (_argo0) { | |
3549 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3550 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3551 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetStateImageList. Expected _wxTreeCtrl_p."); | |
3552 | return NULL; | |
3553 | } | |
3554 | } | |
3555 | if (_argo1) { | |
3556 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3557 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
3558 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetStateImageList. Expected _wxImageList_p."); | |
3559 | return NULL; | |
3560 | } | |
3561 | } | |
3562 | { | |
3563 | wxPy_BEGIN_ALLOW_THREADS; | |
3564 | wxTreeCtrl_SetStateImageList(_arg0,_arg1); | |
3565 | ||
3566 | wxPy_END_ALLOW_THREADS; | |
3567 | } Py_INCREF(Py_None); | |
3568 | _resultobj = Py_None; | |
3569 | return _resultobj; | |
3570 | } | |
3571 | ||
3572 | #define wxTreeCtrl_GetSpacing(_swigobj) (_swigobj->GetSpacing()) | |
3573 | static PyObject *_wrap_wxTreeCtrl_GetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3574 | PyObject * _resultobj; | |
3575 | unsigned int _result; | |
3576 | wxTreeCtrl * _arg0; | |
3577 | PyObject * _argo0 = 0; | |
3578 | char *_kwnames[] = { "self", NULL }; | |
3579 | ||
3580 | self = self; | |
3581 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSpacing",_kwnames,&_argo0)) | |
3582 | return NULL; | |
3583 | if (_argo0) { | |
3584 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3585 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3586 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSpacing. Expected _wxTreeCtrl_p."); | |
3587 | return NULL; | |
3588 | } | |
3589 | } | |
3590 | { | |
3591 | wxPy_BEGIN_ALLOW_THREADS; | |
3592 | _result = (unsigned int )wxTreeCtrl_GetSpacing(_arg0); | |
3593 | ||
3594 | wxPy_END_ALLOW_THREADS; | |
3595 | } _resultobj = Py_BuildValue("i",_result); | |
3596 | return _resultobj; | |
3597 | } | |
3598 | ||
3599 | #define wxTreeCtrl_SetSpacing(_swigobj,_swigarg0) (_swigobj->SetSpacing(_swigarg0)) | |
3600 | static PyObject *_wrap_wxTreeCtrl_SetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3601 | PyObject * _resultobj; | |
3602 | wxTreeCtrl * _arg0; | |
3603 | unsigned int _arg1; | |
3604 | PyObject * _argo0 = 0; | |
3605 | char *_kwnames[] = { "self","spacing", NULL }; | |
3606 | ||
3607 | self = self; | |
3608 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxTreeCtrl_SetSpacing",_kwnames,&_argo0,&_arg1)) | |
3609 | return NULL; | |
3610 | if (_argo0) { | |
3611 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3612 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3613 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetSpacing. Expected _wxTreeCtrl_p."); | |
3614 | return NULL; | |
3615 | } | |
3616 | } | |
3617 | { | |
3618 | wxPy_BEGIN_ALLOW_THREADS; | |
3619 | wxTreeCtrl_SetSpacing(_arg0,_arg1); | |
3620 | ||
3621 | wxPy_END_ALLOW_THREADS; | |
3622 | } Py_INCREF(Py_None); | |
3623 | _resultobj = Py_None; | |
3624 | return _resultobj; | |
3625 | } | |
3626 | ||
3627 | #define wxTreeCtrl_GetItemText(_swigobj,_swigarg0) (_swigobj->GetItemText(_swigarg0)) | |
3628 | static PyObject *_wrap_wxTreeCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3629 | PyObject * _resultobj; | |
3630 | wxString * _result; | |
3631 | wxTreeCtrl * _arg0; | |
3632 | wxTreeItemId * _arg1; | |
3633 | PyObject * _argo0 = 0; | |
3634 | PyObject * _argo1 = 0; | |
3635 | char *_kwnames[] = { "self","item", NULL }; | |
3636 | ||
3637 | self = self; | |
3638 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemText",_kwnames,&_argo0,&_argo1)) | |
3639 | return NULL; | |
3640 | if (_argo0) { | |
3641 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3642 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3643 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemText. Expected _wxTreeCtrl_p."); | |
3644 | return NULL; | |
3645 | } | |
3646 | } | |
3647 | if (_argo1) { | |
3648 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3649 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3650 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemText. Expected _wxTreeItemId_p."); | |
3651 | return NULL; | |
3652 | } | |
3653 | } | |
3654 | { | |
3655 | wxPy_BEGIN_ALLOW_THREADS; | |
3656 | _result = new wxString (wxTreeCtrl_GetItemText(_arg0,*_arg1)); | |
3657 | ||
3658 | wxPy_END_ALLOW_THREADS; | |
3659 | }{ | |
3660 | _resultobj = PyString_FromString(WXSTRINGCAST *(_result)); | |
3661 | } | |
3662 | { | |
3663 | delete _result; | |
3664 | } | |
3665 | return _resultobj; | |
3666 | } | |
3667 | ||
3668 | #define wxTreeCtrl_GetItemImage(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetItemImage(_swigarg0,_swigarg1)) | |
3669 | static PyObject *_wrap_wxTreeCtrl_GetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3670 | PyObject * _resultobj; | |
3671 | int _result; | |
3672 | wxTreeCtrl * _arg0; | |
3673 | wxTreeItemId * _arg1; | |
3674 | wxTreeItemIcon _arg2 = (wxTreeItemIcon ) (wxTreeItemIcon_Normal); | |
3675 | PyObject * _argo0 = 0; | |
3676 | PyObject * _argo1 = 0; | |
3677 | char *_kwnames[] = { "self","item","which", NULL }; | |
3678 | ||
3679 | self = self; | |
3680 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_GetItemImage",_kwnames,&_argo0,&_argo1,&_arg2)) | |
3681 | return NULL; | |
3682 | if (_argo0) { | |
3683 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3684 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3685 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemImage. Expected _wxTreeCtrl_p."); | |
3686 | return NULL; | |
3687 | } | |
3688 | } | |
3689 | if (_argo1) { | |
3690 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3691 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3692 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemImage. Expected _wxTreeItemId_p."); | |
3693 | return NULL; | |
3694 | } | |
3695 | } | |
3696 | { | |
3697 | wxPy_BEGIN_ALLOW_THREADS; | |
3698 | _result = (int )wxTreeCtrl_GetItemImage(_arg0,*_arg1,_arg2); | |
3699 | ||
3700 | wxPy_END_ALLOW_THREADS; | |
3701 | } _resultobj = Py_BuildValue("i",_result); | |
3702 | return _resultobj; | |
3703 | } | |
3704 | ||
3705 | #define wxTreeCtrl_GetItemSelectedImage(_swigobj,_swigarg0) (_swigobj->GetItemSelectedImage(_swigarg0)) | |
3706 | static PyObject *_wrap_wxTreeCtrl_GetItemSelectedImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3707 | PyObject * _resultobj; | |
3708 | int _result; | |
3709 | wxTreeCtrl * _arg0; | |
3710 | wxTreeItemId * _arg1; | |
3711 | PyObject * _argo0 = 0; | |
3712 | PyObject * _argo1 = 0; | |
3713 | char *_kwnames[] = { "self","item", NULL }; | |
3714 | ||
3715 | self = self; | |
3716 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemSelectedImage",_kwnames,&_argo0,&_argo1)) | |
3717 | return NULL; | |
3718 | if (_argo0) { | |
3719 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3720 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3721 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemSelectedImage. Expected _wxTreeCtrl_p."); | |
3722 | return NULL; | |
3723 | } | |
3724 | } | |
3725 | if (_argo1) { | |
3726 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3727 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3728 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemSelectedImage. Expected _wxTreeItemId_p."); | |
3729 | return NULL; | |
3730 | } | |
3731 | } | |
3732 | { | |
3733 | wxPy_BEGIN_ALLOW_THREADS; | |
3734 | _result = (int )wxTreeCtrl_GetItemSelectedImage(_arg0,*_arg1); | |
3735 | ||
3736 | wxPy_END_ALLOW_THREADS; | |
3737 | } _resultobj = Py_BuildValue("i",_result); | |
3738 | return _resultobj; | |
3739 | } | |
3740 | ||
3741 | #define wxTreeCtrl_SetItemText(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemText(_swigarg0,_swigarg1)) | |
3742 | static PyObject *_wrap_wxTreeCtrl_SetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3743 | PyObject * _resultobj; | |
3744 | wxTreeCtrl * _arg0; | |
3745 | wxTreeItemId * _arg1; | |
3746 | wxString * _arg2; | |
3747 | PyObject * _argo0 = 0; | |
3748 | PyObject * _argo1 = 0; | |
3749 | PyObject * _obj2 = 0; | |
3750 | char *_kwnames[] = { "self","item","text", NULL }; | |
3751 | ||
3752 | self = self; | |
3753 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemText",_kwnames,&_argo0,&_argo1,&_obj2)) | |
3754 | return NULL; | |
3755 | if (_argo0) { | |
3756 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3757 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3758 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemText. Expected _wxTreeCtrl_p."); | |
3759 | return NULL; | |
3760 | } | |
3761 | } | |
3762 | if (_argo1) { | |
3763 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3764 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3765 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemText. Expected _wxTreeItemId_p."); | |
3766 | return NULL; | |
3767 | } | |
3768 | } | |
3769 | { | |
3770 | if (!PyString_Check(_obj2)) { | |
3771 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3772 | return NULL; | |
3773 | } | |
3774 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
3775 | } | |
3776 | { | |
3777 | wxPy_BEGIN_ALLOW_THREADS; | |
3778 | wxTreeCtrl_SetItemText(_arg0,*_arg1,*_arg2); | |
3779 | ||
3780 | wxPy_END_ALLOW_THREADS; | |
3781 | } Py_INCREF(Py_None); | |
3782 | _resultobj = Py_None; | |
3783 | { | |
3784 | if (_obj2) | |
3785 | delete _arg2; | |
3786 | } | |
3787 | return _resultobj; | |
3788 | } | |
3789 | ||
3790 | #define wxTreeCtrl_SetItemImage(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetItemImage(_swigarg0,_swigarg1,_swigarg2)) | |
3791 | static PyObject *_wrap_wxTreeCtrl_SetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3792 | PyObject * _resultobj; | |
3793 | wxTreeCtrl * _arg0; | |
3794 | wxTreeItemId * _arg1; | |
3795 | int _arg2; | |
3796 | wxTreeItemIcon _arg3 = (wxTreeItemIcon ) (wxTreeItemIcon_Normal); | |
3797 | PyObject * _argo0 = 0; | |
3798 | PyObject * _argo1 = 0; | |
3799 | char *_kwnames[] = { "self","item","image","which", NULL }; | |
3800 | ||
3801 | self = self; | |
3802 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|i:wxTreeCtrl_SetItemImage",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) | |
3803 | return NULL; | |
3804 | if (_argo0) { | |
3805 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3806 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3807 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemImage. Expected _wxTreeCtrl_p."); | |
3808 | return NULL; | |
3809 | } | |
3810 | } | |
3811 | if (_argo1) { | |
3812 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3813 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3814 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemImage. Expected _wxTreeItemId_p."); | |
3815 | return NULL; | |
3816 | } | |
3817 | } | |
3818 | { | |
3819 | wxPy_BEGIN_ALLOW_THREADS; | |
3820 | wxTreeCtrl_SetItemImage(_arg0,*_arg1,_arg2,_arg3); | |
3821 | ||
3822 | wxPy_END_ALLOW_THREADS; | |
3823 | } Py_INCREF(Py_None); | |
3824 | _resultobj = Py_None; | |
3825 | return _resultobj; | |
3826 | } | |
3827 | ||
3828 | #define wxTreeCtrl_SetItemSelectedImage(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemSelectedImage(_swigarg0,_swigarg1)) | |
3829 | static PyObject *_wrap_wxTreeCtrl_SetItemSelectedImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3830 | PyObject * _resultobj; | |
3831 | wxTreeCtrl * _arg0; | |
3832 | wxTreeItemId * _arg1; | |
3833 | int _arg2; | |
3834 | PyObject * _argo0 = 0; | |
3835 | PyObject * _argo1 = 0; | |
3836 | char *_kwnames[] = { "self","item","image", NULL }; | |
3837 | ||
3838 | self = self; | |
3839 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxTreeCtrl_SetItemSelectedImage",_kwnames,&_argo0,&_argo1,&_arg2)) | |
3840 | return NULL; | |
3841 | if (_argo0) { | |
3842 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3843 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3844 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemSelectedImage. Expected _wxTreeCtrl_p."); | |
3845 | return NULL; | |
3846 | } | |
3847 | } | |
3848 | if (_argo1) { | |
3849 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3850 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3851 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemSelectedImage. Expected _wxTreeItemId_p."); | |
3852 | return NULL; | |
3853 | } | |
3854 | } | |
3855 | { | |
3856 | wxPy_BEGIN_ALLOW_THREADS; | |
3857 | wxTreeCtrl_SetItemSelectedImage(_arg0,*_arg1,_arg2); | |
3858 | ||
3859 | wxPy_END_ALLOW_THREADS; | |
3860 | } Py_INCREF(Py_None); | |
3861 | _resultobj = Py_None; | |
3862 | return _resultobj; | |
3863 | } | |
3864 | ||
3865 | #define wxTreeCtrl_SetItemHasChildren(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemHasChildren(_swigarg0,_swigarg1)) | |
3866 | static PyObject *_wrap_wxTreeCtrl_SetItemHasChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3867 | PyObject * _resultobj; | |
3868 | wxTreeCtrl * _arg0; | |
3869 | wxTreeItemId * _arg1; | |
3870 | bool _arg2 = (bool ) TRUE; | |
3871 | PyObject * _argo0 = 0; | |
3872 | PyObject * _argo1 = 0; | |
3873 | int tempbool2 = (int) TRUE; | |
3874 | char *_kwnames[] = { "self","item","hasChildren", NULL }; | |
3875 | ||
3876 | self = self; | |
3877 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemHasChildren",_kwnames,&_argo0,&_argo1,&tempbool2)) | |
3878 | return NULL; | |
3879 | if (_argo0) { | |
3880 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3881 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3882 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemHasChildren. Expected _wxTreeCtrl_p."); | |
3883 | return NULL; | |
3884 | } | |
3885 | } | |
3886 | if (_argo1) { | |
3887 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3888 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3889 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemHasChildren. Expected _wxTreeItemId_p."); | |
3890 | return NULL; | |
3891 | } | |
3892 | } | |
3893 | _arg2 = (bool ) tempbool2; | |
3894 | { | |
3895 | wxPy_BEGIN_ALLOW_THREADS; | |
3896 | wxTreeCtrl_SetItemHasChildren(_arg0,*_arg1,_arg2); | |
3897 | ||
3898 | wxPy_END_ALLOW_THREADS; | |
3899 | } Py_INCREF(Py_None); | |
3900 | _resultobj = Py_None; | |
3901 | return _resultobj; | |
3902 | } | |
3903 | ||
3904 | static wxPyTreeItemData * wxTreeCtrl_GetItemData(wxTreeCtrl *self,const wxTreeItemId & item) { | |
3905 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
3906 | if (data == NULL) { | |
3907 | data = new wxPyTreeItemData(); | |
3908 | self->SetItemData(item, data); | |
3909 | } | |
3910 | return data; | |
3911 | } | |
3912 | static PyObject *_wrap_wxTreeCtrl_GetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3913 | PyObject * _resultobj; | |
3914 | wxPyTreeItemData * _result; | |
3915 | wxTreeCtrl * _arg0; | |
3916 | wxTreeItemId * _arg1; | |
3917 | PyObject * _argo0 = 0; | |
3918 | PyObject * _argo1 = 0; | |
3919 | char *_kwnames[] = { "self","item", NULL }; | |
3920 | char _ptemp[128]; | |
3921 | ||
3922 | self = self; | |
3923 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemData",_kwnames,&_argo0,&_argo1)) | |
3924 | return NULL; | |
3925 | if (_argo0) { | |
3926 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3927 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3928 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemData. Expected _wxTreeCtrl_p."); | |
3929 | return NULL; | |
3930 | } | |
3931 | } | |
3932 | if (_argo1) { | |
3933 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3934 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3935 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemData. Expected _wxTreeItemId_p."); | |
3936 | return NULL; | |
3937 | } | |
3938 | } | |
3939 | { | |
3940 | wxPy_BEGIN_ALLOW_THREADS; | |
3941 | _result = (wxPyTreeItemData *)wxTreeCtrl_GetItemData(_arg0,*_arg1); | |
3942 | ||
3943 | wxPy_END_ALLOW_THREADS; | |
3944 | } if (_result) { | |
3945 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeItemData_p"); | |
3946 | _resultobj = Py_BuildValue("s",_ptemp); | |
3947 | } else { | |
3948 | Py_INCREF(Py_None); | |
3949 | _resultobj = Py_None; | |
3950 | } | |
3951 | return _resultobj; | |
3952 | } | |
3953 | ||
3954 | static void wxTreeCtrl_SetItemData(wxTreeCtrl *self,const wxTreeItemId & item,wxPyTreeItemData * data) { | |
3955 | self->SetItemData(item, data); | |
3956 | } | |
3957 | static PyObject *_wrap_wxTreeCtrl_SetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3958 | PyObject * _resultobj; | |
3959 | wxTreeCtrl * _arg0; | |
3960 | wxTreeItemId * _arg1; | |
3961 | wxPyTreeItemData * _arg2; | |
3962 | PyObject * _argo0 = 0; | |
3963 | PyObject * _argo1 = 0; | |
3964 | PyObject * _argo2 = 0; | |
3965 | char *_kwnames[] = { "self","item","data", NULL }; | |
3966 | ||
3967 | self = self; | |
3968 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemData",_kwnames,&_argo0,&_argo1,&_argo2)) | |
3969 | return NULL; | |
3970 | if (_argo0) { | |
3971 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3972 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
3973 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemData. Expected _wxTreeCtrl_p."); | |
3974 | return NULL; | |
3975 | } | |
3976 | } | |
3977 | if (_argo1) { | |
3978 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3979 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
3980 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemData. Expected _wxTreeItemId_p."); | |
3981 | return NULL; | |
3982 | } | |
3983 | } | |
3984 | if (_argo2) { | |
3985 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3986 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxPyTreeItemData_p")) { | |
3987 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxTreeCtrl_SetItemData. Expected _wxPyTreeItemData_p."); | |
3988 | return NULL; | |
3989 | } | |
3990 | } | |
3991 | { | |
3992 | wxPy_BEGIN_ALLOW_THREADS; | |
3993 | wxTreeCtrl_SetItemData(_arg0,*_arg1,_arg2); | |
3994 | ||
3995 | wxPy_END_ALLOW_THREADS; | |
3996 | } Py_INCREF(Py_None); | |
3997 | _resultobj = Py_None; | |
3998 | return _resultobj; | |
3999 | } | |
4000 | ||
4001 | static PyObject * wxTreeCtrl_GetPyData(wxTreeCtrl *self,const wxTreeItemId & item) { | |
4002 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
4003 | if (data == NULL) { | |
4004 | data = new wxPyTreeItemData(); | |
4005 | self->SetItemData(item, data); | |
4006 | } | |
4007 | return data->GetData(); | |
4008 | } | |
4009 | static PyObject *_wrap_wxTreeCtrl_GetPyData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4010 | PyObject * _resultobj; | |
4011 | PyObject * _result; | |
4012 | wxTreeCtrl * _arg0; | |
4013 | wxTreeItemId * _arg1; | |
4014 | PyObject * _argo0 = 0; | |
4015 | PyObject * _argo1 = 0; | |
4016 | char *_kwnames[] = { "self","item", NULL }; | |
4017 | ||
4018 | self = self; | |
4019 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetPyData",_kwnames,&_argo0,&_argo1)) | |
4020 | return NULL; | |
4021 | if (_argo0) { | |
4022 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4023 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4024 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetPyData. Expected _wxTreeCtrl_p."); | |
4025 | return NULL; | |
4026 | } | |
4027 | } | |
4028 | if (_argo1) { | |
4029 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4030 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4031 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetPyData. Expected _wxTreeItemId_p."); | |
4032 | return NULL; | |
4033 | } | |
4034 | } | |
4035 | { | |
4036 | wxPy_BEGIN_ALLOW_THREADS; | |
4037 | _result = (PyObject *)wxTreeCtrl_GetPyData(_arg0,*_arg1); | |
4038 | ||
4039 | wxPy_END_ALLOW_THREADS; | |
4040 | }{ | |
4041 | _resultobj = _result; | |
4042 | } | |
4043 | return _resultobj; | |
4044 | } | |
4045 | ||
4046 | static void wxTreeCtrl_SetPyData(wxTreeCtrl *self,const wxTreeItemId & item,PyObject * obj) { | |
4047 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
4048 | if (data == NULL) { | |
4049 | data = new wxPyTreeItemData(obj); | |
4050 | self->SetItemData(item, data); | |
4051 | } else | |
4052 | data->SetData(obj); | |
4053 | } | |
4054 | static PyObject *_wrap_wxTreeCtrl_SetPyData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4055 | PyObject * _resultobj; | |
4056 | wxTreeCtrl * _arg0; | |
4057 | wxTreeItemId * _arg1; | |
4058 | PyObject * _arg2; | |
4059 | PyObject * _argo0 = 0; | |
4060 | PyObject * _argo1 = 0; | |
4061 | PyObject * _obj2 = 0; | |
4062 | char *_kwnames[] = { "self","item","obj", NULL }; | |
4063 | ||
4064 | self = self; | |
4065 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetPyData",_kwnames,&_argo0,&_argo1,&_obj2)) | |
4066 | return NULL; | |
4067 | if (_argo0) { | |
4068 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4069 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4070 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetPyData. Expected _wxTreeCtrl_p."); | |
4071 | return NULL; | |
4072 | } | |
4073 | } | |
4074 | if (_argo1) { | |
4075 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4076 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4077 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetPyData. Expected _wxTreeItemId_p."); | |
4078 | return NULL; | |
4079 | } | |
4080 | } | |
4081 | { | |
4082 | _arg2 = _obj2; | |
4083 | } | |
4084 | { | |
4085 | wxPy_BEGIN_ALLOW_THREADS; | |
4086 | wxTreeCtrl_SetPyData(_arg0,*_arg1,_arg2); | |
4087 | ||
4088 | wxPy_END_ALLOW_THREADS; | |
4089 | } Py_INCREF(Py_None); | |
4090 | _resultobj = Py_None; | |
4091 | return _resultobj; | |
4092 | } | |
4093 | ||
4094 | #define wxTreeCtrl_IsVisible(_swigobj,_swigarg0) (_swigobj->IsVisible(_swigarg0)) | |
4095 | static PyObject *_wrap_wxTreeCtrl_IsVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4096 | PyObject * _resultobj; | |
4097 | bool _result; | |
4098 | wxTreeCtrl * _arg0; | |
4099 | wxTreeItemId * _arg1; | |
4100 | PyObject * _argo0 = 0; | |
4101 | PyObject * _argo1 = 0; | |
4102 | char *_kwnames[] = { "self","item", NULL }; | |
4103 | ||
4104 | self = self; | |
4105 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsVisible",_kwnames,&_argo0,&_argo1)) | |
4106 | return NULL; | |
4107 | if (_argo0) { | |
4108 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4109 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4110 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsVisible. Expected _wxTreeCtrl_p."); | |
4111 | return NULL; | |
4112 | } | |
4113 | } | |
4114 | if (_argo1) { | |
4115 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4116 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4117 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsVisible. Expected _wxTreeItemId_p."); | |
4118 | return NULL; | |
4119 | } | |
4120 | } | |
4121 | { | |
4122 | wxPy_BEGIN_ALLOW_THREADS; | |
4123 | _result = (bool )wxTreeCtrl_IsVisible(_arg0,*_arg1); | |
4124 | ||
4125 | wxPy_END_ALLOW_THREADS; | |
4126 | } _resultobj = Py_BuildValue("i",_result); | |
4127 | return _resultobj; | |
4128 | } | |
4129 | ||
4130 | #define wxTreeCtrl_ItemHasChildren(_swigobj,_swigarg0) (_swigobj->ItemHasChildren(_swigarg0)) | |
4131 | static PyObject *_wrap_wxTreeCtrl_ItemHasChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4132 | PyObject * _resultobj; | |
4133 | bool _result; | |
4134 | wxTreeCtrl * _arg0; | |
4135 | wxTreeItemId * _arg1; | |
4136 | PyObject * _argo0 = 0; | |
4137 | PyObject * _argo1 = 0; | |
4138 | char *_kwnames[] = { "self","item", NULL }; | |
4139 | ||
4140 | self = self; | |
4141 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_ItemHasChildren",_kwnames,&_argo0,&_argo1)) | |
4142 | return NULL; | |
4143 | if (_argo0) { | |
4144 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4145 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4146 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_ItemHasChildren. Expected _wxTreeCtrl_p."); | |
4147 | return NULL; | |
4148 | } | |
4149 | } | |
4150 | if (_argo1) { | |
4151 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4152 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4153 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_ItemHasChildren. Expected _wxTreeItemId_p."); | |
4154 | return NULL; | |
4155 | } | |
4156 | } | |
4157 | { | |
4158 | wxPy_BEGIN_ALLOW_THREADS; | |
4159 | _result = (bool )wxTreeCtrl_ItemHasChildren(_arg0,*_arg1); | |
4160 | ||
4161 | wxPy_END_ALLOW_THREADS; | |
4162 | } _resultobj = Py_BuildValue("i",_result); | |
4163 | return _resultobj; | |
4164 | } | |
4165 | ||
4166 | #define wxTreeCtrl_IsExpanded(_swigobj,_swigarg0) (_swigobj->IsExpanded(_swigarg0)) | |
4167 | static PyObject *_wrap_wxTreeCtrl_IsExpanded(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4168 | PyObject * _resultobj; | |
4169 | bool _result; | |
4170 | wxTreeCtrl * _arg0; | |
4171 | wxTreeItemId * _arg1; | |
4172 | PyObject * _argo0 = 0; | |
4173 | PyObject * _argo1 = 0; | |
4174 | char *_kwnames[] = { "self","item", NULL }; | |
4175 | ||
4176 | self = self; | |
4177 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsExpanded",_kwnames,&_argo0,&_argo1)) | |
4178 | return NULL; | |
4179 | if (_argo0) { | |
4180 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4181 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4182 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsExpanded. Expected _wxTreeCtrl_p."); | |
4183 | return NULL; | |
4184 | } | |
4185 | } | |
4186 | if (_argo1) { | |
4187 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4188 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4189 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsExpanded. Expected _wxTreeItemId_p."); | |
4190 | return NULL; | |
4191 | } | |
4192 | } | |
4193 | { | |
4194 | wxPy_BEGIN_ALLOW_THREADS; | |
4195 | _result = (bool )wxTreeCtrl_IsExpanded(_arg0,*_arg1); | |
4196 | ||
4197 | wxPy_END_ALLOW_THREADS; | |
4198 | } _resultobj = Py_BuildValue("i",_result); | |
4199 | return _resultobj; | |
4200 | } | |
4201 | ||
4202 | #define wxTreeCtrl_IsSelected(_swigobj,_swigarg0) (_swigobj->IsSelected(_swigarg0)) | |
4203 | static PyObject *_wrap_wxTreeCtrl_IsSelected(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4204 | PyObject * _resultobj; | |
4205 | bool _result; | |
4206 | wxTreeCtrl * _arg0; | |
4207 | wxTreeItemId * _arg1; | |
4208 | PyObject * _argo0 = 0; | |
4209 | PyObject * _argo1 = 0; | |
4210 | char *_kwnames[] = { "self","item", NULL }; | |
4211 | ||
4212 | self = self; | |
4213 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsSelected",_kwnames,&_argo0,&_argo1)) | |
4214 | return NULL; | |
4215 | if (_argo0) { | |
4216 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4217 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4218 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsSelected. Expected _wxTreeCtrl_p."); | |
4219 | return NULL; | |
4220 | } | |
4221 | } | |
4222 | if (_argo1) { | |
4223 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4224 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4225 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsSelected. Expected _wxTreeItemId_p."); | |
4226 | return NULL; | |
4227 | } | |
4228 | } | |
4229 | { | |
4230 | wxPy_BEGIN_ALLOW_THREADS; | |
4231 | _result = (bool )wxTreeCtrl_IsSelected(_arg0,*_arg1); | |
4232 | ||
4233 | wxPy_END_ALLOW_THREADS; | |
4234 | } _resultobj = Py_BuildValue("i",_result); | |
4235 | return _resultobj; | |
4236 | } | |
4237 | ||
4238 | #define wxTreeCtrl_GetRootItem(_swigobj) (_swigobj->GetRootItem()) | |
4239 | static PyObject *_wrap_wxTreeCtrl_GetRootItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4240 | PyObject * _resultobj; | |
4241 | wxTreeItemId * _result; | |
4242 | wxTreeCtrl * _arg0; | |
4243 | PyObject * _argo0 = 0; | |
4244 | char *_kwnames[] = { "self", NULL }; | |
4245 | char _ptemp[128]; | |
4246 | ||
4247 | self = self; | |
4248 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetRootItem",_kwnames,&_argo0)) | |
4249 | return NULL; | |
4250 | if (_argo0) { | |
4251 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4252 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4253 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetRootItem. Expected _wxTreeCtrl_p."); | |
4254 | return NULL; | |
4255 | } | |
4256 | } | |
4257 | { | |
4258 | wxPy_BEGIN_ALLOW_THREADS; | |
4259 | _result = new wxTreeItemId (wxTreeCtrl_GetRootItem(_arg0)); | |
4260 | ||
4261 | wxPy_END_ALLOW_THREADS; | |
4262 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4263 | _resultobj = Py_BuildValue("s",_ptemp); | |
4264 | return _resultobj; | |
4265 | } | |
4266 | ||
4267 | #define wxTreeCtrl_GetSelection(_swigobj) (_swigobj->GetSelection()) | |
4268 | static PyObject *_wrap_wxTreeCtrl_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4269 | PyObject * _resultobj; | |
4270 | wxTreeItemId * _result; | |
4271 | wxTreeCtrl * _arg0; | |
4272 | PyObject * _argo0 = 0; | |
4273 | char *_kwnames[] = { "self", NULL }; | |
4274 | char _ptemp[128]; | |
4275 | ||
4276 | self = self; | |
4277 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSelection",_kwnames,&_argo0)) | |
4278 | return NULL; | |
4279 | if (_argo0) { | |
4280 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4281 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4282 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSelection. Expected _wxTreeCtrl_p."); | |
4283 | return NULL; | |
4284 | } | |
4285 | } | |
4286 | { | |
4287 | wxPy_BEGIN_ALLOW_THREADS; | |
4288 | _result = new wxTreeItemId (wxTreeCtrl_GetSelection(_arg0)); | |
4289 | ||
4290 | wxPy_END_ALLOW_THREADS; | |
4291 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4292 | _resultobj = Py_BuildValue("s",_ptemp); | |
4293 | return _resultobj; | |
4294 | } | |
4295 | ||
4296 | #define wxTreeCtrl_GetParent(_swigobj,_swigarg0) (_swigobj->GetParent(_swigarg0)) | |
4297 | static PyObject *_wrap_wxTreeCtrl_GetParent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4298 | PyObject * _resultobj; | |
4299 | wxTreeItemId * _result; | |
4300 | wxTreeCtrl * _arg0; | |
4301 | wxTreeItemId * _arg1; | |
4302 | PyObject * _argo0 = 0; | |
4303 | PyObject * _argo1 = 0; | |
4304 | char *_kwnames[] = { "self","item", NULL }; | |
4305 | char _ptemp[128]; | |
4306 | ||
4307 | self = self; | |
4308 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetParent",_kwnames,&_argo0,&_argo1)) | |
4309 | return NULL; | |
4310 | if (_argo0) { | |
4311 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4312 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4313 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetParent. Expected _wxTreeCtrl_p."); | |
4314 | return NULL; | |
4315 | } | |
4316 | } | |
4317 | if (_argo1) { | |
4318 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4319 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4320 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetParent. Expected _wxTreeItemId_p."); | |
4321 | return NULL; | |
4322 | } | |
4323 | } | |
4324 | { | |
4325 | wxPy_BEGIN_ALLOW_THREADS; | |
4326 | _result = new wxTreeItemId (wxTreeCtrl_GetParent(_arg0,*_arg1)); | |
4327 | ||
4328 | wxPy_END_ALLOW_THREADS; | |
4329 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4330 | _resultobj = Py_BuildValue("s",_ptemp); | |
4331 | return _resultobj; | |
4332 | } | |
4333 | ||
4334 | static PyObject * wxTreeCtrl_GetSelections(wxTreeCtrl *self) { | |
4335 | PyObject* rval = PyList_New(0); | |
4336 | wxArrayTreeItemIds array; | |
4337 | size_t num, x; | |
4338 | num = self->GetSelections(array); | |
4339 | for (x=0; x < num; x++) { | |
4340 | PyObject* item = wxPyConstructObject((void*)&array.Item(x), | |
4341 | "wxTreeItemId"); | |
4342 | PyList_Append(rval, item); | |
4343 | } | |
4344 | return rval; | |
4345 | } | |
4346 | static PyObject *_wrap_wxTreeCtrl_GetSelections(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4347 | PyObject * _resultobj; | |
4348 | PyObject * _result; | |
4349 | wxTreeCtrl * _arg0; | |
4350 | PyObject * _argo0 = 0; | |
4351 | char *_kwnames[] = { "self", NULL }; | |
4352 | ||
4353 | self = self; | |
4354 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSelections",_kwnames,&_argo0)) | |
4355 | return NULL; | |
4356 | if (_argo0) { | |
4357 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4358 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4359 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSelections. Expected _wxTreeCtrl_p."); | |
4360 | return NULL; | |
4361 | } | |
4362 | } | |
4363 | { | |
4364 | wxPy_BEGIN_ALLOW_THREADS; | |
4365 | _result = (PyObject *)wxTreeCtrl_GetSelections(_arg0); | |
4366 | ||
4367 | wxPy_END_ALLOW_THREADS; | |
4368 | }{ | |
4369 | _resultobj = _result; | |
4370 | } | |
4371 | return _resultobj; | |
4372 | } | |
4373 | ||
4374 | #define wxTreeCtrl_GetChildrenCount(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetChildrenCount(_swigarg0,_swigarg1)) | |
4375 | static PyObject *_wrap_wxTreeCtrl_GetChildrenCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4376 | PyObject * _resultobj; | |
4377 | size_t _result; | |
4378 | wxTreeCtrl * _arg0; | |
4379 | wxTreeItemId * _arg1; | |
4380 | bool _arg2 = (bool ) TRUE; | |
4381 | PyObject * _argo0 = 0; | |
4382 | PyObject * _argo1 = 0; | |
4383 | int tempbool2 = (int) TRUE; | |
4384 | char *_kwnames[] = { "self","item","recursively", NULL }; | |
4385 | ||
4386 | self = self; | |
4387 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_GetChildrenCount",_kwnames,&_argo0,&_argo1,&tempbool2)) | |
4388 | return NULL; | |
4389 | if (_argo0) { | |
4390 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4391 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4392 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetChildrenCount. Expected _wxTreeCtrl_p."); | |
4393 | return NULL; | |
4394 | } | |
4395 | } | |
4396 | if (_argo1) { | |
4397 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4398 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4399 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetChildrenCount. Expected _wxTreeItemId_p."); | |
4400 | return NULL; | |
4401 | } | |
4402 | } | |
4403 | _arg2 = (bool ) tempbool2; | |
4404 | { | |
4405 | wxPy_BEGIN_ALLOW_THREADS; | |
4406 | _result = (size_t )wxTreeCtrl_GetChildrenCount(_arg0,*_arg1,_arg2); | |
4407 | ||
4408 | wxPy_END_ALLOW_THREADS; | |
4409 | } _resultobj = Py_BuildValue("i",_result); | |
4410 | return _resultobj; | |
4411 | } | |
4412 | ||
4413 | #define wxTreeCtrl_GetFirstChild(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetFirstChild(_swigarg0,_swigarg1)) | |
4414 | static PyObject *_wrap_wxTreeCtrl_GetFirstChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4415 | PyObject * _resultobj; | |
4416 | wxTreeItemId * _result; | |
4417 | wxTreeCtrl * _arg0; | |
4418 | wxTreeItemId * _arg1; | |
4419 | long * _arg2; | |
4420 | PyObject * _argo0 = 0; | |
4421 | PyObject * _argo1 = 0; | |
4422 | long temp; | |
4423 | PyObject * _obj2 = 0; | |
4424 | char *_kwnames[] = { "self","item","INOUT", NULL }; | |
4425 | char _ptemp[128]; | |
4426 | ||
4427 | self = self; | |
4428 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_GetFirstChild",_kwnames,&_argo0,&_argo1,&_obj2)) | |
4429 | return NULL; | |
4430 | if (_argo0) { | |
4431 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4432 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4433 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetFirstChild. Expected _wxTreeCtrl_p."); | |
4434 | return NULL; | |
4435 | } | |
4436 | } | |
4437 | if (_argo1) { | |
4438 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4439 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4440 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetFirstChild. Expected _wxTreeItemId_p."); | |
4441 | return NULL; | |
4442 | } | |
4443 | } | |
4444 | { | |
4445 | temp = (long) PyInt_AsLong(_obj2); | |
4446 | _arg2 = &temp; | |
4447 | } | |
4448 | { | |
4449 | wxPy_BEGIN_ALLOW_THREADS; | |
4450 | _result = new wxTreeItemId (wxTreeCtrl_GetFirstChild(_arg0,*_arg1,*_arg2)); | |
4451 | ||
4452 | wxPy_END_ALLOW_THREADS; | |
4453 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4454 | _resultobj = Py_BuildValue("s",_ptemp); | |
4455 | { | |
4456 | PyObject *o; | |
4457 | o = PyInt_FromLong((long) (*_arg2)); | |
4458 | _resultobj = t_output_helper(_resultobj, o); | |
4459 | } | |
4460 | return _resultobj; | |
4461 | } | |
4462 | ||
4463 | #define wxTreeCtrl_GetNextChild(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetNextChild(_swigarg0,_swigarg1)) | |
4464 | static PyObject *_wrap_wxTreeCtrl_GetNextChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4465 | PyObject * _resultobj; | |
4466 | wxTreeItemId * _result; | |
4467 | wxTreeCtrl * _arg0; | |
4468 | wxTreeItemId * _arg1; | |
4469 | long * _arg2; | |
4470 | PyObject * _argo0 = 0; | |
4471 | PyObject * _argo1 = 0; | |
4472 | long temp; | |
4473 | PyObject * _obj2 = 0; | |
4474 | char *_kwnames[] = { "self","item","INOUT", NULL }; | |
4475 | char _ptemp[128]; | |
4476 | ||
4477 | self = self; | |
4478 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_GetNextChild",_kwnames,&_argo0,&_argo1,&_obj2)) | |
4479 | return NULL; | |
4480 | if (_argo0) { | |
4481 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4482 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4483 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetNextChild. Expected _wxTreeCtrl_p."); | |
4484 | return NULL; | |
4485 | } | |
4486 | } | |
4487 | if (_argo1) { | |
4488 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4489 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4490 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetNextChild. Expected _wxTreeItemId_p."); | |
4491 | return NULL; | |
4492 | } | |
4493 | } | |
4494 | { | |
4495 | temp = (long) PyInt_AsLong(_obj2); | |
4496 | _arg2 = &temp; | |
4497 | } | |
4498 | { | |
4499 | wxPy_BEGIN_ALLOW_THREADS; | |
4500 | _result = new wxTreeItemId (wxTreeCtrl_GetNextChild(_arg0,*_arg1,*_arg2)); | |
4501 | ||
4502 | wxPy_END_ALLOW_THREADS; | |
4503 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4504 | _resultobj = Py_BuildValue("s",_ptemp); | |
4505 | { | |
4506 | PyObject *o; | |
4507 | o = PyInt_FromLong((long) (*_arg2)); | |
4508 | _resultobj = t_output_helper(_resultobj, o); | |
4509 | } | |
4510 | return _resultobj; | |
4511 | } | |
4512 | ||
4513 | #define wxTreeCtrl_GetNextSibling(_swigobj,_swigarg0) (_swigobj->GetNextSibling(_swigarg0)) | |
4514 | static PyObject *_wrap_wxTreeCtrl_GetNextSibling(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4515 | PyObject * _resultobj; | |
4516 | wxTreeItemId * _result; | |
4517 | wxTreeCtrl * _arg0; | |
4518 | wxTreeItemId * _arg1; | |
4519 | PyObject * _argo0 = 0; | |
4520 | PyObject * _argo1 = 0; | |
4521 | char *_kwnames[] = { "self","item", NULL }; | |
4522 | char _ptemp[128]; | |
4523 | ||
4524 | self = self; | |
4525 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetNextSibling",_kwnames,&_argo0,&_argo1)) | |
4526 | return NULL; | |
4527 | if (_argo0) { | |
4528 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4529 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4530 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetNextSibling. Expected _wxTreeCtrl_p."); | |
4531 | return NULL; | |
4532 | } | |
4533 | } | |
4534 | if (_argo1) { | |
4535 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4536 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4537 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetNextSibling. Expected _wxTreeItemId_p."); | |
4538 | return NULL; | |
4539 | } | |
4540 | } | |
4541 | { | |
4542 | wxPy_BEGIN_ALLOW_THREADS; | |
4543 | _result = new wxTreeItemId (wxTreeCtrl_GetNextSibling(_arg0,*_arg1)); | |
4544 | ||
4545 | wxPy_END_ALLOW_THREADS; | |
4546 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4547 | _resultobj = Py_BuildValue("s",_ptemp); | |
4548 | return _resultobj; | |
4549 | } | |
4550 | ||
4551 | #define wxTreeCtrl_GetPrevSibling(_swigobj,_swigarg0) (_swigobj->GetPrevSibling(_swigarg0)) | |
4552 | static PyObject *_wrap_wxTreeCtrl_GetPrevSibling(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4553 | PyObject * _resultobj; | |
4554 | wxTreeItemId * _result; | |
4555 | wxTreeCtrl * _arg0; | |
4556 | wxTreeItemId * _arg1; | |
4557 | PyObject * _argo0 = 0; | |
4558 | PyObject * _argo1 = 0; | |
4559 | char *_kwnames[] = { "self","item", NULL }; | |
4560 | char _ptemp[128]; | |
4561 | ||
4562 | self = self; | |
4563 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetPrevSibling",_kwnames,&_argo0,&_argo1)) | |
4564 | return NULL; | |
4565 | if (_argo0) { | |
4566 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4567 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4568 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetPrevSibling. Expected _wxTreeCtrl_p."); | |
4569 | return NULL; | |
4570 | } | |
4571 | } | |
4572 | if (_argo1) { | |
4573 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4574 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4575 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetPrevSibling. Expected _wxTreeItemId_p."); | |
4576 | return NULL; | |
4577 | } | |
4578 | } | |
4579 | { | |
4580 | wxPy_BEGIN_ALLOW_THREADS; | |
4581 | _result = new wxTreeItemId (wxTreeCtrl_GetPrevSibling(_arg0,*_arg1)); | |
4582 | ||
4583 | wxPy_END_ALLOW_THREADS; | |
4584 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4585 | _resultobj = Py_BuildValue("s",_ptemp); | |
4586 | return _resultobj; | |
4587 | } | |
4588 | ||
4589 | #define wxTreeCtrl_GetFirstVisibleItem(_swigobj) (_swigobj->GetFirstVisibleItem()) | |
4590 | static PyObject *_wrap_wxTreeCtrl_GetFirstVisibleItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4591 | PyObject * _resultobj; | |
4592 | wxTreeItemId * _result; | |
4593 | wxTreeCtrl * _arg0; | |
4594 | PyObject * _argo0 = 0; | |
4595 | char *_kwnames[] = { "self", NULL }; | |
4596 | char _ptemp[128]; | |
4597 | ||
4598 | self = self; | |
4599 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetFirstVisibleItem",_kwnames,&_argo0)) | |
4600 | return NULL; | |
4601 | if (_argo0) { | |
4602 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4603 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4604 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetFirstVisibleItem. Expected _wxTreeCtrl_p."); | |
4605 | return NULL; | |
4606 | } | |
4607 | } | |
4608 | { | |
4609 | wxPy_BEGIN_ALLOW_THREADS; | |
4610 | _result = new wxTreeItemId (wxTreeCtrl_GetFirstVisibleItem(_arg0)); | |
4611 | ||
4612 | wxPy_END_ALLOW_THREADS; | |
4613 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4614 | _resultobj = Py_BuildValue("s",_ptemp); | |
4615 | return _resultobj; | |
4616 | } | |
4617 | ||
4618 | #define wxTreeCtrl_GetNextVisible(_swigobj,_swigarg0) (_swigobj->GetNextVisible(_swigarg0)) | |
4619 | static PyObject *_wrap_wxTreeCtrl_GetNextVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4620 | PyObject * _resultobj; | |
4621 | wxTreeItemId * _result; | |
4622 | wxTreeCtrl * _arg0; | |
4623 | wxTreeItemId * _arg1; | |
4624 | PyObject * _argo0 = 0; | |
4625 | PyObject * _argo1 = 0; | |
4626 | char *_kwnames[] = { "self","item", NULL }; | |
4627 | char _ptemp[128]; | |
4628 | ||
4629 | self = self; | |
4630 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetNextVisible",_kwnames,&_argo0,&_argo1)) | |
4631 | return NULL; | |
4632 | if (_argo0) { | |
4633 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4634 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4635 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetNextVisible. Expected _wxTreeCtrl_p."); | |
4636 | return NULL; | |
4637 | } | |
4638 | } | |
4639 | if (_argo1) { | |
4640 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4641 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4642 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetNextVisible. Expected _wxTreeItemId_p."); | |
4643 | return NULL; | |
4644 | } | |
4645 | } | |
4646 | { | |
4647 | wxPy_BEGIN_ALLOW_THREADS; | |
4648 | _result = new wxTreeItemId (wxTreeCtrl_GetNextVisible(_arg0,*_arg1)); | |
4649 | ||
4650 | wxPy_END_ALLOW_THREADS; | |
4651 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4652 | _resultobj = Py_BuildValue("s",_ptemp); | |
4653 | return _resultobj; | |
4654 | } | |
4655 | ||
4656 | #define wxTreeCtrl_GetPrevVisible(_swigobj,_swigarg0) (_swigobj->GetPrevVisible(_swigarg0)) | |
4657 | static PyObject *_wrap_wxTreeCtrl_GetPrevVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4658 | PyObject * _resultobj; | |
4659 | wxTreeItemId * _result; | |
4660 | wxTreeCtrl * _arg0; | |
4661 | wxTreeItemId * _arg1; | |
4662 | PyObject * _argo0 = 0; | |
4663 | PyObject * _argo1 = 0; | |
4664 | char *_kwnames[] = { "self","item", NULL }; | |
4665 | char _ptemp[128]; | |
4666 | ||
4667 | self = self; | |
4668 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetPrevVisible",_kwnames,&_argo0,&_argo1)) | |
4669 | return NULL; | |
4670 | if (_argo0) { | |
4671 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4672 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4673 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetPrevVisible. Expected _wxTreeCtrl_p."); | |
4674 | return NULL; | |
4675 | } | |
4676 | } | |
4677 | if (_argo1) { | |
4678 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4679 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4680 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetPrevVisible. Expected _wxTreeItemId_p."); | |
4681 | return NULL; | |
4682 | } | |
4683 | } | |
4684 | { | |
4685 | wxPy_BEGIN_ALLOW_THREADS; | |
4686 | _result = new wxTreeItemId (wxTreeCtrl_GetPrevVisible(_arg0,*_arg1)); | |
4687 | ||
4688 | wxPy_END_ALLOW_THREADS; | |
4689 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4690 | _resultobj = Py_BuildValue("s",_ptemp); | |
4691 | return _resultobj; | |
4692 | } | |
4693 | ||
4694 | #define wxTreeCtrl_GetLastChild(_swigobj,_swigarg0) (_swigobj->GetLastChild(_swigarg0)) | |
4695 | static PyObject *_wrap_wxTreeCtrl_GetLastChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4696 | PyObject * _resultobj; | |
4697 | wxTreeItemId * _result; | |
4698 | wxTreeCtrl * _arg0; | |
4699 | wxTreeItemId * _arg1; | |
4700 | PyObject * _argo0 = 0; | |
4701 | PyObject * _argo1 = 0; | |
4702 | char *_kwnames[] = { "self","item", NULL }; | |
4703 | char _ptemp[128]; | |
4704 | ||
4705 | self = self; | |
4706 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetLastChild",_kwnames,&_argo0,&_argo1)) | |
4707 | return NULL; | |
4708 | if (_argo0) { | |
4709 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4710 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4711 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetLastChild. Expected _wxTreeCtrl_p."); | |
4712 | return NULL; | |
4713 | } | |
4714 | } | |
4715 | if (_argo1) { | |
4716 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4717 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4718 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetLastChild. Expected _wxTreeItemId_p."); | |
4719 | return NULL; | |
4720 | } | |
4721 | } | |
4722 | { | |
4723 | wxPy_BEGIN_ALLOW_THREADS; | |
4724 | _result = new wxTreeItemId (wxTreeCtrl_GetLastChild(_arg0,*_arg1)); | |
4725 | ||
4726 | wxPy_END_ALLOW_THREADS; | |
4727 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4728 | _resultobj = Py_BuildValue("s",_ptemp); | |
4729 | return _resultobj; | |
4730 | } | |
4731 | ||
4732 | #define wxTreeCtrl_AddRoot(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->AddRoot(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
4733 | static PyObject *_wrap_wxTreeCtrl_AddRoot(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4734 | PyObject * _resultobj; | |
4735 | wxTreeItemId * _result; | |
4736 | wxTreeCtrl * _arg0; | |
4737 | wxString * _arg1; | |
4738 | int _arg2 = (int ) -1; | |
4739 | int _arg3 = (int ) -1; | |
4740 | wxPyTreeItemData * _arg4 = (wxPyTreeItemData *) NULL; | |
4741 | PyObject * _argo0 = 0; | |
4742 | PyObject * _obj1 = 0; | |
4743 | PyObject * _argo4 = 0; | |
4744 | char *_kwnames[] = { "self","text","image","selectedImage","data", NULL }; | |
4745 | char _ptemp[128]; | |
4746 | ||
4747 | self = self; | |
4748 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iiO:wxTreeCtrl_AddRoot",_kwnames,&_argo0,&_obj1,&_arg2,&_arg3,&_argo4)) | |
4749 | return NULL; | |
4750 | if (_argo0) { | |
4751 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4752 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4753 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_AddRoot. Expected _wxTreeCtrl_p."); | |
4754 | return NULL; | |
4755 | } | |
4756 | } | |
4757 | { | |
4758 | if (!PyString_Check(_obj1)) { | |
4759 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4760 | return NULL; | |
4761 | } | |
4762 | _arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1)); | |
4763 | } | |
4764 | if (_argo4) { | |
4765 | if (_argo4 == Py_None) { _arg4 = NULL; } | |
4766 | else if (SWIG_GetPtrObj(_argo4,(void **) &_arg4,"_wxPyTreeItemData_p")) { | |
4767 | PyErr_SetString(PyExc_TypeError,"Type error in argument 5 of wxTreeCtrl_AddRoot. Expected _wxPyTreeItemData_p."); | |
4768 | return NULL; | |
4769 | } | |
4770 | } | |
4771 | { | |
4772 | wxPy_BEGIN_ALLOW_THREADS; | |
4773 | _result = new wxTreeItemId (wxTreeCtrl_AddRoot(_arg0,*_arg1,_arg2,_arg3,_arg4)); | |
4774 | ||
4775 | wxPy_END_ALLOW_THREADS; | |
4776 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4777 | _resultobj = Py_BuildValue("s",_ptemp); | |
4778 | { | |
4779 | if (_obj1) | |
4780 | delete _arg1; | |
4781 | } | |
4782 | return _resultobj; | |
4783 | } | |
4784 | ||
4785 | #define wxTreeCtrl_PrependItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->PrependItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
4786 | static PyObject *_wrap_wxTreeCtrl_PrependItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4787 | PyObject * _resultobj; | |
4788 | wxTreeItemId * _result; | |
4789 | wxTreeCtrl * _arg0; | |
4790 | wxTreeItemId * _arg1; | |
4791 | wxString * _arg2; | |
4792 | int _arg3 = (int ) -1; | |
4793 | int _arg4 = (int ) -1; | |
4794 | wxPyTreeItemData * _arg5 = (wxPyTreeItemData *) NULL; | |
4795 | PyObject * _argo0 = 0; | |
4796 | PyObject * _argo1 = 0; | |
4797 | PyObject * _obj2 = 0; | |
4798 | PyObject * _argo5 = 0; | |
4799 | char *_kwnames[] = { "self","parent","text","image","selectedImage","data", NULL }; | |
4800 | char _ptemp[128]; | |
4801 | ||
4802 | self = self; | |
4803 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|iiO:wxTreeCtrl_PrependItem",_kwnames,&_argo0,&_argo1,&_obj2,&_arg3,&_arg4,&_argo5)) | |
4804 | return NULL; | |
4805 | if (_argo0) { | |
4806 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4807 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4808 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_PrependItem. Expected _wxTreeCtrl_p."); | |
4809 | return NULL; | |
4810 | } | |
4811 | } | |
4812 | if (_argo1) { | |
4813 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4814 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4815 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_PrependItem. Expected _wxTreeItemId_p."); | |
4816 | return NULL; | |
4817 | } | |
4818 | } | |
4819 | { | |
4820 | if (!PyString_Check(_obj2)) { | |
4821 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4822 | return NULL; | |
4823 | } | |
4824 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
4825 | } | |
4826 | if (_argo5) { | |
4827 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
4828 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxPyTreeItemData_p")) { | |
4829 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of wxTreeCtrl_PrependItem. Expected _wxPyTreeItemData_p."); | |
4830 | return NULL; | |
4831 | } | |
4832 | } | |
4833 | { | |
4834 | wxPy_BEGIN_ALLOW_THREADS; | |
4835 | _result = new wxTreeItemId (wxTreeCtrl_PrependItem(_arg0,*_arg1,*_arg2,_arg3,_arg4,_arg5)); | |
4836 | ||
4837 | wxPy_END_ALLOW_THREADS; | |
4838 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4839 | _resultobj = Py_BuildValue("s",_ptemp); | |
4840 | { | |
4841 | if (_obj2) | |
4842 | delete _arg2; | |
4843 | } | |
4844 | return _resultobj; | |
4845 | } | |
4846 | ||
4847 | #define wxTreeCtrl_InsertItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->InsertItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
4848 | static PyObject *_wrap_wxTreeCtrl_InsertItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4849 | PyObject * _resultobj; | |
4850 | wxTreeItemId * _result; | |
4851 | wxTreeCtrl * _arg0; | |
4852 | wxTreeItemId * _arg1; | |
4853 | wxTreeItemId * _arg2; | |
4854 | wxString * _arg3; | |
4855 | int _arg4 = (int ) -1; | |
4856 | int _arg5 = (int ) -1; | |
4857 | wxPyTreeItemData * _arg6 = (wxPyTreeItemData *) NULL; | |
4858 | PyObject * _argo0 = 0; | |
4859 | PyObject * _argo1 = 0; | |
4860 | PyObject * _argo2 = 0; | |
4861 | PyObject * _obj3 = 0; | |
4862 | PyObject * _argo6 = 0; | |
4863 | char *_kwnames[] = { "self","parent","idPrevious","text","image","selectedImage","data", NULL }; | |
4864 | char _ptemp[128]; | |
4865 | ||
4866 | self = self; | |
4867 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOOO|iiO:wxTreeCtrl_InsertItem",_kwnames,&_argo0,&_argo1,&_argo2,&_obj3,&_arg4,&_arg5,&_argo6)) | |
4868 | return NULL; | |
4869 | if (_argo0) { | |
4870 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4871 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4872 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_InsertItem. Expected _wxTreeCtrl_p."); | |
4873 | return NULL; | |
4874 | } | |
4875 | } | |
4876 | if (_argo1) { | |
4877 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4878 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4879 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_InsertItem. Expected _wxTreeItemId_p."); | |
4880 | return NULL; | |
4881 | } | |
4882 | } | |
4883 | if (_argo2) { | |
4884 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
4885 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxTreeItemId_p")) { | |
4886 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxTreeCtrl_InsertItem. Expected _wxTreeItemId_p."); | |
4887 | return NULL; | |
4888 | } | |
4889 | } | |
4890 | { | |
4891 | if (!PyString_Check(_obj3)) { | |
4892 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4893 | return NULL; | |
4894 | } | |
4895 | _arg3 = new wxString(PyString_AsString(_obj3), PyString_Size(_obj3)); | |
4896 | } | |
4897 | if (_argo6) { | |
4898 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
4899 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxPyTreeItemData_p")) { | |
4900 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxTreeCtrl_InsertItem. Expected _wxPyTreeItemData_p."); | |
4901 | return NULL; | |
4902 | } | |
4903 | } | |
4904 | { | |
4905 | wxPy_BEGIN_ALLOW_THREADS; | |
4906 | _result = new wxTreeItemId (wxTreeCtrl_InsertItem(_arg0,*_arg1,*_arg2,*_arg3,_arg4,_arg5,_arg6)); | |
4907 | ||
4908 | wxPy_END_ALLOW_THREADS; | |
4909 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4910 | _resultobj = Py_BuildValue("s",_ptemp); | |
4911 | { | |
4912 | if (_obj3) | |
4913 | delete _arg3; | |
4914 | } | |
4915 | return _resultobj; | |
4916 | } | |
4917 | ||
4918 | #define wxTreeCtrl_AppendItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->AppendItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
4919 | static PyObject *_wrap_wxTreeCtrl_AppendItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4920 | PyObject * _resultobj; | |
4921 | wxTreeItemId * _result; | |
4922 | wxTreeCtrl * _arg0; | |
4923 | wxTreeItemId * _arg1; | |
4924 | wxString * _arg2; | |
4925 | int _arg3 = (int ) -1; | |
4926 | int _arg4 = (int ) -1; | |
4927 | wxPyTreeItemData * _arg5 = (wxPyTreeItemData *) NULL; | |
4928 | PyObject * _argo0 = 0; | |
4929 | PyObject * _argo1 = 0; | |
4930 | PyObject * _obj2 = 0; | |
4931 | PyObject * _argo5 = 0; | |
4932 | char *_kwnames[] = { "self","parent","text","image","selectedImage","data", NULL }; | |
4933 | char _ptemp[128]; | |
4934 | ||
4935 | self = self; | |
4936 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|iiO:wxTreeCtrl_AppendItem",_kwnames,&_argo0,&_argo1,&_obj2,&_arg3,&_arg4,&_argo5)) | |
4937 | return NULL; | |
4938 | if (_argo0) { | |
4939 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4940 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4941 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_AppendItem. Expected _wxTreeCtrl_p."); | |
4942 | return NULL; | |
4943 | } | |
4944 | } | |
4945 | if (_argo1) { | |
4946 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4947 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
4948 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_AppendItem. Expected _wxTreeItemId_p."); | |
4949 | return NULL; | |
4950 | } | |
4951 | } | |
4952 | { | |
4953 | if (!PyString_Check(_obj2)) { | |
4954 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4955 | return NULL; | |
4956 | } | |
4957 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
4958 | } | |
4959 | if (_argo5) { | |
4960 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
4961 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxPyTreeItemData_p")) { | |
4962 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of wxTreeCtrl_AppendItem. Expected _wxPyTreeItemData_p."); | |
4963 | return NULL; | |
4964 | } | |
4965 | } | |
4966 | { | |
4967 | wxPy_BEGIN_ALLOW_THREADS; | |
4968 | _result = new wxTreeItemId (wxTreeCtrl_AppendItem(_arg0,*_arg1,*_arg2,_arg3,_arg4,_arg5)); | |
4969 | ||
4970 | wxPy_END_ALLOW_THREADS; | |
4971 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
4972 | _resultobj = Py_BuildValue("s",_ptemp); | |
4973 | { | |
4974 | if (_obj2) | |
4975 | delete _arg2; | |
4976 | } | |
4977 | return _resultobj; | |
4978 | } | |
4979 | ||
4980 | #define wxTreeCtrl_Delete(_swigobj,_swigarg0) (_swigobj->Delete(_swigarg0)) | |
4981 | static PyObject *_wrap_wxTreeCtrl_Delete(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4982 | PyObject * _resultobj; | |
4983 | wxTreeCtrl * _arg0; | |
4984 | wxTreeItemId * _arg1; | |
4985 | PyObject * _argo0 = 0; | |
4986 | PyObject * _argo1 = 0; | |
4987 | char *_kwnames[] = { "self","item", NULL }; | |
4988 | ||
4989 | self = self; | |
4990 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Delete",_kwnames,&_argo0,&_argo1)) | |
4991 | return NULL; | |
4992 | if (_argo0) { | |
4993 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4994 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
4995 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Delete. Expected _wxTreeCtrl_p."); | |
4996 | return NULL; | |
4997 | } | |
4998 | } | |
4999 | if (_argo1) { | |
5000 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5001 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5002 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Delete. Expected _wxTreeItemId_p."); | |
5003 | return NULL; | |
5004 | } | |
5005 | } | |
5006 | { | |
5007 | wxPy_BEGIN_ALLOW_THREADS; | |
5008 | wxTreeCtrl_Delete(_arg0,*_arg1); | |
5009 | ||
5010 | wxPy_END_ALLOW_THREADS; | |
5011 | } Py_INCREF(Py_None); | |
5012 | _resultobj = Py_None; | |
5013 | return _resultobj; | |
5014 | } | |
5015 | ||
5016 | #define wxTreeCtrl_DeleteChildren(_swigobj,_swigarg0) (_swigobj->DeleteChildren(_swigarg0)) | |
5017 | static PyObject *_wrap_wxTreeCtrl_DeleteChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5018 | PyObject * _resultobj; | |
5019 | wxTreeCtrl * _arg0; | |
5020 | wxTreeItemId * _arg1; | |
5021 | PyObject * _argo0 = 0; | |
5022 | PyObject * _argo1 = 0; | |
5023 | char *_kwnames[] = { "self","item", NULL }; | |
5024 | ||
5025 | self = self; | |
5026 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_DeleteChildren",_kwnames,&_argo0,&_argo1)) | |
5027 | return NULL; | |
5028 | if (_argo0) { | |
5029 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5030 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5031 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_DeleteChildren. Expected _wxTreeCtrl_p."); | |
5032 | return NULL; | |
5033 | } | |
5034 | } | |
5035 | if (_argo1) { | |
5036 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5037 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5038 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_DeleteChildren. Expected _wxTreeItemId_p."); | |
5039 | return NULL; | |
5040 | } | |
5041 | } | |
5042 | { | |
5043 | wxPy_BEGIN_ALLOW_THREADS; | |
5044 | wxTreeCtrl_DeleteChildren(_arg0,*_arg1); | |
5045 | ||
5046 | wxPy_END_ALLOW_THREADS; | |
5047 | } Py_INCREF(Py_None); | |
5048 | _resultobj = Py_None; | |
5049 | return _resultobj; | |
5050 | } | |
5051 | ||
5052 | #define wxTreeCtrl_DeleteAllItems(_swigobj) (_swigobj->DeleteAllItems()) | |
5053 | static PyObject *_wrap_wxTreeCtrl_DeleteAllItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5054 | PyObject * _resultobj; | |
5055 | wxTreeCtrl * _arg0; | |
5056 | PyObject * _argo0 = 0; | |
5057 | char *_kwnames[] = { "self", NULL }; | |
5058 | ||
5059 | self = self; | |
5060 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_DeleteAllItems",_kwnames,&_argo0)) | |
5061 | return NULL; | |
5062 | if (_argo0) { | |
5063 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5064 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5065 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_DeleteAllItems. Expected _wxTreeCtrl_p."); | |
5066 | return NULL; | |
5067 | } | |
5068 | } | |
5069 | { | |
5070 | wxPy_BEGIN_ALLOW_THREADS; | |
5071 | wxTreeCtrl_DeleteAllItems(_arg0); | |
5072 | ||
5073 | wxPy_END_ALLOW_THREADS; | |
5074 | } Py_INCREF(Py_None); | |
5075 | _resultobj = Py_None; | |
5076 | return _resultobj; | |
5077 | } | |
5078 | ||
5079 | #define wxTreeCtrl_Expand(_swigobj,_swigarg0) (_swigobj->Expand(_swigarg0)) | |
5080 | static PyObject *_wrap_wxTreeCtrl_Expand(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5081 | PyObject * _resultobj; | |
5082 | wxTreeCtrl * _arg0; | |
5083 | wxTreeItemId * _arg1; | |
5084 | PyObject * _argo0 = 0; | |
5085 | PyObject * _argo1 = 0; | |
5086 | char *_kwnames[] = { "self","item", NULL }; | |
5087 | ||
5088 | self = self; | |
5089 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Expand",_kwnames,&_argo0,&_argo1)) | |
5090 | return NULL; | |
5091 | if (_argo0) { | |
5092 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5093 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5094 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Expand. Expected _wxTreeCtrl_p."); | |
5095 | return NULL; | |
5096 | } | |
5097 | } | |
5098 | if (_argo1) { | |
5099 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5100 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5101 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Expand. Expected _wxTreeItemId_p."); | |
5102 | return NULL; | |
5103 | } | |
5104 | } | |
5105 | { | |
5106 | wxPy_BEGIN_ALLOW_THREADS; | |
5107 | wxTreeCtrl_Expand(_arg0,*_arg1); | |
5108 | ||
5109 | wxPy_END_ALLOW_THREADS; | |
5110 | } Py_INCREF(Py_None); | |
5111 | _resultobj = Py_None; | |
5112 | return _resultobj; | |
5113 | } | |
5114 | ||
5115 | #define wxTreeCtrl_Collapse(_swigobj,_swigarg0) (_swigobj->Collapse(_swigarg0)) | |
5116 | static PyObject *_wrap_wxTreeCtrl_Collapse(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5117 | PyObject * _resultobj; | |
5118 | wxTreeCtrl * _arg0; | |
5119 | wxTreeItemId * _arg1; | |
5120 | PyObject * _argo0 = 0; | |
5121 | PyObject * _argo1 = 0; | |
5122 | char *_kwnames[] = { "self","item", NULL }; | |
5123 | ||
5124 | self = self; | |
5125 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Collapse",_kwnames,&_argo0,&_argo1)) | |
5126 | return NULL; | |
5127 | if (_argo0) { | |
5128 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5129 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5130 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Collapse. Expected _wxTreeCtrl_p."); | |
5131 | return NULL; | |
5132 | } | |
5133 | } | |
5134 | if (_argo1) { | |
5135 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5136 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5137 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Collapse. Expected _wxTreeItemId_p."); | |
5138 | return NULL; | |
5139 | } | |
5140 | } | |
5141 | { | |
5142 | wxPy_BEGIN_ALLOW_THREADS; | |
5143 | wxTreeCtrl_Collapse(_arg0,*_arg1); | |
5144 | ||
5145 | wxPy_END_ALLOW_THREADS; | |
5146 | } Py_INCREF(Py_None); | |
5147 | _resultobj = Py_None; | |
5148 | return _resultobj; | |
5149 | } | |
5150 | ||
5151 | #define wxTreeCtrl_CollapseAndReset(_swigobj,_swigarg0) (_swigobj->CollapseAndReset(_swigarg0)) | |
5152 | static PyObject *_wrap_wxTreeCtrl_CollapseAndReset(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5153 | PyObject * _resultobj; | |
5154 | wxTreeCtrl * _arg0; | |
5155 | wxTreeItemId * _arg1; | |
5156 | PyObject * _argo0 = 0; | |
5157 | PyObject * _argo1 = 0; | |
5158 | char *_kwnames[] = { "self","item", NULL }; | |
5159 | ||
5160 | self = self; | |
5161 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_CollapseAndReset",_kwnames,&_argo0,&_argo1)) | |
5162 | return NULL; | |
5163 | if (_argo0) { | |
5164 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5165 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5166 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_CollapseAndReset. Expected _wxTreeCtrl_p."); | |
5167 | return NULL; | |
5168 | } | |
5169 | } | |
5170 | if (_argo1) { | |
5171 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5172 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5173 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_CollapseAndReset. Expected _wxTreeItemId_p."); | |
5174 | return NULL; | |
5175 | } | |
5176 | } | |
5177 | { | |
5178 | wxPy_BEGIN_ALLOW_THREADS; | |
5179 | wxTreeCtrl_CollapseAndReset(_arg0,*_arg1); | |
5180 | ||
5181 | wxPy_END_ALLOW_THREADS; | |
5182 | } Py_INCREF(Py_None); | |
5183 | _resultobj = Py_None; | |
5184 | return _resultobj; | |
5185 | } | |
5186 | ||
5187 | #define wxTreeCtrl_Toggle(_swigobj,_swigarg0) (_swigobj->Toggle(_swigarg0)) | |
5188 | static PyObject *_wrap_wxTreeCtrl_Toggle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5189 | PyObject * _resultobj; | |
5190 | wxTreeCtrl * _arg0; | |
5191 | wxTreeItemId * _arg1; | |
5192 | PyObject * _argo0 = 0; | |
5193 | PyObject * _argo1 = 0; | |
5194 | char *_kwnames[] = { "self","item", NULL }; | |
5195 | ||
5196 | self = self; | |
5197 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Toggle",_kwnames,&_argo0,&_argo1)) | |
5198 | return NULL; | |
5199 | if (_argo0) { | |
5200 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5201 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5202 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Toggle. Expected _wxTreeCtrl_p."); | |
5203 | return NULL; | |
5204 | } | |
5205 | } | |
5206 | if (_argo1) { | |
5207 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5208 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5209 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Toggle. Expected _wxTreeItemId_p."); | |
5210 | return NULL; | |
5211 | } | |
5212 | } | |
5213 | { | |
5214 | wxPy_BEGIN_ALLOW_THREADS; | |
5215 | wxTreeCtrl_Toggle(_arg0,*_arg1); | |
5216 | ||
5217 | wxPy_END_ALLOW_THREADS; | |
5218 | } Py_INCREF(Py_None); | |
5219 | _resultobj = Py_None; | |
5220 | return _resultobj; | |
5221 | } | |
5222 | ||
5223 | #define wxTreeCtrl_Unselect(_swigobj) (_swigobj->Unselect()) | |
5224 | static PyObject *_wrap_wxTreeCtrl_Unselect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5225 | PyObject * _resultobj; | |
5226 | wxTreeCtrl * _arg0; | |
5227 | PyObject * _argo0 = 0; | |
5228 | char *_kwnames[] = { "self", NULL }; | |
5229 | ||
5230 | self = self; | |
5231 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_Unselect",_kwnames,&_argo0)) | |
5232 | return NULL; | |
5233 | if (_argo0) { | |
5234 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5235 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5236 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Unselect. Expected _wxTreeCtrl_p."); | |
5237 | return NULL; | |
5238 | } | |
5239 | } | |
5240 | { | |
5241 | wxPy_BEGIN_ALLOW_THREADS; | |
5242 | wxTreeCtrl_Unselect(_arg0); | |
5243 | ||
5244 | wxPy_END_ALLOW_THREADS; | |
5245 | } Py_INCREF(Py_None); | |
5246 | _resultobj = Py_None; | |
5247 | return _resultobj; | |
5248 | } | |
5249 | ||
5250 | #define wxTreeCtrl_UnselectAll(_swigobj) (_swigobj->UnselectAll()) | |
5251 | static PyObject *_wrap_wxTreeCtrl_UnselectAll(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5252 | PyObject * _resultobj; | |
5253 | wxTreeCtrl * _arg0; | |
5254 | PyObject * _argo0 = 0; | |
5255 | char *_kwnames[] = { "self", NULL }; | |
5256 | ||
5257 | self = self; | |
5258 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_UnselectAll",_kwnames,&_argo0)) | |
5259 | return NULL; | |
5260 | if (_argo0) { | |
5261 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5262 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5263 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_UnselectAll. Expected _wxTreeCtrl_p."); | |
5264 | return NULL; | |
5265 | } | |
5266 | } | |
5267 | { | |
5268 | wxPy_BEGIN_ALLOW_THREADS; | |
5269 | wxTreeCtrl_UnselectAll(_arg0); | |
5270 | ||
5271 | wxPy_END_ALLOW_THREADS; | |
5272 | } Py_INCREF(Py_None); | |
5273 | _resultobj = Py_None; | |
5274 | return _resultobj; | |
5275 | } | |
5276 | ||
5277 | #define wxTreeCtrl_SelectItem(_swigobj,_swigarg0) (_swigobj->SelectItem(_swigarg0)) | |
5278 | static PyObject *_wrap_wxTreeCtrl_SelectItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5279 | PyObject * _resultobj; | |
5280 | wxTreeCtrl * _arg0; | |
5281 | wxTreeItemId * _arg1; | |
5282 | PyObject * _argo0 = 0; | |
5283 | PyObject * _argo1 = 0; | |
5284 | char *_kwnames[] = { "self","item", NULL }; | |
5285 | ||
5286 | self = self; | |
5287 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SelectItem",_kwnames,&_argo0,&_argo1)) | |
5288 | return NULL; | |
5289 | if (_argo0) { | |
5290 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5291 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5292 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SelectItem. Expected _wxTreeCtrl_p."); | |
5293 | return NULL; | |
5294 | } | |
5295 | } | |
5296 | if (_argo1) { | |
5297 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5298 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5299 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SelectItem. Expected _wxTreeItemId_p."); | |
5300 | return NULL; | |
5301 | } | |
5302 | } | |
5303 | { | |
5304 | wxPy_BEGIN_ALLOW_THREADS; | |
5305 | wxTreeCtrl_SelectItem(_arg0,*_arg1); | |
5306 | ||
5307 | wxPy_END_ALLOW_THREADS; | |
5308 | } Py_INCREF(Py_None); | |
5309 | _resultobj = Py_None; | |
5310 | return _resultobj; | |
5311 | } | |
5312 | ||
5313 | #define wxTreeCtrl_EnsureVisible(_swigobj,_swigarg0) (_swigobj->EnsureVisible(_swigarg0)) | |
5314 | static PyObject *_wrap_wxTreeCtrl_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5315 | PyObject * _resultobj; | |
5316 | wxTreeCtrl * _arg0; | |
5317 | wxTreeItemId * _arg1; | |
5318 | PyObject * _argo0 = 0; | |
5319 | PyObject * _argo1 = 0; | |
5320 | char *_kwnames[] = { "self","item", NULL }; | |
5321 | ||
5322 | self = self; | |
5323 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_EnsureVisible",_kwnames,&_argo0,&_argo1)) | |
5324 | return NULL; | |
5325 | if (_argo0) { | |
5326 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5327 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5328 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_EnsureVisible. Expected _wxTreeCtrl_p."); | |
5329 | return NULL; | |
5330 | } | |
5331 | } | |
5332 | if (_argo1) { | |
5333 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5334 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5335 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_EnsureVisible. Expected _wxTreeItemId_p."); | |
5336 | return NULL; | |
5337 | } | |
5338 | } | |
5339 | { | |
5340 | wxPy_BEGIN_ALLOW_THREADS; | |
5341 | wxTreeCtrl_EnsureVisible(_arg0,*_arg1); | |
5342 | ||
5343 | wxPy_END_ALLOW_THREADS; | |
5344 | } Py_INCREF(Py_None); | |
5345 | _resultobj = Py_None; | |
5346 | return _resultobj; | |
5347 | } | |
5348 | ||
5349 | #define wxTreeCtrl_ScrollTo(_swigobj,_swigarg0) (_swigobj->ScrollTo(_swigarg0)) | |
5350 | static PyObject *_wrap_wxTreeCtrl_ScrollTo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5351 | PyObject * _resultobj; | |
5352 | wxTreeCtrl * _arg0; | |
5353 | wxTreeItemId * _arg1; | |
5354 | PyObject * _argo0 = 0; | |
5355 | PyObject * _argo1 = 0; | |
5356 | char *_kwnames[] = { "self","item", NULL }; | |
5357 | ||
5358 | self = self; | |
5359 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_ScrollTo",_kwnames,&_argo0,&_argo1)) | |
5360 | return NULL; | |
5361 | if (_argo0) { | |
5362 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5363 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5364 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_ScrollTo. Expected _wxTreeCtrl_p."); | |
5365 | return NULL; | |
5366 | } | |
5367 | } | |
5368 | if (_argo1) { | |
5369 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5370 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5371 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_ScrollTo. Expected _wxTreeItemId_p."); | |
5372 | return NULL; | |
5373 | } | |
5374 | } | |
5375 | { | |
5376 | wxPy_BEGIN_ALLOW_THREADS; | |
5377 | wxTreeCtrl_ScrollTo(_arg0,*_arg1); | |
5378 | ||
5379 | wxPy_END_ALLOW_THREADS; | |
5380 | } Py_INCREF(Py_None); | |
5381 | _resultobj = Py_None; | |
5382 | return _resultobj; | |
5383 | } | |
5384 | ||
5385 | #define wxTreeCtrl_EditLabel(_swigobj,_swigarg0) (_swigobj->EditLabel(_swigarg0)) | |
5386 | static PyObject *_wrap_wxTreeCtrl_EditLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5387 | PyObject * _resultobj; | |
5388 | wxTreeCtrl * _arg0; | |
5389 | wxTreeItemId * _arg1; | |
5390 | PyObject * _argo0 = 0; | |
5391 | PyObject * _argo1 = 0; | |
5392 | char *_kwnames[] = { "self","item", NULL }; | |
5393 | ||
5394 | self = self; | |
5395 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_EditLabel",_kwnames,&_argo0,&_argo1)) | |
5396 | return NULL; | |
5397 | if (_argo0) { | |
5398 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5399 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5400 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_EditLabel. Expected _wxTreeCtrl_p."); | |
5401 | return NULL; | |
5402 | } | |
5403 | } | |
5404 | if (_argo1) { | |
5405 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5406 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5407 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_EditLabel. Expected _wxTreeItemId_p."); | |
5408 | return NULL; | |
5409 | } | |
5410 | } | |
5411 | { | |
5412 | wxPy_BEGIN_ALLOW_THREADS; | |
5413 | wxTreeCtrl_EditLabel(_arg0,*_arg1); | |
5414 | ||
5415 | wxPy_END_ALLOW_THREADS; | |
5416 | } Py_INCREF(Py_None); | |
5417 | _resultobj = Py_None; | |
5418 | return _resultobj; | |
5419 | } | |
5420 | ||
5421 | #define wxTreeCtrl_SortChildren(_swigobj,_swigarg0) (_swigobj->SortChildren(_swigarg0)) | |
5422 | static PyObject *_wrap_wxTreeCtrl_SortChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5423 | PyObject * _resultobj; | |
5424 | wxTreeCtrl * _arg0; | |
5425 | wxTreeItemId * _arg1; | |
5426 | PyObject * _argo0 = 0; | |
5427 | PyObject * _argo1 = 0; | |
5428 | char *_kwnames[] = { "self","item", NULL }; | |
5429 | ||
5430 | self = self; | |
5431 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SortChildren",_kwnames,&_argo0,&_argo1)) | |
5432 | return NULL; | |
5433 | if (_argo0) { | |
5434 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5435 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5436 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SortChildren. Expected _wxTreeCtrl_p."); | |
5437 | return NULL; | |
5438 | } | |
5439 | } | |
5440 | if (_argo1) { | |
5441 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5442 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5443 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SortChildren. Expected _wxTreeItemId_p."); | |
5444 | return NULL; | |
5445 | } | |
5446 | } | |
5447 | { | |
5448 | wxPy_BEGIN_ALLOW_THREADS; | |
5449 | wxTreeCtrl_SortChildren(_arg0,*_arg1); | |
5450 | ||
5451 | wxPy_END_ALLOW_THREADS; | |
5452 | } Py_INCREF(Py_None); | |
5453 | _resultobj = Py_None; | |
5454 | return _resultobj; | |
5455 | } | |
5456 | ||
5457 | #define wxTreeCtrl_SetItemBold(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemBold(_swigarg0,_swigarg1)) | |
5458 | static PyObject *_wrap_wxTreeCtrl_SetItemBold(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5459 | PyObject * _resultobj; | |
5460 | wxTreeCtrl * _arg0; | |
5461 | wxTreeItemId * _arg1; | |
5462 | int _arg2 = (int ) TRUE; | |
5463 | PyObject * _argo0 = 0; | |
5464 | PyObject * _argo1 = 0; | |
5465 | char *_kwnames[] = { "self","item","bold", NULL }; | |
5466 | ||
5467 | self = self; | |
5468 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemBold",_kwnames,&_argo0,&_argo1,&_arg2)) | |
5469 | return NULL; | |
5470 | if (_argo0) { | |
5471 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5472 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5473 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemBold. Expected _wxTreeCtrl_p."); | |
5474 | return NULL; | |
5475 | } | |
5476 | } | |
5477 | if (_argo1) { | |
5478 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5479 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5480 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemBold. Expected _wxTreeItemId_p."); | |
5481 | return NULL; | |
5482 | } | |
5483 | } | |
5484 | { | |
5485 | wxPy_BEGIN_ALLOW_THREADS; | |
5486 | wxTreeCtrl_SetItemBold(_arg0,*_arg1,_arg2); | |
5487 | ||
5488 | wxPy_END_ALLOW_THREADS; | |
5489 | } Py_INCREF(Py_None); | |
5490 | _resultobj = Py_None; | |
5491 | return _resultobj; | |
5492 | } | |
5493 | ||
5494 | #define wxTreeCtrl_IsBold(_swigobj,_swigarg0) (_swigobj->IsBold(_swigarg0)) | |
5495 | static PyObject *_wrap_wxTreeCtrl_IsBold(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5496 | PyObject * _resultobj; | |
5497 | bool _result; | |
5498 | wxTreeCtrl * _arg0; | |
5499 | wxTreeItemId * _arg1; | |
5500 | PyObject * _argo0 = 0; | |
5501 | PyObject * _argo1 = 0; | |
5502 | char *_kwnames[] = { "self","item", NULL }; | |
5503 | ||
5504 | self = self; | |
5505 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsBold",_kwnames,&_argo0,&_argo1)) | |
5506 | return NULL; | |
5507 | if (_argo0) { | |
5508 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5509 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5510 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsBold. Expected _wxTreeCtrl_p."); | |
5511 | return NULL; | |
5512 | } | |
5513 | } | |
5514 | if (_argo1) { | |
5515 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5516 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
5517 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsBold. Expected _wxTreeItemId_p."); | |
5518 | return NULL; | |
5519 | } | |
5520 | } | |
5521 | { | |
5522 | wxPy_BEGIN_ALLOW_THREADS; | |
5523 | _result = (bool )wxTreeCtrl_IsBold(_arg0,*_arg1); | |
5524 | ||
5525 | wxPy_END_ALLOW_THREADS; | |
5526 | } _resultobj = Py_BuildValue("i",_result); | |
5527 | return _resultobj; | |
5528 | } | |
5529 | ||
5530 | #define wxTreeCtrl_HitTest(_swigobj,_swigarg0) (_swigobj->HitTest(_swigarg0)) | |
5531 | static PyObject *_wrap_wxTreeCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5532 | PyObject * _resultobj; | |
5533 | wxTreeItemId * _result; | |
5534 | wxTreeCtrl * _arg0; | |
5535 | wxPoint * _arg1; | |
5536 | PyObject * _argo0 = 0; | |
5537 | wxPoint temp; | |
5538 | PyObject * _obj1 = 0; | |
5539 | char *_kwnames[] = { "self","point", NULL }; | |
5540 | char _ptemp[128]; | |
5541 | ||
5542 | self = self; | |
5543 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_HitTest",_kwnames,&_argo0,&_obj1)) | |
5544 | return NULL; | |
5545 | if (_argo0) { | |
5546 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5547 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) { | |
5548 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_HitTest. Expected _wxTreeCtrl_p."); | |
5549 | return NULL; | |
5550 | } | |
5551 | } | |
5552 | { | |
5553 | _arg1 = &temp; | |
5554 | if (! wxPoint_helper(_obj1, &_arg1)) | |
5555 | return NULL; | |
5556 | } | |
5557 | { | |
5558 | wxPy_BEGIN_ALLOW_THREADS; | |
5559 | _result = new wxTreeItemId (wxTreeCtrl_HitTest(_arg0,*_arg1)); | |
5560 | ||
5561 | wxPy_END_ALLOW_THREADS; | |
5562 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
5563 | _resultobj = Py_BuildValue("s",_ptemp); | |
5564 | return _resultobj; | |
5565 | } | |
5566 | ||
5567 | static PyMethodDef controls2cMethods[] = { | |
5568 | { "wxTreeCtrl_HitTest", (PyCFunction) _wrap_wxTreeCtrl_HitTest, METH_VARARGS | METH_KEYWORDS }, | |
5569 | { "wxTreeCtrl_IsBold", (PyCFunction) _wrap_wxTreeCtrl_IsBold, METH_VARARGS | METH_KEYWORDS }, | |
5570 | { "wxTreeCtrl_SetItemBold", (PyCFunction) _wrap_wxTreeCtrl_SetItemBold, METH_VARARGS | METH_KEYWORDS }, | |
5571 | { "wxTreeCtrl_SortChildren", (PyCFunction) _wrap_wxTreeCtrl_SortChildren, METH_VARARGS | METH_KEYWORDS }, | |
5572 | { "wxTreeCtrl_EditLabel", (PyCFunction) _wrap_wxTreeCtrl_EditLabel, METH_VARARGS | METH_KEYWORDS }, | |
5573 | { "wxTreeCtrl_ScrollTo", (PyCFunction) _wrap_wxTreeCtrl_ScrollTo, METH_VARARGS | METH_KEYWORDS }, | |
5574 | { "wxTreeCtrl_EnsureVisible", (PyCFunction) _wrap_wxTreeCtrl_EnsureVisible, METH_VARARGS | METH_KEYWORDS }, | |
5575 | { "wxTreeCtrl_SelectItem", (PyCFunction) _wrap_wxTreeCtrl_SelectItem, METH_VARARGS | METH_KEYWORDS }, | |
5576 | { "wxTreeCtrl_UnselectAll", (PyCFunction) _wrap_wxTreeCtrl_UnselectAll, METH_VARARGS | METH_KEYWORDS }, | |
5577 | { "wxTreeCtrl_Unselect", (PyCFunction) _wrap_wxTreeCtrl_Unselect, METH_VARARGS | METH_KEYWORDS }, | |
5578 | { "wxTreeCtrl_Toggle", (PyCFunction) _wrap_wxTreeCtrl_Toggle, METH_VARARGS | METH_KEYWORDS }, | |
5579 | { "wxTreeCtrl_CollapseAndReset", (PyCFunction) _wrap_wxTreeCtrl_CollapseAndReset, METH_VARARGS | METH_KEYWORDS }, | |
5580 | { "wxTreeCtrl_Collapse", (PyCFunction) _wrap_wxTreeCtrl_Collapse, METH_VARARGS | METH_KEYWORDS }, | |
5581 | { "wxTreeCtrl_Expand", (PyCFunction) _wrap_wxTreeCtrl_Expand, METH_VARARGS | METH_KEYWORDS }, | |
5582 | { "wxTreeCtrl_DeleteAllItems", (PyCFunction) _wrap_wxTreeCtrl_DeleteAllItems, METH_VARARGS | METH_KEYWORDS }, | |
5583 | { "wxTreeCtrl_DeleteChildren", (PyCFunction) _wrap_wxTreeCtrl_DeleteChildren, METH_VARARGS | METH_KEYWORDS }, | |
5584 | { "wxTreeCtrl_Delete", (PyCFunction) _wrap_wxTreeCtrl_Delete, METH_VARARGS | METH_KEYWORDS }, | |
5585 | { "wxTreeCtrl_AppendItem", (PyCFunction) _wrap_wxTreeCtrl_AppendItem, METH_VARARGS | METH_KEYWORDS }, | |
5586 | { "wxTreeCtrl_InsertItem", (PyCFunction) _wrap_wxTreeCtrl_InsertItem, METH_VARARGS | METH_KEYWORDS }, | |
5587 | { "wxTreeCtrl_PrependItem", (PyCFunction) _wrap_wxTreeCtrl_PrependItem, METH_VARARGS | METH_KEYWORDS }, | |
5588 | { "wxTreeCtrl_AddRoot", (PyCFunction) _wrap_wxTreeCtrl_AddRoot, METH_VARARGS | METH_KEYWORDS }, | |
5589 | { "wxTreeCtrl_GetLastChild", (PyCFunction) _wrap_wxTreeCtrl_GetLastChild, METH_VARARGS | METH_KEYWORDS }, | |
5590 | { "wxTreeCtrl_GetPrevVisible", (PyCFunction) _wrap_wxTreeCtrl_GetPrevVisible, METH_VARARGS | METH_KEYWORDS }, | |
5591 | { "wxTreeCtrl_GetNextVisible", (PyCFunction) _wrap_wxTreeCtrl_GetNextVisible, METH_VARARGS | METH_KEYWORDS }, | |
5592 | { "wxTreeCtrl_GetFirstVisibleItem", (PyCFunction) _wrap_wxTreeCtrl_GetFirstVisibleItem, METH_VARARGS | METH_KEYWORDS }, | |
5593 | { "wxTreeCtrl_GetPrevSibling", (PyCFunction) _wrap_wxTreeCtrl_GetPrevSibling, METH_VARARGS | METH_KEYWORDS }, | |
5594 | { "wxTreeCtrl_GetNextSibling", (PyCFunction) _wrap_wxTreeCtrl_GetNextSibling, METH_VARARGS | METH_KEYWORDS }, | |
5595 | { "wxTreeCtrl_GetNextChild", (PyCFunction) _wrap_wxTreeCtrl_GetNextChild, METH_VARARGS | METH_KEYWORDS }, | |
5596 | { "wxTreeCtrl_GetFirstChild", (PyCFunction) _wrap_wxTreeCtrl_GetFirstChild, METH_VARARGS | METH_KEYWORDS }, | |
5597 | { "wxTreeCtrl_GetChildrenCount", (PyCFunction) _wrap_wxTreeCtrl_GetChildrenCount, METH_VARARGS | METH_KEYWORDS }, | |
5598 | { "wxTreeCtrl_GetSelections", (PyCFunction) _wrap_wxTreeCtrl_GetSelections, METH_VARARGS | METH_KEYWORDS }, | |
5599 | { "wxTreeCtrl_GetParent", (PyCFunction) _wrap_wxTreeCtrl_GetParent, METH_VARARGS | METH_KEYWORDS }, | |
5600 | { "wxTreeCtrl_GetSelection", (PyCFunction) _wrap_wxTreeCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS }, | |
5601 | { "wxTreeCtrl_GetRootItem", (PyCFunction) _wrap_wxTreeCtrl_GetRootItem, METH_VARARGS | METH_KEYWORDS }, | |
5602 | { "wxTreeCtrl_IsSelected", (PyCFunction) _wrap_wxTreeCtrl_IsSelected, METH_VARARGS | METH_KEYWORDS }, | |
5603 | { "wxTreeCtrl_IsExpanded", (PyCFunction) _wrap_wxTreeCtrl_IsExpanded, METH_VARARGS | METH_KEYWORDS }, | |
5604 | { "wxTreeCtrl_ItemHasChildren", (PyCFunction) _wrap_wxTreeCtrl_ItemHasChildren, METH_VARARGS | METH_KEYWORDS }, | |
5605 | { "wxTreeCtrl_IsVisible", (PyCFunction) _wrap_wxTreeCtrl_IsVisible, METH_VARARGS | METH_KEYWORDS }, | |
5606 | { "wxTreeCtrl_SetPyData", (PyCFunction) _wrap_wxTreeCtrl_SetPyData, METH_VARARGS | METH_KEYWORDS }, | |
5607 | { "wxTreeCtrl_GetPyData", (PyCFunction) _wrap_wxTreeCtrl_GetPyData, METH_VARARGS | METH_KEYWORDS }, | |
5608 | { "wxTreeCtrl_SetItemData", (PyCFunction) _wrap_wxTreeCtrl_SetItemData, METH_VARARGS | METH_KEYWORDS }, | |
5609 | { "wxTreeCtrl_GetItemData", (PyCFunction) _wrap_wxTreeCtrl_GetItemData, METH_VARARGS | METH_KEYWORDS }, | |
5610 | { "wxTreeCtrl_SetItemHasChildren", (PyCFunction) _wrap_wxTreeCtrl_SetItemHasChildren, METH_VARARGS | METH_KEYWORDS }, | |
5611 | { "wxTreeCtrl_SetItemSelectedImage", (PyCFunction) _wrap_wxTreeCtrl_SetItemSelectedImage, METH_VARARGS | METH_KEYWORDS }, | |
5612 | { "wxTreeCtrl_SetItemImage", (PyCFunction) _wrap_wxTreeCtrl_SetItemImage, METH_VARARGS | METH_KEYWORDS }, | |
5613 | { "wxTreeCtrl_SetItemText", (PyCFunction) _wrap_wxTreeCtrl_SetItemText, METH_VARARGS | METH_KEYWORDS }, | |
5614 | { "wxTreeCtrl_GetItemSelectedImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemSelectedImage, METH_VARARGS | METH_KEYWORDS }, | |
5615 | { "wxTreeCtrl_GetItemImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemImage, METH_VARARGS | METH_KEYWORDS }, | |
5616 | { "wxTreeCtrl_GetItemText", (PyCFunction) _wrap_wxTreeCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS }, | |
5617 | { "wxTreeCtrl_SetSpacing", (PyCFunction) _wrap_wxTreeCtrl_SetSpacing, METH_VARARGS | METH_KEYWORDS }, | |
5618 | { "wxTreeCtrl_GetSpacing", (PyCFunction) _wrap_wxTreeCtrl_GetSpacing, METH_VARARGS | METH_KEYWORDS }, | |
5619 | { "wxTreeCtrl_SetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_SetStateImageList, METH_VARARGS | METH_KEYWORDS }, | |
5620 | { "wxTreeCtrl_SetImageList", (PyCFunction) _wrap_wxTreeCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS }, | |
5621 | { "wxTreeCtrl_GetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_GetStateImageList, METH_VARARGS | METH_KEYWORDS }, | |
5622 | { "wxTreeCtrl_GetImageList", (PyCFunction) _wrap_wxTreeCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS }, | |
5623 | { "wxTreeCtrl_SetIndent", (PyCFunction) _wrap_wxTreeCtrl_SetIndent, METH_VARARGS | METH_KEYWORDS }, | |
5624 | { "wxTreeCtrl_GetIndent", (PyCFunction) _wrap_wxTreeCtrl_GetIndent, METH_VARARGS | METH_KEYWORDS }, | |
5625 | { "wxTreeCtrl_GetCount", (PyCFunction) _wrap_wxTreeCtrl_GetCount, METH_VARARGS | METH_KEYWORDS }, | |
5626 | { "new_wxTreeCtrl", (PyCFunction) _wrap_new_wxTreeCtrl, METH_VARARGS | METH_KEYWORDS }, | |
5627 | { "wxTreeEvent_GetLabel", (PyCFunction) _wrap_wxTreeEvent_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
5628 | { "wxTreeEvent_GetCode", (PyCFunction) _wrap_wxTreeEvent_GetCode, METH_VARARGS | METH_KEYWORDS }, | |
5629 | { "wxTreeEvent_GetPoint", (PyCFunction) _wrap_wxTreeEvent_GetPoint, METH_VARARGS | METH_KEYWORDS }, | |
5630 | { "wxTreeEvent_GetOldItem", (PyCFunction) _wrap_wxTreeEvent_GetOldItem, METH_VARARGS | METH_KEYWORDS }, | |
5631 | { "wxTreeEvent_GetItem", (PyCFunction) _wrap_wxTreeEvent_GetItem, METH_VARARGS | METH_KEYWORDS }, | |
5632 | { "wxTreeItemData_SetId", (PyCFunction) _wrap_wxTreeItemData_SetId, METH_VARARGS | METH_KEYWORDS }, | |
5633 | { "wxTreeItemData_GetId", (PyCFunction) _wrap_wxTreeItemData_GetId, METH_VARARGS | METH_KEYWORDS }, | |
5634 | { "wxTreeItemData_SetData", (PyCFunction) _wrap_wxTreeItemData_SetData, METH_VARARGS | METH_KEYWORDS }, | |
5635 | { "wxTreeItemData_GetData", (PyCFunction) _wrap_wxTreeItemData_GetData, METH_VARARGS | METH_KEYWORDS }, | |
5636 | { "new_wxTreeItemData", (PyCFunction) _wrap_new_wxTreeItemData, METH_VARARGS | METH_KEYWORDS }, | |
5637 | { "wxTreeItemId_IsOk", (PyCFunction) _wrap_wxTreeItemId_IsOk, METH_VARARGS | METH_KEYWORDS }, | |
5638 | { "delete_wxTreeItemId", (PyCFunction) _wrap_delete_wxTreeItemId, METH_VARARGS | METH_KEYWORDS }, | |
5639 | { "new_wxTreeItemId", (PyCFunction) _wrap_new_wxTreeItemId, METH_VARARGS | METH_KEYWORDS }, | |
5640 | { "wxListCtrl_SetWindowStyleFlag", (PyCFunction) _wrap_wxListCtrl_SetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS }, | |
5641 | { "wxListCtrl_SetSingleStyle", (PyCFunction) _wrap_wxListCtrl_SetSingleStyle, METH_VARARGS | METH_KEYWORDS }, | |
5642 | { "wxListCtrl_SetItemText", (PyCFunction) _wrap_wxListCtrl_SetItemText, METH_VARARGS | METH_KEYWORDS }, | |
5643 | { "wxListCtrl_SetItemState", (PyCFunction) _wrap_wxListCtrl_SetItemState, METH_VARARGS | METH_KEYWORDS }, | |
5644 | { "wxListCtrl_SetItemPosition", (PyCFunction) _wrap_wxListCtrl_SetItemPosition, METH_VARARGS | METH_KEYWORDS }, | |
5645 | { "wxListCtrl_SetItemImage", (PyCFunction) _wrap_wxListCtrl_SetItemImage, METH_VARARGS | METH_KEYWORDS }, | |
5646 | { "wxListCtrl_SetItemData", (PyCFunction) _wrap_wxListCtrl_SetItemData, METH_VARARGS | METH_KEYWORDS }, | |
5647 | { "wxListCtrl_SetStringItem", (PyCFunction) _wrap_wxListCtrl_SetStringItem, METH_VARARGS | METH_KEYWORDS }, | |
5648 | { "wxListCtrl_SetItem", (PyCFunction) _wrap_wxListCtrl_SetItem, METH_VARARGS | METH_KEYWORDS }, | |
5649 | { "wxListCtrl_SetImageList", (PyCFunction) _wrap_wxListCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS }, | |
5650 | { "wxListCtrl_SetColumnWidth", (PyCFunction) _wrap_wxListCtrl_SetColumnWidth, METH_VARARGS | METH_KEYWORDS }, | |
5651 | { "wxListCtrl_SetColumn", (PyCFunction) _wrap_wxListCtrl_SetColumn, METH_VARARGS | METH_KEYWORDS }, | |
5652 | { "wxListCtrl_SetBackgroundColour", (PyCFunction) _wrap_wxListCtrl_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
5653 | { "wxListCtrl_ScrollList", (PyCFunction) _wrap_wxListCtrl_ScrollList, METH_VARARGS | METH_KEYWORDS }, | |
5654 | { "wxListCtrl_InsertImageStringItem", (PyCFunction) _wrap_wxListCtrl_InsertImageStringItem, METH_VARARGS | METH_KEYWORDS }, | |
5655 | { "wxListCtrl_InsertImageItem", (PyCFunction) _wrap_wxListCtrl_InsertImageItem, METH_VARARGS | METH_KEYWORDS }, | |
5656 | { "wxListCtrl_InsertStringItem", (PyCFunction) _wrap_wxListCtrl_InsertStringItem, METH_VARARGS | METH_KEYWORDS }, | |
5657 | { "wxListCtrl_InsertItem", (PyCFunction) _wrap_wxListCtrl_InsertItem, METH_VARARGS | METH_KEYWORDS }, | |
5658 | { "wxListCtrl_InsertColumn", (PyCFunction) _wrap_wxListCtrl_InsertColumn, METH_VARARGS | METH_KEYWORDS }, | |
5659 | { "wxListCtrl_InsertColumnWith", (PyCFunction) _wrap_wxListCtrl_InsertColumnWith, METH_VARARGS | METH_KEYWORDS }, | |
5660 | { "wxListCtrl_HitTest", (PyCFunction) _wrap_wxListCtrl_HitTest, METH_VARARGS | METH_KEYWORDS }, | |
5661 | { "wxListCtrl_GetTopItem", (PyCFunction) _wrap_wxListCtrl_GetTopItem, METH_VARARGS | METH_KEYWORDS }, | |
5662 | { "wxListCtrl_GetSelectedItemCount", (PyCFunction) _wrap_wxListCtrl_GetSelectedItemCount, METH_VARARGS | METH_KEYWORDS }, | |
5663 | { "wxListCtrl_GetNextItem", (PyCFunction) _wrap_wxListCtrl_GetNextItem, METH_VARARGS | METH_KEYWORDS }, | |
5664 | { "wxListCtrl_GetItemText", (PyCFunction) _wrap_wxListCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS }, | |
5665 | { "wxListCtrl_GetItemSpacing", (PyCFunction) _wrap_wxListCtrl_GetItemSpacing, METH_VARARGS | METH_KEYWORDS }, | |
5666 | { "wxListCtrl_GetItemCount", (PyCFunction) _wrap_wxListCtrl_GetItemCount, METH_VARARGS | METH_KEYWORDS }, | |
5667 | { "wxListCtrl_GetItemState", (PyCFunction) _wrap_wxListCtrl_GetItemState, METH_VARARGS | METH_KEYWORDS }, | |
5668 | { "wxListCtrl_GetItemRect", (PyCFunction) _wrap_wxListCtrl_GetItemRect, METH_VARARGS | METH_KEYWORDS }, | |
5669 | { "wxListCtrl_GetItemPosition", (PyCFunction) _wrap_wxListCtrl_GetItemPosition, METH_VARARGS | METH_KEYWORDS }, | |
5670 | { "wxListCtrl_GetItem", (PyCFunction) _wrap_wxListCtrl_GetItem, METH_VARARGS | METH_KEYWORDS }, | |
5671 | { "wxListCtrl_GetItemData", (PyCFunction) _wrap_wxListCtrl_GetItemData, METH_VARARGS | METH_KEYWORDS }, | |
5672 | { "wxListCtrl_GetImageList", (PyCFunction) _wrap_wxListCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS }, | |
5673 | { "wxListCtrl_GetCountPerPage", (PyCFunction) _wrap_wxListCtrl_GetCountPerPage, METH_VARARGS | METH_KEYWORDS }, | |
5674 | { "wxListCtrl_GetColumnWidth", (PyCFunction) _wrap_wxListCtrl_GetColumnWidth, METH_VARARGS | METH_KEYWORDS }, | |
5675 | { "wxListCtrl_GetColumn", (PyCFunction) _wrap_wxListCtrl_GetColumn, METH_VARARGS | METH_KEYWORDS }, | |
5676 | { "wxListCtrl_FindItemAtPos", (PyCFunction) _wrap_wxListCtrl_FindItemAtPos, METH_VARARGS | METH_KEYWORDS }, | |
5677 | { "wxListCtrl_FindItemData", (PyCFunction) _wrap_wxListCtrl_FindItemData, METH_VARARGS | METH_KEYWORDS }, | |
5678 | { "wxListCtrl_FindItem", (PyCFunction) _wrap_wxListCtrl_FindItem, METH_VARARGS | METH_KEYWORDS }, | |
5679 | { "wxListCtrl_EnsureVisible", (PyCFunction) _wrap_wxListCtrl_EnsureVisible, METH_VARARGS | METH_KEYWORDS }, | |
5680 | { "wxListCtrl_EditLabel", (PyCFunction) _wrap_wxListCtrl_EditLabel, METH_VARARGS | METH_KEYWORDS }, | |
5681 | { "wxListCtrl_ClearAll", (PyCFunction) _wrap_wxListCtrl_ClearAll, METH_VARARGS | METH_KEYWORDS }, | |
5682 | { "wxListCtrl_DeleteAllColumns", (PyCFunction) _wrap_wxListCtrl_DeleteAllColumns, METH_VARARGS | METH_KEYWORDS }, | |
5683 | { "wxListCtrl_DeleteColumn", (PyCFunction) _wrap_wxListCtrl_DeleteColumn, METH_VARARGS | METH_KEYWORDS }, | |
5684 | { "wxListCtrl_DeleteAllItems", (PyCFunction) _wrap_wxListCtrl_DeleteAllItems, METH_VARARGS | METH_KEYWORDS }, | |
5685 | { "wxListCtrl_DeleteItem", (PyCFunction) _wrap_wxListCtrl_DeleteItem, METH_VARARGS | METH_KEYWORDS }, | |
5686 | { "wxListCtrl_Arrange", (PyCFunction) _wrap_wxListCtrl_Arrange, METH_VARARGS | METH_KEYWORDS }, | |
5687 | { "new_wxListCtrl", (PyCFunction) _wrap_new_wxListCtrl, METH_VARARGS | METH_KEYWORDS }, | |
5688 | { "wxListEvent_m_item_get", (PyCFunction) _wrap_wxListEvent_m_item_get, METH_VARARGS | METH_KEYWORDS }, | |
5689 | { "wxListEvent_m_item_set", (PyCFunction) _wrap_wxListEvent_m_item_set, METH_VARARGS | METH_KEYWORDS }, | |
5690 | { "wxListEvent_m_pointDrag_get", (PyCFunction) _wrap_wxListEvent_m_pointDrag_get, METH_VARARGS | METH_KEYWORDS }, | |
5691 | { "wxListEvent_m_pointDrag_set", (PyCFunction) _wrap_wxListEvent_m_pointDrag_set, METH_VARARGS | METH_KEYWORDS }, | |
5692 | { "wxListEvent_m_cancelled_get", (PyCFunction) _wrap_wxListEvent_m_cancelled_get, METH_VARARGS | METH_KEYWORDS }, | |
5693 | { "wxListEvent_m_cancelled_set", (PyCFunction) _wrap_wxListEvent_m_cancelled_set, METH_VARARGS | METH_KEYWORDS }, | |
5694 | { "wxListEvent_m_col_get", (PyCFunction) _wrap_wxListEvent_m_col_get, METH_VARARGS | METH_KEYWORDS }, | |
5695 | { "wxListEvent_m_col_set", (PyCFunction) _wrap_wxListEvent_m_col_set, METH_VARARGS | METH_KEYWORDS }, | |
5696 | { "wxListEvent_m_oldItemIndex_get", (PyCFunction) _wrap_wxListEvent_m_oldItemIndex_get, METH_VARARGS | METH_KEYWORDS }, | |
5697 | { "wxListEvent_m_oldItemIndex_set", (PyCFunction) _wrap_wxListEvent_m_oldItemIndex_set, METH_VARARGS | METH_KEYWORDS }, | |
5698 | { "wxListEvent_m_itemIndex_get", (PyCFunction) _wrap_wxListEvent_m_itemIndex_get, METH_VARARGS | METH_KEYWORDS }, | |
5699 | { "wxListEvent_m_itemIndex_set", (PyCFunction) _wrap_wxListEvent_m_itemIndex_set, METH_VARARGS | METH_KEYWORDS }, | |
5700 | { "wxListEvent_m_code_get", (PyCFunction) _wrap_wxListEvent_m_code_get, METH_VARARGS | METH_KEYWORDS }, | |
5701 | { "wxListEvent_m_code_set", (PyCFunction) _wrap_wxListEvent_m_code_set, METH_VARARGS | METH_KEYWORDS }, | |
5702 | { "delete_wxListItem", (PyCFunction) _wrap_delete_wxListItem, METH_VARARGS | METH_KEYWORDS }, | |
5703 | { "new_wxListItem", (PyCFunction) _wrap_new_wxListItem, METH_VARARGS | METH_KEYWORDS }, | |
5704 | { "wxListItem_m_width_get", (PyCFunction) _wrap_wxListItem_m_width_get, METH_VARARGS | METH_KEYWORDS }, | |
5705 | { "wxListItem_m_width_set", (PyCFunction) _wrap_wxListItem_m_width_set, METH_VARARGS | METH_KEYWORDS }, | |
5706 | { "wxListItem_m_format_get", (PyCFunction) _wrap_wxListItem_m_format_get, METH_VARARGS | METH_KEYWORDS }, | |
5707 | { "wxListItem_m_format_set", (PyCFunction) _wrap_wxListItem_m_format_set, METH_VARARGS | METH_KEYWORDS }, | |
5708 | { "wxListItem_m_data_get", (PyCFunction) _wrap_wxListItem_m_data_get, METH_VARARGS | METH_KEYWORDS }, | |
5709 | { "wxListItem_m_data_set", (PyCFunction) _wrap_wxListItem_m_data_set, METH_VARARGS | METH_KEYWORDS }, | |
5710 | { "wxListItem_m_image_get", (PyCFunction) _wrap_wxListItem_m_image_get, METH_VARARGS | METH_KEYWORDS }, | |
5711 | { "wxListItem_m_image_set", (PyCFunction) _wrap_wxListItem_m_image_set, METH_VARARGS | METH_KEYWORDS }, | |
5712 | { "wxListItem_m_text_get", (PyCFunction) _wrap_wxListItem_m_text_get, METH_VARARGS | METH_KEYWORDS }, | |
5713 | { "wxListItem_m_text_set", (PyCFunction) _wrap_wxListItem_m_text_set, METH_VARARGS | METH_KEYWORDS }, | |
5714 | { "wxListItem_m_stateMask_get", (PyCFunction) _wrap_wxListItem_m_stateMask_get, METH_VARARGS | METH_KEYWORDS }, | |
5715 | { "wxListItem_m_stateMask_set", (PyCFunction) _wrap_wxListItem_m_stateMask_set, METH_VARARGS | METH_KEYWORDS }, | |
5716 | { "wxListItem_m_state_get", (PyCFunction) _wrap_wxListItem_m_state_get, METH_VARARGS | METH_KEYWORDS }, | |
5717 | { "wxListItem_m_state_set", (PyCFunction) _wrap_wxListItem_m_state_set, METH_VARARGS | METH_KEYWORDS }, | |
5718 | { "wxListItem_m_col_get", (PyCFunction) _wrap_wxListItem_m_col_get, METH_VARARGS | METH_KEYWORDS }, | |
5719 | { "wxListItem_m_col_set", (PyCFunction) _wrap_wxListItem_m_col_set, METH_VARARGS | METH_KEYWORDS }, | |
5720 | { "wxListItem_m_itemId_get", (PyCFunction) _wrap_wxListItem_m_itemId_get, METH_VARARGS | METH_KEYWORDS }, | |
5721 | { "wxListItem_m_itemId_set", (PyCFunction) _wrap_wxListItem_m_itemId_set, METH_VARARGS | METH_KEYWORDS }, | |
5722 | { "wxListItem_m_mask_get", (PyCFunction) _wrap_wxListItem_m_mask_get, METH_VARARGS | METH_KEYWORDS }, | |
5723 | { "wxListItem_m_mask_set", (PyCFunction) _wrap_wxListItem_m_mask_set, METH_VARARGS | METH_KEYWORDS }, | |
5724 | { NULL, NULL } | |
5725 | }; | |
5726 | #ifdef __cplusplus | |
5727 | } | |
5728 | #endif | |
5729 | /* | |
5730 | * This table is used by the pointer type-checker | |
5731 | */ | |
5732 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
5733 | { "_wxAcceleratorTable","_class_wxAcceleratorTable",0}, | |
5734 | { "_wxEvent","_class_wxTreeEvent",SwigwxTreeEventTowxEvent}, | |
5735 | { "_wxEvent","_wxTreeEvent",SwigwxTreeEventTowxEvent}, | |
5736 | { "_wxEvent","_class_wxListEvent",SwigwxListEventTowxEvent}, | |
5737 | { "_wxEvent","_wxListEvent",SwigwxListEventTowxEvent}, | |
5738 | { "_wxEvent","_class_wxEvent",0}, | |
5739 | { "_class_wxActivateEvent","_wxActivateEvent",0}, | |
5740 | { "_signed_long","_long",0}, | |
5741 | { "_wxMenuEvent","_class_wxMenuEvent",0}, | |
5742 | { "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0}, | |
5743 | { "_wxBitmapDataObject","_class_wxBitmapDataObject",0}, | |
5744 | { "_class_wxPyCommandEvent","_wxPyCommandEvent",0}, | |
5745 | { "_wxPrintQuality","_wxCoord",0}, | |
5746 | { "_wxPrintQuality","_int",0}, | |
5747 | { "_wxPrintQuality","_signed_int",0}, | |
5748 | { "_wxPrintQuality","_unsigned_int",0}, | |
5749 | { "_wxPrintQuality","_wxWindowID",0}, | |
5750 | { "_wxPrintQuality","_uint",0}, | |
5751 | { "_wxPrintQuality","_EBool",0}, | |
5752 | { "_wxPrintQuality","_size_t",0}, | |
5753 | { "_class_wxCustomDataObject","_wxCustomDataObject",0}, | |
5754 | { "_class_wxRegionIterator","_wxRegionIterator",0}, | |
5755 | { "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0}, | |
5756 | { "_class_wxMenuBar","_wxMenuBar",0}, | |
5757 | { "_class_wxPyTreeItemData","_wxPyTreeItemData",0}, | |
5758 | { "_class_wxEvtHandler","_class_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler}, | |
5759 | { "_class_wxEvtHandler","_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler}, | |
5760 | { "_class_wxEvtHandler","_class_wxListCtrl",SwigwxListCtrlTowxEvtHandler}, | |
5761 | { "_class_wxEvtHandler","_wxListCtrl",SwigwxListCtrlTowxEvtHandler}, | |
5762 | { "_class_wxEvtHandler","_wxEvtHandler",0}, | |
5763 | { "_wxPaintEvent","_class_wxPaintEvent",0}, | |
5764 | { "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0}, | |
5765 | { "_wxCursor","_class_wxCursor",0}, | |
5766 | { "_wxNotifyEvent","_class_wxTreeEvent",SwigwxTreeEventTowxNotifyEvent}, | |
5767 | { "_wxNotifyEvent","_wxTreeEvent",SwigwxTreeEventTowxNotifyEvent}, | |
5768 | { "_wxNotifyEvent","_class_wxNotifyEvent",0}, | |
5769 | { "_class_wxTreeCtrl","_wxTreeCtrl",0}, | |
5770 | { "_wxMask","_class_wxMask",0}, | |
5771 | { "_wxPen","_class_wxPen",0}, | |
5772 | { "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0}, | |
5773 | { "_byte","_unsigned_char",0}, | |
5774 | { "_wxDataObject","_class_wxDataObject",0}, | |
5775 | { "_wxStaticBox","_class_wxStaticBox",0}, | |
5776 | { "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0}, | |
5777 | { "_wxPyDropSource","_class_wxPyDropSource",0}, | |
5778 | { "_wxChoice","_class_wxChoice",0}, | |
5779 | { "_wxSlider","_class_wxSlider",0}, | |
5780 | { "_long","_wxDash",0}, | |
5781 | { "_long","_unsigned_long",0}, | |
5782 | { "_long","_signed_long",0}, | |
5783 | { "_wxImageList","_class_wxImageList",0}, | |
5784 | { "_wxDataObjectSimple","_class_wxDataObjectSimple",0}, | |
5785 | { "_wxDropFilesEvent","_class_wxDropFilesEvent",0}, | |
5786 | { "_wxBitmapButton","_class_wxBitmapButton",0}, | |
5787 | { "_class_wxAcceleratorTable","_wxAcceleratorTable",0}, | |
5788 | { "_class_wxClipboard","_wxClipboard",0}, | |
5789 | { "_class_wxGauge","_wxGauge",0}, | |
5790 | { "_wxDC","_class_wxDC",0}, | |
5791 | { "_class_wxBitmapDataObject","_wxBitmapDataObject",0}, | |
5792 | { "_wxListEvent","_class_wxListEvent",0}, | |
5793 | { "_wxSpinEvent","_class_wxSpinEvent",0}, | |
5794 | { "_size_t","_wxCoord",0}, | |
5795 | { "_size_t","_wxPrintQuality",0}, | |
5796 | { "_size_t","_unsigned_int",0}, | |
5797 | { "_size_t","_int",0}, | |
5798 | { "_size_t","_wxWindowID",0}, | |
5799 | { "_size_t","_uint",0}, | |
5800 | { "_class_wxRealPoint","_wxRealPoint",0}, | |
5801 | { "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0}, | |
5802 | { "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0}, | |
5803 | { "_class_wxMenuItem","_wxMenuItem",0}, | |
5804 | { "_class_wxPaintEvent","_wxPaintEvent",0}, | |
5805 | { "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0}, | |
5806 | { "_class_wxPostScriptDC","_wxPostScriptDC",0}, | |
5807 | { "_wxPanel","_class_wxPanel",0}, | |
5808 | { "_wxInitDialogEvent","_class_wxInitDialogEvent",0}, | |
5809 | { "_wxCheckBox","_class_wxCheckBox",0}, | |
5810 | { "_wxPyEvent","_class_wxPyEvent",0}, | |
5811 | { "_wxTextCtrl","_class_wxTextCtrl",0}, | |
5812 | { "_class_wxMask","_wxMask",0}, | |
5813 | { "_wxTextDataObject","_class_wxTextDataObject",0}, | |
5814 | { "_class_wxKeyEvent","_wxKeyEvent",0}, | |
5815 | { "_wxColour","_class_wxColour",0}, | |
5816 | { "_class_wxDialog","_wxDialog",0}, | |
5817 | { "_class_wxFileDataObject","_wxFileDataObject",0}, | |
5818 | { "_wxIdleEvent","_class_wxIdleEvent",0}, | |
5819 | { "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0}, | |
5820 | { "_class_wxDataObject","_wxDataObject",0}, | |
5821 | { "_wxStaticLine","_class_wxStaticLine",0}, | |
5822 | { "_wxBrush","_class_wxBrush",0}, | |
5823 | { "_wxDataFormat","_class_wxDataFormat",0}, | |
5824 | { "_class_wxDataObjectSimple","_wxDataObjectSimple",0}, | |
5825 | { "_wxShowEvent","_class_wxShowEvent",0}, | |
5826 | { "_uint","_wxCoord",0}, | |
5827 | { "_uint","_wxPrintQuality",0}, | |
5828 | { "_uint","_size_t",0}, | |
5829 | { "_uint","_unsigned_int",0}, | |
5830 | { "_uint","_int",0}, | |
5831 | { "_uint","_wxWindowID",0}, | |
5832 | { "_wxPyValidator","_class_wxPyValidator",0}, | |
5833 | { "_class_wxEvent","_class_wxTreeEvent",SwigwxTreeEventTowxEvent}, | |
5834 | { "_class_wxEvent","_wxTreeEvent",SwigwxTreeEventTowxEvent}, | |
5835 | { "_class_wxEvent","_class_wxListEvent",SwigwxListEventTowxEvent}, | |
5836 | { "_class_wxEvent","_wxListEvent",SwigwxListEventTowxEvent}, | |
5837 | { "_class_wxEvent","_wxEvent",0}, | |
5838 | { "_wxCheckListBox","_class_wxCheckListBox",0}, | |
5839 | { "_wxRect","_class_wxRect",0}, | |
5840 | { "_wxCommandEvent","_class_wxTreeEvent",SwigwxTreeEventTowxCommandEvent}, | |
5841 | { "_wxCommandEvent","_wxTreeEvent",SwigwxTreeEventTowxCommandEvent}, | |
5842 | { "_wxCommandEvent","_class_wxListEvent",SwigwxListEventTowxCommandEvent}, | |
5843 | { "_wxCommandEvent","_wxListEvent",SwigwxListEventTowxCommandEvent}, | |
5844 | { "_wxCommandEvent","_class_wxCommandEvent",0}, | |
5845 | { "_wxSizeEvent","_class_wxSizeEvent",0}, | |
5846 | { "_wxPoint","_class_wxPoint",0}, | |
5847 | { "_class_wxButton","_wxButton",0}, | |
5848 | { "_wxRadioBox","_class_wxRadioBox",0}, | |
5849 | { "_wxBitmap","_class_wxBitmap",0}, | |
5850 | { "_wxPyTimer","_class_wxPyTimer",0}, | |
5851 | { "_wxWindowDC","_class_wxWindowDC",0}, | |
5852 | { "_wxScrollBar","_class_wxScrollBar",0}, | |
5853 | { "_wxSpinButton","_class_wxSpinButton",0}, | |
5854 | { "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0}, | |
5855 | { "_class_wxNotifyEvent","_class_wxTreeEvent",SwigwxTreeEventTowxNotifyEvent}, | |
5856 | { "_class_wxNotifyEvent","_wxTreeEvent",SwigwxTreeEventTowxNotifyEvent}, | |
5857 | { "_class_wxNotifyEvent","_wxNotifyEvent",0}, | |
5858 | { "_class_wxValidator","_wxValidator",0}, | |
5859 | { "_class_wxPyEvent","_wxPyEvent",0}, | |
5860 | { "_class_wxIconizeEvent","_wxIconizeEvent",0}, | |
5861 | { "_class_wxStaticBitmap","_wxStaticBitmap",0}, | |
5862 | { "_wxListItem","_class_wxListItem",0}, | |
5863 | { "_wxDropTarget","_class_wxDropTarget",0}, | |
5864 | { "_class_wxStaticLine","_wxStaticLine",0}, | |
5865 | { "_wxScrollEvent","_class_wxScrollEvent",0}, | |
5866 | { "_EBool","_wxCoord",0}, | |
5867 | { "_EBool","_wxPrintQuality",0}, | |
5868 | { "_EBool","_signed_int",0}, | |
5869 | { "_EBool","_int",0}, | |
5870 | { "_EBool","_wxWindowID",0}, | |
5871 | { "_class_wxRegion","_wxRegion",0}, | |
5872 | { "_class_wxDataFormat","_wxDataFormat",0}, | |
5873 | { "_class_wxDropFilesEvent","_wxDropFilesEvent",0}, | |
5874 | { "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0}, | |
5875 | { "_wxStaticText","_class_wxStaticText",0}, | |
5876 | { "_wxFont","_class_wxFont",0}, | |
5877 | { "_class_wxPyDropTarget","_wxPyDropTarget",0}, | |
5878 | { "_wxCloseEvent","_class_wxCloseEvent",0}, | |
5879 | { "_unsigned_long","_wxDash",0}, | |
5880 | { "_unsigned_long","_long",0}, | |
5881 | { "_class_wxRect","_wxRect",0}, | |
5882 | { "_class_wxDC","_wxDC",0}, | |
5883 | { "_wxScrollWinEvent","_class_wxScrollWinEvent",0}, | |
5884 | { "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0}, | |
5885 | { "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0}, | |
5886 | { "_class_wxTreeEvent","_wxTreeEvent",0}, | |
5887 | { "_class_wxPyTimer","_wxPyTimer",0}, | |
5888 | { "_wxFocusEvent","_class_wxFocusEvent",0}, | |
5889 | { "_wxMaximizeEvent","_class_wxMaximizeEvent",0}, | |
5890 | { "_class_wxSpinButton","_wxSpinButton",0}, | |
5891 | { "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0}, | |
5892 | { "_class_wxPanel","_wxPanel",0}, | |
5893 | { "_class_wxCheckBox","_wxCheckBox",0}, | |
5894 | { "_wxComboBox","_class_wxComboBox",0}, | |
5895 | { "_wxRadioButton","_class_wxRadioButton",0}, | |
5896 | { "_signed_int","_wxCoord",0}, | |
5897 | { "_signed_int","_wxPrintQuality",0}, | |
5898 | { "_signed_int","_EBool",0}, | |
5899 | { "_signed_int","_wxWindowID",0}, | |
5900 | { "_signed_int","_int",0}, | |
5901 | { "_class_wxTextCtrl","_wxTextCtrl",0}, | |
5902 | { "_wxLayoutConstraints","_class_wxLayoutConstraints",0}, | |
5903 | { "_class_wxTextDataObject","_wxTextDataObject",0}, | |
5904 | { "_wxMenu","_class_wxMenu",0}, | |
5905 | { "_class_wxMoveEvent","_wxMoveEvent",0}, | |
5906 | { "_wxListBox","_class_wxListBox",0}, | |
5907 | { "_wxScreenDC","_class_wxScreenDC",0}, | |
5908 | { "_WXTYPE","_short",0}, | |
5909 | { "_WXTYPE","_signed_short",0}, | |
5910 | { "_WXTYPE","_unsigned_short",0}, | |
5911 | { "_class_wxDropTarget","_wxDropTarget",0}, | |
5912 | { "_class_wxBrush","_wxBrush",0}, | |
5913 | { "_unsigned_short","_WXTYPE",0}, | |
5914 | { "_unsigned_short","_short",0}, | |
5915 | { "_class_wxWindow","_class_wxTreeCtrl",SwigwxTreeCtrlTowxWindow}, | |
5916 | { "_class_wxWindow","_wxTreeCtrl",SwigwxTreeCtrlTowxWindow}, | |
5917 | { "_class_wxWindow","_class_wxListCtrl",SwigwxListCtrlTowxWindow}, | |
5918 | { "_class_wxWindow","_wxListCtrl",SwigwxListCtrlTowxWindow}, | |
5919 | { "_class_wxWindow","_wxWindow",0}, | |
5920 | { "_class_wxStaticText","_wxStaticText",0}, | |
5921 | { "_class_wxFont","_wxFont",0}, | |
5922 | { "_wxClipboard","_class_wxClipboard",0}, | |
5923 | { "_class_wxPyValidator","_wxPyValidator",0}, | |
5924 | { "_class_wxCloseEvent","_wxCloseEvent",0}, | |
5925 | { "_wxBusyInfo","_class_wxBusyInfo",0}, | |
5926 | { "_class_wxMenuEvent","_wxMenuEvent",0}, | |
5927 | { "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0}, | |
5928 | { "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0}, | |
5929 | { "_wxClientDC","_class_wxClientDC",0}, | |
5930 | { "_wxMouseEvent","_class_wxMouseEvent",0}, | |
5931 | { "_wxListCtrl","_class_wxListCtrl",0}, | |
5932 | { "_class_wxPoint","_wxPoint",0}, | |
5933 | { "_wxRealPoint","_class_wxRealPoint",0}, | |
5934 | { "_class_wxRadioBox","_wxRadioBox",0}, | |
5935 | { "_signed_short","_WXTYPE",0}, | |
5936 | { "_signed_short","_short",0}, | |
5937 | { "_wxMemoryDC","_class_wxMemoryDC",0}, | |
5938 | { "_wxPyTextDataObject","_class_wxPyTextDataObject",0}, | |
5939 | { "_wxPaintDC","_class_wxPaintDC",0}, | |
5940 | { "_class_wxWindowDC","_wxWindowDC",0}, | |
5941 | { "_class_wxFocusEvent","_wxFocusEvent",0}, | |
5942 | { "_class_wxMaximizeEvent","_wxMaximizeEvent",0}, | |
5943 | { "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0}, | |
5944 | { "_class_wxCursor","_wxCursor",0}, | |
5945 | { "_wxPostScriptDC","_class_wxPostScriptDC",0}, | |
5946 | { "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0}, | |
5947 | { "_wxScrolledWindow","_class_wxScrolledWindow",0}, | |
5948 | { "_wxTreeItemId","_class_wxTreeItemId",0}, | |
5949 | { "_unsigned_char","_byte",0}, | |
5950 | { "_class_wxMenu","_wxMenu",0}, | |
5951 | { "_wxControl","_class_wxTreeCtrl",SwigwxTreeCtrlTowxControl}, | |
5952 | { "_wxControl","_wxTreeCtrl",SwigwxTreeCtrlTowxControl}, | |
5953 | { "_wxControl","_class_wxListCtrl",SwigwxListCtrlTowxControl}, | |
5954 | { "_wxControl","_wxListCtrl",SwigwxListCtrlTowxControl}, | |
5955 | { "_wxControl","_class_wxControl",0}, | |
5956 | { "_class_wxListBox","_wxListBox",0}, | |
5957 | { "_unsigned_int","_wxCoord",0}, | |
5958 | { "_unsigned_int","_wxPrintQuality",0}, | |
5959 | { "_unsigned_int","_size_t",0}, | |
5960 | { "_unsigned_int","_uint",0}, | |
5961 | { "_unsigned_int","_wxWindowID",0}, | |
5962 | { "_unsigned_int","_int",0}, | |
5963 | { "_wxIcon","_class_wxIcon",0}, | |
5964 | { "_wxDialog","_class_wxDialog",0}, | |
5965 | { "_class_wxListItem","_wxListItem",0}, | |
5966 | { "_class_wxPen","_wxPen",0}, | |
5967 | { "_short","_WXTYPE",0}, | |
5968 | { "_short","_unsigned_short",0}, | |
5969 | { "_short","_signed_short",0}, | |
5970 | { "_class_wxStaticBox","_wxStaticBox",0}, | |
5971 | { "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0}, | |
5972 | { "_class_wxPyDropSource","_wxPyDropSource",0}, | |
5973 | { "_class_wxScrollEvent","_wxScrollEvent",0}, | |
5974 | { "_wxJoystickEvent","_class_wxJoystickEvent",0}, | |
5975 | { "_class_wxChoice","_wxChoice",0}, | |
5976 | { "_class_wxSlider","_wxSlider",0}, | |
5977 | { "_class_wxImageList","_wxImageList",0}, | |
5978 | { "_class_wxBitmapButton","_wxBitmapButton",0}, | |
5979 | { "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0}, | |
5980 | { "_wxWindowID","_wxCoord",0}, | |
5981 | { "_wxWindowID","_wxPrintQuality",0}, | |
5982 | { "_wxWindowID","_size_t",0}, | |
5983 | { "_wxWindowID","_EBool",0}, | |
5984 | { "_wxWindowID","_uint",0}, | |
5985 | { "_wxWindowID","_int",0}, | |
5986 | { "_wxWindowID","_signed_int",0}, | |
5987 | { "_wxWindowID","_unsigned_int",0}, | |
5988 | { "_class_wxScrollWinEvent","_wxScrollWinEvent",0}, | |
5989 | { "_int","_wxCoord",0}, | |
5990 | { "_int","_wxPrintQuality",0}, | |
5991 | { "_int","_size_t",0}, | |
5992 | { "_int","_EBool",0}, | |
5993 | { "_int","_uint",0}, | |
5994 | { "_int","_wxWindowID",0}, | |
5995 | { "_int","_unsigned_int",0}, | |
5996 | { "_int","_signed_int",0}, | |
5997 | { "_class_wxMouseEvent","_wxMouseEvent",0}, | |
5998 | { "_wxPyCommandEvent","_class_wxPyCommandEvent",0}, | |
5999 | { "_class_wxListEvent","_wxListEvent",0}, | |
6000 | { "_class_wxSpinEvent","_wxSpinEvent",0}, | |
6001 | { "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0}, | |
6002 | { "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0}, | |
6003 | { "_wxButton","_class_wxButton",0}, | |
6004 | { "_wxSize","_class_wxSize",0}, | |
6005 | { "_wxRegionIterator","_class_wxRegionIterator",0}, | |
6006 | { "_class_wxPyTextDataObject","_wxPyTextDataObject",0}, | |
6007 | { "_wxPyTreeItemData","_class_wxPyTreeItemData",0}, | |
6008 | { "_class_wxPaintDC","_wxPaintDC",0}, | |
6009 | { "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0}, | |
6010 | { "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0}, | |
6011 | { "_class_wxInitDialogEvent","_wxInitDialogEvent",0}, | |
6012 | { "_class_wxComboBox","_wxComboBox",0}, | |
6013 | { "_class_wxRadioButton","_wxRadioButton",0}, | |
6014 | { "_wxValidator","_class_wxValidator",0}, | |
6015 | { "_class_wxTreeItemId","_wxTreeItemId",0}, | |
6016 | { "_wxTreeCtrl","_class_wxTreeCtrl",0}, | |
6017 | { "_class_wxLayoutConstraints","_wxLayoutConstraints",0}, | |
6018 | { "_wxIconizeEvent","_class_wxIconizeEvent",0}, | |
6019 | { "_class_wxControl","_class_wxTreeCtrl",SwigwxTreeCtrlTowxControl}, | |
6020 | { "_class_wxControl","_wxTreeCtrl",SwigwxTreeCtrlTowxControl}, | |
6021 | { "_class_wxControl","_class_wxListCtrl",SwigwxListCtrlTowxControl}, | |
6022 | { "_class_wxControl","_wxListCtrl",SwigwxListCtrlTowxControl}, | |
6023 | { "_class_wxControl","_wxControl",0}, | |
6024 | { "_wxStaticBitmap","_class_wxStaticBitmap",0}, | |
6025 | { "_class_wxIcon","_wxIcon",0}, | |
6026 | { "_class_wxColour","_wxColour",0}, | |
6027 | { "_class_wxScreenDC","_wxScreenDC",0}, | |
6028 | { "_wxPalette","_class_wxPalette",0}, | |
6029 | { "_class_wxIdleEvent","_wxIdleEvent",0}, | |
6030 | { "_wxCoord","_int",0}, | |
6031 | { "_wxCoord","_signed_int",0}, | |
6032 | { "_wxCoord","_unsigned_int",0}, | |
6033 | { "_wxCoord","_wxWindowID",0}, | |
6034 | { "_wxCoord","_uint",0}, | |
6035 | { "_wxCoord","_EBool",0}, | |
6036 | { "_wxCoord","_size_t",0}, | |
6037 | { "_wxCoord","_wxPrintQuality",0}, | |
6038 | { "_wxEraseEvent","_class_wxEraseEvent",0}, | |
6039 | { "_wxDataObjectComposite","_class_wxDataObjectComposite",0}, | |
6040 | { "_class_wxJoystickEvent","_wxJoystickEvent",0}, | |
6041 | { "_wxRegion","_class_wxRegion",0}, | |
6042 | { "_class_wxShowEvent","_wxShowEvent",0}, | |
6043 | { "_wxPyDropTarget","_class_wxPyDropTarget",0}, | |
6044 | { "_wxActivateEvent","_class_wxActivateEvent",0}, | |
6045 | { "_wxGauge","_class_wxGauge",0}, | |
6046 | { "_class_wxCheckListBox","_wxCheckListBox",0}, | |
6047 | { "_class_wxBusyInfo","_wxBusyInfo",0}, | |
6048 | { "_class_wxCommandEvent","_class_wxTreeEvent",SwigwxTreeEventTowxCommandEvent}, | |
6049 | { "_class_wxCommandEvent","_wxTreeEvent",SwigwxTreeEventTowxCommandEvent}, | |
6050 | { "_class_wxCommandEvent","_class_wxListEvent",SwigwxListEventTowxCommandEvent}, | |
6051 | { "_class_wxCommandEvent","_wxListEvent",SwigwxListEventTowxCommandEvent}, | |
6052 | { "_class_wxCommandEvent","_wxCommandEvent",0}, | |
6053 | { "_class_wxClientDC","_wxClientDC",0}, | |
6054 | { "_class_wxSizeEvent","_wxSizeEvent",0}, | |
6055 | { "_class_wxListCtrl","_wxListCtrl",0}, | |
6056 | { "_wxCustomDataObject","_class_wxCustomDataObject",0}, | |
6057 | { "_class_wxSize","_wxSize",0}, | |
6058 | { "_class_wxBitmap","_wxBitmap",0}, | |
6059 | { "_class_wxMemoryDC","_wxMemoryDC",0}, | |
6060 | { "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0}, | |
6061 | { "_wxMenuBar","_class_wxMenuBar",0}, | |
6062 | { "_wxTreeEvent","_class_wxTreeEvent",0}, | |
6063 | { "_wxEvtHandler","_class_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler}, | |
6064 | { "_wxEvtHandler","_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler}, | |
6065 | { "_wxEvtHandler","_class_wxListCtrl",SwigwxListCtrlTowxEvtHandler}, | |
6066 | { "_wxEvtHandler","_wxListCtrl",SwigwxListCtrlTowxEvtHandler}, | |
6067 | { "_wxEvtHandler","_class_wxEvtHandler",0}, | |
6068 | { "_wxMenuItem","_class_wxMenuItem",0}, | |
6069 | { "_class_wxScrollBar","_wxScrollBar",0}, | |
6070 | { "_wxDash","_unsigned_long",0}, | |
6071 | { "_wxDash","_long",0}, | |
6072 | { "_class_wxScrolledWindow","_wxScrolledWindow",0}, | |
6073 | { "_wxKeyEvent","_class_wxKeyEvent",0}, | |
6074 | { "_wxMoveEvent","_class_wxMoveEvent",0}, | |
6075 | { "_class_wxPalette","_wxPalette",0}, | |
6076 | { "_wxFileDataObject","_class_wxFileDataObject",0}, | |
6077 | { "_class_wxEraseEvent","_wxEraseEvent",0}, | |
6078 | { "_class_wxDataObjectComposite","_wxDataObjectComposite",0}, | |
6079 | { "_wxWindow","_class_wxTreeCtrl",SwigwxTreeCtrlTowxWindow}, | |
6080 | { "_wxWindow","_wxTreeCtrl",SwigwxTreeCtrlTowxWindow}, | |
6081 | { "_wxWindow","_class_wxListCtrl",SwigwxListCtrlTowxWindow}, | |
6082 | { "_wxWindow","_wxListCtrl",SwigwxListCtrlTowxWindow}, | |
6083 | { "_wxWindow","_class_wxWindow",0}, | |
6084 | { "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0}, | |
6085 | {0,0,0}}; | |
6086 | ||
6087 | static PyObject *SWIG_globals; | |
6088 | #ifdef __cplusplus | |
6089 | extern "C" | |
6090 | #endif | |
6091 | SWIGEXPORT(void) initcontrols2c() { | |
6092 | PyObject *m, *d; | |
6093 | SWIG_globals = SWIG_newvarlink(); | |
6094 | m = Py_InitModule("controls2c", controls2cMethods); | |
6095 | d = PyModule_GetDict(m); | |
6096 | PyDict_SetItemString(d,"wxLIST_MASK_TEXT", PyInt_FromLong((long) wxLIST_MASK_TEXT)); | |
6097 | PyDict_SetItemString(d,"wxLIST_MASK_IMAGE", PyInt_FromLong((long) wxLIST_MASK_IMAGE)); | |
6098 | PyDict_SetItemString(d,"wxLIST_MASK_DATA", PyInt_FromLong((long) wxLIST_MASK_DATA)); | |
6099 | PyDict_SetItemString(d,"wxLIST_MASK_WIDTH", PyInt_FromLong((long) wxLIST_MASK_WIDTH)); | |
6100 | PyDict_SetItemString(d,"wxLIST_MASK_FORMAT", PyInt_FromLong((long) wxLIST_MASK_FORMAT)); | |
6101 | PyDict_SetItemString(d,"wxLIST_MASK_STATE", PyInt_FromLong((long) wxLIST_MASK_STATE)); | |
6102 | PyDict_SetItemString(d,"wxLIST_STATE_DONTCARE", PyInt_FromLong((long) wxLIST_STATE_DONTCARE)); | |
6103 | PyDict_SetItemString(d,"wxLIST_STATE_DROPHILITED", PyInt_FromLong((long) wxLIST_STATE_DROPHILITED)); | |
6104 | PyDict_SetItemString(d,"wxLIST_STATE_FOCUSED", PyInt_FromLong((long) wxLIST_STATE_FOCUSED)); | |
6105 | PyDict_SetItemString(d,"wxLIST_STATE_SELECTED", PyInt_FromLong((long) wxLIST_STATE_SELECTED)); | |
6106 | PyDict_SetItemString(d,"wxLIST_STATE_CUT", PyInt_FromLong((long) wxLIST_STATE_CUT)); | |
6107 | PyDict_SetItemString(d,"wxLIST_HITTEST_ABOVE", PyInt_FromLong((long) wxLIST_HITTEST_ABOVE)); | |
6108 | PyDict_SetItemString(d,"wxLIST_HITTEST_BELOW", PyInt_FromLong((long) wxLIST_HITTEST_BELOW)); | |
6109 | PyDict_SetItemString(d,"wxLIST_HITTEST_NOWHERE", PyInt_FromLong((long) wxLIST_HITTEST_NOWHERE)); | |
6110 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMICON", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMICON)); | |
6111 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMLABEL", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMLABEL)); | |
6112 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMRIGHT", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMRIGHT)); | |
6113 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMSTATEICON", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMSTATEICON)); | |
6114 | PyDict_SetItemString(d,"wxLIST_HITTEST_TOLEFT", PyInt_FromLong((long) wxLIST_HITTEST_TOLEFT)); | |
6115 | PyDict_SetItemString(d,"wxLIST_HITTEST_TORIGHT", PyInt_FromLong((long) wxLIST_HITTEST_TORIGHT)); | |
6116 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEM", PyInt_FromLong((long) wxLIST_HITTEST_ONITEM)); | |
6117 | PyDict_SetItemString(d,"wxLIST_NEXT_ABOVE", PyInt_FromLong((long) wxLIST_NEXT_ABOVE)); | |
6118 | PyDict_SetItemString(d,"wxLIST_NEXT_ALL", PyInt_FromLong((long) wxLIST_NEXT_ALL)); | |
6119 | PyDict_SetItemString(d,"wxLIST_NEXT_BELOW", PyInt_FromLong((long) wxLIST_NEXT_BELOW)); | |
6120 | PyDict_SetItemString(d,"wxLIST_NEXT_LEFT", PyInt_FromLong((long) wxLIST_NEXT_LEFT)); | |
6121 | PyDict_SetItemString(d,"wxLIST_NEXT_RIGHT", PyInt_FromLong((long) wxLIST_NEXT_RIGHT)); | |
6122 | PyDict_SetItemString(d,"wxLIST_ALIGN_DEFAULT", PyInt_FromLong((long) wxLIST_ALIGN_DEFAULT)); | |
6123 | PyDict_SetItemString(d,"wxLIST_ALIGN_LEFT", PyInt_FromLong((long) wxLIST_ALIGN_LEFT)); | |
6124 | PyDict_SetItemString(d,"wxLIST_ALIGN_TOP", PyInt_FromLong((long) wxLIST_ALIGN_TOP)); | |
6125 | PyDict_SetItemString(d,"wxLIST_ALIGN_SNAP_TO_GRID", PyInt_FromLong((long) wxLIST_ALIGN_SNAP_TO_GRID)); | |
6126 | PyDict_SetItemString(d,"wxLIST_FORMAT_LEFT", PyInt_FromLong((long) wxLIST_FORMAT_LEFT)); | |
6127 | PyDict_SetItemString(d,"wxLIST_FORMAT_RIGHT", PyInt_FromLong((long) wxLIST_FORMAT_RIGHT)); | |
6128 | PyDict_SetItemString(d,"wxLIST_FORMAT_CENTRE", PyInt_FromLong((long) wxLIST_FORMAT_CENTRE)); | |
6129 | PyDict_SetItemString(d,"wxLIST_FORMAT_CENTER", PyInt_FromLong((long) wxLIST_FORMAT_CENTER)); | |
6130 | PyDict_SetItemString(d,"wxLIST_AUTOSIZE", PyInt_FromLong((long) wxLIST_AUTOSIZE)); | |
6131 | PyDict_SetItemString(d,"wxLIST_AUTOSIZE_USEHEADER", PyInt_FromLong((long) wxLIST_AUTOSIZE_USEHEADER)); | |
6132 | PyDict_SetItemString(d,"wxLIST_RECT_BOUNDS", PyInt_FromLong((long) wxLIST_RECT_BOUNDS)); | |
6133 | PyDict_SetItemString(d,"wxLIST_RECT_ICON", PyInt_FromLong((long) wxLIST_RECT_ICON)); | |
6134 | PyDict_SetItemString(d,"wxLIST_RECT_LABEL", PyInt_FromLong((long) wxLIST_RECT_LABEL)); | |
6135 | PyDict_SetItemString(d,"wxLIST_FIND_UP", PyInt_FromLong((long) wxLIST_FIND_UP)); | |
6136 | PyDict_SetItemString(d,"wxLIST_FIND_DOWN", PyInt_FromLong((long) wxLIST_FIND_DOWN)); | |
6137 | PyDict_SetItemString(d,"wxLIST_FIND_LEFT", PyInt_FromLong((long) wxLIST_FIND_LEFT)); | |
6138 | PyDict_SetItemString(d,"wxLIST_FIND_RIGHT", PyInt_FromLong((long) wxLIST_FIND_RIGHT)); | |
6139 | PyDict_SetItemString(d,"wxTreeItemIcon_Normal", PyInt_FromLong((long) wxTreeItemIcon_Normal)); | |
6140 | PyDict_SetItemString(d,"wxTreeItemIcon_Selected", PyInt_FromLong((long) wxTreeItemIcon_Selected)); | |
6141 | PyDict_SetItemString(d,"wxTreeItemIcon_Expanded", PyInt_FromLong((long) wxTreeItemIcon_Expanded)); | |
6142 | PyDict_SetItemString(d,"wxTreeItemIcon_SelectedExpanded", PyInt_FromLong((long) wxTreeItemIcon_SelectedExpanded)); | |
6143 | PyDict_SetItemString(d,"wxTreeItemIcon_Max", PyInt_FromLong((long) wxTreeItemIcon_Max)); | |
6144 | { | |
6145 | int i; | |
6146 | for (i = 0; _swig_mapping[i].n1; i++) | |
6147 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
6148 | } | |
6149 | } |