]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * FILE : src/msw/controls2.cpp | |
3 | * | |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
6 | * Version 1.1 (Build 883) | |
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 | #include "Python.h" | |
40 | ||
41 | #ifdef __cplusplus | |
42 | extern "C" { | |
43 | #endif | |
44 | ||
45 | extern void SWIG_MakePtr(char *, void *, char *); | |
46 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); | |
47 | extern char *SWIG_GetPtr(char *, void **, char *); | |
48 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); | |
49 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); | |
50 | extern PyObject *SWIG_newvarlink(void); | |
51 | #ifdef __cplusplus | |
52 | } | |
53 | #endif | |
54 | #define SWIG_init initcontrols2c | |
55 | ||
56 | #define SWIG_name "controls2c" | |
57 | ||
58 | #include "helpers.h" | |
59 | #ifdef __WXMSW__ | |
60 | #include <windows.h> | |
61 | #endif | |
62 | #include <wx/listctrl.h> | |
63 | #include <wx/treectrl.h> | |
64 | #include <wx/imaglist.h> | |
65 | ||
66 | ||
67 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
68 | PyObject* o2; | |
69 | PyObject* o3; | |
70 | ||
71 | if (!target) { | |
72 | target = o; | |
73 | } else if (target == Py_None) { | |
74 | Py_DECREF(Py_None); | |
75 | target = o; | |
76 | } else { | |
77 | if (!PyTuple_Check(target)) { | |
78 | o2 = target; | |
79 | target = PyTuple_New(1); | |
80 | PyTuple_SetItem(target, 0, o2); | |
81 | } | |
82 | o3 = PyTuple_New(1); | |
83 | PyTuple_SetItem(o3, 0, o); | |
84 | ||
85 | o2 = target; | |
86 | target = PySequence_Concat(o2, o3); | |
87 | Py_DECREF(o2); | |
88 | Py_DECREF(o3); | |
89 | } | |
90 | return target; | |
91 | } | |
92 | ||
93 | #if PYTHON_API_VERSION >= 1009 | |
94 | static char* wxStringErrorMsg = "String or Unicode type required"; | |
95 | #else | |
96 | static char* wxStringErrorMsg = "String type required"; | |
97 | #endif | |
98 | // C++ Version of a Python aware class | |
99 | class wxPyListCtrl : public wxListCtrl { | |
100 | DECLARE_ABSTRACT_CLASS(wxPyListCtrl); | |
101 | public: | |
102 | wxPyListCtrl() : wxListCtrl() {} | |
103 | wxPyListCtrl(wxWindow* parent, wxWindowID id, | |
104 | const wxPoint& pos, | |
105 | const wxSize& size, | |
106 | long style, | |
107 | const wxValidator& validator, | |
108 | char* name) : | |
109 | wxListCtrl(parent, id, pos, size, style, validator, name) {} | |
110 | ||
111 | bool Create(wxWindow* parent, wxWindowID id, | |
112 | const wxPoint& pos, | |
113 | const wxSize& size, | |
114 | long style, | |
115 | const wxValidator& validator, | |
116 | char* name) { | |
117 | return wxListCtrl::Create(parent, id, pos, size, style, validator, name); | |
118 | } | |
119 | ||
120 | DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText); | |
121 | DEC_PYCALLBACK_INT_LONG(OnGetItemImage); | |
122 | DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr); | |
123 | ||
124 | PYPRIVATE; | |
125 | }; | |
126 | ||
127 | IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl, wxListCtrl); | |
128 | ||
129 | IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl, wxListCtrl, OnGetItemText); | |
130 | IMP_PYCALLBACK_INT_LONG(wxPyListCtrl, wxListCtrl, OnGetItemImage); | |
131 | IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl, wxListCtrl, OnGetItemAttr); | |
132 | // Python aware sorting function for wxPyListCtrl | |
133 | int wxCALLBACK wxPyListCtrl_SortItems(long item1, long item2, long funcPtr) { | |
134 | int retval = 0; | |
135 | PyObject* func = (PyObject*)funcPtr; | |
136 | wxPyBeginBlockThreads(); | |
137 | ||
138 | PyObject* args = Py_BuildValue("(ii)", item1, item2); | |
139 | PyObject* result = PyEval_CallObject(func, args); | |
140 | Py_DECREF(args); | |
141 | if (result) { | |
142 | retval = PyInt_AsLong(result); | |
143 | Py_DECREF(result); | |
144 | } | |
145 | ||
146 | wxPyEndBlockThreads(); | |
147 | return retval; | |
148 | } | |
149 | ||
150 | ||
151 | class wxPyTreeItemData : public wxTreeItemData { | |
152 | public: | |
153 | wxPyTreeItemData(PyObject* obj = NULL) { | |
154 | if (obj == NULL) | |
155 | obj = Py_None; | |
156 | Py_INCREF(obj); | |
157 | m_obj = obj; | |
158 | } | |
159 | ||
160 | ~wxPyTreeItemData() { | |
161 | wxPyBeginBlockThreads(); | |
162 | Py_DECREF(m_obj); | |
163 | wxPyEndBlockThreads(); | |
164 | } | |
165 | ||
166 | PyObject* GetData() { | |
167 | Py_INCREF(m_obj); | |
168 | return m_obj; | |
169 | } | |
170 | ||
171 | void SetData(PyObject* obj) { | |
172 | wxPyBeginBlockThreads(); | |
173 | Py_DECREF(m_obj); | |
174 | wxPyEndBlockThreads(); | |
175 | m_obj = obj; | |
176 | Py_INCREF(obj); | |
177 | } | |
178 | ||
179 | PyObject* m_obj; | |
180 | }; | |
181 | // C++ version of Python aware wxTreeCtrl | |
182 | class wxPyTreeCtrl : public wxTreeCtrl { | |
183 | DECLARE_ABSTRACT_CLASS(wxPyTreeCtrl); | |
184 | public: | |
185 | wxPyTreeCtrl() : wxTreeCtrl() {} | |
186 | wxPyTreeCtrl(wxWindow *parent, wxWindowID id, | |
187 | const wxPoint& pos, | |
188 | const wxSize& size, | |
189 | long style, | |
190 | const wxValidator& validator, | |
191 | char* name) : | |
192 | wxTreeCtrl(parent, id, pos, size, style, validator, name) {} | |
193 | ||
194 | bool Create(wxWindow *parent, wxWindowID id, | |
195 | const wxPoint& pos, | |
196 | const wxSize& size, | |
197 | long style, | |
198 | const wxValidator& validator, | |
199 | char* name) { | |
200 | return wxTreeCtrl::Create(parent, id, pos, size, style, validator, name); | |
201 | } | |
202 | ||
203 | ||
204 | int OnCompareItems(const wxTreeItemId& item1, | |
205 | const wxTreeItemId& item2) { | |
206 | int rval = 0; | |
207 | bool found; | |
208 | wxPyBeginBlockThreads(); | |
209 | if ((found = m_myInst.findCallback("OnCompareItems"))) | |
210 | rval = m_myInst.callCallback(Py_BuildValue( | |
211 | "(OO)", | |
212 | wxPyConstructObject((void*)&item1, "wxTreeItemId"), | |
213 | wxPyConstructObject((void*)&item2, "wxTreeItemId"))); | |
214 | wxPyEndBlockThreads(); | |
215 | if (! found) | |
216 | rval = wxTreeCtrl::OnCompareItems(item1, item2); | |
217 | return rval; | |
218 | } | |
219 | PYPRIVATE; | |
220 | }; | |
221 | ||
222 | IMPLEMENT_ABSTRACT_CLASS(wxPyTreeCtrl, wxTreeCtrl); | |
223 | ||
224 | #ifdef __cplusplus | |
225 | extern "C" { | |
226 | #endif | |
227 | #define new_wxListItemAttr(_swigarg0,_swigarg1,_swigarg2) (new wxListItemAttr(_swigarg0,_swigarg1,_swigarg2)) | |
228 | static PyObject *_wrap_new_wxListItemAttr(PyObject *self, PyObject *args, PyObject *kwargs) { | |
229 | PyObject * _resultobj; | |
230 | wxListItemAttr * _result; | |
231 | wxColour * _arg0 = (wxColour *) &wxNullColour; | |
232 | wxColour * _arg1 = (wxColour *) &wxNullColour; | |
233 | wxFont * _arg2 = (wxFont *) &wxNullFont; | |
234 | wxColour temp; | |
235 | PyObject * _obj0 = 0; | |
236 | wxColour temp0; | |
237 | PyObject * _obj1 = 0; | |
238 | PyObject * _argo2 = 0; | |
239 | char *_kwnames[] = { "colText","colBack","font", NULL }; | |
240 | char _ptemp[128]; | |
241 | ||
242 | self = self; | |
243 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|OOO:new_wxListItemAttr",_kwnames,&_obj0,&_obj1,&_argo2)) | |
244 | return NULL; | |
245 | if (_obj0) | |
246 | { | |
247 | _arg0 = &temp; | |
248 | if (! wxColour_helper(_obj0, &_arg0)) | |
249 | return NULL; | |
250 | } | |
251 | if (_obj1) | |
252 | { | |
253 | _arg1 = &temp0; | |
254 | if (! wxColour_helper(_obj1, &_arg1)) | |
255 | return NULL; | |
256 | } | |
257 | if (_argo2) { | |
258 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
259 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxFont_p")) { | |
260 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of new_wxListItemAttr. Expected _wxFont_p."); | |
261 | return NULL; | |
262 | } | |
263 | } | |
264 | { | |
265 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
266 | _result = (wxListItemAttr *)new_wxListItemAttr(*_arg0,*_arg1,*_arg2); | |
267 | ||
268 | wxPyEndAllowThreads(__tstate); | |
269 | if (PyErr_Occurred()) return NULL; | |
270 | } if (_result) { | |
271 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItemAttr_p"); | |
272 | _resultobj = Py_BuildValue("s",_ptemp); | |
273 | } else { | |
274 | Py_INCREF(Py_None); | |
275 | _resultobj = Py_None; | |
276 | } | |
277 | return _resultobj; | |
278 | } | |
279 | ||
280 | #define wxListItemAttr_SetTextColour(_swigobj,_swigarg0) (_swigobj->SetTextColour(_swigarg0)) | |
281 | static PyObject *_wrap_wxListItemAttr_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
282 | PyObject * _resultobj; | |
283 | wxListItemAttr * _arg0; | |
284 | wxColour * _arg1; | |
285 | PyObject * _argo0 = 0; | |
286 | wxColour temp; | |
287 | PyObject * _obj1 = 0; | |
288 | char *_kwnames[] = { "self","colText", NULL }; | |
289 | ||
290 | self = self; | |
291 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItemAttr_SetTextColour",_kwnames,&_argo0,&_obj1)) | |
292 | return NULL; | |
293 | if (_argo0) { | |
294 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
295 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
296 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_SetTextColour. Expected _wxListItemAttr_p."); | |
297 | return NULL; | |
298 | } | |
299 | } | |
300 | { | |
301 | _arg1 = &temp; | |
302 | if (! wxColour_helper(_obj1, &_arg1)) | |
303 | return NULL; | |
304 | } | |
305 | { | |
306 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
307 | wxListItemAttr_SetTextColour(_arg0,*_arg1); | |
308 | ||
309 | wxPyEndAllowThreads(__tstate); | |
310 | if (PyErr_Occurred()) return NULL; | |
311 | } Py_INCREF(Py_None); | |
312 | _resultobj = Py_None; | |
313 | return _resultobj; | |
314 | } | |
315 | ||
316 | #define wxListItemAttr_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
317 | static PyObject *_wrap_wxListItemAttr_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
318 | PyObject * _resultobj; | |
319 | wxListItemAttr * _arg0; | |
320 | wxColour * _arg1; | |
321 | PyObject * _argo0 = 0; | |
322 | wxColour temp; | |
323 | PyObject * _obj1 = 0; | |
324 | char *_kwnames[] = { "self","colBack", NULL }; | |
325 | ||
326 | self = self; | |
327 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItemAttr_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) | |
328 | return NULL; | |
329 | if (_argo0) { | |
330 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
331 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
332 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_SetBackgroundColour. Expected _wxListItemAttr_p."); | |
333 | return NULL; | |
334 | } | |
335 | } | |
336 | { | |
337 | _arg1 = &temp; | |
338 | if (! wxColour_helper(_obj1, &_arg1)) | |
339 | return NULL; | |
340 | } | |
341 | { | |
342 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
343 | wxListItemAttr_SetBackgroundColour(_arg0,*_arg1); | |
344 | ||
345 | wxPyEndAllowThreads(__tstate); | |
346 | if (PyErr_Occurred()) return NULL; | |
347 | } Py_INCREF(Py_None); | |
348 | _resultobj = Py_None; | |
349 | return _resultobj; | |
350 | } | |
351 | ||
352 | #define wxListItemAttr_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) | |
353 | static PyObject *_wrap_wxListItemAttr_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
354 | PyObject * _resultobj; | |
355 | wxListItemAttr * _arg0; | |
356 | wxFont * _arg1; | |
357 | PyObject * _argo0 = 0; | |
358 | PyObject * _argo1 = 0; | |
359 | char *_kwnames[] = { "self","font", NULL }; | |
360 | ||
361 | self = self; | |
362 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItemAttr_SetFont",_kwnames,&_argo0,&_argo1)) | |
363 | return NULL; | |
364 | if (_argo0) { | |
365 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
366 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
367 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_SetFont. Expected _wxListItemAttr_p."); | |
368 | return NULL; | |
369 | } | |
370 | } | |
371 | if (_argo1) { | |
372 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
373 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
374 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListItemAttr_SetFont. Expected _wxFont_p."); | |
375 | return NULL; | |
376 | } | |
377 | } | |
378 | { | |
379 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
380 | wxListItemAttr_SetFont(_arg0,*_arg1); | |
381 | ||
382 | wxPyEndAllowThreads(__tstate); | |
383 | if (PyErr_Occurred()) return NULL; | |
384 | } Py_INCREF(Py_None); | |
385 | _resultobj = Py_None; | |
386 | return _resultobj; | |
387 | } | |
388 | ||
389 | #define wxListItemAttr_HasTextColour(_swigobj) (_swigobj->HasTextColour()) | |
390 | static PyObject *_wrap_wxListItemAttr_HasTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
391 | PyObject * _resultobj; | |
392 | bool _result; | |
393 | wxListItemAttr * _arg0; | |
394 | PyObject * _argo0 = 0; | |
395 | char *_kwnames[] = { "self", NULL }; | |
396 | ||
397 | self = self; | |
398 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItemAttr_HasTextColour",_kwnames,&_argo0)) | |
399 | return NULL; | |
400 | if (_argo0) { | |
401 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
402 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
403 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_HasTextColour. Expected _wxListItemAttr_p."); | |
404 | return NULL; | |
405 | } | |
406 | } | |
407 | { | |
408 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
409 | _result = (bool )wxListItemAttr_HasTextColour(_arg0); | |
410 | ||
411 | wxPyEndAllowThreads(__tstate); | |
412 | if (PyErr_Occurred()) return NULL; | |
413 | } _resultobj = Py_BuildValue("i",_result); | |
414 | return _resultobj; | |
415 | } | |
416 | ||
417 | #define wxListItemAttr_HasBackgroundColour(_swigobj) (_swigobj->HasBackgroundColour()) | |
418 | static PyObject *_wrap_wxListItemAttr_HasBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
419 | PyObject * _resultobj; | |
420 | bool _result; | |
421 | wxListItemAttr * _arg0; | |
422 | PyObject * _argo0 = 0; | |
423 | char *_kwnames[] = { "self", NULL }; | |
424 | ||
425 | self = self; | |
426 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItemAttr_HasBackgroundColour",_kwnames,&_argo0)) | |
427 | return NULL; | |
428 | if (_argo0) { | |
429 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
430 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
431 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_HasBackgroundColour. Expected _wxListItemAttr_p."); | |
432 | return NULL; | |
433 | } | |
434 | } | |
435 | { | |
436 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
437 | _result = (bool )wxListItemAttr_HasBackgroundColour(_arg0); | |
438 | ||
439 | wxPyEndAllowThreads(__tstate); | |
440 | if (PyErr_Occurred()) return NULL; | |
441 | } _resultobj = Py_BuildValue("i",_result); | |
442 | return _resultobj; | |
443 | } | |
444 | ||
445 | #define wxListItemAttr_HasFont(_swigobj) (_swigobj->HasFont()) | |
446 | static PyObject *_wrap_wxListItemAttr_HasFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
447 | PyObject * _resultobj; | |
448 | bool _result; | |
449 | wxListItemAttr * _arg0; | |
450 | PyObject * _argo0 = 0; | |
451 | char *_kwnames[] = { "self", NULL }; | |
452 | ||
453 | self = self; | |
454 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItemAttr_HasFont",_kwnames,&_argo0)) | |
455 | return NULL; | |
456 | if (_argo0) { | |
457 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
458 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
459 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_HasFont. Expected _wxListItemAttr_p."); | |
460 | return NULL; | |
461 | } | |
462 | } | |
463 | { | |
464 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
465 | _result = (bool )wxListItemAttr_HasFont(_arg0); | |
466 | ||
467 | wxPyEndAllowThreads(__tstate); | |
468 | if (PyErr_Occurred()) return NULL; | |
469 | } _resultobj = Py_BuildValue("i",_result); | |
470 | return _resultobj; | |
471 | } | |
472 | ||
473 | #define wxListItemAttr_GetTextColour(_swigobj) (_swigobj->GetTextColour()) | |
474 | static PyObject *_wrap_wxListItemAttr_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
475 | PyObject * _resultobj; | |
476 | wxColour * _result; | |
477 | wxListItemAttr * _arg0; | |
478 | PyObject * _argo0 = 0; | |
479 | char *_kwnames[] = { "self", NULL }; | |
480 | char _ptemp[128]; | |
481 | ||
482 | self = self; | |
483 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItemAttr_GetTextColour",_kwnames,&_argo0)) | |
484 | return NULL; | |
485 | if (_argo0) { | |
486 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
487 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
488 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_GetTextColour. Expected _wxListItemAttr_p."); | |
489 | return NULL; | |
490 | } | |
491 | } | |
492 | { | |
493 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
494 | _result = new wxColour (wxListItemAttr_GetTextColour(_arg0)); | |
495 | ||
496 | wxPyEndAllowThreads(__tstate); | |
497 | if (PyErr_Occurred()) return NULL; | |
498 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
499 | _resultobj = Py_BuildValue("s",_ptemp); | |
500 | return _resultobj; | |
501 | } | |
502 | ||
503 | #define wxListItemAttr_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
504 | static PyObject *_wrap_wxListItemAttr_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
505 | PyObject * _resultobj; | |
506 | wxColour * _result; | |
507 | wxListItemAttr * _arg0; | |
508 | PyObject * _argo0 = 0; | |
509 | char *_kwnames[] = { "self", NULL }; | |
510 | char _ptemp[128]; | |
511 | ||
512 | self = self; | |
513 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItemAttr_GetBackgroundColour",_kwnames,&_argo0)) | |
514 | return NULL; | |
515 | if (_argo0) { | |
516 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
517 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
518 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_GetBackgroundColour. Expected _wxListItemAttr_p."); | |
519 | return NULL; | |
520 | } | |
521 | } | |
522 | { | |
523 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
524 | _result = new wxColour (wxListItemAttr_GetBackgroundColour(_arg0)); | |
525 | ||
526 | wxPyEndAllowThreads(__tstate); | |
527 | if (PyErr_Occurred()) return NULL; | |
528 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
529 | _resultobj = Py_BuildValue("s",_ptemp); | |
530 | return _resultobj; | |
531 | } | |
532 | ||
533 | #define wxListItemAttr_GetFont(_swigobj) (_swigobj->GetFont()) | |
534 | static PyObject *_wrap_wxListItemAttr_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
535 | PyObject * _resultobj; | |
536 | wxFont * _result; | |
537 | wxListItemAttr * _arg0; | |
538 | PyObject * _argo0 = 0; | |
539 | char *_kwnames[] = { "self", NULL }; | |
540 | char _ptemp[128]; | |
541 | ||
542 | self = self; | |
543 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItemAttr_GetFont",_kwnames,&_argo0)) | |
544 | return NULL; | |
545 | if (_argo0) { | |
546 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
547 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItemAttr_p")) { | |
548 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItemAttr_GetFont. Expected _wxListItemAttr_p."); | |
549 | return NULL; | |
550 | } | |
551 | } | |
552 | { | |
553 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
554 | _result = new wxFont (wxListItemAttr_GetFont(_arg0)); | |
555 | ||
556 | wxPyEndAllowThreads(__tstate); | |
557 | if (PyErr_Occurred()) return NULL; | |
558 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p"); | |
559 | _resultobj = Py_BuildValue("s",_ptemp); | |
560 | return _resultobj; | |
561 | } | |
562 | ||
563 | static void *SwigwxListItemTowxObject(void *ptr) { | |
564 | wxListItem *src; | |
565 | wxObject *dest; | |
566 | src = (wxListItem *) ptr; | |
567 | dest = (wxObject *) src; | |
568 | return (void *) dest; | |
569 | } | |
570 | ||
571 | #define new_wxListItem() (new wxListItem()) | |
572 | static PyObject *_wrap_new_wxListItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
573 | PyObject * _resultobj; | |
574 | wxListItem * _result; | |
575 | char *_kwnames[] = { NULL }; | |
576 | char _ptemp[128]; | |
577 | ||
578 | self = self; | |
579 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxListItem",_kwnames)) | |
580 | return NULL; | |
581 | { | |
582 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
583 | _result = (wxListItem *)new_wxListItem(); | |
584 | ||
585 | wxPyEndAllowThreads(__tstate); | |
586 | if (PyErr_Occurred()) return NULL; | |
587 | } if (_result) { | |
588 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItem_p"); | |
589 | _resultobj = Py_BuildValue("s",_ptemp); | |
590 | } else { | |
591 | Py_INCREF(Py_None); | |
592 | _resultobj = Py_None; | |
593 | } | |
594 | return _resultobj; | |
595 | } | |
596 | ||
597 | #define delete_wxListItem(_swigobj) (delete _swigobj) | |
598 | static PyObject *_wrap_delete_wxListItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
599 | PyObject * _resultobj; | |
600 | wxListItem * _arg0; | |
601 | PyObject * _argo0 = 0; | |
602 | char *_kwnames[] = { "self", NULL }; | |
603 | ||
604 | self = self; | |
605 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxListItem",_kwnames,&_argo0)) | |
606 | return NULL; | |
607 | if (_argo0) { | |
608 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
609 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
610 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxListItem. Expected _wxListItem_p."); | |
611 | return NULL; | |
612 | } | |
613 | } | |
614 | { | |
615 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
616 | delete_wxListItem(_arg0); | |
617 | ||
618 | wxPyEndAllowThreads(__tstate); | |
619 | if (PyErr_Occurred()) return NULL; | |
620 | } Py_INCREF(Py_None); | |
621 | _resultobj = Py_None; | |
622 | return _resultobj; | |
623 | } | |
624 | ||
625 | #define wxListItem_Clear(_swigobj) (_swigobj->Clear()) | |
626 | static PyObject *_wrap_wxListItem_Clear(PyObject *self, PyObject *args, PyObject *kwargs) { | |
627 | PyObject * _resultobj; | |
628 | wxListItem * _arg0; | |
629 | PyObject * _argo0 = 0; | |
630 | char *_kwnames[] = { "self", NULL }; | |
631 | ||
632 | self = self; | |
633 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_Clear",_kwnames,&_argo0)) | |
634 | return NULL; | |
635 | if (_argo0) { | |
636 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
637 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
638 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_Clear. Expected _wxListItem_p."); | |
639 | return NULL; | |
640 | } | |
641 | } | |
642 | { | |
643 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
644 | wxListItem_Clear(_arg0); | |
645 | ||
646 | wxPyEndAllowThreads(__tstate); | |
647 | if (PyErr_Occurred()) return NULL; | |
648 | } Py_INCREF(Py_None); | |
649 | _resultobj = Py_None; | |
650 | return _resultobj; | |
651 | } | |
652 | ||
653 | #define wxListItem_ClearAttributes(_swigobj) (_swigobj->ClearAttributes()) | |
654 | static PyObject *_wrap_wxListItem_ClearAttributes(PyObject *self, PyObject *args, PyObject *kwargs) { | |
655 | PyObject * _resultobj; | |
656 | wxListItem * _arg0; | |
657 | PyObject * _argo0 = 0; | |
658 | char *_kwnames[] = { "self", NULL }; | |
659 | ||
660 | self = self; | |
661 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_ClearAttributes",_kwnames,&_argo0)) | |
662 | return NULL; | |
663 | if (_argo0) { | |
664 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
665 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
666 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_ClearAttributes. Expected _wxListItem_p."); | |
667 | return NULL; | |
668 | } | |
669 | } | |
670 | { | |
671 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
672 | wxListItem_ClearAttributes(_arg0); | |
673 | ||
674 | wxPyEndAllowThreads(__tstate); | |
675 | if (PyErr_Occurred()) return NULL; | |
676 | } Py_INCREF(Py_None); | |
677 | _resultobj = Py_None; | |
678 | return _resultobj; | |
679 | } | |
680 | ||
681 | #define wxListItem_SetMask(_swigobj,_swigarg0) (_swigobj->SetMask(_swigarg0)) | |
682 | static PyObject *_wrap_wxListItem_SetMask(PyObject *self, PyObject *args, PyObject *kwargs) { | |
683 | PyObject * _resultobj; | |
684 | wxListItem * _arg0; | |
685 | long _arg1; | |
686 | PyObject * _argo0 = 0; | |
687 | char *_kwnames[] = { "self","mask", NULL }; | |
688 | ||
689 | self = self; | |
690 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_SetMask",_kwnames,&_argo0,&_arg1)) | |
691 | return NULL; | |
692 | if (_argo0) { | |
693 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
694 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
695 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetMask. Expected _wxListItem_p."); | |
696 | return NULL; | |
697 | } | |
698 | } | |
699 | { | |
700 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
701 | wxListItem_SetMask(_arg0,_arg1); | |
702 | ||
703 | wxPyEndAllowThreads(__tstate); | |
704 | if (PyErr_Occurred()) return NULL; | |
705 | } Py_INCREF(Py_None); | |
706 | _resultobj = Py_None; | |
707 | return _resultobj; | |
708 | } | |
709 | ||
710 | #define wxListItem_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) | |
711 | static PyObject *_wrap_wxListItem_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
712 | PyObject * _resultobj; | |
713 | wxListItem * _arg0; | |
714 | long _arg1; | |
715 | PyObject * _argo0 = 0; | |
716 | char *_kwnames[] = { "self","id", NULL }; | |
717 | ||
718 | self = self; | |
719 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_SetId",_kwnames,&_argo0,&_arg1)) | |
720 | return NULL; | |
721 | if (_argo0) { | |
722 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
723 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
724 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetId. Expected _wxListItem_p."); | |
725 | return NULL; | |
726 | } | |
727 | } | |
728 | { | |
729 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
730 | wxListItem_SetId(_arg0,_arg1); | |
731 | ||
732 | wxPyEndAllowThreads(__tstate); | |
733 | if (PyErr_Occurred()) return NULL; | |
734 | } Py_INCREF(Py_None); | |
735 | _resultobj = Py_None; | |
736 | return _resultobj; | |
737 | } | |
738 | ||
739 | #define wxListItem_SetColumn(_swigobj,_swigarg0) (_swigobj->SetColumn(_swigarg0)) | |
740 | static PyObject *_wrap_wxListItem_SetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
741 | PyObject * _resultobj; | |
742 | wxListItem * _arg0; | |
743 | int _arg1; | |
744 | PyObject * _argo0 = 0; | |
745 | char *_kwnames[] = { "self","col", NULL }; | |
746 | ||
747 | self = self; | |
748 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_SetColumn",_kwnames,&_argo0,&_arg1)) | |
749 | return NULL; | |
750 | if (_argo0) { | |
751 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
752 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
753 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetColumn. Expected _wxListItem_p."); | |
754 | return NULL; | |
755 | } | |
756 | } | |
757 | { | |
758 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
759 | wxListItem_SetColumn(_arg0,_arg1); | |
760 | ||
761 | wxPyEndAllowThreads(__tstate); | |
762 | if (PyErr_Occurred()) return NULL; | |
763 | } Py_INCREF(Py_None); | |
764 | _resultobj = Py_None; | |
765 | return _resultobj; | |
766 | } | |
767 | ||
768 | #define wxListItem_SetState(_swigobj,_swigarg0) (_swigobj->SetState(_swigarg0)) | |
769 | static PyObject *_wrap_wxListItem_SetState(PyObject *self, PyObject *args, PyObject *kwargs) { | |
770 | PyObject * _resultobj; | |
771 | wxListItem * _arg0; | |
772 | long _arg1; | |
773 | PyObject * _argo0 = 0; | |
774 | char *_kwnames[] = { "self","state", NULL }; | |
775 | ||
776 | self = self; | |
777 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_SetState",_kwnames,&_argo0,&_arg1)) | |
778 | return NULL; | |
779 | if (_argo0) { | |
780 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
781 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
782 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetState. Expected _wxListItem_p."); | |
783 | return NULL; | |
784 | } | |
785 | } | |
786 | { | |
787 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
788 | wxListItem_SetState(_arg0,_arg1); | |
789 | ||
790 | wxPyEndAllowThreads(__tstate); | |
791 | if (PyErr_Occurred()) return NULL; | |
792 | } Py_INCREF(Py_None); | |
793 | _resultobj = Py_None; | |
794 | return _resultobj; | |
795 | } | |
796 | ||
797 | #define wxListItem_SetStateMask(_swigobj,_swigarg0) (_swigobj->SetStateMask(_swigarg0)) | |
798 | static PyObject *_wrap_wxListItem_SetStateMask(PyObject *self, PyObject *args, PyObject *kwargs) { | |
799 | PyObject * _resultobj; | |
800 | wxListItem * _arg0; | |
801 | long _arg1; | |
802 | PyObject * _argo0 = 0; | |
803 | char *_kwnames[] = { "self","stateMask", NULL }; | |
804 | ||
805 | self = self; | |
806 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_SetStateMask",_kwnames,&_argo0,&_arg1)) | |
807 | return NULL; | |
808 | if (_argo0) { | |
809 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
810 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
811 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetStateMask. Expected _wxListItem_p."); | |
812 | return NULL; | |
813 | } | |
814 | } | |
815 | { | |
816 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
817 | wxListItem_SetStateMask(_arg0,_arg1); | |
818 | ||
819 | wxPyEndAllowThreads(__tstate); | |
820 | if (PyErr_Occurred()) return NULL; | |
821 | } Py_INCREF(Py_None); | |
822 | _resultobj = Py_None; | |
823 | return _resultobj; | |
824 | } | |
825 | ||
826 | #define wxListItem_SetText(_swigobj,_swigarg0) (_swigobj->SetText(_swigarg0)) | |
827 | static PyObject *_wrap_wxListItem_SetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
828 | PyObject * _resultobj; | |
829 | wxListItem * _arg0; | |
830 | wxString * _arg1; | |
831 | PyObject * _argo0 = 0; | |
832 | PyObject * _obj1 = 0; | |
833 | char *_kwnames[] = { "self","text", NULL }; | |
834 | ||
835 | self = self; | |
836 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItem_SetText",_kwnames,&_argo0,&_obj1)) | |
837 | return NULL; | |
838 | if (_argo0) { | |
839 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
840 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
841 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetText. Expected _wxListItem_p."); | |
842 | return NULL; | |
843 | } | |
844 | } | |
845 | { | |
846 | #if PYTHON_API_VERSION >= 1009 | |
847 | char* tmpPtr; int tmpSize; | |
848 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
849 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
850 | return NULL; | |
851 | } | |
852 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
853 | return NULL; | |
854 | _arg1 = new wxString(tmpPtr, tmpSize); | |
855 | #else | |
856 | if (!PyString_Check(_obj1)) { | |
857 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
858 | return NULL; | |
859 | } | |
860 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
861 | #endif | |
862 | } | |
863 | { | |
864 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
865 | wxListItem_SetText(_arg0,*_arg1); | |
866 | ||
867 | wxPyEndAllowThreads(__tstate); | |
868 | if (PyErr_Occurred()) return NULL; | |
869 | } Py_INCREF(Py_None); | |
870 | _resultobj = Py_None; | |
871 | { | |
872 | if (_obj1) | |
873 | delete _arg1; | |
874 | } | |
875 | return _resultobj; | |
876 | } | |
877 | ||
878 | #define wxListItem_SetImage(_swigobj,_swigarg0) (_swigobj->SetImage(_swigarg0)) | |
879 | static PyObject *_wrap_wxListItem_SetImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
880 | PyObject * _resultobj; | |
881 | wxListItem * _arg0; | |
882 | int _arg1; | |
883 | PyObject * _argo0 = 0; | |
884 | char *_kwnames[] = { "self","image", NULL }; | |
885 | ||
886 | self = self; | |
887 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_SetImage",_kwnames,&_argo0,&_arg1)) | |
888 | return NULL; | |
889 | if (_argo0) { | |
890 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
891 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
892 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetImage. Expected _wxListItem_p."); | |
893 | return NULL; | |
894 | } | |
895 | } | |
896 | { | |
897 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
898 | wxListItem_SetImage(_arg0,_arg1); | |
899 | ||
900 | wxPyEndAllowThreads(__tstate); | |
901 | if (PyErr_Occurred()) return NULL; | |
902 | } Py_INCREF(Py_None); | |
903 | _resultobj = Py_None; | |
904 | return _resultobj; | |
905 | } | |
906 | ||
907 | #define wxListItem_SetData(_swigobj,_swigarg0) (_swigobj->SetData(_swigarg0)) | |
908 | static PyObject *_wrap_wxListItem_SetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
909 | PyObject * _resultobj; | |
910 | wxListItem * _arg0; | |
911 | long _arg1; | |
912 | PyObject * _argo0 = 0; | |
913 | char *_kwnames[] = { "self","data", NULL }; | |
914 | ||
915 | self = self; | |
916 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_SetData",_kwnames,&_argo0,&_arg1)) | |
917 | return NULL; | |
918 | if (_argo0) { | |
919 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
920 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
921 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetData. Expected _wxListItem_p."); | |
922 | return NULL; | |
923 | } | |
924 | } | |
925 | { | |
926 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
927 | wxListItem_SetData(_arg0,_arg1); | |
928 | ||
929 | wxPyEndAllowThreads(__tstate); | |
930 | if (PyErr_Occurred()) return NULL; | |
931 | } Py_INCREF(Py_None); | |
932 | _resultobj = Py_None; | |
933 | return _resultobj; | |
934 | } | |
935 | ||
936 | #define wxListItem_SetWidth(_swigobj,_swigarg0) (_swigobj->SetWidth(_swigarg0)) | |
937 | static PyObject *_wrap_wxListItem_SetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
938 | PyObject * _resultobj; | |
939 | wxListItem * _arg0; | |
940 | int _arg1; | |
941 | PyObject * _argo0 = 0; | |
942 | char *_kwnames[] = { "self","width", NULL }; | |
943 | ||
944 | self = self; | |
945 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_SetWidth",_kwnames,&_argo0,&_arg1)) | |
946 | return NULL; | |
947 | if (_argo0) { | |
948 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
949 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
950 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetWidth. Expected _wxListItem_p."); | |
951 | return NULL; | |
952 | } | |
953 | } | |
954 | { | |
955 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
956 | wxListItem_SetWidth(_arg0,_arg1); | |
957 | ||
958 | wxPyEndAllowThreads(__tstate); | |
959 | if (PyErr_Occurred()) return NULL; | |
960 | } Py_INCREF(Py_None); | |
961 | _resultobj = Py_None; | |
962 | return _resultobj; | |
963 | } | |
964 | ||
965 | #define wxListItem_SetAlign(_swigobj,_swigarg0) (_swigobj->SetAlign(_swigarg0)) | |
966 | static PyObject *_wrap_wxListItem_SetAlign(PyObject *self, PyObject *args, PyObject *kwargs) { | |
967 | PyObject * _resultobj; | |
968 | wxListItem * _arg0; | |
969 | wxListColumnFormat _arg1; | |
970 | PyObject * _argo0 = 0; | |
971 | char *_kwnames[] = { "self","align", NULL }; | |
972 | ||
973 | self = self; | |
974 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_SetAlign",_kwnames,&_argo0,&_arg1)) | |
975 | return NULL; | |
976 | if (_argo0) { | |
977 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
978 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
979 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetAlign. Expected _wxListItem_p."); | |
980 | return NULL; | |
981 | } | |
982 | } | |
983 | { | |
984 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
985 | wxListItem_SetAlign(_arg0,_arg1); | |
986 | ||
987 | wxPyEndAllowThreads(__tstate); | |
988 | if (PyErr_Occurred()) return NULL; | |
989 | } Py_INCREF(Py_None); | |
990 | _resultobj = Py_None; | |
991 | return _resultobj; | |
992 | } | |
993 | ||
994 | #define wxListItem_SetTextColour(_swigobj,_swigarg0) (_swigobj->SetTextColour(_swigarg0)) | |
995 | static PyObject *_wrap_wxListItem_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
996 | PyObject * _resultobj; | |
997 | wxListItem * _arg0; | |
998 | wxColour * _arg1; | |
999 | PyObject * _argo0 = 0; | |
1000 | wxColour temp; | |
1001 | PyObject * _obj1 = 0; | |
1002 | char *_kwnames[] = { "self","colText", NULL }; | |
1003 | ||
1004 | self = self; | |
1005 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItem_SetTextColour",_kwnames,&_argo0,&_obj1)) | |
1006 | return NULL; | |
1007 | if (_argo0) { | |
1008 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1009 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1010 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetTextColour. Expected _wxListItem_p."); | |
1011 | return NULL; | |
1012 | } | |
1013 | } | |
1014 | { | |
1015 | _arg1 = &temp; | |
1016 | if (! wxColour_helper(_obj1, &_arg1)) | |
1017 | return NULL; | |
1018 | } | |
1019 | { | |
1020 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1021 | wxListItem_SetTextColour(_arg0,*_arg1); | |
1022 | ||
1023 | wxPyEndAllowThreads(__tstate); | |
1024 | if (PyErr_Occurred()) return NULL; | |
1025 | } Py_INCREF(Py_None); | |
1026 | _resultobj = Py_None; | |
1027 | return _resultobj; | |
1028 | } | |
1029 | ||
1030 | #define wxListItem_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
1031 | static PyObject *_wrap_wxListItem_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1032 | PyObject * _resultobj; | |
1033 | wxListItem * _arg0; | |
1034 | wxColour * _arg1; | |
1035 | PyObject * _argo0 = 0; | |
1036 | wxColour temp; | |
1037 | PyObject * _obj1 = 0; | |
1038 | char *_kwnames[] = { "self","colBack", NULL }; | |
1039 | ||
1040 | self = self; | |
1041 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItem_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) | |
1042 | return NULL; | |
1043 | if (_argo0) { | |
1044 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1045 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1046 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetBackgroundColour. Expected _wxListItem_p."); | |
1047 | return NULL; | |
1048 | } | |
1049 | } | |
1050 | { | |
1051 | _arg1 = &temp; | |
1052 | if (! wxColour_helper(_obj1, &_arg1)) | |
1053 | return NULL; | |
1054 | } | |
1055 | { | |
1056 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1057 | wxListItem_SetBackgroundColour(_arg0,*_arg1); | |
1058 | ||
1059 | wxPyEndAllowThreads(__tstate); | |
1060 | if (PyErr_Occurred()) return NULL; | |
1061 | } Py_INCREF(Py_None); | |
1062 | _resultobj = Py_None; | |
1063 | return _resultobj; | |
1064 | } | |
1065 | ||
1066 | #define wxListItem_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) | |
1067 | static PyObject *_wrap_wxListItem_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1068 | PyObject * _resultobj; | |
1069 | wxListItem * _arg0; | |
1070 | wxFont * _arg1; | |
1071 | PyObject * _argo0 = 0; | |
1072 | PyObject * _argo1 = 0; | |
1073 | char *_kwnames[] = { "self","font", NULL }; | |
1074 | ||
1075 | self = self; | |
1076 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItem_SetFont",_kwnames,&_argo0,&_argo1)) | |
1077 | return NULL; | |
1078 | if (_argo0) { | |
1079 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1080 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1081 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_SetFont. Expected _wxListItem_p."); | |
1082 | return NULL; | |
1083 | } | |
1084 | } | |
1085 | if (_argo1) { | |
1086 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1087 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
1088 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListItem_SetFont. Expected _wxFont_p."); | |
1089 | return NULL; | |
1090 | } | |
1091 | } | |
1092 | { | |
1093 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1094 | wxListItem_SetFont(_arg0,*_arg1); | |
1095 | ||
1096 | wxPyEndAllowThreads(__tstate); | |
1097 | if (PyErr_Occurred()) return NULL; | |
1098 | } Py_INCREF(Py_None); | |
1099 | _resultobj = Py_None; | |
1100 | return _resultobj; | |
1101 | } | |
1102 | ||
1103 | #define wxListItem_GetMask(_swigobj) (_swigobj->GetMask()) | |
1104 | static PyObject *_wrap_wxListItem_GetMask(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1105 | PyObject * _resultobj; | |
1106 | long _result; | |
1107 | wxListItem * _arg0; | |
1108 | PyObject * _argo0 = 0; | |
1109 | char *_kwnames[] = { "self", NULL }; | |
1110 | ||
1111 | self = self; | |
1112 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetMask",_kwnames,&_argo0)) | |
1113 | return NULL; | |
1114 | if (_argo0) { | |
1115 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1116 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1117 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetMask. Expected _wxListItem_p."); | |
1118 | return NULL; | |
1119 | } | |
1120 | } | |
1121 | { | |
1122 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1123 | _result = (long )wxListItem_GetMask(_arg0); | |
1124 | ||
1125 | wxPyEndAllowThreads(__tstate); | |
1126 | if (PyErr_Occurred()) return NULL; | |
1127 | } _resultobj = Py_BuildValue("l",_result); | |
1128 | return _resultobj; | |
1129 | } | |
1130 | ||
1131 | #define wxListItem_GetId(_swigobj) (_swigobj->GetId()) | |
1132 | static PyObject *_wrap_wxListItem_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1133 | PyObject * _resultobj; | |
1134 | long _result; | |
1135 | wxListItem * _arg0; | |
1136 | PyObject * _argo0 = 0; | |
1137 | char *_kwnames[] = { "self", NULL }; | |
1138 | ||
1139 | self = self; | |
1140 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetId",_kwnames,&_argo0)) | |
1141 | return NULL; | |
1142 | if (_argo0) { | |
1143 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1144 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1145 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetId. Expected _wxListItem_p."); | |
1146 | return NULL; | |
1147 | } | |
1148 | } | |
1149 | { | |
1150 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1151 | _result = (long )wxListItem_GetId(_arg0); | |
1152 | ||
1153 | wxPyEndAllowThreads(__tstate); | |
1154 | if (PyErr_Occurred()) return NULL; | |
1155 | } _resultobj = Py_BuildValue("l",_result); | |
1156 | return _resultobj; | |
1157 | } | |
1158 | ||
1159 | #define wxListItem_GetColumn(_swigobj) (_swigobj->GetColumn()) | |
1160 | static PyObject *_wrap_wxListItem_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1161 | PyObject * _resultobj; | |
1162 | int _result; | |
1163 | wxListItem * _arg0; | |
1164 | PyObject * _argo0 = 0; | |
1165 | char *_kwnames[] = { "self", NULL }; | |
1166 | ||
1167 | self = self; | |
1168 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetColumn",_kwnames,&_argo0)) | |
1169 | return NULL; | |
1170 | if (_argo0) { | |
1171 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1172 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1173 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetColumn. Expected _wxListItem_p."); | |
1174 | return NULL; | |
1175 | } | |
1176 | } | |
1177 | { | |
1178 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1179 | _result = (int )wxListItem_GetColumn(_arg0); | |
1180 | ||
1181 | wxPyEndAllowThreads(__tstate); | |
1182 | if (PyErr_Occurred()) return NULL; | |
1183 | } _resultobj = Py_BuildValue("i",_result); | |
1184 | return _resultobj; | |
1185 | } | |
1186 | ||
1187 | #define wxListItem_GetState(_swigobj) (_swigobj->GetState()) | |
1188 | static PyObject *_wrap_wxListItem_GetState(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1189 | PyObject * _resultobj; | |
1190 | long _result; | |
1191 | wxListItem * _arg0; | |
1192 | PyObject * _argo0 = 0; | |
1193 | char *_kwnames[] = { "self", NULL }; | |
1194 | ||
1195 | self = self; | |
1196 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetState",_kwnames,&_argo0)) | |
1197 | return NULL; | |
1198 | if (_argo0) { | |
1199 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1200 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1201 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetState. Expected _wxListItem_p."); | |
1202 | return NULL; | |
1203 | } | |
1204 | } | |
1205 | { | |
1206 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1207 | _result = (long )wxListItem_GetState(_arg0); | |
1208 | ||
1209 | wxPyEndAllowThreads(__tstate); | |
1210 | if (PyErr_Occurred()) return NULL; | |
1211 | } _resultobj = Py_BuildValue("l",_result); | |
1212 | return _resultobj; | |
1213 | } | |
1214 | ||
1215 | #define wxListItem_GetText(_swigobj) (_swigobj->GetText()) | |
1216 | static PyObject *_wrap_wxListItem_GetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1217 | PyObject * _resultobj; | |
1218 | wxString * _result; | |
1219 | wxListItem * _arg0; | |
1220 | PyObject * _argo0 = 0; | |
1221 | char *_kwnames[] = { "self", NULL }; | |
1222 | ||
1223 | self = self; | |
1224 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetText",_kwnames,&_argo0)) | |
1225 | return NULL; | |
1226 | if (_argo0) { | |
1227 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1228 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1229 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetText. Expected _wxListItem_p."); | |
1230 | return NULL; | |
1231 | } | |
1232 | } | |
1233 | { | |
1234 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1235 | const wxString & _result_ref = wxListItem_GetText(_arg0); | |
1236 | _result = (wxString *) &_result_ref; | |
1237 | ||
1238 | wxPyEndAllowThreads(__tstate); | |
1239 | if (PyErr_Occurred()) return NULL; | |
1240 | }{ | |
1241 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
1242 | } | |
1243 | return _resultobj; | |
1244 | } | |
1245 | ||
1246 | #define wxListItem_GetImage(_swigobj) (_swigobj->GetImage()) | |
1247 | static PyObject *_wrap_wxListItem_GetImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1248 | PyObject * _resultobj; | |
1249 | int _result; | |
1250 | wxListItem * _arg0; | |
1251 | PyObject * _argo0 = 0; | |
1252 | char *_kwnames[] = { "self", NULL }; | |
1253 | ||
1254 | self = self; | |
1255 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetImage",_kwnames,&_argo0)) | |
1256 | return NULL; | |
1257 | if (_argo0) { | |
1258 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1259 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1260 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetImage. Expected _wxListItem_p."); | |
1261 | return NULL; | |
1262 | } | |
1263 | } | |
1264 | { | |
1265 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1266 | _result = (int )wxListItem_GetImage(_arg0); | |
1267 | ||
1268 | wxPyEndAllowThreads(__tstate); | |
1269 | if (PyErr_Occurred()) return NULL; | |
1270 | } _resultobj = Py_BuildValue("i",_result); | |
1271 | return _resultobj; | |
1272 | } | |
1273 | ||
1274 | #define wxListItem_GetData(_swigobj) (_swigobj->GetData()) | |
1275 | static PyObject *_wrap_wxListItem_GetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1276 | PyObject * _resultobj; | |
1277 | long _result; | |
1278 | wxListItem * _arg0; | |
1279 | PyObject * _argo0 = 0; | |
1280 | char *_kwnames[] = { "self", NULL }; | |
1281 | ||
1282 | self = self; | |
1283 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetData",_kwnames,&_argo0)) | |
1284 | return NULL; | |
1285 | if (_argo0) { | |
1286 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1287 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1288 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetData. Expected _wxListItem_p."); | |
1289 | return NULL; | |
1290 | } | |
1291 | } | |
1292 | { | |
1293 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1294 | _result = (long )wxListItem_GetData(_arg0); | |
1295 | ||
1296 | wxPyEndAllowThreads(__tstate); | |
1297 | if (PyErr_Occurred()) return NULL; | |
1298 | } _resultobj = Py_BuildValue("l",_result); | |
1299 | return _resultobj; | |
1300 | } | |
1301 | ||
1302 | #define wxListItem_GetWidth(_swigobj) (_swigobj->GetWidth()) | |
1303 | static PyObject *_wrap_wxListItem_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1304 | PyObject * _resultobj; | |
1305 | int _result; | |
1306 | wxListItem * _arg0; | |
1307 | PyObject * _argo0 = 0; | |
1308 | char *_kwnames[] = { "self", NULL }; | |
1309 | ||
1310 | self = self; | |
1311 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetWidth",_kwnames,&_argo0)) | |
1312 | return NULL; | |
1313 | if (_argo0) { | |
1314 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1315 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1316 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetWidth. Expected _wxListItem_p."); | |
1317 | return NULL; | |
1318 | } | |
1319 | } | |
1320 | { | |
1321 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1322 | _result = (int )wxListItem_GetWidth(_arg0); | |
1323 | ||
1324 | wxPyEndAllowThreads(__tstate); | |
1325 | if (PyErr_Occurred()) return NULL; | |
1326 | } _resultobj = Py_BuildValue("i",_result); | |
1327 | return _resultobj; | |
1328 | } | |
1329 | ||
1330 | #define wxListItem_GetAlign(_swigobj) (_swigobj->GetAlign()) | |
1331 | static PyObject *_wrap_wxListItem_GetAlign(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1332 | PyObject * _resultobj; | |
1333 | wxListColumnFormat _result; | |
1334 | wxListItem * _arg0; | |
1335 | PyObject * _argo0 = 0; | |
1336 | char *_kwnames[] = { "self", NULL }; | |
1337 | ||
1338 | self = self; | |
1339 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetAlign",_kwnames,&_argo0)) | |
1340 | return NULL; | |
1341 | if (_argo0) { | |
1342 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1343 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1344 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetAlign. Expected _wxListItem_p."); | |
1345 | return NULL; | |
1346 | } | |
1347 | } | |
1348 | { | |
1349 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1350 | _result = (wxListColumnFormat )wxListItem_GetAlign(_arg0); | |
1351 | ||
1352 | wxPyEndAllowThreads(__tstate); | |
1353 | if (PyErr_Occurred()) return NULL; | |
1354 | } _resultobj = Py_BuildValue("i",_result); | |
1355 | return _resultobj; | |
1356 | } | |
1357 | ||
1358 | #define wxListItem_GetAttributes(_swigobj) (_swigobj->GetAttributes()) | |
1359 | static PyObject *_wrap_wxListItem_GetAttributes(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1360 | PyObject * _resultobj; | |
1361 | wxListItemAttr * _result; | |
1362 | wxListItem * _arg0; | |
1363 | PyObject * _argo0 = 0; | |
1364 | char *_kwnames[] = { "self", NULL }; | |
1365 | char _ptemp[128]; | |
1366 | ||
1367 | self = self; | |
1368 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetAttributes",_kwnames,&_argo0)) | |
1369 | return NULL; | |
1370 | if (_argo0) { | |
1371 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1372 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1373 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetAttributes. Expected _wxListItem_p."); | |
1374 | return NULL; | |
1375 | } | |
1376 | } | |
1377 | { | |
1378 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1379 | _result = (wxListItemAttr *)wxListItem_GetAttributes(_arg0); | |
1380 | ||
1381 | wxPyEndAllowThreads(__tstate); | |
1382 | if (PyErr_Occurred()) return NULL; | |
1383 | } if (_result) { | |
1384 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListItemAttr_p"); | |
1385 | _resultobj = Py_BuildValue("s",_ptemp); | |
1386 | } else { | |
1387 | Py_INCREF(Py_None); | |
1388 | _resultobj = Py_None; | |
1389 | } | |
1390 | return _resultobj; | |
1391 | } | |
1392 | ||
1393 | #define wxListItem_HasAttributes(_swigobj) (_swigobj->HasAttributes()) | |
1394 | static PyObject *_wrap_wxListItem_HasAttributes(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1395 | PyObject * _resultobj; | |
1396 | bool _result; | |
1397 | wxListItem * _arg0; | |
1398 | PyObject * _argo0 = 0; | |
1399 | char *_kwnames[] = { "self", NULL }; | |
1400 | ||
1401 | self = self; | |
1402 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_HasAttributes",_kwnames,&_argo0)) | |
1403 | return NULL; | |
1404 | if (_argo0) { | |
1405 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1406 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1407 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_HasAttributes. Expected _wxListItem_p."); | |
1408 | return NULL; | |
1409 | } | |
1410 | } | |
1411 | { | |
1412 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1413 | _result = (bool )wxListItem_HasAttributes(_arg0); | |
1414 | ||
1415 | wxPyEndAllowThreads(__tstate); | |
1416 | if (PyErr_Occurred()) return NULL; | |
1417 | } _resultobj = Py_BuildValue("i",_result); | |
1418 | return _resultobj; | |
1419 | } | |
1420 | ||
1421 | #define wxListItem_GetTextColour(_swigobj) (_swigobj->GetTextColour()) | |
1422 | static PyObject *_wrap_wxListItem_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1423 | PyObject * _resultobj; | |
1424 | wxColour * _result; | |
1425 | wxListItem * _arg0; | |
1426 | PyObject * _argo0 = 0; | |
1427 | char *_kwnames[] = { "self", NULL }; | |
1428 | char _ptemp[128]; | |
1429 | ||
1430 | self = self; | |
1431 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetTextColour",_kwnames,&_argo0)) | |
1432 | return NULL; | |
1433 | if (_argo0) { | |
1434 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1435 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1436 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetTextColour. Expected _wxListItem_p."); | |
1437 | return NULL; | |
1438 | } | |
1439 | } | |
1440 | { | |
1441 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1442 | _result = new wxColour (wxListItem_GetTextColour(_arg0)); | |
1443 | ||
1444 | wxPyEndAllowThreads(__tstate); | |
1445 | if (PyErr_Occurred()) return NULL; | |
1446 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
1447 | _resultobj = Py_BuildValue("s",_ptemp); | |
1448 | return _resultobj; | |
1449 | } | |
1450 | ||
1451 | #define wxListItem_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
1452 | static PyObject *_wrap_wxListItem_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1453 | PyObject * _resultobj; | |
1454 | wxColour * _result; | |
1455 | wxListItem * _arg0; | |
1456 | PyObject * _argo0 = 0; | |
1457 | char *_kwnames[] = { "self", NULL }; | |
1458 | char _ptemp[128]; | |
1459 | ||
1460 | self = self; | |
1461 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetBackgroundColour",_kwnames,&_argo0)) | |
1462 | return NULL; | |
1463 | if (_argo0) { | |
1464 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1465 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1466 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetBackgroundColour. Expected _wxListItem_p."); | |
1467 | return NULL; | |
1468 | } | |
1469 | } | |
1470 | { | |
1471 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1472 | _result = new wxColour (wxListItem_GetBackgroundColour(_arg0)); | |
1473 | ||
1474 | wxPyEndAllowThreads(__tstate); | |
1475 | if (PyErr_Occurred()) return NULL; | |
1476 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
1477 | _resultobj = Py_BuildValue("s",_ptemp); | |
1478 | return _resultobj; | |
1479 | } | |
1480 | ||
1481 | #define wxListItem_GetFont(_swigobj) (_swigobj->GetFont()) | |
1482 | static PyObject *_wrap_wxListItem_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1483 | PyObject * _resultobj; | |
1484 | wxFont * _result; | |
1485 | wxListItem * _arg0; | |
1486 | PyObject * _argo0 = 0; | |
1487 | char *_kwnames[] = { "self", NULL }; | |
1488 | char _ptemp[128]; | |
1489 | ||
1490 | self = self; | |
1491 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_GetFont",_kwnames,&_argo0)) | |
1492 | return NULL; | |
1493 | if (_argo0) { | |
1494 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1495 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1496 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_GetFont. Expected _wxListItem_p."); | |
1497 | return NULL; | |
1498 | } | |
1499 | } | |
1500 | { | |
1501 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1502 | _result = new wxFont (wxListItem_GetFont(_arg0)); | |
1503 | ||
1504 | wxPyEndAllowThreads(__tstate); | |
1505 | if (PyErr_Occurred()) return NULL; | |
1506 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p"); | |
1507 | _resultobj = Py_BuildValue("s",_ptemp); | |
1508 | return _resultobj; | |
1509 | } | |
1510 | ||
1511 | #define wxListItem_m_mask_set(_swigobj,_swigval) (_swigobj->m_mask = _swigval,_swigval) | |
1512 | static PyObject *_wrap_wxListItem_m_mask_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1513 | PyObject * _resultobj; | |
1514 | long _result; | |
1515 | wxListItem * _arg0; | |
1516 | long _arg1; | |
1517 | PyObject * _argo0 = 0; | |
1518 | char *_kwnames[] = { "self","m_mask", NULL }; | |
1519 | ||
1520 | self = self; | |
1521 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_mask_set",_kwnames,&_argo0,&_arg1)) | |
1522 | return NULL; | |
1523 | if (_argo0) { | |
1524 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1525 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1526 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_mask_set. Expected _wxListItem_p."); | |
1527 | return NULL; | |
1528 | } | |
1529 | } | |
1530 | { | |
1531 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1532 | _result = (long )wxListItem_m_mask_set(_arg0,_arg1); | |
1533 | ||
1534 | wxPyEndAllowThreads(__tstate); | |
1535 | if (PyErr_Occurred()) return NULL; | |
1536 | } _resultobj = Py_BuildValue("l",_result); | |
1537 | return _resultobj; | |
1538 | } | |
1539 | ||
1540 | #define wxListItem_m_mask_get(_swigobj) ((long ) _swigobj->m_mask) | |
1541 | static PyObject *_wrap_wxListItem_m_mask_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1542 | PyObject * _resultobj; | |
1543 | long _result; | |
1544 | wxListItem * _arg0; | |
1545 | PyObject * _argo0 = 0; | |
1546 | char *_kwnames[] = { "self", NULL }; | |
1547 | ||
1548 | self = self; | |
1549 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_mask_get",_kwnames,&_argo0)) | |
1550 | return NULL; | |
1551 | if (_argo0) { | |
1552 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1553 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1554 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_mask_get. Expected _wxListItem_p."); | |
1555 | return NULL; | |
1556 | } | |
1557 | } | |
1558 | { | |
1559 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1560 | _result = (long )wxListItem_m_mask_get(_arg0); | |
1561 | ||
1562 | wxPyEndAllowThreads(__tstate); | |
1563 | if (PyErr_Occurred()) return NULL; | |
1564 | } _resultobj = Py_BuildValue("l",_result); | |
1565 | return _resultobj; | |
1566 | } | |
1567 | ||
1568 | #define wxListItem_m_itemId_set(_swigobj,_swigval) (_swigobj->m_itemId = _swigval,_swigval) | |
1569 | static PyObject *_wrap_wxListItem_m_itemId_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1570 | PyObject * _resultobj; | |
1571 | long _result; | |
1572 | wxListItem * _arg0; | |
1573 | long _arg1; | |
1574 | PyObject * _argo0 = 0; | |
1575 | char *_kwnames[] = { "self","m_itemId", NULL }; | |
1576 | ||
1577 | self = self; | |
1578 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_itemId_set",_kwnames,&_argo0,&_arg1)) | |
1579 | return NULL; | |
1580 | if (_argo0) { | |
1581 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1582 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1583 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_itemId_set. Expected _wxListItem_p."); | |
1584 | return NULL; | |
1585 | } | |
1586 | } | |
1587 | { | |
1588 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1589 | _result = (long )wxListItem_m_itemId_set(_arg0,_arg1); | |
1590 | ||
1591 | wxPyEndAllowThreads(__tstate); | |
1592 | if (PyErr_Occurred()) return NULL; | |
1593 | } _resultobj = Py_BuildValue("l",_result); | |
1594 | return _resultobj; | |
1595 | } | |
1596 | ||
1597 | #define wxListItem_m_itemId_get(_swigobj) ((long ) _swigobj->m_itemId) | |
1598 | static PyObject *_wrap_wxListItem_m_itemId_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1599 | PyObject * _resultobj; | |
1600 | long _result; | |
1601 | wxListItem * _arg0; | |
1602 | PyObject * _argo0 = 0; | |
1603 | char *_kwnames[] = { "self", NULL }; | |
1604 | ||
1605 | self = self; | |
1606 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_itemId_get",_kwnames,&_argo0)) | |
1607 | return NULL; | |
1608 | if (_argo0) { | |
1609 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1610 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1611 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_itemId_get. Expected _wxListItem_p."); | |
1612 | return NULL; | |
1613 | } | |
1614 | } | |
1615 | { | |
1616 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1617 | _result = (long )wxListItem_m_itemId_get(_arg0); | |
1618 | ||
1619 | wxPyEndAllowThreads(__tstate); | |
1620 | if (PyErr_Occurred()) return NULL; | |
1621 | } _resultobj = Py_BuildValue("l",_result); | |
1622 | return _resultobj; | |
1623 | } | |
1624 | ||
1625 | #define wxListItem_m_col_set(_swigobj,_swigval) (_swigobj->m_col = _swigval,_swigval) | |
1626 | static PyObject *_wrap_wxListItem_m_col_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1627 | PyObject * _resultobj; | |
1628 | int _result; | |
1629 | wxListItem * _arg0; | |
1630 | int _arg1; | |
1631 | PyObject * _argo0 = 0; | |
1632 | char *_kwnames[] = { "self","m_col", NULL }; | |
1633 | ||
1634 | self = self; | |
1635 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_col_set",_kwnames,&_argo0,&_arg1)) | |
1636 | return NULL; | |
1637 | if (_argo0) { | |
1638 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1639 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1640 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_col_set. Expected _wxListItem_p."); | |
1641 | return NULL; | |
1642 | } | |
1643 | } | |
1644 | { | |
1645 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1646 | _result = (int )wxListItem_m_col_set(_arg0,_arg1); | |
1647 | ||
1648 | wxPyEndAllowThreads(__tstate); | |
1649 | if (PyErr_Occurred()) return NULL; | |
1650 | } _resultobj = Py_BuildValue("i",_result); | |
1651 | return _resultobj; | |
1652 | } | |
1653 | ||
1654 | #define wxListItem_m_col_get(_swigobj) ((int ) _swigobj->m_col) | |
1655 | static PyObject *_wrap_wxListItem_m_col_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1656 | PyObject * _resultobj; | |
1657 | int _result; | |
1658 | wxListItem * _arg0; | |
1659 | PyObject * _argo0 = 0; | |
1660 | char *_kwnames[] = { "self", NULL }; | |
1661 | ||
1662 | self = self; | |
1663 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_col_get",_kwnames,&_argo0)) | |
1664 | return NULL; | |
1665 | if (_argo0) { | |
1666 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1667 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1668 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_col_get. Expected _wxListItem_p."); | |
1669 | return NULL; | |
1670 | } | |
1671 | } | |
1672 | { | |
1673 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1674 | _result = (int )wxListItem_m_col_get(_arg0); | |
1675 | ||
1676 | wxPyEndAllowThreads(__tstate); | |
1677 | if (PyErr_Occurred()) return NULL; | |
1678 | } _resultobj = Py_BuildValue("i",_result); | |
1679 | return _resultobj; | |
1680 | } | |
1681 | ||
1682 | #define wxListItem_m_state_set(_swigobj,_swigval) (_swigobj->m_state = _swigval,_swigval) | |
1683 | static PyObject *_wrap_wxListItem_m_state_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1684 | PyObject * _resultobj; | |
1685 | long _result; | |
1686 | wxListItem * _arg0; | |
1687 | long _arg1; | |
1688 | PyObject * _argo0 = 0; | |
1689 | char *_kwnames[] = { "self","m_state", NULL }; | |
1690 | ||
1691 | self = self; | |
1692 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_state_set",_kwnames,&_argo0,&_arg1)) | |
1693 | return NULL; | |
1694 | if (_argo0) { | |
1695 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1696 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1697 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_state_set. Expected _wxListItem_p."); | |
1698 | return NULL; | |
1699 | } | |
1700 | } | |
1701 | { | |
1702 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1703 | _result = (long )wxListItem_m_state_set(_arg0,_arg1); | |
1704 | ||
1705 | wxPyEndAllowThreads(__tstate); | |
1706 | if (PyErr_Occurred()) return NULL; | |
1707 | } _resultobj = Py_BuildValue("l",_result); | |
1708 | return _resultobj; | |
1709 | } | |
1710 | ||
1711 | #define wxListItem_m_state_get(_swigobj) ((long ) _swigobj->m_state) | |
1712 | static PyObject *_wrap_wxListItem_m_state_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1713 | PyObject * _resultobj; | |
1714 | long _result; | |
1715 | wxListItem * _arg0; | |
1716 | PyObject * _argo0 = 0; | |
1717 | char *_kwnames[] = { "self", NULL }; | |
1718 | ||
1719 | self = self; | |
1720 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_state_get",_kwnames,&_argo0)) | |
1721 | return NULL; | |
1722 | if (_argo0) { | |
1723 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1724 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1725 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_state_get. Expected _wxListItem_p."); | |
1726 | return NULL; | |
1727 | } | |
1728 | } | |
1729 | { | |
1730 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1731 | _result = (long )wxListItem_m_state_get(_arg0); | |
1732 | ||
1733 | wxPyEndAllowThreads(__tstate); | |
1734 | if (PyErr_Occurred()) return NULL; | |
1735 | } _resultobj = Py_BuildValue("l",_result); | |
1736 | return _resultobj; | |
1737 | } | |
1738 | ||
1739 | #define wxListItem_m_stateMask_set(_swigobj,_swigval) (_swigobj->m_stateMask = _swigval,_swigval) | |
1740 | static PyObject *_wrap_wxListItem_m_stateMask_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1741 | PyObject * _resultobj; | |
1742 | long _result; | |
1743 | wxListItem * _arg0; | |
1744 | long _arg1; | |
1745 | PyObject * _argo0 = 0; | |
1746 | char *_kwnames[] = { "self","m_stateMask", NULL }; | |
1747 | ||
1748 | self = self; | |
1749 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_stateMask_set",_kwnames,&_argo0,&_arg1)) | |
1750 | return NULL; | |
1751 | if (_argo0) { | |
1752 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1753 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1754 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_stateMask_set. Expected _wxListItem_p."); | |
1755 | return NULL; | |
1756 | } | |
1757 | } | |
1758 | { | |
1759 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1760 | _result = (long )wxListItem_m_stateMask_set(_arg0,_arg1); | |
1761 | ||
1762 | wxPyEndAllowThreads(__tstate); | |
1763 | if (PyErr_Occurred()) return NULL; | |
1764 | } _resultobj = Py_BuildValue("l",_result); | |
1765 | return _resultobj; | |
1766 | } | |
1767 | ||
1768 | #define wxListItem_m_stateMask_get(_swigobj) ((long ) _swigobj->m_stateMask) | |
1769 | static PyObject *_wrap_wxListItem_m_stateMask_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1770 | PyObject * _resultobj; | |
1771 | long _result; | |
1772 | wxListItem * _arg0; | |
1773 | PyObject * _argo0 = 0; | |
1774 | char *_kwnames[] = { "self", NULL }; | |
1775 | ||
1776 | self = self; | |
1777 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_stateMask_get",_kwnames,&_argo0)) | |
1778 | return NULL; | |
1779 | if (_argo0) { | |
1780 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1781 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1782 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_stateMask_get. Expected _wxListItem_p."); | |
1783 | return NULL; | |
1784 | } | |
1785 | } | |
1786 | { | |
1787 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1788 | _result = (long )wxListItem_m_stateMask_get(_arg0); | |
1789 | ||
1790 | wxPyEndAllowThreads(__tstate); | |
1791 | if (PyErr_Occurred()) return NULL; | |
1792 | } _resultobj = Py_BuildValue("l",_result); | |
1793 | return _resultobj; | |
1794 | } | |
1795 | ||
1796 | #define wxListItem_m_text_set(_swigobj,_swigval) (_swigobj->m_text = *(_swigval),_swigval) | |
1797 | static PyObject *_wrap_wxListItem_m_text_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1798 | PyObject * _resultobj; | |
1799 | wxString * _result; | |
1800 | wxListItem * _arg0; | |
1801 | wxString * _arg1; | |
1802 | PyObject * _argo0 = 0; | |
1803 | PyObject * _obj1 = 0; | |
1804 | char *_kwnames[] = { "self","m_text", NULL }; | |
1805 | ||
1806 | self = self; | |
1807 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListItem_m_text_set",_kwnames,&_argo0,&_obj1)) | |
1808 | return NULL; | |
1809 | if (_argo0) { | |
1810 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1811 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1812 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_text_set. Expected _wxListItem_p."); | |
1813 | return NULL; | |
1814 | } | |
1815 | } | |
1816 | { | |
1817 | #if PYTHON_API_VERSION >= 1009 | |
1818 | char* tmpPtr; int tmpSize; | |
1819 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
1820 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1821 | return NULL; | |
1822 | } | |
1823 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1824 | return NULL; | |
1825 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1826 | #else | |
1827 | if (!PyString_Check(_obj1)) { | |
1828 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1829 | return NULL; | |
1830 | } | |
1831 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
1832 | #endif | |
1833 | } | |
1834 | { | |
1835 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1836 | _result = (wxString *)wxListItem_m_text_set(_arg0,_arg1); | |
1837 | ||
1838 | wxPyEndAllowThreads(__tstate); | |
1839 | if (PyErr_Occurred()) return NULL; | |
1840 | }{ | |
1841 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
1842 | } | |
1843 | { | |
1844 | if (_obj1) | |
1845 | delete _arg1; | |
1846 | } | |
1847 | return _resultobj; | |
1848 | } | |
1849 | ||
1850 | #define wxListItem_m_text_get(_swigobj) (&_swigobj->m_text) | |
1851 | static PyObject *_wrap_wxListItem_m_text_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1852 | PyObject * _resultobj; | |
1853 | wxString * _result; | |
1854 | wxListItem * _arg0; | |
1855 | PyObject * _argo0 = 0; | |
1856 | char *_kwnames[] = { "self", NULL }; | |
1857 | ||
1858 | self = self; | |
1859 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_text_get",_kwnames,&_argo0)) | |
1860 | return NULL; | |
1861 | if (_argo0) { | |
1862 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1863 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1864 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_text_get. Expected _wxListItem_p."); | |
1865 | return NULL; | |
1866 | } | |
1867 | } | |
1868 | { | |
1869 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1870 | _result = (wxString *)wxListItem_m_text_get(_arg0); | |
1871 | ||
1872 | wxPyEndAllowThreads(__tstate); | |
1873 | if (PyErr_Occurred()) return NULL; | |
1874 | }{ | |
1875 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
1876 | } | |
1877 | return _resultobj; | |
1878 | } | |
1879 | ||
1880 | #define wxListItem_m_image_set(_swigobj,_swigval) (_swigobj->m_image = _swigval,_swigval) | |
1881 | static PyObject *_wrap_wxListItem_m_image_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1882 | PyObject * _resultobj; | |
1883 | int _result; | |
1884 | wxListItem * _arg0; | |
1885 | int _arg1; | |
1886 | PyObject * _argo0 = 0; | |
1887 | char *_kwnames[] = { "self","m_image", NULL }; | |
1888 | ||
1889 | self = self; | |
1890 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_image_set",_kwnames,&_argo0,&_arg1)) | |
1891 | return NULL; | |
1892 | if (_argo0) { | |
1893 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1894 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1895 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_image_set. Expected _wxListItem_p."); | |
1896 | return NULL; | |
1897 | } | |
1898 | } | |
1899 | { | |
1900 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1901 | _result = (int )wxListItem_m_image_set(_arg0,_arg1); | |
1902 | ||
1903 | wxPyEndAllowThreads(__tstate); | |
1904 | if (PyErr_Occurred()) return NULL; | |
1905 | } _resultobj = Py_BuildValue("i",_result); | |
1906 | return _resultobj; | |
1907 | } | |
1908 | ||
1909 | #define wxListItem_m_image_get(_swigobj) ((int ) _swigobj->m_image) | |
1910 | static PyObject *_wrap_wxListItem_m_image_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1911 | PyObject * _resultobj; | |
1912 | int _result; | |
1913 | wxListItem * _arg0; | |
1914 | PyObject * _argo0 = 0; | |
1915 | char *_kwnames[] = { "self", NULL }; | |
1916 | ||
1917 | self = self; | |
1918 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_image_get",_kwnames,&_argo0)) | |
1919 | return NULL; | |
1920 | if (_argo0) { | |
1921 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1922 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1923 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_image_get. Expected _wxListItem_p."); | |
1924 | return NULL; | |
1925 | } | |
1926 | } | |
1927 | { | |
1928 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1929 | _result = (int )wxListItem_m_image_get(_arg0); | |
1930 | ||
1931 | wxPyEndAllowThreads(__tstate); | |
1932 | if (PyErr_Occurred()) return NULL; | |
1933 | } _resultobj = Py_BuildValue("i",_result); | |
1934 | return _resultobj; | |
1935 | } | |
1936 | ||
1937 | #define wxListItem_m_data_set(_swigobj,_swigval) (_swigobj->m_data = _swigval,_swigval) | |
1938 | static PyObject *_wrap_wxListItem_m_data_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1939 | PyObject * _resultobj; | |
1940 | long _result; | |
1941 | wxListItem * _arg0; | |
1942 | long _arg1; | |
1943 | PyObject * _argo0 = 0; | |
1944 | char *_kwnames[] = { "self","m_data", NULL }; | |
1945 | ||
1946 | self = self; | |
1947 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListItem_m_data_set",_kwnames,&_argo0,&_arg1)) | |
1948 | return NULL; | |
1949 | if (_argo0) { | |
1950 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1951 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1952 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_data_set. Expected _wxListItem_p."); | |
1953 | return NULL; | |
1954 | } | |
1955 | } | |
1956 | { | |
1957 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1958 | _result = (long )wxListItem_m_data_set(_arg0,_arg1); | |
1959 | ||
1960 | wxPyEndAllowThreads(__tstate); | |
1961 | if (PyErr_Occurred()) return NULL; | |
1962 | } _resultobj = Py_BuildValue("l",_result); | |
1963 | return _resultobj; | |
1964 | } | |
1965 | ||
1966 | #define wxListItem_m_data_get(_swigobj) ((long ) _swigobj->m_data) | |
1967 | static PyObject *_wrap_wxListItem_m_data_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1968 | PyObject * _resultobj; | |
1969 | long _result; | |
1970 | wxListItem * _arg0; | |
1971 | PyObject * _argo0 = 0; | |
1972 | char *_kwnames[] = { "self", NULL }; | |
1973 | ||
1974 | self = self; | |
1975 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_data_get",_kwnames,&_argo0)) | |
1976 | return NULL; | |
1977 | if (_argo0) { | |
1978 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1979 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
1980 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_data_get. Expected _wxListItem_p."); | |
1981 | return NULL; | |
1982 | } | |
1983 | } | |
1984 | { | |
1985 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
1986 | _result = (long )wxListItem_m_data_get(_arg0); | |
1987 | ||
1988 | wxPyEndAllowThreads(__tstate); | |
1989 | if (PyErr_Occurred()) return NULL; | |
1990 | } _resultobj = Py_BuildValue("l",_result); | |
1991 | return _resultobj; | |
1992 | } | |
1993 | ||
1994 | #define wxListItem_m_format_set(_swigobj,_swigval) (_swigobj->m_format = _swigval,_swigval) | |
1995 | static PyObject *_wrap_wxListItem_m_format_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1996 | PyObject * _resultobj; | |
1997 | int _result; | |
1998 | wxListItem * _arg0; | |
1999 | int _arg1; | |
2000 | PyObject * _argo0 = 0; | |
2001 | char *_kwnames[] = { "self","m_format", NULL }; | |
2002 | ||
2003 | self = self; | |
2004 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_format_set",_kwnames,&_argo0,&_arg1)) | |
2005 | return NULL; | |
2006 | if (_argo0) { | |
2007 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2008 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
2009 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_format_set. Expected _wxListItem_p."); | |
2010 | return NULL; | |
2011 | } | |
2012 | } | |
2013 | { | |
2014 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2015 | _result = (int )wxListItem_m_format_set(_arg0,_arg1); | |
2016 | ||
2017 | wxPyEndAllowThreads(__tstate); | |
2018 | if (PyErr_Occurred()) return NULL; | |
2019 | } _resultobj = Py_BuildValue("i",_result); | |
2020 | return _resultobj; | |
2021 | } | |
2022 | ||
2023 | #define wxListItem_m_format_get(_swigobj) ((int ) _swigobj->m_format) | |
2024 | static PyObject *_wrap_wxListItem_m_format_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2025 | PyObject * _resultobj; | |
2026 | int _result; | |
2027 | wxListItem * _arg0; | |
2028 | PyObject * _argo0 = 0; | |
2029 | char *_kwnames[] = { "self", NULL }; | |
2030 | ||
2031 | self = self; | |
2032 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_format_get",_kwnames,&_argo0)) | |
2033 | return NULL; | |
2034 | if (_argo0) { | |
2035 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2036 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
2037 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_format_get. Expected _wxListItem_p."); | |
2038 | return NULL; | |
2039 | } | |
2040 | } | |
2041 | { | |
2042 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2043 | _result = (int )wxListItem_m_format_get(_arg0); | |
2044 | ||
2045 | wxPyEndAllowThreads(__tstate); | |
2046 | if (PyErr_Occurred()) return NULL; | |
2047 | } _resultobj = Py_BuildValue("i",_result); | |
2048 | return _resultobj; | |
2049 | } | |
2050 | ||
2051 | #define wxListItem_m_width_set(_swigobj,_swigval) (_swigobj->m_width = _swigval,_swigval) | |
2052 | static PyObject *_wrap_wxListItem_m_width_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2053 | PyObject * _resultobj; | |
2054 | int _result; | |
2055 | wxListItem * _arg0; | |
2056 | int _arg1; | |
2057 | PyObject * _argo0 = 0; | |
2058 | char *_kwnames[] = { "self","m_width", NULL }; | |
2059 | ||
2060 | self = self; | |
2061 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListItem_m_width_set",_kwnames,&_argo0,&_arg1)) | |
2062 | return NULL; | |
2063 | if (_argo0) { | |
2064 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2065 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
2066 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_width_set. Expected _wxListItem_p."); | |
2067 | return NULL; | |
2068 | } | |
2069 | } | |
2070 | { | |
2071 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2072 | _result = (int )wxListItem_m_width_set(_arg0,_arg1); | |
2073 | ||
2074 | wxPyEndAllowThreads(__tstate); | |
2075 | if (PyErr_Occurred()) return NULL; | |
2076 | } _resultobj = Py_BuildValue("i",_result); | |
2077 | return _resultobj; | |
2078 | } | |
2079 | ||
2080 | #define wxListItem_m_width_get(_swigobj) ((int ) _swigobj->m_width) | |
2081 | static PyObject *_wrap_wxListItem_m_width_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2082 | PyObject * _resultobj; | |
2083 | int _result; | |
2084 | wxListItem * _arg0; | |
2085 | PyObject * _argo0 = 0; | |
2086 | char *_kwnames[] = { "self", NULL }; | |
2087 | ||
2088 | self = self; | |
2089 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListItem_m_width_get",_kwnames,&_argo0)) | |
2090 | return NULL; | |
2091 | if (_argo0) { | |
2092 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2093 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListItem_p")) { | |
2094 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListItem_m_width_get. Expected _wxListItem_p."); | |
2095 | return NULL; | |
2096 | } | |
2097 | } | |
2098 | { | |
2099 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2100 | _result = (int )wxListItem_m_width_get(_arg0); | |
2101 | ||
2102 | wxPyEndAllowThreads(__tstate); | |
2103 | if (PyErr_Occurred()) return NULL; | |
2104 | } _resultobj = Py_BuildValue("i",_result); | |
2105 | return _resultobj; | |
2106 | } | |
2107 | ||
2108 | static void *SwigwxListEventTowxNotifyEvent(void *ptr) { | |
2109 | wxListEvent *src; | |
2110 | wxNotifyEvent *dest; | |
2111 | src = (wxListEvent *) ptr; | |
2112 | dest = (wxNotifyEvent *) src; | |
2113 | return (void *) dest; | |
2114 | } | |
2115 | ||
2116 | static void *SwigwxListEventTowxCommandEvent(void *ptr) { | |
2117 | wxListEvent *src; | |
2118 | wxCommandEvent *dest; | |
2119 | src = (wxListEvent *) ptr; | |
2120 | dest = (wxCommandEvent *) src; | |
2121 | return (void *) dest; | |
2122 | } | |
2123 | ||
2124 | static void *SwigwxListEventTowxEvent(void *ptr) { | |
2125 | wxListEvent *src; | |
2126 | wxEvent *dest; | |
2127 | src = (wxListEvent *) ptr; | |
2128 | dest = (wxEvent *) src; | |
2129 | return (void *) dest; | |
2130 | } | |
2131 | ||
2132 | static void *SwigwxListEventTowxObject(void *ptr) { | |
2133 | wxListEvent *src; | |
2134 | wxObject *dest; | |
2135 | src = (wxListEvent *) ptr; | |
2136 | dest = (wxObject *) src; | |
2137 | return (void *) dest; | |
2138 | } | |
2139 | ||
2140 | #define new_wxListEvent(_swigarg0,_swigarg1) (new wxListEvent(_swigarg0,_swigarg1)) | |
2141 | static PyObject *_wrap_new_wxListEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2142 | PyObject * _resultobj; | |
2143 | wxListEvent * _result; | |
2144 | wxEventType _arg0 = (wxEventType ) wxEVT_NULL; | |
2145 | int _arg1 = (int ) 0; | |
2146 | char *_kwnames[] = { "commandType","id", NULL }; | |
2147 | char _ptemp[128]; | |
2148 | ||
2149 | self = self; | |
2150 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ii:new_wxListEvent",_kwnames,&_arg0,&_arg1)) | |
2151 | return NULL; | |
2152 | { | |
2153 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2154 | _result = (wxListEvent *)new_wxListEvent(_arg0,_arg1); | |
2155 | ||
2156 | wxPyEndAllowThreads(__tstate); | |
2157 | if (PyErr_Occurred()) return NULL; | |
2158 | } if (_result) { | |
2159 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListEvent_p"); | |
2160 | _resultobj = Py_BuildValue("s",_ptemp); | |
2161 | } else { | |
2162 | Py_INCREF(Py_None); | |
2163 | _resultobj = Py_None; | |
2164 | } | |
2165 | return _resultobj; | |
2166 | } | |
2167 | ||
2168 | #define wxListEvent_m_code_set(_swigobj,_swigval) (_swigobj->m_code = _swigval,_swigval) | |
2169 | static PyObject *_wrap_wxListEvent_m_code_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2170 | PyObject * _resultobj; | |
2171 | int _result; | |
2172 | wxListEvent * _arg0; | |
2173 | int _arg1; | |
2174 | PyObject * _argo0 = 0; | |
2175 | char *_kwnames[] = { "self","m_code", NULL }; | |
2176 | ||
2177 | self = self; | |
2178 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListEvent_m_code_set",_kwnames,&_argo0,&_arg1)) | |
2179 | return NULL; | |
2180 | if (_argo0) { | |
2181 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2182 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2183 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_code_set. Expected _wxListEvent_p."); | |
2184 | return NULL; | |
2185 | } | |
2186 | } | |
2187 | { | |
2188 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2189 | _result = (int )wxListEvent_m_code_set(_arg0,_arg1); | |
2190 | ||
2191 | wxPyEndAllowThreads(__tstate); | |
2192 | if (PyErr_Occurred()) return NULL; | |
2193 | } _resultobj = Py_BuildValue("i",_result); | |
2194 | return _resultobj; | |
2195 | } | |
2196 | ||
2197 | #define wxListEvent_m_code_get(_swigobj) ((int ) _swigobj->m_code) | |
2198 | static PyObject *_wrap_wxListEvent_m_code_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2199 | PyObject * _resultobj; | |
2200 | int _result; | |
2201 | wxListEvent * _arg0; | |
2202 | PyObject * _argo0 = 0; | |
2203 | char *_kwnames[] = { "self", NULL }; | |
2204 | ||
2205 | self = self; | |
2206 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_code_get",_kwnames,&_argo0)) | |
2207 | return NULL; | |
2208 | if (_argo0) { | |
2209 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2210 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2211 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_code_get. Expected _wxListEvent_p."); | |
2212 | return NULL; | |
2213 | } | |
2214 | } | |
2215 | { | |
2216 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2217 | _result = (int )wxListEvent_m_code_get(_arg0); | |
2218 | ||
2219 | wxPyEndAllowThreads(__tstate); | |
2220 | if (PyErr_Occurred()) return NULL; | |
2221 | } _resultobj = Py_BuildValue("i",_result); | |
2222 | return _resultobj; | |
2223 | } | |
2224 | ||
2225 | #define wxListEvent_m_oldItemIndex_set(_swigobj,_swigval) (_swigobj->m_oldItemIndex = _swigval,_swigval) | |
2226 | static PyObject *_wrap_wxListEvent_m_oldItemIndex_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2227 | PyObject * _resultobj; | |
2228 | long _result; | |
2229 | wxListEvent * _arg0; | |
2230 | long _arg1; | |
2231 | PyObject * _argo0 = 0; | |
2232 | char *_kwnames[] = { "self","m_oldItemIndex", NULL }; | |
2233 | ||
2234 | self = self; | |
2235 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListEvent_m_oldItemIndex_set",_kwnames,&_argo0,&_arg1)) | |
2236 | return NULL; | |
2237 | if (_argo0) { | |
2238 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2239 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2240 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_oldItemIndex_set. Expected _wxListEvent_p."); | |
2241 | return NULL; | |
2242 | } | |
2243 | } | |
2244 | { | |
2245 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2246 | _result = (long )wxListEvent_m_oldItemIndex_set(_arg0,_arg1); | |
2247 | ||
2248 | wxPyEndAllowThreads(__tstate); | |
2249 | if (PyErr_Occurred()) return NULL; | |
2250 | } _resultobj = Py_BuildValue("l",_result); | |
2251 | return _resultobj; | |
2252 | } | |
2253 | ||
2254 | #define wxListEvent_m_oldItemIndex_get(_swigobj) ((long ) _swigobj->m_oldItemIndex) | |
2255 | static PyObject *_wrap_wxListEvent_m_oldItemIndex_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2256 | PyObject * _resultobj; | |
2257 | long _result; | |
2258 | wxListEvent * _arg0; | |
2259 | PyObject * _argo0 = 0; | |
2260 | char *_kwnames[] = { "self", NULL }; | |
2261 | ||
2262 | self = self; | |
2263 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_oldItemIndex_get",_kwnames,&_argo0)) | |
2264 | return NULL; | |
2265 | if (_argo0) { | |
2266 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2267 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2268 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_oldItemIndex_get. Expected _wxListEvent_p."); | |
2269 | return NULL; | |
2270 | } | |
2271 | } | |
2272 | { | |
2273 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2274 | _result = (long )wxListEvent_m_oldItemIndex_get(_arg0); | |
2275 | ||
2276 | wxPyEndAllowThreads(__tstate); | |
2277 | if (PyErr_Occurred()) return NULL; | |
2278 | } _resultobj = Py_BuildValue("l",_result); | |
2279 | return _resultobj; | |
2280 | } | |
2281 | ||
2282 | #define wxListEvent_m_itemIndex_set(_swigobj,_swigval) (_swigobj->m_itemIndex = _swigval,_swigval) | |
2283 | static PyObject *_wrap_wxListEvent_m_itemIndex_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2284 | PyObject * _resultobj; | |
2285 | long _result; | |
2286 | wxListEvent * _arg0; | |
2287 | long _arg1; | |
2288 | PyObject * _argo0 = 0; | |
2289 | char *_kwnames[] = { "self","m_itemIndex", NULL }; | |
2290 | ||
2291 | self = self; | |
2292 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListEvent_m_itemIndex_set",_kwnames,&_argo0,&_arg1)) | |
2293 | return NULL; | |
2294 | if (_argo0) { | |
2295 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2296 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2297 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_itemIndex_set. Expected _wxListEvent_p."); | |
2298 | return NULL; | |
2299 | } | |
2300 | } | |
2301 | { | |
2302 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2303 | _result = (long )wxListEvent_m_itemIndex_set(_arg0,_arg1); | |
2304 | ||
2305 | wxPyEndAllowThreads(__tstate); | |
2306 | if (PyErr_Occurred()) return NULL; | |
2307 | } _resultobj = Py_BuildValue("l",_result); | |
2308 | return _resultobj; | |
2309 | } | |
2310 | ||
2311 | #define wxListEvent_m_itemIndex_get(_swigobj) ((long ) _swigobj->m_itemIndex) | |
2312 | static PyObject *_wrap_wxListEvent_m_itemIndex_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2313 | PyObject * _resultobj; | |
2314 | long _result; | |
2315 | wxListEvent * _arg0; | |
2316 | PyObject * _argo0 = 0; | |
2317 | char *_kwnames[] = { "self", NULL }; | |
2318 | ||
2319 | self = self; | |
2320 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_itemIndex_get",_kwnames,&_argo0)) | |
2321 | return NULL; | |
2322 | if (_argo0) { | |
2323 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2324 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2325 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_itemIndex_get. Expected _wxListEvent_p."); | |
2326 | return NULL; | |
2327 | } | |
2328 | } | |
2329 | { | |
2330 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2331 | _result = (long )wxListEvent_m_itemIndex_get(_arg0); | |
2332 | ||
2333 | wxPyEndAllowThreads(__tstate); | |
2334 | if (PyErr_Occurred()) return NULL; | |
2335 | } _resultobj = Py_BuildValue("l",_result); | |
2336 | return _resultobj; | |
2337 | } | |
2338 | ||
2339 | #define wxListEvent_m_col_set(_swigobj,_swigval) (_swigobj->m_col = _swigval,_swigval) | |
2340 | static PyObject *_wrap_wxListEvent_m_col_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2341 | PyObject * _resultobj; | |
2342 | int _result; | |
2343 | wxListEvent * _arg0; | |
2344 | int _arg1; | |
2345 | PyObject * _argo0 = 0; | |
2346 | char *_kwnames[] = { "self","m_col", NULL }; | |
2347 | ||
2348 | self = self; | |
2349 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListEvent_m_col_set",_kwnames,&_argo0,&_arg1)) | |
2350 | return NULL; | |
2351 | if (_argo0) { | |
2352 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2353 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2354 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_col_set. Expected _wxListEvent_p."); | |
2355 | return NULL; | |
2356 | } | |
2357 | } | |
2358 | { | |
2359 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2360 | _result = (int )wxListEvent_m_col_set(_arg0,_arg1); | |
2361 | ||
2362 | wxPyEndAllowThreads(__tstate); | |
2363 | if (PyErr_Occurred()) return NULL; | |
2364 | } _resultobj = Py_BuildValue("i",_result); | |
2365 | return _resultobj; | |
2366 | } | |
2367 | ||
2368 | #define wxListEvent_m_col_get(_swigobj) ((int ) _swigobj->m_col) | |
2369 | static PyObject *_wrap_wxListEvent_m_col_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2370 | PyObject * _resultobj; | |
2371 | int _result; | |
2372 | wxListEvent * _arg0; | |
2373 | PyObject * _argo0 = 0; | |
2374 | char *_kwnames[] = { "self", NULL }; | |
2375 | ||
2376 | self = self; | |
2377 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_col_get",_kwnames,&_argo0)) | |
2378 | return NULL; | |
2379 | if (_argo0) { | |
2380 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2381 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2382 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_col_get. Expected _wxListEvent_p."); | |
2383 | return NULL; | |
2384 | } | |
2385 | } | |
2386 | { | |
2387 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2388 | _result = (int )wxListEvent_m_col_get(_arg0); | |
2389 | ||
2390 | wxPyEndAllowThreads(__tstate); | |
2391 | if (PyErr_Occurred()) return NULL; | |
2392 | } _resultobj = Py_BuildValue("i",_result); | |
2393 | return _resultobj; | |
2394 | } | |
2395 | ||
2396 | #define wxListEvent_m_pointDrag_set(_swigobj,_swigval) (_swigobj->m_pointDrag = *(_swigval),_swigval) | |
2397 | static PyObject *_wrap_wxListEvent_m_pointDrag_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2398 | PyObject * _resultobj; | |
2399 | wxPoint * _result; | |
2400 | wxListEvent * _arg0; | |
2401 | wxPoint * _arg1; | |
2402 | PyObject * _argo0 = 0; | |
2403 | wxPoint temp; | |
2404 | PyObject * _obj1 = 0; | |
2405 | char *_kwnames[] = { "self","m_pointDrag", NULL }; | |
2406 | char _ptemp[128]; | |
2407 | ||
2408 | self = self; | |
2409 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListEvent_m_pointDrag_set",_kwnames,&_argo0,&_obj1)) | |
2410 | return NULL; | |
2411 | if (_argo0) { | |
2412 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2413 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2414 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_pointDrag_set. Expected _wxListEvent_p."); | |
2415 | return NULL; | |
2416 | } | |
2417 | } | |
2418 | { | |
2419 | _arg1 = &temp; | |
2420 | if (! wxPoint_helper(_obj1, &_arg1)) | |
2421 | return NULL; | |
2422 | } | |
2423 | { | |
2424 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2425 | _result = (wxPoint *)wxListEvent_m_pointDrag_set(_arg0,_arg1); | |
2426 | ||
2427 | wxPyEndAllowThreads(__tstate); | |
2428 | if (PyErr_Occurred()) return NULL; | |
2429 | } if (_result) { | |
2430 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
2431 | _resultobj = Py_BuildValue("s",_ptemp); | |
2432 | } else { | |
2433 | Py_INCREF(Py_None); | |
2434 | _resultobj = Py_None; | |
2435 | } | |
2436 | return _resultobj; | |
2437 | } | |
2438 | ||
2439 | #define wxListEvent_m_pointDrag_get(_swigobj) (&_swigobj->m_pointDrag) | |
2440 | static PyObject *_wrap_wxListEvent_m_pointDrag_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2441 | PyObject * _resultobj; | |
2442 | wxPoint * _result; | |
2443 | wxListEvent * _arg0; | |
2444 | PyObject * _argo0 = 0; | |
2445 | char *_kwnames[] = { "self", NULL }; | |
2446 | char _ptemp[128]; | |
2447 | ||
2448 | self = self; | |
2449 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_pointDrag_get",_kwnames,&_argo0)) | |
2450 | return NULL; | |
2451 | if (_argo0) { | |
2452 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2453 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2454 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_pointDrag_get. Expected _wxListEvent_p."); | |
2455 | return NULL; | |
2456 | } | |
2457 | } | |
2458 | { | |
2459 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2460 | _result = (wxPoint *)wxListEvent_m_pointDrag_get(_arg0); | |
2461 | ||
2462 | wxPyEndAllowThreads(__tstate); | |
2463 | if (PyErr_Occurred()) return NULL; | |
2464 | } if (_result) { | |
2465 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
2466 | _resultobj = Py_BuildValue("s",_ptemp); | |
2467 | } else { | |
2468 | Py_INCREF(Py_None); | |
2469 | _resultobj = Py_None; | |
2470 | } | |
2471 | return _resultobj; | |
2472 | } | |
2473 | ||
2474 | #define wxListEvent_m_item_set(_swigobj,_swigval) (_swigobj->m_item = *(_swigval),_swigval) | |
2475 | static PyObject *_wrap_wxListEvent_m_item_set(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2476 | PyObject * _resultobj; | |
2477 | wxListItem * _result; | |
2478 | wxListEvent * _arg0; | |
2479 | wxListItem * _arg1; | |
2480 | PyObject * _argo0 = 0; | |
2481 | PyObject * _argo1 = 0; | |
2482 | char *_kwnames[] = { "self","m_item", NULL }; | |
2483 | ||
2484 | self = self; | |
2485 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListEvent_m_item_set",_kwnames,&_argo0,&_argo1)) | |
2486 | return NULL; | |
2487 | if (_argo0) { | |
2488 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2489 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2490 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_item_set. Expected _wxListEvent_p."); | |
2491 | return NULL; | |
2492 | } | |
2493 | } | |
2494 | if (_argo1) { | |
2495 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2496 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxListItem_p")) { | |
2497 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListEvent_m_item_set. Expected _wxListItem_p."); | |
2498 | return NULL; | |
2499 | } | |
2500 | } | |
2501 | { | |
2502 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2503 | _result = (wxListItem *)wxListEvent_m_item_set(_arg0,_arg1); | |
2504 | ||
2505 | wxPyEndAllowThreads(__tstate); | |
2506 | if (PyErr_Occurred()) return NULL; | |
2507 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
2508 | return _resultobj; | |
2509 | } | |
2510 | ||
2511 | #define wxListEvent_m_item_get(_swigobj) (&_swigobj->m_item) | |
2512 | static PyObject *_wrap_wxListEvent_m_item_get(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2513 | PyObject * _resultobj; | |
2514 | wxListItem * _result; | |
2515 | wxListEvent * _arg0; | |
2516 | PyObject * _argo0 = 0; | |
2517 | char *_kwnames[] = { "self", NULL }; | |
2518 | ||
2519 | self = self; | |
2520 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_m_item_get",_kwnames,&_argo0)) | |
2521 | return NULL; | |
2522 | if (_argo0) { | |
2523 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2524 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2525 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_m_item_get. Expected _wxListEvent_p."); | |
2526 | return NULL; | |
2527 | } | |
2528 | } | |
2529 | { | |
2530 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2531 | _result = (wxListItem *)wxListEvent_m_item_get(_arg0); | |
2532 | ||
2533 | wxPyEndAllowThreads(__tstate); | |
2534 | if (PyErr_Occurred()) return NULL; | |
2535 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
2536 | return _resultobj; | |
2537 | } | |
2538 | ||
2539 | #define wxListEvent_GetCode(_swigobj) (_swigobj->GetCode()) | |
2540 | static PyObject *_wrap_wxListEvent_GetCode(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2541 | PyObject * _resultobj; | |
2542 | int _result; | |
2543 | wxListEvent * _arg0; | |
2544 | PyObject * _argo0 = 0; | |
2545 | char *_kwnames[] = { "self", NULL }; | |
2546 | ||
2547 | self = self; | |
2548 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetCode",_kwnames,&_argo0)) | |
2549 | return NULL; | |
2550 | if (_argo0) { | |
2551 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2552 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2553 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetCode. Expected _wxListEvent_p."); | |
2554 | return NULL; | |
2555 | } | |
2556 | } | |
2557 | { | |
2558 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2559 | _result = (int )wxListEvent_GetCode(_arg0); | |
2560 | ||
2561 | wxPyEndAllowThreads(__tstate); | |
2562 | if (PyErr_Occurred()) return NULL; | |
2563 | } _resultobj = Py_BuildValue("i",_result); | |
2564 | return _resultobj; | |
2565 | } | |
2566 | ||
2567 | #define wxListEvent_GetIndex(_swigobj) (_swigobj->GetIndex()) | |
2568 | static PyObject *_wrap_wxListEvent_GetIndex(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2569 | PyObject * _resultobj; | |
2570 | long _result; | |
2571 | wxListEvent * _arg0; | |
2572 | PyObject * _argo0 = 0; | |
2573 | char *_kwnames[] = { "self", NULL }; | |
2574 | ||
2575 | self = self; | |
2576 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetIndex",_kwnames,&_argo0)) | |
2577 | return NULL; | |
2578 | if (_argo0) { | |
2579 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2580 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2581 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetIndex. Expected _wxListEvent_p."); | |
2582 | return NULL; | |
2583 | } | |
2584 | } | |
2585 | { | |
2586 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2587 | _result = (long )wxListEvent_GetIndex(_arg0); | |
2588 | ||
2589 | wxPyEndAllowThreads(__tstate); | |
2590 | if (PyErr_Occurred()) return NULL; | |
2591 | } _resultobj = Py_BuildValue("l",_result); | |
2592 | return _resultobj; | |
2593 | } | |
2594 | ||
2595 | #define wxListEvent_GetColumn(_swigobj) (_swigobj->GetColumn()) | |
2596 | static PyObject *_wrap_wxListEvent_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2597 | PyObject * _resultobj; | |
2598 | int _result; | |
2599 | wxListEvent * _arg0; | |
2600 | PyObject * _argo0 = 0; | |
2601 | char *_kwnames[] = { "self", NULL }; | |
2602 | ||
2603 | self = self; | |
2604 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetColumn",_kwnames,&_argo0)) | |
2605 | return NULL; | |
2606 | if (_argo0) { | |
2607 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2608 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2609 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetColumn. Expected _wxListEvent_p."); | |
2610 | return NULL; | |
2611 | } | |
2612 | } | |
2613 | { | |
2614 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2615 | _result = (int )wxListEvent_GetColumn(_arg0); | |
2616 | ||
2617 | wxPyEndAllowThreads(__tstate); | |
2618 | if (PyErr_Occurred()) return NULL; | |
2619 | } _resultobj = Py_BuildValue("i",_result); | |
2620 | return _resultobj; | |
2621 | } | |
2622 | ||
2623 | #define wxListEvent_GetPoint(_swigobj) (_swigobj->GetPoint()) | |
2624 | static PyObject *_wrap_wxListEvent_GetPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2625 | PyObject * _resultobj; | |
2626 | wxPoint * _result; | |
2627 | wxListEvent * _arg0; | |
2628 | PyObject * _argo0 = 0; | |
2629 | char *_kwnames[] = { "self", NULL }; | |
2630 | char _ptemp[128]; | |
2631 | ||
2632 | self = self; | |
2633 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetPoint",_kwnames,&_argo0)) | |
2634 | return NULL; | |
2635 | if (_argo0) { | |
2636 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2637 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2638 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetPoint. Expected _wxListEvent_p."); | |
2639 | return NULL; | |
2640 | } | |
2641 | } | |
2642 | { | |
2643 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2644 | _result = new wxPoint (wxListEvent_GetPoint(_arg0)); | |
2645 | ||
2646 | wxPyEndAllowThreads(__tstate); | |
2647 | if (PyErr_Occurred()) return NULL; | |
2648 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
2649 | _resultobj = Py_BuildValue("s",_ptemp); | |
2650 | return _resultobj; | |
2651 | } | |
2652 | ||
2653 | #define wxListEvent_GetLabel(_swigobj) (_swigobj->GetLabel()) | |
2654 | static PyObject *_wrap_wxListEvent_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2655 | PyObject * _resultobj; | |
2656 | wxString * _result; | |
2657 | wxListEvent * _arg0; | |
2658 | PyObject * _argo0 = 0; | |
2659 | char *_kwnames[] = { "self", NULL }; | |
2660 | ||
2661 | self = self; | |
2662 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetLabel",_kwnames,&_argo0)) | |
2663 | return NULL; | |
2664 | if (_argo0) { | |
2665 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2666 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2667 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetLabel. Expected _wxListEvent_p."); | |
2668 | return NULL; | |
2669 | } | |
2670 | } | |
2671 | { | |
2672 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2673 | const wxString & _result_ref = wxListEvent_GetLabel(_arg0); | |
2674 | _result = (wxString *) &_result_ref; | |
2675 | ||
2676 | wxPyEndAllowThreads(__tstate); | |
2677 | if (PyErr_Occurred()) return NULL; | |
2678 | }{ | |
2679 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
2680 | } | |
2681 | return _resultobj; | |
2682 | } | |
2683 | ||
2684 | #define wxListEvent_GetText(_swigobj) (_swigobj->GetText()) | |
2685 | static PyObject *_wrap_wxListEvent_GetText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2686 | PyObject * _resultobj; | |
2687 | wxString * _result; | |
2688 | wxListEvent * _arg0; | |
2689 | PyObject * _argo0 = 0; | |
2690 | char *_kwnames[] = { "self", NULL }; | |
2691 | ||
2692 | self = self; | |
2693 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetText",_kwnames,&_argo0)) | |
2694 | return NULL; | |
2695 | if (_argo0) { | |
2696 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2697 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2698 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetText. Expected _wxListEvent_p."); | |
2699 | return NULL; | |
2700 | } | |
2701 | } | |
2702 | { | |
2703 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2704 | const wxString & _result_ref = wxListEvent_GetText(_arg0); | |
2705 | _result = (wxString *) &_result_ref; | |
2706 | ||
2707 | wxPyEndAllowThreads(__tstate); | |
2708 | if (PyErr_Occurred()) return NULL; | |
2709 | }{ | |
2710 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
2711 | } | |
2712 | return _resultobj; | |
2713 | } | |
2714 | ||
2715 | #define wxListEvent_GetImage(_swigobj) (_swigobj->GetImage()) | |
2716 | static PyObject *_wrap_wxListEvent_GetImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2717 | PyObject * _resultobj; | |
2718 | int _result; | |
2719 | wxListEvent * _arg0; | |
2720 | PyObject * _argo0 = 0; | |
2721 | char *_kwnames[] = { "self", NULL }; | |
2722 | ||
2723 | self = self; | |
2724 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetImage",_kwnames,&_argo0)) | |
2725 | return NULL; | |
2726 | if (_argo0) { | |
2727 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2728 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2729 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetImage. Expected _wxListEvent_p."); | |
2730 | return NULL; | |
2731 | } | |
2732 | } | |
2733 | { | |
2734 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2735 | _result = (int )wxListEvent_GetImage(_arg0); | |
2736 | ||
2737 | wxPyEndAllowThreads(__tstate); | |
2738 | if (PyErr_Occurred()) return NULL; | |
2739 | } _resultobj = Py_BuildValue("i",_result); | |
2740 | return _resultobj; | |
2741 | } | |
2742 | ||
2743 | #define wxListEvent_GetData(_swigobj) (_swigobj->GetData()) | |
2744 | static PyObject *_wrap_wxListEvent_GetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2745 | PyObject * _resultobj; | |
2746 | long _result; | |
2747 | wxListEvent * _arg0; | |
2748 | PyObject * _argo0 = 0; | |
2749 | char *_kwnames[] = { "self", NULL }; | |
2750 | ||
2751 | self = self; | |
2752 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetData",_kwnames,&_argo0)) | |
2753 | return NULL; | |
2754 | if (_argo0) { | |
2755 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2756 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2757 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetData. Expected _wxListEvent_p."); | |
2758 | return NULL; | |
2759 | } | |
2760 | } | |
2761 | { | |
2762 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2763 | _result = (long )wxListEvent_GetData(_arg0); | |
2764 | ||
2765 | wxPyEndAllowThreads(__tstate); | |
2766 | if (PyErr_Occurred()) return NULL; | |
2767 | } _resultobj = Py_BuildValue("l",_result); | |
2768 | return _resultobj; | |
2769 | } | |
2770 | ||
2771 | #define wxListEvent_GetMask(_swigobj) (_swigobj->GetMask()) | |
2772 | static PyObject *_wrap_wxListEvent_GetMask(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2773 | PyObject * _resultobj; | |
2774 | long _result; | |
2775 | wxListEvent * _arg0; | |
2776 | PyObject * _argo0 = 0; | |
2777 | char *_kwnames[] = { "self", NULL }; | |
2778 | ||
2779 | self = self; | |
2780 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetMask",_kwnames,&_argo0)) | |
2781 | return NULL; | |
2782 | if (_argo0) { | |
2783 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2784 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2785 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetMask. Expected _wxListEvent_p."); | |
2786 | return NULL; | |
2787 | } | |
2788 | } | |
2789 | { | |
2790 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2791 | _result = (long )wxListEvent_GetMask(_arg0); | |
2792 | ||
2793 | wxPyEndAllowThreads(__tstate); | |
2794 | if (PyErr_Occurred()) return NULL; | |
2795 | } _resultobj = Py_BuildValue("l",_result); | |
2796 | return _resultobj; | |
2797 | } | |
2798 | ||
2799 | #define wxListEvent_GetItem(_swigobj) (_swigobj->GetItem()) | |
2800 | static PyObject *_wrap_wxListEvent_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2801 | PyObject * _resultobj; | |
2802 | wxListItem * _result; | |
2803 | wxListEvent * _arg0; | |
2804 | PyObject * _argo0 = 0; | |
2805 | char *_kwnames[] = { "self", NULL }; | |
2806 | ||
2807 | self = self; | |
2808 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetItem",_kwnames,&_argo0)) | |
2809 | return NULL; | |
2810 | if (_argo0) { | |
2811 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2812 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2813 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetItem. Expected _wxListEvent_p."); | |
2814 | return NULL; | |
2815 | } | |
2816 | } | |
2817 | { | |
2818 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2819 | const wxListItem & _result_ref = wxListEvent_GetItem(_arg0); | |
2820 | _result = (wxListItem *) &_result_ref; | |
2821 | ||
2822 | wxPyEndAllowThreads(__tstate); | |
2823 | if (PyErr_Occurred()) return NULL; | |
2824 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
2825 | return _resultobj; | |
2826 | } | |
2827 | ||
2828 | #define wxListEvent_GetCacheFrom(_swigobj) (_swigobj->GetCacheFrom()) | |
2829 | static PyObject *_wrap_wxListEvent_GetCacheFrom(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2830 | PyObject * _resultobj; | |
2831 | long _result; | |
2832 | wxListEvent * _arg0; | |
2833 | PyObject * _argo0 = 0; | |
2834 | char *_kwnames[] = { "self", NULL }; | |
2835 | ||
2836 | self = self; | |
2837 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetCacheFrom",_kwnames,&_argo0)) | |
2838 | return NULL; | |
2839 | if (_argo0) { | |
2840 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2841 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2842 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetCacheFrom. Expected _wxListEvent_p."); | |
2843 | return NULL; | |
2844 | } | |
2845 | } | |
2846 | { | |
2847 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2848 | _result = (long )wxListEvent_GetCacheFrom(_arg0); | |
2849 | ||
2850 | wxPyEndAllowThreads(__tstate); | |
2851 | if (PyErr_Occurred()) return NULL; | |
2852 | } _resultobj = Py_BuildValue("l",_result); | |
2853 | return _resultobj; | |
2854 | } | |
2855 | ||
2856 | #define wxListEvent_GetCacheTo(_swigobj) (_swigobj->GetCacheTo()) | |
2857 | static PyObject *_wrap_wxListEvent_GetCacheTo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2858 | PyObject * _resultobj; | |
2859 | long _result; | |
2860 | wxListEvent * _arg0; | |
2861 | PyObject * _argo0 = 0; | |
2862 | char *_kwnames[] = { "self", NULL }; | |
2863 | ||
2864 | self = self; | |
2865 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListEvent_GetCacheTo",_kwnames,&_argo0)) | |
2866 | return NULL; | |
2867 | if (_argo0) { | |
2868 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2869 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListEvent_p")) { | |
2870 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListEvent_GetCacheTo. Expected _wxListEvent_p."); | |
2871 | return NULL; | |
2872 | } | |
2873 | } | |
2874 | { | |
2875 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2876 | _result = (long )wxListEvent_GetCacheTo(_arg0); | |
2877 | ||
2878 | wxPyEndAllowThreads(__tstate); | |
2879 | if (PyErr_Occurred()) return NULL; | |
2880 | } _resultobj = Py_BuildValue("l",_result); | |
2881 | return _resultobj; | |
2882 | } | |
2883 | ||
2884 | static void *SwigwxPyListCtrlTowxControl(void *ptr) { | |
2885 | wxPyListCtrl *src; | |
2886 | wxControl *dest; | |
2887 | src = (wxPyListCtrl *) ptr; | |
2888 | dest = (wxControl *) src; | |
2889 | return (void *) dest; | |
2890 | } | |
2891 | ||
2892 | static void *SwigwxPyListCtrlTowxWindow(void *ptr) { | |
2893 | wxPyListCtrl *src; | |
2894 | wxWindow *dest; | |
2895 | src = (wxPyListCtrl *) ptr; | |
2896 | dest = (wxWindow *) src; | |
2897 | return (void *) dest; | |
2898 | } | |
2899 | ||
2900 | static void *SwigwxPyListCtrlTowxEvtHandler(void *ptr) { | |
2901 | wxPyListCtrl *src; | |
2902 | wxEvtHandler *dest; | |
2903 | src = (wxPyListCtrl *) ptr; | |
2904 | dest = (wxEvtHandler *) src; | |
2905 | return (void *) dest; | |
2906 | } | |
2907 | ||
2908 | static void *SwigwxPyListCtrlTowxObject(void *ptr) { | |
2909 | wxPyListCtrl *src; | |
2910 | wxObject *dest; | |
2911 | src = (wxPyListCtrl *) ptr; | |
2912 | dest = (wxObject *) src; | |
2913 | return (void *) dest; | |
2914 | } | |
2915 | ||
2916 | #define new_wxListCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxPyListCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
2917 | static PyObject *_wrap_new_wxListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2918 | PyObject * _resultobj; | |
2919 | wxPyListCtrl * _result; | |
2920 | wxWindow * _arg0; | |
2921 | wxWindowID _arg1 = (wxWindowID ) -1; | |
2922 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; | |
2923 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
2924 | long _arg4 = (long ) (wxLC_ICON); | |
2925 | wxValidator * _arg5 = (wxValidator *) &wxDefaultValidator; | |
2926 | char * _arg6 = (char *) "listCtrl"; | |
2927 | PyObject * _argo0 = 0; | |
2928 | wxPoint temp; | |
2929 | PyObject * _obj2 = 0; | |
2930 | wxSize temp0; | |
2931 | PyObject * _obj3 = 0; | |
2932 | PyObject * _argo5 = 0; | |
2933 | char *_kwnames[] = { "parent","id","pos","size","style","validator","name", NULL }; | |
2934 | char _ptemp[128]; | |
2935 | ||
2936 | self = self; | |
2937 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOlOs:new_wxListCtrl",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_argo5,&_arg6)) | |
2938 | return NULL; | |
2939 | if (_argo0) { | |
2940 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2941 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
2942 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxListCtrl. Expected _wxWindow_p."); | |
2943 | return NULL; | |
2944 | } | |
2945 | } | |
2946 | if (_obj2) | |
2947 | { | |
2948 | _arg2 = &temp; | |
2949 | if (! wxPoint_helper(_obj2, &_arg2)) | |
2950 | return NULL; | |
2951 | } | |
2952 | if (_obj3) | |
2953 | { | |
2954 | _arg3 = &temp0; | |
2955 | if (! wxSize_helper(_obj3, &_arg3)) | |
2956 | return NULL; | |
2957 | } | |
2958 | if (_argo5) { | |
2959 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
2960 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxValidator_p")) { | |
2961 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxListCtrl. Expected _wxValidator_p."); | |
2962 | return NULL; | |
2963 | } | |
2964 | } | |
2965 | { | |
2966 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2967 | _result = (wxPyListCtrl *)new_wxListCtrl(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5,_arg6); | |
2968 | ||
2969 | wxPyEndAllowThreads(__tstate); | |
2970 | if (PyErr_Occurred()) return NULL; | |
2971 | } if (_result) { | |
2972 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyListCtrl_p"); | |
2973 | _resultobj = Py_BuildValue("s",_ptemp); | |
2974 | } else { | |
2975 | Py_INCREF(Py_None); | |
2976 | _resultobj = Py_None; | |
2977 | } | |
2978 | return _resultobj; | |
2979 | } | |
2980 | ||
2981 | #define new_wxPreListCtrl() (new wxPyListCtrl()) | |
2982 | static PyObject *_wrap_new_wxPreListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
2983 | PyObject * _resultobj; | |
2984 | wxPyListCtrl * _result; | |
2985 | char *_kwnames[] = { NULL }; | |
2986 | char _ptemp[128]; | |
2987 | ||
2988 | self = self; | |
2989 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreListCtrl",_kwnames)) | |
2990 | return NULL; | |
2991 | { | |
2992 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
2993 | _result = (wxPyListCtrl *)new_wxPreListCtrl(); | |
2994 | ||
2995 | wxPyEndAllowThreads(__tstate); | |
2996 | if (PyErr_Occurred()) return NULL; | |
2997 | } if (_result) { | |
2998 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyListCtrl_p"); | |
2999 | _resultobj = Py_BuildValue("s",_ptemp); | |
3000 | } else { | |
3001 | Py_INCREF(Py_None); | |
3002 | _resultobj = Py_None; | |
3003 | } | |
3004 | return _resultobj; | |
3005 | } | |
3006 | ||
3007 | #define wxListCtrl_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
3008 | static PyObject *_wrap_wxListCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3009 | PyObject * _resultobj; | |
3010 | bool _result; | |
3011 | wxPyListCtrl * _arg0; | |
3012 | wxWindow * _arg1; | |
3013 | wxWindowID _arg2 = (wxWindowID ) -1; | |
3014 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; | |
3015 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
3016 | long _arg5 = (long ) (wxLC_ICON); | |
3017 | wxValidator * _arg6 = (wxValidator *) &wxDefaultValidator; | |
3018 | char * _arg7 = (char *) "listCtrl"; | |
3019 | PyObject * _argo0 = 0; | |
3020 | PyObject * _argo1 = 0; | |
3021 | wxPoint temp; | |
3022 | PyObject * _obj3 = 0; | |
3023 | wxSize temp0; | |
3024 | PyObject * _obj4 = 0; | |
3025 | PyObject * _argo6 = 0; | |
3026 | char *_kwnames[] = { "self","parent","id","pos","size","style","validator","name", NULL }; | |
3027 | ||
3028 | self = self; | |
3029 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iOOlOs:wxListCtrl_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_argo6,&_arg7)) | |
3030 | return NULL; | |
3031 | if (_argo0) { | |
3032 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3033 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3034 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_Create. Expected _wxPyListCtrl_p."); | |
3035 | return NULL; | |
3036 | } | |
3037 | } | |
3038 | if (_argo1) { | |
3039 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3040 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
3041 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_Create. Expected _wxWindow_p."); | |
3042 | return NULL; | |
3043 | } | |
3044 | } | |
3045 | if (_obj3) | |
3046 | { | |
3047 | _arg3 = &temp; | |
3048 | if (! wxPoint_helper(_obj3, &_arg3)) | |
3049 | return NULL; | |
3050 | } | |
3051 | if (_obj4) | |
3052 | { | |
3053 | _arg4 = &temp0; | |
3054 | if (! wxSize_helper(_obj4, &_arg4)) | |
3055 | return NULL; | |
3056 | } | |
3057 | if (_argo6) { | |
3058 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
3059 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxValidator_p")) { | |
3060 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxListCtrl_Create. Expected _wxValidator_p."); | |
3061 | return NULL; | |
3062 | } | |
3063 | } | |
3064 | { | |
3065 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3066 | _result = (bool )wxListCtrl_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,*_arg6,_arg7); | |
3067 | ||
3068 | wxPyEndAllowThreads(__tstate); | |
3069 | if (PyErr_Occurred()) return NULL; | |
3070 | } _resultobj = Py_BuildValue("i",_result); | |
3071 | return _resultobj; | |
3072 | } | |
3073 | ||
3074 | #define wxListCtrl__setCallbackInfo(_swigobj,_swigarg0,_swigarg1) (_swigobj->_setCallbackInfo(_swigarg0,_swigarg1)) | |
3075 | static PyObject *_wrap_wxListCtrl__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3076 | PyObject * _resultobj; | |
3077 | wxPyListCtrl * _arg0; | |
3078 | PyObject * _arg1; | |
3079 | PyObject * _arg2; | |
3080 | PyObject * _argo0 = 0; | |
3081 | PyObject * _obj1 = 0; | |
3082 | PyObject * _obj2 = 0; | |
3083 | char *_kwnames[] = { "self","self","_class", NULL }; | |
3084 | ||
3085 | self = self; | |
3086 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxListCtrl__setCallbackInfo",_kwnames,&_argo0,&_obj1,&_obj2)) | |
3087 | return NULL; | |
3088 | if (_argo0) { | |
3089 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3090 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3091 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl__setCallbackInfo. Expected _wxPyListCtrl_p."); | |
3092 | return NULL; | |
3093 | } | |
3094 | } | |
3095 | { | |
3096 | _arg1 = _obj1; | |
3097 | } | |
3098 | { | |
3099 | _arg2 = _obj2; | |
3100 | } | |
3101 | { | |
3102 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3103 | wxListCtrl__setCallbackInfo(_arg0,_arg1,_arg2); | |
3104 | ||
3105 | wxPyEndAllowThreads(__tstate); | |
3106 | if (PyErr_Occurred()) return NULL; | |
3107 | } Py_INCREF(Py_None); | |
3108 | _resultobj = Py_None; | |
3109 | return _resultobj; | |
3110 | } | |
3111 | ||
3112 | #define wxListCtrl_SetForegroundColour(_swigobj,_swigarg0) (_swigobj->SetForegroundColour(_swigarg0)) | |
3113 | static PyObject *_wrap_wxListCtrl_SetForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3114 | PyObject * _resultobj; | |
3115 | bool _result; | |
3116 | wxPyListCtrl * _arg0; | |
3117 | wxColour * _arg1; | |
3118 | PyObject * _argo0 = 0; | |
3119 | wxColour temp; | |
3120 | PyObject * _obj1 = 0; | |
3121 | char *_kwnames[] = { "self","col", NULL }; | |
3122 | ||
3123 | self = self; | |
3124 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SetForegroundColour",_kwnames,&_argo0,&_obj1)) | |
3125 | return NULL; | |
3126 | if (_argo0) { | |
3127 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3128 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetForegroundColour. Expected _wxPyListCtrl_p."); | |
3130 | return NULL; | |
3131 | } | |
3132 | } | |
3133 | { | |
3134 | _arg1 = &temp; | |
3135 | if (! wxColour_helper(_obj1, &_arg1)) | |
3136 | return NULL; | |
3137 | } | |
3138 | { | |
3139 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3140 | _result = (bool )wxListCtrl_SetForegroundColour(_arg0,*_arg1); | |
3141 | ||
3142 | wxPyEndAllowThreads(__tstate); | |
3143 | if (PyErr_Occurred()) return NULL; | |
3144 | } _resultobj = Py_BuildValue("i",_result); | |
3145 | return _resultobj; | |
3146 | } | |
3147 | ||
3148 | #define wxListCtrl_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
3149 | static PyObject *_wrap_wxListCtrl_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3150 | PyObject * _resultobj; | |
3151 | bool _result; | |
3152 | wxPyListCtrl * _arg0; | |
3153 | wxColour * _arg1; | |
3154 | PyObject * _argo0 = 0; | |
3155 | wxColour temp; | |
3156 | PyObject * _obj1 = 0; | |
3157 | char *_kwnames[] = { "self","col", NULL }; | |
3158 | ||
3159 | self = self; | |
3160 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) | |
3161 | return NULL; | |
3162 | if (_argo0) { | |
3163 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3164 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3165 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetBackgroundColour. Expected _wxPyListCtrl_p."); | |
3166 | return NULL; | |
3167 | } | |
3168 | } | |
3169 | { | |
3170 | _arg1 = &temp; | |
3171 | if (! wxColour_helper(_obj1, &_arg1)) | |
3172 | return NULL; | |
3173 | } | |
3174 | { | |
3175 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3176 | _result = (bool )wxListCtrl_SetBackgroundColour(_arg0,*_arg1); | |
3177 | ||
3178 | wxPyEndAllowThreads(__tstate); | |
3179 | if (PyErr_Occurred()) return NULL; | |
3180 | } _resultobj = Py_BuildValue("i",_result); | |
3181 | return _resultobj; | |
3182 | } | |
3183 | ||
3184 | #define wxListCtrl_GetColumn(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetColumn(_swigarg0,_swigarg1)) | |
3185 | static PyObject *_wrap_wxListCtrl_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3186 | PyObject * _resultobj; | |
3187 | bool _result; | |
3188 | wxPyListCtrl * _arg0; | |
3189 | int _arg1; | |
3190 | wxListItem * _arg2; | |
3191 | PyObject * _argo0 = 0; | |
3192 | PyObject * _argo2 = 0; | |
3193 | char *_kwnames[] = { "self","col","item", NULL }; | |
3194 | ||
3195 | self = self; | |
3196 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxListCtrl_GetColumn",_kwnames,&_argo0,&_arg1,&_argo2)) | |
3197 | return NULL; | |
3198 | if (_argo0) { | |
3199 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3200 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3201 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetColumn. Expected _wxPyListCtrl_p."); | |
3202 | return NULL; | |
3203 | } | |
3204 | } | |
3205 | if (_argo2) { | |
3206 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3207 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxListItem_p")) { | |
3208 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxListCtrl_GetColumn. Expected _wxListItem_p."); | |
3209 | return NULL; | |
3210 | } | |
3211 | } | |
3212 | { | |
3213 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3214 | _result = (bool )wxListCtrl_GetColumn(_arg0,_arg1,*_arg2); | |
3215 | ||
3216 | wxPyEndAllowThreads(__tstate); | |
3217 | if (PyErr_Occurred()) return NULL; | |
3218 | } _resultobj = Py_BuildValue("i",_result); | |
3219 | return _resultobj; | |
3220 | } | |
3221 | ||
3222 | #define wxListCtrl_SetColumn(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetColumn(_swigarg0,_swigarg1)) | |
3223 | static PyObject *_wrap_wxListCtrl_SetColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3224 | PyObject * _resultobj; | |
3225 | bool _result; | |
3226 | wxPyListCtrl * _arg0; | |
3227 | int _arg1; | |
3228 | wxListItem * _arg2; | |
3229 | PyObject * _argo0 = 0; | |
3230 | PyObject * _argo2 = 0; | |
3231 | char *_kwnames[] = { "self","col","item", NULL }; | |
3232 | ||
3233 | self = self; | |
3234 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO:wxListCtrl_SetColumn",_kwnames,&_argo0,&_arg1,&_argo2)) | |
3235 | return NULL; | |
3236 | if (_argo0) { | |
3237 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3238 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3239 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetColumn. Expected _wxPyListCtrl_p."); | |
3240 | return NULL; | |
3241 | } | |
3242 | } | |
3243 | if (_argo2) { | |
3244 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3245 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxListItem_p")) { | |
3246 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxListCtrl_SetColumn. Expected _wxListItem_p."); | |
3247 | return NULL; | |
3248 | } | |
3249 | } | |
3250 | { | |
3251 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3252 | _result = (bool )wxListCtrl_SetColumn(_arg0,_arg1,*_arg2); | |
3253 | ||
3254 | wxPyEndAllowThreads(__tstate); | |
3255 | if (PyErr_Occurred()) return NULL; | |
3256 | } _resultobj = Py_BuildValue("i",_result); | |
3257 | return _resultobj; | |
3258 | } | |
3259 | ||
3260 | #define wxListCtrl_GetColumnWidth(_swigobj,_swigarg0) (_swigobj->GetColumnWidth(_swigarg0)) | |
3261 | static PyObject *_wrap_wxListCtrl_GetColumnWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3262 | PyObject * _resultobj; | |
3263 | int _result; | |
3264 | wxPyListCtrl * _arg0; | |
3265 | int _arg1; | |
3266 | PyObject * _argo0 = 0; | |
3267 | char *_kwnames[] = { "self","col", NULL }; | |
3268 | ||
3269 | self = self; | |
3270 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_GetColumnWidth",_kwnames,&_argo0,&_arg1)) | |
3271 | return NULL; | |
3272 | if (_argo0) { | |
3273 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3274 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3275 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetColumnWidth. Expected _wxPyListCtrl_p."); | |
3276 | return NULL; | |
3277 | } | |
3278 | } | |
3279 | { | |
3280 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3281 | _result = (int )wxListCtrl_GetColumnWidth(_arg0,_arg1); | |
3282 | ||
3283 | wxPyEndAllowThreads(__tstate); | |
3284 | if (PyErr_Occurred()) return NULL; | |
3285 | } _resultobj = Py_BuildValue("i",_result); | |
3286 | return _resultobj; | |
3287 | } | |
3288 | ||
3289 | #define wxListCtrl_SetColumnWidth(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetColumnWidth(_swigarg0,_swigarg1)) | |
3290 | static PyObject *_wrap_wxListCtrl_SetColumnWidth(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3291 | PyObject * _resultobj; | |
3292 | bool _result; | |
3293 | wxPyListCtrl * _arg0; | |
3294 | int _arg1; | |
3295 | int _arg2; | |
3296 | PyObject * _argo0 = 0; | |
3297 | char *_kwnames[] = { "self","col","width", NULL }; | |
3298 | ||
3299 | self = self; | |
3300 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxListCtrl_SetColumnWidth",_kwnames,&_argo0,&_arg1,&_arg2)) | |
3301 | return NULL; | |
3302 | if (_argo0) { | |
3303 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3304 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3305 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetColumnWidth. Expected _wxPyListCtrl_p."); | |
3306 | return NULL; | |
3307 | } | |
3308 | } | |
3309 | { | |
3310 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3311 | _result = (bool )wxListCtrl_SetColumnWidth(_arg0,_arg1,_arg2); | |
3312 | ||
3313 | wxPyEndAllowThreads(__tstate); | |
3314 | if (PyErr_Occurred()) return NULL; | |
3315 | } _resultobj = Py_BuildValue("i",_result); | |
3316 | return _resultobj; | |
3317 | } | |
3318 | ||
3319 | #define wxListCtrl_GetCountPerPage(_swigobj) (_swigobj->GetCountPerPage()) | |
3320 | static PyObject *_wrap_wxListCtrl_GetCountPerPage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3321 | PyObject * _resultobj; | |
3322 | int _result; | |
3323 | wxPyListCtrl * _arg0; | |
3324 | PyObject * _argo0 = 0; | |
3325 | char *_kwnames[] = { "self", NULL }; | |
3326 | ||
3327 | self = self; | |
3328 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetCountPerPage",_kwnames,&_argo0)) | |
3329 | return NULL; | |
3330 | if (_argo0) { | |
3331 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3332 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3333 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetCountPerPage. Expected _wxPyListCtrl_p."); | |
3334 | return NULL; | |
3335 | } | |
3336 | } | |
3337 | { | |
3338 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3339 | _result = (int )wxListCtrl_GetCountPerPage(_arg0); | |
3340 | ||
3341 | wxPyEndAllowThreads(__tstate); | |
3342 | if (PyErr_Occurred()) return NULL; | |
3343 | } _resultobj = Py_BuildValue("i",_result); | |
3344 | return _resultobj; | |
3345 | } | |
3346 | ||
3347 | #define wxListCtrl_GetEditControl(_swigobj) (_swigobj->GetEditControl()) | |
3348 | static PyObject *_wrap_wxListCtrl_GetEditControl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3349 | PyObject * _resultobj; | |
3350 | wxTextCtrl * _result; | |
3351 | wxPyListCtrl * _arg0; | |
3352 | PyObject * _argo0 = 0; | |
3353 | char *_kwnames[] = { "self", NULL }; | |
3354 | ||
3355 | self = self; | |
3356 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetEditControl",_kwnames,&_argo0)) | |
3357 | return NULL; | |
3358 | if (_argo0) { | |
3359 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3360 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3361 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetEditControl. Expected _wxPyListCtrl_p."); | |
3362 | return NULL; | |
3363 | } | |
3364 | } | |
3365 | { | |
3366 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3367 | _result = (wxTextCtrl *)wxListCtrl_GetEditControl(_arg0); | |
3368 | ||
3369 | wxPyEndAllowThreads(__tstate); | |
3370 | if (PyErr_Occurred()) return NULL; | |
3371 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
3372 | return _resultobj; | |
3373 | } | |
3374 | ||
3375 | static wxListItem * wxPyListCtrl_GetItem(wxPyListCtrl *self,long itemId,int col) { | |
3376 | wxListItem* info = new wxListItem; | |
3377 | info->m_itemId = itemId; | |
3378 | info->m_col = col; | |
3379 | info->m_mask = 0xFFFF; | |
3380 | self->GetItem(*info); | |
3381 | return info; | |
3382 | } | |
3383 | static PyObject *_wrap_wxListCtrl_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3384 | PyObject * _resultobj; | |
3385 | wxListItem * _result; | |
3386 | wxPyListCtrl * _arg0; | |
3387 | long _arg1; | |
3388 | int _arg2 = (int ) 0; | |
3389 | PyObject * _argo0 = 0; | |
3390 | char *_kwnames[] = { "self","itemId","col", NULL }; | |
3391 | ||
3392 | self = self; | |
3393 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListCtrl_GetItem",_kwnames,&_argo0,&_arg1,&_arg2)) | |
3394 | return NULL; | |
3395 | if (_argo0) { | |
3396 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3397 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3398 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItem. Expected _wxPyListCtrl_p."); | |
3399 | return NULL; | |
3400 | } | |
3401 | } | |
3402 | { | |
3403 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3404 | _result = (wxListItem *)wxPyListCtrl_GetItem(_arg0,_arg1,_arg2); | |
3405 | ||
3406 | wxPyEndAllowThreads(__tstate); | |
3407 | if (PyErr_Occurred()) return NULL; | |
3408 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
3409 | return _resultobj; | |
3410 | } | |
3411 | ||
3412 | #define wxListCtrl_SetItem(_swigobj,_swigarg0) (_swigobj->SetItem(_swigarg0)) | |
3413 | static PyObject *_wrap_wxListCtrl_SetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3414 | PyObject * _resultobj; | |
3415 | bool _result; | |
3416 | wxPyListCtrl * _arg0; | |
3417 | wxListItem * _arg1; | |
3418 | PyObject * _argo0 = 0; | |
3419 | PyObject * _argo1 = 0; | |
3420 | char *_kwnames[] = { "self","info", NULL }; | |
3421 | ||
3422 | self = self; | |
3423 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SetItem",_kwnames,&_argo0,&_argo1)) | |
3424 | return NULL; | |
3425 | if (_argo0) { | |
3426 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3427 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3428 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItem. Expected _wxPyListCtrl_p."); | |
3429 | return NULL; | |
3430 | } | |
3431 | } | |
3432 | if (_argo1) { | |
3433 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3434 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxListItem_p")) { | |
3435 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_SetItem. Expected _wxListItem_p."); | |
3436 | return NULL; | |
3437 | } | |
3438 | } | |
3439 | { | |
3440 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3441 | _result = (bool )wxListCtrl_SetItem(_arg0,*_arg1); | |
3442 | ||
3443 | wxPyEndAllowThreads(__tstate); | |
3444 | if (PyErr_Occurred()) return NULL; | |
3445 | } _resultobj = Py_BuildValue("i",_result); | |
3446 | return _resultobj; | |
3447 | } | |
3448 | ||
3449 | #define wxListCtrl_SetStringItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->SetItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
3450 | static PyObject *_wrap_wxListCtrl_SetStringItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3451 | PyObject * _resultobj; | |
3452 | long _result; | |
3453 | wxPyListCtrl * _arg0; | |
3454 | long _arg1; | |
3455 | int _arg2; | |
3456 | wxString * _arg3; | |
3457 | int _arg4 = (int ) -1; | |
3458 | PyObject * _argo0 = 0; | |
3459 | PyObject * _obj3 = 0; | |
3460 | char *_kwnames[] = { "self","index","col","label","imageId", NULL }; | |
3461 | ||
3462 | self = self; | |
3463 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OliO|i:wxListCtrl_SetStringItem",_kwnames,&_argo0,&_arg1,&_arg2,&_obj3,&_arg4)) | |
3464 | return NULL; | |
3465 | if (_argo0) { | |
3466 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3467 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3468 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetStringItem. Expected _wxPyListCtrl_p."); | |
3469 | return NULL; | |
3470 | } | |
3471 | } | |
3472 | { | |
3473 | #if PYTHON_API_VERSION >= 1009 | |
3474 | char* tmpPtr; int tmpSize; | |
3475 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
3476 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3477 | return NULL; | |
3478 | } | |
3479 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
3480 | return NULL; | |
3481 | _arg3 = new wxString(tmpPtr, tmpSize); | |
3482 | #else | |
3483 | if (!PyString_Check(_obj3)) { | |
3484 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3485 | return NULL; | |
3486 | } | |
3487 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); | |
3488 | #endif | |
3489 | } | |
3490 | { | |
3491 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3492 | _result = (long )wxListCtrl_SetStringItem(_arg0,_arg1,_arg2,*_arg3,_arg4); | |
3493 | ||
3494 | wxPyEndAllowThreads(__tstate); | |
3495 | if (PyErr_Occurred()) return NULL; | |
3496 | } _resultobj = Py_BuildValue("l",_result); | |
3497 | { | |
3498 | if (_obj3) | |
3499 | delete _arg3; | |
3500 | } | |
3501 | return _resultobj; | |
3502 | } | |
3503 | ||
3504 | #define wxListCtrl_GetItemState(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetItemState(_swigarg0,_swigarg1)) | |
3505 | static PyObject *_wrap_wxListCtrl_GetItemState(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3506 | PyObject * _resultobj; | |
3507 | int _result; | |
3508 | wxPyListCtrl * _arg0; | |
3509 | long _arg1; | |
3510 | long _arg2; | |
3511 | PyObject * _argo0 = 0; | |
3512 | char *_kwnames[] = { "self","item","stateMask", NULL }; | |
3513 | ||
3514 | self = self; | |
3515 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_GetItemState",_kwnames,&_argo0,&_arg1,&_arg2)) | |
3516 | return NULL; | |
3517 | if (_argo0) { | |
3518 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3519 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3520 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemState. Expected _wxPyListCtrl_p."); | |
3521 | return NULL; | |
3522 | } | |
3523 | } | |
3524 | { | |
3525 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3526 | _result = (int )wxListCtrl_GetItemState(_arg0,_arg1,_arg2); | |
3527 | ||
3528 | wxPyEndAllowThreads(__tstate); | |
3529 | if (PyErr_Occurred()) return NULL; | |
3530 | } _resultobj = Py_BuildValue("i",_result); | |
3531 | return _resultobj; | |
3532 | } | |
3533 | ||
3534 | #define wxListCtrl_SetItemState(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetItemState(_swigarg0,_swigarg1,_swigarg2)) | |
3535 | static PyObject *_wrap_wxListCtrl_SetItemState(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3536 | PyObject * _resultobj; | |
3537 | bool _result; | |
3538 | wxPyListCtrl * _arg0; | |
3539 | long _arg1; | |
3540 | long _arg2; | |
3541 | long _arg3; | |
3542 | PyObject * _argo0 = 0; | |
3543 | char *_kwnames[] = { "self","item","state","stateMask", NULL }; | |
3544 | ||
3545 | self = self; | |
3546 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Olll:wxListCtrl_SetItemState",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
3547 | return NULL; | |
3548 | if (_argo0) { | |
3549 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3550 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3551 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemState. Expected _wxPyListCtrl_p."); | |
3552 | return NULL; | |
3553 | } | |
3554 | } | |
3555 | { | |
3556 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3557 | _result = (bool )wxListCtrl_SetItemState(_arg0,_arg1,_arg2,_arg3); | |
3558 | ||
3559 | wxPyEndAllowThreads(__tstate); | |
3560 | if (PyErr_Occurred()) return NULL; | |
3561 | } _resultobj = Py_BuildValue("i",_result); | |
3562 | return _resultobj; | |
3563 | } | |
3564 | ||
3565 | #define wxListCtrl_SetItemImage(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetItemImage(_swigarg0,_swigarg1,_swigarg2)) | |
3566 | static PyObject *_wrap_wxListCtrl_SetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3567 | PyObject * _resultobj; | |
3568 | bool _result; | |
3569 | wxPyListCtrl * _arg0; | |
3570 | long _arg1; | |
3571 | int _arg2; | |
3572 | int _arg3; | |
3573 | PyObject * _argo0 = 0; | |
3574 | char *_kwnames[] = { "self","item","image","selImage", NULL }; | |
3575 | ||
3576 | self = self; | |
3577 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Olii:wxListCtrl_SetItemImage",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
3578 | return NULL; | |
3579 | if (_argo0) { | |
3580 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3581 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3582 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemImage. Expected _wxPyListCtrl_p."); | |
3583 | return NULL; | |
3584 | } | |
3585 | } | |
3586 | { | |
3587 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3588 | _result = (bool )wxListCtrl_SetItemImage(_arg0,_arg1,_arg2,_arg3); | |
3589 | ||
3590 | wxPyEndAllowThreads(__tstate); | |
3591 | if (PyErr_Occurred()) return NULL; | |
3592 | } _resultobj = Py_BuildValue("i",_result); | |
3593 | return _resultobj; | |
3594 | } | |
3595 | ||
3596 | #define wxListCtrl_GetItemText(_swigobj,_swigarg0) (_swigobj->GetItemText(_swigarg0)) | |
3597 | static PyObject *_wrap_wxListCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3598 | PyObject * _resultobj; | |
3599 | wxString * _result; | |
3600 | wxPyListCtrl * _arg0; | |
3601 | long _arg1; | |
3602 | PyObject * _argo0 = 0; | |
3603 | char *_kwnames[] = { "self","item", NULL }; | |
3604 | ||
3605 | self = self; | |
3606 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_GetItemText",_kwnames,&_argo0,&_arg1)) | |
3607 | return NULL; | |
3608 | if (_argo0) { | |
3609 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3610 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3611 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemText. Expected _wxPyListCtrl_p."); | |
3612 | return NULL; | |
3613 | } | |
3614 | } | |
3615 | { | |
3616 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3617 | _result = new wxString (wxListCtrl_GetItemText(_arg0,_arg1)); | |
3618 | ||
3619 | wxPyEndAllowThreads(__tstate); | |
3620 | if (PyErr_Occurred()) return NULL; | |
3621 | }{ | |
3622 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
3623 | } | |
3624 | { | |
3625 | delete _result; | |
3626 | } | |
3627 | return _resultobj; | |
3628 | } | |
3629 | ||
3630 | #define wxListCtrl_SetItemText(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemText(_swigarg0,_swigarg1)) | |
3631 | static PyObject *_wrap_wxListCtrl_SetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3632 | PyObject * _resultobj; | |
3633 | wxPyListCtrl * _arg0; | |
3634 | long _arg1; | |
3635 | wxString * _arg2; | |
3636 | PyObject * _argo0 = 0; | |
3637 | PyObject * _obj2 = 0; | |
3638 | char *_kwnames[] = { "self","item","str", NULL }; | |
3639 | ||
3640 | self = self; | |
3641 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_SetItemText",_kwnames,&_argo0,&_arg1,&_obj2)) | |
3642 | return NULL; | |
3643 | if (_argo0) { | |
3644 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3645 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3646 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemText. Expected _wxPyListCtrl_p."); | |
3647 | return NULL; | |
3648 | } | |
3649 | } | |
3650 | { | |
3651 | #if PYTHON_API_VERSION >= 1009 | |
3652 | char* tmpPtr; int tmpSize; | |
3653 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
3654 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3655 | return NULL; | |
3656 | } | |
3657 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
3658 | return NULL; | |
3659 | _arg2 = new wxString(tmpPtr, tmpSize); | |
3660 | #else | |
3661 | if (!PyString_Check(_obj2)) { | |
3662 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
3663 | return NULL; | |
3664 | } | |
3665 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
3666 | #endif | |
3667 | } | |
3668 | { | |
3669 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3670 | wxListCtrl_SetItemText(_arg0,_arg1,*_arg2); | |
3671 | ||
3672 | wxPyEndAllowThreads(__tstate); | |
3673 | if (PyErr_Occurred()) return NULL; | |
3674 | } Py_INCREF(Py_None); | |
3675 | _resultobj = Py_None; | |
3676 | { | |
3677 | if (_obj2) | |
3678 | delete _arg2; | |
3679 | } | |
3680 | return _resultobj; | |
3681 | } | |
3682 | ||
3683 | #define wxListCtrl_GetItemData(_swigobj,_swigarg0) (_swigobj->GetItemData(_swigarg0)) | |
3684 | static PyObject *_wrap_wxListCtrl_GetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3685 | PyObject * _resultobj; | |
3686 | long _result; | |
3687 | wxPyListCtrl * _arg0; | |
3688 | long _arg1; | |
3689 | PyObject * _argo0 = 0; | |
3690 | char *_kwnames[] = { "self","item", NULL }; | |
3691 | ||
3692 | self = self; | |
3693 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_GetItemData",_kwnames,&_argo0,&_arg1)) | |
3694 | return NULL; | |
3695 | if (_argo0) { | |
3696 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3697 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3698 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemData. Expected _wxPyListCtrl_p."); | |
3699 | return NULL; | |
3700 | } | |
3701 | } | |
3702 | { | |
3703 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3704 | _result = (long )wxListCtrl_GetItemData(_arg0,_arg1); | |
3705 | ||
3706 | wxPyEndAllowThreads(__tstate); | |
3707 | if (PyErr_Occurred()) return NULL; | |
3708 | } _resultobj = Py_BuildValue("l",_result); | |
3709 | return _resultobj; | |
3710 | } | |
3711 | ||
3712 | #define wxListCtrl_SetItemData(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemData(_swigarg0,_swigarg1)) | |
3713 | static PyObject *_wrap_wxListCtrl_SetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3714 | PyObject * _resultobj; | |
3715 | bool _result; | |
3716 | wxPyListCtrl * _arg0; | |
3717 | long _arg1; | |
3718 | long _arg2; | |
3719 | PyObject * _argo0 = 0; | |
3720 | char *_kwnames[] = { "self","item","data", NULL }; | |
3721 | ||
3722 | self = self; | |
3723 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_SetItemData",_kwnames,&_argo0,&_arg1,&_arg2)) | |
3724 | return NULL; | |
3725 | if (_argo0) { | |
3726 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3727 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3728 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemData. Expected _wxPyListCtrl_p."); | |
3729 | return NULL; | |
3730 | } | |
3731 | } | |
3732 | { | |
3733 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3734 | _result = (bool )wxListCtrl_SetItemData(_arg0,_arg1,_arg2); | |
3735 | ||
3736 | wxPyEndAllowThreads(__tstate); | |
3737 | if (PyErr_Occurred()) return NULL; | |
3738 | } _resultobj = Py_BuildValue("i",_result); | |
3739 | return _resultobj; | |
3740 | } | |
3741 | ||
3742 | static wxPoint * wxPyListCtrl_GetItemPosition(wxPyListCtrl *self,long item) { | |
3743 | wxPoint* pos = new wxPoint; | |
3744 | self->GetItemPosition(item, *pos); | |
3745 | return pos; | |
3746 | } | |
3747 | static PyObject *_wrap_wxListCtrl_GetItemPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3748 | PyObject * _resultobj; | |
3749 | wxPoint * _result; | |
3750 | wxPyListCtrl * _arg0; | |
3751 | long _arg1; | |
3752 | PyObject * _argo0 = 0; | |
3753 | char *_kwnames[] = { "self","item", NULL }; | |
3754 | char _ptemp[128]; | |
3755 | ||
3756 | self = self; | |
3757 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_GetItemPosition",_kwnames,&_argo0,&_arg1)) | |
3758 | return NULL; | |
3759 | if (_argo0) { | |
3760 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3761 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3762 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemPosition. Expected _wxPyListCtrl_p."); | |
3763 | return NULL; | |
3764 | } | |
3765 | } | |
3766 | { | |
3767 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3768 | _result = (wxPoint *)wxPyListCtrl_GetItemPosition(_arg0,_arg1); | |
3769 | ||
3770 | wxPyEndAllowThreads(__tstate); | |
3771 | if (PyErr_Occurred()) return NULL; | |
3772 | } if (_result) { | |
3773 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPoint_p"); | |
3774 | _resultobj = Py_BuildValue("s",_ptemp); | |
3775 | } else { | |
3776 | Py_INCREF(Py_None); | |
3777 | _resultobj = Py_None; | |
3778 | } | |
3779 | return _resultobj; | |
3780 | } | |
3781 | ||
3782 | static wxRect * wxPyListCtrl_GetItemRect(wxPyListCtrl *self,long item,int code) { | |
3783 | wxRect* rect= new wxRect; | |
3784 | self->GetItemRect(item, *rect, code); | |
3785 | return rect; | |
3786 | } | |
3787 | static PyObject *_wrap_wxListCtrl_GetItemRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3788 | PyObject * _resultobj; | |
3789 | wxRect * _result; | |
3790 | wxPyListCtrl * _arg0; | |
3791 | long _arg1; | |
3792 | int _arg2 = (int ) (wxLIST_RECT_BOUNDS); | |
3793 | PyObject * _argo0 = 0; | |
3794 | char *_kwnames[] = { "self","item","code", NULL }; | |
3795 | char _ptemp[128]; | |
3796 | ||
3797 | self = self; | |
3798 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListCtrl_GetItemRect",_kwnames,&_argo0,&_arg1,&_arg2)) | |
3799 | return NULL; | |
3800 | if (_argo0) { | |
3801 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3802 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3803 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemRect. Expected _wxPyListCtrl_p."); | |
3804 | return NULL; | |
3805 | } | |
3806 | } | |
3807 | { | |
3808 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3809 | _result = (wxRect *)wxPyListCtrl_GetItemRect(_arg0,_arg1,_arg2); | |
3810 | ||
3811 | wxPyEndAllowThreads(__tstate); | |
3812 | if (PyErr_Occurred()) return NULL; | |
3813 | } if (_result) { | |
3814 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxRect_p"); | |
3815 | _resultobj = Py_BuildValue("s",_ptemp); | |
3816 | } else { | |
3817 | Py_INCREF(Py_None); | |
3818 | _resultobj = Py_None; | |
3819 | } | |
3820 | return _resultobj; | |
3821 | } | |
3822 | ||
3823 | #define wxListCtrl_SetItemPosition(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemPosition(_swigarg0,_swigarg1)) | |
3824 | static PyObject *_wrap_wxListCtrl_SetItemPosition(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3825 | PyObject * _resultobj; | |
3826 | bool _result; | |
3827 | wxPyListCtrl * _arg0; | |
3828 | long _arg1; | |
3829 | wxPoint * _arg2; | |
3830 | PyObject * _argo0 = 0; | |
3831 | wxPoint temp; | |
3832 | PyObject * _obj2 = 0; | |
3833 | char *_kwnames[] = { "self","item","pos", NULL }; | |
3834 | ||
3835 | self = self; | |
3836 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_SetItemPosition",_kwnames,&_argo0,&_arg1,&_obj2)) | |
3837 | return NULL; | |
3838 | if (_argo0) { | |
3839 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3840 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3841 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemPosition. Expected _wxPyListCtrl_p."); | |
3842 | return NULL; | |
3843 | } | |
3844 | } | |
3845 | { | |
3846 | _arg2 = &temp; | |
3847 | if (! wxPoint_helper(_obj2, &_arg2)) | |
3848 | return NULL; | |
3849 | } | |
3850 | { | |
3851 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3852 | _result = (bool )wxListCtrl_SetItemPosition(_arg0,_arg1,*_arg2); | |
3853 | ||
3854 | wxPyEndAllowThreads(__tstate); | |
3855 | if (PyErr_Occurred()) return NULL; | |
3856 | } _resultobj = Py_BuildValue("i",_result); | |
3857 | return _resultobj; | |
3858 | } | |
3859 | ||
3860 | #define wxListCtrl_GetItemCount(_swigobj) (_swigobj->GetItemCount()) | |
3861 | static PyObject *_wrap_wxListCtrl_GetItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3862 | PyObject * _resultobj; | |
3863 | int _result; | |
3864 | wxPyListCtrl * _arg0; | |
3865 | PyObject * _argo0 = 0; | |
3866 | char *_kwnames[] = { "self", NULL }; | |
3867 | ||
3868 | self = self; | |
3869 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetItemCount",_kwnames,&_argo0)) | |
3870 | return NULL; | |
3871 | if (_argo0) { | |
3872 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3873 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3874 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemCount. Expected _wxPyListCtrl_p."); | |
3875 | return NULL; | |
3876 | } | |
3877 | } | |
3878 | { | |
3879 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3880 | _result = (int )wxListCtrl_GetItemCount(_arg0); | |
3881 | ||
3882 | wxPyEndAllowThreads(__tstate); | |
3883 | if (PyErr_Occurred()) return NULL; | |
3884 | } _resultobj = Py_BuildValue("i",_result); | |
3885 | return _resultobj; | |
3886 | } | |
3887 | ||
3888 | #define wxListCtrl_GetColumnCount(_swigobj) (_swigobj->GetColumnCount()) | |
3889 | static PyObject *_wrap_wxListCtrl_GetColumnCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3890 | PyObject * _resultobj; | |
3891 | int _result; | |
3892 | wxPyListCtrl * _arg0; | |
3893 | PyObject * _argo0 = 0; | |
3894 | char *_kwnames[] = { "self", NULL }; | |
3895 | ||
3896 | self = self; | |
3897 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetColumnCount",_kwnames,&_argo0)) | |
3898 | return NULL; | |
3899 | if (_argo0) { | |
3900 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3901 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3902 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetColumnCount. Expected _wxPyListCtrl_p."); | |
3903 | return NULL; | |
3904 | } | |
3905 | } | |
3906 | { | |
3907 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3908 | _result = (int )wxListCtrl_GetColumnCount(_arg0); | |
3909 | ||
3910 | wxPyEndAllowThreads(__tstate); | |
3911 | if (PyErr_Occurred()) return NULL; | |
3912 | } _resultobj = Py_BuildValue("i",_result); | |
3913 | return _resultobj; | |
3914 | } | |
3915 | ||
3916 | #define wxListCtrl_GetItemSpacing(_swigobj,_swigarg0) (_swigobj->GetItemSpacing(_swigarg0)) | |
3917 | static PyObject *_wrap_wxListCtrl_GetItemSpacing(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3918 | PyObject * _resultobj; | |
3919 | int _result; | |
3920 | wxPyListCtrl * _arg0; | |
3921 | bool _arg1; | |
3922 | PyObject * _argo0 = 0; | |
3923 | int tempbool1; | |
3924 | char *_kwnames[] = { "self","isSmall", NULL }; | |
3925 | ||
3926 | self = self; | |
3927 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_GetItemSpacing",_kwnames,&_argo0,&tempbool1)) | |
3928 | return NULL; | |
3929 | if (_argo0) { | |
3930 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3931 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3932 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetItemSpacing. Expected _wxPyListCtrl_p."); | |
3933 | return NULL; | |
3934 | } | |
3935 | } | |
3936 | _arg1 = (bool ) tempbool1; | |
3937 | { | |
3938 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3939 | _result = (int )wxListCtrl_GetItemSpacing(_arg0,_arg1); | |
3940 | ||
3941 | wxPyEndAllowThreads(__tstate); | |
3942 | if (PyErr_Occurred()) return NULL; | |
3943 | } _resultobj = Py_BuildValue("i",_result); | |
3944 | return _resultobj; | |
3945 | } | |
3946 | ||
3947 | #define wxListCtrl_GetSelectedItemCount(_swigobj) (_swigobj->GetSelectedItemCount()) | |
3948 | static PyObject *_wrap_wxListCtrl_GetSelectedItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3949 | PyObject * _resultobj; | |
3950 | int _result; | |
3951 | wxPyListCtrl * _arg0; | |
3952 | PyObject * _argo0 = 0; | |
3953 | char *_kwnames[] = { "self", NULL }; | |
3954 | ||
3955 | self = self; | |
3956 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetSelectedItemCount",_kwnames,&_argo0)) | |
3957 | return NULL; | |
3958 | if (_argo0) { | |
3959 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3960 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3961 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetSelectedItemCount. Expected _wxPyListCtrl_p."); | |
3962 | return NULL; | |
3963 | } | |
3964 | } | |
3965 | { | |
3966 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3967 | _result = (int )wxListCtrl_GetSelectedItemCount(_arg0); | |
3968 | ||
3969 | wxPyEndAllowThreads(__tstate); | |
3970 | if (PyErr_Occurred()) return NULL; | |
3971 | } _resultobj = Py_BuildValue("i",_result); | |
3972 | return _resultobj; | |
3973 | } | |
3974 | ||
3975 | #define wxListCtrl_GetTextColour(_swigobj) (_swigobj->GetTextColour()) | |
3976 | static PyObject *_wrap_wxListCtrl_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
3977 | PyObject * _resultobj; | |
3978 | wxColour * _result; | |
3979 | wxPyListCtrl * _arg0; | |
3980 | PyObject * _argo0 = 0; | |
3981 | char *_kwnames[] = { "self", NULL }; | |
3982 | char _ptemp[128]; | |
3983 | ||
3984 | self = self; | |
3985 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetTextColour",_kwnames,&_argo0)) | |
3986 | return NULL; | |
3987 | if (_argo0) { | |
3988 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3989 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
3990 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetTextColour. Expected _wxPyListCtrl_p."); | |
3991 | return NULL; | |
3992 | } | |
3993 | } | |
3994 | { | |
3995 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
3996 | _result = new wxColour (wxListCtrl_GetTextColour(_arg0)); | |
3997 | ||
3998 | wxPyEndAllowThreads(__tstate); | |
3999 | if (PyErr_Occurred()) return NULL; | |
4000 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
4001 | _resultobj = Py_BuildValue("s",_ptemp); | |
4002 | return _resultobj; | |
4003 | } | |
4004 | ||
4005 | #define wxListCtrl_SetTextColour(_swigobj,_swigarg0) (_swigobj->SetTextColour(_swigarg0)) | |
4006 | static PyObject *_wrap_wxListCtrl_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4007 | PyObject * _resultobj; | |
4008 | wxPyListCtrl * _arg0; | |
4009 | wxColour * _arg1; | |
4010 | PyObject * _argo0 = 0; | |
4011 | wxColour temp; | |
4012 | PyObject * _obj1 = 0; | |
4013 | char *_kwnames[] = { "self","col", NULL }; | |
4014 | ||
4015 | self = self; | |
4016 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SetTextColour",_kwnames,&_argo0,&_obj1)) | |
4017 | return NULL; | |
4018 | if (_argo0) { | |
4019 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4020 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4021 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetTextColour. Expected _wxPyListCtrl_p."); | |
4022 | return NULL; | |
4023 | } | |
4024 | } | |
4025 | { | |
4026 | _arg1 = &temp; | |
4027 | if (! wxColour_helper(_obj1, &_arg1)) | |
4028 | return NULL; | |
4029 | } | |
4030 | { | |
4031 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4032 | wxListCtrl_SetTextColour(_arg0,*_arg1); | |
4033 | ||
4034 | wxPyEndAllowThreads(__tstate); | |
4035 | if (PyErr_Occurred()) return NULL; | |
4036 | } Py_INCREF(Py_None); | |
4037 | _resultobj = Py_None; | |
4038 | return _resultobj; | |
4039 | } | |
4040 | ||
4041 | #define wxListCtrl_GetTopItem(_swigobj) (_swigobj->GetTopItem()) | |
4042 | static PyObject *_wrap_wxListCtrl_GetTopItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4043 | PyObject * _resultobj; | |
4044 | long _result; | |
4045 | wxPyListCtrl * _arg0; | |
4046 | PyObject * _argo0 = 0; | |
4047 | char *_kwnames[] = { "self", NULL }; | |
4048 | ||
4049 | self = self; | |
4050 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_GetTopItem",_kwnames,&_argo0)) | |
4051 | return NULL; | |
4052 | if (_argo0) { | |
4053 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4054 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4055 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetTopItem. Expected _wxPyListCtrl_p."); | |
4056 | return NULL; | |
4057 | } | |
4058 | } | |
4059 | { | |
4060 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4061 | _result = (long )wxListCtrl_GetTopItem(_arg0); | |
4062 | ||
4063 | wxPyEndAllowThreads(__tstate); | |
4064 | if (PyErr_Occurred()) return NULL; | |
4065 | } _resultobj = Py_BuildValue("l",_result); | |
4066 | return _resultobj; | |
4067 | } | |
4068 | ||
4069 | #define wxListCtrl_SetSingleStyle(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetSingleStyle(_swigarg0,_swigarg1)) | |
4070 | static PyObject *_wrap_wxListCtrl_SetSingleStyle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4071 | PyObject * _resultobj; | |
4072 | wxPyListCtrl * _arg0; | |
4073 | long _arg1; | |
4074 | bool _arg2 = (bool ) TRUE; | |
4075 | PyObject * _argo0 = 0; | |
4076 | int tempbool2 = (int) TRUE; | |
4077 | char *_kwnames[] = { "self","style","add", NULL }; | |
4078 | ||
4079 | self = self; | |
4080 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListCtrl_SetSingleStyle",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
4081 | return NULL; | |
4082 | if (_argo0) { | |
4083 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4084 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4085 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetSingleStyle. Expected _wxPyListCtrl_p."); | |
4086 | return NULL; | |
4087 | } | |
4088 | } | |
4089 | _arg2 = (bool ) tempbool2; | |
4090 | { | |
4091 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4092 | wxListCtrl_SetSingleStyle(_arg0,_arg1,_arg2); | |
4093 | ||
4094 | wxPyEndAllowThreads(__tstate); | |
4095 | if (PyErr_Occurred()) return NULL; | |
4096 | } Py_INCREF(Py_None); | |
4097 | _resultobj = Py_None; | |
4098 | return _resultobj; | |
4099 | } | |
4100 | ||
4101 | #define wxListCtrl_SetWindowStyleFlag(_swigobj,_swigarg0) (_swigobj->SetWindowStyleFlag(_swigarg0)) | |
4102 | static PyObject *_wrap_wxListCtrl_SetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4103 | PyObject * _resultobj; | |
4104 | wxPyListCtrl * _arg0; | |
4105 | long _arg1; | |
4106 | PyObject * _argo0 = 0; | |
4107 | char *_kwnames[] = { "self","style", NULL }; | |
4108 | ||
4109 | self = self; | |
4110 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_SetWindowStyleFlag",_kwnames,&_argo0,&_arg1)) | |
4111 | return NULL; | |
4112 | if (_argo0) { | |
4113 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4114 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4115 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetWindowStyleFlag. Expected _wxPyListCtrl_p."); | |
4116 | return NULL; | |
4117 | } | |
4118 | } | |
4119 | { | |
4120 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4121 | wxListCtrl_SetWindowStyleFlag(_arg0,_arg1); | |
4122 | ||
4123 | wxPyEndAllowThreads(__tstate); | |
4124 | if (PyErr_Occurred()) return NULL; | |
4125 | } Py_INCREF(Py_None); | |
4126 | _resultobj = Py_None; | |
4127 | return _resultobj; | |
4128 | } | |
4129 | ||
4130 | #define wxListCtrl_GetNextItem(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->GetNextItem(_swigarg0,_swigarg1,_swigarg2)) | |
4131 | static PyObject *_wrap_wxListCtrl_GetNextItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4132 | PyObject * _resultobj; | |
4133 | long _result; | |
4134 | wxPyListCtrl * _arg0; | |
4135 | long _arg1; | |
4136 | int _arg2 = (int ) (wxLIST_NEXT_ALL); | |
4137 | int _arg3 = (int ) (wxLIST_STATE_DONTCARE); | |
4138 | PyObject * _argo0 = 0; | |
4139 | char *_kwnames[] = { "self","item","geometry","state", NULL }; | |
4140 | ||
4141 | self = self; | |
4142 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|ii:wxListCtrl_GetNextItem",_kwnames,&_argo0,&_arg1,&_arg2,&_arg3)) | |
4143 | return NULL; | |
4144 | if (_argo0) { | |
4145 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4146 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4147 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetNextItem. Expected _wxPyListCtrl_p."); | |
4148 | return NULL; | |
4149 | } | |
4150 | } | |
4151 | { | |
4152 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4153 | _result = (long )wxListCtrl_GetNextItem(_arg0,_arg1,_arg2,_arg3); | |
4154 | ||
4155 | wxPyEndAllowThreads(__tstate); | |
4156 | if (PyErr_Occurred()) return NULL; | |
4157 | } _resultobj = Py_BuildValue("l",_result); | |
4158 | return _resultobj; | |
4159 | } | |
4160 | ||
4161 | #define wxListCtrl_GetImageList(_swigobj,_swigarg0) (_swigobj->GetImageList(_swigarg0)) | |
4162 | static PyObject *_wrap_wxListCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4163 | PyObject * _resultobj; | |
4164 | wxImageList * _result; | |
4165 | wxPyListCtrl * _arg0; | |
4166 | int _arg1; | |
4167 | PyObject * _argo0 = 0; | |
4168 | char *_kwnames[] = { "self","which", NULL }; | |
4169 | ||
4170 | self = self; | |
4171 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_GetImageList",_kwnames,&_argo0,&_arg1)) | |
4172 | return NULL; | |
4173 | if (_argo0) { | |
4174 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4175 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4176 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_GetImageList. Expected _wxPyListCtrl_p."); | |
4177 | return NULL; | |
4178 | } | |
4179 | } | |
4180 | { | |
4181 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4182 | _result = (wxImageList *)wxListCtrl_GetImageList(_arg0,_arg1); | |
4183 | ||
4184 | wxPyEndAllowThreads(__tstate); | |
4185 | if (PyErr_Occurred()) return NULL; | |
4186 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
4187 | return _resultobj; | |
4188 | } | |
4189 | ||
4190 | #define wxListCtrl_SetImageList(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetImageList(_swigarg0,_swigarg1)) | |
4191 | static PyObject *_wrap_wxListCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4192 | PyObject * _resultobj; | |
4193 | wxPyListCtrl * _arg0; | |
4194 | wxImageList * _arg1; | |
4195 | int _arg2; | |
4196 | PyObject * _argo0 = 0; | |
4197 | PyObject * _argo1 = 0; | |
4198 | char *_kwnames[] = { "self","imageList","which", NULL }; | |
4199 | ||
4200 | self = self; | |
4201 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxListCtrl_SetImageList",_kwnames,&_argo0,&_argo1,&_arg2)) | |
4202 | return NULL; | |
4203 | if (_argo0) { | |
4204 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4205 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4206 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetImageList. Expected _wxPyListCtrl_p."); | |
4207 | return NULL; | |
4208 | } | |
4209 | } | |
4210 | if (_argo1) { | |
4211 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4212 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
4213 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_SetImageList. Expected _wxImageList_p."); | |
4214 | return NULL; | |
4215 | } | |
4216 | } | |
4217 | { | |
4218 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4219 | wxListCtrl_SetImageList(_arg0,_arg1,_arg2); | |
4220 | ||
4221 | wxPyEndAllowThreads(__tstate); | |
4222 | if (PyErr_Occurred()) return NULL; | |
4223 | } Py_INCREF(Py_None); | |
4224 | _resultobj = Py_None; | |
4225 | return _resultobj; | |
4226 | } | |
4227 | ||
4228 | #define wxListCtrl_AssignImageList(_swigobj,_swigarg0,_swigarg1) (_swigobj->AssignImageList(_swigarg0,_swigarg1)) | |
4229 | static PyObject *_wrap_wxListCtrl_AssignImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4230 | PyObject * _resultobj; | |
4231 | wxPyListCtrl * _arg0; | |
4232 | wxImageList * _arg1; | |
4233 | int _arg2; | |
4234 | PyObject * _argo0 = 0; | |
4235 | PyObject * _argo1 = 0; | |
4236 | char *_kwnames[] = { "self","imageList","which", NULL }; | |
4237 | ||
4238 | self = self; | |
4239 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxListCtrl_AssignImageList",_kwnames,&_argo0,&_argo1,&_arg2)) | |
4240 | return NULL; | |
4241 | if (_argo0) { | |
4242 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4243 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4244 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_AssignImageList. Expected _wxPyListCtrl_p."); | |
4245 | return NULL; | |
4246 | } | |
4247 | } | |
4248 | if (_argo1) { | |
4249 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4250 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
4251 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_AssignImageList. Expected _wxImageList_p."); | |
4252 | return NULL; | |
4253 | } | |
4254 | } | |
4255 | { | |
4256 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4257 | wxListCtrl_AssignImageList(_arg0,_arg1,_arg2); | |
4258 | ||
4259 | wxPyEndAllowThreads(__tstate); | |
4260 | if (PyErr_Occurred()) return NULL; | |
4261 | } Py_INCREF(Py_None); | |
4262 | _resultobj = Py_None; | |
4263 | return _resultobj; | |
4264 | } | |
4265 | ||
4266 | #define wxListCtrl_IsVirtual(_swigobj) (_swigobj->IsVirtual()) | |
4267 | static PyObject *_wrap_wxListCtrl_IsVirtual(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4268 | PyObject * _resultobj; | |
4269 | bool _result; | |
4270 | wxPyListCtrl * _arg0; | |
4271 | PyObject * _argo0 = 0; | |
4272 | char *_kwnames[] = { "self", NULL }; | |
4273 | ||
4274 | self = self; | |
4275 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_IsVirtual",_kwnames,&_argo0)) | |
4276 | return NULL; | |
4277 | if (_argo0) { | |
4278 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4279 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4280 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_IsVirtual. Expected _wxPyListCtrl_p."); | |
4281 | return NULL; | |
4282 | } | |
4283 | } | |
4284 | { | |
4285 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4286 | _result = (bool )wxListCtrl_IsVirtual(_arg0); | |
4287 | ||
4288 | wxPyEndAllowThreads(__tstate); | |
4289 | if (PyErr_Occurred()) return NULL; | |
4290 | } _resultobj = Py_BuildValue("i",_result); | |
4291 | return _resultobj; | |
4292 | } | |
4293 | ||
4294 | #define wxListCtrl_RefreshItem(_swigobj,_swigarg0) (_swigobj->RefreshItem(_swigarg0)) | |
4295 | static PyObject *_wrap_wxListCtrl_RefreshItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4296 | PyObject * _resultobj; | |
4297 | wxPyListCtrl * _arg0; | |
4298 | long _arg1; | |
4299 | PyObject * _argo0 = 0; | |
4300 | char *_kwnames[] = { "self","item", NULL }; | |
4301 | ||
4302 | self = self; | |
4303 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_RefreshItem",_kwnames,&_argo0,&_arg1)) | |
4304 | return NULL; | |
4305 | if (_argo0) { | |
4306 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4307 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4308 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_RefreshItem. Expected _wxPyListCtrl_p."); | |
4309 | return NULL; | |
4310 | } | |
4311 | } | |
4312 | { | |
4313 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4314 | wxListCtrl_RefreshItem(_arg0,_arg1); | |
4315 | ||
4316 | wxPyEndAllowThreads(__tstate); | |
4317 | if (PyErr_Occurred()) return NULL; | |
4318 | } Py_INCREF(Py_None); | |
4319 | _resultobj = Py_None; | |
4320 | return _resultobj; | |
4321 | } | |
4322 | ||
4323 | #define wxListCtrl_RefreshItems(_swigobj,_swigarg0,_swigarg1) (_swigobj->RefreshItems(_swigarg0,_swigarg1)) | |
4324 | static PyObject *_wrap_wxListCtrl_RefreshItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4325 | PyObject * _resultobj; | |
4326 | wxPyListCtrl * _arg0; | |
4327 | long _arg1; | |
4328 | long _arg2; | |
4329 | PyObject * _argo0 = 0; | |
4330 | char *_kwnames[] = { "self","itemFrom","itemTo", NULL }; | |
4331 | ||
4332 | self = self; | |
4333 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_RefreshItems",_kwnames,&_argo0,&_arg1,&_arg2)) | |
4334 | return NULL; | |
4335 | if (_argo0) { | |
4336 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4337 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4338 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_RefreshItems. Expected _wxPyListCtrl_p."); | |
4339 | return NULL; | |
4340 | } | |
4341 | } | |
4342 | { | |
4343 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4344 | wxListCtrl_RefreshItems(_arg0,_arg1,_arg2); | |
4345 | ||
4346 | wxPyEndAllowThreads(__tstate); | |
4347 | if (PyErr_Occurred()) return NULL; | |
4348 | } Py_INCREF(Py_None); | |
4349 | _resultobj = Py_None; | |
4350 | return _resultobj; | |
4351 | } | |
4352 | ||
4353 | #define wxListCtrl_Arrange(_swigobj,_swigarg0) (_swigobj->Arrange(_swigarg0)) | |
4354 | static PyObject *_wrap_wxListCtrl_Arrange(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4355 | PyObject * _resultobj; | |
4356 | bool _result; | |
4357 | wxPyListCtrl * _arg0; | |
4358 | int _arg1 = (int ) (wxLIST_ALIGN_DEFAULT); | |
4359 | PyObject * _argo0 = 0; | |
4360 | char *_kwnames[] = { "self","flag", NULL }; | |
4361 | ||
4362 | self = self; | |
4363 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|i:wxListCtrl_Arrange",_kwnames,&_argo0,&_arg1)) | |
4364 | return NULL; | |
4365 | if (_argo0) { | |
4366 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4367 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4368 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_Arrange. Expected _wxPyListCtrl_p."); | |
4369 | return NULL; | |
4370 | } | |
4371 | } | |
4372 | { | |
4373 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4374 | _result = (bool )wxListCtrl_Arrange(_arg0,_arg1); | |
4375 | ||
4376 | wxPyEndAllowThreads(__tstate); | |
4377 | if (PyErr_Occurred()) return NULL; | |
4378 | } _resultobj = Py_BuildValue("i",_result); | |
4379 | return _resultobj; | |
4380 | } | |
4381 | ||
4382 | #define wxListCtrl_DeleteItem(_swigobj,_swigarg0) (_swigobj->DeleteItem(_swigarg0)) | |
4383 | static PyObject *_wrap_wxListCtrl_DeleteItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4384 | PyObject * _resultobj; | |
4385 | bool _result; | |
4386 | wxPyListCtrl * _arg0; | |
4387 | long _arg1; | |
4388 | PyObject * _argo0 = 0; | |
4389 | char *_kwnames[] = { "self","item", NULL }; | |
4390 | ||
4391 | self = self; | |
4392 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_DeleteItem",_kwnames,&_argo0,&_arg1)) | |
4393 | return NULL; | |
4394 | if (_argo0) { | |
4395 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4396 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4397 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteItem. Expected _wxPyListCtrl_p."); | |
4398 | return NULL; | |
4399 | } | |
4400 | } | |
4401 | { | |
4402 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4403 | _result = (bool )wxListCtrl_DeleteItem(_arg0,_arg1); | |
4404 | ||
4405 | wxPyEndAllowThreads(__tstate); | |
4406 | if (PyErr_Occurred()) return NULL; | |
4407 | } _resultobj = Py_BuildValue("i",_result); | |
4408 | return _resultobj; | |
4409 | } | |
4410 | ||
4411 | #define wxListCtrl_DeleteAllItems(_swigobj) (_swigobj->DeleteAllItems()) | |
4412 | static PyObject *_wrap_wxListCtrl_DeleteAllItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4413 | PyObject * _resultobj; | |
4414 | bool _result; | |
4415 | wxPyListCtrl * _arg0; | |
4416 | PyObject * _argo0 = 0; | |
4417 | char *_kwnames[] = { "self", NULL }; | |
4418 | ||
4419 | self = self; | |
4420 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_DeleteAllItems",_kwnames,&_argo0)) | |
4421 | return NULL; | |
4422 | if (_argo0) { | |
4423 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4424 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4425 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteAllItems. Expected _wxPyListCtrl_p."); | |
4426 | return NULL; | |
4427 | } | |
4428 | } | |
4429 | { | |
4430 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4431 | _result = (bool )wxListCtrl_DeleteAllItems(_arg0); | |
4432 | ||
4433 | wxPyEndAllowThreads(__tstate); | |
4434 | if (PyErr_Occurred()) return NULL; | |
4435 | } _resultobj = Py_BuildValue("i",_result); | |
4436 | return _resultobj; | |
4437 | } | |
4438 | ||
4439 | #define wxListCtrl_DeleteColumn(_swigobj,_swigarg0) (_swigobj->DeleteColumn(_swigarg0)) | |
4440 | static PyObject *_wrap_wxListCtrl_DeleteColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4441 | PyObject * _resultobj; | |
4442 | bool _result; | |
4443 | wxPyListCtrl * _arg0; | |
4444 | int _arg1; | |
4445 | PyObject * _argo0 = 0; | |
4446 | char *_kwnames[] = { "self","col", NULL }; | |
4447 | ||
4448 | self = self; | |
4449 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_DeleteColumn",_kwnames,&_argo0,&_arg1)) | |
4450 | return NULL; | |
4451 | if (_argo0) { | |
4452 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4453 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4454 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteColumn. Expected _wxPyListCtrl_p."); | |
4455 | return NULL; | |
4456 | } | |
4457 | } | |
4458 | { | |
4459 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4460 | _result = (bool )wxListCtrl_DeleteColumn(_arg0,_arg1); | |
4461 | ||
4462 | wxPyEndAllowThreads(__tstate); | |
4463 | if (PyErr_Occurred()) return NULL; | |
4464 | } _resultobj = Py_BuildValue("i",_result); | |
4465 | return _resultobj; | |
4466 | } | |
4467 | ||
4468 | #define wxListCtrl_DeleteAllColumns(_swigobj) (_swigobj->DeleteAllColumns()) | |
4469 | static PyObject *_wrap_wxListCtrl_DeleteAllColumns(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4470 | PyObject * _resultobj; | |
4471 | bool _result; | |
4472 | wxPyListCtrl * _arg0; | |
4473 | PyObject * _argo0 = 0; | |
4474 | char *_kwnames[] = { "self", NULL }; | |
4475 | ||
4476 | self = self; | |
4477 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_DeleteAllColumns",_kwnames,&_argo0)) | |
4478 | return NULL; | |
4479 | if (_argo0) { | |
4480 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4481 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4482 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_DeleteAllColumns. Expected _wxPyListCtrl_p."); | |
4483 | return NULL; | |
4484 | } | |
4485 | } | |
4486 | { | |
4487 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4488 | _result = (bool )wxListCtrl_DeleteAllColumns(_arg0); | |
4489 | ||
4490 | wxPyEndAllowThreads(__tstate); | |
4491 | if (PyErr_Occurred()) return NULL; | |
4492 | } _resultobj = Py_BuildValue("i",_result); | |
4493 | return _resultobj; | |
4494 | } | |
4495 | ||
4496 | #define wxListCtrl_ClearAll(_swigobj) (_swigobj->ClearAll()) | |
4497 | static PyObject *_wrap_wxListCtrl_ClearAll(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4498 | PyObject * _resultobj; | |
4499 | wxPyListCtrl * _arg0; | |
4500 | PyObject * _argo0 = 0; | |
4501 | char *_kwnames[] = { "self", NULL }; | |
4502 | ||
4503 | self = self; | |
4504 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListCtrl_ClearAll",_kwnames,&_argo0)) | |
4505 | return NULL; | |
4506 | if (_argo0) { | |
4507 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4508 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4509 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_ClearAll. Expected _wxPyListCtrl_p."); | |
4510 | return NULL; | |
4511 | } | |
4512 | } | |
4513 | { | |
4514 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4515 | wxListCtrl_ClearAll(_arg0); | |
4516 | ||
4517 | wxPyEndAllowThreads(__tstate); | |
4518 | if (PyErr_Occurred()) return NULL; | |
4519 | } Py_INCREF(Py_None); | |
4520 | _resultobj = Py_None; | |
4521 | return _resultobj; | |
4522 | } | |
4523 | ||
4524 | #define wxListCtrl_EditLabel(_swigobj,_swigarg0) (_swigobj->EditLabel(_swigarg0)) | |
4525 | static PyObject *_wrap_wxListCtrl_EditLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4526 | PyObject * _resultobj; | |
4527 | wxTextCtrl * _result; | |
4528 | wxPyListCtrl * _arg0; | |
4529 | long _arg1; | |
4530 | PyObject * _argo0 = 0; | |
4531 | char *_kwnames[] = { "self","item", NULL }; | |
4532 | ||
4533 | self = self; | |
4534 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_EditLabel",_kwnames,&_argo0,&_arg1)) | |
4535 | return NULL; | |
4536 | if (_argo0) { | |
4537 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4538 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4539 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_EditLabel. Expected _wxPyListCtrl_p."); | |
4540 | return NULL; | |
4541 | } | |
4542 | } | |
4543 | { | |
4544 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4545 | _result = (wxTextCtrl *)wxListCtrl_EditLabel(_arg0,_arg1); | |
4546 | ||
4547 | wxPyEndAllowThreads(__tstate); | |
4548 | if (PyErr_Occurred()) return NULL; | |
4549 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
4550 | return _resultobj; | |
4551 | } | |
4552 | ||
4553 | #define wxListCtrl_EndEditLabel(_swigobj,_swigarg0) (_swigobj->EndEditLabel(_swigarg0)) | |
4554 | static PyObject *_wrap_wxListCtrl_EndEditLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4555 | PyObject * _resultobj; | |
4556 | bool _result; | |
4557 | wxPyListCtrl * _arg0; | |
4558 | bool _arg1; | |
4559 | PyObject * _argo0 = 0; | |
4560 | int tempbool1; | |
4561 | char *_kwnames[] = { "self","cancel", NULL }; | |
4562 | ||
4563 | self = self; | |
4564 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListCtrl_EndEditLabel",_kwnames,&_argo0,&tempbool1)) | |
4565 | return NULL; | |
4566 | if (_argo0) { | |
4567 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4568 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4569 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_EndEditLabel. Expected _wxPyListCtrl_p."); | |
4570 | return NULL; | |
4571 | } | |
4572 | } | |
4573 | _arg1 = (bool ) tempbool1; | |
4574 | { | |
4575 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4576 | _result = (bool )wxListCtrl_EndEditLabel(_arg0,_arg1); | |
4577 | ||
4578 | wxPyEndAllowThreads(__tstate); | |
4579 | if (PyErr_Occurred()) return NULL; | |
4580 | } _resultobj = Py_BuildValue("i",_result); | |
4581 | return _resultobj; | |
4582 | } | |
4583 | ||
4584 | #define wxListCtrl_EnsureVisible(_swigobj,_swigarg0) (_swigobj->EnsureVisible(_swigarg0)) | |
4585 | static PyObject *_wrap_wxListCtrl_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4586 | PyObject * _resultobj; | |
4587 | bool _result; | |
4588 | wxPyListCtrl * _arg0; | |
4589 | long _arg1; | |
4590 | PyObject * _argo0 = 0; | |
4591 | char *_kwnames[] = { "self","item", NULL }; | |
4592 | ||
4593 | self = self; | |
4594 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_EnsureVisible",_kwnames,&_argo0,&_arg1)) | |
4595 | return NULL; | |
4596 | if (_argo0) { | |
4597 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4598 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4599 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_EnsureVisible. Expected _wxPyListCtrl_p."); | |
4600 | return NULL; | |
4601 | } | |
4602 | } | |
4603 | { | |
4604 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4605 | _result = (bool )wxListCtrl_EnsureVisible(_arg0,_arg1); | |
4606 | ||
4607 | wxPyEndAllowThreads(__tstate); | |
4608 | if (PyErr_Occurred()) return NULL; | |
4609 | } _resultobj = Py_BuildValue("i",_result); | |
4610 | return _resultobj; | |
4611 | } | |
4612 | ||
4613 | #define wxListCtrl_FindItem(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->FindItem(_swigarg0,_swigarg1,_swigarg2)) | |
4614 | static PyObject *_wrap_wxListCtrl_FindItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4615 | PyObject * _resultobj; | |
4616 | long _result; | |
4617 | wxPyListCtrl * _arg0; | |
4618 | long _arg1; | |
4619 | wxString * _arg2; | |
4620 | bool _arg3 = (bool ) FALSE; | |
4621 | PyObject * _argo0 = 0; | |
4622 | PyObject * _obj2 = 0; | |
4623 | int tempbool3 = (int) FALSE; | |
4624 | char *_kwnames[] = { "self","start","str","partial", NULL }; | |
4625 | ||
4626 | self = self; | |
4627 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO|i:wxListCtrl_FindItem",_kwnames,&_argo0,&_arg1,&_obj2,&tempbool3)) | |
4628 | return NULL; | |
4629 | if (_argo0) { | |
4630 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4631 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4632 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_FindItem. Expected _wxPyListCtrl_p."); | |
4633 | return NULL; | |
4634 | } | |
4635 | } | |
4636 | { | |
4637 | #if PYTHON_API_VERSION >= 1009 | |
4638 | char* tmpPtr; int tmpSize; | |
4639 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
4640 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4641 | return NULL; | |
4642 | } | |
4643 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
4644 | return NULL; | |
4645 | _arg2 = new wxString(tmpPtr, tmpSize); | |
4646 | #else | |
4647 | if (!PyString_Check(_obj2)) { | |
4648 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4649 | return NULL; | |
4650 | } | |
4651 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
4652 | #endif | |
4653 | } | |
4654 | _arg3 = (bool ) tempbool3; | |
4655 | { | |
4656 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4657 | _result = (long )wxListCtrl_FindItem(_arg0,_arg1,*_arg2,_arg3); | |
4658 | ||
4659 | wxPyEndAllowThreads(__tstate); | |
4660 | if (PyErr_Occurred()) return NULL; | |
4661 | } _resultobj = Py_BuildValue("l",_result); | |
4662 | { | |
4663 | if (_obj2) | |
4664 | delete _arg2; | |
4665 | } | |
4666 | return _resultobj; | |
4667 | } | |
4668 | ||
4669 | #define wxListCtrl_FindItemData(_swigobj,_swigarg0,_swigarg1) (_swigobj->FindItem(_swigarg0,_swigarg1)) | |
4670 | static PyObject *_wrap_wxListCtrl_FindItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4671 | PyObject * _resultobj; | |
4672 | long _result; | |
4673 | wxPyListCtrl * _arg0; | |
4674 | long _arg1; | |
4675 | long _arg2; | |
4676 | PyObject * _argo0 = 0; | |
4677 | char *_kwnames[] = { "self","start","data", NULL }; | |
4678 | ||
4679 | self = self; | |
4680 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oll:wxListCtrl_FindItemData",_kwnames,&_argo0,&_arg1,&_arg2)) | |
4681 | return NULL; | |
4682 | if (_argo0) { | |
4683 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4684 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4685 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_FindItemData. Expected _wxPyListCtrl_p."); | |
4686 | return NULL; | |
4687 | } | |
4688 | } | |
4689 | { | |
4690 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4691 | _result = (long )wxListCtrl_FindItemData(_arg0,_arg1,_arg2); | |
4692 | ||
4693 | wxPyEndAllowThreads(__tstate); | |
4694 | if (PyErr_Occurred()) return NULL; | |
4695 | } _resultobj = Py_BuildValue("l",_result); | |
4696 | return _resultobj; | |
4697 | } | |
4698 | ||
4699 | #define wxListCtrl_FindItemAtPos(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->FindItem(_swigarg0,_swigarg1,_swigarg2)) | |
4700 | static PyObject *_wrap_wxListCtrl_FindItemAtPos(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4701 | PyObject * _resultobj; | |
4702 | long _result; | |
4703 | wxPyListCtrl * _arg0; | |
4704 | long _arg1; | |
4705 | wxPoint * _arg2; | |
4706 | int _arg3; | |
4707 | PyObject * _argo0 = 0; | |
4708 | wxPoint temp; | |
4709 | PyObject * _obj2 = 0; | |
4710 | char *_kwnames[] = { "self","start","pt","direction", NULL }; | |
4711 | ||
4712 | self = self; | |
4713 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlOi:wxListCtrl_FindItemAtPos",_kwnames,&_argo0,&_arg1,&_obj2,&_arg3)) | |
4714 | return NULL; | |
4715 | if (_argo0) { | |
4716 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4717 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4718 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_FindItemAtPos. Expected _wxPyListCtrl_p."); | |
4719 | return NULL; | |
4720 | } | |
4721 | } | |
4722 | { | |
4723 | _arg2 = &temp; | |
4724 | if (! wxPoint_helper(_obj2, &_arg2)) | |
4725 | return NULL; | |
4726 | } | |
4727 | { | |
4728 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4729 | _result = (long )wxListCtrl_FindItemAtPos(_arg0,_arg1,*_arg2,_arg3); | |
4730 | ||
4731 | wxPyEndAllowThreads(__tstate); | |
4732 | if (PyErr_Occurred()) return NULL; | |
4733 | } _resultobj = Py_BuildValue("l",_result); | |
4734 | return _resultobj; | |
4735 | } | |
4736 | ||
4737 | #define wxListCtrl_HitTest(_swigobj,_swigarg0,_swigarg1) (_swigobj->HitTest(_swigarg0,_swigarg1)) | |
4738 | static PyObject *_wrap_wxListCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4739 | PyObject * _resultobj; | |
4740 | long _result; | |
4741 | wxPyListCtrl * _arg0; | |
4742 | wxPoint * _arg1; | |
4743 | int * _arg2; | |
4744 | int temp; | |
4745 | PyObject * _argo0 = 0; | |
4746 | wxPoint temp0; | |
4747 | PyObject * _obj1 = 0; | |
4748 | char *_kwnames[] = { "self","point", NULL }; | |
4749 | ||
4750 | self = self; | |
4751 | { | |
4752 | _arg2 = &temp; | |
4753 | } | |
4754 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_HitTest",_kwnames,&_argo0,&_obj1)) | |
4755 | return NULL; | |
4756 | if (_argo0) { | |
4757 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4758 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4759 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_HitTest. Expected _wxPyListCtrl_p."); | |
4760 | return NULL; | |
4761 | } | |
4762 | } | |
4763 | { | |
4764 | _arg1 = &temp0; | |
4765 | if (! wxPoint_helper(_obj1, &_arg1)) | |
4766 | return NULL; | |
4767 | } | |
4768 | { | |
4769 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4770 | _result = (long )wxListCtrl_HitTest(_arg0,*_arg1,*_arg2); | |
4771 | ||
4772 | wxPyEndAllowThreads(__tstate); | |
4773 | if (PyErr_Occurred()) return NULL; | |
4774 | } _resultobj = Py_BuildValue("l",_result); | |
4775 | { | |
4776 | PyObject *o; | |
4777 | o = PyInt_FromLong((long) (*_arg2)); | |
4778 | _resultobj = t_output_helper(_resultobj, o); | |
4779 | } | |
4780 | return _resultobj; | |
4781 | } | |
4782 | ||
4783 | #define wxListCtrl_InsertItem(_swigobj,_swigarg0) (_swigobj->InsertItem(_swigarg0)) | |
4784 | static PyObject *_wrap_wxListCtrl_InsertItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4785 | PyObject * _resultobj; | |
4786 | long _result; | |
4787 | wxPyListCtrl * _arg0; | |
4788 | wxListItem * _arg1; | |
4789 | PyObject * _argo0 = 0; | |
4790 | PyObject * _argo1 = 0; | |
4791 | char *_kwnames[] = { "self","info", NULL }; | |
4792 | ||
4793 | self = self; | |
4794 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_InsertItem",_kwnames,&_argo0,&_argo1)) | |
4795 | return NULL; | |
4796 | if (_argo0) { | |
4797 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4798 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4799 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertItem. Expected _wxPyListCtrl_p."); | |
4800 | return NULL; | |
4801 | } | |
4802 | } | |
4803 | if (_argo1) { | |
4804 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4805 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxListItem_p")) { | |
4806 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListCtrl_InsertItem. Expected _wxListItem_p."); | |
4807 | return NULL; | |
4808 | } | |
4809 | } | |
4810 | { | |
4811 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4812 | _result = (long )wxListCtrl_InsertItem(_arg0,*_arg1); | |
4813 | ||
4814 | wxPyEndAllowThreads(__tstate); | |
4815 | if (PyErr_Occurred()) return NULL; | |
4816 | } _resultobj = Py_BuildValue("l",_result); | |
4817 | return _resultobj; | |
4818 | } | |
4819 | ||
4820 | #define wxListCtrl_InsertStringItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertItem(_swigarg0,_swigarg1)) | |
4821 | static PyObject *_wrap_wxListCtrl_InsertStringItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4822 | PyObject * _resultobj; | |
4823 | long _result; | |
4824 | wxPyListCtrl * _arg0; | |
4825 | long _arg1; | |
4826 | wxString * _arg2; | |
4827 | PyObject * _argo0 = 0; | |
4828 | PyObject * _obj2 = 0; | |
4829 | char *_kwnames[] = { "self","index","label", NULL }; | |
4830 | ||
4831 | self = self; | |
4832 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_InsertStringItem",_kwnames,&_argo0,&_arg1,&_obj2)) | |
4833 | return NULL; | |
4834 | if (_argo0) { | |
4835 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4836 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4837 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertStringItem. Expected _wxPyListCtrl_p."); | |
4838 | return NULL; | |
4839 | } | |
4840 | } | |
4841 | { | |
4842 | #if PYTHON_API_VERSION >= 1009 | |
4843 | char* tmpPtr; int tmpSize; | |
4844 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
4845 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4846 | return NULL; | |
4847 | } | |
4848 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
4849 | return NULL; | |
4850 | _arg2 = new wxString(tmpPtr, tmpSize); | |
4851 | #else | |
4852 | if (!PyString_Check(_obj2)) { | |
4853 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4854 | return NULL; | |
4855 | } | |
4856 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
4857 | #endif | |
4858 | } | |
4859 | { | |
4860 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4861 | _result = (long )wxListCtrl_InsertStringItem(_arg0,_arg1,*_arg2); | |
4862 | ||
4863 | wxPyEndAllowThreads(__tstate); | |
4864 | if (PyErr_Occurred()) return NULL; | |
4865 | } _resultobj = Py_BuildValue("l",_result); | |
4866 | { | |
4867 | if (_obj2) | |
4868 | delete _arg2; | |
4869 | } | |
4870 | return _resultobj; | |
4871 | } | |
4872 | ||
4873 | #define wxListCtrl_InsertImageItem(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertItem(_swigarg0,_swigarg1)) | |
4874 | static PyObject *_wrap_wxListCtrl_InsertImageItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4875 | PyObject * _resultobj; | |
4876 | long _result; | |
4877 | wxPyListCtrl * _arg0; | |
4878 | long _arg1; | |
4879 | int _arg2; | |
4880 | PyObject * _argo0 = 0; | |
4881 | char *_kwnames[] = { "self","index","imageIndex", NULL }; | |
4882 | ||
4883 | self = self; | |
4884 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oli:wxListCtrl_InsertImageItem",_kwnames,&_argo0,&_arg1,&_arg2)) | |
4885 | return NULL; | |
4886 | if (_argo0) { | |
4887 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4888 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4889 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertImageItem. Expected _wxPyListCtrl_p."); | |
4890 | return NULL; | |
4891 | } | |
4892 | } | |
4893 | { | |
4894 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4895 | _result = (long )wxListCtrl_InsertImageItem(_arg0,_arg1,_arg2); | |
4896 | ||
4897 | wxPyEndAllowThreads(__tstate); | |
4898 | if (PyErr_Occurred()) return NULL; | |
4899 | } _resultobj = Py_BuildValue("l",_result); | |
4900 | return _resultobj; | |
4901 | } | |
4902 | ||
4903 | #define wxListCtrl_InsertImageStringItem(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->InsertItem(_swigarg0,_swigarg1,_swigarg2)) | |
4904 | static PyObject *_wrap_wxListCtrl_InsertImageStringItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4905 | PyObject * _resultobj; | |
4906 | long _result; | |
4907 | wxPyListCtrl * _arg0; | |
4908 | long _arg1; | |
4909 | wxString * _arg2; | |
4910 | int _arg3; | |
4911 | PyObject * _argo0 = 0; | |
4912 | PyObject * _obj2 = 0; | |
4913 | char *_kwnames[] = { "self","index","label","imageIndex", NULL }; | |
4914 | ||
4915 | self = self; | |
4916 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlOi:wxListCtrl_InsertImageStringItem",_kwnames,&_argo0,&_arg1,&_obj2,&_arg3)) | |
4917 | return NULL; | |
4918 | if (_argo0) { | |
4919 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4920 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4921 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertImageStringItem. Expected _wxPyListCtrl_p."); | |
4922 | return NULL; | |
4923 | } | |
4924 | } | |
4925 | { | |
4926 | #if PYTHON_API_VERSION >= 1009 | |
4927 | char* tmpPtr; int tmpSize; | |
4928 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
4929 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4930 | return NULL; | |
4931 | } | |
4932 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
4933 | return NULL; | |
4934 | _arg2 = new wxString(tmpPtr, tmpSize); | |
4935 | #else | |
4936 | if (!PyString_Check(_obj2)) { | |
4937 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4938 | return NULL; | |
4939 | } | |
4940 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
4941 | #endif | |
4942 | } | |
4943 | { | |
4944 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4945 | _result = (long )wxListCtrl_InsertImageStringItem(_arg0,_arg1,*_arg2,_arg3); | |
4946 | ||
4947 | wxPyEndAllowThreads(__tstate); | |
4948 | if (PyErr_Occurred()) return NULL; | |
4949 | } _resultobj = Py_BuildValue("l",_result); | |
4950 | { | |
4951 | if (_obj2) | |
4952 | delete _arg2; | |
4953 | } | |
4954 | return _resultobj; | |
4955 | } | |
4956 | ||
4957 | #define wxListCtrl_InsertColumnInfo(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertColumn(_swigarg0,_swigarg1)) | |
4958 | static PyObject *_wrap_wxListCtrl_InsertColumnInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4959 | PyObject * _resultobj; | |
4960 | long _result; | |
4961 | wxPyListCtrl * _arg0; | |
4962 | long _arg1; | |
4963 | wxListItem * _arg2; | |
4964 | PyObject * _argo0 = 0; | |
4965 | PyObject * _argo2 = 0; | |
4966 | char *_kwnames[] = { "self","col","info", NULL }; | |
4967 | ||
4968 | self = self; | |
4969 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO:wxListCtrl_InsertColumnInfo",_kwnames,&_argo0,&_arg1,&_argo2)) | |
4970 | return NULL; | |
4971 | if (_argo0) { | |
4972 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4973 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
4974 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertColumnInfo. Expected _wxPyListCtrl_p."); | |
4975 | return NULL; | |
4976 | } | |
4977 | } | |
4978 | if (_argo2) { | |
4979 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
4980 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxListItem_p")) { | |
4981 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxListCtrl_InsertColumnInfo. Expected _wxListItem_p."); | |
4982 | return NULL; | |
4983 | } | |
4984 | } | |
4985 | { | |
4986 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
4987 | _result = (long )wxListCtrl_InsertColumnInfo(_arg0,_arg1,*_arg2); | |
4988 | ||
4989 | wxPyEndAllowThreads(__tstate); | |
4990 | if (PyErr_Occurred()) return NULL; | |
4991 | } _resultobj = Py_BuildValue("l",_result); | |
4992 | return _resultobj; | |
4993 | } | |
4994 | ||
4995 | #define wxListCtrl_InsertColumn(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->InsertColumn(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
4996 | static PyObject *_wrap_wxListCtrl_InsertColumn(PyObject *self, PyObject *args, PyObject *kwargs) { | |
4997 | PyObject * _resultobj; | |
4998 | long _result; | |
4999 | wxPyListCtrl * _arg0; | |
5000 | long _arg1; | |
5001 | wxString * _arg2; | |
5002 | int _arg3 = (int ) (wxLIST_FORMAT_LEFT); | |
5003 | int _arg4 = (int ) -1; | |
5004 | PyObject * _argo0 = 0; | |
5005 | PyObject * _obj2 = 0; | |
5006 | char *_kwnames[] = { "self","col","heading","format","width", NULL }; | |
5007 | ||
5008 | self = self; | |
5009 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OlO|ii:wxListCtrl_InsertColumn",_kwnames,&_argo0,&_arg1,&_obj2,&_arg3,&_arg4)) | |
5010 | return NULL; | |
5011 | if (_argo0) { | |
5012 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5013 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
5014 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_InsertColumn. Expected _wxPyListCtrl_p."); | |
5015 | return NULL; | |
5016 | } | |
5017 | } | |
5018 | { | |
5019 | #if PYTHON_API_VERSION >= 1009 | |
5020 | char* tmpPtr; int tmpSize; | |
5021 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
5022 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5023 | return NULL; | |
5024 | } | |
5025 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
5026 | return NULL; | |
5027 | _arg2 = new wxString(tmpPtr, tmpSize); | |
5028 | #else | |
5029 | if (!PyString_Check(_obj2)) { | |
5030 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5031 | return NULL; | |
5032 | } | |
5033 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
5034 | #endif | |
5035 | } | |
5036 | { | |
5037 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5038 | _result = (long )wxListCtrl_InsertColumn(_arg0,_arg1,*_arg2,_arg3,_arg4); | |
5039 | ||
5040 | wxPyEndAllowThreads(__tstate); | |
5041 | if (PyErr_Occurred()) return NULL; | |
5042 | } _resultobj = Py_BuildValue("l",_result); | |
5043 | { | |
5044 | if (_obj2) | |
5045 | delete _arg2; | |
5046 | } | |
5047 | return _resultobj; | |
5048 | } | |
5049 | ||
5050 | #define wxListCtrl_SetItemCount(_swigobj,_swigarg0) (_swigobj->SetItemCount(_swigarg0)) | |
5051 | static PyObject *_wrap_wxListCtrl_SetItemCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5052 | PyObject * _resultobj; | |
5053 | wxPyListCtrl * _arg0; | |
5054 | long _arg1; | |
5055 | PyObject * _argo0 = 0; | |
5056 | char *_kwnames[] = { "self","count", NULL }; | |
5057 | ||
5058 | self = self; | |
5059 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListCtrl_SetItemCount",_kwnames,&_argo0,&_arg1)) | |
5060 | return NULL; | |
5061 | if (_argo0) { | |
5062 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5063 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
5064 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SetItemCount. Expected _wxPyListCtrl_p."); | |
5065 | return NULL; | |
5066 | } | |
5067 | } | |
5068 | { | |
5069 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5070 | wxListCtrl_SetItemCount(_arg0,_arg1); | |
5071 | ||
5072 | wxPyEndAllowThreads(__tstate); | |
5073 | if (PyErr_Occurred()) return NULL; | |
5074 | } Py_INCREF(Py_None); | |
5075 | _resultobj = Py_None; | |
5076 | return _resultobj; | |
5077 | } | |
5078 | ||
5079 | #define wxListCtrl_ScrollList(_swigobj,_swigarg0,_swigarg1) (_swigobj->ScrollList(_swigarg0,_swigarg1)) | |
5080 | static PyObject *_wrap_wxListCtrl_ScrollList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5081 | PyObject * _resultobj; | |
5082 | bool _result; | |
5083 | wxPyListCtrl * _arg0; | |
5084 | int _arg1; | |
5085 | int _arg2; | |
5086 | PyObject * _argo0 = 0; | |
5087 | char *_kwnames[] = { "self","dx","dy", NULL }; | |
5088 | ||
5089 | self = self; | |
5090 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxListCtrl_ScrollList",_kwnames,&_argo0,&_arg1,&_arg2)) | |
5091 | return NULL; | |
5092 | if (_argo0) { | |
5093 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5094 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
5095 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_ScrollList. Expected _wxPyListCtrl_p."); | |
5096 | return NULL; | |
5097 | } | |
5098 | } | |
5099 | { | |
5100 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5101 | _result = (bool )wxListCtrl_ScrollList(_arg0,_arg1,_arg2); | |
5102 | ||
5103 | wxPyEndAllowThreads(__tstate); | |
5104 | if (PyErr_Occurred()) return NULL; | |
5105 | } _resultobj = Py_BuildValue("i",_result); | |
5106 | return _resultobj; | |
5107 | } | |
5108 | ||
5109 | static bool wxPyListCtrl_SortItems(wxPyListCtrl *self,PyObject * func) { | |
5110 | if (!PyCallable_Check(func)) | |
5111 | return FALSE; | |
5112 | return self->SortItems(wxPyListCtrl_SortItems, (long)func); | |
5113 | } | |
5114 | static PyObject *_wrap_wxListCtrl_SortItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5115 | PyObject * _resultobj; | |
5116 | bool _result; | |
5117 | wxPyListCtrl * _arg0; | |
5118 | PyObject * _arg1; | |
5119 | PyObject * _argo0 = 0; | |
5120 | PyObject * _obj1 = 0; | |
5121 | char *_kwnames[] = { "self","func", NULL }; | |
5122 | ||
5123 | self = self; | |
5124 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxListCtrl_SortItems",_kwnames,&_argo0,&_obj1)) | |
5125 | return NULL; | |
5126 | if (_argo0) { | |
5127 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5128 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyListCtrl_p")) { | |
5129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListCtrl_SortItems. Expected _wxPyListCtrl_p."); | |
5130 | return NULL; | |
5131 | } | |
5132 | } | |
5133 | { | |
5134 | _arg1 = _obj1; | |
5135 | } | |
5136 | { | |
5137 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5138 | _result = (bool )wxPyListCtrl_SortItems(_arg0,_arg1); | |
5139 | ||
5140 | wxPyEndAllowThreads(__tstate); | |
5141 | if (PyErr_Occurred()) return NULL; | |
5142 | } _resultobj = Py_BuildValue("i",_result); | |
5143 | return _resultobj; | |
5144 | } | |
5145 | ||
5146 | static void *SwigwxListViewTowxPyListCtrl(void *ptr) { | |
5147 | wxListView *src; | |
5148 | wxPyListCtrl *dest; | |
5149 | src = (wxListView *) ptr; | |
5150 | dest = (wxPyListCtrl *) src; | |
5151 | return (void *) dest; | |
5152 | } | |
5153 | ||
5154 | static void *SwigwxListViewTowxControl(void *ptr) { | |
5155 | wxListView *src; | |
5156 | wxControl *dest; | |
5157 | src = (wxListView *) ptr; | |
5158 | dest = (wxControl *) src; | |
5159 | return (void *) dest; | |
5160 | } | |
5161 | ||
5162 | static void *SwigwxListViewTowxWindow(void *ptr) { | |
5163 | wxListView *src; | |
5164 | wxWindow *dest; | |
5165 | src = (wxListView *) ptr; | |
5166 | dest = (wxWindow *) src; | |
5167 | return (void *) dest; | |
5168 | } | |
5169 | ||
5170 | static void *SwigwxListViewTowxEvtHandler(void *ptr) { | |
5171 | wxListView *src; | |
5172 | wxEvtHandler *dest; | |
5173 | src = (wxListView *) ptr; | |
5174 | dest = (wxEvtHandler *) src; | |
5175 | return (void *) dest; | |
5176 | } | |
5177 | ||
5178 | static void *SwigwxListViewTowxObject(void *ptr) { | |
5179 | wxListView *src; | |
5180 | wxObject *dest; | |
5181 | src = (wxListView *) ptr; | |
5182 | dest = (wxObject *) src; | |
5183 | return (void *) dest; | |
5184 | } | |
5185 | ||
5186 | #define new_wxListView(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxListView(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
5187 | static PyObject *_wrap_new_wxListView(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5188 | PyObject * _resultobj; | |
5189 | wxListView * _result; | |
5190 | wxWindow * _arg0; | |
5191 | wxWindowID _arg1 = (wxWindowID ) -1; | |
5192 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; | |
5193 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
5194 | long _arg4 = (long ) (wxLC_REPORT); | |
5195 | wxValidator * _arg5 = (wxValidator *) &wxDefaultValidator; | |
5196 | wxString * _arg6 = (wxString *) &"listctrl"; | |
5197 | PyObject * _argo0 = 0; | |
5198 | wxPoint temp; | |
5199 | PyObject * _obj2 = 0; | |
5200 | wxSize temp0; | |
5201 | PyObject * _obj3 = 0; | |
5202 | PyObject * _argo5 = 0; | |
5203 | PyObject * _obj6 = 0; | |
5204 | char *_kwnames[] = { "parent","id","pos","size","style","validator","name", NULL }; | |
5205 | char _ptemp[128]; | |
5206 | ||
5207 | self = self; | |
5208 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOlOO:new_wxListView",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_argo5,&_obj6)) | |
5209 | return NULL; | |
5210 | if (_argo0) { | |
5211 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5212 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
5213 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxListView. Expected _wxWindow_p."); | |
5214 | return NULL; | |
5215 | } | |
5216 | } | |
5217 | if (_obj2) | |
5218 | { | |
5219 | _arg2 = &temp; | |
5220 | if (! wxPoint_helper(_obj2, &_arg2)) | |
5221 | return NULL; | |
5222 | } | |
5223 | if (_obj3) | |
5224 | { | |
5225 | _arg3 = &temp0; | |
5226 | if (! wxSize_helper(_obj3, &_arg3)) | |
5227 | return NULL; | |
5228 | } | |
5229 | if (_argo5) { | |
5230 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
5231 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxValidator_p")) { | |
5232 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxListView. Expected _wxValidator_p."); | |
5233 | return NULL; | |
5234 | } | |
5235 | } | |
5236 | if (_obj6) | |
5237 | { | |
5238 | #if PYTHON_API_VERSION >= 1009 | |
5239 | char* tmpPtr; int tmpSize; | |
5240 | if (!PyString_Check(_obj6) && !PyUnicode_Check(_obj6)) { | |
5241 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5242 | return NULL; | |
5243 | } | |
5244 | if (PyString_AsStringAndSize(_obj6, &tmpPtr, &tmpSize) == -1) | |
5245 | return NULL; | |
5246 | _arg6 = new wxString(tmpPtr, tmpSize); | |
5247 | #else | |
5248 | if (!PyString_Check(_obj6)) { | |
5249 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5250 | return NULL; | |
5251 | } | |
5252 | _arg6 = new wxString(PyString_AS_STRING(_obj6), PyString_GET_SIZE(_obj6)); | |
5253 | #endif | |
5254 | } | |
5255 | { | |
5256 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5257 | _result = (wxListView *)new_wxListView(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5,*_arg6); | |
5258 | ||
5259 | wxPyEndAllowThreads(__tstate); | |
5260 | if (PyErr_Occurred()) return NULL; | |
5261 | } if (_result) { | |
5262 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListView_p"); | |
5263 | _resultobj = Py_BuildValue("s",_ptemp); | |
5264 | } else { | |
5265 | Py_INCREF(Py_None); | |
5266 | _resultobj = Py_None; | |
5267 | } | |
5268 | { | |
5269 | if (_obj6) | |
5270 | delete _arg6; | |
5271 | } | |
5272 | return _resultobj; | |
5273 | } | |
5274 | ||
5275 | #define new_wxPreListView() (new wxListView()) | |
5276 | static PyObject *_wrap_new_wxPreListView(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5277 | PyObject * _resultobj; | |
5278 | wxListView * _result; | |
5279 | char *_kwnames[] = { NULL }; | |
5280 | char _ptemp[128]; | |
5281 | ||
5282 | self = self; | |
5283 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreListView",_kwnames)) | |
5284 | return NULL; | |
5285 | { | |
5286 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5287 | _result = (wxListView *)new_wxPreListView(); | |
5288 | ||
5289 | wxPyEndAllowThreads(__tstate); | |
5290 | if (PyErr_Occurred()) return NULL; | |
5291 | } if (_result) { | |
5292 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxListView_p"); | |
5293 | _resultobj = Py_BuildValue("s",_ptemp); | |
5294 | } else { | |
5295 | Py_INCREF(Py_None); | |
5296 | _resultobj = Py_None; | |
5297 | } | |
5298 | return _resultobj; | |
5299 | } | |
5300 | ||
5301 | #define wxListView_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
5302 | static PyObject *_wrap_wxListView_Create(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5303 | PyObject * _resultobj; | |
5304 | bool _result; | |
5305 | wxListView * _arg0; | |
5306 | wxWindow * _arg1; | |
5307 | wxWindowID _arg2 = (wxWindowID ) -1; | |
5308 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; | |
5309 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
5310 | long _arg5 = (long ) (wxLC_REPORT); | |
5311 | wxValidator * _arg6 = (wxValidator *) &wxDefaultValidator; | |
5312 | wxString * _arg7 = (wxString *) &"listctrl"; | |
5313 | PyObject * _argo0 = 0; | |
5314 | PyObject * _argo1 = 0; | |
5315 | wxPoint temp; | |
5316 | PyObject * _obj3 = 0; | |
5317 | wxSize temp0; | |
5318 | PyObject * _obj4 = 0; | |
5319 | PyObject * _argo6 = 0; | |
5320 | PyObject * _obj7 = 0; | |
5321 | char *_kwnames[] = { "self","parent","id","pos","size","style","validator","name", NULL }; | |
5322 | ||
5323 | self = self; | |
5324 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iOOlOO:wxListView_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_argo6,&_obj7)) | |
5325 | return NULL; | |
5326 | if (_argo0) { | |
5327 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5328 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5329 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_Create. Expected _wxListView_p."); | |
5330 | return NULL; | |
5331 | } | |
5332 | } | |
5333 | if (_argo1) { | |
5334 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5335 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
5336 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxListView_Create. Expected _wxWindow_p."); | |
5337 | return NULL; | |
5338 | } | |
5339 | } | |
5340 | if (_obj3) | |
5341 | { | |
5342 | _arg3 = &temp; | |
5343 | if (! wxPoint_helper(_obj3, &_arg3)) | |
5344 | return NULL; | |
5345 | } | |
5346 | if (_obj4) | |
5347 | { | |
5348 | _arg4 = &temp0; | |
5349 | if (! wxSize_helper(_obj4, &_arg4)) | |
5350 | return NULL; | |
5351 | } | |
5352 | if (_argo6) { | |
5353 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
5354 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxValidator_p")) { | |
5355 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxListView_Create. Expected _wxValidator_p."); | |
5356 | return NULL; | |
5357 | } | |
5358 | } | |
5359 | if (_obj7) | |
5360 | { | |
5361 | #if PYTHON_API_VERSION >= 1009 | |
5362 | char* tmpPtr; int tmpSize; | |
5363 | if (!PyString_Check(_obj7) && !PyUnicode_Check(_obj7)) { | |
5364 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5365 | return NULL; | |
5366 | } | |
5367 | if (PyString_AsStringAndSize(_obj7, &tmpPtr, &tmpSize) == -1) | |
5368 | return NULL; | |
5369 | _arg7 = new wxString(tmpPtr, tmpSize); | |
5370 | #else | |
5371 | if (!PyString_Check(_obj7)) { | |
5372 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
5373 | return NULL; | |
5374 | } | |
5375 | _arg7 = new wxString(PyString_AS_STRING(_obj7), PyString_GET_SIZE(_obj7)); | |
5376 | #endif | |
5377 | } | |
5378 | { | |
5379 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5380 | _result = (bool )wxListView_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,*_arg6,*_arg7); | |
5381 | ||
5382 | wxPyEndAllowThreads(__tstate); | |
5383 | if (PyErr_Occurred()) return NULL; | |
5384 | } _resultobj = Py_BuildValue("i",_result); | |
5385 | { | |
5386 | if (_obj7) | |
5387 | delete _arg7; | |
5388 | } | |
5389 | return _resultobj; | |
5390 | } | |
5391 | ||
5392 | #define wxListView_Select(_swigobj,_swigarg0,_swigarg1) (_swigobj->Select(_swigarg0,_swigarg1)) | |
5393 | static PyObject *_wrap_wxListView_Select(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5394 | PyObject * _resultobj; | |
5395 | wxListView * _arg0; | |
5396 | long _arg1; | |
5397 | bool _arg2 = (bool ) TRUE; | |
5398 | PyObject * _argo0 = 0; | |
5399 | int tempbool2 = (int) TRUE; | |
5400 | char *_kwnames[] = { "self","n","on", NULL }; | |
5401 | ||
5402 | self = self; | |
5403 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol|i:wxListView_Select",_kwnames,&_argo0,&_arg1,&tempbool2)) | |
5404 | return NULL; | |
5405 | if (_argo0) { | |
5406 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5407 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5408 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_Select. Expected _wxListView_p."); | |
5409 | return NULL; | |
5410 | } | |
5411 | } | |
5412 | _arg2 = (bool ) tempbool2; | |
5413 | { | |
5414 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5415 | wxListView_Select(_arg0,_arg1,_arg2); | |
5416 | ||
5417 | wxPyEndAllowThreads(__tstate); | |
5418 | if (PyErr_Occurred()) return NULL; | |
5419 | } Py_INCREF(Py_None); | |
5420 | _resultobj = Py_None; | |
5421 | return _resultobj; | |
5422 | } | |
5423 | ||
5424 | #define wxListView_Focus(_swigobj,_swigarg0) (_swigobj->Focus(_swigarg0)) | |
5425 | static PyObject *_wrap_wxListView_Focus(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5426 | PyObject * _resultobj; | |
5427 | wxListView * _arg0; | |
5428 | long _arg1; | |
5429 | PyObject * _argo0 = 0; | |
5430 | char *_kwnames[] = { "self","index", NULL }; | |
5431 | ||
5432 | self = self; | |
5433 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListView_Focus",_kwnames,&_argo0,&_arg1)) | |
5434 | return NULL; | |
5435 | if (_argo0) { | |
5436 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5437 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5438 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_Focus. Expected _wxListView_p."); | |
5439 | return NULL; | |
5440 | } | |
5441 | } | |
5442 | { | |
5443 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5444 | wxListView_Focus(_arg0,_arg1); | |
5445 | ||
5446 | wxPyEndAllowThreads(__tstate); | |
5447 | if (PyErr_Occurred()) return NULL; | |
5448 | } Py_INCREF(Py_None); | |
5449 | _resultobj = Py_None; | |
5450 | return _resultobj; | |
5451 | } | |
5452 | ||
5453 | #define wxListView_GetFocusedItem(_swigobj) (_swigobj->GetFocusedItem()) | |
5454 | static PyObject *_wrap_wxListView_GetFocusedItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5455 | PyObject * _resultobj; | |
5456 | long _result; | |
5457 | wxListView * _arg0; | |
5458 | PyObject * _argo0 = 0; | |
5459 | char *_kwnames[] = { "self", NULL }; | |
5460 | ||
5461 | self = self; | |
5462 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListView_GetFocusedItem",_kwnames,&_argo0)) | |
5463 | return NULL; | |
5464 | if (_argo0) { | |
5465 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5466 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5467 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_GetFocusedItem. Expected _wxListView_p."); | |
5468 | return NULL; | |
5469 | } | |
5470 | } | |
5471 | { | |
5472 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5473 | _result = (long )wxListView_GetFocusedItem(_arg0); | |
5474 | ||
5475 | wxPyEndAllowThreads(__tstate); | |
5476 | if (PyErr_Occurred()) return NULL; | |
5477 | } _resultobj = Py_BuildValue("l",_result); | |
5478 | return _resultobj; | |
5479 | } | |
5480 | ||
5481 | #define wxListView_GetNextSelected(_swigobj,_swigarg0) (_swigobj->GetNextSelected(_swigarg0)) | |
5482 | static PyObject *_wrap_wxListView_GetNextSelected(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5483 | PyObject * _resultobj; | |
5484 | long _result; | |
5485 | wxListView * _arg0; | |
5486 | long _arg1; | |
5487 | PyObject * _argo0 = 0; | |
5488 | char *_kwnames[] = { "self","item", NULL }; | |
5489 | ||
5490 | self = self; | |
5491 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListView_GetNextSelected",_kwnames,&_argo0,&_arg1)) | |
5492 | return NULL; | |
5493 | if (_argo0) { | |
5494 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5495 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5496 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_GetNextSelected. Expected _wxListView_p."); | |
5497 | return NULL; | |
5498 | } | |
5499 | } | |
5500 | { | |
5501 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5502 | _result = (long )wxListView_GetNextSelected(_arg0,_arg1); | |
5503 | ||
5504 | wxPyEndAllowThreads(__tstate); | |
5505 | if (PyErr_Occurred()) return NULL; | |
5506 | } _resultobj = Py_BuildValue("l",_result); | |
5507 | return _resultobj; | |
5508 | } | |
5509 | ||
5510 | #define wxListView_GetFirstSelected(_swigobj) (_swigobj->GetFirstSelected()) | |
5511 | static PyObject *_wrap_wxListView_GetFirstSelected(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5512 | PyObject * _resultobj; | |
5513 | long _result; | |
5514 | wxListView * _arg0; | |
5515 | PyObject * _argo0 = 0; | |
5516 | char *_kwnames[] = { "self", NULL }; | |
5517 | ||
5518 | self = self; | |
5519 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxListView_GetFirstSelected",_kwnames,&_argo0)) | |
5520 | return NULL; | |
5521 | if (_argo0) { | |
5522 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5523 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5524 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_GetFirstSelected. Expected _wxListView_p."); | |
5525 | return NULL; | |
5526 | } | |
5527 | } | |
5528 | { | |
5529 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5530 | _result = (long )wxListView_GetFirstSelected(_arg0); | |
5531 | ||
5532 | wxPyEndAllowThreads(__tstate); | |
5533 | if (PyErr_Occurred()) return NULL; | |
5534 | } _resultobj = Py_BuildValue("l",_result); | |
5535 | return _resultobj; | |
5536 | } | |
5537 | ||
5538 | #define wxListView_IsSelected(_swigobj,_swigarg0) (_swigobj->IsSelected(_swigarg0)) | |
5539 | static PyObject *_wrap_wxListView_IsSelected(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5540 | PyObject * _resultobj; | |
5541 | bool _result; | |
5542 | wxListView * _arg0; | |
5543 | long _arg1; | |
5544 | PyObject * _argo0 = 0; | |
5545 | char *_kwnames[] = { "self","index", NULL }; | |
5546 | ||
5547 | self = self; | |
5548 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Ol:wxListView_IsSelected",_kwnames,&_argo0,&_arg1)) | |
5549 | return NULL; | |
5550 | if (_argo0) { | |
5551 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5552 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5553 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_IsSelected. Expected _wxListView_p."); | |
5554 | return NULL; | |
5555 | } | |
5556 | } | |
5557 | { | |
5558 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5559 | _result = (bool )wxListView_IsSelected(_arg0,_arg1); | |
5560 | ||
5561 | wxPyEndAllowThreads(__tstate); | |
5562 | if (PyErr_Occurred()) return NULL; | |
5563 | } _resultobj = Py_BuildValue("i",_result); | |
5564 | return _resultobj; | |
5565 | } | |
5566 | ||
5567 | #define wxListView_SetColumnImage(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetColumnImage(_swigarg0,_swigarg1)) | |
5568 | static PyObject *_wrap_wxListView_SetColumnImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5569 | PyObject * _resultobj; | |
5570 | wxListView * _arg0; | |
5571 | int _arg1; | |
5572 | int _arg2; | |
5573 | PyObject * _argo0 = 0; | |
5574 | char *_kwnames[] = { "self","col","image", NULL }; | |
5575 | ||
5576 | self = self; | |
5577 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxListView_SetColumnImage",_kwnames,&_argo0,&_arg1,&_arg2)) | |
5578 | return NULL; | |
5579 | if (_argo0) { | |
5580 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5581 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5582 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_SetColumnImage. Expected _wxListView_p."); | |
5583 | return NULL; | |
5584 | } | |
5585 | } | |
5586 | { | |
5587 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5588 | wxListView_SetColumnImage(_arg0,_arg1,_arg2); | |
5589 | ||
5590 | wxPyEndAllowThreads(__tstate); | |
5591 | if (PyErr_Occurred()) return NULL; | |
5592 | } Py_INCREF(Py_None); | |
5593 | _resultobj = Py_None; | |
5594 | return _resultobj; | |
5595 | } | |
5596 | ||
5597 | #define wxListView_ClearColumnImage(_swigobj,_swigarg0) (_swigobj->ClearColumnImage(_swigarg0)) | |
5598 | static PyObject *_wrap_wxListView_ClearColumnImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5599 | PyObject * _resultobj; | |
5600 | wxListView * _arg0; | |
5601 | int _arg1; | |
5602 | PyObject * _argo0 = 0; | |
5603 | char *_kwnames[] = { "self","col", NULL }; | |
5604 | ||
5605 | self = self; | |
5606 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxListView_ClearColumnImage",_kwnames,&_argo0,&_arg1)) | |
5607 | return NULL; | |
5608 | if (_argo0) { | |
5609 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5610 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxListView_p")) { | |
5611 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxListView_ClearColumnImage. Expected _wxListView_p."); | |
5612 | return NULL; | |
5613 | } | |
5614 | } | |
5615 | { | |
5616 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5617 | wxListView_ClearColumnImage(_arg0,_arg1); | |
5618 | ||
5619 | wxPyEndAllowThreads(__tstate); | |
5620 | if (PyErr_Occurred()) return NULL; | |
5621 | } Py_INCREF(Py_None); | |
5622 | _resultobj = Py_None; | |
5623 | return _resultobj; | |
5624 | } | |
5625 | ||
5626 | #define new_wxTreeItemAttr(_swigarg0,_swigarg1,_swigarg2) (new wxTreeItemAttr(_swigarg0,_swigarg1,_swigarg2)) | |
5627 | static PyObject *_wrap_new_wxTreeItemAttr(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5628 | PyObject * _resultobj; | |
5629 | wxTreeItemAttr * _result; | |
5630 | wxColour * _arg0 = (wxColour *) &wxNullColour; | |
5631 | wxColour * _arg1 = (wxColour *) &wxNullColour; | |
5632 | wxFont * _arg2 = (wxFont *) &wxNullFont; | |
5633 | wxColour temp; | |
5634 | PyObject * _obj0 = 0; | |
5635 | wxColour temp0; | |
5636 | PyObject * _obj1 = 0; | |
5637 | PyObject * _argo2 = 0; | |
5638 | char *_kwnames[] = { "colText","colBack","font", NULL }; | |
5639 | char _ptemp[128]; | |
5640 | ||
5641 | self = self; | |
5642 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|OOO:new_wxTreeItemAttr",_kwnames,&_obj0,&_obj1,&_argo2)) | |
5643 | return NULL; | |
5644 | if (_obj0) | |
5645 | { | |
5646 | _arg0 = &temp; | |
5647 | if (! wxColour_helper(_obj0, &_arg0)) | |
5648 | return NULL; | |
5649 | } | |
5650 | if (_obj1) | |
5651 | { | |
5652 | _arg1 = &temp0; | |
5653 | if (! wxColour_helper(_obj1, &_arg1)) | |
5654 | return NULL; | |
5655 | } | |
5656 | if (_argo2) { | |
5657 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
5658 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxFont_p")) { | |
5659 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of new_wxTreeItemAttr. Expected _wxFont_p."); | |
5660 | return NULL; | |
5661 | } | |
5662 | } | |
5663 | { | |
5664 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5665 | _result = (wxTreeItemAttr *)new_wxTreeItemAttr(*_arg0,*_arg1,*_arg2); | |
5666 | ||
5667 | wxPyEndAllowThreads(__tstate); | |
5668 | if (PyErr_Occurred()) return NULL; | |
5669 | } if (_result) { | |
5670 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeItemAttr_p"); | |
5671 | _resultobj = Py_BuildValue("s",_ptemp); | |
5672 | } else { | |
5673 | Py_INCREF(Py_None); | |
5674 | _resultobj = Py_None; | |
5675 | } | |
5676 | return _resultobj; | |
5677 | } | |
5678 | ||
5679 | #define wxTreeItemAttr_SetTextColour(_swigobj,_swigarg0) (_swigobj->SetTextColour(_swigarg0)) | |
5680 | static PyObject *_wrap_wxTreeItemAttr_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5681 | PyObject * _resultobj; | |
5682 | wxTreeItemAttr * _arg0; | |
5683 | wxColour * _arg1; | |
5684 | PyObject * _argo0 = 0; | |
5685 | wxColour temp; | |
5686 | PyObject * _obj1 = 0; | |
5687 | char *_kwnames[] = { "self","colText", NULL }; | |
5688 | ||
5689 | self = self; | |
5690 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemAttr_SetTextColour",_kwnames,&_argo0,&_obj1)) | |
5691 | return NULL; | |
5692 | if (_argo0) { | |
5693 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5694 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5695 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_SetTextColour. Expected _wxTreeItemAttr_p."); | |
5696 | return NULL; | |
5697 | } | |
5698 | } | |
5699 | { | |
5700 | _arg1 = &temp; | |
5701 | if (! wxColour_helper(_obj1, &_arg1)) | |
5702 | return NULL; | |
5703 | } | |
5704 | { | |
5705 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5706 | wxTreeItemAttr_SetTextColour(_arg0,*_arg1); | |
5707 | ||
5708 | wxPyEndAllowThreads(__tstate); | |
5709 | if (PyErr_Occurred()) return NULL; | |
5710 | } Py_INCREF(Py_None); | |
5711 | _resultobj = Py_None; | |
5712 | return _resultobj; | |
5713 | } | |
5714 | ||
5715 | #define wxTreeItemAttr_SetBackgroundColour(_swigobj,_swigarg0) (_swigobj->SetBackgroundColour(_swigarg0)) | |
5716 | static PyObject *_wrap_wxTreeItemAttr_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5717 | PyObject * _resultobj; | |
5718 | wxTreeItemAttr * _arg0; | |
5719 | wxColour * _arg1; | |
5720 | PyObject * _argo0 = 0; | |
5721 | wxColour temp; | |
5722 | PyObject * _obj1 = 0; | |
5723 | char *_kwnames[] = { "self","colBack", NULL }; | |
5724 | ||
5725 | self = self; | |
5726 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemAttr_SetBackgroundColour",_kwnames,&_argo0,&_obj1)) | |
5727 | return NULL; | |
5728 | if (_argo0) { | |
5729 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5730 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5731 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_SetBackgroundColour. Expected _wxTreeItemAttr_p."); | |
5732 | return NULL; | |
5733 | } | |
5734 | } | |
5735 | { | |
5736 | _arg1 = &temp; | |
5737 | if (! wxColour_helper(_obj1, &_arg1)) | |
5738 | return NULL; | |
5739 | } | |
5740 | { | |
5741 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5742 | wxTreeItemAttr_SetBackgroundColour(_arg0,*_arg1); | |
5743 | ||
5744 | wxPyEndAllowThreads(__tstate); | |
5745 | if (PyErr_Occurred()) return NULL; | |
5746 | } Py_INCREF(Py_None); | |
5747 | _resultobj = Py_None; | |
5748 | return _resultobj; | |
5749 | } | |
5750 | ||
5751 | #define wxTreeItemAttr_SetFont(_swigobj,_swigarg0) (_swigobj->SetFont(_swigarg0)) | |
5752 | static PyObject *_wrap_wxTreeItemAttr_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5753 | PyObject * _resultobj; | |
5754 | wxTreeItemAttr * _arg0; | |
5755 | wxFont * _arg1; | |
5756 | PyObject * _argo0 = 0; | |
5757 | PyObject * _argo1 = 0; | |
5758 | char *_kwnames[] = { "self","font", NULL }; | |
5759 | ||
5760 | self = self; | |
5761 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemAttr_SetFont",_kwnames,&_argo0,&_argo1)) | |
5762 | return NULL; | |
5763 | if (_argo0) { | |
5764 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5765 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5766 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_SetFont. Expected _wxTreeItemAttr_p."); | |
5767 | return NULL; | |
5768 | } | |
5769 | } | |
5770 | if (_argo1) { | |
5771 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
5772 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFont_p")) { | |
5773 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeItemAttr_SetFont. Expected _wxFont_p."); | |
5774 | return NULL; | |
5775 | } | |
5776 | } | |
5777 | { | |
5778 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5779 | wxTreeItemAttr_SetFont(_arg0,*_arg1); | |
5780 | ||
5781 | wxPyEndAllowThreads(__tstate); | |
5782 | if (PyErr_Occurred()) return NULL; | |
5783 | } Py_INCREF(Py_None); | |
5784 | _resultobj = Py_None; | |
5785 | return _resultobj; | |
5786 | } | |
5787 | ||
5788 | #define wxTreeItemAttr_HasTextColour(_swigobj) (_swigobj->HasTextColour()) | |
5789 | static PyObject *_wrap_wxTreeItemAttr_HasTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5790 | PyObject * _resultobj; | |
5791 | bool _result; | |
5792 | wxTreeItemAttr * _arg0; | |
5793 | PyObject * _argo0 = 0; | |
5794 | char *_kwnames[] = { "self", NULL }; | |
5795 | ||
5796 | self = self; | |
5797 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemAttr_HasTextColour",_kwnames,&_argo0)) | |
5798 | return NULL; | |
5799 | if (_argo0) { | |
5800 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5801 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5802 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_HasTextColour. Expected _wxTreeItemAttr_p."); | |
5803 | return NULL; | |
5804 | } | |
5805 | } | |
5806 | { | |
5807 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5808 | _result = (bool )wxTreeItemAttr_HasTextColour(_arg0); | |
5809 | ||
5810 | wxPyEndAllowThreads(__tstate); | |
5811 | if (PyErr_Occurred()) return NULL; | |
5812 | } _resultobj = Py_BuildValue("i",_result); | |
5813 | return _resultobj; | |
5814 | } | |
5815 | ||
5816 | #define wxTreeItemAttr_HasBackgroundColour(_swigobj) (_swigobj->HasBackgroundColour()) | |
5817 | static PyObject *_wrap_wxTreeItemAttr_HasBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5818 | PyObject * _resultobj; | |
5819 | bool _result; | |
5820 | wxTreeItemAttr * _arg0; | |
5821 | PyObject * _argo0 = 0; | |
5822 | char *_kwnames[] = { "self", NULL }; | |
5823 | ||
5824 | self = self; | |
5825 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemAttr_HasBackgroundColour",_kwnames,&_argo0)) | |
5826 | return NULL; | |
5827 | if (_argo0) { | |
5828 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5829 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5830 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_HasBackgroundColour. Expected _wxTreeItemAttr_p."); | |
5831 | return NULL; | |
5832 | } | |
5833 | } | |
5834 | { | |
5835 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5836 | _result = (bool )wxTreeItemAttr_HasBackgroundColour(_arg0); | |
5837 | ||
5838 | wxPyEndAllowThreads(__tstate); | |
5839 | if (PyErr_Occurred()) return NULL; | |
5840 | } _resultobj = Py_BuildValue("i",_result); | |
5841 | return _resultobj; | |
5842 | } | |
5843 | ||
5844 | #define wxTreeItemAttr_HasFont(_swigobj) (_swigobj->HasFont()) | |
5845 | static PyObject *_wrap_wxTreeItemAttr_HasFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5846 | PyObject * _resultobj; | |
5847 | bool _result; | |
5848 | wxTreeItemAttr * _arg0; | |
5849 | PyObject * _argo0 = 0; | |
5850 | char *_kwnames[] = { "self", NULL }; | |
5851 | ||
5852 | self = self; | |
5853 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemAttr_HasFont",_kwnames,&_argo0)) | |
5854 | return NULL; | |
5855 | if (_argo0) { | |
5856 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5857 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5858 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_HasFont. Expected _wxTreeItemAttr_p."); | |
5859 | return NULL; | |
5860 | } | |
5861 | } | |
5862 | { | |
5863 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5864 | _result = (bool )wxTreeItemAttr_HasFont(_arg0); | |
5865 | ||
5866 | wxPyEndAllowThreads(__tstate); | |
5867 | if (PyErr_Occurred()) return NULL; | |
5868 | } _resultobj = Py_BuildValue("i",_result); | |
5869 | return _resultobj; | |
5870 | } | |
5871 | ||
5872 | #define wxTreeItemAttr_GetTextColour(_swigobj) (_swigobj->GetTextColour()) | |
5873 | static PyObject *_wrap_wxTreeItemAttr_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5874 | PyObject * _resultobj; | |
5875 | wxColour * _result; | |
5876 | wxTreeItemAttr * _arg0; | |
5877 | PyObject * _argo0 = 0; | |
5878 | char *_kwnames[] = { "self", NULL }; | |
5879 | char _ptemp[128]; | |
5880 | ||
5881 | self = self; | |
5882 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemAttr_GetTextColour",_kwnames,&_argo0)) | |
5883 | return NULL; | |
5884 | if (_argo0) { | |
5885 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5886 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5887 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_GetTextColour. Expected _wxTreeItemAttr_p."); | |
5888 | return NULL; | |
5889 | } | |
5890 | } | |
5891 | { | |
5892 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5893 | _result = new wxColour (wxTreeItemAttr_GetTextColour(_arg0)); | |
5894 | ||
5895 | wxPyEndAllowThreads(__tstate); | |
5896 | if (PyErr_Occurred()) return NULL; | |
5897 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
5898 | _resultobj = Py_BuildValue("s",_ptemp); | |
5899 | return _resultobj; | |
5900 | } | |
5901 | ||
5902 | #define wxTreeItemAttr_GetBackgroundColour(_swigobj) (_swigobj->GetBackgroundColour()) | |
5903 | static PyObject *_wrap_wxTreeItemAttr_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5904 | PyObject * _resultobj; | |
5905 | wxColour * _result; | |
5906 | wxTreeItemAttr * _arg0; | |
5907 | PyObject * _argo0 = 0; | |
5908 | char *_kwnames[] = { "self", NULL }; | |
5909 | char _ptemp[128]; | |
5910 | ||
5911 | self = self; | |
5912 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemAttr_GetBackgroundColour",_kwnames,&_argo0)) | |
5913 | return NULL; | |
5914 | if (_argo0) { | |
5915 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5916 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5917 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_GetBackgroundColour. Expected _wxTreeItemAttr_p."); | |
5918 | return NULL; | |
5919 | } | |
5920 | } | |
5921 | { | |
5922 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5923 | _result = new wxColour (wxTreeItemAttr_GetBackgroundColour(_arg0)); | |
5924 | ||
5925 | wxPyEndAllowThreads(__tstate); | |
5926 | if (PyErr_Occurred()) return NULL; | |
5927 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p"); | |
5928 | _resultobj = Py_BuildValue("s",_ptemp); | |
5929 | return _resultobj; | |
5930 | } | |
5931 | ||
5932 | #define wxTreeItemAttr_GetFont(_swigobj) (_swigobj->GetFont()) | |
5933 | static PyObject *_wrap_wxTreeItemAttr_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5934 | PyObject * _resultobj; | |
5935 | wxFont * _result; | |
5936 | wxTreeItemAttr * _arg0; | |
5937 | PyObject * _argo0 = 0; | |
5938 | char *_kwnames[] = { "self", NULL }; | |
5939 | char _ptemp[128]; | |
5940 | ||
5941 | self = self; | |
5942 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemAttr_GetFont",_kwnames,&_argo0)) | |
5943 | return NULL; | |
5944 | if (_argo0) { | |
5945 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
5946 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemAttr_p")) { | |
5947 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemAttr_GetFont. Expected _wxTreeItemAttr_p."); | |
5948 | return NULL; | |
5949 | } | |
5950 | } | |
5951 | { | |
5952 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5953 | _result = new wxFont (wxTreeItemAttr_GetFont(_arg0)); | |
5954 | ||
5955 | wxPyEndAllowThreads(__tstate); | |
5956 | if (PyErr_Occurred()) return NULL; | |
5957 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p"); | |
5958 | _resultobj = Py_BuildValue("s",_ptemp); | |
5959 | return _resultobj; | |
5960 | } | |
5961 | ||
5962 | #define new_wxTreeItemId() (new wxTreeItemId()) | |
5963 | static PyObject *_wrap_new_wxTreeItemId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5964 | PyObject * _resultobj; | |
5965 | wxTreeItemId * _result; | |
5966 | char *_kwnames[] = { NULL }; | |
5967 | char _ptemp[128]; | |
5968 | ||
5969 | self = self; | |
5970 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxTreeItemId",_kwnames)) | |
5971 | return NULL; | |
5972 | { | |
5973 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
5974 | _result = (wxTreeItemId *)new_wxTreeItemId(); | |
5975 | ||
5976 | wxPyEndAllowThreads(__tstate); | |
5977 | if (PyErr_Occurred()) return NULL; | |
5978 | } if (_result) { | |
5979 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeItemId_p"); | |
5980 | _resultobj = Py_BuildValue("s",_ptemp); | |
5981 | } else { | |
5982 | Py_INCREF(Py_None); | |
5983 | _resultobj = Py_None; | |
5984 | } | |
5985 | return _resultobj; | |
5986 | } | |
5987 | ||
5988 | #define delete_wxTreeItemId(_swigobj) (delete _swigobj) | |
5989 | static PyObject *_wrap_delete_wxTreeItemId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
5990 | PyObject * _resultobj; | |
5991 | wxTreeItemId * _arg0; | |
5992 | PyObject * _argo0 = 0; | |
5993 | char *_kwnames[] = { "self", NULL }; | |
5994 | ||
5995 | self = self; | |
5996 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxTreeItemId",_kwnames,&_argo0)) | |
5997 | return NULL; | |
5998 | if (_argo0) { | |
5999 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6000 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemId_p")) { | |
6001 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxTreeItemId. Expected _wxTreeItemId_p."); | |
6002 | return NULL; | |
6003 | } | |
6004 | } | |
6005 | { | |
6006 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6007 | delete_wxTreeItemId(_arg0); | |
6008 | ||
6009 | wxPyEndAllowThreads(__tstate); | |
6010 | if (PyErr_Occurred()) return NULL; | |
6011 | } Py_INCREF(Py_None); | |
6012 | _resultobj = Py_None; | |
6013 | return _resultobj; | |
6014 | } | |
6015 | ||
6016 | #define wxTreeItemId_IsOk(_swigobj) (_swigobj->IsOk()) | |
6017 | static PyObject *_wrap_wxTreeItemId_IsOk(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6018 | PyObject * _resultobj; | |
6019 | bool _result; | |
6020 | wxTreeItemId * _arg0; | |
6021 | PyObject * _argo0 = 0; | |
6022 | char *_kwnames[] = { "self", NULL }; | |
6023 | ||
6024 | self = self; | |
6025 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemId_IsOk",_kwnames,&_argo0)) | |
6026 | return NULL; | |
6027 | if (_argo0) { | |
6028 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6029 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemId_p")) { | |
6030 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemId_IsOk. Expected _wxTreeItemId_p."); | |
6031 | return NULL; | |
6032 | } | |
6033 | } | |
6034 | { | |
6035 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6036 | _result = (bool )wxTreeItemId_IsOk(_arg0); | |
6037 | ||
6038 | wxPyEndAllowThreads(__tstate); | |
6039 | if (PyErr_Occurred()) return NULL; | |
6040 | } _resultobj = Py_BuildValue("i",_result); | |
6041 | return _resultobj; | |
6042 | } | |
6043 | ||
6044 | static int wxTreeItemId___cmp__(wxTreeItemId *self,wxTreeItemId * other) { | |
6045 | if (! other) return -1; | |
6046 | return *self != *other; | |
6047 | } | |
6048 | static PyObject *_wrap_wxTreeItemId___cmp__(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6049 | PyObject * _resultobj; | |
6050 | int _result; | |
6051 | wxTreeItemId * _arg0; | |
6052 | wxTreeItemId * _arg1; | |
6053 | PyObject * _argo0 = 0; | |
6054 | PyObject * _argo1 = 0; | |
6055 | char *_kwnames[] = { "self","other", NULL }; | |
6056 | ||
6057 | self = self; | |
6058 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemId___cmp__",_kwnames,&_argo0,&_argo1)) | |
6059 | return NULL; | |
6060 | if (_argo0) { | |
6061 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6062 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeItemId_p")) { | |
6063 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemId___cmp__. Expected _wxTreeItemId_p."); | |
6064 | return NULL; | |
6065 | } | |
6066 | } | |
6067 | if (_argo1) { | |
6068 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6069 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
6070 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeItemId___cmp__. Expected _wxTreeItemId_p."); | |
6071 | return NULL; | |
6072 | } | |
6073 | } | |
6074 | { | |
6075 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6076 | _result = (int )wxTreeItemId___cmp__(_arg0,_arg1); | |
6077 | ||
6078 | wxPyEndAllowThreads(__tstate); | |
6079 | if (PyErr_Occurred()) return NULL; | |
6080 | } _resultobj = Py_BuildValue("i",_result); | |
6081 | return _resultobj; | |
6082 | } | |
6083 | ||
6084 | static void *SwigwxPyTreeItemDataTowxObject(void *ptr) { | |
6085 | wxPyTreeItemData *src; | |
6086 | wxObject *dest; | |
6087 | src = (wxPyTreeItemData *) ptr; | |
6088 | dest = (wxObject *) src; | |
6089 | return (void *) dest; | |
6090 | } | |
6091 | ||
6092 | #define new_wxTreeItemData(_swigarg0) (new wxPyTreeItemData(_swigarg0)) | |
6093 | static PyObject *_wrap_new_wxTreeItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6094 | PyObject * _resultobj; | |
6095 | wxPyTreeItemData * _result; | |
6096 | PyObject * _arg0 = (PyObject *) NULL; | |
6097 | PyObject * _obj0 = 0; | |
6098 | char *_kwnames[] = { "obj", NULL }; | |
6099 | char _ptemp[128]; | |
6100 | ||
6101 | self = self; | |
6102 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|O:new_wxTreeItemData",_kwnames,&_obj0)) | |
6103 | return NULL; | |
6104 | if (_obj0) | |
6105 | { | |
6106 | _arg0 = _obj0; | |
6107 | } | |
6108 | { | |
6109 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6110 | _result = (wxPyTreeItemData *)new_wxTreeItemData(_arg0); | |
6111 | ||
6112 | wxPyEndAllowThreads(__tstate); | |
6113 | if (PyErr_Occurred()) return NULL; | |
6114 | } if (_result) { | |
6115 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeItemData_p"); | |
6116 | _resultobj = Py_BuildValue("s",_ptemp); | |
6117 | } else { | |
6118 | Py_INCREF(Py_None); | |
6119 | _resultobj = Py_None; | |
6120 | } | |
6121 | return _resultobj; | |
6122 | } | |
6123 | ||
6124 | #define wxTreeItemData_GetData(_swigobj) (_swigobj->GetData()) | |
6125 | static PyObject *_wrap_wxTreeItemData_GetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6126 | PyObject * _resultobj; | |
6127 | PyObject * _result; | |
6128 | wxPyTreeItemData * _arg0; | |
6129 | PyObject * _argo0 = 0; | |
6130 | char *_kwnames[] = { "self", NULL }; | |
6131 | ||
6132 | self = self; | |
6133 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemData_GetData",_kwnames,&_argo0)) | |
6134 | return NULL; | |
6135 | if (_argo0) { | |
6136 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6137 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
6138 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_GetData. Expected _wxPyTreeItemData_p."); | |
6139 | return NULL; | |
6140 | } | |
6141 | } | |
6142 | { | |
6143 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6144 | _result = (PyObject *)wxTreeItemData_GetData(_arg0); | |
6145 | ||
6146 | wxPyEndAllowThreads(__tstate); | |
6147 | if (PyErr_Occurred()) return NULL; | |
6148 | }{ | |
6149 | _resultobj = _result; | |
6150 | } | |
6151 | return _resultobj; | |
6152 | } | |
6153 | ||
6154 | #define wxTreeItemData_SetData(_swigobj,_swigarg0) (_swigobj->SetData(_swigarg0)) | |
6155 | static PyObject *_wrap_wxTreeItemData_SetData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6156 | PyObject * _resultobj; | |
6157 | wxPyTreeItemData * _arg0; | |
6158 | PyObject * _arg1; | |
6159 | PyObject * _argo0 = 0; | |
6160 | PyObject * _obj1 = 0; | |
6161 | char *_kwnames[] = { "self","obj", NULL }; | |
6162 | ||
6163 | self = self; | |
6164 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemData_SetData",_kwnames,&_argo0,&_obj1)) | |
6165 | return NULL; | |
6166 | if (_argo0) { | |
6167 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6168 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
6169 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_SetData. Expected _wxPyTreeItemData_p."); | |
6170 | return NULL; | |
6171 | } | |
6172 | } | |
6173 | { | |
6174 | _arg1 = _obj1; | |
6175 | } | |
6176 | { | |
6177 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6178 | wxTreeItemData_SetData(_arg0,_arg1); | |
6179 | ||
6180 | wxPyEndAllowThreads(__tstate); | |
6181 | if (PyErr_Occurred()) return NULL; | |
6182 | } Py_INCREF(Py_None); | |
6183 | _resultobj = Py_None; | |
6184 | return _resultobj; | |
6185 | } | |
6186 | ||
6187 | #define wxTreeItemData_GetId(_swigobj) (_swigobj->GetId()) | |
6188 | static PyObject *_wrap_wxTreeItemData_GetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6189 | PyObject * _resultobj; | |
6190 | wxTreeItemId * _result; | |
6191 | wxPyTreeItemData * _arg0; | |
6192 | PyObject * _argo0 = 0; | |
6193 | char *_kwnames[] = { "self", NULL }; | |
6194 | char _ptemp[128]; | |
6195 | ||
6196 | self = self; | |
6197 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeItemData_GetId",_kwnames,&_argo0)) | |
6198 | return NULL; | |
6199 | if (_argo0) { | |
6200 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6201 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
6202 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_GetId. Expected _wxPyTreeItemData_p."); | |
6203 | return NULL; | |
6204 | } | |
6205 | } | |
6206 | { | |
6207 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6208 | const wxTreeItemId & _result_ref = wxTreeItemData_GetId(_arg0); | |
6209 | _result = (wxTreeItemId *) &_result_ref; | |
6210 | ||
6211 | wxPyEndAllowThreads(__tstate); | |
6212 | if (PyErr_Occurred()) return NULL; | |
6213 | } if (_result) { | |
6214 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeItemId_p"); | |
6215 | _resultobj = Py_BuildValue("s",_ptemp); | |
6216 | } else { | |
6217 | Py_INCREF(Py_None); | |
6218 | _resultobj = Py_None; | |
6219 | } | |
6220 | return _resultobj; | |
6221 | } | |
6222 | ||
6223 | #define wxTreeItemData_SetId(_swigobj,_swigarg0) (_swigobj->SetId(_swigarg0)) | |
6224 | static PyObject *_wrap_wxTreeItemData_SetId(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6225 | PyObject * _resultobj; | |
6226 | wxPyTreeItemData * _arg0; | |
6227 | wxTreeItemId * _arg1; | |
6228 | PyObject * _argo0 = 0; | |
6229 | PyObject * _argo1 = 0; | |
6230 | char *_kwnames[] = { "self","id", NULL }; | |
6231 | ||
6232 | self = self; | |
6233 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeItemData_SetId",_kwnames,&_argo0,&_argo1)) | |
6234 | return NULL; | |
6235 | if (_argo0) { | |
6236 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6237 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeItemData_p")) { | |
6238 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeItemData_SetId. Expected _wxPyTreeItemData_p."); | |
6239 | return NULL; | |
6240 | } | |
6241 | } | |
6242 | if (_argo1) { | |
6243 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6244 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
6245 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeItemData_SetId. Expected _wxTreeItemId_p."); | |
6246 | return NULL; | |
6247 | } | |
6248 | } | |
6249 | { | |
6250 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6251 | wxTreeItemData_SetId(_arg0,*_arg1); | |
6252 | ||
6253 | wxPyEndAllowThreads(__tstate); | |
6254 | if (PyErr_Occurred()) return NULL; | |
6255 | } Py_INCREF(Py_None); | |
6256 | _resultobj = Py_None; | |
6257 | return _resultobj; | |
6258 | } | |
6259 | ||
6260 | static void *SwigwxTreeEventTowxNotifyEvent(void *ptr) { | |
6261 | wxTreeEvent *src; | |
6262 | wxNotifyEvent *dest; | |
6263 | src = (wxTreeEvent *) ptr; | |
6264 | dest = (wxNotifyEvent *) src; | |
6265 | return (void *) dest; | |
6266 | } | |
6267 | ||
6268 | static void *SwigwxTreeEventTowxCommandEvent(void *ptr) { | |
6269 | wxTreeEvent *src; | |
6270 | wxCommandEvent *dest; | |
6271 | src = (wxTreeEvent *) ptr; | |
6272 | dest = (wxCommandEvent *) src; | |
6273 | return (void *) dest; | |
6274 | } | |
6275 | ||
6276 | static void *SwigwxTreeEventTowxEvent(void *ptr) { | |
6277 | wxTreeEvent *src; | |
6278 | wxEvent *dest; | |
6279 | src = (wxTreeEvent *) ptr; | |
6280 | dest = (wxEvent *) src; | |
6281 | return (void *) dest; | |
6282 | } | |
6283 | ||
6284 | static void *SwigwxTreeEventTowxObject(void *ptr) { | |
6285 | wxTreeEvent *src; | |
6286 | wxObject *dest; | |
6287 | src = (wxTreeEvent *) ptr; | |
6288 | dest = (wxObject *) src; | |
6289 | return (void *) dest; | |
6290 | } | |
6291 | ||
6292 | #define new_wxTreeEvent(_swigarg0,_swigarg1) (new wxTreeEvent(_swigarg0,_swigarg1)) | |
6293 | static PyObject *_wrap_new_wxTreeEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6294 | PyObject * _resultobj; | |
6295 | wxTreeEvent * _result; | |
6296 | wxEventType _arg0 = (wxEventType ) wxEVT_NULL; | |
6297 | int _arg1 = (int ) 0; | |
6298 | char *_kwnames[] = { "commandType","id", NULL }; | |
6299 | char _ptemp[128]; | |
6300 | ||
6301 | self = self; | |
6302 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ii:new_wxTreeEvent",_kwnames,&_arg0,&_arg1)) | |
6303 | return NULL; | |
6304 | { | |
6305 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6306 | _result = (wxTreeEvent *)new_wxTreeEvent(_arg0,_arg1); | |
6307 | ||
6308 | wxPyEndAllowThreads(__tstate); | |
6309 | if (PyErr_Occurred()) return NULL; | |
6310 | } if (_result) { | |
6311 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxTreeEvent_p"); | |
6312 | _resultobj = Py_BuildValue("s",_ptemp); | |
6313 | } else { | |
6314 | Py_INCREF(Py_None); | |
6315 | _resultobj = Py_None; | |
6316 | } | |
6317 | return _resultobj; | |
6318 | } | |
6319 | ||
6320 | #define wxTreeEvent_GetItem(_swigobj) (_swigobj->GetItem()) | |
6321 | static PyObject *_wrap_wxTreeEvent_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6322 | PyObject * _resultobj; | |
6323 | wxTreeItemId * _result; | |
6324 | wxTreeEvent * _arg0; | |
6325 | PyObject * _argo0 = 0; | |
6326 | char *_kwnames[] = { "self", NULL }; | |
6327 | char _ptemp[128]; | |
6328 | ||
6329 | self = self; | |
6330 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetItem",_kwnames,&_argo0)) | |
6331 | return NULL; | |
6332 | if (_argo0) { | |
6333 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6334 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
6335 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetItem. Expected _wxTreeEvent_p."); | |
6336 | return NULL; | |
6337 | } | |
6338 | } | |
6339 | { | |
6340 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6341 | _result = new wxTreeItemId (wxTreeEvent_GetItem(_arg0)); | |
6342 | ||
6343 | wxPyEndAllowThreads(__tstate); | |
6344 | if (PyErr_Occurred()) return NULL; | |
6345 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
6346 | _resultobj = Py_BuildValue("s",_ptemp); | |
6347 | return _resultobj; | |
6348 | } | |
6349 | ||
6350 | #define wxTreeEvent_GetOldItem(_swigobj) (_swigobj->GetOldItem()) | |
6351 | static PyObject *_wrap_wxTreeEvent_GetOldItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6352 | PyObject * _resultobj; | |
6353 | wxTreeItemId * _result; | |
6354 | wxTreeEvent * _arg0; | |
6355 | PyObject * _argo0 = 0; | |
6356 | char *_kwnames[] = { "self", NULL }; | |
6357 | char _ptemp[128]; | |
6358 | ||
6359 | self = self; | |
6360 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetOldItem",_kwnames,&_argo0)) | |
6361 | return NULL; | |
6362 | if (_argo0) { | |
6363 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6364 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
6365 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetOldItem. Expected _wxTreeEvent_p."); | |
6366 | return NULL; | |
6367 | } | |
6368 | } | |
6369 | { | |
6370 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6371 | _result = new wxTreeItemId (wxTreeEvent_GetOldItem(_arg0)); | |
6372 | ||
6373 | wxPyEndAllowThreads(__tstate); | |
6374 | if (PyErr_Occurred()) return NULL; | |
6375 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
6376 | _resultobj = Py_BuildValue("s",_ptemp); | |
6377 | return _resultobj; | |
6378 | } | |
6379 | ||
6380 | #define wxTreeEvent_GetPoint(_swigobj) (_swigobj->GetPoint()) | |
6381 | static PyObject *_wrap_wxTreeEvent_GetPoint(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6382 | PyObject * _resultobj; | |
6383 | wxPoint * _result; | |
6384 | wxTreeEvent * _arg0; | |
6385 | PyObject * _argo0 = 0; | |
6386 | char *_kwnames[] = { "self", NULL }; | |
6387 | char _ptemp[128]; | |
6388 | ||
6389 | self = self; | |
6390 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetPoint",_kwnames,&_argo0)) | |
6391 | return NULL; | |
6392 | if (_argo0) { | |
6393 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6394 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
6395 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetPoint. Expected _wxTreeEvent_p."); | |
6396 | return NULL; | |
6397 | } | |
6398 | } | |
6399 | { | |
6400 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6401 | _result = new wxPoint (wxTreeEvent_GetPoint(_arg0)); | |
6402 | ||
6403 | wxPyEndAllowThreads(__tstate); | |
6404 | if (PyErr_Occurred()) return NULL; | |
6405 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
6406 | _resultobj = Py_BuildValue("s",_ptemp); | |
6407 | return _resultobj; | |
6408 | } | |
6409 | ||
6410 | #define wxTreeEvent_GetKeyEvent(_swigobj) (_swigobj->GetKeyEvent()) | |
6411 | static PyObject *_wrap_wxTreeEvent_GetKeyEvent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6412 | PyObject * _resultobj; | |
6413 | wxKeyEvent * _result; | |
6414 | wxTreeEvent * _arg0; | |
6415 | PyObject * _argo0 = 0; | |
6416 | char *_kwnames[] = { "self", NULL }; | |
6417 | char _ptemp[128]; | |
6418 | ||
6419 | self = self; | |
6420 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetKeyEvent",_kwnames,&_argo0)) | |
6421 | return NULL; | |
6422 | if (_argo0) { | |
6423 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6424 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
6425 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetKeyEvent. Expected _wxTreeEvent_p."); | |
6426 | return NULL; | |
6427 | } | |
6428 | } | |
6429 | { | |
6430 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6431 | const wxKeyEvent & _result_ref = wxTreeEvent_GetKeyEvent(_arg0); | |
6432 | _result = (wxKeyEvent *) &_result_ref; | |
6433 | ||
6434 | wxPyEndAllowThreads(__tstate); | |
6435 | if (PyErr_Occurred()) return NULL; | |
6436 | } if (_result) { | |
6437 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxKeyEvent_p"); | |
6438 | _resultobj = Py_BuildValue("s",_ptemp); | |
6439 | } else { | |
6440 | Py_INCREF(Py_None); | |
6441 | _resultobj = Py_None; | |
6442 | } | |
6443 | return _resultobj; | |
6444 | } | |
6445 | ||
6446 | #define wxTreeEvent_GetCode(_swigobj) (_swigobj->GetCode()) | |
6447 | static PyObject *_wrap_wxTreeEvent_GetCode(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6448 | PyObject * _resultobj; | |
6449 | int _result; | |
6450 | wxTreeEvent * _arg0; | |
6451 | PyObject * _argo0 = 0; | |
6452 | char *_kwnames[] = { "self", NULL }; | |
6453 | ||
6454 | self = self; | |
6455 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetCode",_kwnames,&_argo0)) | |
6456 | return NULL; | |
6457 | if (_argo0) { | |
6458 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6459 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
6460 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetCode. Expected _wxTreeEvent_p."); | |
6461 | return NULL; | |
6462 | } | |
6463 | } | |
6464 | { | |
6465 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6466 | _result = (int )wxTreeEvent_GetCode(_arg0); | |
6467 | ||
6468 | wxPyEndAllowThreads(__tstate); | |
6469 | if (PyErr_Occurred()) return NULL; | |
6470 | } _resultobj = Py_BuildValue("i",_result); | |
6471 | return _resultobj; | |
6472 | } | |
6473 | ||
6474 | #define wxTreeEvent_GetLabel(_swigobj) (_swigobj->GetLabel()) | |
6475 | static PyObject *_wrap_wxTreeEvent_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6476 | PyObject * _resultobj; | |
6477 | wxString * _result; | |
6478 | wxTreeEvent * _arg0; | |
6479 | PyObject * _argo0 = 0; | |
6480 | char *_kwnames[] = { "self", NULL }; | |
6481 | ||
6482 | self = self; | |
6483 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeEvent_GetLabel",_kwnames,&_argo0)) | |
6484 | return NULL; | |
6485 | if (_argo0) { | |
6486 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6487 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeEvent_p")) { | |
6488 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeEvent_GetLabel. Expected _wxTreeEvent_p."); | |
6489 | return NULL; | |
6490 | } | |
6491 | } | |
6492 | { | |
6493 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6494 | const wxString & _result_ref = wxTreeEvent_GetLabel(_arg0); | |
6495 | _result = (wxString *) &_result_ref; | |
6496 | ||
6497 | wxPyEndAllowThreads(__tstate); | |
6498 | if (PyErr_Occurred()) return NULL; | |
6499 | }{ | |
6500 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
6501 | } | |
6502 | return _resultobj; | |
6503 | } | |
6504 | ||
6505 | static void *SwigwxPyTreeCtrlTowxControl(void *ptr) { | |
6506 | wxPyTreeCtrl *src; | |
6507 | wxControl *dest; | |
6508 | src = (wxPyTreeCtrl *) ptr; | |
6509 | dest = (wxControl *) src; | |
6510 | return (void *) dest; | |
6511 | } | |
6512 | ||
6513 | static void *SwigwxPyTreeCtrlTowxWindow(void *ptr) { | |
6514 | wxPyTreeCtrl *src; | |
6515 | wxWindow *dest; | |
6516 | src = (wxPyTreeCtrl *) ptr; | |
6517 | dest = (wxWindow *) src; | |
6518 | return (void *) dest; | |
6519 | } | |
6520 | ||
6521 | static void *SwigwxPyTreeCtrlTowxEvtHandler(void *ptr) { | |
6522 | wxPyTreeCtrl *src; | |
6523 | wxEvtHandler *dest; | |
6524 | src = (wxPyTreeCtrl *) ptr; | |
6525 | dest = (wxEvtHandler *) src; | |
6526 | return (void *) dest; | |
6527 | } | |
6528 | ||
6529 | static void *SwigwxPyTreeCtrlTowxObject(void *ptr) { | |
6530 | wxPyTreeCtrl *src; | |
6531 | wxObject *dest; | |
6532 | src = (wxPyTreeCtrl *) ptr; | |
6533 | dest = (wxObject *) src; | |
6534 | return (void *) dest; | |
6535 | } | |
6536 | ||
6537 | #define new_wxTreeCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxPyTreeCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
6538 | static PyObject *_wrap_new_wxTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6539 | PyObject * _resultobj; | |
6540 | wxPyTreeCtrl * _result; | |
6541 | wxWindow * _arg0; | |
6542 | wxWindowID _arg1 = (wxWindowID ) -1; | |
6543 | wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition; | |
6544 | wxSize * _arg3 = (wxSize *) &wxDefaultSize; | |
6545 | long _arg4 = (long ) (wxTR_HAS_BUTTONS)|(wxTR_LINES_AT_ROOT); | |
6546 | wxValidator * _arg5 = (wxValidator *) &wxDefaultValidator; | |
6547 | char * _arg6 = (char *) "wxTreeCtrl"; | |
6548 | PyObject * _argo0 = 0; | |
6549 | wxPoint temp; | |
6550 | PyObject * _obj2 = 0; | |
6551 | wxSize temp0; | |
6552 | PyObject * _obj3 = 0; | |
6553 | PyObject * _argo5 = 0; | |
6554 | char *_kwnames[] = { "parent","id","pos","size","style","validator","name", NULL }; | |
6555 | char _ptemp[128]; | |
6556 | ||
6557 | self = self; | |
6558 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOlOs:new_wxTreeCtrl",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_argo5,&_arg6)) | |
6559 | return NULL; | |
6560 | if (_argo0) { | |
6561 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6562 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
6563 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxTreeCtrl. Expected _wxWindow_p."); | |
6564 | return NULL; | |
6565 | } | |
6566 | } | |
6567 | if (_obj2) | |
6568 | { | |
6569 | _arg2 = &temp; | |
6570 | if (! wxPoint_helper(_obj2, &_arg2)) | |
6571 | return NULL; | |
6572 | } | |
6573 | if (_obj3) | |
6574 | { | |
6575 | _arg3 = &temp0; | |
6576 | if (! wxSize_helper(_obj3, &_arg3)) | |
6577 | return NULL; | |
6578 | } | |
6579 | if (_argo5) { | |
6580 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
6581 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxValidator_p")) { | |
6582 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of new_wxTreeCtrl. Expected _wxValidator_p."); | |
6583 | return NULL; | |
6584 | } | |
6585 | } | |
6586 | { | |
6587 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6588 | _result = (wxPyTreeCtrl *)new_wxTreeCtrl(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5,_arg6); | |
6589 | ||
6590 | wxPyEndAllowThreads(__tstate); | |
6591 | if (PyErr_Occurred()) return NULL; | |
6592 | } if (_result) { | |
6593 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeCtrl_p"); | |
6594 | _resultobj = Py_BuildValue("s",_ptemp); | |
6595 | } else { | |
6596 | Py_INCREF(Py_None); | |
6597 | _resultobj = Py_None; | |
6598 | } | |
6599 | return _resultobj; | |
6600 | } | |
6601 | ||
6602 | #define new_wxPreTreeCtrl() (new wxPyTreeCtrl()) | |
6603 | static PyObject *_wrap_new_wxPreTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6604 | PyObject * _resultobj; | |
6605 | wxPyTreeCtrl * _result; | |
6606 | char *_kwnames[] = { NULL }; | |
6607 | char _ptemp[128]; | |
6608 | ||
6609 | self = self; | |
6610 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreTreeCtrl",_kwnames)) | |
6611 | return NULL; | |
6612 | { | |
6613 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6614 | _result = (wxPyTreeCtrl *)new_wxPreTreeCtrl(); | |
6615 | ||
6616 | wxPyEndAllowThreads(__tstate); | |
6617 | if (PyErr_Occurred()) return NULL; | |
6618 | } if (_result) { | |
6619 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeCtrl_p"); | |
6620 | _resultobj = Py_BuildValue("s",_ptemp); | |
6621 | } else { | |
6622 | Py_INCREF(Py_None); | |
6623 | _resultobj = Py_None; | |
6624 | } | |
6625 | return _resultobj; | |
6626 | } | |
6627 | ||
6628 | #define wxTreeCtrl_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
6629 | static PyObject *_wrap_wxTreeCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6630 | PyObject * _resultobj; | |
6631 | bool _result; | |
6632 | wxPyTreeCtrl * _arg0; | |
6633 | wxWindow * _arg1; | |
6634 | wxWindowID _arg2 = (wxWindowID ) -1; | |
6635 | wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition; | |
6636 | wxSize * _arg4 = (wxSize *) &wxDefaultSize; | |
6637 | long _arg5 = (long ) (wxTR_HAS_BUTTONS)|(wxTR_LINES_AT_ROOT); | |
6638 | wxValidator * _arg6 = (wxValidator *) &wxDefaultValidator; | |
6639 | char * _arg7 = (char *) "wxTreeCtrl"; | |
6640 | PyObject * _argo0 = 0; | |
6641 | PyObject * _argo1 = 0; | |
6642 | wxPoint temp; | |
6643 | PyObject * _obj3 = 0; | |
6644 | wxSize temp0; | |
6645 | PyObject * _obj4 = 0; | |
6646 | PyObject * _argo6 = 0; | |
6647 | char *_kwnames[] = { "self","parent","id","pos","size","style","validator","name", NULL }; | |
6648 | ||
6649 | self = self; | |
6650 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iOOlOs:wxTreeCtrl_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_argo6,&_arg7)) | |
6651 | return NULL; | |
6652 | if (_argo0) { | |
6653 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6654 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6655 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Create. Expected _wxPyTreeCtrl_p."); | |
6656 | return NULL; | |
6657 | } | |
6658 | } | |
6659 | if (_argo1) { | |
6660 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6661 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
6662 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Create. Expected _wxWindow_p."); | |
6663 | return NULL; | |
6664 | } | |
6665 | } | |
6666 | if (_obj3) | |
6667 | { | |
6668 | _arg3 = &temp; | |
6669 | if (! wxPoint_helper(_obj3, &_arg3)) | |
6670 | return NULL; | |
6671 | } | |
6672 | if (_obj4) | |
6673 | { | |
6674 | _arg4 = &temp0; | |
6675 | if (! wxSize_helper(_obj4, &_arg4)) | |
6676 | return NULL; | |
6677 | } | |
6678 | if (_argo6) { | |
6679 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
6680 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxValidator_p")) { | |
6681 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxTreeCtrl_Create. Expected _wxValidator_p."); | |
6682 | return NULL; | |
6683 | } | |
6684 | } | |
6685 | { | |
6686 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6687 | _result = (bool )wxTreeCtrl_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,*_arg6,_arg7); | |
6688 | ||
6689 | wxPyEndAllowThreads(__tstate); | |
6690 | if (PyErr_Occurred()) return NULL; | |
6691 | } _resultobj = Py_BuildValue("i",_result); | |
6692 | return _resultobj; | |
6693 | } | |
6694 | ||
6695 | #define wxTreeCtrl__setCallbackInfo(_swigobj,_swigarg0,_swigarg1) (_swigobj->_setCallbackInfo(_swigarg0,_swigarg1)) | |
6696 | static PyObject *_wrap_wxTreeCtrl__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6697 | PyObject * _resultobj; | |
6698 | wxPyTreeCtrl * _arg0; | |
6699 | PyObject * _arg1; | |
6700 | PyObject * _arg2; | |
6701 | PyObject * _argo0 = 0; | |
6702 | PyObject * _obj1 = 0; | |
6703 | PyObject * _obj2 = 0; | |
6704 | char *_kwnames[] = { "self","self","_class", NULL }; | |
6705 | ||
6706 | self = self; | |
6707 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl__setCallbackInfo",_kwnames,&_argo0,&_obj1,&_obj2)) | |
6708 | return NULL; | |
6709 | if (_argo0) { | |
6710 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6711 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6712 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl__setCallbackInfo. Expected _wxPyTreeCtrl_p."); | |
6713 | return NULL; | |
6714 | } | |
6715 | } | |
6716 | { | |
6717 | _arg1 = _obj1; | |
6718 | } | |
6719 | { | |
6720 | _arg2 = _obj2; | |
6721 | } | |
6722 | { | |
6723 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6724 | wxTreeCtrl__setCallbackInfo(_arg0,_arg1,_arg2); | |
6725 | ||
6726 | wxPyEndAllowThreads(__tstate); | |
6727 | if (PyErr_Occurred()) return NULL; | |
6728 | } Py_INCREF(Py_None); | |
6729 | _resultobj = Py_None; | |
6730 | return _resultobj; | |
6731 | } | |
6732 | ||
6733 | #define wxTreeCtrl_GetCount(_swigobj) (_swigobj->GetCount()) | |
6734 | static PyObject *_wrap_wxTreeCtrl_GetCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6735 | PyObject * _resultobj; | |
6736 | size_t _result; | |
6737 | wxPyTreeCtrl * _arg0; | |
6738 | PyObject * _argo0 = 0; | |
6739 | char *_kwnames[] = { "self", NULL }; | |
6740 | ||
6741 | self = self; | |
6742 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetCount",_kwnames,&_argo0)) | |
6743 | return NULL; | |
6744 | if (_argo0) { | |
6745 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6746 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6747 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetCount. Expected _wxPyTreeCtrl_p."); | |
6748 | return NULL; | |
6749 | } | |
6750 | } | |
6751 | { | |
6752 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6753 | _result = (size_t )wxTreeCtrl_GetCount(_arg0); | |
6754 | ||
6755 | wxPyEndAllowThreads(__tstate); | |
6756 | if (PyErr_Occurred()) return NULL; | |
6757 | } _resultobj = Py_BuildValue("i",_result); | |
6758 | return _resultobj; | |
6759 | } | |
6760 | ||
6761 | #define wxTreeCtrl_GetIndent(_swigobj) (_swigobj->GetIndent()) | |
6762 | static PyObject *_wrap_wxTreeCtrl_GetIndent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6763 | PyObject * _resultobj; | |
6764 | unsigned int _result; | |
6765 | wxPyTreeCtrl * _arg0; | |
6766 | PyObject * _argo0 = 0; | |
6767 | char *_kwnames[] = { "self", NULL }; | |
6768 | ||
6769 | self = self; | |
6770 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetIndent",_kwnames,&_argo0)) | |
6771 | return NULL; | |
6772 | if (_argo0) { | |
6773 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6774 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6775 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetIndent. Expected _wxPyTreeCtrl_p."); | |
6776 | return NULL; | |
6777 | } | |
6778 | } | |
6779 | { | |
6780 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6781 | _result = (unsigned int )wxTreeCtrl_GetIndent(_arg0); | |
6782 | ||
6783 | wxPyEndAllowThreads(__tstate); | |
6784 | if (PyErr_Occurred()) return NULL; | |
6785 | } _resultobj = Py_BuildValue("i",_result); | |
6786 | return _resultobj; | |
6787 | } | |
6788 | ||
6789 | #define wxTreeCtrl_SetIndent(_swigobj,_swigarg0) (_swigobj->SetIndent(_swigarg0)) | |
6790 | static PyObject *_wrap_wxTreeCtrl_SetIndent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6791 | PyObject * _resultobj; | |
6792 | wxPyTreeCtrl * _arg0; | |
6793 | unsigned int _arg1; | |
6794 | PyObject * _argo0 = 0; | |
6795 | char *_kwnames[] = { "self","indent", NULL }; | |
6796 | ||
6797 | self = self; | |
6798 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxTreeCtrl_SetIndent",_kwnames,&_argo0,&_arg1)) | |
6799 | return NULL; | |
6800 | if (_argo0) { | |
6801 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6802 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6803 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetIndent. Expected _wxPyTreeCtrl_p."); | |
6804 | return NULL; | |
6805 | } | |
6806 | } | |
6807 | { | |
6808 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6809 | wxTreeCtrl_SetIndent(_arg0,_arg1); | |
6810 | ||
6811 | wxPyEndAllowThreads(__tstate); | |
6812 | if (PyErr_Occurred()) return NULL; | |
6813 | } Py_INCREF(Py_None); | |
6814 | _resultobj = Py_None; | |
6815 | return _resultobj; | |
6816 | } | |
6817 | ||
6818 | #define wxTreeCtrl_GetImageList(_swigobj) (_swigobj->GetImageList()) | |
6819 | static PyObject *_wrap_wxTreeCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6820 | PyObject * _resultobj; | |
6821 | wxImageList * _result; | |
6822 | wxPyTreeCtrl * _arg0; | |
6823 | PyObject * _argo0 = 0; | |
6824 | char *_kwnames[] = { "self", NULL }; | |
6825 | ||
6826 | self = self; | |
6827 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetImageList",_kwnames,&_argo0)) | |
6828 | return NULL; | |
6829 | if (_argo0) { | |
6830 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6831 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6832 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetImageList. Expected _wxPyTreeCtrl_p."); | |
6833 | return NULL; | |
6834 | } | |
6835 | } | |
6836 | { | |
6837 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6838 | _result = (wxImageList *)wxTreeCtrl_GetImageList(_arg0); | |
6839 | ||
6840 | wxPyEndAllowThreads(__tstate); | |
6841 | if (PyErr_Occurred()) return NULL; | |
6842 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
6843 | return _resultobj; | |
6844 | } | |
6845 | ||
6846 | #define wxTreeCtrl_GetStateImageList(_swigobj) (_swigobj->GetStateImageList()) | |
6847 | static PyObject *_wrap_wxTreeCtrl_GetStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6848 | PyObject * _resultobj; | |
6849 | wxImageList * _result; | |
6850 | wxPyTreeCtrl * _arg0; | |
6851 | PyObject * _argo0 = 0; | |
6852 | char *_kwnames[] = { "self", NULL }; | |
6853 | ||
6854 | self = self; | |
6855 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetStateImageList",_kwnames,&_argo0)) | |
6856 | return NULL; | |
6857 | if (_argo0) { | |
6858 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6859 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6860 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetStateImageList. Expected _wxPyTreeCtrl_p."); | |
6861 | return NULL; | |
6862 | } | |
6863 | } | |
6864 | { | |
6865 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6866 | _result = (wxImageList *)wxTreeCtrl_GetStateImageList(_arg0); | |
6867 | ||
6868 | wxPyEndAllowThreads(__tstate); | |
6869 | if (PyErr_Occurred()) return NULL; | |
6870 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
6871 | return _resultobj; | |
6872 | } | |
6873 | ||
6874 | #define wxTreeCtrl_SetImageList(_swigobj,_swigarg0) (_swigobj->SetImageList(_swigarg0)) | |
6875 | static PyObject *_wrap_wxTreeCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6876 | PyObject * _resultobj; | |
6877 | wxPyTreeCtrl * _arg0; | |
6878 | wxImageList * _arg1; | |
6879 | PyObject * _argo0 = 0; | |
6880 | PyObject * _argo1 = 0; | |
6881 | char *_kwnames[] = { "self","imageList", NULL }; | |
6882 | ||
6883 | self = self; | |
6884 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SetImageList",_kwnames,&_argo0,&_argo1)) | |
6885 | return NULL; | |
6886 | if (_argo0) { | |
6887 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6888 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6889 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetImageList. Expected _wxPyTreeCtrl_p."); | |
6890 | return NULL; | |
6891 | } | |
6892 | } | |
6893 | if (_argo1) { | |
6894 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6895 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
6896 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetImageList. Expected _wxImageList_p."); | |
6897 | return NULL; | |
6898 | } | |
6899 | } | |
6900 | { | |
6901 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6902 | wxTreeCtrl_SetImageList(_arg0,_arg1); | |
6903 | ||
6904 | wxPyEndAllowThreads(__tstate); | |
6905 | if (PyErr_Occurred()) return NULL; | |
6906 | } Py_INCREF(Py_None); | |
6907 | _resultobj = Py_None; | |
6908 | return _resultobj; | |
6909 | } | |
6910 | ||
6911 | #define wxTreeCtrl_SetStateImageList(_swigobj,_swigarg0) (_swigobj->SetStateImageList(_swigarg0)) | |
6912 | static PyObject *_wrap_wxTreeCtrl_SetStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6913 | PyObject * _resultobj; | |
6914 | wxPyTreeCtrl * _arg0; | |
6915 | wxImageList * _arg1; | |
6916 | PyObject * _argo0 = 0; | |
6917 | PyObject * _argo1 = 0; | |
6918 | char *_kwnames[] = { "self","imageList", NULL }; | |
6919 | ||
6920 | self = self; | |
6921 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SetStateImageList",_kwnames,&_argo0,&_argo1)) | |
6922 | return NULL; | |
6923 | if (_argo0) { | |
6924 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6925 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6926 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetStateImageList. Expected _wxPyTreeCtrl_p."); | |
6927 | return NULL; | |
6928 | } | |
6929 | } | |
6930 | if (_argo1) { | |
6931 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6932 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
6933 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetStateImageList. Expected _wxImageList_p."); | |
6934 | return NULL; | |
6935 | } | |
6936 | } | |
6937 | { | |
6938 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6939 | wxTreeCtrl_SetStateImageList(_arg0,_arg1); | |
6940 | ||
6941 | wxPyEndAllowThreads(__tstate); | |
6942 | if (PyErr_Occurred()) return NULL; | |
6943 | } Py_INCREF(Py_None); | |
6944 | _resultobj = Py_None; | |
6945 | return _resultobj; | |
6946 | } | |
6947 | ||
6948 | #define wxTreeCtrl_AssignImageList(_swigobj,_swigarg0) (_swigobj->AssignImageList(_swigarg0)) | |
6949 | static PyObject *_wrap_wxTreeCtrl_AssignImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6950 | PyObject * _resultobj; | |
6951 | wxPyTreeCtrl * _arg0; | |
6952 | wxImageList * _arg1; | |
6953 | PyObject * _argo0 = 0; | |
6954 | PyObject * _argo1 = 0; | |
6955 | char *_kwnames[] = { "self","imageList", NULL }; | |
6956 | ||
6957 | self = self; | |
6958 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_AssignImageList",_kwnames,&_argo0,&_argo1)) | |
6959 | return NULL; | |
6960 | if (_argo0) { | |
6961 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6962 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
6963 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_AssignImageList. Expected _wxPyTreeCtrl_p."); | |
6964 | return NULL; | |
6965 | } | |
6966 | } | |
6967 | if (_argo1) { | |
6968 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
6969 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
6970 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_AssignImageList. Expected _wxImageList_p."); | |
6971 | return NULL; | |
6972 | } | |
6973 | } | |
6974 | { | |
6975 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
6976 | wxTreeCtrl_AssignImageList(_arg0,_arg1); | |
6977 | ||
6978 | wxPyEndAllowThreads(__tstate); | |
6979 | if (PyErr_Occurred()) return NULL; | |
6980 | } Py_INCREF(Py_None); | |
6981 | _resultobj = Py_None; | |
6982 | return _resultobj; | |
6983 | } | |
6984 | ||
6985 | #define wxTreeCtrl_AssignStateImageList(_swigobj,_swigarg0) (_swigobj->AssignStateImageList(_swigarg0)) | |
6986 | static PyObject *_wrap_wxTreeCtrl_AssignStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) { | |
6987 | PyObject * _resultobj; | |
6988 | wxPyTreeCtrl * _arg0; | |
6989 | wxImageList * _arg1; | |
6990 | PyObject * _argo0 = 0; | |
6991 | PyObject * _argo1 = 0; | |
6992 | char *_kwnames[] = { "self","imageList", NULL }; | |
6993 | ||
6994 | self = self; | |
6995 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_AssignStateImageList",_kwnames,&_argo0,&_argo1)) | |
6996 | return NULL; | |
6997 | if (_argo0) { | |
6998 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
6999 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7000 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_AssignStateImageList. Expected _wxPyTreeCtrl_p."); | |
7001 | return NULL; | |
7002 | } | |
7003 | } | |
7004 | if (_argo1) { | |
7005 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7006 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxImageList_p")) { | |
7007 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_AssignStateImageList. Expected _wxImageList_p."); | |
7008 | return NULL; | |
7009 | } | |
7010 | } | |
7011 | { | |
7012 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7013 | wxTreeCtrl_AssignStateImageList(_arg0,_arg1); | |
7014 | ||
7015 | wxPyEndAllowThreads(__tstate); | |
7016 | if (PyErr_Occurred()) return NULL; | |
7017 | } Py_INCREF(Py_None); | |
7018 | _resultobj = Py_None; | |
7019 | return _resultobj; | |
7020 | } | |
7021 | ||
7022 | #define wxTreeCtrl_GetSpacing(_swigobj) (_swigobj->GetSpacing()) | |
7023 | static PyObject *_wrap_wxTreeCtrl_GetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7024 | PyObject * _resultobj; | |
7025 | unsigned int _result; | |
7026 | wxPyTreeCtrl * _arg0; | |
7027 | PyObject * _argo0 = 0; | |
7028 | char *_kwnames[] = { "self", NULL }; | |
7029 | ||
7030 | self = self; | |
7031 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSpacing",_kwnames,&_argo0)) | |
7032 | return NULL; | |
7033 | if (_argo0) { | |
7034 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7035 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7036 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSpacing. Expected _wxPyTreeCtrl_p."); | |
7037 | return NULL; | |
7038 | } | |
7039 | } | |
7040 | { | |
7041 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7042 | _result = (unsigned int )wxTreeCtrl_GetSpacing(_arg0); | |
7043 | ||
7044 | wxPyEndAllowThreads(__tstate); | |
7045 | if (PyErr_Occurred()) return NULL; | |
7046 | } _resultobj = Py_BuildValue("i",_result); | |
7047 | return _resultobj; | |
7048 | } | |
7049 | ||
7050 | #define wxTreeCtrl_SetSpacing(_swigobj,_swigarg0) (_swigobj->SetSpacing(_swigarg0)) | |
7051 | static PyObject *_wrap_wxTreeCtrl_SetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7052 | PyObject * _resultobj; | |
7053 | wxPyTreeCtrl * _arg0; | |
7054 | unsigned int _arg1; | |
7055 | PyObject * _argo0 = 0; | |
7056 | char *_kwnames[] = { "self","spacing", NULL }; | |
7057 | ||
7058 | self = self; | |
7059 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxTreeCtrl_SetSpacing",_kwnames,&_argo0,&_arg1)) | |
7060 | return NULL; | |
7061 | if (_argo0) { | |
7062 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7063 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7064 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetSpacing. Expected _wxPyTreeCtrl_p."); | |
7065 | return NULL; | |
7066 | } | |
7067 | } | |
7068 | { | |
7069 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7070 | wxTreeCtrl_SetSpacing(_arg0,_arg1); | |
7071 | ||
7072 | wxPyEndAllowThreads(__tstate); | |
7073 | if (PyErr_Occurred()) return NULL; | |
7074 | } Py_INCREF(Py_None); | |
7075 | _resultobj = Py_None; | |
7076 | return _resultobj; | |
7077 | } | |
7078 | ||
7079 | #define wxTreeCtrl_GetItemText(_swigobj,_swigarg0) (_swigobj->GetItemText(_swigarg0)) | |
7080 | static PyObject *_wrap_wxTreeCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7081 | PyObject * _resultobj; | |
7082 | wxString * _result; | |
7083 | wxPyTreeCtrl * _arg0; | |
7084 | wxTreeItemId * _arg1; | |
7085 | PyObject * _argo0 = 0; | |
7086 | PyObject * _argo1 = 0; | |
7087 | char *_kwnames[] = { "self","item", NULL }; | |
7088 | ||
7089 | self = self; | |
7090 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemText",_kwnames,&_argo0,&_argo1)) | |
7091 | return NULL; | |
7092 | if (_argo0) { | |
7093 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7094 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7095 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemText. Expected _wxPyTreeCtrl_p."); | |
7096 | return NULL; | |
7097 | } | |
7098 | } | |
7099 | if (_argo1) { | |
7100 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7101 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7102 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemText. Expected _wxTreeItemId_p."); | |
7103 | return NULL; | |
7104 | } | |
7105 | } | |
7106 | { | |
7107 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7108 | _result = new wxString (wxTreeCtrl_GetItemText(_arg0,*_arg1)); | |
7109 | ||
7110 | wxPyEndAllowThreads(__tstate); | |
7111 | if (PyErr_Occurred()) return NULL; | |
7112 | }{ | |
7113 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); | |
7114 | } | |
7115 | { | |
7116 | delete _result; | |
7117 | } | |
7118 | return _resultobj; | |
7119 | } | |
7120 | ||
7121 | #define wxTreeCtrl_GetItemImage(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetItemImage(_swigarg0,_swigarg1)) | |
7122 | static PyObject *_wrap_wxTreeCtrl_GetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7123 | PyObject * _resultobj; | |
7124 | int _result; | |
7125 | wxPyTreeCtrl * _arg0; | |
7126 | wxTreeItemId * _arg1; | |
7127 | wxTreeItemIcon _arg2 = (wxTreeItemIcon ) (wxTreeItemIcon_Normal); | |
7128 | PyObject * _argo0 = 0; | |
7129 | PyObject * _argo1 = 0; | |
7130 | char *_kwnames[] = { "self","item","which", NULL }; | |
7131 | ||
7132 | self = self; | |
7133 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_GetItemImage",_kwnames,&_argo0,&_argo1,&_arg2)) | |
7134 | return NULL; | |
7135 | if (_argo0) { | |
7136 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7137 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7138 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemImage. Expected _wxPyTreeCtrl_p."); | |
7139 | return NULL; | |
7140 | } | |
7141 | } | |
7142 | if (_argo1) { | |
7143 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7144 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7145 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemImage. Expected _wxTreeItemId_p."); | |
7146 | return NULL; | |
7147 | } | |
7148 | } | |
7149 | { | |
7150 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7151 | _result = (int )wxTreeCtrl_GetItemImage(_arg0,*_arg1,_arg2); | |
7152 | ||
7153 | wxPyEndAllowThreads(__tstate); | |
7154 | if (PyErr_Occurred()) return NULL; | |
7155 | } _resultobj = Py_BuildValue("i",_result); | |
7156 | return _resultobj; | |
7157 | } | |
7158 | ||
7159 | #define wxTreeCtrl_GetItemSelectedImage(_swigobj,_swigarg0) (_swigobj->GetItemSelectedImage(_swigarg0)) | |
7160 | static PyObject *_wrap_wxTreeCtrl_GetItemSelectedImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7161 | PyObject * _resultobj; | |
7162 | int _result; | |
7163 | wxPyTreeCtrl * _arg0; | |
7164 | wxTreeItemId * _arg1; | |
7165 | PyObject * _argo0 = 0; | |
7166 | PyObject * _argo1 = 0; | |
7167 | char *_kwnames[] = { "self","item", NULL }; | |
7168 | ||
7169 | self = self; | |
7170 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemSelectedImage",_kwnames,&_argo0,&_argo1)) | |
7171 | return NULL; | |
7172 | if (_argo0) { | |
7173 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7174 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7175 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemSelectedImage. Expected _wxPyTreeCtrl_p."); | |
7176 | return NULL; | |
7177 | } | |
7178 | } | |
7179 | if (_argo1) { | |
7180 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7181 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7182 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemSelectedImage. Expected _wxTreeItemId_p."); | |
7183 | return NULL; | |
7184 | } | |
7185 | } | |
7186 | { | |
7187 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7188 | _result = (int )wxTreeCtrl_GetItemSelectedImage(_arg0,*_arg1); | |
7189 | ||
7190 | wxPyEndAllowThreads(__tstate); | |
7191 | if (PyErr_Occurred()) return NULL; | |
7192 | } _resultobj = Py_BuildValue("i",_result); | |
7193 | return _resultobj; | |
7194 | } | |
7195 | ||
7196 | #define wxTreeCtrl_SetItemText(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemText(_swigarg0,_swigarg1)) | |
7197 | static PyObject *_wrap_wxTreeCtrl_SetItemText(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7198 | PyObject * _resultobj; | |
7199 | wxPyTreeCtrl * _arg0; | |
7200 | wxTreeItemId * _arg1; | |
7201 | wxString * _arg2; | |
7202 | PyObject * _argo0 = 0; | |
7203 | PyObject * _argo1 = 0; | |
7204 | PyObject * _obj2 = 0; | |
7205 | char *_kwnames[] = { "self","item","text", NULL }; | |
7206 | ||
7207 | self = self; | |
7208 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemText",_kwnames,&_argo0,&_argo1,&_obj2)) | |
7209 | return NULL; | |
7210 | if (_argo0) { | |
7211 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7212 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7213 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemText. Expected _wxPyTreeCtrl_p."); | |
7214 | return NULL; | |
7215 | } | |
7216 | } | |
7217 | if (_argo1) { | |
7218 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7219 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7220 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemText. Expected _wxTreeItemId_p."); | |
7221 | return NULL; | |
7222 | } | |
7223 | } | |
7224 | { | |
7225 | #if PYTHON_API_VERSION >= 1009 | |
7226 | char* tmpPtr; int tmpSize; | |
7227 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
7228 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7229 | return NULL; | |
7230 | } | |
7231 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
7232 | return NULL; | |
7233 | _arg2 = new wxString(tmpPtr, tmpSize); | |
7234 | #else | |
7235 | if (!PyString_Check(_obj2)) { | |
7236 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
7237 | return NULL; | |
7238 | } | |
7239 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
7240 | #endif | |
7241 | } | |
7242 | { | |
7243 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7244 | wxTreeCtrl_SetItemText(_arg0,*_arg1,*_arg2); | |
7245 | ||
7246 | wxPyEndAllowThreads(__tstate); | |
7247 | if (PyErr_Occurred()) return NULL; | |
7248 | } Py_INCREF(Py_None); | |
7249 | _resultobj = Py_None; | |
7250 | { | |
7251 | if (_obj2) | |
7252 | delete _arg2; | |
7253 | } | |
7254 | return _resultobj; | |
7255 | } | |
7256 | ||
7257 | #define wxTreeCtrl_SetItemImage(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SetItemImage(_swigarg0,_swigarg1,_swigarg2)) | |
7258 | static PyObject *_wrap_wxTreeCtrl_SetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7259 | PyObject * _resultobj; | |
7260 | wxPyTreeCtrl * _arg0; | |
7261 | wxTreeItemId * _arg1; | |
7262 | int _arg2; | |
7263 | wxTreeItemIcon _arg3 = (wxTreeItemIcon ) (wxTreeItemIcon_Normal); | |
7264 | PyObject * _argo0 = 0; | |
7265 | PyObject * _argo1 = 0; | |
7266 | char *_kwnames[] = { "self","item","image","which", NULL }; | |
7267 | ||
7268 | self = self; | |
7269 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|i:wxTreeCtrl_SetItemImage",_kwnames,&_argo0,&_argo1,&_arg2,&_arg3)) | |
7270 | return NULL; | |
7271 | if (_argo0) { | |
7272 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7273 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7274 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemImage. Expected _wxPyTreeCtrl_p."); | |
7275 | return NULL; | |
7276 | } | |
7277 | } | |
7278 | if (_argo1) { | |
7279 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7280 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7281 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemImage. Expected _wxTreeItemId_p."); | |
7282 | return NULL; | |
7283 | } | |
7284 | } | |
7285 | { | |
7286 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7287 | wxTreeCtrl_SetItemImage(_arg0,*_arg1,_arg2,_arg3); | |
7288 | ||
7289 | wxPyEndAllowThreads(__tstate); | |
7290 | if (PyErr_Occurred()) return NULL; | |
7291 | } Py_INCREF(Py_None); | |
7292 | _resultobj = Py_None; | |
7293 | return _resultobj; | |
7294 | } | |
7295 | ||
7296 | #define wxTreeCtrl_SetItemSelectedImage(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemSelectedImage(_swigarg0,_swigarg1)) | |
7297 | static PyObject *_wrap_wxTreeCtrl_SetItemSelectedImage(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7298 | PyObject * _resultobj; | |
7299 | wxPyTreeCtrl * _arg0; | |
7300 | wxTreeItemId * _arg1; | |
7301 | int _arg2; | |
7302 | PyObject * _argo0 = 0; | |
7303 | PyObject * _argo1 = 0; | |
7304 | char *_kwnames[] = { "self","item","image", NULL }; | |
7305 | ||
7306 | self = self; | |
7307 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi:wxTreeCtrl_SetItemSelectedImage",_kwnames,&_argo0,&_argo1,&_arg2)) | |
7308 | return NULL; | |
7309 | if (_argo0) { | |
7310 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7311 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7312 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemSelectedImage. Expected _wxPyTreeCtrl_p."); | |
7313 | return NULL; | |
7314 | } | |
7315 | } | |
7316 | if (_argo1) { | |
7317 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7318 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7319 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemSelectedImage. Expected _wxTreeItemId_p."); | |
7320 | return NULL; | |
7321 | } | |
7322 | } | |
7323 | { | |
7324 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7325 | wxTreeCtrl_SetItemSelectedImage(_arg0,*_arg1,_arg2); | |
7326 | ||
7327 | wxPyEndAllowThreads(__tstate); | |
7328 | if (PyErr_Occurred()) return NULL; | |
7329 | } Py_INCREF(Py_None); | |
7330 | _resultobj = Py_None; | |
7331 | return _resultobj; | |
7332 | } | |
7333 | ||
7334 | #define wxTreeCtrl_SetItemHasChildren(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemHasChildren(_swigarg0,_swigarg1)) | |
7335 | static PyObject *_wrap_wxTreeCtrl_SetItemHasChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7336 | PyObject * _resultobj; | |
7337 | wxPyTreeCtrl * _arg0; | |
7338 | wxTreeItemId * _arg1; | |
7339 | bool _arg2 = (bool ) TRUE; | |
7340 | PyObject * _argo0 = 0; | |
7341 | PyObject * _argo1 = 0; | |
7342 | int tempbool2 = (int) TRUE; | |
7343 | char *_kwnames[] = { "self","item","hasChildren", NULL }; | |
7344 | ||
7345 | self = self; | |
7346 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemHasChildren",_kwnames,&_argo0,&_argo1,&tempbool2)) | |
7347 | return NULL; | |
7348 | if (_argo0) { | |
7349 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7350 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7351 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemHasChildren. Expected _wxPyTreeCtrl_p."); | |
7352 | return NULL; | |
7353 | } | |
7354 | } | |
7355 | if (_argo1) { | |
7356 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7357 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7358 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemHasChildren. Expected _wxTreeItemId_p."); | |
7359 | return NULL; | |
7360 | } | |
7361 | } | |
7362 | _arg2 = (bool ) tempbool2; | |
7363 | { | |
7364 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7365 | wxTreeCtrl_SetItemHasChildren(_arg0,*_arg1,_arg2); | |
7366 | ||
7367 | wxPyEndAllowThreads(__tstate); | |
7368 | if (PyErr_Occurred()) return NULL; | |
7369 | } Py_INCREF(Py_None); | |
7370 | _resultobj = Py_None; | |
7371 | return _resultobj; | |
7372 | } | |
7373 | ||
7374 | static wxPyTreeItemData * wxPyTreeCtrl_GetItemData(wxPyTreeCtrl *self,const wxTreeItemId & item) { | |
7375 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
7376 | if (data == NULL) { | |
7377 | data = new wxPyTreeItemData(); | |
7378 | data->SetId(item); // set the id | |
7379 | self->SetItemData(item, data); | |
7380 | } | |
7381 | return data; | |
7382 | } | |
7383 | static PyObject *_wrap_wxTreeCtrl_GetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7384 | PyObject * _resultobj; | |
7385 | wxPyTreeItemData * _result; | |
7386 | wxPyTreeCtrl * _arg0; | |
7387 | wxTreeItemId * _arg1; | |
7388 | PyObject * _argo0 = 0; | |
7389 | PyObject * _argo1 = 0; | |
7390 | char *_kwnames[] = { "self","item", NULL }; | |
7391 | char _ptemp[128]; | |
7392 | ||
7393 | self = self; | |
7394 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemData",_kwnames,&_argo0,&_argo1)) | |
7395 | return NULL; | |
7396 | if (_argo0) { | |
7397 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7398 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7399 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemData. Expected _wxPyTreeCtrl_p."); | |
7400 | return NULL; | |
7401 | } | |
7402 | } | |
7403 | if (_argo1) { | |
7404 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7405 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7406 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemData. Expected _wxTreeItemId_p."); | |
7407 | return NULL; | |
7408 | } | |
7409 | } | |
7410 | { | |
7411 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7412 | _result = (wxPyTreeItemData *)wxPyTreeCtrl_GetItemData(_arg0,*_arg1); | |
7413 | ||
7414 | wxPyEndAllowThreads(__tstate); | |
7415 | if (PyErr_Occurred()) return NULL; | |
7416 | } if (_result) { | |
7417 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeItemData_p"); | |
7418 | _resultobj = Py_BuildValue("s",_ptemp); | |
7419 | } else { | |
7420 | Py_INCREF(Py_None); | |
7421 | _resultobj = Py_None; | |
7422 | } | |
7423 | return _resultobj; | |
7424 | } | |
7425 | ||
7426 | static void wxPyTreeCtrl_SetItemData(wxPyTreeCtrl *self,const wxTreeItemId & item,wxPyTreeItemData * data) { | |
7427 | data->SetId(item); // set the id | |
7428 | self->SetItemData(item, data); | |
7429 | } | |
7430 | static PyObject *_wrap_wxTreeCtrl_SetItemData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7431 | PyObject * _resultobj; | |
7432 | wxPyTreeCtrl * _arg0; | |
7433 | wxTreeItemId * _arg1; | |
7434 | wxPyTreeItemData * _arg2; | |
7435 | PyObject * _argo0 = 0; | |
7436 | PyObject * _argo1 = 0; | |
7437 | PyObject * _argo2 = 0; | |
7438 | char *_kwnames[] = { "self","item","data", NULL }; | |
7439 | ||
7440 | self = self; | |
7441 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemData",_kwnames,&_argo0,&_argo1,&_argo2)) | |
7442 | return NULL; | |
7443 | if (_argo0) { | |
7444 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7445 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7446 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemData. Expected _wxPyTreeCtrl_p."); | |
7447 | return NULL; | |
7448 | } | |
7449 | } | |
7450 | if (_argo1) { | |
7451 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7452 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7453 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemData. Expected _wxTreeItemId_p."); | |
7454 | return NULL; | |
7455 | } | |
7456 | } | |
7457 | if (_argo2) { | |
7458 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
7459 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxPyTreeItemData_p")) { | |
7460 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxTreeCtrl_SetItemData. Expected _wxPyTreeItemData_p."); | |
7461 | return NULL; | |
7462 | } | |
7463 | } | |
7464 | { | |
7465 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7466 | wxPyTreeCtrl_SetItemData(_arg0,*_arg1,_arg2); | |
7467 | ||
7468 | wxPyEndAllowThreads(__tstate); | |
7469 | if (PyErr_Occurred()) return NULL; | |
7470 | } Py_INCREF(Py_None); | |
7471 | _resultobj = Py_None; | |
7472 | return _resultobj; | |
7473 | } | |
7474 | ||
7475 | static PyObject * wxPyTreeCtrl_GetPyData(wxPyTreeCtrl *self,const wxTreeItemId & item) { | |
7476 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
7477 | if (data == NULL) { | |
7478 | data = new wxPyTreeItemData(); | |
7479 | data->SetId(item); // set the id | |
7480 | self->SetItemData(item, data); | |
7481 | } | |
7482 | return data->GetData(); | |
7483 | } | |
7484 | static PyObject *_wrap_wxTreeCtrl_GetPyData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7485 | PyObject * _resultobj; | |
7486 | PyObject * _result; | |
7487 | wxPyTreeCtrl * _arg0; | |
7488 | wxTreeItemId * _arg1; | |
7489 | PyObject * _argo0 = 0; | |
7490 | PyObject * _argo1 = 0; | |
7491 | char *_kwnames[] = { "self","item", NULL }; | |
7492 | ||
7493 | self = self; | |
7494 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetPyData",_kwnames,&_argo0,&_argo1)) | |
7495 | return NULL; | |
7496 | if (_argo0) { | |
7497 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7498 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7499 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetPyData. Expected _wxPyTreeCtrl_p."); | |
7500 | return NULL; | |
7501 | } | |
7502 | } | |
7503 | if (_argo1) { | |
7504 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7505 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7506 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetPyData. Expected _wxTreeItemId_p."); | |
7507 | return NULL; | |
7508 | } | |
7509 | } | |
7510 | { | |
7511 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7512 | _result = (PyObject *)wxPyTreeCtrl_GetPyData(_arg0,*_arg1); | |
7513 | ||
7514 | wxPyEndAllowThreads(__tstate); | |
7515 | if (PyErr_Occurred()) return NULL; | |
7516 | }{ | |
7517 | _resultobj = _result; | |
7518 | } | |
7519 | return _resultobj; | |
7520 | } | |
7521 | ||
7522 | static void wxPyTreeCtrl_SetPyData(wxPyTreeCtrl *self,const wxTreeItemId & item,PyObject * obj) { | |
7523 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
7524 | if (data == NULL) { | |
7525 | data = new wxPyTreeItemData(obj); | |
7526 | data->SetId(item); // set the id | |
7527 | self->SetItemData(item, data); | |
7528 | } else | |
7529 | data->SetData(obj); | |
7530 | } | |
7531 | static PyObject *_wrap_wxTreeCtrl_SetPyData(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7532 | PyObject * _resultobj; | |
7533 | wxPyTreeCtrl * _arg0; | |
7534 | wxTreeItemId * _arg1; | |
7535 | PyObject * _arg2; | |
7536 | PyObject * _argo0 = 0; | |
7537 | PyObject * _argo1 = 0; | |
7538 | PyObject * _obj2 = 0; | |
7539 | char *_kwnames[] = { "self","item","obj", NULL }; | |
7540 | ||
7541 | self = self; | |
7542 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetPyData",_kwnames,&_argo0,&_argo1,&_obj2)) | |
7543 | return NULL; | |
7544 | if (_argo0) { | |
7545 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7546 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7547 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetPyData. Expected _wxPyTreeCtrl_p."); | |
7548 | return NULL; | |
7549 | } | |
7550 | } | |
7551 | if (_argo1) { | |
7552 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7553 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7554 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetPyData. Expected _wxTreeItemId_p."); | |
7555 | return NULL; | |
7556 | } | |
7557 | } | |
7558 | { | |
7559 | _arg2 = _obj2; | |
7560 | } | |
7561 | { | |
7562 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7563 | wxPyTreeCtrl_SetPyData(_arg0,*_arg1,_arg2); | |
7564 | ||
7565 | wxPyEndAllowThreads(__tstate); | |
7566 | if (PyErr_Occurred()) return NULL; | |
7567 | } Py_INCREF(Py_None); | |
7568 | _resultobj = Py_None; | |
7569 | return _resultobj; | |
7570 | } | |
7571 | ||
7572 | #define wxTreeCtrl_IsVisible(_swigobj,_swigarg0) (_swigobj->IsVisible(_swigarg0)) | |
7573 | static PyObject *_wrap_wxTreeCtrl_IsVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7574 | PyObject * _resultobj; | |
7575 | bool _result; | |
7576 | wxPyTreeCtrl * _arg0; | |
7577 | wxTreeItemId * _arg1; | |
7578 | PyObject * _argo0 = 0; | |
7579 | PyObject * _argo1 = 0; | |
7580 | char *_kwnames[] = { "self","item", NULL }; | |
7581 | ||
7582 | self = self; | |
7583 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsVisible",_kwnames,&_argo0,&_argo1)) | |
7584 | return NULL; | |
7585 | if (_argo0) { | |
7586 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7587 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7588 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsVisible. Expected _wxPyTreeCtrl_p."); | |
7589 | return NULL; | |
7590 | } | |
7591 | } | |
7592 | if (_argo1) { | |
7593 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7594 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7595 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsVisible. Expected _wxTreeItemId_p."); | |
7596 | return NULL; | |
7597 | } | |
7598 | } | |
7599 | { | |
7600 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7601 | _result = (bool )wxTreeCtrl_IsVisible(_arg0,*_arg1); | |
7602 | ||
7603 | wxPyEndAllowThreads(__tstate); | |
7604 | if (PyErr_Occurred()) return NULL; | |
7605 | } _resultobj = Py_BuildValue("i",_result); | |
7606 | return _resultobj; | |
7607 | } | |
7608 | ||
7609 | #define wxTreeCtrl_ItemHasChildren(_swigobj,_swigarg0) (_swigobj->ItemHasChildren(_swigarg0)) | |
7610 | static PyObject *_wrap_wxTreeCtrl_ItemHasChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7611 | PyObject * _resultobj; | |
7612 | bool _result; | |
7613 | wxPyTreeCtrl * _arg0; | |
7614 | wxTreeItemId * _arg1; | |
7615 | PyObject * _argo0 = 0; | |
7616 | PyObject * _argo1 = 0; | |
7617 | char *_kwnames[] = { "self","item", NULL }; | |
7618 | ||
7619 | self = self; | |
7620 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_ItemHasChildren",_kwnames,&_argo0,&_argo1)) | |
7621 | return NULL; | |
7622 | if (_argo0) { | |
7623 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7624 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7625 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_ItemHasChildren. Expected _wxPyTreeCtrl_p."); | |
7626 | return NULL; | |
7627 | } | |
7628 | } | |
7629 | if (_argo1) { | |
7630 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7631 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7632 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_ItemHasChildren. Expected _wxTreeItemId_p."); | |
7633 | return NULL; | |
7634 | } | |
7635 | } | |
7636 | { | |
7637 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7638 | _result = (bool )wxTreeCtrl_ItemHasChildren(_arg0,*_arg1); | |
7639 | ||
7640 | wxPyEndAllowThreads(__tstate); | |
7641 | if (PyErr_Occurred()) return NULL; | |
7642 | } _resultobj = Py_BuildValue("i",_result); | |
7643 | return _resultobj; | |
7644 | } | |
7645 | ||
7646 | #define wxTreeCtrl_IsExpanded(_swigobj,_swigarg0) (_swigobj->IsExpanded(_swigarg0)) | |
7647 | static PyObject *_wrap_wxTreeCtrl_IsExpanded(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7648 | PyObject * _resultobj; | |
7649 | bool _result; | |
7650 | wxPyTreeCtrl * _arg0; | |
7651 | wxTreeItemId * _arg1; | |
7652 | PyObject * _argo0 = 0; | |
7653 | PyObject * _argo1 = 0; | |
7654 | char *_kwnames[] = { "self","item", NULL }; | |
7655 | ||
7656 | self = self; | |
7657 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsExpanded",_kwnames,&_argo0,&_argo1)) | |
7658 | return NULL; | |
7659 | if (_argo0) { | |
7660 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7661 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7662 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsExpanded. Expected _wxPyTreeCtrl_p."); | |
7663 | return NULL; | |
7664 | } | |
7665 | } | |
7666 | if (_argo1) { | |
7667 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7668 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7669 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsExpanded. Expected _wxTreeItemId_p."); | |
7670 | return NULL; | |
7671 | } | |
7672 | } | |
7673 | { | |
7674 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7675 | _result = (bool )wxTreeCtrl_IsExpanded(_arg0,*_arg1); | |
7676 | ||
7677 | wxPyEndAllowThreads(__tstate); | |
7678 | if (PyErr_Occurred()) return NULL; | |
7679 | } _resultobj = Py_BuildValue("i",_result); | |
7680 | return _resultobj; | |
7681 | } | |
7682 | ||
7683 | #define wxTreeCtrl_IsSelected(_swigobj,_swigarg0) (_swigobj->IsSelected(_swigarg0)) | |
7684 | static PyObject *_wrap_wxTreeCtrl_IsSelected(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7685 | PyObject * _resultobj; | |
7686 | bool _result; | |
7687 | wxPyTreeCtrl * _arg0; | |
7688 | wxTreeItemId * _arg1; | |
7689 | PyObject * _argo0 = 0; | |
7690 | PyObject * _argo1 = 0; | |
7691 | char *_kwnames[] = { "self","item", NULL }; | |
7692 | ||
7693 | self = self; | |
7694 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsSelected",_kwnames,&_argo0,&_argo1)) | |
7695 | return NULL; | |
7696 | if (_argo0) { | |
7697 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7698 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7699 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsSelected. Expected _wxPyTreeCtrl_p."); | |
7700 | return NULL; | |
7701 | } | |
7702 | } | |
7703 | if (_argo1) { | |
7704 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7705 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7706 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsSelected. Expected _wxTreeItemId_p."); | |
7707 | return NULL; | |
7708 | } | |
7709 | } | |
7710 | { | |
7711 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7712 | _result = (bool )wxTreeCtrl_IsSelected(_arg0,*_arg1); | |
7713 | ||
7714 | wxPyEndAllowThreads(__tstate); | |
7715 | if (PyErr_Occurred()) return NULL; | |
7716 | } _resultobj = Py_BuildValue("i",_result); | |
7717 | return _resultobj; | |
7718 | } | |
7719 | ||
7720 | #define wxTreeCtrl_GetRootItem(_swigobj) (_swigobj->GetRootItem()) | |
7721 | static PyObject *_wrap_wxTreeCtrl_GetRootItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7722 | PyObject * _resultobj; | |
7723 | wxTreeItemId * _result; | |
7724 | wxPyTreeCtrl * _arg0; | |
7725 | PyObject * _argo0 = 0; | |
7726 | char *_kwnames[] = { "self", NULL }; | |
7727 | char _ptemp[128]; | |
7728 | ||
7729 | self = self; | |
7730 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetRootItem",_kwnames,&_argo0)) | |
7731 | return NULL; | |
7732 | if (_argo0) { | |
7733 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7734 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7735 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetRootItem. Expected _wxPyTreeCtrl_p."); | |
7736 | return NULL; | |
7737 | } | |
7738 | } | |
7739 | { | |
7740 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7741 | _result = new wxTreeItemId (wxTreeCtrl_GetRootItem(_arg0)); | |
7742 | ||
7743 | wxPyEndAllowThreads(__tstate); | |
7744 | if (PyErr_Occurred()) return NULL; | |
7745 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
7746 | _resultobj = Py_BuildValue("s",_ptemp); | |
7747 | return _resultobj; | |
7748 | } | |
7749 | ||
7750 | #define wxTreeCtrl_GetSelection(_swigobj) (_swigobj->GetSelection()) | |
7751 | static PyObject *_wrap_wxTreeCtrl_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7752 | PyObject * _resultobj; | |
7753 | wxTreeItemId * _result; | |
7754 | wxPyTreeCtrl * _arg0; | |
7755 | PyObject * _argo0 = 0; | |
7756 | char *_kwnames[] = { "self", NULL }; | |
7757 | char _ptemp[128]; | |
7758 | ||
7759 | self = self; | |
7760 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSelection",_kwnames,&_argo0)) | |
7761 | return NULL; | |
7762 | if (_argo0) { | |
7763 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7764 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7765 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSelection. Expected _wxPyTreeCtrl_p."); | |
7766 | return NULL; | |
7767 | } | |
7768 | } | |
7769 | { | |
7770 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7771 | _result = new wxTreeItemId (wxTreeCtrl_GetSelection(_arg0)); | |
7772 | ||
7773 | wxPyEndAllowThreads(__tstate); | |
7774 | if (PyErr_Occurred()) return NULL; | |
7775 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
7776 | _resultobj = Py_BuildValue("s",_ptemp); | |
7777 | return _resultobj; | |
7778 | } | |
7779 | ||
7780 | #define wxTreeCtrl_GetItemParent(_swigobj,_swigarg0) (_swigobj->GetParent(_swigarg0)) | |
7781 | static PyObject *_wrap_wxTreeCtrl_GetItemParent(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7782 | PyObject * _resultobj; | |
7783 | wxTreeItemId * _result; | |
7784 | wxPyTreeCtrl * _arg0; | |
7785 | wxTreeItemId * _arg1; | |
7786 | PyObject * _argo0 = 0; | |
7787 | PyObject * _argo1 = 0; | |
7788 | char *_kwnames[] = { "self","item", NULL }; | |
7789 | char _ptemp[128]; | |
7790 | ||
7791 | self = self; | |
7792 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetItemParent",_kwnames,&_argo0,&_argo1)) | |
7793 | return NULL; | |
7794 | if (_argo0) { | |
7795 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7796 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7797 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetItemParent. Expected _wxPyTreeCtrl_p."); | |
7798 | return NULL; | |
7799 | } | |
7800 | } | |
7801 | if (_argo1) { | |
7802 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7803 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7804 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetItemParent. Expected _wxTreeItemId_p."); | |
7805 | return NULL; | |
7806 | } | |
7807 | } | |
7808 | { | |
7809 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7810 | _result = new wxTreeItemId (wxTreeCtrl_GetItemParent(_arg0,*_arg1)); | |
7811 | ||
7812 | wxPyEndAllowThreads(__tstate); | |
7813 | if (PyErr_Occurred()) return NULL; | |
7814 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
7815 | _resultobj = Py_BuildValue("s",_ptemp); | |
7816 | return _resultobj; | |
7817 | } | |
7818 | ||
7819 | static PyObject * wxPyTreeCtrl_GetSelections(wxPyTreeCtrl *self) { | |
7820 | wxPyBeginBlockThreads(); | |
7821 | PyObject* rval = PyList_New(0); | |
7822 | wxArrayTreeItemIds array; | |
7823 | size_t num, x; | |
7824 | num = self->GetSelections(array); | |
7825 | for (x=0; x < num; x++) { | |
7826 | wxTreeItemId *tii = new wxTreeItemId(array.Item(x)); | |
7827 | PyObject* item = wxPyConstructObject((void*)tii, "wxTreeItemId", TRUE); | |
7828 | PyList_Append(rval, item); | |
7829 | } | |
7830 | wxPyEndBlockThreads(); | |
7831 | return rval; | |
7832 | } | |
7833 | static PyObject *_wrap_wxTreeCtrl_GetSelections(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7834 | PyObject * _resultobj; | |
7835 | PyObject * _result; | |
7836 | wxPyTreeCtrl * _arg0; | |
7837 | PyObject * _argo0 = 0; | |
7838 | char *_kwnames[] = { "self", NULL }; | |
7839 | ||
7840 | self = self; | |
7841 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSelections",_kwnames,&_argo0)) | |
7842 | return NULL; | |
7843 | if (_argo0) { | |
7844 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7845 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7846 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSelections. Expected _wxPyTreeCtrl_p."); | |
7847 | return NULL; | |
7848 | } | |
7849 | } | |
7850 | { | |
7851 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7852 | _result = (PyObject *)wxPyTreeCtrl_GetSelections(_arg0); | |
7853 | ||
7854 | wxPyEndAllowThreads(__tstate); | |
7855 | if (PyErr_Occurred()) return NULL; | |
7856 | }{ | |
7857 | _resultobj = _result; | |
7858 | } | |
7859 | return _resultobj; | |
7860 | } | |
7861 | ||
7862 | #define wxTreeCtrl_GetChildrenCount(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetChildrenCount(_swigarg0,_swigarg1)) | |
7863 | static PyObject *_wrap_wxTreeCtrl_GetChildrenCount(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7864 | PyObject * _resultobj; | |
7865 | size_t _result; | |
7866 | wxPyTreeCtrl * _arg0; | |
7867 | wxTreeItemId * _arg1; | |
7868 | bool _arg2 = (bool ) TRUE; | |
7869 | PyObject * _argo0 = 0; | |
7870 | PyObject * _argo1 = 0; | |
7871 | int tempbool2 = (int) TRUE; | |
7872 | char *_kwnames[] = { "self","item","recursively", NULL }; | |
7873 | ||
7874 | self = self; | |
7875 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_GetChildrenCount",_kwnames,&_argo0,&_argo1,&tempbool2)) | |
7876 | return NULL; | |
7877 | if (_argo0) { | |
7878 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7879 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7880 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetChildrenCount. Expected _wxPyTreeCtrl_p."); | |
7881 | return NULL; | |
7882 | } | |
7883 | } | |
7884 | if (_argo1) { | |
7885 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7886 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7887 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetChildrenCount. Expected _wxTreeItemId_p."); | |
7888 | return NULL; | |
7889 | } | |
7890 | } | |
7891 | _arg2 = (bool ) tempbool2; | |
7892 | { | |
7893 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7894 | _result = (size_t )wxTreeCtrl_GetChildrenCount(_arg0,*_arg1,_arg2); | |
7895 | ||
7896 | wxPyEndAllowThreads(__tstate); | |
7897 | if (PyErr_Occurred()) return NULL; | |
7898 | } _resultobj = Py_BuildValue("i",_result); | |
7899 | return _resultobj; | |
7900 | } | |
7901 | ||
7902 | #define wxTreeCtrl_GetFirstChild(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetFirstChild(_swigarg0,_swigarg1)) | |
7903 | static PyObject *_wrap_wxTreeCtrl_GetFirstChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7904 | PyObject * _resultobj; | |
7905 | wxTreeItemId * _result; | |
7906 | wxPyTreeCtrl * _arg0; | |
7907 | wxTreeItemId * _arg1; | |
7908 | long * _arg2; | |
7909 | PyObject * _argo0 = 0; | |
7910 | PyObject * _argo1 = 0; | |
7911 | long temp; | |
7912 | PyObject * _obj2 = 0; | |
7913 | char *_kwnames[] = { "self","item","INOUT", NULL }; | |
7914 | char _ptemp[128]; | |
7915 | ||
7916 | self = self; | |
7917 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_GetFirstChild",_kwnames,&_argo0,&_argo1,&_obj2)) | |
7918 | return NULL; | |
7919 | if (_argo0) { | |
7920 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7921 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7922 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetFirstChild. Expected _wxPyTreeCtrl_p."); | |
7923 | return NULL; | |
7924 | } | |
7925 | } | |
7926 | if (_argo1) { | |
7927 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7928 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7929 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetFirstChild. Expected _wxTreeItemId_p."); | |
7930 | return NULL; | |
7931 | } | |
7932 | } | |
7933 | { | |
7934 | temp = (long) PyInt_AsLong(_obj2); | |
7935 | _arg2 = &temp; | |
7936 | } | |
7937 | { | |
7938 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7939 | _result = new wxTreeItemId (wxTreeCtrl_GetFirstChild(_arg0,*_arg1,*_arg2)); | |
7940 | ||
7941 | wxPyEndAllowThreads(__tstate); | |
7942 | if (PyErr_Occurred()) return NULL; | |
7943 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
7944 | _resultobj = Py_BuildValue("s",_ptemp); | |
7945 | { | |
7946 | PyObject *o; | |
7947 | o = PyInt_FromLong((long) (*_arg2)); | |
7948 | _resultobj = t_output_helper(_resultobj, o); | |
7949 | } | |
7950 | return _resultobj; | |
7951 | } | |
7952 | ||
7953 | #define wxTreeCtrl_GetNextChild(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetNextChild(_swigarg0,_swigarg1)) | |
7954 | static PyObject *_wrap_wxTreeCtrl_GetNextChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
7955 | PyObject * _resultobj; | |
7956 | wxTreeItemId * _result; | |
7957 | wxPyTreeCtrl * _arg0; | |
7958 | wxTreeItemId * _arg1; | |
7959 | long * _arg2; | |
7960 | PyObject * _argo0 = 0; | |
7961 | PyObject * _argo1 = 0; | |
7962 | long temp; | |
7963 | PyObject * _obj2 = 0; | |
7964 | char *_kwnames[] = { "self","item","INOUT", NULL }; | |
7965 | char _ptemp[128]; | |
7966 | ||
7967 | self = self; | |
7968 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_GetNextChild",_kwnames,&_argo0,&_argo1,&_obj2)) | |
7969 | return NULL; | |
7970 | if (_argo0) { | |
7971 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
7972 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
7973 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetNextChild. Expected _wxPyTreeCtrl_p."); | |
7974 | return NULL; | |
7975 | } | |
7976 | } | |
7977 | if (_argo1) { | |
7978 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
7979 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
7980 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetNextChild. Expected _wxTreeItemId_p."); | |
7981 | return NULL; | |
7982 | } | |
7983 | } | |
7984 | { | |
7985 | temp = (long) PyInt_AsLong(_obj2); | |
7986 | _arg2 = &temp; | |
7987 | } | |
7988 | { | |
7989 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
7990 | _result = new wxTreeItemId (wxTreeCtrl_GetNextChild(_arg0,*_arg1,*_arg2)); | |
7991 | ||
7992 | wxPyEndAllowThreads(__tstate); | |
7993 | if (PyErr_Occurred()) return NULL; | |
7994 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
7995 | _resultobj = Py_BuildValue("s",_ptemp); | |
7996 | { | |
7997 | PyObject *o; | |
7998 | o = PyInt_FromLong((long) (*_arg2)); | |
7999 | _resultobj = t_output_helper(_resultobj, o); | |
8000 | } | |
8001 | return _resultobj; | |
8002 | } | |
8003 | ||
8004 | #define wxTreeCtrl_GetNextSibling(_swigobj,_swigarg0) (_swigobj->GetNextSibling(_swigarg0)) | |
8005 | static PyObject *_wrap_wxTreeCtrl_GetNextSibling(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8006 | PyObject * _resultobj; | |
8007 | wxTreeItemId * _result; | |
8008 | wxPyTreeCtrl * _arg0; | |
8009 | wxTreeItemId * _arg1; | |
8010 | PyObject * _argo0 = 0; | |
8011 | PyObject * _argo1 = 0; | |
8012 | char *_kwnames[] = { "self","item", NULL }; | |
8013 | char _ptemp[128]; | |
8014 | ||
8015 | self = self; | |
8016 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetNextSibling",_kwnames,&_argo0,&_argo1)) | |
8017 | return NULL; | |
8018 | if (_argo0) { | |
8019 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8020 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8021 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetNextSibling. Expected _wxPyTreeCtrl_p."); | |
8022 | return NULL; | |
8023 | } | |
8024 | } | |
8025 | if (_argo1) { | |
8026 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8027 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8028 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetNextSibling. Expected _wxTreeItemId_p."); | |
8029 | return NULL; | |
8030 | } | |
8031 | } | |
8032 | { | |
8033 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8034 | _result = new wxTreeItemId (wxTreeCtrl_GetNextSibling(_arg0,*_arg1)); | |
8035 | ||
8036 | wxPyEndAllowThreads(__tstate); | |
8037 | if (PyErr_Occurred()) return NULL; | |
8038 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8039 | _resultobj = Py_BuildValue("s",_ptemp); | |
8040 | return _resultobj; | |
8041 | } | |
8042 | ||
8043 | #define wxTreeCtrl_GetPrevSibling(_swigobj,_swigarg0) (_swigobj->GetPrevSibling(_swigarg0)) | |
8044 | static PyObject *_wrap_wxTreeCtrl_GetPrevSibling(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8045 | PyObject * _resultobj; | |
8046 | wxTreeItemId * _result; | |
8047 | wxPyTreeCtrl * _arg0; | |
8048 | wxTreeItemId * _arg1; | |
8049 | PyObject * _argo0 = 0; | |
8050 | PyObject * _argo1 = 0; | |
8051 | char *_kwnames[] = { "self","item", NULL }; | |
8052 | char _ptemp[128]; | |
8053 | ||
8054 | self = self; | |
8055 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetPrevSibling",_kwnames,&_argo0,&_argo1)) | |
8056 | return NULL; | |
8057 | if (_argo0) { | |
8058 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8059 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8060 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetPrevSibling. Expected _wxPyTreeCtrl_p."); | |
8061 | return NULL; | |
8062 | } | |
8063 | } | |
8064 | if (_argo1) { | |
8065 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8066 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8067 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetPrevSibling. Expected _wxTreeItemId_p."); | |
8068 | return NULL; | |
8069 | } | |
8070 | } | |
8071 | { | |
8072 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8073 | _result = new wxTreeItemId (wxTreeCtrl_GetPrevSibling(_arg0,*_arg1)); | |
8074 | ||
8075 | wxPyEndAllowThreads(__tstate); | |
8076 | if (PyErr_Occurred()) return NULL; | |
8077 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8078 | _resultobj = Py_BuildValue("s",_ptemp); | |
8079 | return _resultobj; | |
8080 | } | |
8081 | ||
8082 | #define wxTreeCtrl_GetFirstVisibleItem(_swigobj) (_swigobj->GetFirstVisibleItem()) | |
8083 | static PyObject *_wrap_wxTreeCtrl_GetFirstVisibleItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8084 | PyObject * _resultobj; | |
8085 | wxTreeItemId * _result; | |
8086 | wxPyTreeCtrl * _arg0; | |
8087 | PyObject * _argo0 = 0; | |
8088 | char *_kwnames[] = { "self", NULL }; | |
8089 | char _ptemp[128]; | |
8090 | ||
8091 | self = self; | |
8092 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetFirstVisibleItem",_kwnames,&_argo0)) | |
8093 | return NULL; | |
8094 | if (_argo0) { | |
8095 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8096 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8097 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetFirstVisibleItem. Expected _wxPyTreeCtrl_p."); | |
8098 | return NULL; | |
8099 | } | |
8100 | } | |
8101 | { | |
8102 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8103 | _result = new wxTreeItemId (wxTreeCtrl_GetFirstVisibleItem(_arg0)); | |
8104 | ||
8105 | wxPyEndAllowThreads(__tstate); | |
8106 | if (PyErr_Occurred()) return NULL; | |
8107 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8108 | _resultobj = Py_BuildValue("s",_ptemp); | |
8109 | return _resultobj; | |
8110 | } | |
8111 | ||
8112 | #define wxTreeCtrl_GetNextVisible(_swigobj,_swigarg0) (_swigobj->GetNextVisible(_swigarg0)) | |
8113 | static PyObject *_wrap_wxTreeCtrl_GetNextVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8114 | PyObject * _resultobj; | |
8115 | wxTreeItemId * _result; | |
8116 | wxPyTreeCtrl * _arg0; | |
8117 | wxTreeItemId * _arg1; | |
8118 | PyObject * _argo0 = 0; | |
8119 | PyObject * _argo1 = 0; | |
8120 | char *_kwnames[] = { "self","item", NULL }; | |
8121 | char _ptemp[128]; | |
8122 | ||
8123 | self = self; | |
8124 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetNextVisible",_kwnames,&_argo0,&_argo1)) | |
8125 | return NULL; | |
8126 | if (_argo0) { | |
8127 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8128 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8129 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetNextVisible. Expected _wxPyTreeCtrl_p."); | |
8130 | return NULL; | |
8131 | } | |
8132 | } | |
8133 | if (_argo1) { | |
8134 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8135 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8136 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetNextVisible. Expected _wxTreeItemId_p."); | |
8137 | return NULL; | |
8138 | } | |
8139 | } | |
8140 | { | |
8141 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8142 | _result = new wxTreeItemId (wxTreeCtrl_GetNextVisible(_arg0,*_arg1)); | |
8143 | ||
8144 | wxPyEndAllowThreads(__tstate); | |
8145 | if (PyErr_Occurred()) return NULL; | |
8146 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8147 | _resultobj = Py_BuildValue("s",_ptemp); | |
8148 | return _resultobj; | |
8149 | } | |
8150 | ||
8151 | #define wxTreeCtrl_GetPrevVisible(_swigobj,_swigarg0) (_swigobj->GetPrevVisible(_swigarg0)) | |
8152 | static PyObject *_wrap_wxTreeCtrl_GetPrevVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8153 | PyObject * _resultobj; | |
8154 | wxTreeItemId * _result; | |
8155 | wxPyTreeCtrl * _arg0; | |
8156 | wxTreeItemId * _arg1; | |
8157 | PyObject * _argo0 = 0; | |
8158 | PyObject * _argo1 = 0; | |
8159 | char *_kwnames[] = { "self","item", NULL }; | |
8160 | char _ptemp[128]; | |
8161 | ||
8162 | self = self; | |
8163 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetPrevVisible",_kwnames,&_argo0,&_argo1)) | |
8164 | return NULL; | |
8165 | if (_argo0) { | |
8166 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8167 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8168 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetPrevVisible. Expected _wxPyTreeCtrl_p."); | |
8169 | return NULL; | |
8170 | } | |
8171 | } | |
8172 | if (_argo1) { | |
8173 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8174 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8175 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetPrevVisible. Expected _wxTreeItemId_p."); | |
8176 | return NULL; | |
8177 | } | |
8178 | } | |
8179 | { | |
8180 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8181 | _result = new wxTreeItemId (wxTreeCtrl_GetPrevVisible(_arg0,*_arg1)); | |
8182 | ||
8183 | wxPyEndAllowThreads(__tstate); | |
8184 | if (PyErr_Occurred()) return NULL; | |
8185 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8186 | _resultobj = Py_BuildValue("s",_ptemp); | |
8187 | return _resultobj; | |
8188 | } | |
8189 | ||
8190 | #define wxTreeCtrl_GetLastChild(_swigobj,_swigarg0) (_swigobj->GetLastChild(_swigarg0)) | |
8191 | static PyObject *_wrap_wxTreeCtrl_GetLastChild(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8192 | PyObject * _resultobj; | |
8193 | wxTreeItemId * _result; | |
8194 | wxPyTreeCtrl * _arg0; | |
8195 | wxTreeItemId * _arg1; | |
8196 | PyObject * _argo0 = 0; | |
8197 | PyObject * _argo1 = 0; | |
8198 | char *_kwnames[] = { "self","item", NULL }; | |
8199 | char _ptemp[128]; | |
8200 | ||
8201 | self = self; | |
8202 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_GetLastChild",_kwnames,&_argo0,&_argo1)) | |
8203 | return NULL; | |
8204 | if (_argo0) { | |
8205 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8206 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8207 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetLastChild. Expected _wxPyTreeCtrl_p."); | |
8208 | return NULL; | |
8209 | } | |
8210 | } | |
8211 | if (_argo1) { | |
8212 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8213 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8214 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetLastChild. Expected _wxTreeItemId_p."); | |
8215 | return NULL; | |
8216 | } | |
8217 | } | |
8218 | { | |
8219 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8220 | _result = new wxTreeItemId (wxTreeCtrl_GetLastChild(_arg0,*_arg1)); | |
8221 | ||
8222 | wxPyEndAllowThreads(__tstate); | |
8223 | if (PyErr_Occurred()) return NULL; | |
8224 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8225 | _resultobj = Py_BuildValue("s",_ptemp); | |
8226 | return _resultobj; | |
8227 | } | |
8228 | ||
8229 | #define wxTreeCtrl_AddRoot(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->AddRoot(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
8230 | static PyObject *_wrap_wxTreeCtrl_AddRoot(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8231 | PyObject * _resultobj; | |
8232 | wxTreeItemId * _result; | |
8233 | wxPyTreeCtrl * _arg0; | |
8234 | wxString * _arg1; | |
8235 | int _arg2 = (int ) -1; | |
8236 | int _arg3 = (int ) -1; | |
8237 | wxPyTreeItemData * _arg4 = (wxPyTreeItemData *) NULL; | |
8238 | PyObject * _argo0 = 0; | |
8239 | PyObject * _obj1 = 0; | |
8240 | PyObject * _argo4 = 0; | |
8241 | char *_kwnames[] = { "self","text","image","selectedImage","data", NULL }; | |
8242 | char _ptemp[128]; | |
8243 | ||
8244 | self = self; | |
8245 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iiO:wxTreeCtrl_AddRoot",_kwnames,&_argo0,&_obj1,&_arg2,&_arg3,&_argo4)) | |
8246 | return NULL; | |
8247 | if (_argo0) { | |
8248 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8249 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8250 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_AddRoot. Expected _wxPyTreeCtrl_p."); | |
8251 | return NULL; | |
8252 | } | |
8253 | } | |
8254 | { | |
8255 | #if PYTHON_API_VERSION >= 1009 | |
8256 | char* tmpPtr; int tmpSize; | |
8257 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
8258 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8259 | return NULL; | |
8260 | } | |
8261 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
8262 | return NULL; | |
8263 | _arg1 = new wxString(tmpPtr, tmpSize); | |
8264 | #else | |
8265 | if (!PyString_Check(_obj1)) { | |
8266 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8267 | return NULL; | |
8268 | } | |
8269 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); | |
8270 | #endif | |
8271 | } | |
8272 | if (_argo4) { | |
8273 | if (_argo4 == Py_None) { _arg4 = NULL; } | |
8274 | else if (SWIG_GetPtrObj(_argo4,(void **) &_arg4,"_wxPyTreeItemData_p")) { | |
8275 | PyErr_SetString(PyExc_TypeError,"Type error in argument 5 of wxTreeCtrl_AddRoot. Expected _wxPyTreeItemData_p."); | |
8276 | return NULL; | |
8277 | } | |
8278 | } | |
8279 | { | |
8280 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8281 | _result = new wxTreeItemId (wxTreeCtrl_AddRoot(_arg0,*_arg1,_arg2,_arg3,_arg4)); | |
8282 | ||
8283 | wxPyEndAllowThreads(__tstate); | |
8284 | if (PyErr_Occurred()) return NULL; | |
8285 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8286 | _resultobj = Py_BuildValue("s",_ptemp); | |
8287 | { | |
8288 | if (_obj1) | |
8289 | delete _arg1; | |
8290 | } | |
8291 | return _resultobj; | |
8292 | } | |
8293 | ||
8294 | #define wxTreeCtrl_PrependItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->PrependItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
8295 | static PyObject *_wrap_wxTreeCtrl_PrependItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8296 | PyObject * _resultobj; | |
8297 | wxTreeItemId * _result; | |
8298 | wxPyTreeCtrl * _arg0; | |
8299 | wxTreeItemId * _arg1; | |
8300 | wxString * _arg2; | |
8301 | int _arg3 = (int ) -1; | |
8302 | int _arg4 = (int ) -1; | |
8303 | wxPyTreeItemData * _arg5 = (wxPyTreeItemData *) NULL; | |
8304 | PyObject * _argo0 = 0; | |
8305 | PyObject * _argo1 = 0; | |
8306 | PyObject * _obj2 = 0; | |
8307 | PyObject * _argo5 = 0; | |
8308 | char *_kwnames[] = { "self","parent","text","image","selectedImage","data", NULL }; | |
8309 | char _ptemp[128]; | |
8310 | ||
8311 | self = self; | |
8312 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|iiO:wxTreeCtrl_PrependItem",_kwnames,&_argo0,&_argo1,&_obj2,&_arg3,&_arg4,&_argo5)) | |
8313 | return NULL; | |
8314 | if (_argo0) { | |
8315 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8316 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8317 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_PrependItem. Expected _wxPyTreeCtrl_p."); | |
8318 | return NULL; | |
8319 | } | |
8320 | } | |
8321 | if (_argo1) { | |
8322 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8323 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8324 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_PrependItem. Expected _wxTreeItemId_p."); | |
8325 | return NULL; | |
8326 | } | |
8327 | } | |
8328 | { | |
8329 | #if PYTHON_API_VERSION >= 1009 | |
8330 | char* tmpPtr; int tmpSize; | |
8331 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
8332 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8333 | return NULL; | |
8334 | } | |
8335 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8336 | return NULL; | |
8337 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8338 | #else | |
8339 | if (!PyString_Check(_obj2)) { | |
8340 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8341 | return NULL; | |
8342 | } | |
8343 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
8344 | #endif | |
8345 | } | |
8346 | if (_argo5) { | |
8347 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
8348 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxPyTreeItemData_p")) { | |
8349 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of wxTreeCtrl_PrependItem. Expected _wxPyTreeItemData_p."); | |
8350 | return NULL; | |
8351 | } | |
8352 | } | |
8353 | { | |
8354 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8355 | _result = new wxTreeItemId (wxTreeCtrl_PrependItem(_arg0,*_arg1,*_arg2,_arg3,_arg4,_arg5)); | |
8356 | ||
8357 | wxPyEndAllowThreads(__tstate); | |
8358 | if (PyErr_Occurred()) return NULL; | |
8359 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8360 | _resultobj = Py_BuildValue("s",_ptemp); | |
8361 | { | |
8362 | if (_obj2) | |
8363 | delete _arg2; | |
8364 | } | |
8365 | return _resultobj; | |
8366 | } | |
8367 | ||
8368 | #define wxTreeCtrl_InsertItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->InsertItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
8369 | static PyObject *_wrap_wxTreeCtrl_InsertItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8370 | PyObject * _resultobj; | |
8371 | wxTreeItemId * _result; | |
8372 | wxPyTreeCtrl * _arg0; | |
8373 | wxTreeItemId * _arg1; | |
8374 | wxTreeItemId * _arg2; | |
8375 | wxString * _arg3; | |
8376 | int _arg4 = (int ) -1; | |
8377 | int _arg5 = (int ) -1; | |
8378 | wxPyTreeItemData * _arg6 = (wxPyTreeItemData *) NULL; | |
8379 | PyObject * _argo0 = 0; | |
8380 | PyObject * _argo1 = 0; | |
8381 | PyObject * _argo2 = 0; | |
8382 | PyObject * _obj3 = 0; | |
8383 | PyObject * _argo6 = 0; | |
8384 | char *_kwnames[] = { "self","parent","idPrevious","text","image","selectedImage","data", NULL }; | |
8385 | char _ptemp[128]; | |
8386 | ||
8387 | self = self; | |
8388 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOOO|iiO:wxTreeCtrl_InsertItem",_kwnames,&_argo0,&_argo1,&_argo2,&_obj3,&_arg4,&_arg5,&_argo6)) | |
8389 | return NULL; | |
8390 | if (_argo0) { | |
8391 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8392 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8393 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_InsertItem. Expected _wxPyTreeCtrl_p."); | |
8394 | return NULL; | |
8395 | } | |
8396 | } | |
8397 | if (_argo1) { | |
8398 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8399 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8400 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_InsertItem. Expected _wxTreeItemId_p."); | |
8401 | return NULL; | |
8402 | } | |
8403 | } | |
8404 | if (_argo2) { | |
8405 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
8406 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxTreeItemId_p")) { | |
8407 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxTreeCtrl_InsertItem. Expected _wxTreeItemId_p."); | |
8408 | return NULL; | |
8409 | } | |
8410 | } | |
8411 | { | |
8412 | #if PYTHON_API_VERSION >= 1009 | |
8413 | char* tmpPtr; int tmpSize; | |
8414 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
8415 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8416 | return NULL; | |
8417 | } | |
8418 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
8419 | return NULL; | |
8420 | _arg3 = new wxString(tmpPtr, tmpSize); | |
8421 | #else | |
8422 | if (!PyString_Check(_obj3)) { | |
8423 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8424 | return NULL; | |
8425 | } | |
8426 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); | |
8427 | #endif | |
8428 | } | |
8429 | if (_argo6) { | |
8430 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
8431 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxPyTreeItemData_p")) { | |
8432 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxTreeCtrl_InsertItem. Expected _wxPyTreeItemData_p."); | |
8433 | return NULL; | |
8434 | } | |
8435 | } | |
8436 | { | |
8437 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8438 | _result = new wxTreeItemId (wxTreeCtrl_InsertItem(_arg0,*_arg1,*_arg2,*_arg3,_arg4,_arg5,_arg6)); | |
8439 | ||
8440 | wxPyEndAllowThreads(__tstate); | |
8441 | if (PyErr_Occurred()) return NULL; | |
8442 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8443 | _resultobj = Py_BuildValue("s",_ptemp); | |
8444 | { | |
8445 | if (_obj3) | |
8446 | delete _arg3; | |
8447 | } | |
8448 | return _resultobj; | |
8449 | } | |
8450 | ||
8451 | #define wxTreeCtrl_InsertItemBefore(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->InsertItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)) | |
8452 | static PyObject *_wrap_wxTreeCtrl_InsertItemBefore(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8453 | PyObject * _resultobj; | |
8454 | wxTreeItemId * _result; | |
8455 | wxPyTreeCtrl * _arg0; | |
8456 | wxTreeItemId * _arg1; | |
8457 | size_t _arg2; | |
8458 | wxString * _arg3; | |
8459 | int _arg4 = (int ) -1; | |
8460 | int _arg5 = (int ) -1; | |
8461 | wxTreeItemData * _arg6 = (wxTreeItemData *) NULL; | |
8462 | PyObject * _argo0 = 0; | |
8463 | PyObject * _argo1 = 0; | |
8464 | PyObject * _obj3 = 0; | |
8465 | PyObject * _argo6 = 0; | |
8466 | char *_kwnames[] = { "self","parent","before","text","image","selectedImage","data", NULL }; | |
8467 | char _ptemp[128]; | |
8468 | ||
8469 | self = self; | |
8470 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOiO|iiO:wxTreeCtrl_InsertItemBefore",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_arg4,&_arg5,&_argo6)) | |
8471 | return NULL; | |
8472 | if (_argo0) { | |
8473 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8474 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8475 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_InsertItemBefore. Expected _wxPyTreeCtrl_p."); | |
8476 | return NULL; | |
8477 | } | |
8478 | } | |
8479 | if (_argo1) { | |
8480 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8481 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8482 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_InsertItemBefore. Expected _wxTreeItemId_p."); | |
8483 | return NULL; | |
8484 | } | |
8485 | } | |
8486 | { | |
8487 | #if PYTHON_API_VERSION >= 1009 | |
8488 | char* tmpPtr; int tmpSize; | |
8489 | if (!PyString_Check(_obj3) && !PyUnicode_Check(_obj3)) { | |
8490 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8491 | return NULL; | |
8492 | } | |
8493 | if (PyString_AsStringAndSize(_obj3, &tmpPtr, &tmpSize) == -1) | |
8494 | return NULL; | |
8495 | _arg3 = new wxString(tmpPtr, tmpSize); | |
8496 | #else | |
8497 | if (!PyString_Check(_obj3)) { | |
8498 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8499 | return NULL; | |
8500 | } | |
8501 | _arg3 = new wxString(PyString_AS_STRING(_obj3), PyString_GET_SIZE(_obj3)); | |
8502 | #endif | |
8503 | } | |
8504 | if (_argo6) { | |
8505 | if (_argo6 == Py_None) { _arg6 = NULL; } | |
8506 | else if (SWIG_GetPtrObj(_argo6,(void **) &_arg6,"_wxTreeItemData_p")) { | |
8507 | PyErr_SetString(PyExc_TypeError,"Type error in argument 7 of wxTreeCtrl_InsertItemBefore. Expected _wxTreeItemData_p."); | |
8508 | return NULL; | |
8509 | } | |
8510 | } | |
8511 | { | |
8512 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8513 | _result = new wxTreeItemId (wxTreeCtrl_InsertItemBefore(_arg0,*_arg1,_arg2,*_arg3,_arg4,_arg5,_arg6)); | |
8514 | ||
8515 | wxPyEndAllowThreads(__tstate); | |
8516 | if (PyErr_Occurred()) return NULL; | |
8517 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8518 | _resultobj = Py_BuildValue("s",_ptemp); | |
8519 | { | |
8520 | if (_obj3) | |
8521 | delete _arg3; | |
8522 | } | |
8523 | return _resultobj; | |
8524 | } | |
8525 | ||
8526 | #define wxTreeCtrl_AppendItem(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->AppendItem(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)) | |
8527 | static PyObject *_wrap_wxTreeCtrl_AppendItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8528 | PyObject * _resultobj; | |
8529 | wxTreeItemId * _result; | |
8530 | wxPyTreeCtrl * _arg0; | |
8531 | wxTreeItemId * _arg1; | |
8532 | wxString * _arg2; | |
8533 | int _arg3 = (int ) -1; | |
8534 | int _arg4 = (int ) -1; | |
8535 | wxPyTreeItemData * _arg5 = (wxPyTreeItemData *) NULL; | |
8536 | PyObject * _argo0 = 0; | |
8537 | PyObject * _argo1 = 0; | |
8538 | PyObject * _obj2 = 0; | |
8539 | PyObject * _argo5 = 0; | |
8540 | char *_kwnames[] = { "self","parent","text","image","selectedImage","data", NULL }; | |
8541 | char _ptemp[128]; | |
8542 | ||
8543 | self = self; | |
8544 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|iiO:wxTreeCtrl_AppendItem",_kwnames,&_argo0,&_argo1,&_obj2,&_arg3,&_arg4,&_argo5)) | |
8545 | return NULL; | |
8546 | if (_argo0) { | |
8547 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8548 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8549 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_AppendItem. Expected _wxPyTreeCtrl_p."); | |
8550 | return NULL; | |
8551 | } | |
8552 | } | |
8553 | if (_argo1) { | |
8554 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8555 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8556 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_AppendItem. Expected _wxTreeItemId_p."); | |
8557 | return NULL; | |
8558 | } | |
8559 | } | |
8560 | { | |
8561 | #if PYTHON_API_VERSION >= 1009 | |
8562 | char* tmpPtr; int tmpSize; | |
8563 | if (!PyString_Check(_obj2) && !PyUnicode_Check(_obj2)) { | |
8564 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8565 | return NULL; | |
8566 | } | |
8567 | if (PyString_AsStringAndSize(_obj2, &tmpPtr, &tmpSize) == -1) | |
8568 | return NULL; | |
8569 | _arg2 = new wxString(tmpPtr, tmpSize); | |
8570 | #else | |
8571 | if (!PyString_Check(_obj2)) { | |
8572 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
8573 | return NULL; | |
8574 | } | |
8575 | _arg2 = new wxString(PyString_AS_STRING(_obj2), PyString_GET_SIZE(_obj2)); | |
8576 | #endif | |
8577 | } | |
8578 | if (_argo5) { | |
8579 | if (_argo5 == Py_None) { _arg5 = NULL; } | |
8580 | else if (SWIG_GetPtrObj(_argo5,(void **) &_arg5,"_wxPyTreeItemData_p")) { | |
8581 | PyErr_SetString(PyExc_TypeError,"Type error in argument 6 of wxTreeCtrl_AppendItem. Expected _wxPyTreeItemData_p."); | |
8582 | return NULL; | |
8583 | } | |
8584 | } | |
8585 | { | |
8586 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8587 | _result = new wxTreeItemId (wxTreeCtrl_AppendItem(_arg0,*_arg1,*_arg2,_arg3,_arg4,_arg5)); | |
8588 | ||
8589 | wxPyEndAllowThreads(__tstate); | |
8590 | if (PyErr_Occurred()) return NULL; | |
8591 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
8592 | _resultobj = Py_BuildValue("s",_ptemp); | |
8593 | { | |
8594 | if (_obj2) | |
8595 | delete _arg2; | |
8596 | } | |
8597 | return _resultobj; | |
8598 | } | |
8599 | ||
8600 | #define wxTreeCtrl_Delete(_swigobj,_swigarg0) (_swigobj->Delete(_swigarg0)) | |
8601 | static PyObject *_wrap_wxTreeCtrl_Delete(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8602 | PyObject * _resultobj; | |
8603 | wxPyTreeCtrl * _arg0; | |
8604 | wxTreeItemId * _arg1; | |
8605 | PyObject * _argo0 = 0; | |
8606 | PyObject * _argo1 = 0; | |
8607 | char *_kwnames[] = { "self","item", NULL }; | |
8608 | ||
8609 | self = self; | |
8610 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Delete",_kwnames,&_argo0,&_argo1)) | |
8611 | return NULL; | |
8612 | if (_argo0) { | |
8613 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8614 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8615 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Delete. Expected _wxPyTreeCtrl_p."); | |
8616 | return NULL; | |
8617 | } | |
8618 | } | |
8619 | if (_argo1) { | |
8620 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8621 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8622 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Delete. Expected _wxTreeItemId_p."); | |
8623 | return NULL; | |
8624 | } | |
8625 | } | |
8626 | { | |
8627 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8628 | wxTreeCtrl_Delete(_arg0,*_arg1); | |
8629 | ||
8630 | wxPyEndAllowThreads(__tstate); | |
8631 | if (PyErr_Occurred()) return NULL; | |
8632 | } Py_INCREF(Py_None); | |
8633 | _resultobj = Py_None; | |
8634 | return _resultobj; | |
8635 | } | |
8636 | ||
8637 | #define wxTreeCtrl_DeleteChildren(_swigobj,_swigarg0) (_swigobj->DeleteChildren(_swigarg0)) | |
8638 | static PyObject *_wrap_wxTreeCtrl_DeleteChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8639 | PyObject * _resultobj; | |
8640 | wxPyTreeCtrl * _arg0; | |
8641 | wxTreeItemId * _arg1; | |
8642 | PyObject * _argo0 = 0; | |
8643 | PyObject * _argo1 = 0; | |
8644 | char *_kwnames[] = { "self","item", NULL }; | |
8645 | ||
8646 | self = self; | |
8647 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_DeleteChildren",_kwnames,&_argo0,&_argo1)) | |
8648 | return NULL; | |
8649 | if (_argo0) { | |
8650 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8651 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8652 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_DeleteChildren. Expected _wxPyTreeCtrl_p."); | |
8653 | return NULL; | |
8654 | } | |
8655 | } | |
8656 | if (_argo1) { | |
8657 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8658 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8659 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_DeleteChildren. Expected _wxTreeItemId_p."); | |
8660 | return NULL; | |
8661 | } | |
8662 | } | |
8663 | { | |
8664 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8665 | wxTreeCtrl_DeleteChildren(_arg0,*_arg1); | |
8666 | ||
8667 | wxPyEndAllowThreads(__tstate); | |
8668 | if (PyErr_Occurred()) return NULL; | |
8669 | } Py_INCREF(Py_None); | |
8670 | _resultobj = Py_None; | |
8671 | return _resultobj; | |
8672 | } | |
8673 | ||
8674 | #define wxTreeCtrl_DeleteAllItems(_swigobj) (_swigobj->DeleteAllItems()) | |
8675 | static PyObject *_wrap_wxTreeCtrl_DeleteAllItems(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8676 | PyObject * _resultobj; | |
8677 | wxPyTreeCtrl * _arg0; | |
8678 | PyObject * _argo0 = 0; | |
8679 | char *_kwnames[] = { "self", NULL }; | |
8680 | ||
8681 | self = self; | |
8682 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_DeleteAllItems",_kwnames,&_argo0)) | |
8683 | return NULL; | |
8684 | if (_argo0) { | |
8685 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8686 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8687 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_DeleteAllItems. Expected _wxPyTreeCtrl_p."); | |
8688 | return NULL; | |
8689 | } | |
8690 | } | |
8691 | { | |
8692 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8693 | wxTreeCtrl_DeleteAllItems(_arg0); | |
8694 | ||
8695 | wxPyEndAllowThreads(__tstate); | |
8696 | if (PyErr_Occurred()) return NULL; | |
8697 | } Py_INCREF(Py_None); | |
8698 | _resultobj = Py_None; | |
8699 | return _resultobj; | |
8700 | } | |
8701 | ||
8702 | #define wxTreeCtrl_Expand(_swigobj,_swigarg0) (_swigobj->Expand(_swigarg0)) | |
8703 | static PyObject *_wrap_wxTreeCtrl_Expand(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8704 | PyObject * _resultobj; | |
8705 | wxPyTreeCtrl * _arg0; | |
8706 | wxTreeItemId * _arg1; | |
8707 | PyObject * _argo0 = 0; | |
8708 | PyObject * _argo1 = 0; | |
8709 | char *_kwnames[] = { "self","item", NULL }; | |
8710 | ||
8711 | self = self; | |
8712 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Expand",_kwnames,&_argo0,&_argo1)) | |
8713 | return NULL; | |
8714 | if (_argo0) { | |
8715 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8716 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8717 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Expand. Expected _wxPyTreeCtrl_p."); | |
8718 | return NULL; | |
8719 | } | |
8720 | } | |
8721 | if (_argo1) { | |
8722 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8723 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8724 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Expand. Expected _wxTreeItemId_p."); | |
8725 | return NULL; | |
8726 | } | |
8727 | } | |
8728 | { | |
8729 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8730 | wxTreeCtrl_Expand(_arg0,*_arg1); | |
8731 | ||
8732 | wxPyEndAllowThreads(__tstate); | |
8733 | if (PyErr_Occurred()) return NULL; | |
8734 | } Py_INCREF(Py_None); | |
8735 | _resultobj = Py_None; | |
8736 | return _resultobj; | |
8737 | } | |
8738 | ||
8739 | #define wxTreeCtrl_Collapse(_swigobj,_swigarg0) (_swigobj->Collapse(_swigarg0)) | |
8740 | static PyObject *_wrap_wxTreeCtrl_Collapse(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8741 | PyObject * _resultobj; | |
8742 | wxPyTreeCtrl * _arg0; | |
8743 | wxTreeItemId * _arg1; | |
8744 | PyObject * _argo0 = 0; | |
8745 | PyObject * _argo1 = 0; | |
8746 | char *_kwnames[] = { "self","item", NULL }; | |
8747 | ||
8748 | self = self; | |
8749 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Collapse",_kwnames,&_argo0,&_argo1)) | |
8750 | return NULL; | |
8751 | if (_argo0) { | |
8752 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8753 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8754 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Collapse. Expected _wxPyTreeCtrl_p."); | |
8755 | return NULL; | |
8756 | } | |
8757 | } | |
8758 | if (_argo1) { | |
8759 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8760 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8761 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Collapse. Expected _wxTreeItemId_p."); | |
8762 | return NULL; | |
8763 | } | |
8764 | } | |
8765 | { | |
8766 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8767 | wxTreeCtrl_Collapse(_arg0,*_arg1); | |
8768 | ||
8769 | wxPyEndAllowThreads(__tstate); | |
8770 | if (PyErr_Occurred()) return NULL; | |
8771 | } Py_INCREF(Py_None); | |
8772 | _resultobj = Py_None; | |
8773 | return _resultobj; | |
8774 | } | |
8775 | ||
8776 | #define wxTreeCtrl_CollapseAndReset(_swigobj,_swigarg0) (_swigobj->CollapseAndReset(_swigarg0)) | |
8777 | static PyObject *_wrap_wxTreeCtrl_CollapseAndReset(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8778 | PyObject * _resultobj; | |
8779 | wxPyTreeCtrl * _arg0; | |
8780 | wxTreeItemId * _arg1; | |
8781 | PyObject * _argo0 = 0; | |
8782 | PyObject * _argo1 = 0; | |
8783 | char *_kwnames[] = { "self","item", NULL }; | |
8784 | ||
8785 | self = self; | |
8786 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_CollapseAndReset",_kwnames,&_argo0,&_argo1)) | |
8787 | return NULL; | |
8788 | if (_argo0) { | |
8789 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8790 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8791 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_CollapseAndReset. Expected _wxPyTreeCtrl_p."); | |
8792 | return NULL; | |
8793 | } | |
8794 | } | |
8795 | if (_argo1) { | |
8796 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8797 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8798 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_CollapseAndReset. Expected _wxTreeItemId_p."); | |
8799 | return NULL; | |
8800 | } | |
8801 | } | |
8802 | { | |
8803 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8804 | wxTreeCtrl_CollapseAndReset(_arg0,*_arg1); | |
8805 | ||
8806 | wxPyEndAllowThreads(__tstate); | |
8807 | if (PyErr_Occurred()) return NULL; | |
8808 | } Py_INCREF(Py_None); | |
8809 | _resultobj = Py_None; | |
8810 | return _resultobj; | |
8811 | } | |
8812 | ||
8813 | #define wxTreeCtrl_Toggle(_swigobj,_swigarg0) (_swigobj->Toggle(_swigarg0)) | |
8814 | static PyObject *_wrap_wxTreeCtrl_Toggle(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8815 | PyObject * _resultobj; | |
8816 | wxPyTreeCtrl * _arg0; | |
8817 | wxTreeItemId * _arg1; | |
8818 | PyObject * _argo0 = 0; | |
8819 | PyObject * _argo1 = 0; | |
8820 | char *_kwnames[] = { "self","item", NULL }; | |
8821 | ||
8822 | self = self; | |
8823 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_Toggle",_kwnames,&_argo0,&_argo1)) | |
8824 | return NULL; | |
8825 | if (_argo0) { | |
8826 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8827 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8828 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Toggle. Expected _wxPyTreeCtrl_p."); | |
8829 | return NULL; | |
8830 | } | |
8831 | } | |
8832 | if (_argo1) { | |
8833 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8834 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8835 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_Toggle. Expected _wxTreeItemId_p."); | |
8836 | return NULL; | |
8837 | } | |
8838 | } | |
8839 | { | |
8840 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8841 | wxTreeCtrl_Toggle(_arg0,*_arg1); | |
8842 | ||
8843 | wxPyEndAllowThreads(__tstate); | |
8844 | if (PyErr_Occurred()) return NULL; | |
8845 | } Py_INCREF(Py_None); | |
8846 | _resultobj = Py_None; | |
8847 | return _resultobj; | |
8848 | } | |
8849 | ||
8850 | #define wxTreeCtrl_Unselect(_swigobj) (_swigobj->Unselect()) | |
8851 | static PyObject *_wrap_wxTreeCtrl_Unselect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8852 | PyObject * _resultobj; | |
8853 | wxPyTreeCtrl * _arg0; | |
8854 | PyObject * _argo0 = 0; | |
8855 | char *_kwnames[] = { "self", NULL }; | |
8856 | ||
8857 | self = self; | |
8858 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_Unselect",_kwnames,&_argo0)) | |
8859 | return NULL; | |
8860 | if (_argo0) { | |
8861 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8862 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8863 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_Unselect. Expected _wxPyTreeCtrl_p."); | |
8864 | return NULL; | |
8865 | } | |
8866 | } | |
8867 | { | |
8868 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8869 | wxTreeCtrl_Unselect(_arg0); | |
8870 | ||
8871 | wxPyEndAllowThreads(__tstate); | |
8872 | if (PyErr_Occurred()) return NULL; | |
8873 | } Py_INCREF(Py_None); | |
8874 | _resultobj = Py_None; | |
8875 | return _resultobj; | |
8876 | } | |
8877 | ||
8878 | #define wxTreeCtrl_UnselectAll(_swigobj) (_swigobj->UnselectAll()) | |
8879 | static PyObject *_wrap_wxTreeCtrl_UnselectAll(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8880 | PyObject * _resultobj; | |
8881 | wxPyTreeCtrl * _arg0; | |
8882 | PyObject * _argo0 = 0; | |
8883 | char *_kwnames[] = { "self", NULL }; | |
8884 | ||
8885 | self = self; | |
8886 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_UnselectAll",_kwnames,&_argo0)) | |
8887 | return NULL; | |
8888 | if (_argo0) { | |
8889 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8890 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8891 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_UnselectAll. Expected _wxPyTreeCtrl_p."); | |
8892 | return NULL; | |
8893 | } | |
8894 | } | |
8895 | { | |
8896 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8897 | wxTreeCtrl_UnselectAll(_arg0); | |
8898 | ||
8899 | wxPyEndAllowThreads(__tstate); | |
8900 | if (PyErr_Occurred()) return NULL; | |
8901 | } Py_INCREF(Py_None); | |
8902 | _resultobj = Py_None; | |
8903 | return _resultobj; | |
8904 | } | |
8905 | ||
8906 | #define wxTreeCtrl_SelectItem(_swigobj,_swigarg0) (_swigobj->SelectItem(_swigarg0)) | |
8907 | static PyObject *_wrap_wxTreeCtrl_SelectItem(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8908 | PyObject * _resultobj; | |
8909 | wxPyTreeCtrl * _arg0; | |
8910 | wxTreeItemId * _arg1; | |
8911 | PyObject * _argo0 = 0; | |
8912 | PyObject * _argo1 = 0; | |
8913 | char *_kwnames[] = { "self","item", NULL }; | |
8914 | ||
8915 | self = self; | |
8916 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SelectItem",_kwnames,&_argo0,&_argo1)) | |
8917 | return NULL; | |
8918 | if (_argo0) { | |
8919 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8920 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8921 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SelectItem. Expected _wxPyTreeCtrl_p."); | |
8922 | return NULL; | |
8923 | } | |
8924 | } | |
8925 | if (_argo1) { | |
8926 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8927 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8928 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SelectItem. Expected _wxTreeItemId_p."); | |
8929 | return NULL; | |
8930 | } | |
8931 | } | |
8932 | { | |
8933 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8934 | wxTreeCtrl_SelectItem(_arg0,*_arg1); | |
8935 | ||
8936 | wxPyEndAllowThreads(__tstate); | |
8937 | if (PyErr_Occurred()) return NULL; | |
8938 | } Py_INCREF(Py_None); | |
8939 | _resultobj = Py_None; | |
8940 | return _resultobj; | |
8941 | } | |
8942 | ||
8943 | #define wxTreeCtrl_EnsureVisible(_swigobj,_swigarg0) (_swigobj->EnsureVisible(_swigarg0)) | |
8944 | static PyObject *_wrap_wxTreeCtrl_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8945 | PyObject * _resultobj; | |
8946 | wxPyTreeCtrl * _arg0; | |
8947 | wxTreeItemId * _arg1; | |
8948 | PyObject * _argo0 = 0; | |
8949 | PyObject * _argo1 = 0; | |
8950 | char *_kwnames[] = { "self","item", NULL }; | |
8951 | ||
8952 | self = self; | |
8953 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_EnsureVisible",_kwnames,&_argo0,&_argo1)) | |
8954 | return NULL; | |
8955 | if (_argo0) { | |
8956 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8957 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8958 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_EnsureVisible. Expected _wxPyTreeCtrl_p."); | |
8959 | return NULL; | |
8960 | } | |
8961 | } | |
8962 | if (_argo1) { | |
8963 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
8964 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
8965 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_EnsureVisible. Expected _wxTreeItemId_p."); | |
8966 | return NULL; | |
8967 | } | |
8968 | } | |
8969 | { | |
8970 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
8971 | wxTreeCtrl_EnsureVisible(_arg0,*_arg1); | |
8972 | ||
8973 | wxPyEndAllowThreads(__tstate); | |
8974 | if (PyErr_Occurred()) return NULL; | |
8975 | } Py_INCREF(Py_None); | |
8976 | _resultobj = Py_None; | |
8977 | return _resultobj; | |
8978 | } | |
8979 | ||
8980 | #define wxTreeCtrl_ScrollTo(_swigobj,_swigarg0) (_swigobj->ScrollTo(_swigarg0)) | |
8981 | static PyObject *_wrap_wxTreeCtrl_ScrollTo(PyObject *self, PyObject *args, PyObject *kwargs) { | |
8982 | PyObject * _resultobj; | |
8983 | wxPyTreeCtrl * _arg0; | |
8984 | wxTreeItemId * _arg1; | |
8985 | PyObject * _argo0 = 0; | |
8986 | PyObject * _argo1 = 0; | |
8987 | char *_kwnames[] = { "self","item", NULL }; | |
8988 | ||
8989 | self = self; | |
8990 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_ScrollTo",_kwnames,&_argo0,&_argo1)) | |
8991 | return NULL; | |
8992 | if (_argo0) { | |
8993 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
8994 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
8995 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_ScrollTo. Expected _wxPyTreeCtrl_p."); | |
8996 | return NULL; | |
8997 | } | |
8998 | } | |
8999 | if (_argo1) { | |
9000 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9001 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9002 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_ScrollTo. Expected _wxTreeItemId_p."); | |
9003 | return NULL; | |
9004 | } | |
9005 | } | |
9006 | { | |
9007 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9008 | wxTreeCtrl_ScrollTo(_arg0,*_arg1); | |
9009 | ||
9010 | wxPyEndAllowThreads(__tstate); | |
9011 | if (PyErr_Occurred()) return NULL; | |
9012 | } Py_INCREF(Py_None); | |
9013 | _resultobj = Py_None; | |
9014 | return _resultobj; | |
9015 | } | |
9016 | ||
9017 | #define wxTreeCtrl_EditLabel(_swigobj,_swigarg0) (_swigobj->EditLabel(_swigarg0)) | |
9018 | static PyObject *_wrap_wxTreeCtrl_EditLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9019 | PyObject * _resultobj; | |
9020 | wxTextCtrl * _result; | |
9021 | wxPyTreeCtrl * _arg0; | |
9022 | wxTreeItemId * _arg1; | |
9023 | PyObject * _argo0 = 0; | |
9024 | PyObject * _argo1 = 0; | |
9025 | char *_kwnames[] = { "self","item", NULL }; | |
9026 | ||
9027 | self = self; | |
9028 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_EditLabel",_kwnames,&_argo0,&_argo1)) | |
9029 | return NULL; | |
9030 | if (_argo0) { | |
9031 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9032 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9033 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_EditLabel. Expected _wxPyTreeCtrl_p."); | |
9034 | return NULL; | |
9035 | } | |
9036 | } | |
9037 | if (_argo1) { | |
9038 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9039 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9040 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_EditLabel. Expected _wxTreeItemId_p."); | |
9041 | return NULL; | |
9042 | } | |
9043 | } | |
9044 | { | |
9045 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9046 | _result = (wxTextCtrl *)wxTreeCtrl_EditLabel(_arg0,*_arg1); | |
9047 | ||
9048 | wxPyEndAllowThreads(__tstate); | |
9049 | if (PyErr_Occurred()) return NULL; | |
9050 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
9051 | return _resultobj; | |
9052 | } | |
9053 | ||
9054 | #define wxTreeCtrl_GetEditControl(_swigobj) (_swigobj->GetEditControl()) | |
9055 | static PyObject *_wrap_wxTreeCtrl_GetEditControl(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9056 | PyObject * _resultobj; | |
9057 | wxTextCtrl * _result; | |
9058 | wxPyTreeCtrl * _arg0; | |
9059 | PyObject * _argo0 = 0; | |
9060 | char *_kwnames[] = { "self", NULL }; | |
9061 | ||
9062 | self = self; | |
9063 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetEditControl",_kwnames,&_argo0)) | |
9064 | return NULL; | |
9065 | if (_argo0) { | |
9066 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9067 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9068 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetEditControl. Expected _wxPyTreeCtrl_p."); | |
9069 | return NULL; | |
9070 | } | |
9071 | } | |
9072 | { | |
9073 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9074 | _result = (wxTextCtrl *)wxTreeCtrl_GetEditControl(_arg0); | |
9075 | ||
9076 | wxPyEndAllowThreads(__tstate); | |
9077 | if (PyErr_Occurred()) return NULL; | |
9078 | }{ _resultobj = wxPyMake_wxObject(_result); } | |
9079 | return _resultobj; | |
9080 | } | |
9081 | ||
9082 | #define wxTreeCtrl_EndEditLabel(_swigobj,_swigarg0,_swigarg1) (_swigobj->EndEditLabel(_swigarg0,_swigarg1)) | |
9083 | static PyObject *_wrap_wxTreeCtrl_EndEditLabel(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9084 | PyObject * _resultobj; | |
9085 | wxPyTreeCtrl * _arg0; | |
9086 | wxTreeItemId * _arg1; | |
9087 | int _arg2 = (int ) FALSE; | |
9088 | PyObject * _argo0 = 0; | |
9089 | PyObject * _argo1 = 0; | |
9090 | char *_kwnames[] = { "self","item","discardChanges", NULL }; | |
9091 | ||
9092 | self = self; | |
9093 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_EndEditLabel",_kwnames,&_argo0,&_argo1,&_arg2)) | |
9094 | return NULL; | |
9095 | if (_argo0) { | |
9096 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9097 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9098 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_EndEditLabel. Expected _wxPyTreeCtrl_p."); | |
9099 | return NULL; | |
9100 | } | |
9101 | } | |
9102 | if (_argo1) { | |
9103 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9104 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9105 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_EndEditLabel. Expected _wxTreeItemId_p."); | |
9106 | return NULL; | |
9107 | } | |
9108 | } | |
9109 | { | |
9110 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9111 | wxTreeCtrl_EndEditLabel(_arg0,*_arg1,_arg2); | |
9112 | ||
9113 | wxPyEndAllowThreads(__tstate); | |
9114 | if (PyErr_Occurred()) return NULL; | |
9115 | } Py_INCREF(Py_None); | |
9116 | _resultobj = Py_None; | |
9117 | return _resultobj; | |
9118 | } | |
9119 | ||
9120 | #define wxTreeCtrl_SortChildren(_swigobj,_swigarg0) (_swigobj->SortChildren(_swigarg0)) | |
9121 | static PyObject *_wrap_wxTreeCtrl_SortChildren(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9122 | PyObject * _resultobj; | |
9123 | wxPyTreeCtrl * _arg0; | |
9124 | wxTreeItemId * _arg1; | |
9125 | PyObject * _argo0 = 0; | |
9126 | PyObject * _argo1 = 0; | |
9127 | char *_kwnames[] = { "self","item", NULL }; | |
9128 | ||
9129 | self = self; | |
9130 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_SortChildren",_kwnames,&_argo0,&_argo1)) | |
9131 | return NULL; | |
9132 | if (_argo0) { | |
9133 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9134 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9135 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SortChildren. Expected _wxPyTreeCtrl_p."); | |
9136 | return NULL; | |
9137 | } | |
9138 | } | |
9139 | if (_argo1) { | |
9140 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9141 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9142 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SortChildren. Expected _wxTreeItemId_p."); | |
9143 | return NULL; | |
9144 | } | |
9145 | } | |
9146 | { | |
9147 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9148 | wxTreeCtrl_SortChildren(_arg0,*_arg1); | |
9149 | ||
9150 | wxPyEndAllowThreads(__tstate); | |
9151 | if (PyErr_Occurred()) return NULL; | |
9152 | } Py_INCREF(Py_None); | |
9153 | _resultobj = Py_None; | |
9154 | return _resultobj; | |
9155 | } | |
9156 | ||
9157 | #define wxTreeCtrl_SetItemBold(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemBold(_swigarg0,_swigarg1)) | |
9158 | static PyObject *_wrap_wxTreeCtrl_SetItemBold(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9159 | PyObject * _resultobj; | |
9160 | wxPyTreeCtrl * _arg0; | |
9161 | wxTreeItemId * _arg1; | |
9162 | int _arg2 = (int ) TRUE; | |
9163 | PyObject * _argo0 = 0; | |
9164 | PyObject * _argo1 = 0; | |
9165 | char *_kwnames[] = { "self","item","bold", NULL }; | |
9166 | ||
9167 | self = self; | |
9168 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemBold",_kwnames,&_argo0,&_argo1,&_arg2)) | |
9169 | return NULL; | |
9170 | if (_argo0) { | |
9171 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9172 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9173 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemBold. Expected _wxPyTreeCtrl_p."); | |
9174 | return NULL; | |
9175 | } | |
9176 | } | |
9177 | if (_argo1) { | |
9178 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9179 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9180 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemBold. Expected _wxTreeItemId_p."); | |
9181 | return NULL; | |
9182 | } | |
9183 | } | |
9184 | { | |
9185 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9186 | wxTreeCtrl_SetItemBold(_arg0,*_arg1,_arg2); | |
9187 | ||
9188 | wxPyEndAllowThreads(__tstate); | |
9189 | if (PyErr_Occurred()) return NULL; | |
9190 | } Py_INCREF(Py_None); | |
9191 | _resultobj = Py_None; | |
9192 | return _resultobj; | |
9193 | } | |
9194 | ||
9195 | #define wxTreeCtrl_IsBold(_swigobj,_swigarg0) (_swigobj->IsBold(_swigarg0)) | |
9196 | static PyObject *_wrap_wxTreeCtrl_IsBold(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9197 | PyObject * _resultobj; | |
9198 | bool _result; | |
9199 | wxPyTreeCtrl * _arg0; | |
9200 | wxTreeItemId * _arg1; | |
9201 | PyObject * _argo0 = 0; | |
9202 | PyObject * _argo1 = 0; | |
9203 | char *_kwnames[] = { "self","item", NULL }; | |
9204 | ||
9205 | self = self; | |
9206 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_IsBold",_kwnames,&_argo0,&_argo1)) | |
9207 | return NULL; | |
9208 | if (_argo0) { | |
9209 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9210 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9211 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_IsBold. Expected _wxPyTreeCtrl_p."); | |
9212 | return NULL; | |
9213 | } | |
9214 | } | |
9215 | if (_argo1) { | |
9216 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9217 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9218 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_IsBold. Expected _wxTreeItemId_p."); | |
9219 | return NULL; | |
9220 | } | |
9221 | } | |
9222 | { | |
9223 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9224 | _result = (bool )wxTreeCtrl_IsBold(_arg0,*_arg1); | |
9225 | ||
9226 | wxPyEndAllowThreads(__tstate); | |
9227 | if (PyErr_Occurred()) return NULL; | |
9228 | } _resultobj = Py_BuildValue("i",_result); | |
9229 | return _resultobj; | |
9230 | } | |
9231 | ||
9232 | #define wxTreeCtrl_HitTest(_swigobj,_swigarg0,_swigarg1) (_swigobj->HitTest(_swigarg0,_swigarg1)) | |
9233 | static PyObject *_wrap_wxTreeCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9234 | PyObject * _resultobj; | |
9235 | wxTreeItemId * _result; | |
9236 | wxPyTreeCtrl * _arg0; | |
9237 | wxPoint * _arg1; | |
9238 | int * _arg2; | |
9239 | int temp; | |
9240 | PyObject * _argo0 = 0; | |
9241 | wxPoint temp0; | |
9242 | PyObject * _obj1 = 0; | |
9243 | char *_kwnames[] = { "self","point", NULL }; | |
9244 | char _ptemp[128]; | |
9245 | ||
9246 | self = self; | |
9247 | { | |
9248 | _arg2 = &temp; | |
9249 | } | |
9250 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCtrl_HitTest",_kwnames,&_argo0,&_obj1)) | |
9251 | return NULL; | |
9252 | if (_argo0) { | |
9253 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9254 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9255 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_HitTest. Expected _wxPyTreeCtrl_p."); | |
9256 | return NULL; | |
9257 | } | |
9258 | } | |
9259 | { | |
9260 | _arg1 = &temp0; | |
9261 | if (! wxPoint_helper(_obj1, &_arg1)) | |
9262 | return NULL; | |
9263 | } | |
9264 | { | |
9265 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9266 | _result = new wxTreeItemId (wxTreeCtrl_HitTest(_arg0,*_arg1,*_arg2)); | |
9267 | ||
9268 | wxPyEndAllowThreads(__tstate); | |
9269 | if (PyErr_Occurred()) return NULL; | |
9270 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxTreeItemId_p"); | |
9271 | _resultobj = Py_BuildValue("s",_ptemp); | |
9272 | { | |
9273 | PyObject *o; | |
9274 | o = PyInt_FromLong((long) (*_arg2)); | |
9275 | _resultobj = t_output_helper(_resultobj, o); | |
9276 | } | |
9277 | return _resultobj; | |
9278 | } | |
9279 | ||
9280 | #define wxTreeCtrl_SetItemTextColour(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemTextColour(_swigarg0,_swigarg1)) | |
9281 | static PyObject *_wrap_wxTreeCtrl_SetItemTextColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9282 | PyObject * _resultobj; | |
9283 | wxPyTreeCtrl * _arg0; | |
9284 | wxTreeItemId * _arg1; | |
9285 | wxColour * _arg2; | |
9286 | PyObject * _argo0 = 0; | |
9287 | PyObject * _argo1 = 0; | |
9288 | wxColour temp; | |
9289 | PyObject * _obj2 = 0; | |
9290 | char *_kwnames[] = { "self","item","col", NULL }; | |
9291 | ||
9292 | self = self; | |
9293 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemTextColour",_kwnames,&_argo0,&_argo1,&_obj2)) | |
9294 | return NULL; | |
9295 | if (_argo0) { | |
9296 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9297 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9298 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemTextColour. Expected _wxPyTreeCtrl_p."); | |
9299 | return NULL; | |
9300 | } | |
9301 | } | |
9302 | if (_argo1) { | |
9303 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9304 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9305 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemTextColour. Expected _wxTreeItemId_p."); | |
9306 | return NULL; | |
9307 | } | |
9308 | } | |
9309 | { | |
9310 | _arg2 = &temp; | |
9311 | if (! wxColour_helper(_obj2, &_arg2)) | |
9312 | return NULL; | |
9313 | } | |
9314 | { | |
9315 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9316 | wxTreeCtrl_SetItemTextColour(_arg0,*_arg1,*_arg2); | |
9317 | ||
9318 | wxPyEndAllowThreads(__tstate); | |
9319 | if (PyErr_Occurred()) return NULL; | |
9320 | } Py_INCREF(Py_None); | |
9321 | _resultobj = Py_None; | |
9322 | return _resultobj; | |
9323 | } | |
9324 | ||
9325 | #define wxTreeCtrl_SetItemBackgroundColour(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemBackgroundColour(_swigarg0,_swigarg1)) | |
9326 | static PyObject *_wrap_wxTreeCtrl_SetItemBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9327 | PyObject * _resultobj; | |
9328 | wxPyTreeCtrl * _arg0; | |
9329 | wxTreeItemId * _arg1; | |
9330 | wxColour * _arg2; | |
9331 | PyObject * _argo0 = 0; | |
9332 | PyObject * _argo1 = 0; | |
9333 | wxColour temp; | |
9334 | PyObject * _obj2 = 0; | |
9335 | char *_kwnames[] = { "self","item","col", NULL }; | |
9336 | ||
9337 | self = self; | |
9338 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemBackgroundColour",_kwnames,&_argo0,&_argo1,&_obj2)) | |
9339 | return NULL; | |
9340 | if (_argo0) { | |
9341 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9342 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9343 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemBackgroundColour. Expected _wxPyTreeCtrl_p."); | |
9344 | return NULL; | |
9345 | } | |
9346 | } | |
9347 | if (_argo1) { | |
9348 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9349 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9350 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemBackgroundColour. Expected _wxTreeItemId_p."); | |
9351 | return NULL; | |
9352 | } | |
9353 | } | |
9354 | { | |
9355 | _arg2 = &temp; | |
9356 | if (! wxColour_helper(_obj2, &_arg2)) | |
9357 | return NULL; | |
9358 | } | |
9359 | { | |
9360 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9361 | wxTreeCtrl_SetItemBackgroundColour(_arg0,*_arg1,*_arg2); | |
9362 | ||
9363 | wxPyEndAllowThreads(__tstate); | |
9364 | if (PyErr_Occurred()) return NULL; | |
9365 | } Py_INCREF(Py_None); | |
9366 | _resultobj = Py_None; | |
9367 | return _resultobj; | |
9368 | } | |
9369 | ||
9370 | #define wxTreeCtrl_SetItemFont(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemFont(_swigarg0,_swigarg1)) | |
9371 | static PyObject *_wrap_wxTreeCtrl_SetItemFont(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9372 | PyObject * _resultobj; | |
9373 | wxPyTreeCtrl * _arg0; | |
9374 | wxTreeItemId * _arg1; | |
9375 | wxFont * _arg2; | |
9376 | PyObject * _argo0 = 0; | |
9377 | PyObject * _argo1 = 0; | |
9378 | PyObject * _argo2 = 0; | |
9379 | char *_kwnames[] = { "self","item","font", NULL }; | |
9380 | ||
9381 | self = self; | |
9382 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCtrl_SetItemFont",_kwnames,&_argo0,&_argo1,&_argo2)) | |
9383 | return NULL; | |
9384 | if (_argo0) { | |
9385 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9386 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9387 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemFont. Expected _wxPyTreeCtrl_p."); | |
9388 | return NULL; | |
9389 | } | |
9390 | } | |
9391 | if (_argo1) { | |
9392 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9393 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9394 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemFont. Expected _wxTreeItemId_p."); | |
9395 | return NULL; | |
9396 | } | |
9397 | } | |
9398 | if (_argo2) { | |
9399 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
9400 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxFont_p")) { | |
9401 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxTreeCtrl_SetItemFont. Expected _wxFont_p."); | |
9402 | return NULL; | |
9403 | } | |
9404 | } | |
9405 | { | |
9406 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9407 | wxTreeCtrl_SetItemFont(_arg0,*_arg1,*_arg2); | |
9408 | ||
9409 | wxPyEndAllowThreads(__tstate); | |
9410 | if (PyErr_Occurred()) return NULL; | |
9411 | } Py_INCREF(Py_None); | |
9412 | _resultobj = Py_None; | |
9413 | return _resultobj; | |
9414 | } | |
9415 | ||
9416 | #define wxTreeCtrl_SetItemDropHighlight(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetItemDropHighlight(_swigarg0,_swigarg1)) | |
9417 | static PyObject *_wrap_wxTreeCtrl_SetItemDropHighlight(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9418 | PyObject * _resultobj; | |
9419 | wxPyTreeCtrl * _arg0; | |
9420 | wxTreeItemId * _arg1; | |
9421 | int _arg2 = (int ) TRUE; | |
9422 | PyObject * _argo0 = 0; | |
9423 | PyObject * _argo1 = 0; | |
9424 | char *_kwnames[] = { "self","item","highlight", NULL }; | |
9425 | ||
9426 | self = self; | |
9427 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemDropHighlight",_kwnames,&_argo0,&_argo1,&_arg2)) | |
9428 | return NULL; | |
9429 | if (_argo0) { | |
9430 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9431 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9432 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetItemDropHighlight. Expected _wxPyTreeCtrl_p."); | |
9433 | return NULL; | |
9434 | } | |
9435 | } | |
9436 | if (_argo1) { | |
9437 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9438 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9439 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_SetItemDropHighlight. Expected _wxTreeItemId_p."); | |
9440 | return NULL; | |
9441 | } | |
9442 | } | |
9443 | { | |
9444 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9445 | wxTreeCtrl_SetItemDropHighlight(_arg0,*_arg1,_arg2); | |
9446 | ||
9447 | wxPyEndAllowThreads(__tstate); | |
9448 | if (PyErr_Occurred()) return NULL; | |
9449 | } Py_INCREF(Py_None); | |
9450 | _resultobj = Py_None; | |
9451 | return _resultobj; | |
9452 | } | |
9453 | ||
9454 | static PyObject * wxPyTreeCtrl_GetBoundingRect(wxPyTreeCtrl *self,const wxTreeItemId & item,int textOnly) { | |
9455 | wxRect rect; | |
9456 | if (self->GetBoundingRect(item, rect, textOnly)) { | |
9457 | wxPyBeginBlockThreads(); | |
9458 | wxRect* r = new wxRect(rect); | |
9459 | PyObject* val = wxPyConstructObject((void*)r, "wxRect"); | |
9460 | wxPyEndBlockThreads(); | |
9461 | return val; | |
9462 | } | |
9463 | else { | |
9464 | Py_INCREF(Py_None); | |
9465 | return Py_None; | |
9466 | } | |
9467 | } | |
9468 | static PyObject *_wrap_wxTreeCtrl_GetBoundingRect(PyObject *self, PyObject *args, PyObject *kwargs) { | |
9469 | PyObject * _resultobj; | |
9470 | PyObject * _result; | |
9471 | wxPyTreeCtrl * _arg0; | |
9472 | wxTreeItemId * _arg1; | |
9473 | int _arg2 = (int ) FALSE; | |
9474 | PyObject * _argo0 = 0; | |
9475 | PyObject * _argo1 = 0; | |
9476 | char *_kwnames[] = { "self","item","textOnly", NULL }; | |
9477 | ||
9478 | self = self; | |
9479 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_GetBoundingRect",_kwnames,&_argo0,&_argo1,&_arg2)) | |
9480 | return NULL; | |
9481 | if (_argo0) { | |
9482 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
9483 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCtrl_p")) { | |
9484 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetBoundingRect. Expected _wxPyTreeCtrl_p."); | |
9485 | return NULL; | |
9486 | } | |
9487 | } | |
9488 | if (_argo1) { | |
9489 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
9490 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxTreeItemId_p")) { | |
9491 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCtrl_GetBoundingRect. Expected _wxTreeItemId_p."); | |
9492 | return NULL; | |
9493 | } | |
9494 | } | |
9495 | { | |
9496 | PyThreadState* __tstate = wxPyBeginAllowThreads(); | |
9497 | _result = (PyObject *)wxPyTreeCtrl_GetBoundingRect(_arg0,*_arg1,_arg2); | |
9498 | ||
9499 | wxPyEndAllowThreads(__tstate); | |
9500 | if (PyErr_Occurred()) return NULL; | |
9501 | }{ | |
9502 | _resultobj = _result; | |
9503 | } | |
9504 | return _resultobj; | |
9505 | } | |
9506 | ||
9507 | static PyMethodDef controls2cMethods[] = { | |
9508 | { "wxTreeCtrl_GetBoundingRect", (PyCFunction) _wrap_wxTreeCtrl_GetBoundingRect, METH_VARARGS | METH_KEYWORDS }, | |
9509 | { "wxTreeCtrl_SetItemDropHighlight", (PyCFunction) _wrap_wxTreeCtrl_SetItemDropHighlight, METH_VARARGS | METH_KEYWORDS }, | |
9510 | { "wxTreeCtrl_SetItemFont", (PyCFunction) _wrap_wxTreeCtrl_SetItemFont, METH_VARARGS | METH_KEYWORDS }, | |
9511 | { "wxTreeCtrl_SetItemBackgroundColour", (PyCFunction) _wrap_wxTreeCtrl_SetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9512 | { "wxTreeCtrl_SetItemTextColour", (PyCFunction) _wrap_wxTreeCtrl_SetItemTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9513 | { "wxTreeCtrl_HitTest", (PyCFunction) _wrap_wxTreeCtrl_HitTest, METH_VARARGS | METH_KEYWORDS }, | |
9514 | { "wxTreeCtrl_IsBold", (PyCFunction) _wrap_wxTreeCtrl_IsBold, METH_VARARGS | METH_KEYWORDS }, | |
9515 | { "wxTreeCtrl_SetItemBold", (PyCFunction) _wrap_wxTreeCtrl_SetItemBold, METH_VARARGS | METH_KEYWORDS }, | |
9516 | { "wxTreeCtrl_SortChildren", (PyCFunction) _wrap_wxTreeCtrl_SortChildren, METH_VARARGS | METH_KEYWORDS }, | |
9517 | { "wxTreeCtrl_EndEditLabel", (PyCFunction) _wrap_wxTreeCtrl_EndEditLabel, METH_VARARGS | METH_KEYWORDS }, | |
9518 | { "wxTreeCtrl_GetEditControl", (PyCFunction) _wrap_wxTreeCtrl_GetEditControl, METH_VARARGS | METH_KEYWORDS }, | |
9519 | { "wxTreeCtrl_EditLabel", (PyCFunction) _wrap_wxTreeCtrl_EditLabel, METH_VARARGS | METH_KEYWORDS }, | |
9520 | { "wxTreeCtrl_ScrollTo", (PyCFunction) _wrap_wxTreeCtrl_ScrollTo, METH_VARARGS | METH_KEYWORDS }, | |
9521 | { "wxTreeCtrl_EnsureVisible", (PyCFunction) _wrap_wxTreeCtrl_EnsureVisible, METH_VARARGS | METH_KEYWORDS }, | |
9522 | { "wxTreeCtrl_SelectItem", (PyCFunction) _wrap_wxTreeCtrl_SelectItem, METH_VARARGS | METH_KEYWORDS }, | |
9523 | { "wxTreeCtrl_UnselectAll", (PyCFunction) _wrap_wxTreeCtrl_UnselectAll, METH_VARARGS | METH_KEYWORDS }, | |
9524 | { "wxTreeCtrl_Unselect", (PyCFunction) _wrap_wxTreeCtrl_Unselect, METH_VARARGS | METH_KEYWORDS }, | |
9525 | { "wxTreeCtrl_Toggle", (PyCFunction) _wrap_wxTreeCtrl_Toggle, METH_VARARGS | METH_KEYWORDS }, | |
9526 | { "wxTreeCtrl_CollapseAndReset", (PyCFunction) _wrap_wxTreeCtrl_CollapseAndReset, METH_VARARGS | METH_KEYWORDS }, | |
9527 | { "wxTreeCtrl_Collapse", (PyCFunction) _wrap_wxTreeCtrl_Collapse, METH_VARARGS | METH_KEYWORDS }, | |
9528 | { "wxTreeCtrl_Expand", (PyCFunction) _wrap_wxTreeCtrl_Expand, METH_VARARGS | METH_KEYWORDS }, | |
9529 | { "wxTreeCtrl_DeleteAllItems", (PyCFunction) _wrap_wxTreeCtrl_DeleteAllItems, METH_VARARGS | METH_KEYWORDS }, | |
9530 | { "wxTreeCtrl_DeleteChildren", (PyCFunction) _wrap_wxTreeCtrl_DeleteChildren, METH_VARARGS | METH_KEYWORDS }, | |
9531 | { "wxTreeCtrl_Delete", (PyCFunction) _wrap_wxTreeCtrl_Delete, METH_VARARGS | METH_KEYWORDS }, | |
9532 | { "wxTreeCtrl_AppendItem", (PyCFunction) _wrap_wxTreeCtrl_AppendItem, METH_VARARGS | METH_KEYWORDS }, | |
9533 | { "wxTreeCtrl_InsertItemBefore", (PyCFunction) _wrap_wxTreeCtrl_InsertItemBefore, METH_VARARGS | METH_KEYWORDS }, | |
9534 | { "wxTreeCtrl_InsertItem", (PyCFunction) _wrap_wxTreeCtrl_InsertItem, METH_VARARGS | METH_KEYWORDS }, | |
9535 | { "wxTreeCtrl_PrependItem", (PyCFunction) _wrap_wxTreeCtrl_PrependItem, METH_VARARGS | METH_KEYWORDS }, | |
9536 | { "wxTreeCtrl_AddRoot", (PyCFunction) _wrap_wxTreeCtrl_AddRoot, METH_VARARGS | METH_KEYWORDS }, | |
9537 | { "wxTreeCtrl_GetLastChild", (PyCFunction) _wrap_wxTreeCtrl_GetLastChild, METH_VARARGS | METH_KEYWORDS }, | |
9538 | { "wxTreeCtrl_GetPrevVisible", (PyCFunction) _wrap_wxTreeCtrl_GetPrevVisible, METH_VARARGS | METH_KEYWORDS }, | |
9539 | { "wxTreeCtrl_GetNextVisible", (PyCFunction) _wrap_wxTreeCtrl_GetNextVisible, METH_VARARGS | METH_KEYWORDS }, | |
9540 | { "wxTreeCtrl_GetFirstVisibleItem", (PyCFunction) _wrap_wxTreeCtrl_GetFirstVisibleItem, METH_VARARGS | METH_KEYWORDS }, | |
9541 | { "wxTreeCtrl_GetPrevSibling", (PyCFunction) _wrap_wxTreeCtrl_GetPrevSibling, METH_VARARGS | METH_KEYWORDS }, | |
9542 | { "wxTreeCtrl_GetNextSibling", (PyCFunction) _wrap_wxTreeCtrl_GetNextSibling, METH_VARARGS | METH_KEYWORDS }, | |
9543 | { "wxTreeCtrl_GetNextChild", (PyCFunction) _wrap_wxTreeCtrl_GetNextChild, METH_VARARGS | METH_KEYWORDS }, | |
9544 | { "wxTreeCtrl_GetFirstChild", (PyCFunction) _wrap_wxTreeCtrl_GetFirstChild, METH_VARARGS | METH_KEYWORDS }, | |
9545 | { "wxTreeCtrl_GetChildrenCount", (PyCFunction) _wrap_wxTreeCtrl_GetChildrenCount, METH_VARARGS | METH_KEYWORDS }, | |
9546 | { "wxTreeCtrl_GetSelections", (PyCFunction) _wrap_wxTreeCtrl_GetSelections, METH_VARARGS | METH_KEYWORDS }, | |
9547 | { "wxTreeCtrl_GetItemParent", (PyCFunction) _wrap_wxTreeCtrl_GetItemParent, METH_VARARGS | METH_KEYWORDS }, | |
9548 | { "wxTreeCtrl_GetSelection", (PyCFunction) _wrap_wxTreeCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS }, | |
9549 | { "wxTreeCtrl_GetRootItem", (PyCFunction) _wrap_wxTreeCtrl_GetRootItem, METH_VARARGS | METH_KEYWORDS }, | |
9550 | { "wxTreeCtrl_IsSelected", (PyCFunction) _wrap_wxTreeCtrl_IsSelected, METH_VARARGS | METH_KEYWORDS }, | |
9551 | { "wxTreeCtrl_IsExpanded", (PyCFunction) _wrap_wxTreeCtrl_IsExpanded, METH_VARARGS | METH_KEYWORDS }, | |
9552 | { "wxTreeCtrl_ItemHasChildren", (PyCFunction) _wrap_wxTreeCtrl_ItemHasChildren, METH_VARARGS | METH_KEYWORDS }, | |
9553 | { "wxTreeCtrl_IsVisible", (PyCFunction) _wrap_wxTreeCtrl_IsVisible, METH_VARARGS | METH_KEYWORDS }, | |
9554 | { "wxTreeCtrl_SetPyData", (PyCFunction) _wrap_wxTreeCtrl_SetPyData, METH_VARARGS | METH_KEYWORDS }, | |
9555 | { "wxTreeCtrl_GetPyData", (PyCFunction) _wrap_wxTreeCtrl_GetPyData, METH_VARARGS | METH_KEYWORDS }, | |
9556 | { "wxTreeCtrl_SetItemData", (PyCFunction) _wrap_wxTreeCtrl_SetItemData, METH_VARARGS | METH_KEYWORDS }, | |
9557 | { "wxTreeCtrl_GetItemData", (PyCFunction) _wrap_wxTreeCtrl_GetItemData, METH_VARARGS | METH_KEYWORDS }, | |
9558 | { "wxTreeCtrl_SetItemHasChildren", (PyCFunction) _wrap_wxTreeCtrl_SetItemHasChildren, METH_VARARGS | METH_KEYWORDS }, | |
9559 | { "wxTreeCtrl_SetItemSelectedImage", (PyCFunction) _wrap_wxTreeCtrl_SetItemSelectedImage, METH_VARARGS | METH_KEYWORDS }, | |
9560 | { "wxTreeCtrl_SetItemImage", (PyCFunction) _wrap_wxTreeCtrl_SetItemImage, METH_VARARGS | METH_KEYWORDS }, | |
9561 | { "wxTreeCtrl_SetItemText", (PyCFunction) _wrap_wxTreeCtrl_SetItemText, METH_VARARGS | METH_KEYWORDS }, | |
9562 | { "wxTreeCtrl_GetItemSelectedImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemSelectedImage, METH_VARARGS | METH_KEYWORDS }, | |
9563 | { "wxTreeCtrl_GetItemImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemImage, METH_VARARGS | METH_KEYWORDS }, | |
9564 | { "wxTreeCtrl_GetItemText", (PyCFunction) _wrap_wxTreeCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS }, | |
9565 | { "wxTreeCtrl_SetSpacing", (PyCFunction) _wrap_wxTreeCtrl_SetSpacing, METH_VARARGS | METH_KEYWORDS }, | |
9566 | { "wxTreeCtrl_GetSpacing", (PyCFunction) _wrap_wxTreeCtrl_GetSpacing, METH_VARARGS | METH_KEYWORDS }, | |
9567 | { "wxTreeCtrl_AssignStateImageList", (PyCFunction) _wrap_wxTreeCtrl_AssignStateImageList, METH_VARARGS | METH_KEYWORDS }, | |
9568 | { "wxTreeCtrl_AssignImageList", (PyCFunction) _wrap_wxTreeCtrl_AssignImageList, METH_VARARGS | METH_KEYWORDS }, | |
9569 | { "wxTreeCtrl_SetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_SetStateImageList, METH_VARARGS | METH_KEYWORDS }, | |
9570 | { "wxTreeCtrl_SetImageList", (PyCFunction) _wrap_wxTreeCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS }, | |
9571 | { "wxTreeCtrl_GetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_GetStateImageList, METH_VARARGS | METH_KEYWORDS }, | |
9572 | { "wxTreeCtrl_GetImageList", (PyCFunction) _wrap_wxTreeCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS }, | |
9573 | { "wxTreeCtrl_SetIndent", (PyCFunction) _wrap_wxTreeCtrl_SetIndent, METH_VARARGS | METH_KEYWORDS }, | |
9574 | { "wxTreeCtrl_GetIndent", (PyCFunction) _wrap_wxTreeCtrl_GetIndent, METH_VARARGS | METH_KEYWORDS }, | |
9575 | { "wxTreeCtrl_GetCount", (PyCFunction) _wrap_wxTreeCtrl_GetCount, METH_VARARGS | METH_KEYWORDS }, | |
9576 | { "wxTreeCtrl__setCallbackInfo", (PyCFunction) _wrap_wxTreeCtrl__setCallbackInfo, METH_VARARGS | METH_KEYWORDS }, | |
9577 | { "wxTreeCtrl_Create", (PyCFunction) _wrap_wxTreeCtrl_Create, METH_VARARGS | METH_KEYWORDS }, | |
9578 | { "new_wxPreTreeCtrl", (PyCFunction) _wrap_new_wxPreTreeCtrl, METH_VARARGS | METH_KEYWORDS }, | |
9579 | { "new_wxTreeCtrl", (PyCFunction) _wrap_new_wxTreeCtrl, METH_VARARGS | METH_KEYWORDS }, | |
9580 | { "wxTreeEvent_GetLabel", (PyCFunction) _wrap_wxTreeEvent_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
9581 | { "wxTreeEvent_GetCode", (PyCFunction) _wrap_wxTreeEvent_GetCode, METH_VARARGS | METH_KEYWORDS }, | |
9582 | { "wxTreeEvent_GetKeyEvent", (PyCFunction) _wrap_wxTreeEvent_GetKeyEvent, METH_VARARGS | METH_KEYWORDS }, | |
9583 | { "wxTreeEvent_GetPoint", (PyCFunction) _wrap_wxTreeEvent_GetPoint, METH_VARARGS | METH_KEYWORDS }, | |
9584 | { "wxTreeEvent_GetOldItem", (PyCFunction) _wrap_wxTreeEvent_GetOldItem, METH_VARARGS | METH_KEYWORDS }, | |
9585 | { "wxTreeEvent_GetItem", (PyCFunction) _wrap_wxTreeEvent_GetItem, METH_VARARGS | METH_KEYWORDS }, | |
9586 | { "new_wxTreeEvent", (PyCFunction) _wrap_new_wxTreeEvent, METH_VARARGS | METH_KEYWORDS }, | |
9587 | { "wxTreeItemData_SetId", (PyCFunction) _wrap_wxTreeItemData_SetId, METH_VARARGS | METH_KEYWORDS }, | |
9588 | { "wxTreeItemData_GetId", (PyCFunction) _wrap_wxTreeItemData_GetId, METH_VARARGS | METH_KEYWORDS }, | |
9589 | { "wxTreeItemData_SetData", (PyCFunction) _wrap_wxTreeItemData_SetData, METH_VARARGS | METH_KEYWORDS }, | |
9590 | { "wxTreeItemData_GetData", (PyCFunction) _wrap_wxTreeItemData_GetData, METH_VARARGS | METH_KEYWORDS }, | |
9591 | { "new_wxTreeItemData", (PyCFunction) _wrap_new_wxTreeItemData, METH_VARARGS | METH_KEYWORDS }, | |
9592 | { "wxTreeItemId___cmp__", (PyCFunction) _wrap_wxTreeItemId___cmp__, METH_VARARGS | METH_KEYWORDS }, | |
9593 | { "wxTreeItemId_IsOk", (PyCFunction) _wrap_wxTreeItemId_IsOk, METH_VARARGS | METH_KEYWORDS }, | |
9594 | { "delete_wxTreeItemId", (PyCFunction) _wrap_delete_wxTreeItemId, METH_VARARGS | METH_KEYWORDS }, | |
9595 | { "new_wxTreeItemId", (PyCFunction) _wrap_new_wxTreeItemId, METH_VARARGS | METH_KEYWORDS }, | |
9596 | { "wxTreeItemAttr_GetFont", (PyCFunction) _wrap_wxTreeItemAttr_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
9597 | { "wxTreeItemAttr_GetBackgroundColour", (PyCFunction) _wrap_wxTreeItemAttr_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9598 | { "wxTreeItemAttr_GetTextColour", (PyCFunction) _wrap_wxTreeItemAttr_GetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9599 | { "wxTreeItemAttr_HasFont", (PyCFunction) _wrap_wxTreeItemAttr_HasFont, METH_VARARGS | METH_KEYWORDS }, | |
9600 | { "wxTreeItemAttr_HasBackgroundColour", (PyCFunction) _wrap_wxTreeItemAttr_HasBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9601 | { "wxTreeItemAttr_HasTextColour", (PyCFunction) _wrap_wxTreeItemAttr_HasTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9602 | { "wxTreeItemAttr_SetFont", (PyCFunction) _wrap_wxTreeItemAttr_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
9603 | { "wxTreeItemAttr_SetBackgroundColour", (PyCFunction) _wrap_wxTreeItemAttr_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9604 | { "wxTreeItemAttr_SetTextColour", (PyCFunction) _wrap_wxTreeItemAttr_SetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9605 | { "new_wxTreeItemAttr", (PyCFunction) _wrap_new_wxTreeItemAttr, METH_VARARGS | METH_KEYWORDS }, | |
9606 | { "wxListView_ClearColumnImage", (PyCFunction) _wrap_wxListView_ClearColumnImage, METH_VARARGS | METH_KEYWORDS }, | |
9607 | { "wxListView_SetColumnImage", (PyCFunction) _wrap_wxListView_SetColumnImage, METH_VARARGS | METH_KEYWORDS }, | |
9608 | { "wxListView_IsSelected", (PyCFunction) _wrap_wxListView_IsSelected, METH_VARARGS | METH_KEYWORDS }, | |
9609 | { "wxListView_GetFirstSelected", (PyCFunction) _wrap_wxListView_GetFirstSelected, METH_VARARGS | METH_KEYWORDS }, | |
9610 | { "wxListView_GetNextSelected", (PyCFunction) _wrap_wxListView_GetNextSelected, METH_VARARGS | METH_KEYWORDS }, | |
9611 | { "wxListView_GetFocusedItem", (PyCFunction) _wrap_wxListView_GetFocusedItem, METH_VARARGS | METH_KEYWORDS }, | |
9612 | { "wxListView_Focus", (PyCFunction) _wrap_wxListView_Focus, METH_VARARGS | METH_KEYWORDS }, | |
9613 | { "wxListView_Select", (PyCFunction) _wrap_wxListView_Select, METH_VARARGS | METH_KEYWORDS }, | |
9614 | { "wxListView_Create", (PyCFunction) _wrap_wxListView_Create, METH_VARARGS | METH_KEYWORDS }, | |
9615 | { "new_wxPreListView", (PyCFunction) _wrap_new_wxPreListView, METH_VARARGS | METH_KEYWORDS }, | |
9616 | { "new_wxListView", (PyCFunction) _wrap_new_wxListView, METH_VARARGS | METH_KEYWORDS }, | |
9617 | { "wxListCtrl_SortItems", (PyCFunction) _wrap_wxListCtrl_SortItems, METH_VARARGS | METH_KEYWORDS }, | |
9618 | { "wxListCtrl_ScrollList", (PyCFunction) _wrap_wxListCtrl_ScrollList, METH_VARARGS | METH_KEYWORDS }, | |
9619 | { "wxListCtrl_SetItemCount", (PyCFunction) _wrap_wxListCtrl_SetItemCount, METH_VARARGS | METH_KEYWORDS }, | |
9620 | { "wxListCtrl_InsertColumn", (PyCFunction) _wrap_wxListCtrl_InsertColumn, METH_VARARGS | METH_KEYWORDS }, | |
9621 | { "wxListCtrl_InsertColumnInfo", (PyCFunction) _wrap_wxListCtrl_InsertColumnInfo, METH_VARARGS | METH_KEYWORDS }, | |
9622 | { "wxListCtrl_InsertImageStringItem", (PyCFunction) _wrap_wxListCtrl_InsertImageStringItem, METH_VARARGS | METH_KEYWORDS }, | |
9623 | { "wxListCtrl_InsertImageItem", (PyCFunction) _wrap_wxListCtrl_InsertImageItem, METH_VARARGS | METH_KEYWORDS }, | |
9624 | { "wxListCtrl_InsertStringItem", (PyCFunction) _wrap_wxListCtrl_InsertStringItem, METH_VARARGS | METH_KEYWORDS }, | |
9625 | { "wxListCtrl_InsertItem", (PyCFunction) _wrap_wxListCtrl_InsertItem, METH_VARARGS | METH_KEYWORDS }, | |
9626 | { "wxListCtrl_HitTest", (PyCFunction) _wrap_wxListCtrl_HitTest, METH_VARARGS | METH_KEYWORDS }, | |
9627 | { "wxListCtrl_FindItemAtPos", (PyCFunction) _wrap_wxListCtrl_FindItemAtPos, METH_VARARGS | METH_KEYWORDS }, | |
9628 | { "wxListCtrl_FindItemData", (PyCFunction) _wrap_wxListCtrl_FindItemData, METH_VARARGS | METH_KEYWORDS }, | |
9629 | { "wxListCtrl_FindItem", (PyCFunction) _wrap_wxListCtrl_FindItem, METH_VARARGS | METH_KEYWORDS }, | |
9630 | { "wxListCtrl_EnsureVisible", (PyCFunction) _wrap_wxListCtrl_EnsureVisible, METH_VARARGS | METH_KEYWORDS }, | |
9631 | { "wxListCtrl_EndEditLabel", (PyCFunction) _wrap_wxListCtrl_EndEditLabel, METH_VARARGS | METH_KEYWORDS }, | |
9632 | { "wxListCtrl_EditLabel", (PyCFunction) _wrap_wxListCtrl_EditLabel, METH_VARARGS | METH_KEYWORDS }, | |
9633 | { "wxListCtrl_ClearAll", (PyCFunction) _wrap_wxListCtrl_ClearAll, METH_VARARGS | METH_KEYWORDS }, | |
9634 | { "wxListCtrl_DeleteAllColumns", (PyCFunction) _wrap_wxListCtrl_DeleteAllColumns, METH_VARARGS | METH_KEYWORDS }, | |
9635 | { "wxListCtrl_DeleteColumn", (PyCFunction) _wrap_wxListCtrl_DeleteColumn, METH_VARARGS | METH_KEYWORDS }, | |
9636 | { "wxListCtrl_DeleteAllItems", (PyCFunction) _wrap_wxListCtrl_DeleteAllItems, METH_VARARGS | METH_KEYWORDS }, | |
9637 | { "wxListCtrl_DeleteItem", (PyCFunction) _wrap_wxListCtrl_DeleteItem, METH_VARARGS | METH_KEYWORDS }, | |
9638 | { "wxListCtrl_Arrange", (PyCFunction) _wrap_wxListCtrl_Arrange, METH_VARARGS | METH_KEYWORDS }, | |
9639 | { "wxListCtrl_RefreshItems", (PyCFunction) _wrap_wxListCtrl_RefreshItems, METH_VARARGS | METH_KEYWORDS }, | |
9640 | { "wxListCtrl_RefreshItem", (PyCFunction) _wrap_wxListCtrl_RefreshItem, METH_VARARGS | METH_KEYWORDS }, | |
9641 | { "wxListCtrl_IsVirtual", (PyCFunction) _wrap_wxListCtrl_IsVirtual, METH_VARARGS | METH_KEYWORDS }, | |
9642 | { "wxListCtrl_AssignImageList", (PyCFunction) _wrap_wxListCtrl_AssignImageList, METH_VARARGS | METH_KEYWORDS }, | |
9643 | { "wxListCtrl_SetImageList", (PyCFunction) _wrap_wxListCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS }, | |
9644 | { "wxListCtrl_GetImageList", (PyCFunction) _wrap_wxListCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS }, | |
9645 | { "wxListCtrl_GetNextItem", (PyCFunction) _wrap_wxListCtrl_GetNextItem, METH_VARARGS | METH_KEYWORDS }, | |
9646 | { "wxListCtrl_SetWindowStyleFlag", (PyCFunction) _wrap_wxListCtrl_SetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS }, | |
9647 | { "wxListCtrl_SetSingleStyle", (PyCFunction) _wrap_wxListCtrl_SetSingleStyle, METH_VARARGS | METH_KEYWORDS }, | |
9648 | { "wxListCtrl_GetTopItem", (PyCFunction) _wrap_wxListCtrl_GetTopItem, METH_VARARGS | METH_KEYWORDS }, | |
9649 | { "wxListCtrl_SetTextColour", (PyCFunction) _wrap_wxListCtrl_SetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9650 | { "wxListCtrl_GetTextColour", (PyCFunction) _wrap_wxListCtrl_GetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9651 | { "wxListCtrl_GetSelectedItemCount", (PyCFunction) _wrap_wxListCtrl_GetSelectedItemCount, METH_VARARGS | METH_KEYWORDS }, | |
9652 | { "wxListCtrl_GetItemSpacing", (PyCFunction) _wrap_wxListCtrl_GetItemSpacing, METH_VARARGS | METH_KEYWORDS }, | |
9653 | { "wxListCtrl_GetColumnCount", (PyCFunction) _wrap_wxListCtrl_GetColumnCount, METH_VARARGS | METH_KEYWORDS }, | |
9654 | { "wxListCtrl_GetItemCount", (PyCFunction) _wrap_wxListCtrl_GetItemCount, METH_VARARGS | METH_KEYWORDS }, | |
9655 | { "wxListCtrl_SetItemPosition", (PyCFunction) _wrap_wxListCtrl_SetItemPosition, METH_VARARGS | METH_KEYWORDS }, | |
9656 | { "wxListCtrl_GetItemRect", (PyCFunction) _wrap_wxListCtrl_GetItemRect, METH_VARARGS | METH_KEYWORDS }, | |
9657 | { "wxListCtrl_GetItemPosition", (PyCFunction) _wrap_wxListCtrl_GetItemPosition, METH_VARARGS | METH_KEYWORDS }, | |
9658 | { "wxListCtrl_SetItemData", (PyCFunction) _wrap_wxListCtrl_SetItemData, METH_VARARGS | METH_KEYWORDS }, | |
9659 | { "wxListCtrl_GetItemData", (PyCFunction) _wrap_wxListCtrl_GetItemData, METH_VARARGS | METH_KEYWORDS }, | |
9660 | { "wxListCtrl_SetItemText", (PyCFunction) _wrap_wxListCtrl_SetItemText, METH_VARARGS | METH_KEYWORDS }, | |
9661 | { "wxListCtrl_GetItemText", (PyCFunction) _wrap_wxListCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS }, | |
9662 | { "wxListCtrl_SetItemImage", (PyCFunction) _wrap_wxListCtrl_SetItemImage, METH_VARARGS | METH_KEYWORDS }, | |
9663 | { "wxListCtrl_SetItemState", (PyCFunction) _wrap_wxListCtrl_SetItemState, METH_VARARGS | METH_KEYWORDS }, | |
9664 | { "wxListCtrl_GetItemState", (PyCFunction) _wrap_wxListCtrl_GetItemState, METH_VARARGS | METH_KEYWORDS }, | |
9665 | { "wxListCtrl_SetStringItem", (PyCFunction) _wrap_wxListCtrl_SetStringItem, METH_VARARGS | METH_KEYWORDS }, | |
9666 | { "wxListCtrl_SetItem", (PyCFunction) _wrap_wxListCtrl_SetItem, METH_VARARGS | METH_KEYWORDS }, | |
9667 | { "wxListCtrl_GetItem", (PyCFunction) _wrap_wxListCtrl_GetItem, METH_VARARGS | METH_KEYWORDS }, | |
9668 | { "wxListCtrl_GetEditControl", (PyCFunction) _wrap_wxListCtrl_GetEditControl, METH_VARARGS | METH_KEYWORDS }, | |
9669 | { "wxListCtrl_GetCountPerPage", (PyCFunction) _wrap_wxListCtrl_GetCountPerPage, METH_VARARGS | METH_KEYWORDS }, | |
9670 | { "wxListCtrl_SetColumnWidth", (PyCFunction) _wrap_wxListCtrl_SetColumnWidth, METH_VARARGS | METH_KEYWORDS }, | |
9671 | { "wxListCtrl_GetColumnWidth", (PyCFunction) _wrap_wxListCtrl_GetColumnWidth, METH_VARARGS | METH_KEYWORDS }, | |
9672 | { "wxListCtrl_SetColumn", (PyCFunction) _wrap_wxListCtrl_SetColumn, METH_VARARGS | METH_KEYWORDS }, | |
9673 | { "wxListCtrl_GetColumn", (PyCFunction) _wrap_wxListCtrl_GetColumn, METH_VARARGS | METH_KEYWORDS }, | |
9674 | { "wxListCtrl_SetBackgroundColour", (PyCFunction) _wrap_wxListCtrl_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9675 | { "wxListCtrl_SetForegroundColour", (PyCFunction) _wrap_wxListCtrl_SetForegroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9676 | { "wxListCtrl__setCallbackInfo", (PyCFunction) _wrap_wxListCtrl__setCallbackInfo, METH_VARARGS | METH_KEYWORDS }, | |
9677 | { "wxListCtrl_Create", (PyCFunction) _wrap_wxListCtrl_Create, METH_VARARGS | METH_KEYWORDS }, | |
9678 | { "new_wxPreListCtrl", (PyCFunction) _wrap_new_wxPreListCtrl, METH_VARARGS | METH_KEYWORDS }, | |
9679 | { "new_wxListCtrl", (PyCFunction) _wrap_new_wxListCtrl, METH_VARARGS | METH_KEYWORDS }, | |
9680 | { "wxListEvent_GetCacheTo", (PyCFunction) _wrap_wxListEvent_GetCacheTo, METH_VARARGS | METH_KEYWORDS }, | |
9681 | { "wxListEvent_GetCacheFrom", (PyCFunction) _wrap_wxListEvent_GetCacheFrom, METH_VARARGS | METH_KEYWORDS }, | |
9682 | { "wxListEvent_GetItem", (PyCFunction) _wrap_wxListEvent_GetItem, METH_VARARGS | METH_KEYWORDS }, | |
9683 | { "wxListEvent_GetMask", (PyCFunction) _wrap_wxListEvent_GetMask, METH_VARARGS | METH_KEYWORDS }, | |
9684 | { "wxListEvent_GetData", (PyCFunction) _wrap_wxListEvent_GetData, METH_VARARGS | METH_KEYWORDS }, | |
9685 | { "wxListEvent_GetImage", (PyCFunction) _wrap_wxListEvent_GetImage, METH_VARARGS | METH_KEYWORDS }, | |
9686 | { "wxListEvent_GetText", (PyCFunction) _wrap_wxListEvent_GetText, METH_VARARGS | METH_KEYWORDS }, | |
9687 | { "wxListEvent_GetLabel", (PyCFunction) _wrap_wxListEvent_GetLabel, METH_VARARGS | METH_KEYWORDS }, | |
9688 | { "wxListEvent_GetPoint", (PyCFunction) _wrap_wxListEvent_GetPoint, METH_VARARGS | METH_KEYWORDS }, | |
9689 | { "wxListEvent_GetColumn", (PyCFunction) _wrap_wxListEvent_GetColumn, METH_VARARGS | METH_KEYWORDS }, | |
9690 | { "wxListEvent_GetIndex", (PyCFunction) _wrap_wxListEvent_GetIndex, METH_VARARGS | METH_KEYWORDS }, | |
9691 | { "wxListEvent_GetCode", (PyCFunction) _wrap_wxListEvent_GetCode, METH_VARARGS | METH_KEYWORDS }, | |
9692 | { "wxListEvent_m_item_get", (PyCFunction) _wrap_wxListEvent_m_item_get, METH_VARARGS | METH_KEYWORDS }, | |
9693 | { "wxListEvent_m_item_set", (PyCFunction) _wrap_wxListEvent_m_item_set, METH_VARARGS | METH_KEYWORDS }, | |
9694 | { "wxListEvent_m_pointDrag_get", (PyCFunction) _wrap_wxListEvent_m_pointDrag_get, METH_VARARGS | METH_KEYWORDS }, | |
9695 | { "wxListEvent_m_pointDrag_set", (PyCFunction) _wrap_wxListEvent_m_pointDrag_set, METH_VARARGS | METH_KEYWORDS }, | |
9696 | { "wxListEvent_m_col_get", (PyCFunction) _wrap_wxListEvent_m_col_get, METH_VARARGS | METH_KEYWORDS }, | |
9697 | { "wxListEvent_m_col_set", (PyCFunction) _wrap_wxListEvent_m_col_set, METH_VARARGS | METH_KEYWORDS }, | |
9698 | { "wxListEvent_m_itemIndex_get", (PyCFunction) _wrap_wxListEvent_m_itemIndex_get, METH_VARARGS | METH_KEYWORDS }, | |
9699 | { "wxListEvent_m_itemIndex_set", (PyCFunction) _wrap_wxListEvent_m_itemIndex_set, METH_VARARGS | METH_KEYWORDS }, | |
9700 | { "wxListEvent_m_oldItemIndex_get", (PyCFunction) _wrap_wxListEvent_m_oldItemIndex_get, METH_VARARGS | METH_KEYWORDS }, | |
9701 | { "wxListEvent_m_oldItemIndex_set", (PyCFunction) _wrap_wxListEvent_m_oldItemIndex_set, METH_VARARGS | METH_KEYWORDS }, | |
9702 | { "wxListEvent_m_code_get", (PyCFunction) _wrap_wxListEvent_m_code_get, METH_VARARGS | METH_KEYWORDS }, | |
9703 | { "wxListEvent_m_code_set", (PyCFunction) _wrap_wxListEvent_m_code_set, METH_VARARGS | METH_KEYWORDS }, | |
9704 | { "new_wxListEvent", (PyCFunction) _wrap_new_wxListEvent, METH_VARARGS | METH_KEYWORDS }, | |
9705 | { "wxListItem_m_width_get", (PyCFunction) _wrap_wxListItem_m_width_get, METH_VARARGS | METH_KEYWORDS }, | |
9706 | { "wxListItem_m_width_set", (PyCFunction) _wrap_wxListItem_m_width_set, METH_VARARGS | METH_KEYWORDS }, | |
9707 | { "wxListItem_m_format_get", (PyCFunction) _wrap_wxListItem_m_format_get, METH_VARARGS | METH_KEYWORDS }, | |
9708 | { "wxListItem_m_format_set", (PyCFunction) _wrap_wxListItem_m_format_set, METH_VARARGS | METH_KEYWORDS }, | |
9709 | { "wxListItem_m_data_get", (PyCFunction) _wrap_wxListItem_m_data_get, METH_VARARGS | METH_KEYWORDS }, | |
9710 | { "wxListItem_m_data_set", (PyCFunction) _wrap_wxListItem_m_data_set, METH_VARARGS | METH_KEYWORDS }, | |
9711 | { "wxListItem_m_image_get", (PyCFunction) _wrap_wxListItem_m_image_get, METH_VARARGS | METH_KEYWORDS }, | |
9712 | { "wxListItem_m_image_set", (PyCFunction) _wrap_wxListItem_m_image_set, METH_VARARGS | METH_KEYWORDS }, | |
9713 | { "wxListItem_m_text_get", (PyCFunction) _wrap_wxListItem_m_text_get, METH_VARARGS | METH_KEYWORDS }, | |
9714 | { "wxListItem_m_text_set", (PyCFunction) _wrap_wxListItem_m_text_set, METH_VARARGS | METH_KEYWORDS }, | |
9715 | { "wxListItem_m_stateMask_get", (PyCFunction) _wrap_wxListItem_m_stateMask_get, METH_VARARGS | METH_KEYWORDS }, | |
9716 | { "wxListItem_m_stateMask_set", (PyCFunction) _wrap_wxListItem_m_stateMask_set, METH_VARARGS | METH_KEYWORDS }, | |
9717 | { "wxListItem_m_state_get", (PyCFunction) _wrap_wxListItem_m_state_get, METH_VARARGS | METH_KEYWORDS }, | |
9718 | { "wxListItem_m_state_set", (PyCFunction) _wrap_wxListItem_m_state_set, METH_VARARGS | METH_KEYWORDS }, | |
9719 | { "wxListItem_m_col_get", (PyCFunction) _wrap_wxListItem_m_col_get, METH_VARARGS | METH_KEYWORDS }, | |
9720 | { "wxListItem_m_col_set", (PyCFunction) _wrap_wxListItem_m_col_set, METH_VARARGS | METH_KEYWORDS }, | |
9721 | { "wxListItem_m_itemId_get", (PyCFunction) _wrap_wxListItem_m_itemId_get, METH_VARARGS | METH_KEYWORDS }, | |
9722 | { "wxListItem_m_itemId_set", (PyCFunction) _wrap_wxListItem_m_itemId_set, METH_VARARGS | METH_KEYWORDS }, | |
9723 | { "wxListItem_m_mask_get", (PyCFunction) _wrap_wxListItem_m_mask_get, METH_VARARGS | METH_KEYWORDS }, | |
9724 | { "wxListItem_m_mask_set", (PyCFunction) _wrap_wxListItem_m_mask_set, METH_VARARGS | METH_KEYWORDS }, | |
9725 | { "wxListItem_GetFont", (PyCFunction) _wrap_wxListItem_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
9726 | { "wxListItem_GetBackgroundColour", (PyCFunction) _wrap_wxListItem_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9727 | { "wxListItem_GetTextColour", (PyCFunction) _wrap_wxListItem_GetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9728 | { "wxListItem_HasAttributes", (PyCFunction) _wrap_wxListItem_HasAttributes, METH_VARARGS | METH_KEYWORDS }, | |
9729 | { "wxListItem_GetAttributes", (PyCFunction) _wrap_wxListItem_GetAttributes, METH_VARARGS | METH_KEYWORDS }, | |
9730 | { "wxListItem_GetAlign", (PyCFunction) _wrap_wxListItem_GetAlign, METH_VARARGS | METH_KEYWORDS }, | |
9731 | { "wxListItem_GetWidth", (PyCFunction) _wrap_wxListItem_GetWidth, METH_VARARGS | METH_KEYWORDS }, | |
9732 | { "wxListItem_GetData", (PyCFunction) _wrap_wxListItem_GetData, METH_VARARGS | METH_KEYWORDS }, | |
9733 | { "wxListItem_GetImage", (PyCFunction) _wrap_wxListItem_GetImage, METH_VARARGS | METH_KEYWORDS }, | |
9734 | { "wxListItem_GetText", (PyCFunction) _wrap_wxListItem_GetText, METH_VARARGS | METH_KEYWORDS }, | |
9735 | { "wxListItem_GetState", (PyCFunction) _wrap_wxListItem_GetState, METH_VARARGS | METH_KEYWORDS }, | |
9736 | { "wxListItem_GetColumn", (PyCFunction) _wrap_wxListItem_GetColumn, METH_VARARGS | METH_KEYWORDS }, | |
9737 | { "wxListItem_GetId", (PyCFunction) _wrap_wxListItem_GetId, METH_VARARGS | METH_KEYWORDS }, | |
9738 | { "wxListItem_GetMask", (PyCFunction) _wrap_wxListItem_GetMask, METH_VARARGS | METH_KEYWORDS }, | |
9739 | { "wxListItem_SetFont", (PyCFunction) _wrap_wxListItem_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
9740 | { "wxListItem_SetBackgroundColour", (PyCFunction) _wrap_wxListItem_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9741 | { "wxListItem_SetTextColour", (PyCFunction) _wrap_wxListItem_SetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9742 | { "wxListItem_SetAlign", (PyCFunction) _wrap_wxListItem_SetAlign, METH_VARARGS | METH_KEYWORDS }, | |
9743 | { "wxListItem_SetWidth", (PyCFunction) _wrap_wxListItem_SetWidth, METH_VARARGS | METH_KEYWORDS }, | |
9744 | { "wxListItem_SetData", (PyCFunction) _wrap_wxListItem_SetData, METH_VARARGS | METH_KEYWORDS }, | |
9745 | { "wxListItem_SetImage", (PyCFunction) _wrap_wxListItem_SetImage, METH_VARARGS | METH_KEYWORDS }, | |
9746 | { "wxListItem_SetText", (PyCFunction) _wrap_wxListItem_SetText, METH_VARARGS | METH_KEYWORDS }, | |
9747 | { "wxListItem_SetStateMask", (PyCFunction) _wrap_wxListItem_SetStateMask, METH_VARARGS | METH_KEYWORDS }, | |
9748 | { "wxListItem_SetState", (PyCFunction) _wrap_wxListItem_SetState, METH_VARARGS | METH_KEYWORDS }, | |
9749 | { "wxListItem_SetColumn", (PyCFunction) _wrap_wxListItem_SetColumn, METH_VARARGS | METH_KEYWORDS }, | |
9750 | { "wxListItem_SetId", (PyCFunction) _wrap_wxListItem_SetId, METH_VARARGS | METH_KEYWORDS }, | |
9751 | { "wxListItem_SetMask", (PyCFunction) _wrap_wxListItem_SetMask, METH_VARARGS | METH_KEYWORDS }, | |
9752 | { "wxListItem_ClearAttributes", (PyCFunction) _wrap_wxListItem_ClearAttributes, METH_VARARGS | METH_KEYWORDS }, | |
9753 | { "wxListItem_Clear", (PyCFunction) _wrap_wxListItem_Clear, METH_VARARGS | METH_KEYWORDS }, | |
9754 | { "delete_wxListItem", (PyCFunction) _wrap_delete_wxListItem, METH_VARARGS | METH_KEYWORDS }, | |
9755 | { "new_wxListItem", (PyCFunction) _wrap_new_wxListItem, METH_VARARGS | METH_KEYWORDS }, | |
9756 | { "wxListItemAttr_GetFont", (PyCFunction) _wrap_wxListItemAttr_GetFont, METH_VARARGS | METH_KEYWORDS }, | |
9757 | { "wxListItemAttr_GetBackgroundColour", (PyCFunction) _wrap_wxListItemAttr_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9758 | { "wxListItemAttr_GetTextColour", (PyCFunction) _wrap_wxListItemAttr_GetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9759 | { "wxListItemAttr_HasFont", (PyCFunction) _wrap_wxListItemAttr_HasFont, METH_VARARGS | METH_KEYWORDS }, | |
9760 | { "wxListItemAttr_HasBackgroundColour", (PyCFunction) _wrap_wxListItemAttr_HasBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9761 | { "wxListItemAttr_HasTextColour", (PyCFunction) _wrap_wxListItemAttr_HasTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9762 | { "wxListItemAttr_SetFont", (PyCFunction) _wrap_wxListItemAttr_SetFont, METH_VARARGS | METH_KEYWORDS }, | |
9763 | { "wxListItemAttr_SetBackgroundColour", (PyCFunction) _wrap_wxListItemAttr_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS }, | |
9764 | { "wxListItemAttr_SetTextColour", (PyCFunction) _wrap_wxListItemAttr_SetTextColour, METH_VARARGS | METH_KEYWORDS }, | |
9765 | { "new_wxListItemAttr", (PyCFunction) _wrap_new_wxListItemAttr, METH_VARARGS | METH_KEYWORDS }, | |
9766 | { NULL, NULL } | |
9767 | }; | |
9768 | #ifdef __cplusplus | |
9769 | } | |
9770 | #endif | |
9771 | /* | |
9772 | * This table is used by the pointer type-checker | |
9773 | */ | |
9774 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
9775 | { "_wxEvent","_wxTreeEvent",SwigwxTreeEventTowxEvent}, | |
9776 | { "_wxEvent","_wxListEvent",SwigwxListEventTowxEvent}, | |
9777 | { "_signed_long","_long",0}, | |
9778 | { "_wxPrintQuality","_wxCoord",0}, | |
9779 | { "_wxPrintQuality","_int",0}, | |
9780 | { "_wxPrintQuality","_signed_int",0}, | |
9781 | { "_wxPrintQuality","_unsigned_int",0}, | |
9782 | { "_wxPrintQuality","_wxWindowID",0}, | |
9783 | { "_wxPrintQuality","_uint",0}, | |
9784 | { "_wxPrintQuality","_EBool",0}, | |
9785 | { "_wxPrintQuality","_size_t",0}, | |
9786 | { "_wxPrintQuality","_time_t",0}, | |
9787 | { "_wxNotifyEvent","_wxTreeEvent",SwigwxTreeEventTowxNotifyEvent}, | |
9788 | { "_wxNotifyEvent","_wxListEvent",SwigwxListEventTowxNotifyEvent}, | |
9789 | { "_byte","_unsigned_char",0}, | |
9790 | { "_long","_unsigned_long",0}, | |
9791 | { "_long","_signed_long",0}, | |
9792 | { "_size_t","_wxCoord",0}, | |
9793 | { "_size_t","_wxPrintQuality",0}, | |
9794 | { "_size_t","_time_t",0}, | |
9795 | { "_size_t","_unsigned_int",0}, | |
9796 | { "_size_t","_int",0}, | |
9797 | { "_size_t","_wxWindowID",0}, | |
9798 | { "_size_t","_uint",0}, | |
9799 | { "_uint","_wxCoord",0}, | |
9800 | { "_uint","_wxPrintQuality",0}, | |
9801 | { "_uint","_time_t",0}, | |
9802 | { "_uint","_size_t",0}, | |
9803 | { "_uint","_unsigned_int",0}, | |
9804 | { "_uint","_int",0}, | |
9805 | { "_uint","_wxWindowID",0}, | |
9806 | { "_wxChar","_char",0}, | |
9807 | { "_wxCommandEvent","_wxTreeEvent",SwigwxTreeEventTowxCommandEvent}, | |
9808 | { "_wxCommandEvent","_wxListEvent",SwigwxListEventTowxCommandEvent}, | |
9809 | { "_char","_wxChar",0}, | |
9810 | { "_struct_wxNativeFontInfo","_wxNativeFontInfo",0}, | |
9811 | { "_EBool","_wxCoord",0}, | |
9812 | { "_EBool","_wxPrintQuality",0}, | |
9813 | { "_EBool","_signed_int",0}, | |
9814 | { "_EBool","_int",0}, | |
9815 | { "_EBool","_wxWindowID",0}, | |
9816 | { "_unsigned_long","_long",0}, | |
9817 | { "_wxNativeFontInfo","_struct_wxNativeFontInfo",0}, | |
9818 | { "_signed_int","_wxCoord",0}, | |
9819 | { "_signed_int","_wxPrintQuality",0}, | |
9820 | { "_signed_int","_EBool",0}, | |
9821 | { "_signed_int","_wxWindowID",0}, | |
9822 | { "_signed_int","_int",0}, | |
9823 | { "_WXTYPE","_short",0}, | |
9824 | { "_WXTYPE","_signed_short",0}, | |
9825 | { "_WXTYPE","_unsigned_short",0}, | |
9826 | { "_unsigned_short","_WXTYPE",0}, | |
9827 | { "_unsigned_short","_short",0}, | |
9828 | { "_wxObject","_wxPyTreeCtrl",SwigwxPyTreeCtrlTowxObject}, | |
9829 | { "_wxObject","_wxTreeEvent",SwigwxTreeEventTowxObject}, | |
9830 | { "_wxObject","_wxPyTreeItemData",SwigwxPyTreeItemDataTowxObject}, | |
9831 | { "_wxObject","_wxListView",SwigwxListViewTowxObject}, | |
9832 | { "_wxObject","_wxPyListCtrl",SwigwxPyListCtrlTowxObject}, | |
9833 | { "_wxObject","_wxListEvent",SwigwxListEventTowxObject}, | |
9834 | { "_wxObject","_wxListItem",SwigwxListItemTowxObject}, | |
9835 | { "_signed_short","_WXTYPE",0}, | |
9836 | { "_signed_short","_short",0}, | |
9837 | { "_unsigned_char","_byte",0}, | |
9838 | { "_wxControl","_wxPyTreeCtrl",SwigwxPyTreeCtrlTowxControl}, | |
9839 | { "_wxControl","_wxListView",SwigwxListViewTowxControl}, | |
9840 | { "_wxControl","_wxPyListCtrl",SwigwxPyListCtrlTowxControl}, | |
9841 | { "_unsigned_int","_wxCoord",0}, | |
9842 | { "_unsigned_int","_wxPrintQuality",0}, | |
9843 | { "_unsigned_int","_time_t",0}, | |
9844 | { "_unsigned_int","_size_t",0}, | |
9845 | { "_unsigned_int","_uint",0}, | |
9846 | { "_unsigned_int","_wxWindowID",0}, | |
9847 | { "_unsigned_int","_int",0}, | |
9848 | { "_short","_WXTYPE",0}, | |
9849 | { "_short","_unsigned_short",0}, | |
9850 | { "_short","_signed_short",0}, | |
9851 | { "_wxWindowID","_wxCoord",0}, | |
9852 | { "_wxWindowID","_wxPrintQuality",0}, | |
9853 | { "_wxWindowID","_time_t",0}, | |
9854 | { "_wxWindowID","_size_t",0}, | |
9855 | { "_wxWindowID","_EBool",0}, | |
9856 | { "_wxWindowID","_uint",0}, | |
9857 | { "_wxWindowID","_int",0}, | |
9858 | { "_wxWindowID","_signed_int",0}, | |
9859 | { "_wxWindowID","_unsigned_int",0}, | |
9860 | { "_int","_wxCoord",0}, | |
9861 | { "_int","_wxPrintQuality",0}, | |
9862 | { "_int","_time_t",0}, | |
9863 | { "_int","_size_t",0}, | |
9864 | { "_int","_EBool",0}, | |
9865 | { "_int","_uint",0}, | |
9866 | { "_int","_wxWindowID",0}, | |
9867 | { "_int","_unsigned_int",0}, | |
9868 | { "_int","_signed_int",0}, | |
9869 | { "_time_t","_wxCoord",0}, | |
9870 | { "_time_t","_wxPrintQuality",0}, | |
9871 | { "_time_t","_unsigned_int",0}, | |
9872 | { "_time_t","_int",0}, | |
9873 | { "_time_t","_wxWindowID",0}, | |
9874 | { "_time_t","_uint",0}, | |
9875 | { "_time_t","_size_t",0}, | |
9876 | { "_wxCoord","_int",0}, | |
9877 | { "_wxCoord","_signed_int",0}, | |
9878 | { "_wxCoord","_unsigned_int",0}, | |
9879 | { "_wxCoord","_wxWindowID",0}, | |
9880 | { "_wxCoord","_uint",0}, | |
9881 | { "_wxCoord","_EBool",0}, | |
9882 | { "_wxCoord","_size_t",0}, | |
9883 | { "_wxCoord","_time_t",0}, | |
9884 | { "_wxCoord","_wxPrintQuality",0}, | |
9885 | { "_wxPyListCtrl","_wxListView",SwigwxListViewTowxPyListCtrl}, | |
9886 | { "_wxEvtHandler","_wxPyTreeCtrl",SwigwxPyTreeCtrlTowxEvtHandler}, | |
9887 | { "_wxEvtHandler","_wxListView",SwigwxListViewTowxEvtHandler}, | |
9888 | { "_wxEvtHandler","_wxPyListCtrl",SwigwxPyListCtrlTowxEvtHandler}, | |
9889 | { "_wxWindow","_wxPyTreeCtrl",SwigwxPyTreeCtrlTowxWindow}, | |
9890 | { "_wxWindow","_wxListView",SwigwxListViewTowxWindow}, | |
9891 | { "_wxWindow","_wxPyListCtrl",SwigwxPyListCtrlTowxWindow}, | |
9892 | {0,0,0}}; | |
9893 | ||
9894 | static PyObject *SWIG_globals; | |
9895 | #ifdef __cplusplus | |
9896 | extern "C" | |
9897 | #endif | |
9898 | SWIGEXPORT(void) initcontrols2c() { | |
9899 | PyObject *m, *d; | |
9900 | SWIG_globals = SWIG_newvarlink(); | |
9901 | m = Py_InitModule("controls2c", controls2cMethods); | |
9902 | d = PyModule_GetDict(m); | |
9903 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG)); | |
9904 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG)); | |
9905 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT)); | |
9906 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_END_LABEL_EDIT)); | |
9907 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ITEM)); | |
9908 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS)); | |
9909 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_GET_INFO)); | |
9910 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_SET_INFO)); | |
9911 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_SELECTED)); | |
9912 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_DESELECTED)); | |
9913 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_LIST_KEY_DOWN)); | |
9914 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_INSERT_ITEM)); | |
9915 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_CLICK)); | |
9916 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK)); | |
9917 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK)); | |
9918 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_ACTIVATED)); | |
9919 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_CACHE_HINT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_CACHE_HINT)); | |
9920 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_RIGHT_CLICK)); | |
9921 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_BEGIN_DRAG)); | |
9922 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_DRAGGING", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_DRAGGING)); | |
9923 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_END_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_END_DRAG)); | |
9924 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_FOCUSED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_FOCUSED)); | |
9925 | PyDict_SetItemString(d,"wxLC_VRULES", PyInt_FromLong((long) wxLC_VRULES)); | |
9926 | PyDict_SetItemString(d,"wxLC_HRULES", PyInt_FromLong((long) wxLC_HRULES)); | |
9927 | PyDict_SetItemString(d,"wxLC_ICON", PyInt_FromLong((long) wxLC_ICON)); | |
9928 | PyDict_SetItemString(d,"wxLC_SMALL_ICON", PyInt_FromLong((long) wxLC_SMALL_ICON)); | |
9929 | PyDict_SetItemString(d,"wxLC_LIST", PyInt_FromLong((long) wxLC_LIST)); | |
9930 | PyDict_SetItemString(d,"wxLC_REPORT", PyInt_FromLong((long) wxLC_REPORT)); | |
9931 | PyDict_SetItemString(d,"wxLC_ALIGN_TOP", PyInt_FromLong((long) wxLC_ALIGN_TOP)); | |
9932 | PyDict_SetItemString(d,"wxLC_ALIGN_LEFT", PyInt_FromLong((long) wxLC_ALIGN_LEFT)); | |
9933 | PyDict_SetItemString(d,"wxLC_AUTOARRANGE", PyInt_FromLong((long) wxLC_AUTOARRANGE)); | |
9934 | PyDict_SetItemString(d,"wxLC_VIRTUAL", PyInt_FromLong((long) wxLC_VIRTUAL)); | |
9935 | PyDict_SetItemString(d,"wxLC_EDIT_LABELS", PyInt_FromLong((long) wxLC_EDIT_LABELS)); | |
9936 | PyDict_SetItemString(d,"wxLC_NO_HEADER", PyInt_FromLong((long) wxLC_NO_HEADER)); | |
9937 | PyDict_SetItemString(d,"wxLC_NO_SORT_HEADER", PyInt_FromLong((long) wxLC_NO_SORT_HEADER)); | |
9938 | PyDict_SetItemString(d,"wxLC_SINGLE_SEL", PyInt_FromLong((long) wxLC_SINGLE_SEL)); | |
9939 | PyDict_SetItemString(d,"wxLC_SORT_ASCENDING", PyInt_FromLong((long) wxLC_SORT_ASCENDING)); | |
9940 | PyDict_SetItemString(d,"wxLC_SORT_DESCENDING", PyInt_FromLong((long) wxLC_SORT_DESCENDING)); | |
9941 | PyDict_SetItemString(d,"wxLC_MASK_TYPE", PyInt_FromLong((long) wxLC_MASK_TYPE)); | |
9942 | PyDict_SetItemString(d,"wxLC_MASK_ALIGN", PyInt_FromLong((long) wxLC_MASK_ALIGN)); | |
9943 | PyDict_SetItemString(d,"wxLC_MASK_SORT", PyInt_FromLong((long) wxLC_MASK_SORT)); | |
9944 | PyDict_SetItemString(d,"wxLC_USER_TEXT", PyInt_FromLong((long) wxLC_USER_TEXT)); | |
9945 | PyDict_SetItemString(d,"wxLIST_MASK_STATE", PyInt_FromLong((long) wxLIST_MASK_STATE)); | |
9946 | PyDict_SetItemString(d,"wxLIST_MASK_TEXT", PyInt_FromLong((long) wxLIST_MASK_TEXT)); | |
9947 | PyDict_SetItemString(d,"wxLIST_MASK_IMAGE", PyInt_FromLong((long) wxLIST_MASK_IMAGE)); | |
9948 | PyDict_SetItemString(d,"wxLIST_MASK_DATA", PyInt_FromLong((long) wxLIST_MASK_DATA)); | |
9949 | PyDict_SetItemString(d,"wxLIST_SET_ITEM", PyInt_FromLong((long) wxLIST_SET_ITEM)); | |
9950 | PyDict_SetItemString(d,"wxLIST_MASK_WIDTH", PyInt_FromLong((long) wxLIST_MASK_WIDTH)); | |
9951 | PyDict_SetItemString(d,"wxLIST_MASK_FORMAT", PyInt_FromLong((long) wxLIST_MASK_FORMAT)); | |
9952 | PyDict_SetItemString(d,"wxLIST_STATE_DONTCARE", PyInt_FromLong((long) wxLIST_STATE_DONTCARE)); | |
9953 | PyDict_SetItemString(d,"wxLIST_STATE_DROPHILITED", PyInt_FromLong((long) wxLIST_STATE_DROPHILITED)); | |
9954 | PyDict_SetItemString(d,"wxLIST_STATE_FOCUSED", PyInt_FromLong((long) wxLIST_STATE_FOCUSED)); | |
9955 | PyDict_SetItemString(d,"wxLIST_STATE_SELECTED", PyInt_FromLong((long) wxLIST_STATE_SELECTED)); | |
9956 | PyDict_SetItemString(d,"wxLIST_STATE_CUT", PyInt_FromLong((long) wxLIST_STATE_CUT)); | |
9957 | PyDict_SetItemString(d,"wxLIST_HITTEST_ABOVE", PyInt_FromLong((long) wxLIST_HITTEST_ABOVE)); | |
9958 | PyDict_SetItemString(d,"wxLIST_HITTEST_BELOW", PyInt_FromLong((long) wxLIST_HITTEST_BELOW)); | |
9959 | PyDict_SetItemString(d,"wxLIST_HITTEST_NOWHERE", PyInt_FromLong((long) wxLIST_HITTEST_NOWHERE)); | |
9960 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMICON", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMICON)); | |
9961 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMLABEL", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMLABEL)); | |
9962 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMRIGHT", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMRIGHT)); | |
9963 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEMSTATEICON", PyInt_FromLong((long) wxLIST_HITTEST_ONITEMSTATEICON)); | |
9964 | PyDict_SetItemString(d,"wxLIST_HITTEST_TOLEFT", PyInt_FromLong((long) wxLIST_HITTEST_TOLEFT)); | |
9965 | PyDict_SetItemString(d,"wxLIST_HITTEST_TORIGHT", PyInt_FromLong((long) wxLIST_HITTEST_TORIGHT)); | |
9966 | PyDict_SetItemString(d,"wxLIST_HITTEST_ONITEM", PyInt_FromLong((long) wxLIST_HITTEST_ONITEM)); | |
9967 | PyDict_SetItemString(d,"wxLIST_NEXT_ABOVE", PyInt_FromLong((long) wxLIST_NEXT_ABOVE)); | |
9968 | PyDict_SetItemString(d,"wxLIST_NEXT_ALL", PyInt_FromLong((long) wxLIST_NEXT_ALL)); | |
9969 | PyDict_SetItemString(d,"wxLIST_NEXT_BELOW", PyInt_FromLong((long) wxLIST_NEXT_BELOW)); | |
9970 | PyDict_SetItemString(d,"wxLIST_NEXT_LEFT", PyInt_FromLong((long) wxLIST_NEXT_LEFT)); | |
9971 | PyDict_SetItemString(d,"wxLIST_NEXT_RIGHT", PyInt_FromLong((long) wxLIST_NEXT_RIGHT)); | |
9972 | PyDict_SetItemString(d,"wxLIST_ALIGN_DEFAULT", PyInt_FromLong((long) wxLIST_ALIGN_DEFAULT)); | |
9973 | PyDict_SetItemString(d,"wxLIST_ALIGN_LEFT", PyInt_FromLong((long) wxLIST_ALIGN_LEFT)); | |
9974 | PyDict_SetItemString(d,"wxLIST_ALIGN_TOP", PyInt_FromLong((long) wxLIST_ALIGN_TOP)); | |
9975 | PyDict_SetItemString(d,"wxLIST_ALIGN_SNAP_TO_GRID", PyInt_FromLong((long) wxLIST_ALIGN_SNAP_TO_GRID)); | |
9976 | PyDict_SetItemString(d,"wxLIST_AUTOSIZE", PyInt_FromLong((long) wxLIST_AUTOSIZE)); | |
9977 | PyDict_SetItemString(d,"wxLIST_AUTOSIZE_USEHEADER", PyInt_FromLong((long) wxLIST_AUTOSIZE_USEHEADER)); | |
9978 | PyDict_SetItemString(d,"wxLIST_RECT_BOUNDS", PyInt_FromLong((long) wxLIST_RECT_BOUNDS)); | |
9979 | PyDict_SetItemString(d,"wxLIST_RECT_ICON", PyInt_FromLong((long) wxLIST_RECT_ICON)); | |
9980 | PyDict_SetItemString(d,"wxLIST_RECT_LABEL", PyInt_FromLong((long) wxLIST_RECT_LABEL)); | |
9981 | PyDict_SetItemString(d,"wxLIST_FIND_UP", PyInt_FromLong((long) wxLIST_FIND_UP)); | |
9982 | PyDict_SetItemString(d,"wxLIST_FIND_DOWN", PyInt_FromLong((long) wxLIST_FIND_DOWN)); | |
9983 | PyDict_SetItemString(d,"wxLIST_FIND_LEFT", PyInt_FromLong((long) wxLIST_FIND_LEFT)); | |
9984 | PyDict_SetItemString(d,"wxLIST_FIND_RIGHT", PyInt_FromLong((long) wxLIST_FIND_RIGHT)); | |
9985 | PyDict_SetItemString(d,"wxLIST_FORMAT_LEFT", PyInt_FromLong((long) wxLIST_FORMAT_LEFT)); | |
9986 | PyDict_SetItemString(d,"wxLIST_FORMAT_RIGHT", PyInt_FromLong((long) wxLIST_FORMAT_RIGHT)); | |
9987 | PyDict_SetItemString(d,"wxLIST_FORMAT_CENTRE", PyInt_FromLong((long) wxLIST_FORMAT_CENTRE)); | |
9988 | PyDict_SetItemString(d,"wxLIST_FORMAT_CENTER", PyInt_FromLong((long) wxLIST_FORMAT_CENTER)); | |
9989 | PyDict_SetItemString(d,"wxTR_NO_BUTTONS", PyInt_FromLong((long) wxTR_NO_BUTTONS)); | |
9990 | PyDict_SetItemString(d,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS)); | |
9991 | PyDict_SetItemString(d,"wxTR_TWIST_BUTTONS", PyInt_FromLong((long) wxTR_TWIST_BUTTONS)); | |
9992 | PyDict_SetItemString(d,"wxTR_NO_LINES", PyInt_FromLong((long) wxTR_NO_LINES)); | |
9993 | PyDict_SetItemString(d,"wxTR_MAC_BUTTONS", PyInt_FromLong((long) wxTR_MAC_BUTTONS)); | |
9994 | PyDict_SetItemString(d,"wxTR_SINGLE", PyInt_FromLong((long) wxTR_SINGLE)); | |
9995 | PyDict_SetItemString(d,"wxTR_MULTIPLE", PyInt_FromLong((long) wxTR_MULTIPLE)); | |
9996 | PyDict_SetItemString(d,"wxTR_EXTENDED", PyInt_FromLong((long) wxTR_EXTENDED)); | |
9997 | PyDict_SetItemString(d,"wxTR_EDIT_LABELS", PyInt_FromLong((long) wxTR_EDIT_LABELS)); | |
9998 | PyDict_SetItemString(d,"wxTR_LINES_AT_ROOT", PyInt_FromLong((long) wxTR_LINES_AT_ROOT)); | |
9999 | PyDict_SetItemString(d,"wxTR_HIDE_ROOT", PyInt_FromLong((long) wxTR_HIDE_ROOT)); | |
10000 | PyDict_SetItemString(d,"wxTR_ROW_LINES", PyInt_FromLong((long) wxTR_ROW_LINES)); | |
10001 | PyDict_SetItemString(d,"wxTR_HAS_VARIABLE_ROW_HEIGHT", PyInt_FromLong((long) wxTR_HAS_VARIABLE_ROW_HEIGHT)); | |
10002 | PyDict_SetItemString(d,"wxTR_DEFAULT_STYLE", PyInt_FromLong((long) wxTR_DEFAULT_STYLE)); | |
10003 | PyDict_SetItemString(d,"wxTreeItemIcon_Normal", PyInt_FromLong((long) wxTreeItemIcon_Normal)); | |
10004 | PyDict_SetItemString(d,"wxTreeItemIcon_Selected", PyInt_FromLong((long) wxTreeItemIcon_Selected)); | |
10005 | PyDict_SetItemString(d,"wxTreeItemIcon_Expanded", PyInt_FromLong((long) wxTreeItemIcon_Expanded)); | |
10006 | PyDict_SetItemString(d,"wxTreeItemIcon_SelectedExpanded", PyInt_FromLong((long) wxTreeItemIcon_SelectedExpanded)); | |
10007 | PyDict_SetItemString(d,"wxTreeItemIcon_Max", PyInt_FromLong((long) wxTreeItemIcon_Max)); | |
10008 | PyDict_SetItemString(d,"wxTREE_HITTEST_ABOVE", PyInt_FromLong((long) wxTREE_HITTEST_ABOVE)); | |
10009 | PyDict_SetItemString(d,"wxTREE_HITTEST_BELOW", PyInt_FromLong((long) wxTREE_HITTEST_BELOW)); | |
10010 | PyDict_SetItemString(d,"wxTREE_HITTEST_NOWHERE", PyInt_FromLong((long) wxTREE_HITTEST_NOWHERE)); | |
10011 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMBUTTON", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMBUTTON)); | |
10012 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMICON", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMICON)); | |
10013 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMINDENT", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMINDENT)); | |
10014 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMLABEL", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMLABEL)); | |
10015 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMRIGHT", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMRIGHT)); | |
10016 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMSTATEICON", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMSTATEICON)); | |
10017 | PyDict_SetItemString(d,"wxTREE_HITTEST_TOLEFT", PyInt_FromLong((long) wxTREE_HITTEST_TOLEFT)); | |
10018 | PyDict_SetItemString(d,"wxTREE_HITTEST_TORIGHT", PyInt_FromLong((long) wxTREE_HITTEST_TORIGHT)); | |
10019 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMUPPERPART", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMUPPERPART)); | |
10020 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEMLOWERPART", PyInt_FromLong((long) wxTREE_HITTEST_ONITEMLOWERPART)); | |
10021 | PyDict_SetItemString(d,"wxTREE_HITTEST_ONITEM", PyInt_FromLong((long) wxTREE_HITTEST_ONITEM)); | |
10022 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_DRAG)); | |
10023 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_RDRAG)); | |
10024 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT)); | |
10025 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_END_LABEL_EDIT)); | |
10026 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_TREE_DELETE_ITEM)); | |
10027 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_GET_INFO)); | |
10028 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SET_INFO)); | |
10029 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDED)); | |
10030 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDING)); | |
10031 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSED)); | |
10032 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSING)); | |
10033 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED)); | |
10034 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING)); | |
10035 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN)); | |
10036 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_ACTIVATED)); | |
10037 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK)); | |
10038 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK)); | |
10039 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_END_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_END_DRAG)); | |
10040 | ||
10041 | // Map renamed classes back to their common name for OOR | |
10042 | wxPyPtrTypeMap_Add("wxTreeItemData", "wxPyTreeItemData"); | |
10043 | wxPyPtrTypeMap_Add("wxTreeCtrl", "wxPyTreeCtrl"); | |
10044 | wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl"); | |
10045 | { | |
10046 | int i; | |
10047 | for (i = 0; _swig_mapping[i].n1; i++) | |
10048 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
10049 | } | |
10050 | } |