]>
Commit | Line | Data |
---|---|---|
8ab979d7 | 1 | /* |
c368d904 | 2 | * FILE : src/msw/wx.cpp |
8ab979d7 RD |
3 | * |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
dbbb98cd | 6 | * Version 1.1 (Build 883) |
8ab979d7 RD |
7 | * |
8 | * Portions Copyright (c) 1995-1998 | |
9 | * The University of Utah and The Regents of the University of California. | |
10 | * Permission is granted to distribute this file in any manner provided | |
11 | * this notice remains intact. | |
12 | * | |
13 | * Do not make changes to this file--changes will be lost! | |
14 | * | |
15 | */ | |
16 | ||
17 | ||
18 | #define SWIGCODE | |
19 | /* Implementation : PYTHON */ | |
20 | ||
21 | #define SWIGPYTHON | |
22 | #include <string.h> | |
23 | #include <stdlib.h> | |
8ab979d7 RD |
24 | /* Definitions for Windows/Unix exporting */ |
25 | #if defined(__WIN32__) | |
26 | # if defined(_MSC_VER) | |
1d99702e | 27 | # define SWIGEXPORT(a) __declspec(dllexport) a |
8ab979d7 RD |
28 | # else |
29 | # if defined(__BORLANDC__) | |
c368d904 | 30 | # define SWIGEXPORT(a) a _export |
8ab979d7 | 31 | # else |
c368d904 | 32 | # define SWIGEXPORT(a) a |
8ab979d7 RD |
33 | # endif |
34 | # endif | |
35 | #else | |
c368d904 | 36 | # define SWIGEXPORT(a) a |
8ab979d7 RD |
37 | #endif |
38 | ||
c368d904 RD |
39 | #include "Python.h" |
40 | ||
8ab979d7 | 41 | #ifdef __cplusplus |
645ab2ee | 42 | extern "C" { |
8ab979d7 | 43 | #endif |
dbbb98cd | 44 | |
645ab2ee RD |
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 *); | |
1d99702e | 48 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); |
645ab2ee RD |
49 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); |
50 | extern PyObject *SWIG_newvarlink(void); | |
8ab979d7 | 51 | #ifdef __cplusplus |
8ab979d7 | 52 | } |
645ab2ee | 53 | #endif |
b8b8dda7 | 54 | #define SWIG_init initwxc |
8ab979d7 | 55 | |
b8b8dda7 | 56 | #define SWIG_name "wxc" |
8ab979d7 | 57 | |
8ab979d7 RD |
58 | #include "helpers.h" |
59 | ||
60 | static PyObject* l_output_helper(PyObject* target, PyObject* o) { | |
61 | PyObject* o2; | |
dbbb98cd | 62 | if (!target) { |
8ab979d7 | 63 | target = o; |
dbbb98cd | 64 | } else if (target == Py_None) { |
8ab979d7 RD |
65 | Py_DECREF(Py_None); |
66 | target = o; | |
dbbb98cd | 67 | } else { |
8ab979d7 RD |
68 | if (!PyList_Check(target)) { |
69 | o2 = target; | |
70 | target = PyList_New(0); | |
71 | PyList_Append(target, o2); | |
72 | Py_XDECREF(o2); | |
73 | } | |
74 | PyList_Append(target,o); | |
75 | Py_XDECREF(o); | |
76 | } | |
77 | return target; | |
78 | } | |
79 | ||
80 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
81 | PyObject* o2; | |
82 | PyObject* o3; | |
83 | ||
dbbb98cd | 84 | if (!target) { |
8ab979d7 | 85 | target = o; |
dbbb98cd | 86 | } else if (target == Py_None) { |
8ab979d7 RD |
87 | Py_DECREF(Py_None); |
88 | target = o; | |
dbbb98cd | 89 | } else { |
8ab979d7 RD |
90 | if (!PyTuple_Check(target)) { |
91 | o2 = target; | |
92 | target = PyTuple_New(1); | |
93 | PyTuple_SetItem(target, 0, o2); | |
94 | } | |
dbbb98cd RD |
95 | o3 = PyTuple_New(1); |
96 | PyTuple_SetItem(o3, 0, o); | |
8ab979d7 RD |
97 | |
98 | o2 = target; | |
dbbb98cd RD |
99 | target = PySequence_Concat(o2, o3); |
100 | Py_DECREF(o2); | |
8ab979d7 RD |
101 | Py_DECREF(o3); |
102 | } | |
103 | return target; | |
104 | } | |
105 | ||
8ab979d7 RD |
106 | static char* wxStringErrorMsg = "string type is required for parameter"; |
107 | ||
8bf5d46e RD |
108 | |
109 | #include <ctype.h> | |
110 | ||
111 | /*------------------------------------------------------------------ | |
112 | ptrcast(value,type) | |
113 | ||
114 | Constructs a new pointer value. Value may either be a string | |
115 | or an integer. Type is a string corresponding to either the | |
116 | C datatype or mangled datatype. | |
117 | ||
118 | ptrcast(0,"Vector *") | |
119 | or | |
120 | ptrcast(0,"Vector_p") | |
121 | ------------------------------------------------------------------ */ | |
122 | ||
123 | static PyObject *ptrcast(PyObject *_PTRVALUE, char *type) { | |
124 | ||
125 | char *r,*s; | |
126 | void *ptr; | |
127 | PyObject *obj; | |
128 | char *typestr,*c; | |
129 | ||
130 | /* Produce a "mangled" version of the type string. */ | |
131 | ||
132 | typestr = (char *) malloc(strlen(type)+2); | |
133 | ||
134 | /* Go through and munge the typestring */ | |
135 | ||
136 | r = typestr; | |
137 | *(r++) = '_'; | |
138 | c = type; | |
139 | while (*c) { | |
140 | if (!isspace(*c)) { | |
141 | if ((*c == '*') || (*c == '&')) { | |
142 | *(r++) = 'p'; | |
143 | } | |
144 | else *(r++) = *c; | |
145 | } else { | |
146 | *(r++) = '_'; | |
147 | } | |
148 | c++; | |
149 | } | |
150 | *(r++) = 0; | |
151 | ||
152 | /* Check to see what kind of object _PTRVALUE is */ | |
153 | ||
154 | if (PyInt_Check(_PTRVALUE)) { | |
155 | ptr = (void *) PyInt_AsLong(_PTRVALUE); | |
156 | /* Received a numerical value. Make a pointer out of it */ | |
157 | r = (char *) malloc(strlen(typestr)+22); | |
158 | if (ptr) { | |
159 | SWIG_MakePtr(r, ptr, typestr); | |
160 | } else { | |
161 | sprintf(r,"_0%s",typestr); | |
162 | } | |
163 | obj = PyString_FromString(r); | |
164 | free(r); | |
165 | } else if (PyString_Check(_PTRVALUE)) { | |
166 | /* Have a real pointer value now. Try to strip out the pointer | |
167 | value */ | |
168 | s = PyString_AsString(_PTRVALUE); | |
169 | r = (char *) malloc(strlen(type)+22); | |
170 | ||
171 | /* Now extract the pointer value */ | |
172 | if (!SWIG_GetPtr(s,&ptr,0)) { | |
173 | if (ptr) { | |
174 | SWIG_MakePtr(r,ptr,typestr); | |
175 | } else { | |
176 | sprintf(r,"_0%s",typestr); | |
177 | } | |
178 | obj = PyString_FromString(r); | |
179 | } else { | |
180 | obj = NULL; | |
181 | } | |
182 | free(r); | |
183 | } else { | |
184 | obj = NULL; | |
185 | } | |
186 | free(typestr); | |
187 | if (!obj) | |
188 | PyErr_SetString(PyExc_TypeError,"Type error in ptrcast. Argument is not a valid pointer value."); | |
189 | return obj; | |
190 | } | |
191 | ||
192 | /*------------------------------------------------------------------ | |
193 | ptrvalue(ptr,type = 0) | |
194 | ||
195 | Attempts to dereference a pointer value. If type is given, it | |
196 | will try to use that type. Otherwise, this function will attempt | |
197 | to "guess" the proper datatype by checking against all of the | |
198 | builtin C datatypes. | |
199 | ------------------------------------------------------------------ */ | |
200 | ||
201 | static PyObject *ptrvalue(PyObject *_PTRVALUE, int index, char *type) { | |
202 | void *ptr; | |
203 | char *s; | |
204 | PyObject *obj; | |
205 | ||
206 | if (!PyString_Check(_PTRVALUE)) { | |
207 | PyErr_SetString(PyExc_TypeError,"Type error in ptrvalue. Argument is not a valid pointer value."); | |
208 | return NULL; | |
209 | } | |
210 | s = PyString_AsString(_PTRVALUE); | |
211 | if (SWIG_GetPtr(s,&ptr,0)) { | |
212 | PyErr_SetString(PyExc_TypeError,"Type error in ptrvalue. Argument is not a valid pointer value."); | |
213 | return NULL; | |
214 | } | |
215 | ||
216 | /* If no datatype was passed, try a few common datatypes first */ | |
217 | ||
218 | if (!type) { | |
219 | ||
220 | /* No datatype was passed. Type to figure out if it's a common one */ | |
221 | ||
222 | if (!SWIG_GetPtr(s,&ptr,"_int_p")) { | |
223 | type = "int"; | |
224 | } else if (!SWIG_GetPtr(s,&ptr,"_double_p")) { | |
225 | type = "double"; | |
226 | } else if (!SWIG_GetPtr(s,&ptr,"_short_p")) { | |
227 | type = "short"; | |
228 | } else if (!SWIG_GetPtr(s,&ptr,"_long_p")) { | |
229 | type = "long"; | |
230 | } else if (!SWIG_GetPtr(s,&ptr,"_float_p")) { | |
231 | type = "float"; | |
232 | } else if (!SWIG_GetPtr(s,&ptr,"_char_p")) { | |
233 | type = "char"; | |
234 | } else if (!SWIG_GetPtr(s,&ptr,"_char_pp")) { | |
235 | type = "char *"; | |
236 | } else { | |
237 | type = "unknown"; | |
238 | } | |
239 | } | |
240 | ||
241 | if (!ptr) { | |
242 | PyErr_SetString(PyExc_TypeError,"Unable to dereference NULL pointer."); | |
243 | return NULL; | |
244 | } | |
245 | ||
246 | /* Now we have a datatype. Try to figure out what to do about it */ | |
247 | if (strcmp(type,"int") == 0) { | |
248 | obj = PyInt_FromLong((long) *(((int *) ptr) + index)); | |
249 | } else if (strcmp(type,"double") == 0) { | |
250 | obj = PyFloat_FromDouble((double) *(((double *) ptr)+index)); | |
251 | } else if (strcmp(type,"short") == 0) { | |
252 | obj = PyInt_FromLong((long) *(((short *) ptr)+index)); | |
253 | } else if (strcmp(type,"long") == 0) { | |
254 | obj = PyInt_FromLong((long) *(((long *) ptr)+index)); | |
255 | } else if (strcmp(type,"float") == 0) { | |
256 | obj = PyFloat_FromDouble((double) *(((float *) ptr)+index)); | |
257 | } else if (strcmp(type,"char") == 0) { | |
258 | obj = PyString_FromString(((char *) ptr)+index); | |
259 | } else if (strcmp(type,"char *") == 0) { | |
260 | char *c = *(((char **) ptr)+index); | |
261 | if (c) obj = PyString_FromString(c); | |
262 | else obj = PyString_FromString("NULL"); | |
263 | } else { | |
264 | PyErr_SetString(PyExc_TypeError,"Unable to dereference unsupported datatype."); | |
265 | return NULL; | |
266 | } | |
267 | return obj; | |
268 | } | |
269 | ||
270 | /*------------------------------------------------------------------ | |
271 | ptrcreate(type,value = 0,numelements = 1) | |
272 | ||
273 | Attempts to create a new object of given type. Type must be | |
274 | a basic C datatype. Will not create complex objects. | |
275 | ------------------------------------------------------------------ */ | |
276 | ||
277 | static PyObject *ptrcreate(char *type, PyObject *_PYVALUE, int numelements) { | |
278 | void *ptr; | |
279 | PyObject *obj; | |
280 | int sz; | |
281 | char *cast; | |
282 | char temp[40]; | |
283 | ||
284 | /* Check the type string against a variety of possibilities */ | |
285 | ||
286 | if (strcmp(type,"int") == 0) { | |
287 | sz = sizeof(int)*numelements; | |
288 | cast = "_int_p"; | |
289 | } else if (strcmp(type,"short") == 0) { | |
290 | sz = sizeof(short)*numelements; | |
291 | cast = "_short_p"; | |
292 | } else if (strcmp(type,"long") == 0) { | |
293 | sz = sizeof(long)*numelements; | |
294 | cast = "_long_p"; | |
295 | } else if (strcmp(type,"double") == 0) { | |
296 | sz = sizeof(double)*numelements; | |
297 | cast = "_double_p"; | |
298 | } else if (strcmp(type,"float") == 0) { | |
299 | sz = sizeof(float)*numelements; | |
300 | cast = "_float_p"; | |
301 | } else if (strcmp(type,"char") == 0) { | |
302 | sz = sizeof(char)*numelements; | |
303 | cast = "_char_p"; | |
304 | } else if (strcmp(type,"char *") == 0) { | |
305 | sz = sizeof(char *)*(numelements+1); | |
306 | cast = "_char_pp"; | |
307 | } else { | |
308 | PyErr_SetString(PyExc_TypeError,"Unable to create unknown datatype."); | |
309 | return NULL; | |
310 | } | |
311 | ||
312 | /* Create the new object */ | |
313 | ||
314 | ptr = (void *) malloc(sz); | |
315 | if (!ptr) { | |
316 | PyErr_SetString(PyExc_MemoryError,"Out of memory in swig_create."); | |
317 | return NULL; | |
318 | } | |
319 | ||
320 | /* Now try to set its default value */ | |
321 | ||
322 | if (_PYVALUE) { | |
323 | if (strcmp(type,"int") == 0) { | |
324 | int *ip,i,ivalue; | |
325 | ivalue = (int) PyInt_AsLong(_PYVALUE); | |
326 | ip = (int *) ptr; | |
327 | for (i = 0; i < numelements; i++) | |
328 | ip[i] = ivalue; | |
329 | } else if (strcmp(type,"short") == 0) { | |
330 | short *ip,ivalue; | |
331 | int i; | |
332 | ivalue = (short) PyInt_AsLong(_PYVALUE); | |
333 | ip = (short *) ptr; | |
334 | for (i = 0; i < numelements; i++) | |
335 | ip[i] = ivalue; | |
336 | } else if (strcmp(type,"long") == 0) { | |
337 | long *ip,ivalue; | |
338 | int i; | |
339 | ivalue = (long) PyInt_AsLong(_PYVALUE); | |
340 | ip = (long *) ptr; | |
341 | for (i = 0; i < numelements; i++) | |
342 | ip[i] = ivalue; | |
343 | } else if (strcmp(type,"double") == 0) { | |
344 | double *ip,ivalue; | |
345 | int i; | |
346 | ivalue = (double) PyFloat_AsDouble(_PYVALUE); | |
347 | ip = (double *) ptr; | |
348 | for (i = 0; i < numelements; i++) | |
349 | ip[i] = ivalue; | |
350 | } else if (strcmp(type,"float") == 0) { | |
351 | float *ip,ivalue; | |
352 | int i; | |
353 | ivalue = (float) PyFloat_AsDouble(_PYVALUE); | |
354 | ip = (float *) ptr; | |
355 | for (i = 0; i < numelements; i++) | |
356 | ip[i] = ivalue; | |
357 | } else if (strcmp(type,"char") == 0) { | |
358 | char *ip,*ivalue; | |
359 | ivalue = (char *) PyString_AsString(_PYVALUE); | |
360 | ip = (char *) ptr; | |
361 | strncpy(ip,ivalue,numelements-1); | |
362 | } else if (strcmp(type,"char *") == 0) { | |
363 | char **ip, *ivalue; | |
364 | int i; | |
365 | ivalue = (char *) PyString_AsString(_PYVALUE); | |
366 | ip = (char **) ptr; | |
367 | for (i = 0; i < numelements; i++) { | |
368 | if (ivalue) { | |
369 | ip[i] = (char *) malloc(strlen(ivalue)+1); | |
370 | strcpy(ip[i],ivalue); | |
371 | } else { | |
372 | ip[i] = 0; | |
373 | } | |
374 | } | |
375 | ip[numelements] = 0; | |
376 | } | |
377 | } | |
378 | /* Create the pointer value */ | |
379 | ||
380 | SWIG_MakePtr(temp,ptr,cast); | |
381 | obj = PyString_FromString(temp); | |
382 | return obj; | |
383 | } | |
384 | ||
385 | ||
386 | /*------------------------------------------------------------------ | |
387 | ptrset(ptr,value,index = 0,type = 0) | |
388 | ||
389 | Attempts to set the value of a pointer variable. If type is | |
390 | given, we will use that type. Otherwise, we'll guess the datatype. | |
391 | ------------------------------------------------------------------ */ | |
392 | ||
393 | static PyObject *ptrset(PyObject *_PTRVALUE, PyObject *_PYVALUE, int index, char *type) { | |
394 | void *ptr; | |
395 | char *s; | |
396 | PyObject *obj; | |
397 | ||
398 | if (!PyString_Check(_PTRVALUE)) { | |
399 | PyErr_SetString(PyExc_TypeError,"Type error in ptrset. Argument is not a valid pointer value."); | |
400 | return NULL; | |
401 | } | |
402 | s = PyString_AsString(_PTRVALUE); | |
403 | if (SWIG_GetPtr(s,&ptr,0)) { | |
404 | PyErr_SetString(PyExc_TypeError,"Type error in ptrset. Argument is not a valid pointer value."); | |
405 | return NULL; | |
406 | } | |
407 | ||
408 | /* If no datatype was passed, try a few common datatypes first */ | |
409 | ||
410 | if (!type) { | |
411 | ||
412 | /* No datatype was passed. Type to figure out if it's a common one */ | |
413 | ||
414 | if (!SWIG_GetPtr(s,&ptr,"_int_p")) { | |
415 | type = "int"; | |
416 | } else if (!SWIG_GetPtr(s,&ptr,"_double_p")) { | |
417 | type = "double"; | |
418 | } else if (!SWIG_GetPtr(s,&ptr,"_short_p")) { | |
419 | type = "short"; | |
420 | } else if (!SWIG_GetPtr(s,&ptr,"_long_p")) { | |
421 | type = "long"; | |
422 | } else if (!SWIG_GetPtr(s,&ptr,"_float_p")) { | |
423 | type = "float"; | |
424 | } else if (!SWIG_GetPtr(s,&ptr,"_char_p")) { | |
425 | type = "char"; | |
426 | } else if (!SWIG_GetPtr(s,&ptr,"_char_pp")) { | |
427 | type = "char *"; | |
428 | } else { | |
429 | type = "unknown"; | |
430 | } | |
431 | } | |
432 | ||
433 | if (!ptr) { | |
434 | PyErr_SetString(PyExc_TypeError,"Unable to set NULL pointer."); | |
435 | return NULL; | |
436 | } | |
437 | ||
438 | /* Now we have a datatype. Try to figure out what to do about it */ | |
439 | if (strcmp(type,"int") == 0) { | |
440 | *(((int *) ptr)+index) = (int) PyInt_AsLong(_PYVALUE); | |
441 | } else if (strcmp(type,"double") == 0) { | |
442 | *(((double *) ptr)+index) = (double) PyFloat_AsDouble(_PYVALUE); | |
443 | } else if (strcmp(type,"short") == 0) { | |
444 | *(((short *) ptr)+index) = (short) PyInt_AsLong(_PYVALUE); | |
445 | } else if (strcmp(type,"long") == 0) { | |
446 | *(((long *) ptr)+index) = (long) PyInt_AsLong(_PYVALUE); | |
447 | } else if (strcmp(type,"float") == 0) { | |
448 | *(((float *) ptr)+index) = (float) PyFloat_AsDouble(_PYVALUE); | |
449 | } else if (strcmp(type,"char") == 0) { | |
450 | char *c = PyString_AsString(_PYVALUE); | |
451 | strcpy(((char *) ptr)+index, c); | |
452 | } else if (strcmp(type,"char *") == 0) { | |
453 | char *c = PyString_AsString(_PYVALUE); | |
454 | char **ca = (char **) ptr; | |
455 | if (ca[index]) free(ca[index]); | |
456 | if (strcmp(c,"NULL") == 0) { | |
457 | ca[index] = 0; | |
458 | } else { | |
459 | ca[index] = (char *) malloc(strlen(c)+1); | |
460 | strcpy(ca[index],c); | |
461 | } | |
462 | } else { | |
463 | PyErr_SetString(PyExc_TypeError,"Unable to set unsupported datatype."); | |
464 | return NULL; | |
465 | } | |
466 | Py_INCREF(Py_None); | |
467 | return Py_None; | |
468 | } | |
469 | ||
470 | ||
471 | /*------------------------------------------------------------------ | |
472 | ptradd(ptr,offset) | |
473 | ||
474 | Adds a value to an existing pointer value. Will do a type-dependent | |
475 | add for basic datatypes. For other datatypes, will do a byte-add. | |
476 | ------------------------------------------------------------------ */ | |
477 | ||
478 | static PyObject *ptradd(PyObject *_PTRVALUE, int offset) { | |
479 | ||
480 | char *r,*s; | |
481 | void *ptr,*junk; | |
482 | PyObject *obj; | |
483 | char *type; | |
484 | ||
485 | /* Check to see what kind of object _PTRVALUE is */ | |
486 | ||
487 | if (PyString_Check(_PTRVALUE)) { | |
488 | /* Have a potential pointer value now. Try to strip out the value */ | |
489 | s = PyString_AsString(_PTRVALUE); | |
490 | ||
491 | /* Try to handle a few common datatypes first */ | |
492 | ||
493 | if (!SWIG_GetPtr(s,&ptr,"_int_p")) { | |
494 | ptr = (void *) (((int *) ptr) + offset); | |
495 | } else if (!SWIG_GetPtr(s,&ptr,"_double_p")) { | |
496 | ptr = (void *) (((double *) ptr) + offset); | |
497 | } else if (!SWIG_GetPtr(s,&ptr,"_short_p")) { | |
498 | ptr = (void *) (((short *) ptr) + offset); | |
499 | } else if (!SWIG_GetPtr(s,&ptr,"_long_p")) { | |
500 | ptr = (void *) (((long *) ptr) + offset); | |
501 | } else if (!SWIG_GetPtr(s,&ptr,"_float_p")) { | |
502 | ptr = (void *) (((float *) ptr) + offset); | |
503 | } else if (!SWIG_GetPtr(s,&ptr,"_char_p")) { | |
504 | ptr = (void *) (((char *) ptr) + offset); | |
505 | } else if (!SWIG_GetPtr(s,&ptr,0)) { | |
506 | ptr = (void *) (((char *) ptr) + offset); | |
507 | } else { | |
508 | PyErr_SetString(PyExc_TypeError,"Type error in ptradd. Argument is not a valid pointer value."); | |
509 | return NULL; | |
510 | } | |
511 | type = SWIG_GetPtr(s,&junk,"INVALID POINTER"); | |
512 | r = (char *) malloc(strlen(type)+20); | |
513 | if (ptr) { | |
514 | SWIG_MakePtr(r,ptr,type); | |
515 | } else { | |
516 | sprintf(r,"_0%s",type); | |
517 | } | |
518 | obj = PyString_FromString(r); | |
519 | free(r); | |
520 | } | |
521 | return obj; | |
522 | } | |
523 | ||
524 | /*------------------------------------------------------------------ | |
525 | ptrmap(type1,type2) | |
526 | ||
527 | Allows a mapping between type1 and type2. (Like a typedef) | |
528 | ------------------------------------------------------------------ */ | |
529 | ||
530 | static void ptrmap(char *type1, char *type2) { | |
531 | ||
532 | char *typestr1,*typestr2,*c,*r; | |
533 | ||
534 | /* Produce a "mangled" version of the type string. */ | |
535 | ||
536 | typestr1 = (char *) malloc(strlen(type1)+2); | |
537 | ||
538 | /* Go through and munge the typestring */ | |
539 | ||
540 | r = typestr1; | |
541 | *(r++) = '_'; | |
542 | c = type1; | |
543 | while (*c) { | |
544 | if (!isspace(*c)) { | |
545 | if ((*c == '*') || (*c == '&')) { | |
546 | *(r++) = 'p'; | |
547 | } | |
548 | else *(r++) = *c; | |
549 | } else { | |
550 | *(r++) = '_'; | |
551 | } | |
552 | c++; | |
553 | } | |
554 | *(r++) = 0; | |
555 | ||
556 | typestr2 = (char *) malloc(strlen(type2)+2); | |
557 | ||
558 | /* Go through and munge the typestring */ | |
559 | ||
560 | r = typestr2; | |
561 | *(r++) = '_'; | |
562 | c = type2; | |
563 | while (*c) { | |
564 | if (!isspace(*c)) { | |
565 | if ((*c == '*') || (*c == '&')) { | |
566 | *(r++) = 'p'; | |
567 | } | |
568 | else *(r++) = *c; | |
569 | } else { | |
570 | *(r++) = '_'; | |
571 | } | |
572 | c++; | |
573 | } | |
574 | *(r++) = 0; | |
575 | SWIG_RegisterMapping(typestr1,typestr2,0); | |
576 | SWIG_RegisterMapping(typestr2,typestr1,0); | |
577 | } | |
578 | ||
579 | /*------------------------------------------------------------------ | |
580 | ptrfree(ptr) | |
581 | ||
582 | Destroys a pointer value | |
583 | ------------------------------------------------------------------ */ | |
584 | ||
585 | PyObject *ptrfree(PyObject *_PTRVALUE) { | |
586 | void *ptr, *junk; | |
587 | char *s; | |
588 | ||
589 | if (!PyString_Check(_PTRVALUE)) { | |
590 | PyErr_SetString(PyExc_TypeError,"Type error in ptrfree. Argument is not a valid pointer value."); | |
591 | return NULL; | |
592 | } | |
593 | s = PyString_AsString(_PTRVALUE); | |
594 | if (SWIG_GetPtr(s,&ptr,0)) { | |
595 | PyErr_SetString(PyExc_TypeError,"Type error in ptrfree. Argument is not a valid pointer value."); | |
596 | return NULL; | |
597 | } | |
598 | ||
599 | /* Check to see if this pointer is a char ** */ | |
600 | if (!SWIG_GetPtr(s,&junk,"_char_pp")) { | |
601 | char **c = (char **) ptr; | |
602 | if (c) { | |
603 | int i = 0; | |
604 | while (c[i]) { | |
605 | free(c[i]); | |
606 | i++; | |
607 | } | |
608 | } | |
609 | } | |
610 | if (ptr) | |
611 | free((char *) ptr); | |
612 | ||
613 | Py_INCREF(Py_None); | |
614 | return Py_None; | |
615 | } | |
616 | ||
617 | ||
c368d904 RD |
618 | wxPyApp* wxGetApp() { |
619 | return wxPythonApp; | |
620 | } | |
621 | ||
b1462dfa | 622 | void wxApp_CleanUp() { |
7ece89c6 | 623 | __wxCleanup(); |
b1462dfa | 624 | } |
8bf5d46e | 625 | |
1d99702e RD |
626 | extern "C" SWIGEXPORT(void) initwindowsc(); |
627 | extern "C" SWIGEXPORT(void) initwindows2c(); | |
628 | extern "C" SWIGEXPORT(void) initeventsc(); | |
629 | extern "C" SWIGEXPORT(void) initmiscc(); | |
630 | extern "C" SWIGEXPORT(void) initmisc2c(); | |
631 | extern "C" SWIGEXPORT(void) initgdic(); | |
632 | extern "C" SWIGEXPORT(void) initmdic(); | |
633 | extern "C" SWIGEXPORT(void) initcontrolsc(); | |
634 | extern "C" SWIGEXPORT(void) initcontrols2c(); | |
635 | extern "C" SWIGEXPORT(void) initcmndlgsc(); | |
636 | extern "C" SWIGEXPORT(void) initstattoolc(); | |
637 | extern "C" SWIGEXPORT(void) initframesc(); | |
638 | extern "C" SWIGEXPORT(void) initwindows3c(); | |
639 | extern "C" SWIGEXPORT(void) initimagec(); | |
640 | extern "C" SWIGEXPORT(void) initprintfwc(); | |
2f90df85 | 641 | extern "C" SWIGEXPORT(void) initsizersc(); |
b1462dfa | 642 | extern "C" SWIGEXPORT(void) initclip_dndc(); |
f6bcfd97 BP |
643 | extern "C" SWIGEXPORT(void) initgridc(); |
644 | extern "C" SWIGEXPORT(void) initutilsc(); | |
645 | extern "C" SWIGEXPORT(void) inithtmlc(); | |
646 | extern "C" SWIGEXPORT(void) inithtmlhelpc(); | |
647 | extern "C" SWIGEXPORT(void) initcalendarc(); | |
c368d904 RD |
648 | extern "C" SWIGEXPORT(void) initstreamsc(); |
649 | extern "C" SWIGEXPORT(void) initfilesysc(); | |
650 | ||
651 | extern "C" SWIGEXPORT(void) initglcanvasc(); | |
652 | extern "C" SWIGEXPORT(void) initoglc(); | |
653 | extern "C" SWIGEXPORT(void) initstc_c(); | |
1d99702e RD |
654 | #ifdef __cplusplus |
655 | extern "C" { | |
0699c864 | 656 | #endif |
efc5f224 | 657 | static PyObject *_wrap_ptrcast(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
658 | PyObject * _resultobj; |
659 | PyObject * _result; | |
660 | PyObject * _arg0; | |
661 | char * _arg1; | |
662 | PyObject * _obj0 = 0; | |
efc5f224 | 663 | char *_kwnames[] = { "ptr","type", NULL }; |
8bf5d46e RD |
664 | |
665 | self = self; | |
efc5f224 | 666 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Os:ptrcast",_kwnames,&_obj0,&_arg1)) |
8bf5d46e RD |
667 | return NULL; |
668 | { | |
669 | _arg0 = _obj0; | |
670 | } | |
671 | { | |
672 | wxPy_BEGIN_ALLOW_THREADS; | |
673 | _result = (PyObject *)ptrcast(_arg0,_arg1); | |
674 | ||
675 | wxPy_END_ALLOW_THREADS; | |
676 | }{ | |
677 | _resultobj = _result; | |
678 | } | |
679 | return _resultobj; | |
680 | } | |
681 | ||
efc5f224 | 682 | static PyObject *_wrap_ptrvalue(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
683 | PyObject * _resultobj; |
684 | PyObject * _result; | |
685 | PyObject * _arg0; | |
1d99702e RD |
686 | int _arg1 = (int ) 0; |
687 | char * _arg2 = (char *) 0; | |
8bf5d46e | 688 | PyObject * _obj0 = 0; |
efc5f224 | 689 | char *_kwnames[] = { "ptr","index","type", NULL }; |
8bf5d46e RD |
690 | |
691 | self = self; | |
efc5f224 | 692 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|is:ptrvalue",_kwnames,&_obj0,&_arg1,&_arg2)) |
8bf5d46e RD |
693 | return NULL; |
694 | { | |
695 | _arg0 = _obj0; | |
696 | } | |
697 | { | |
698 | wxPy_BEGIN_ALLOW_THREADS; | |
699 | _result = (PyObject *)ptrvalue(_arg0,_arg1,_arg2); | |
700 | ||
701 | wxPy_END_ALLOW_THREADS; | |
702 | }{ | |
703 | _resultobj = _result; | |
704 | } | |
705 | return _resultobj; | |
706 | } | |
707 | ||
efc5f224 | 708 | static PyObject *_wrap_ptrset(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
709 | PyObject * _resultobj; |
710 | PyObject * _result; | |
711 | PyObject * _arg0; | |
712 | PyObject * _arg1; | |
1d99702e RD |
713 | int _arg2 = (int ) 0; |
714 | char * _arg3 = (char *) 0; | |
8bf5d46e RD |
715 | PyObject * _obj0 = 0; |
716 | PyObject * _obj1 = 0; | |
efc5f224 | 717 | char *_kwnames[] = { "ptr","value","index","type", NULL }; |
8bf5d46e RD |
718 | |
719 | self = self; | |
efc5f224 | 720 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|is:ptrset",_kwnames,&_obj0,&_obj1,&_arg2,&_arg3)) |
8bf5d46e RD |
721 | return NULL; |
722 | { | |
723 | _arg0 = _obj0; | |
724 | } | |
725 | { | |
726 | _arg1 = _obj1; | |
727 | } | |
728 | { | |
729 | wxPy_BEGIN_ALLOW_THREADS; | |
730 | _result = (PyObject *)ptrset(_arg0,_arg1,_arg2,_arg3); | |
731 | ||
732 | wxPy_END_ALLOW_THREADS; | |
733 | }{ | |
734 | _resultobj = _result; | |
735 | } | |
736 | return _resultobj; | |
737 | } | |
738 | ||
efc5f224 | 739 | static PyObject *_wrap_ptrcreate(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
740 | PyObject * _resultobj; |
741 | PyObject * _result; | |
742 | char * _arg0; | |
1d99702e RD |
743 | PyObject * _arg1 = (PyObject *) 0; |
744 | int _arg2 = (int ) 1; | |
8bf5d46e | 745 | PyObject * _obj1 = 0; |
efc5f224 | 746 | char *_kwnames[] = { "type","value","nitems", NULL }; |
8bf5d46e RD |
747 | |
748 | self = self; | |
efc5f224 | 749 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"s|Oi:ptrcreate",_kwnames,&_arg0,&_obj1,&_arg2)) |
8bf5d46e RD |
750 | return NULL; |
751 | if (_obj1) | |
752 | { | |
753 | _arg1 = _obj1; | |
754 | } | |
755 | { | |
756 | wxPy_BEGIN_ALLOW_THREADS; | |
757 | _result = (PyObject *)ptrcreate(_arg0,_arg1,_arg2); | |
758 | ||
759 | wxPy_END_ALLOW_THREADS; | |
760 | }{ | |
761 | _resultobj = _result; | |
762 | } | |
763 | return _resultobj; | |
764 | } | |
765 | ||
efc5f224 | 766 | static PyObject *_wrap_ptrfree(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
767 | PyObject * _resultobj; |
768 | PyObject * _result; | |
769 | PyObject * _arg0; | |
770 | PyObject * _obj0 = 0; | |
efc5f224 | 771 | char *_kwnames[] = { "ptr", NULL }; |
8bf5d46e RD |
772 | |
773 | self = self; | |
efc5f224 | 774 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:ptrfree",_kwnames,&_obj0)) |
8bf5d46e RD |
775 | return NULL; |
776 | { | |
777 | _arg0 = _obj0; | |
778 | } | |
779 | { | |
780 | wxPy_BEGIN_ALLOW_THREADS; | |
781 | _result = (PyObject *)ptrfree(_arg0); | |
782 | ||
783 | wxPy_END_ALLOW_THREADS; | |
784 | }{ | |
785 | _resultobj = _result; | |
786 | } | |
787 | return _resultobj; | |
788 | } | |
789 | ||
efc5f224 | 790 | static PyObject *_wrap_ptradd(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
791 | PyObject * _resultobj; |
792 | PyObject * _result; | |
793 | PyObject * _arg0; | |
794 | int _arg1; | |
795 | PyObject * _obj0 = 0; | |
efc5f224 | 796 | char *_kwnames[] = { "ptr","offset", NULL }; |
8bf5d46e RD |
797 | |
798 | self = self; | |
efc5f224 | 799 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:ptradd",_kwnames,&_obj0,&_arg1)) |
8bf5d46e RD |
800 | return NULL; |
801 | { | |
802 | _arg0 = _obj0; | |
803 | } | |
804 | { | |
805 | wxPy_BEGIN_ALLOW_THREADS; | |
806 | _result = (PyObject *)ptradd(_arg0,_arg1); | |
807 | ||
808 | wxPy_END_ALLOW_THREADS; | |
809 | }{ | |
810 | _resultobj = _result; | |
811 | } | |
812 | return _resultobj; | |
813 | } | |
814 | ||
efc5f224 | 815 | static PyObject *_wrap_ptrmap(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
816 | PyObject * _resultobj; |
817 | char * _arg0; | |
818 | char * _arg1; | |
efc5f224 | 819 | char *_kwnames[] = { "type1","type2", NULL }; |
8bf5d46e RD |
820 | |
821 | self = self; | |
efc5f224 | 822 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"ss:ptrmap",_kwnames,&_arg0,&_arg1)) |
8bf5d46e RD |
823 | return NULL; |
824 | { | |
825 | wxPy_BEGIN_ALLOW_THREADS; | |
826 | ptrmap(_arg0,_arg1); | |
827 | ||
828 | wxPy_END_ALLOW_THREADS; | |
829 | } Py_INCREF(Py_None); | |
830 | _resultobj = Py_None; | |
831 | return _resultobj; | |
832 | } | |
833 | ||
8ab979d7 | 834 | static int _wrap_wxPyDefaultPosition_set(PyObject *val) { |
0699c864 | 835 | wxPoint * temp; |
8ab979d7 | 836 | |
1d99702e RD |
837 | if (val) { |
838 | if (val == Py_None) { temp = NULL; } | |
839 | else if (SWIG_GetPtrObj(val,(void **) &temp,"_wxPoint_p")) { | |
0699c864 RD |
840 | PyErr_SetString(PyExc_TypeError,"Type error in value of wxPyDefaultPosition. Expected _wxPoint_p."); |
841 | return 1; | |
842 | } | |
843 | } | |
844 | wxPyDefaultPosition = *temp; | |
845 | return 0; | |
8ab979d7 RD |
846 | } |
847 | ||
848 | static PyObject *_wrap_wxPyDefaultPosition_get() { | |
849 | PyObject * pyobj; | |
850 | char ptemp[128]; | |
851 | ||
852 | SWIG_MakePtr(ptemp,(char *) &wxPyDefaultPosition,"_wxPoint_p"); | |
853 | pyobj = PyString_FromString(ptemp); | |
854 | return pyobj; | |
855 | } | |
856 | ||
857 | static int _wrap_wxPyDefaultSize_set(PyObject *val) { | |
0699c864 | 858 | wxSize * temp; |
8ab979d7 | 859 | |
1d99702e RD |
860 | if (val) { |
861 | if (val == Py_None) { temp = NULL; } | |
862 | else if (SWIG_GetPtrObj(val,(void **) &temp,"_wxSize_p")) { | |
0699c864 RD |
863 | PyErr_SetString(PyExc_TypeError,"Type error in value of wxPyDefaultSize. Expected _wxSize_p."); |
864 | return 1; | |
865 | } | |
866 | } | |
867 | wxPyDefaultSize = *temp; | |
868 | return 0; | |
8ab979d7 RD |
869 | } |
870 | ||
871 | static PyObject *_wrap_wxPyDefaultSize_get() { | |
872 | PyObject * pyobj; | |
873 | char ptemp[128]; | |
874 | ||
875 | SWIG_MakePtr(ptemp,(char *) &wxPyDefaultSize,"_wxSize_p"); | |
876 | pyobj = PyString_FromString(ptemp); | |
877 | return pyobj; | |
878 | } | |
879 | ||
c368d904 RD |
880 | static PyObject *_wrap_wxGetApp(PyObject *self, PyObject *args, PyObject *kwargs) { |
881 | PyObject * _resultobj; | |
882 | wxPyApp * _result; | |
883 | char *_kwnames[] = { NULL }; | |
884 | char _ptemp[128]; | |
885 | ||
886 | self = self; | |
887 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxGetApp",_kwnames)) | |
888 | return NULL; | |
889 | { | |
890 | wxPy_BEGIN_ALLOW_THREADS; | |
891 | _result = (wxPyApp *)wxGetApp(); | |
892 | ||
893 | wxPy_END_ALLOW_THREADS; | |
894 | } if (_result) { | |
895 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyApp_p"); | |
896 | _resultobj = Py_BuildValue("s",_ptemp); | |
897 | } else { | |
898 | Py_INCREF(Py_None); | |
899 | _resultobj = Py_None; | |
900 | } | |
901 | return _resultobj; | |
902 | } | |
903 | ||
b1462dfa RD |
904 | static PyObject *_wrap_wxApp_CleanUp(PyObject *self, PyObject *args, PyObject *kwargs) { |
905 | PyObject * _resultobj; | |
906 | char *_kwnames[] = { NULL }; | |
907 | ||
908 | self = self; | |
909 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxApp_CleanUp",_kwnames)) | |
910 | return NULL; | |
911 | { | |
912 | wxPy_BEGIN_ALLOW_THREADS; | |
913 | wxApp_CleanUp(); | |
914 | ||
915 | wxPy_END_ALLOW_THREADS; | |
916 | } Py_INCREF(Py_None); | |
917 | _resultobj = Py_None; | |
918 | return _resultobj; | |
919 | } | |
920 | ||
8ab979d7 RD |
921 | static void *SwigwxPyAppTowxEvtHandler(void *ptr) { |
922 | wxPyApp *src; | |
923 | wxEvtHandler *dest; | |
924 | src = (wxPyApp *) ptr; | |
925 | dest = (wxEvtHandler *) src; | |
926 | return (void *) dest; | |
927 | } | |
928 | ||
929 | static wxPyApp *new_wxPyApp() { | |
930 | wxPythonApp = new wxPyApp(); | |
931 | return wxPythonApp; | |
932 | } | |
933 | ||
efc5f224 | 934 | static PyObject *_wrap_new_wxPyApp(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
935 | PyObject * _resultobj; |
936 | wxPyApp * _result; | |
efc5f224 | 937 | char *_kwnames[] = { NULL }; |
8ab979d7 RD |
938 | char _ptemp[128]; |
939 | ||
940 | self = self; | |
efc5f224 | 941 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPyApp",_kwnames)) |
8ab979d7 | 942 | return NULL; |
cf694132 RD |
943 | { |
944 | wxPy_BEGIN_ALLOW_THREADS; | |
945 | _result = (wxPyApp *)new_wxPyApp(); | |
946 | ||
947 | wxPy_END_ALLOW_THREADS; | |
1d99702e RD |
948 | } if (_result) { |
949 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyApp_p"); | |
950 | _resultobj = Py_BuildValue("s",_ptemp); | |
951 | } else { | |
952 | Py_INCREF(Py_None); | |
953 | _resultobj = Py_None; | |
954 | } | |
8ab979d7 RD |
955 | return _resultobj; |
956 | } | |
957 | ||
8bf5d46e | 958 | #define delete_wxPyApp(_swigobj) (delete _swigobj) |
efc5f224 | 959 | static PyObject *_wrap_delete_wxPyApp(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
960 | PyObject * _resultobj; |
961 | wxPyApp * _arg0; | |
1d99702e | 962 | PyObject * _argo0 = 0; |
efc5f224 | 963 | char *_kwnames[] = { "self", NULL }; |
8bf5d46e RD |
964 | |
965 | self = self; | |
efc5f224 | 966 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPyApp",_kwnames,&_argo0)) |
8bf5d46e | 967 | return NULL; |
1d99702e RD |
968 | if (_argo0) { |
969 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
970 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8bf5d46e RD |
971 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPyApp. Expected _wxPyApp_p."); |
972 | return NULL; | |
973 | } | |
974 | } | |
975 | { | |
976 | wxPy_BEGIN_ALLOW_THREADS; | |
977 | delete_wxPyApp(_arg0); | |
978 | ||
979 | wxPy_END_ALLOW_THREADS; | |
980 | } Py_INCREF(Py_None); | |
981 | _resultobj = Py_None; | |
982 | return _resultobj; | |
983 | } | |
984 | ||
8ab979d7 | 985 | #define wxPyApp_GetAppName(_swigobj) (_swigobj->GetAppName()) |
efc5f224 | 986 | static PyObject *_wrap_wxPyApp_GetAppName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
987 | PyObject * _resultobj; |
988 | wxString * _result; | |
989 | wxPyApp * _arg0; | |
1d99702e | 990 | PyObject * _argo0 = 0; |
efc5f224 | 991 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
992 | |
993 | self = self; | |
efc5f224 | 994 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetAppName",_kwnames,&_argo0)) |
8ab979d7 | 995 | return NULL; |
1d99702e RD |
996 | if (_argo0) { |
997 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
998 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
999 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetAppName. Expected _wxPyApp_p."); |
1000 | return NULL; | |
1001 | } | |
1002 | } | |
8ab979d7 | 1003 | { |
cf694132 RD |
1004 | wxPy_BEGIN_ALLOW_THREADS; |
1005 | _result = new wxString (wxPyApp_GetAppName(_arg0)); | |
1006 | ||
1007 | wxPy_END_ALLOW_THREADS; | |
1008 | }{ | |
eec92d76 | 1009 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
1010 | } |
1011 | { | |
1012 | delete _result; | |
1013 | } | |
1014 | return _resultobj; | |
1015 | } | |
1016 | ||
1017 | #define wxPyApp_GetAuto3D(_swigobj) (_swigobj->GetAuto3D()) | |
efc5f224 | 1018 | static PyObject *_wrap_wxPyApp_GetAuto3D(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1019 | PyObject * _resultobj; |
1020 | bool _result; | |
1021 | wxPyApp * _arg0; | |
1d99702e | 1022 | PyObject * _argo0 = 0; |
efc5f224 | 1023 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1024 | |
1025 | self = self; | |
efc5f224 | 1026 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetAuto3D",_kwnames,&_argo0)) |
8ab979d7 | 1027 | return NULL; |
1d99702e RD |
1028 | if (_argo0) { |
1029 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1030 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1031 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetAuto3D. Expected _wxPyApp_p."); |
1032 | return NULL; | |
1033 | } | |
1034 | } | |
cf694132 RD |
1035 | { |
1036 | wxPy_BEGIN_ALLOW_THREADS; | |
1037 | _result = (bool )wxPyApp_GetAuto3D(_arg0); | |
1038 | ||
1039 | wxPy_END_ALLOW_THREADS; | |
1040 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1041 | return _resultobj; |
1042 | } | |
1043 | ||
1044 | #define wxPyApp_GetClassName(_swigobj) (_swigobj->GetClassName()) | |
efc5f224 | 1045 | static PyObject *_wrap_wxPyApp_GetClassName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1046 | PyObject * _resultobj; |
1047 | wxString * _result; | |
1048 | wxPyApp * _arg0; | |
1d99702e | 1049 | PyObject * _argo0 = 0; |
efc5f224 | 1050 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1051 | |
1052 | self = self; | |
efc5f224 | 1053 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetClassName",_kwnames,&_argo0)) |
8ab979d7 | 1054 | return NULL; |
1d99702e RD |
1055 | if (_argo0) { |
1056 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1057 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1058 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetClassName. Expected _wxPyApp_p."); |
1059 | return NULL; | |
1060 | } | |
1061 | } | |
8ab979d7 | 1062 | { |
cf694132 RD |
1063 | wxPy_BEGIN_ALLOW_THREADS; |
1064 | _result = new wxString (wxPyApp_GetClassName(_arg0)); | |
1065 | ||
1066 | wxPy_END_ALLOW_THREADS; | |
1067 | }{ | |
eec92d76 | 1068 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
1069 | } |
1070 | { | |
1071 | delete _result; | |
1072 | } | |
1073 | return _resultobj; | |
1074 | } | |
1075 | ||
1076 | #define wxPyApp_GetExitOnFrameDelete(_swigobj) (_swigobj->GetExitOnFrameDelete()) | |
efc5f224 | 1077 | static PyObject *_wrap_wxPyApp_GetExitOnFrameDelete(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1078 | PyObject * _resultobj; |
1079 | bool _result; | |
1080 | wxPyApp * _arg0; | |
1d99702e | 1081 | PyObject * _argo0 = 0; |
efc5f224 | 1082 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1083 | |
1084 | self = self; | |
efc5f224 | 1085 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetExitOnFrameDelete",_kwnames,&_argo0)) |
8ab979d7 | 1086 | return NULL; |
1d99702e RD |
1087 | if (_argo0) { |
1088 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1089 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1090 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetExitOnFrameDelete. Expected _wxPyApp_p."); |
1091 | return NULL; | |
1092 | } | |
1093 | } | |
cf694132 RD |
1094 | { |
1095 | wxPy_BEGIN_ALLOW_THREADS; | |
1096 | _result = (bool )wxPyApp_GetExitOnFrameDelete(_arg0); | |
1097 | ||
1098 | wxPy_END_ALLOW_THREADS; | |
1099 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1100 | return _resultobj; |
1101 | } | |
1102 | ||
1103 | #define wxPyApp_GetPrintMode(_swigobj) (_swigobj->GetPrintMode()) | |
efc5f224 | 1104 | static PyObject *_wrap_wxPyApp_GetPrintMode(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1105 | PyObject * _resultobj; |
1106 | int _result; | |
1107 | wxPyApp * _arg0; | |
1d99702e | 1108 | PyObject * _argo0 = 0; |
efc5f224 | 1109 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1110 | |
1111 | self = self; | |
efc5f224 | 1112 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetPrintMode",_kwnames,&_argo0)) |
8ab979d7 | 1113 | return NULL; |
1d99702e RD |
1114 | if (_argo0) { |
1115 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1116 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1117 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetPrintMode. Expected _wxPyApp_p."); |
1118 | return NULL; | |
1119 | } | |
1120 | } | |
cf694132 RD |
1121 | { |
1122 | wxPy_BEGIN_ALLOW_THREADS; | |
1123 | _result = (int )wxPyApp_GetPrintMode(_arg0); | |
1124 | ||
1125 | wxPy_END_ALLOW_THREADS; | |
1126 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1127 | return _resultobj; |
1128 | } | |
1129 | ||
1130 | #define wxPyApp_GetTopWindow(_swigobj) (_swigobj->GetTopWindow()) | |
efc5f224 | 1131 | static PyObject *_wrap_wxPyApp_GetTopWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1132 | PyObject * _resultobj; |
1133 | wxWindow * _result; | |
1134 | wxPyApp * _arg0; | |
1d99702e | 1135 | PyObject * _argo0 = 0; |
efc5f224 | 1136 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1137 | char _ptemp[128]; |
1138 | ||
1139 | self = self; | |
efc5f224 | 1140 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetTopWindow",_kwnames,&_argo0)) |
8ab979d7 | 1141 | return NULL; |
1d99702e RD |
1142 | if (_argo0) { |
1143 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1144 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1145 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetTopWindow. Expected _wxPyApp_p."); |
1146 | return NULL; | |
1147 | } | |
1148 | } | |
cf694132 RD |
1149 | { |
1150 | wxPy_BEGIN_ALLOW_THREADS; | |
1151 | _result = (wxWindow *)wxPyApp_GetTopWindow(_arg0); | |
1152 | ||
1153 | wxPy_END_ALLOW_THREADS; | |
1d99702e RD |
1154 | } if (_result) { |
1155 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
1156 | _resultobj = Py_BuildValue("s",_ptemp); | |
1157 | } else { | |
1158 | Py_INCREF(Py_None); | |
1159 | _resultobj = Py_None; | |
1160 | } | |
8ab979d7 RD |
1161 | return _resultobj; |
1162 | } | |
1163 | ||
1164 | #define wxPyApp_GetVendorName(_swigobj) (_swigobj->GetVendorName()) | |
efc5f224 | 1165 | static PyObject *_wrap_wxPyApp_GetVendorName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1166 | PyObject * _resultobj; |
1167 | wxString * _result; | |
1168 | wxPyApp * _arg0; | |
1d99702e | 1169 | PyObject * _argo0 = 0; |
efc5f224 | 1170 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1171 | |
1172 | self = self; | |
efc5f224 | 1173 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetVendorName",_kwnames,&_argo0)) |
8ab979d7 | 1174 | return NULL; |
1d99702e RD |
1175 | if (_argo0) { |
1176 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1177 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1178 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetVendorName. Expected _wxPyApp_p."); |
1179 | return NULL; | |
1180 | } | |
1181 | } | |
8ab979d7 | 1182 | { |
cf694132 RD |
1183 | wxPy_BEGIN_ALLOW_THREADS; |
1184 | _result = new wxString (wxPyApp_GetVendorName(_arg0)); | |
1185 | ||
1186 | wxPy_END_ALLOW_THREADS; | |
1187 | }{ | |
eec92d76 | 1188 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
1189 | } |
1190 | { | |
1191 | delete _result; | |
1192 | } | |
1193 | return _resultobj; | |
1194 | } | |
1195 | ||
f6bcfd97 BP |
1196 | #define wxPyApp_GetUseBestVisual(_swigobj) (_swigobj->GetUseBestVisual()) |
1197 | static PyObject *_wrap_wxPyApp_GetUseBestVisual(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1198 | PyObject * _resultobj; | |
1199 | bool _result; | |
1200 | wxPyApp * _arg0; | |
1201 | PyObject * _argo0 = 0; | |
1202 | char *_kwnames[] = { "self", NULL }; | |
1203 | ||
1204 | self = self; | |
1205 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetUseBestVisual",_kwnames,&_argo0)) | |
1206 | return NULL; | |
1207 | if (_argo0) { | |
1208 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1209 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
1210 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetUseBestVisual. Expected _wxPyApp_p."); | |
1211 | return NULL; | |
1212 | } | |
1213 | } | |
1214 | { | |
1215 | wxPy_BEGIN_ALLOW_THREADS; | |
1216 | _result = (bool )wxPyApp_GetUseBestVisual(_arg0); | |
1217 | ||
1218 | wxPy_END_ALLOW_THREADS; | |
1219 | } _resultobj = Py_BuildValue("i",_result); | |
1220 | return _resultobj; | |
1221 | } | |
1222 | ||
8ab979d7 | 1223 | #define wxPyApp_Dispatch(_swigobj) (_swigobj->Dispatch()) |
efc5f224 | 1224 | static PyObject *_wrap_wxPyApp_Dispatch(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1225 | PyObject * _resultobj; |
1226 | wxPyApp * _arg0; | |
1d99702e | 1227 | PyObject * _argo0 = 0; |
efc5f224 | 1228 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1229 | |
1230 | self = self; | |
efc5f224 | 1231 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_Dispatch",_kwnames,&_argo0)) |
8ab979d7 | 1232 | return NULL; |
1d99702e RD |
1233 | if (_argo0) { |
1234 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1235 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1236 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Dispatch. Expected _wxPyApp_p."); |
1237 | return NULL; | |
1238 | } | |
1239 | } | |
cf694132 RD |
1240 | { |
1241 | wxPy_BEGIN_ALLOW_THREADS; | |
1242 | wxPyApp_Dispatch(_arg0); | |
1243 | ||
1244 | wxPy_END_ALLOW_THREADS; | |
1245 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1246 | _resultobj = Py_None; |
1247 | return _resultobj; | |
1248 | } | |
1249 | ||
1250 | #define wxPyApp_ExitMainLoop(_swigobj) (_swigobj->ExitMainLoop()) | |
efc5f224 | 1251 | static PyObject *_wrap_wxPyApp_ExitMainLoop(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1252 | PyObject * _resultobj; |
1253 | wxPyApp * _arg0; | |
1d99702e | 1254 | PyObject * _argo0 = 0; |
efc5f224 | 1255 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1256 | |
1257 | self = self; | |
efc5f224 | 1258 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_ExitMainLoop",_kwnames,&_argo0)) |
8ab979d7 | 1259 | return NULL; |
1d99702e RD |
1260 | if (_argo0) { |
1261 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1262 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1263 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_ExitMainLoop. Expected _wxPyApp_p."); |
1264 | return NULL; | |
1265 | } | |
1266 | } | |
cf694132 RD |
1267 | { |
1268 | wxPy_BEGIN_ALLOW_THREADS; | |
1269 | wxPyApp_ExitMainLoop(_arg0); | |
1270 | ||
1271 | wxPy_END_ALLOW_THREADS; | |
1272 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1273 | _resultobj = Py_None; |
1274 | return _resultobj; | |
1275 | } | |
1276 | ||
1277 | #define wxPyApp_Initialized(_swigobj) (_swigobj->Initialized()) | |
efc5f224 | 1278 | static PyObject *_wrap_wxPyApp_Initialized(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1279 | PyObject * _resultobj; |
1280 | bool _result; | |
1281 | wxPyApp * _arg0; | |
1d99702e | 1282 | PyObject * _argo0 = 0; |
efc5f224 | 1283 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1284 | |
1285 | self = self; | |
efc5f224 | 1286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_Initialized",_kwnames,&_argo0)) |
8ab979d7 | 1287 | return NULL; |
1d99702e RD |
1288 | if (_argo0) { |
1289 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1290 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1291 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Initialized. Expected _wxPyApp_p."); |
1292 | return NULL; | |
1293 | } | |
1294 | } | |
cf694132 RD |
1295 | { |
1296 | wxPy_BEGIN_ALLOW_THREADS; | |
1297 | _result = (bool )wxPyApp_Initialized(_arg0); | |
1298 | ||
1299 | wxPy_END_ALLOW_THREADS; | |
1300 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1301 | return _resultobj; |
1302 | } | |
1303 | ||
1304 | #define wxPyApp_MainLoop(_swigobj) (_swigobj->MainLoop()) | |
efc5f224 | 1305 | static PyObject *_wrap_wxPyApp_MainLoop(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1306 | PyObject * _resultobj; |
1307 | int _result; | |
1308 | wxPyApp * _arg0; | |
1d99702e | 1309 | PyObject * _argo0 = 0; |
efc5f224 | 1310 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1311 | |
1312 | self = self; | |
efc5f224 | 1313 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_MainLoop",_kwnames,&_argo0)) |
8ab979d7 | 1314 | return NULL; |
1d99702e RD |
1315 | if (_argo0) { |
1316 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1317 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1318 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_MainLoop. Expected _wxPyApp_p."); |
1319 | return NULL; | |
1320 | } | |
1321 | } | |
cf694132 RD |
1322 | { |
1323 | wxPy_BEGIN_ALLOW_THREADS; | |
1324 | _result = (int )wxPyApp_MainLoop(_arg0); | |
1325 | ||
1326 | wxPy_END_ALLOW_THREADS; | |
1327 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1328 | return _resultobj; |
1329 | } | |
1330 | ||
1331 | #define wxPyApp_Pending(_swigobj) (_swigobj->Pending()) | |
efc5f224 | 1332 | static PyObject *_wrap_wxPyApp_Pending(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1333 | PyObject * _resultobj; |
1334 | bool _result; | |
1335 | wxPyApp * _arg0; | |
1d99702e | 1336 | PyObject * _argo0 = 0; |
efc5f224 | 1337 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1338 | |
1339 | self = self; | |
efc5f224 | 1340 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_Pending",_kwnames,&_argo0)) |
8ab979d7 | 1341 | return NULL; |
1d99702e RD |
1342 | if (_argo0) { |
1343 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1344 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1345 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Pending. Expected _wxPyApp_p."); |
1346 | return NULL; | |
1347 | } | |
1348 | } | |
cf694132 RD |
1349 | { |
1350 | wxPy_BEGIN_ALLOW_THREADS; | |
1351 | _result = (bool )wxPyApp_Pending(_arg0); | |
1352 | ||
1353 | wxPy_END_ALLOW_THREADS; | |
1354 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1355 | return _resultobj; |
1356 | } | |
1357 | ||
8bf5d46e | 1358 | #define wxPyApp_ProcessIdle(_swigobj) (_swigobj->ProcessIdle()) |
efc5f224 | 1359 | static PyObject *_wrap_wxPyApp_ProcessIdle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
1360 | PyObject * _resultobj; |
1361 | bool _result; | |
1362 | wxPyApp * _arg0; | |
1d99702e | 1363 | PyObject * _argo0 = 0; |
efc5f224 | 1364 | char *_kwnames[] = { "self", NULL }; |
8bf5d46e RD |
1365 | |
1366 | self = self; | |
efc5f224 | 1367 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_ProcessIdle",_kwnames,&_argo0)) |
8bf5d46e | 1368 | return NULL; |
1d99702e RD |
1369 | if (_argo0) { |
1370 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1371 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8bf5d46e RD |
1372 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_ProcessIdle. Expected _wxPyApp_p."); |
1373 | return NULL; | |
1374 | } | |
1375 | } | |
1376 | { | |
1377 | wxPy_BEGIN_ALLOW_THREADS; | |
1378 | _result = (bool )wxPyApp_ProcessIdle(_arg0); | |
1379 | ||
1380 | wxPy_END_ALLOW_THREADS; | |
1381 | } _resultobj = Py_BuildValue("i",_result); | |
1382 | return _resultobj; | |
1383 | } | |
1384 | ||
8ab979d7 | 1385 | #define wxPyApp_SetAppName(_swigobj,_swigarg0) (_swigobj->SetAppName(_swigarg0)) |
efc5f224 | 1386 | static PyObject *_wrap_wxPyApp_SetAppName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1387 | PyObject * _resultobj; |
1388 | wxPyApp * _arg0; | |
1389 | wxString * _arg1; | |
1d99702e | 1390 | PyObject * _argo0 = 0; |
8ab979d7 | 1391 | PyObject * _obj1 = 0; |
efc5f224 | 1392 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1393 | |
1394 | self = self; | |
efc5f224 | 1395 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetAppName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1396 | return NULL; |
1d99702e RD |
1397 | if (_argo0) { |
1398 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1399 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1400 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetAppName. Expected _wxPyApp_p."); |
1401 | return NULL; | |
1402 | } | |
1403 | } | |
1404 | { | |
185d7c3e RD |
1405 | #if PYTHON_API_VERSION >= 1009 |
1406 | char* tmpPtr; int tmpSize; | |
1407 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
1408 | PyErr_SetString(PyExc_TypeError, "String or Unicode type required"); | |
1409 | return NULL; | |
1410 | } | |
1411 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1412 | return NULL; | |
1413 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1414 | #else | |
8ab979d7 RD |
1415 | if (!PyString_Check(_obj1)) { |
1416 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1417 | return NULL; | |
1418 | } | |
185d7c3e RD |
1419 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1420 | #endif | |
8ab979d7 | 1421 | } |
cf694132 RD |
1422 | { |
1423 | wxPy_BEGIN_ALLOW_THREADS; | |
1424 | wxPyApp_SetAppName(_arg0,*_arg1); | |
1425 | ||
1426 | wxPy_END_ALLOW_THREADS; | |
1427 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1428 | _resultobj = Py_None; |
1429 | { | |
1430 | if (_obj1) | |
1431 | delete _arg1; | |
1432 | } | |
1433 | return _resultobj; | |
1434 | } | |
1435 | ||
1436 | #define wxPyApp_SetAuto3D(_swigobj,_swigarg0) (_swigobj->SetAuto3D(_swigarg0)) | |
efc5f224 | 1437 | static PyObject *_wrap_wxPyApp_SetAuto3D(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1438 | PyObject * _resultobj; |
1439 | wxPyApp * _arg0; | |
1440 | bool _arg1; | |
1d99702e | 1441 | PyObject * _argo0 = 0; |
8ab979d7 | 1442 | int tempbool1; |
efc5f224 | 1443 | char *_kwnames[] = { "self","auto3D", NULL }; |
8ab979d7 RD |
1444 | |
1445 | self = self; | |
efc5f224 | 1446 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetAuto3D",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1447 | return NULL; |
1d99702e RD |
1448 | if (_argo0) { |
1449 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1450 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1451 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetAuto3D. Expected _wxPyApp_p."); |
1452 | return NULL; | |
1453 | } | |
1454 | } | |
1455 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
1456 | { |
1457 | wxPy_BEGIN_ALLOW_THREADS; | |
1458 | wxPyApp_SetAuto3D(_arg0,_arg1); | |
1459 | ||
1460 | wxPy_END_ALLOW_THREADS; | |
1461 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1462 | _resultobj = Py_None; |
1463 | return _resultobj; | |
1464 | } | |
1465 | ||
1466 | #define wxPyApp_SetClassName(_swigobj,_swigarg0) (_swigobj->SetClassName(_swigarg0)) | |
efc5f224 | 1467 | static PyObject *_wrap_wxPyApp_SetClassName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1468 | PyObject * _resultobj; |
1469 | wxPyApp * _arg0; | |
1470 | wxString * _arg1; | |
1d99702e | 1471 | PyObject * _argo0 = 0; |
8ab979d7 | 1472 | PyObject * _obj1 = 0; |
efc5f224 | 1473 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1474 | |
1475 | self = self; | |
efc5f224 | 1476 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetClassName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1477 | return NULL; |
1d99702e RD |
1478 | if (_argo0) { |
1479 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1480 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1481 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetClassName. Expected _wxPyApp_p."); |
1482 | return NULL; | |
1483 | } | |
1484 | } | |
1485 | { | |
185d7c3e RD |
1486 | #if PYTHON_API_VERSION >= 1009 |
1487 | char* tmpPtr; int tmpSize; | |
1488 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
1489 | PyErr_SetString(PyExc_TypeError, "String or Unicode type required"); | |
1490 | return NULL; | |
1491 | } | |
1492 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1493 | return NULL; | |
1494 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1495 | #else | |
8ab979d7 RD |
1496 | if (!PyString_Check(_obj1)) { |
1497 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1498 | return NULL; | |
1499 | } | |
185d7c3e RD |
1500 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1501 | #endif | |
8ab979d7 | 1502 | } |
cf694132 RD |
1503 | { |
1504 | wxPy_BEGIN_ALLOW_THREADS; | |
1505 | wxPyApp_SetClassName(_arg0,*_arg1); | |
1506 | ||
1507 | wxPy_END_ALLOW_THREADS; | |
1508 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1509 | _resultobj = Py_None; |
1510 | { | |
1511 | if (_obj1) | |
1512 | delete _arg1; | |
1513 | } | |
1514 | return _resultobj; | |
1515 | } | |
1516 | ||
1517 | #define wxPyApp_SetExitOnFrameDelete(_swigobj,_swigarg0) (_swigobj->SetExitOnFrameDelete(_swigarg0)) | |
efc5f224 | 1518 | static PyObject *_wrap_wxPyApp_SetExitOnFrameDelete(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1519 | PyObject * _resultobj; |
1520 | wxPyApp * _arg0; | |
1521 | bool _arg1; | |
1d99702e | 1522 | PyObject * _argo0 = 0; |
8ab979d7 | 1523 | int tempbool1; |
efc5f224 | 1524 | char *_kwnames[] = { "self","flag", NULL }; |
8ab979d7 RD |
1525 | |
1526 | self = self; | |
efc5f224 | 1527 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetExitOnFrameDelete",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1528 | return NULL; |
1d99702e RD |
1529 | if (_argo0) { |
1530 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1531 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1532 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetExitOnFrameDelete. Expected _wxPyApp_p."); |
1533 | return NULL; | |
1534 | } | |
1535 | } | |
1536 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
1537 | { |
1538 | wxPy_BEGIN_ALLOW_THREADS; | |
1539 | wxPyApp_SetExitOnFrameDelete(_arg0,_arg1); | |
1540 | ||
1541 | wxPy_END_ALLOW_THREADS; | |
1542 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1543 | _resultobj = Py_None; |
1544 | return _resultobj; | |
1545 | } | |
1546 | ||
1547 | #define wxPyApp_SetPrintMode(_swigobj,_swigarg0) (_swigobj->SetPrintMode(_swigarg0)) | |
efc5f224 | 1548 | static PyObject *_wrap_wxPyApp_SetPrintMode(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1549 | PyObject * _resultobj; |
1550 | wxPyApp * _arg0; | |
1551 | int _arg1; | |
1d99702e | 1552 | PyObject * _argo0 = 0; |
efc5f224 | 1553 | char *_kwnames[] = { "self","mode", NULL }; |
8ab979d7 RD |
1554 | |
1555 | self = self; | |
efc5f224 | 1556 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetPrintMode",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1557 | return NULL; |
1d99702e RD |
1558 | if (_argo0) { |
1559 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1560 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1561 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetPrintMode. Expected _wxPyApp_p."); |
1562 | return NULL; | |
1563 | } | |
1564 | } | |
cf694132 RD |
1565 | { |
1566 | wxPy_BEGIN_ALLOW_THREADS; | |
1567 | wxPyApp_SetPrintMode(_arg0,_arg1); | |
1568 | ||
1569 | wxPy_END_ALLOW_THREADS; | |
1570 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1571 | _resultobj = Py_None; |
1572 | return _resultobj; | |
1573 | } | |
1574 | ||
1575 | #define wxPyApp_SetTopWindow(_swigobj,_swigarg0) (_swigobj->SetTopWindow(_swigarg0)) | |
efc5f224 | 1576 | static PyObject *_wrap_wxPyApp_SetTopWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1577 | PyObject * _resultobj; |
1578 | wxPyApp * _arg0; | |
1579 | wxWindow * _arg1; | |
1d99702e RD |
1580 | PyObject * _argo0 = 0; |
1581 | PyObject * _argo1 = 0; | |
efc5f224 | 1582 | char *_kwnames[] = { "self","window", NULL }; |
8ab979d7 RD |
1583 | |
1584 | self = self; | |
efc5f224 | 1585 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetTopWindow",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 1586 | return NULL; |
1d99702e RD |
1587 | if (_argo0) { |
1588 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1589 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1590 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetTopWindow. Expected _wxPyApp_p."); |
1591 | return NULL; | |
1592 | } | |
1593 | } | |
1d99702e RD |
1594 | if (_argo1) { |
1595 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1596 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
8ab979d7 RD |
1597 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPyApp_SetTopWindow. Expected _wxWindow_p."); |
1598 | return NULL; | |
1599 | } | |
1600 | } | |
cf694132 RD |
1601 | { |
1602 | wxPy_BEGIN_ALLOW_THREADS; | |
1603 | wxPyApp_SetTopWindow(_arg0,_arg1); | |
1604 | ||
1605 | wxPy_END_ALLOW_THREADS; | |
1606 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1607 | _resultobj = Py_None; |
1608 | return _resultobj; | |
1609 | } | |
1610 | ||
1611 | #define wxPyApp_SetVendorName(_swigobj,_swigarg0) (_swigobj->SetVendorName(_swigarg0)) | |
efc5f224 | 1612 | static PyObject *_wrap_wxPyApp_SetVendorName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1613 | PyObject * _resultobj; |
1614 | wxPyApp * _arg0; | |
1615 | wxString * _arg1; | |
1d99702e | 1616 | PyObject * _argo0 = 0; |
8ab979d7 | 1617 | PyObject * _obj1 = 0; |
efc5f224 | 1618 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1619 | |
1620 | self = self; | |
efc5f224 | 1621 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetVendorName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1622 | return NULL; |
1d99702e RD |
1623 | if (_argo0) { |
1624 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1625 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1626 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetVendorName. Expected _wxPyApp_p."); |
1627 | return NULL; | |
1628 | } | |
1629 | } | |
1630 | { | |
185d7c3e RD |
1631 | #if PYTHON_API_VERSION >= 1009 |
1632 | char* tmpPtr; int tmpSize; | |
1633 | if (!PyString_Check(_obj1) && !PyUnicode_Check(_obj1)) { | |
1634 | PyErr_SetString(PyExc_TypeError, "String or Unicode type required"); | |
1635 | return NULL; | |
1636 | } | |
1637 | if (PyString_AsStringAndSize(_obj1, &tmpPtr, &tmpSize) == -1) | |
1638 | return NULL; | |
1639 | _arg1 = new wxString(tmpPtr, tmpSize); | |
1640 | #else | |
8ab979d7 RD |
1641 | if (!PyString_Check(_obj1)) { |
1642 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1643 | return NULL; | |
1644 | } | |
185d7c3e RD |
1645 | _arg1 = new wxString(PyString_AS_STRING(_obj1), PyString_GET_SIZE(_obj1)); |
1646 | #endif | |
8ab979d7 | 1647 | } |
cf694132 RD |
1648 | { |
1649 | wxPy_BEGIN_ALLOW_THREADS; | |
1650 | wxPyApp_SetVendorName(_arg0,*_arg1); | |
1651 | ||
1652 | wxPy_END_ALLOW_THREADS; | |
1653 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1654 | _resultobj = Py_None; |
1655 | { | |
1656 | if (_obj1) | |
1657 | delete _arg1; | |
1658 | } | |
1659 | return _resultobj; | |
1660 | } | |
1661 | ||
f6bcfd97 BP |
1662 | #define wxPyApp_SetUseBestVisual(_swigobj,_swigarg0) (_swigobj->SetUseBestVisual(_swigarg0)) |
1663 | static PyObject *_wrap_wxPyApp_SetUseBestVisual(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1664 | PyObject * _resultobj; | |
1665 | wxPyApp * _arg0; | |
1666 | bool _arg1; | |
1667 | PyObject * _argo0 = 0; | |
1668 | int tempbool1; | |
1669 | char *_kwnames[] = { "self","flag", NULL }; | |
1670 | ||
1671 | self = self; | |
1672 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetUseBestVisual",_kwnames,&_argo0,&tempbool1)) | |
1673 | return NULL; | |
1674 | if (_argo0) { | |
1675 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1676 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
1677 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetUseBestVisual. Expected _wxPyApp_p."); | |
1678 | return NULL; | |
1679 | } | |
1680 | } | |
1681 | _arg1 = (bool ) tempbool1; | |
1682 | { | |
1683 | wxPy_BEGIN_ALLOW_THREADS; | |
1684 | wxPyApp_SetUseBestVisual(_arg0,_arg1); | |
1685 | ||
1686 | wxPy_END_ALLOW_THREADS; | |
1687 | } Py_INCREF(Py_None); | |
1688 | _resultobj = Py_None; | |
1689 | return _resultobj; | |
1690 | } | |
1691 | ||
8bf5d46e | 1692 | #define wxPyApp_GetStdIcon(_swigobj,_swigarg0) (_swigobj->GetStdIcon(_swigarg0)) |
efc5f224 | 1693 | static PyObject *_wrap_wxPyApp_GetStdIcon(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 | 1694 | PyObject * _resultobj; |
8bf5d46e | 1695 | wxIcon * _result; |
8ab979d7 | 1696 | wxPyApp * _arg0; |
8bf5d46e | 1697 | int _arg1; |
1d99702e | 1698 | PyObject * _argo0 = 0; |
efc5f224 | 1699 | char *_kwnames[] = { "self","which", NULL }; |
8bf5d46e | 1700 | char _ptemp[128]; |
8ab979d7 RD |
1701 | |
1702 | self = self; | |
efc5f224 | 1703 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_GetStdIcon",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1704 | return NULL; |
1d99702e RD |
1705 | if (_argo0) { |
1706 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1707 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8bf5d46e | 1708 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetStdIcon. Expected _wxPyApp_p."); |
8ab979d7 RD |
1709 | return NULL; |
1710 | } | |
1711 | } | |
cf694132 RD |
1712 | { |
1713 | wxPy_BEGIN_ALLOW_THREADS; | |
8bf5d46e RD |
1714 | _result = new wxIcon (wxPyApp_GetStdIcon(_arg0,_arg1)); |
1715 | ||
1716 | wxPy_END_ALLOW_THREADS; | |
1717 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxIcon_p"); | |
1718 | _resultobj = Py_BuildValue("s",_ptemp); | |
1719 | return _resultobj; | |
1720 | } | |
1721 | ||
b8b8dda7 | 1722 | static PyMethodDef wxcMethods[] = { |
efc5f224 | 1723 | { "wxPyApp_GetStdIcon", (PyCFunction) _wrap_wxPyApp_GetStdIcon, METH_VARARGS | METH_KEYWORDS }, |
f6bcfd97 | 1724 | { "wxPyApp_SetUseBestVisual", (PyCFunction) _wrap_wxPyApp_SetUseBestVisual, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
1725 | { "wxPyApp_SetVendorName", (PyCFunction) _wrap_wxPyApp_SetVendorName, METH_VARARGS | METH_KEYWORDS }, |
1726 | { "wxPyApp_SetTopWindow", (PyCFunction) _wrap_wxPyApp_SetTopWindow, METH_VARARGS | METH_KEYWORDS }, | |
1727 | { "wxPyApp_SetPrintMode", (PyCFunction) _wrap_wxPyApp_SetPrintMode, METH_VARARGS | METH_KEYWORDS }, | |
1728 | { "wxPyApp_SetExitOnFrameDelete", (PyCFunction) _wrap_wxPyApp_SetExitOnFrameDelete, METH_VARARGS | METH_KEYWORDS }, | |
1729 | { "wxPyApp_SetClassName", (PyCFunction) _wrap_wxPyApp_SetClassName, METH_VARARGS | METH_KEYWORDS }, | |
1730 | { "wxPyApp_SetAuto3D", (PyCFunction) _wrap_wxPyApp_SetAuto3D, METH_VARARGS | METH_KEYWORDS }, | |
1731 | { "wxPyApp_SetAppName", (PyCFunction) _wrap_wxPyApp_SetAppName, METH_VARARGS | METH_KEYWORDS }, | |
1732 | { "wxPyApp_ProcessIdle", (PyCFunction) _wrap_wxPyApp_ProcessIdle, METH_VARARGS | METH_KEYWORDS }, | |
1733 | { "wxPyApp_Pending", (PyCFunction) _wrap_wxPyApp_Pending, METH_VARARGS | METH_KEYWORDS }, | |
1734 | { "wxPyApp_MainLoop", (PyCFunction) _wrap_wxPyApp_MainLoop, METH_VARARGS | METH_KEYWORDS }, | |
1735 | { "wxPyApp_Initialized", (PyCFunction) _wrap_wxPyApp_Initialized, METH_VARARGS | METH_KEYWORDS }, | |
1736 | { "wxPyApp_ExitMainLoop", (PyCFunction) _wrap_wxPyApp_ExitMainLoop, METH_VARARGS | METH_KEYWORDS }, | |
1737 | { "wxPyApp_Dispatch", (PyCFunction) _wrap_wxPyApp_Dispatch, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 1738 | { "wxPyApp_GetUseBestVisual", (PyCFunction) _wrap_wxPyApp_GetUseBestVisual, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
1739 | { "wxPyApp_GetVendorName", (PyCFunction) _wrap_wxPyApp_GetVendorName, METH_VARARGS | METH_KEYWORDS }, |
1740 | { "wxPyApp_GetTopWindow", (PyCFunction) _wrap_wxPyApp_GetTopWindow, METH_VARARGS | METH_KEYWORDS }, | |
1741 | { "wxPyApp_GetPrintMode", (PyCFunction) _wrap_wxPyApp_GetPrintMode, METH_VARARGS | METH_KEYWORDS }, | |
1742 | { "wxPyApp_GetExitOnFrameDelete", (PyCFunction) _wrap_wxPyApp_GetExitOnFrameDelete, METH_VARARGS | METH_KEYWORDS }, | |
1743 | { "wxPyApp_GetClassName", (PyCFunction) _wrap_wxPyApp_GetClassName, METH_VARARGS | METH_KEYWORDS }, | |
1744 | { "wxPyApp_GetAuto3D", (PyCFunction) _wrap_wxPyApp_GetAuto3D, METH_VARARGS | METH_KEYWORDS }, | |
1745 | { "wxPyApp_GetAppName", (PyCFunction) _wrap_wxPyApp_GetAppName, METH_VARARGS | METH_KEYWORDS }, | |
1746 | { "delete_wxPyApp", (PyCFunction) _wrap_delete_wxPyApp, METH_VARARGS | METH_KEYWORDS }, | |
1747 | { "new_wxPyApp", (PyCFunction) _wrap_new_wxPyApp, METH_VARARGS | METH_KEYWORDS }, | |
b1462dfa | 1748 | { "wxApp_CleanUp", (PyCFunction) _wrap_wxApp_CleanUp, METH_VARARGS | METH_KEYWORDS }, |
c368d904 | 1749 | { "wxGetApp", (PyCFunction) _wrap_wxGetApp, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
1750 | { "_wxSetDictionary", (PyCFunction) __wxSetDictionary, METH_VARARGS | METH_KEYWORDS }, |
1751 | { "_wxStart", (PyCFunction) __wxStart, METH_VARARGS | METH_KEYWORDS }, | |
1752 | { "ptrmap", (PyCFunction) _wrap_ptrmap, METH_VARARGS | METH_KEYWORDS }, | |
1753 | { "ptradd", (PyCFunction) _wrap_ptradd, METH_VARARGS | METH_KEYWORDS }, | |
1754 | { "ptrfree", (PyCFunction) _wrap_ptrfree, METH_VARARGS | METH_KEYWORDS }, | |
1755 | { "ptrcreate", (PyCFunction) _wrap_ptrcreate, METH_VARARGS | METH_KEYWORDS }, | |
1756 | { "ptrset", (PyCFunction) _wrap_ptrset, METH_VARARGS | METH_KEYWORDS }, | |
1757 | { "ptrvalue", (PyCFunction) _wrap_ptrvalue, METH_VARARGS | METH_KEYWORDS }, | |
1758 | { "ptrcast", (PyCFunction) _wrap_ptrcast, METH_VARARGS | METH_KEYWORDS }, | |
8ab979d7 RD |
1759 | { NULL, NULL } |
1760 | }; | |
1d99702e RD |
1761 | #ifdef __cplusplus |
1762 | } | |
1763 | #endif | |
1764 | /* | |
1765 | * This table is used by the pointer type-checker | |
1766 | */ | |
1767 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
1768 | { "_wxAcceleratorTable","_class_wxAcceleratorTable",0}, | |
1769 | { "_wxEvent","_class_wxEvent",0}, | |
1770 | { "_class_wxActivateEvent","_wxActivateEvent",0}, | |
1771 | { "_signed_long","_long",0}, | |
1772 | { "_wxMenuEvent","_class_wxMenuEvent",0}, | |
c368d904 | 1773 | { "_class_wxProcessEvent","_wxProcessEvent",0}, |
1d99702e | 1774 | { "_class_wxJPEGHandler","_wxJPEGHandler",0}, |
c368d904 | 1775 | { "_class_wxFSFile","_wxFSFile",0}, |
65dd82cb | 1776 | { "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0}, |
b1462dfa | 1777 | { "_wxBitmapDataObject","_class_wxBitmapDataObject",0}, |
2f90df85 | 1778 | { "_class_wxPyCommandEvent","_wxPyCommandEvent",0}, |
1d99702e RD |
1779 | { "_wxBMPHandler","_class_wxBMPHandler",0}, |
1780 | { "_wxImage","_class_wxImage",0}, | |
f6bcfd97 | 1781 | { "_wxFlexGridSizer","_class_wxFlexGridSizer",0}, |
c368d904 RD |
1782 | { "_wxWindowDisabler","_class_wxWindowDisabler",0}, |
1783 | { "_class_wxDateTime","_wxDateTime",0}, | |
b1462dfa | 1784 | { "_wxPrintQuality","_wxCoord",0}, |
1d99702e RD |
1785 | { "_wxPrintQuality","_int",0}, |
1786 | { "_wxPrintQuality","_signed_int",0}, | |
1787 | { "_wxPrintQuality","_unsigned_int",0}, | |
1788 | { "_wxPrintQuality","_wxWindowID",0}, | |
1789 | { "_wxPrintQuality","_uint",0}, | |
1790 | { "_wxPrintQuality","_EBool",0}, | |
1791 | { "_wxPrintQuality","_size_t",0}, | |
c368d904 | 1792 | { "_wxPrintQuality","_time_t",0}, |
b1462dfa | 1793 | { "_class_wxCustomDataObject","_wxCustomDataObject",0}, |
f6bcfd97 | 1794 | { "_wxSpinCtrl","_class_wxSpinCtrl",0}, |
1d99702e | 1795 | { "_wxFontData","_class_wxFontData",0}, |
1d99702e | 1796 | { "_class_wxRegionIterator","_wxRegionIterator",0}, |
b1462dfa | 1797 | { "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0}, |
1d99702e RD |
1798 | { "_class_wxMenuBar","_wxMenuBar",0}, |
1799 | { "_class_wxPyTreeItemData","_wxPyTreeItemData",0}, | |
2f90df85 | 1800 | { "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0}, |
1d99702e RD |
1801 | { "_class_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler}, |
1802 | { "_class_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler}, | |
1803 | { "_class_wxEvtHandler","_wxEvtHandler",0}, | |
1804 | { "_wxPaintEvent","_class_wxPaintEvent",0}, | |
1805 | { "_wxGIFHandler","_class_wxGIFHandler",0}, | |
2f90df85 | 1806 | { "_wxPySizer","_class_wxPySizer",0}, |
c368d904 | 1807 | { "_wxInternetFSHandler","_class_wxInternetFSHandler",0}, |
1d99702e RD |
1808 | { "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0}, |
1809 | { "_wxCursor","_class_wxCursor",0}, | |
1810 | { "_wxNotifyEvent","_class_wxNotifyEvent",0}, | |
c368d904 | 1811 | { "_wxPyProcess","_class_wxPyProcess",0}, |
f6bcfd97 | 1812 | { "_wxPyTreeCtrl","_class_wxPyTreeCtrl",0}, |
1d99702e | 1813 | { "_wxImageHandler","_class_wxImageHandler",0}, |
c368d904 | 1814 | { "_wxLog","_class_wxLog",0}, |
9b3d3bc4 | 1815 | { "_class_wxToolBarBase","_wxToolBarBase",0}, |
1d99702e RD |
1816 | { "_wxMask","_class_wxMask",0}, |
1817 | { "_wxToolTip","_class_wxToolTip",0}, | |
1d99702e RD |
1818 | { "_wxPNGHandler","_class_wxPNGHandler",0}, |
1819 | { "_class_wxColourData","_wxColourData",0}, | |
1820 | { "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0}, | |
1821 | { "_wxPrinter","_class_wxPrinter",0}, | |
1822 | { "_wxPen","_class_wxPen",0}, | |
1823 | { "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0}, | |
f6bcfd97 | 1824 | { "_class_wxNotebookSizer","_wxNotebookSizer",0}, |
1d99702e | 1825 | { "_byte","_unsigned_char",0}, |
b1462dfa | 1826 | { "_wxDataObject","_class_wxDataObject",0}, |
65dd82cb | 1827 | { "_class_wxPyFontEnumerator","_wxPyFontEnumerator",0}, |
1d99702e | 1828 | { "_wxStaticBox","_class_wxStaticBox",0}, |
65dd82cb RD |
1829 | { "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0}, |
1830 | { "_wxPyDropSource","_class_wxPyDropSource",0}, | |
1d99702e RD |
1831 | { "_wxChoice","_class_wxChoice",0}, |
1832 | { "_wxSlider","_class_wxSlider",0}, | |
1833 | { "_wxNotebookEvent","_class_wxNotebookEvent",0}, | |
1834 | { "_wxPyPrintout","_class_wxPyPrintout",0}, | |
1d99702e RD |
1835 | { "_long","_unsigned_long",0}, |
1836 | { "_long","_signed_long",0}, | |
1837 | { "_wxImageList","_class_wxImageList",0}, | |
b1462dfa | 1838 | { "_wxDataObjectSimple","_class_wxDataObjectSimple",0}, |
1d99702e RD |
1839 | { "_wxDropFilesEvent","_class_wxDropFilesEvent",0}, |
1840 | { "_wxBitmapButton","_class_wxBitmapButton",0}, | |
1841 | { "_wxSashWindow","_class_wxSashWindow",0}, | |
2f90df85 | 1842 | { "_class_wxSizer","_wxSizer",0}, |
9b3d3bc4 | 1843 | { "_class_wxTIFFHandler","_wxTIFFHandler",0}, |
1d99702e | 1844 | { "_class_wxPrintDialogData","_wxPrintDialogData",0}, |
f6bcfd97 | 1845 | { "_wxGridSizer","_class_wxGridSizer",0}, |
1d99702e | 1846 | { "_class_wxAcceleratorTable","_wxAcceleratorTable",0}, |
b1462dfa | 1847 | { "_class_wxClipboard","_wxClipboard",0}, |
1d99702e RD |
1848 | { "_class_wxGauge","_wxGauge",0}, |
1849 | { "_class_wxSashEvent","_wxSashEvent",0}, | |
1850 | { "_wxDC","_class_wxDC",0}, | |
2f90df85 | 1851 | { "_wxSizerItem","_class_wxSizerItem",0}, |
b1462dfa | 1852 | { "_class_wxBitmapDataObject","_wxBitmapDataObject",0}, |
1d99702e RD |
1853 | { "_wxListEvent","_class_wxListEvent",0}, |
1854 | { "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0}, | |
1855 | { "_wxProgressDialog","_class_wxProgressDialog",0}, | |
1856 | { "_class_wxBMPHandler","_wxBMPHandler",0}, | |
1857 | { "_wxPrintPreview","_class_wxPrintPreview",0}, | |
f6bcfd97 | 1858 | { "_class_wxFlexGridSizer","_wxFlexGridSizer",0}, |
1d99702e RD |
1859 | { "_wxSpinEvent","_class_wxSpinEvent",0}, |
1860 | { "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0}, | |
b1462dfa | 1861 | { "_size_t","_wxCoord",0}, |
1d99702e | 1862 | { "_size_t","_wxPrintQuality",0}, |
c368d904 | 1863 | { "_size_t","_time_t",0}, |
1d99702e RD |
1864 | { "_size_t","_unsigned_int",0}, |
1865 | { "_size_t","_int",0}, | |
1866 | { "_size_t","_wxWindowID",0}, | |
1867 | { "_size_t","_uint",0}, | |
1868 | { "_class_wxRealPoint","_wxRealPoint",0}, | |
48115f4a | 1869 | { "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0}, |
46c3e3d9 | 1870 | { "_wxPNMHandler","_class_wxPNMHandler",0}, |
1d99702e | 1871 | { "_wxPrinterDC","_class_wxPrinterDC",0}, |
48115f4a | 1872 | { "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0}, |
c368d904 | 1873 | { "_wxLogGui","_class_wxLogGui",0}, |
1d99702e RD |
1874 | { "_class_wxMenuItem","_wxMenuItem",0}, |
1875 | { "_class_wxPaintEvent","_wxPaintEvent",0}, | |
1876 | { "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0}, | |
1877 | { "_class_wxStatusBar","_wxStatusBar",0}, | |
1878 | { "_class_wxGIFHandler","_wxGIFHandler",0}, | |
2f90df85 | 1879 | { "_class_wxPySizer","_wxPySizer",0}, |
1d99702e RD |
1880 | { "_wxPanel","_class_wxPanel",0}, |
1881 | { "_wxInitDialogEvent","_class_wxInitDialogEvent",0}, | |
1882 | { "_wxCheckBox","_class_wxCheckBox",0}, | |
f6bcfd97 | 1883 | { "_class_wxPyTreeCtrl","_wxPyTreeCtrl",0}, |
1d99702e RD |
1884 | { "_wxPyEvent","_class_wxPyEvent",0}, |
1885 | { "_wxTextCtrl","_class_wxTextCtrl",0}, | |
1886 | { "_class_wxMask","_wxMask",0}, | |
b1462dfa | 1887 | { "_wxTextDataObject","_class_wxTextDataObject",0}, |
1d99702e | 1888 | { "_class_wxKeyEvent","_wxKeyEvent",0}, |
65dd82cb | 1889 | { "_class_wxToolTip","_wxToolTip",0}, |
1d99702e | 1890 | { "_class_wxPNGHandler","_wxPNGHandler",0}, |
c368d904 | 1891 | { "_wxFileConfig","_class_wxFileConfig",0}, |
1d99702e RD |
1892 | { "_wxColour","_class_wxColour",0}, |
1893 | { "_class_wxDialog","_wxDialog",0}, | |
2abc0a0f | 1894 | { "_wxBusyCursor","_class_wxBusyCursor",0}, |
1d99702e RD |
1895 | { "_wxPageSetupDialog","_class_wxPageSetupDialog",0}, |
1896 | { "_class_wxPrinter","_wxPrinter",0}, | |
65dd82cb | 1897 | { "_class_wxFileDataObject","_wxFileDataObject",0}, |
1d99702e RD |
1898 | { "_wxIdleEvent","_class_wxIdleEvent",0}, |
1899 | { "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0}, | |
1900 | { "_wxToolBar","_class_wxToolBar",0}, | |
b1462dfa | 1901 | { "_class_wxDataObject","_wxDataObject",0}, |
f0261a72 | 1902 | { "_wxCaret","_class_wxCaret",0}, |
1d99702e RD |
1903 | { "_wxStaticLine","_class_wxStaticLine",0}, |
1904 | { "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0}, | |
1905 | { "_wxBrush","_class_wxBrush",0}, | |
1906 | { "_wxMiniFrame","_class_wxMiniFrame",0}, | |
1907 | { "_class_wxNotebookEvent","_wxNotebookEvent",0}, | |
1908 | { "_class_wxPyPrintout","_wxPyPrintout",0}, | |
b1462dfa RD |
1909 | { "_wxDataFormat","_class_wxDataFormat",0}, |
1910 | { "_class_wxDataObjectSimple","_wxDataObjectSimple",0}, | |
1d99702e RD |
1911 | { "_class_wxSashWindow","_wxSashWindow",0}, |
1912 | { "_wxShowEvent","_class_wxShowEvent",0}, | |
b1462dfa | 1913 | { "_uint","_wxCoord",0}, |
1d99702e | 1914 | { "_uint","_wxPrintQuality",0}, |
c368d904 | 1915 | { "_uint","_time_t",0}, |
1d99702e RD |
1916 | { "_uint","_size_t",0}, |
1917 | { "_uint","_unsigned_int",0}, | |
1918 | { "_uint","_int",0}, | |
1919 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 1920 | { "_wxChar","_char",0}, |
2f90df85 | 1921 | { "_wxPyValidator","_class_wxPyValidator",0}, |
1d99702e RD |
1922 | { "_class_wxEvent","_wxEvent",0}, |
1923 | { "_wxCheckListBox","_class_wxCheckListBox",0}, | |
1924 | { "_wxSplitterEvent","_class_wxSplitterEvent",0}, | |
1d99702e RD |
1925 | { "_wxRect","_class_wxRect",0}, |
1926 | { "_wxCommandEvent","_class_wxCommandEvent",0}, | |
1927 | { "_wxSizeEvent","_class_wxSizeEvent",0}, | |
c368d904 | 1928 | { "_class_wxLogWindow","_wxLogWindow",0}, |
1d99702e RD |
1929 | { "_class_wxImage","_wxImage",0}, |
1930 | { "_wxPoint","_class_wxPoint",0}, | |
c368d904 | 1931 | { "_class_wxWindowDisabler","_wxWindowDisabler",0}, |
1d99702e RD |
1932 | { "_class_wxSashLayoutWindow","_wxSashLayoutWindow",0}, |
1933 | { "_class_wxButton","_wxButton",0}, | |
1934 | { "_wxRadioBox","_class_wxRadioBox",0}, | |
f6bcfd97 | 1935 | { "_class_wxSpinCtrl","_wxSpinCtrl",0}, |
1d99702e | 1936 | { "_class_wxFontData","_wxFontData",0}, |
46c3e3d9 | 1937 | { "_class_wxPNMHandler","_wxPNMHandler",0}, |
2f90df85 | 1938 | { "_wxBoxSizer","_class_wxBoxSizer",0}, |
c368d904 | 1939 | { "_class_wxZipFSHandler","_wxZipFSHandler",0}, |
f6bcfd97 | 1940 | { "_char","_wxChar",0}, |
1d99702e RD |
1941 | { "_wxBitmap","_class_wxBitmap",0}, |
1942 | { "_wxTaskBarIcon","_class_wxTaskBarIcon",0}, | |
1943 | { "_wxPrintDialog","_class_wxPrintDialog",0}, | |
1d99702e | 1944 | { "_wxWindowDC","_class_wxWindowDC",0}, |
f6bcfd97 BP |
1945 | { "_wxTimerEvent","_class_wxTimerEvent",0}, |
1946 | { "_wxPyTimer","_class_wxPyTimer",0}, | |
1d99702e RD |
1947 | { "_wxScrollBar","_class_wxScrollBar",0}, |
1948 | { "_wxSpinButton","_class_wxSpinButton",0}, | |
1d99702e RD |
1949 | { "_wxColourDialog","_class_wxColourDialog",0}, |
1950 | { "_wxPrintData","_class_wxPrintData",0}, | |
c368d904 | 1951 | { "_class_wxInternetFSHandler","_wxInternetFSHandler",0}, |
1d99702e RD |
1952 | { "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0}, |
1953 | { "_class_wxNotifyEvent","_wxNotifyEvent",0}, | |
1954 | { "_wxMessageDialog","_class_wxMessageDialog",0}, | |
2f90df85 | 1955 | { "_class_wxValidator","_wxValidator",0}, |
1d99702e RD |
1956 | { "_class_wxPyEvent","_wxPyEvent",0}, |
1957 | { "_wxTextEntryDialog","_class_wxTextEntryDialog",0}, | |
c368d904 | 1958 | { "_wxConfig","_class_wxConfig",0}, |
1d99702e RD |
1959 | { "_class_wxIconizeEvent","_wxIconizeEvent",0}, |
1960 | { "_class_wxStaticBitmap","_wxStaticBitmap",0}, | |
c368d904 | 1961 | { "_class_wxFileConfig","_wxFileConfig",0}, |
2abc0a0f | 1962 | { "_class_wxBusyCursor","_wxBusyCursor",0}, |
9b3d3bc4 | 1963 | { "_wxToolBarSimple","_class_wxToolBarSimple",0}, |
1d99702e RD |
1964 | { "_wxMDIChildFrame","_class_wxMDIChildFrame",0}, |
1965 | { "_wxListItem","_class_wxListItem",0}, | |
1966 | { "_class_wxToolBar","_wxToolBar",0}, | |
65dd82cb | 1967 | { "_wxDropTarget","_class_wxDropTarget",0}, |
1d99702e RD |
1968 | { "_class_wxStaticLine","_wxStaticLine",0}, |
1969 | { "_wxScrollEvent","_class_wxScrollEvent",0}, | |
9b3d3bc4 | 1970 | { "_wxToolBarToolBase","_class_wxToolBarToolBase",0}, |
1d99702e | 1971 | { "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0}, |
c368d904 | 1972 | { "_class_wxMemoryFSHandler","_wxMemoryFSHandler",0}, |
b1462dfa | 1973 | { "_EBool","_wxCoord",0}, |
1d99702e RD |
1974 | { "_EBool","_wxPrintQuality",0}, |
1975 | { "_EBool","_signed_int",0}, | |
1976 | { "_EBool","_int",0}, | |
1977 | { "_EBool","_wxWindowID",0}, | |
1978 | { "_class_wxRegion","_wxRegion",0}, | |
b1462dfa | 1979 | { "_class_wxDataFormat","_wxDataFormat",0}, |
1d99702e | 1980 | { "_class_wxDropFilesEvent","_wxDropFilesEvent",0}, |
48115f4a | 1981 | { "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0}, |
1d99702e RD |
1982 | { "_class_wxPreviewFrame","_wxPreviewFrame",0}, |
1983 | { "_wxStaticText","_class_wxStaticText",0}, | |
1984 | { "_wxFont","_class_wxFont",0}, | |
b1462dfa | 1985 | { "_class_wxPyDropTarget","_wxPyDropTarget",0}, |
1d99702e RD |
1986 | { "_wxCloseEvent","_class_wxCloseEvent",0}, |
1987 | { "_class_wxSplitterEvent","_wxSplitterEvent",0}, | |
c368d904 | 1988 | { "_wxProcessEvent","_class_wxProcessEvent",0}, |
1d99702e | 1989 | { "_wxNotebook","_class_wxNotebook",0}, |
c368d904 | 1990 | { "_wxFSFile","_class_wxFSFile",0}, |
1d99702e RD |
1991 | { "_unsigned_long","_long",0}, |
1992 | { "_class_wxRect","_wxRect",0}, | |
1993 | { "_class_wxDC","_wxDC",0}, | |
d426c97e | 1994 | { "_wxScrollWinEvent","_class_wxScrollWinEvent",0}, |
f6bcfd97 | 1995 | { "_wxGenericDragImage","_class_wxGenericDragImage",0}, |
1d99702e | 1996 | { "_class_wxProgressDialog","_wxProgressDialog",0}, |
48115f4a | 1997 | { "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0}, |
c368d904 | 1998 | { "_wxPyInputStream","_class_wxPyInputStream",0}, |
1d99702e | 1999 | { "_wxPyApp","_class_wxPyApp",0}, |
48115f4a | 2000 | { "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0}, |
c368d904 RD |
2001 | { "_class_wxOutputStream","_wxOutputStream",0}, |
2002 | { "_wxLogTextCtrl","_class_wxLogTextCtrl",0}, | |
1d99702e RD |
2003 | { "_wxMDIParentFrame","_class_wxMDIParentFrame",0}, |
2004 | { "_class_wxTreeEvent","_wxTreeEvent",0}, | |
2005 | { "_class_wxDirDialog","_wxDirDialog",0}, | |
c368d904 | 2006 | { "_wxTimeSpan","_class_wxTimeSpan",0}, |
1d99702e RD |
2007 | { "_wxFocusEvent","_class_wxFocusEvent",0}, |
2008 | { "_wxMaximizeEvent","_class_wxMaximizeEvent",0}, | |
f6bcfd97 BP |
2009 | { "_class_wxTimerEvent","_wxTimerEvent",0}, |
2010 | { "_class_wxPyTimer","_wxPyTimer",0}, | |
1d99702e RD |
2011 | { "_class_wxSpinButton","_wxSpinButton",0}, |
2012 | { "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0}, | |
2013 | { "_class_wxPanel","_wxPanel",0}, | |
2014 | { "_class_wxCheckBox","_wxCheckBox",0}, | |
2015 | { "_wxComboBox","_class_wxComboBox",0}, | |
2016 | { "_wxRadioButton","_class_wxRadioButton",0}, | |
2017 | { "_class_wxMessageDialog","_wxMessageDialog",0}, | |
b1462dfa | 2018 | { "_signed_int","_wxCoord",0}, |
1d99702e RD |
2019 | { "_signed_int","_wxPrintQuality",0}, |
2020 | { "_signed_int","_EBool",0}, | |
2021 | { "_signed_int","_wxWindowID",0}, | |
2022 | { "_signed_int","_int",0}, | |
2023 | { "_class_wxTextCtrl","_wxTextCtrl",0}, | |
f6bcfd97 | 2024 | { "_class_wxListItemAttr","_wxListItemAttr",0}, |
1d99702e RD |
2025 | { "_wxLayoutConstraints","_class_wxLayoutConstraints",0}, |
2026 | { "_wxMetaFileDC","_class_wxMetaFileDC",0}, | |
b1462dfa | 2027 | { "_class_wxTextDataObject","_wxTextDataObject",0}, |
1d99702e RD |
2028 | { "_wxMenu","_class_wxMenu",0}, |
2029 | { "_class_wxMoveEvent","_wxMoveEvent",0}, | |
2030 | { "_wxListBox","_class_wxListBox",0}, | |
2031 | { "_wxScreenDC","_class_wxScreenDC",0}, | |
9b3d3bc4 | 2032 | { "_class_wxToolBarSimple","_wxToolBarSimple",0}, |
1d99702e | 2033 | { "_class_wxMDIChildFrame","_wxMDIChildFrame",0}, |
c368d904 | 2034 | { "_WXTYPE","_wxDateTime_t",0}, |
1d99702e RD |
2035 | { "_WXTYPE","_short",0}, |
2036 | { "_WXTYPE","_signed_short",0}, | |
2037 | { "_WXTYPE","_unsigned_short",0}, | |
2038 | { "_wxFileDialog","_class_wxFileDialog",0}, | |
65dd82cb | 2039 | { "_class_wxDropTarget","_wxDropTarget",0}, |
f0261a72 | 2040 | { "_class_wxCaret","_wxCaret",0}, |
1d99702e RD |
2041 | { "_class_wxMDIClientWindow","_wxMDIClientWindow",0}, |
2042 | { "_class_wxBrush","_wxBrush",0}, | |
f6bcfd97 | 2043 | { "_wxTipProvider","_class_wxTipProvider",0}, |
c368d904 | 2044 | { "_unsigned_short","_wxDateTime_t",0}, |
1d99702e RD |
2045 | { "_unsigned_short","_WXTYPE",0}, |
2046 | { "_unsigned_short","_short",0}, | |
2047 | { "_class_wxWindow","_wxWindow",0}, | |
c368d904 | 2048 | { "_class_wxLogStderr","_wxLogStderr",0}, |
1d99702e | 2049 | { "_wxSplitterWindow","_class_wxSplitterWindow",0}, |
c368d904 | 2050 | { "_wxDateSpan","_class_wxDateSpan",0}, |
1d99702e RD |
2051 | { "_class_wxStaticText","_wxStaticText",0}, |
2052 | { "_wxPrintDialogData","_class_wxPrintDialogData",0}, | |
2053 | { "_class_wxFont","_wxFont",0}, | |
b1462dfa | 2054 | { "_wxClipboard","_class_wxClipboard",0}, |
2f90df85 | 2055 | { "_class_wxPyValidator","_wxPyValidator",0}, |
1d99702e RD |
2056 | { "_class_wxCloseEvent","_wxCloseEvent",0}, |
2057 | { "_wxSashEvent","_class_wxSashEvent",0}, | |
2abc0a0f | 2058 | { "_wxBusyInfo","_class_wxBusyInfo",0}, |
1d99702e | 2059 | { "_class_wxMenuEvent","_wxMenuEvent",0}, |
48115f4a | 2060 | { "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0}, |
185d7c3e | 2061 | { "_wxJoystick","_class_wxJoystick",0}, |
65dd82cb | 2062 | { "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0}, |
1d99702e RD |
2063 | { "_wxClientDC","_class_wxClientDC",0}, |
2064 | { "_wxMouseEvent","_class_wxMouseEvent",0}, | |
f6bcfd97 | 2065 | { "_class_wxGenericDragImage","_wxGenericDragImage",0}, |
1d99702e RD |
2066 | { "_wxListCtrl","_class_wxListCtrl",0}, |
2067 | { "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0}, | |
2068 | { "_class_wxPoint","_wxPoint",0}, | |
c368d904 | 2069 | { "_class_wxPyInputStream","_wxPyInputStream",0}, |
1d99702e RD |
2070 | { "_wxRealPoint","_class_wxRealPoint",0}, |
2071 | { "_class_wxRadioBox","_wxRadioBox",0}, | |
2f90df85 | 2072 | { "_class_wxBoxSizer","_wxBoxSizer",0}, |
1d99702e RD |
2073 | { "_signed_short","_WXTYPE",0}, |
2074 | { "_signed_short","_short",0}, | |
2075 | { "_wxMemoryDC","_class_wxMemoryDC",0}, | |
65dd82cb | 2076 | { "_wxPyTextDataObject","_class_wxPyTextDataObject",0}, |
1d99702e RD |
2077 | { "_class_wxTaskBarIcon","_wxTaskBarIcon",0}, |
2078 | { "_class_wxPrintDialog","_wxPrintDialog",0}, | |
c368d904 | 2079 | { "_wxPyFileSystemHandler","_class_wxPyFileSystemHandler",0}, |
1d99702e RD |
2080 | { "_wxPaintDC","_class_wxPaintDC",0}, |
2081 | { "_class_wxWindowDC","_wxWindowDC",0}, | |
2082 | { "_class_wxFocusEvent","_wxFocusEvent",0}, | |
2083 | { "_class_wxMaximizeEvent","_wxMaximizeEvent",0}, | |
2084 | { "_wxStatusBar","_class_wxStatusBar",0}, | |
1d99702e RD |
2085 | { "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0}, |
2086 | { "_class_wxCursor","_wxCursor",0}, | |
b1462dfa | 2087 | { "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0}, |
c368d904 | 2088 | { "_class_wxPyProcess","_wxPyProcess",0}, |
1d99702e RD |
2089 | { "_class_wxImageHandler","_wxImageHandler",0}, |
2090 | { "_wxScrolledWindow","_class_wxScrolledWindow",0}, | |
c368d904 | 2091 | { "_class_wxLog","_wxLog",0}, |
1d99702e RD |
2092 | { "_wxTreeItemId","_class_wxTreeItemId",0}, |
2093 | { "_unsigned_char","_byte",0}, | |
2094 | { "_class_wxMetaFileDC","_wxMetaFileDC",0}, | |
2095 | { "_class_wxMenu","_wxMenu",0}, | |
2096 | { "_wxControl","_class_wxControl",0}, | |
2097 | { "_class_wxListBox","_wxListBox",0}, | |
b1462dfa | 2098 | { "_unsigned_int","_wxCoord",0}, |
1d99702e | 2099 | { "_unsigned_int","_wxPrintQuality",0}, |
c368d904 | 2100 | { "_unsigned_int","_time_t",0}, |
1d99702e RD |
2101 | { "_unsigned_int","_size_t",0}, |
2102 | { "_unsigned_int","_uint",0}, | |
2103 | { "_unsigned_int","_wxWindowID",0}, | |
2104 | { "_unsigned_int","_int",0}, | |
2105 | { "_wxIcon","_class_wxIcon",0}, | |
2106 | { "_wxDialog","_class_wxDialog",0}, | |
2107 | { "_class_wxListItem","_wxListItem",0}, | |
2108 | { "_class_wxPen","_wxPen",0}, | |
2109 | { "_class_wxFileDialog","_wxFileDialog",0}, | |
2110 | { "_wxQueryLayoutInfoEvent","_class_wxQueryLayoutInfoEvent",0}, | |
c368d904 RD |
2111 | { "_wxConfigBase","_class_wxConfigBase",0}, |
2112 | { "_short","_wxDateTime_t",0}, | |
1d99702e RD |
2113 | { "_short","_WXTYPE",0}, |
2114 | { "_short","_unsigned_short",0}, | |
2115 | { "_short","_signed_short",0}, | |
2116 | { "_class_wxStaticBox","_wxStaticBox",0}, | |
2117 | { "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0}, | |
65dd82cb RD |
2118 | { "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0}, |
2119 | { "_class_wxPyDropSource","_wxPyDropSource",0}, | |
1d99702e RD |
2120 | { "_class_wxScrollEvent","_wxScrollEvent",0}, |
2121 | { "_wxJoystickEvent","_class_wxJoystickEvent",0}, | |
2122 | { "_class_wxChoice","_wxChoice",0}, | |
2123 | { "_class_wxSlider","_wxSlider",0}, | |
2124 | { "_class_wxCalculateLayoutEvent","_wxCalculateLayoutEvent",0}, | |
2125 | { "_class_wxImageList","_wxImageList",0}, | |
2126 | { "_class_wxBitmapButton","_wxBitmapButton",0}, | |
c368d904 | 2127 | { "_wxFileSystemHandler","_class_wxFileSystemHandler",0}, |
f6bcfd97 | 2128 | { "_wxPyTipProvider","_class_wxPyTipProvider",0}, |
1d99702e | 2129 | { "_wxFrame","_class_wxFrame",0}, |
46c3e3d9 | 2130 | { "_wxPCXHandler","_class_wxPCXHandler",0}, |
f6bcfd97 | 2131 | { "_class_wxGridSizer","_wxGridSizer",0}, |
48115f4a | 2132 | { "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0}, |
1d99702e RD |
2133 | { "_class_wxNotebook","_wxNotebook",0}, |
2134 | { "_wxJPEGHandler","_class_wxJPEGHandler",0}, | |
b1462dfa | 2135 | { "_wxWindowID","_wxCoord",0}, |
1d99702e | 2136 | { "_wxWindowID","_wxPrintQuality",0}, |
c368d904 | 2137 | { "_wxWindowID","_time_t",0}, |
1d99702e RD |
2138 | { "_wxWindowID","_size_t",0}, |
2139 | { "_wxWindowID","_EBool",0}, | |
2140 | { "_wxWindowID","_uint",0}, | |
2141 | { "_wxWindowID","_int",0}, | |
2142 | { "_wxWindowID","_signed_int",0}, | |
2143 | { "_wxWindowID","_unsigned_int",0}, | |
d426c97e | 2144 | { "_class_wxScrollWinEvent","_wxScrollWinEvent",0}, |
2f90df85 | 2145 | { "_class_wxSizerItem","_wxSizerItem",0}, |
b1462dfa | 2146 | { "_int","_wxCoord",0}, |
1d99702e | 2147 | { "_int","_wxPrintQuality",0}, |
c368d904 | 2148 | { "_int","_time_t",0}, |
1d99702e RD |
2149 | { "_int","_size_t",0}, |
2150 | { "_int","_EBool",0}, | |
2151 | { "_int","_uint",0}, | |
2152 | { "_int","_wxWindowID",0}, | |
2153 | { "_int","_unsigned_int",0}, | |
2154 | { "_int","_signed_int",0}, | |
2155 | { "_class_wxMouseEvent","_wxMouseEvent",0}, | |
2f90df85 | 2156 | { "_wxPyCommandEvent","_class_wxPyCommandEvent",0}, |
c368d904 | 2157 | { "_wxLogWindow","_class_wxLogWindow",0}, |
1d99702e RD |
2158 | { "_class_wxListEvent","_wxListEvent",0}, |
2159 | { "_class_wxPrintPreview","_wxPrintPreview",0}, | |
c368d904 RD |
2160 | { "_wxDateTime_t","_unsigned_short",0}, |
2161 | { "_wxDateTime_t","_short",0}, | |
2162 | { "_wxDateTime_t","_WXTYPE",0}, | |
1d99702e | 2163 | { "_class_wxSpinEvent","_wxSpinEvent",0}, |
48115f4a | 2164 | { "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0}, |
c368d904 RD |
2165 | { "_wxDateTime","_class_wxDateTime",0}, |
2166 | { "_time_t","_wxCoord",0}, | |
2167 | { "_time_t","_wxPrintQuality",0}, | |
2168 | { "_time_t","_unsigned_int",0}, | |
2169 | { "_time_t","_int",0}, | |
2170 | { "_time_t","_wxWindowID",0}, | |
2171 | { "_time_t","_uint",0}, | |
2172 | { "_time_t","_size_t",0}, | |
48115f4a | 2173 | { "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0}, |
c368d904 | 2174 | { "_wxLogNull","_class_wxLogNull",0}, |
1d99702e | 2175 | { "_wxButton","_class_wxButton",0}, |
c368d904 | 2176 | { "_wxZipFSHandler","_class_wxZipFSHandler",0}, |
1d99702e RD |
2177 | { "_class_wxPyApp","_wxPyApp",0}, |
2178 | { "_wxSize","_class_wxSize",0}, | |
2179 | { "_wxRegionIterator","_class_wxRegionIterator",0}, | |
2180 | { "_class_wxPrinterDC","_wxPrinterDC",0}, | |
65dd82cb | 2181 | { "_class_wxPyTextDataObject","_wxPyTextDataObject",0}, |
c368d904 RD |
2182 | { "_class_wxLogTextCtrl","_wxLogTextCtrl",0}, |
2183 | { "_class_wxLogGui","_wxLogGui",0}, | |
1d99702e RD |
2184 | { "_class_wxMDIParentFrame","_wxMDIParentFrame",0}, |
2185 | { "_wxPyTreeItemData","_class_wxPyTreeItemData",0}, | |
2f90df85 | 2186 | { "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0}, |
c368d904 RD |
2187 | { "_class_wxTimeSpan","_wxTimeSpan",0}, |
2188 | { "_class_wxPyFileSystemHandler","_wxPyFileSystemHandler",0}, | |
1d99702e RD |
2189 | { "_class_wxPaintDC","_wxPaintDC",0}, |
2190 | { "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0}, | |
b1462dfa | 2191 | { "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0}, |
1d99702e RD |
2192 | { "_class_wxInitDialogEvent","_wxInitDialogEvent",0}, |
2193 | { "_class_wxComboBox","_wxComboBox",0}, | |
2194 | { "_class_wxRadioButton","_wxRadioButton",0}, | |
2f90df85 | 2195 | { "_wxValidator","_class_wxValidator",0}, |
9b3d3bc4 | 2196 | { "_wxToolBarBase","_class_wxToolBarBase",0}, |
1d99702e | 2197 | { "_class_wxTreeItemId","_wxTreeItemId",0}, |
1d99702e RD |
2198 | { "_class_wxLayoutConstraints","_wxLayoutConstraints",0}, |
2199 | { "_wxIconizeEvent","_class_wxIconizeEvent",0}, | |
2200 | { "_class_wxControl","_wxControl",0}, | |
2201 | { "_wxStaticBitmap","_class_wxStaticBitmap",0}, | |
2202 | { "_class_wxIcon","_wxIcon",0}, | |
2203 | { "_class_wxColour","_wxColour",0}, | |
2204 | { "_class_wxScreenDC","_wxScreenDC",0}, | |
2205 | { "_class_wxPageSetupDialog","_wxPageSetupDialog",0}, | |
2206 | { "_wxPalette","_class_wxPalette",0}, | |
2207 | { "_class_wxIdleEvent","_wxIdleEvent",0}, | |
c368d904 | 2208 | { "_class_wxConfigBase","_wxConfigBase",0}, |
b1462dfa RD |
2209 | { "_wxCoord","_int",0}, |
2210 | { "_wxCoord","_signed_int",0}, | |
2211 | { "_wxCoord","_unsigned_int",0}, | |
2212 | { "_wxCoord","_wxWindowID",0}, | |
2213 | { "_wxCoord","_uint",0}, | |
2214 | { "_wxCoord","_EBool",0}, | |
2215 | { "_wxCoord","_size_t",0}, | |
c368d904 | 2216 | { "_wxCoord","_time_t",0}, |
b1462dfa | 2217 | { "_wxCoord","_wxPrintQuality",0}, |
1d99702e | 2218 | { "_wxEraseEvent","_class_wxEraseEvent",0}, |
b1462dfa | 2219 | { "_wxDataObjectComposite","_class_wxDataObjectComposite",0}, |
1d99702e | 2220 | { "_class_wxJoystickEvent","_wxJoystickEvent",0}, |
f6bcfd97 | 2221 | { "_class_wxTipProvider","_wxTipProvider",0}, |
1d99702e RD |
2222 | { "_class_wxMiniFrame","_wxMiniFrame",0}, |
2223 | { "_wxFontDialog","_class_wxFontDialog",0}, | |
c368d904 | 2224 | { "_wxMemoryFSHandler","_class_wxMemoryFSHandler",0}, |
1d99702e RD |
2225 | { "_wxRegion","_class_wxRegion",0}, |
2226 | { "_class_wxSplitterWindow","_wxSplitterWindow",0}, | |
2227 | { "_wxPreviewFrame","_class_wxPreviewFrame",0}, | |
2f90df85 | 2228 | { "_wxSizer","_class_wxSizer",0}, |
c368d904 RD |
2229 | { "_class_wxDateSpan","_wxDateSpan",0}, |
2230 | { "_wxFileSystem","_class_wxFileSystem",0}, | |
1d99702e | 2231 | { "_class_wxShowEvent","_wxShowEvent",0}, |
f6bcfd97 | 2232 | { "_class_wxPyTipProvider","_wxPyTipProvider",0}, |
46c3e3d9 | 2233 | { "_class_wxPCXHandler","_wxPCXHandler",0}, |
9b3d3bc4 | 2234 | { "_wxTIFFHandler","_class_wxTIFFHandler",0}, |
b1462dfa | 2235 | { "_wxPyDropTarget","_class_wxPyDropTarget",0}, |
1d99702e RD |
2236 | { "_wxActivateEvent","_class_wxActivateEvent",0}, |
2237 | { "_wxGauge","_class_wxGauge",0}, | |
2238 | { "_class_wxCheckListBox","_wxCheckListBox",0}, | |
2abc0a0f | 2239 | { "_class_wxBusyInfo","_wxBusyInfo",0}, |
185d7c3e | 2240 | { "_class_wxJoystick","_wxJoystick",0}, |
1d99702e RD |
2241 | { "_class_wxCommandEvent","_wxCommandEvent",0}, |
2242 | { "_class_wxClientDC","_wxClientDC",0}, | |
2243 | { "_class_wxSizeEvent","_wxSizeEvent",0}, | |
2244 | { "_class_wxListCtrl","_wxListCtrl",0}, | |
b1462dfa | 2245 | { "_wxCustomDataObject","_class_wxCustomDataObject",0}, |
c368d904 | 2246 | { "_class_wxLogNull","_wxLogNull",0}, |
1d99702e RD |
2247 | { "_class_wxSize","_wxSize",0}, |
2248 | { "_class_wxBitmap","_wxBitmap",0}, | |
2249 | { "_class_wxMemoryDC","_wxMemoryDC",0}, | |
b1462dfa | 2250 | { "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0}, |
1d99702e | 2251 | { "_wxMenuBar","_class_wxMenuBar",0}, |
c368d904 | 2252 | { "_wxOutputStream","_class_wxOutputStream",0}, |
1d99702e RD |
2253 | { "_wxTreeEvent","_class_wxTreeEvent",0}, |
2254 | { "_wxDirDialog","_class_wxDirDialog",0}, | |
2255 | { "_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler}, | |
2256 | { "_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler}, | |
2257 | { "_wxEvtHandler","_class_wxEvtHandler",0}, | |
2258 | { "_wxMenuItem","_class_wxMenuItem",0}, | |
2259 | { "_class_wxScrollBar","_wxScrollBar",0}, | |
2260 | { "_class_wxColourDialog","_wxColourDialog",0}, | |
2261 | { "_class_wxPrintData","_wxPrintData",0}, | |
1d99702e | 2262 | { "_class_wxScrolledWindow","_wxScrolledWindow",0}, |
f6bcfd97 | 2263 | { "_wxListItemAttr","_class_wxListItemAttr",0}, |
1d99702e | 2264 | { "_class_wxTextEntryDialog","_wxTextEntryDialog",0}, |
c368d904 | 2265 | { "_class_wxConfig","_wxConfig",0}, |
1d99702e RD |
2266 | { "_wxKeyEvent","_class_wxKeyEvent",0}, |
2267 | { "_wxMoveEvent","_class_wxMoveEvent",0}, | |
2268 | { "_wxColourData","_class_wxColourData",0}, | |
2269 | { "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0}, | |
2270 | { "_class_wxPalette","_wxPalette",0}, | |
65dd82cb | 2271 | { "_wxFileDataObject","_class_wxFileDataObject",0}, |
1d99702e | 2272 | { "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0}, |
f6bcfd97 | 2273 | { "_wxNotebookSizer","_class_wxNotebookSizer",0}, |
1d99702e | 2274 | { "_class_wxEraseEvent","_wxEraseEvent",0}, |
65dd82cb | 2275 | { "_wxPyFontEnumerator","_class_wxPyFontEnumerator",0}, |
1d99702e | 2276 | { "_wxMDIClientWindow","_class_wxMDIClientWindow",0}, |
b1462dfa | 2277 | { "_class_wxDataObjectComposite","_wxDataObjectComposite",0}, |
9b3d3bc4 | 2278 | { "_class_wxToolBarToolBase","_wxToolBarToolBase",0}, |
1d99702e RD |
2279 | { "_class_wxFontDialog","_wxFontDialog",0}, |
2280 | { "_wxWindow","_class_wxWindow",0}, | |
48115f4a | 2281 | { "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0}, |
c368d904 RD |
2282 | { "_wxLogStderr","_class_wxLogStderr",0}, |
2283 | { "_class_wxFileSystemHandler","_wxFileSystemHandler",0}, | |
2284 | { "_class_wxFileSystem","_wxFileSystem",0}, | |
1d99702e RD |
2285 | { "_class_wxFrame","_wxFrame",0}, |
2286 | {0,0,0}}; | |
2287 | ||
8ab979d7 RD |
2288 | static PyObject *SWIG_globals; |
2289 | #ifdef __cplusplus | |
2290 | extern "C" | |
2291 | #endif | |
1d99702e | 2292 | SWIGEXPORT(void) initwxc() { |
8ab979d7 RD |
2293 | PyObject *m, *d; |
2294 | SWIG_globals = SWIG_newvarlink(); | |
b8b8dda7 | 2295 | m = Py_InitModule("wxc", wxcMethods); |
8ab979d7 RD |
2296 | d = PyModule_GetDict(m); |
2297 | PyDict_SetItemString(d,"wxMAJOR_VERSION", PyInt_FromLong((long) wxMAJOR_VERSION)); | |
2298 | PyDict_SetItemString(d,"wxMINOR_VERSION", PyInt_FromLong((long) wxMINOR_VERSION)); | |
2299 | PyDict_SetItemString(d,"wxRELEASE_NUMBER", PyInt_FromLong((long) wxRELEASE_NUMBER)); | |
08127323 | 2300 | PyDict_SetItemString(d,"wxNOT_FOUND", PyInt_FromLong((long) wxNOT_FOUND)); |
8ab979d7 RD |
2301 | PyDict_SetItemString(d,"wxVSCROLL", PyInt_FromLong((long) wxVSCROLL)); |
2302 | PyDict_SetItemString(d,"wxHSCROLL", PyInt_FromLong((long) wxHSCROLL)); | |
2303 | PyDict_SetItemString(d,"wxCAPTION", PyInt_FromLong((long) wxCAPTION)); | |
2304 | PyDict_SetItemString(d,"wxDOUBLE_BORDER", PyInt_FromLong((long) wxDOUBLE_BORDER)); | |
2305 | PyDict_SetItemString(d,"wxSUNKEN_BORDER", PyInt_FromLong((long) wxSUNKEN_BORDER)); | |
2306 | PyDict_SetItemString(d,"wxRAISED_BORDER", PyInt_FromLong((long) wxRAISED_BORDER)); | |
2307 | PyDict_SetItemString(d,"wxBORDER", PyInt_FromLong((long) wxBORDER)); | |
2308 | PyDict_SetItemString(d,"wxSIMPLE_BORDER", PyInt_FromLong((long) wxSIMPLE_BORDER)); | |
2309 | PyDict_SetItemString(d,"wxSTATIC_BORDER", PyInt_FromLong((long) wxSTATIC_BORDER)); | |
2310 | PyDict_SetItemString(d,"wxTRANSPARENT_WINDOW", PyInt_FromLong((long) wxTRANSPARENT_WINDOW)); | |
2311 | PyDict_SetItemString(d,"wxNO_BORDER", PyInt_FromLong((long) wxNO_BORDER)); | |
2312 | PyDict_SetItemString(d,"wxUSER_COLOURS", PyInt_FromLong((long) wxUSER_COLOURS)); | |
2313 | PyDict_SetItemString(d,"wxNO_3D", PyInt_FromLong((long) wxNO_3D)); | |
2314 | PyDict_SetItemString(d,"wxTAB_TRAVERSAL", PyInt_FromLong((long) wxTAB_TRAVERSAL)); | |
1afc06c2 | 2315 | PyDict_SetItemString(d,"wxWANTS_CHARS", PyInt_FromLong((long) wxWANTS_CHARS)); |
8ab979d7 RD |
2316 | PyDict_SetItemString(d,"wxHORIZONTAL", PyInt_FromLong((long) wxHORIZONTAL)); |
2317 | PyDict_SetItemString(d,"wxVERTICAL", PyInt_FromLong((long) wxVERTICAL)); | |
2318 | PyDict_SetItemString(d,"wxBOTH", PyInt_FromLong((long) wxBOTH)); | |
2319 | PyDict_SetItemString(d,"wxCENTER_FRAME", PyInt_FromLong((long) wxCENTER_FRAME)); | |
1afc06c2 RD |
2320 | PyDict_SetItemString(d,"wxCENTRE_ON_SCREEN", PyInt_FromLong((long) wxCENTRE_ON_SCREEN)); |
2321 | PyDict_SetItemString(d,"wxCENTER_ON_SCREEN", PyInt_FromLong((long) wxCENTER_ON_SCREEN)); | |
8ab979d7 RD |
2322 | PyDict_SetItemString(d,"wxSTAY_ON_TOP", PyInt_FromLong((long) wxSTAY_ON_TOP)); |
2323 | PyDict_SetItemString(d,"wxICONIZE", PyInt_FromLong((long) wxICONIZE)); | |
2324 | PyDict_SetItemString(d,"wxMINIMIZE", PyInt_FromLong((long) wxMINIMIZE)); | |
2325 | PyDict_SetItemString(d,"wxMAXIMIZE", PyInt_FromLong((long) wxMAXIMIZE)); | |
2326 | PyDict_SetItemString(d,"wxTHICK_FRAME", PyInt_FromLong((long) wxTHICK_FRAME)); | |
2327 | PyDict_SetItemString(d,"wxSYSTEM_MENU", PyInt_FromLong((long) wxSYSTEM_MENU)); | |
2328 | PyDict_SetItemString(d,"wxMINIMIZE_BOX", PyInt_FromLong((long) wxMINIMIZE_BOX)); | |
2329 | PyDict_SetItemString(d,"wxMAXIMIZE_BOX", PyInt_FromLong((long) wxMAXIMIZE_BOX)); | |
2330 | PyDict_SetItemString(d,"wxTINY_CAPTION_HORIZ", PyInt_FromLong((long) wxTINY_CAPTION_HORIZ)); | |
2331 | PyDict_SetItemString(d,"wxTINY_CAPTION_VERT", PyInt_FromLong((long) wxTINY_CAPTION_VERT)); | |
2332 | PyDict_SetItemString(d,"wxRESIZE_BOX", PyInt_FromLong((long) wxRESIZE_BOX)); | |
2333 | PyDict_SetItemString(d,"wxRESIZE_BORDER", PyInt_FromLong((long) wxRESIZE_BORDER)); | |
2334 | PyDict_SetItemString(d,"wxDIALOG_MODAL", PyInt_FromLong((long) wxDIALOG_MODAL)); | |
2335 | PyDict_SetItemString(d,"wxDIALOG_MODELESS", PyInt_FromLong((long) wxDIALOG_MODELESS)); | |
2336 | PyDict_SetItemString(d,"wxDEFAULT_FRAME_STYLE", PyInt_FromLong((long) wxDEFAULT_FRAME_STYLE)); | |
2337 | PyDict_SetItemString(d,"wxDEFAULT_DIALOG_STYLE", PyInt_FromLong((long) wxDEFAULT_DIALOG_STYLE)); | |
b8b8dda7 | 2338 | PyDict_SetItemString(d,"wxFRAME_TOOL_WINDOW", PyInt_FromLong((long) wxFRAME_TOOL_WINDOW)); |
bb0054cd | 2339 | PyDict_SetItemString(d,"wxFRAME_FLOAT_ON_PARENT", PyInt_FromLong((long) wxFRAME_FLOAT_ON_PARENT)); |
4c9993c3 | 2340 | PyDict_SetItemString(d,"wxFRAME_NO_WINDOW_MENU", PyInt_FromLong((long) wxFRAME_NO_WINDOW_MENU)); |
1afc06c2 RD |
2341 | PyDict_SetItemString(d,"wxED_CLIENT_MARGIN", PyInt_FromLong((long) wxED_CLIENT_MARGIN)); |
2342 | PyDict_SetItemString(d,"wxED_BUTTONS_BOTTOM", PyInt_FromLong((long) wxED_BUTTONS_BOTTOM)); | |
2343 | PyDict_SetItemString(d,"wxED_BUTTONS_RIGHT", PyInt_FromLong((long) wxED_BUTTONS_RIGHT)); | |
2344 | PyDict_SetItemString(d,"wxED_STATIC_LINE", PyInt_FromLong((long) wxED_STATIC_LINE)); | |
2345 | PyDict_SetItemString(d,"wxEXT_DIALOG_STYLE", PyInt_FromLong((long) wxEXT_DIALOG_STYLE)); | |
08127323 | 2346 | PyDict_SetItemString(d,"wxCLIP_CHILDREN", PyInt_FromLong((long) wxCLIP_CHILDREN)); |
8ab979d7 RD |
2347 | PyDict_SetItemString(d,"wxRETAINED", PyInt_FromLong((long) wxRETAINED)); |
2348 | PyDict_SetItemString(d,"wxBACKINGSTORE", PyInt_FromLong((long) wxBACKINGSTORE)); | |
2349 | PyDict_SetItemString(d,"wxTB_3DBUTTONS", PyInt_FromLong((long) wxTB_3DBUTTONS)); | |
2350 | PyDict_SetItemString(d,"wxTB_HORIZONTAL", PyInt_FromLong((long) wxTB_HORIZONTAL)); | |
2351 | PyDict_SetItemString(d,"wxTB_VERTICAL", PyInt_FromLong((long) wxTB_VERTICAL)); | |
9c039d08 | 2352 | PyDict_SetItemString(d,"wxTB_FLAT", PyInt_FromLong((long) wxTB_FLAT)); |
f0261a72 | 2353 | PyDict_SetItemString(d,"wxTB_DOCKABLE", PyInt_FromLong((long) wxTB_DOCKABLE)); |
8ab979d7 RD |
2354 | PyDict_SetItemString(d,"wxCOLOURED", PyInt_FromLong((long) wxCOLOURED)); |
2355 | PyDict_SetItemString(d,"wxFIXED_LENGTH", PyInt_FromLong((long) wxFIXED_LENGTH)); | |
2356 | PyDict_SetItemString(d,"wxALIGN_LEFT", PyInt_FromLong((long) wxALIGN_LEFT)); | |
694759cf RD |
2357 | PyDict_SetItemString(d,"wxALIGN_CENTER_HORIZONTAL", PyInt_FromLong((long) wxALIGN_CENTER_HORIZONTAL)); |
2358 | PyDict_SetItemString(d,"wxALIGN_CENTRE_HORIZONTAL", PyInt_FromLong((long) wxALIGN_CENTRE_HORIZONTAL)); | |
8ab979d7 | 2359 | PyDict_SetItemString(d,"wxALIGN_RIGHT", PyInt_FromLong((long) wxALIGN_RIGHT)); |
2f90df85 | 2360 | PyDict_SetItemString(d,"wxALIGN_BOTTOM", PyInt_FromLong((long) wxALIGN_BOTTOM)); |
694759cf RD |
2361 | PyDict_SetItemString(d,"wxALIGN_CENTER_VERTICAL", PyInt_FromLong((long) wxALIGN_CENTER_VERTICAL)); |
2362 | PyDict_SetItemString(d,"wxALIGN_CENTRE_VERTICAL", PyInt_FromLong((long) wxALIGN_CENTRE_VERTICAL)); | |
2f90df85 | 2363 | PyDict_SetItemString(d,"wxALIGN_TOP", PyInt_FromLong((long) wxALIGN_TOP)); |
694759cf RD |
2364 | PyDict_SetItemString(d,"wxALIGN_CENTER", PyInt_FromLong((long) wxALIGN_CENTER)); |
2365 | PyDict_SetItemString(d,"wxALIGN_CENTRE", PyInt_FromLong((long) wxALIGN_CENTRE)); | |
2366 | PyDict_SetItemString(d,"wxSHAPED", PyInt_FromLong((long) wxSHAPED)); | |
8ab979d7 RD |
2367 | PyDict_SetItemString(d,"wxLB_NEEDED_SB", PyInt_FromLong((long) wxLB_NEEDED_SB)); |
2368 | PyDict_SetItemString(d,"wxLB_ALWAYS_SB", PyInt_FromLong((long) wxLB_ALWAYS_SB)); | |
2369 | PyDict_SetItemString(d,"wxLB_SORT", PyInt_FromLong((long) wxLB_SORT)); | |
2370 | PyDict_SetItemString(d,"wxLB_SINGLE", PyInt_FromLong((long) wxLB_SINGLE)); | |
2371 | PyDict_SetItemString(d,"wxLB_MULTIPLE", PyInt_FromLong((long) wxLB_MULTIPLE)); | |
2372 | PyDict_SetItemString(d,"wxLB_EXTENDED", PyInt_FromLong((long) wxLB_EXTENDED)); | |
2373 | PyDict_SetItemString(d,"wxLB_OWNERDRAW", PyInt_FromLong((long) wxLB_OWNERDRAW)); | |
2374 | PyDict_SetItemString(d,"wxLB_HSCROLL", PyInt_FromLong((long) wxLB_HSCROLL)); | |
2375 | PyDict_SetItemString(d,"wxPROCESS_ENTER", PyInt_FromLong((long) wxPROCESS_ENTER)); | |
2376 | PyDict_SetItemString(d,"wxPASSWORD", PyInt_FromLong((long) wxPASSWORD)); | |
2377 | PyDict_SetItemString(d,"wxTE_PROCESS_ENTER", PyInt_FromLong((long) wxTE_PROCESS_ENTER)); | |
f6bcfd97 | 2378 | PyDict_SetItemString(d,"wxTE_PROCESS_TAB", PyInt_FromLong((long) wxTE_PROCESS_TAB)); |
8ab979d7 RD |
2379 | PyDict_SetItemString(d,"wxTE_PASSWORD", PyInt_FromLong((long) wxTE_PASSWORD)); |
2380 | PyDict_SetItemString(d,"wxTE_READONLY", PyInt_FromLong((long) wxTE_READONLY)); | |
8bf5d46e | 2381 | PyDict_SetItemString(d,"wxTE_RICH", PyInt_FromLong((long) wxTE_RICH)); |
8ab979d7 | 2382 | PyDict_SetItemString(d,"wxTE_MULTILINE", PyInt_FromLong((long) wxTE_MULTILINE)); |
06c0fba4 RD |
2383 | PyDict_SetItemString(d,"wxTE_AUTO_SCROLL", PyInt_FromLong((long) wxTE_AUTO_SCROLL)); |
2384 | PyDict_SetItemString(d,"wxTE_NO_VSCROLL", PyInt_FromLong((long) wxTE_NO_VSCROLL)); | |
8ab979d7 RD |
2385 | PyDict_SetItemString(d,"wxCB_SIMPLE", PyInt_FromLong((long) wxCB_SIMPLE)); |
2386 | PyDict_SetItemString(d,"wxCB_DROPDOWN", PyInt_FromLong((long) wxCB_DROPDOWN)); | |
2387 | PyDict_SetItemString(d,"wxCB_SORT", PyInt_FromLong((long) wxCB_SORT)); | |
2388 | PyDict_SetItemString(d,"wxCB_READONLY", PyInt_FromLong((long) wxCB_READONLY)); | |
2389 | PyDict_SetItemString(d,"wxRA_HORIZONTAL", PyInt_FromLong((long) wxRA_HORIZONTAL)); | |
2390 | PyDict_SetItemString(d,"wxRA_VERTICAL", PyInt_FromLong((long) wxRA_VERTICAL)); | |
62abd41e RD |
2391 | PyDict_SetItemString(d,"wxRA_SPECIFY_ROWS", PyInt_FromLong((long) wxRA_SPECIFY_ROWS)); |
2392 | PyDict_SetItemString(d,"wxRA_SPECIFY_COLS", PyInt_FromLong((long) wxRA_SPECIFY_COLS)); | |
8ab979d7 RD |
2393 | PyDict_SetItemString(d,"wxRB_GROUP", PyInt_FromLong((long) wxRB_GROUP)); |
2394 | PyDict_SetItemString(d,"wxGA_PROGRESSBAR", PyInt_FromLong((long) wxGA_PROGRESSBAR)); | |
2395 | PyDict_SetItemString(d,"wxGA_HORIZONTAL", PyInt_FromLong((long) wxGA_HORIZONTAL)); | |
2396 | PyDict_SetItemString(d,"wxGA_VERTICAL", PyInt_FromLong((long) wxGA_VERTICAL)); | |
bb0054cd | 2397 | PyDict_SetItemString(d,"wxGA_SMOOTH", PyInt_FromLong((long) wxGA_SMOOTH)); |
8ab979d7 RD |
2398 | PyDict_SetItemString(d,"wxSL_HORIZONTAL", PyInt_FromLong((long) wxSL_HORIZONTAL)); |
2399 | PyDict_SetItemString(d,"wxSL_VERTICAL", PyInt_FromLong((long) wxSL_VERTICAL)); | |
2400 | PyDict_SetItemString(d,"wxSL_AUTOTICKS", PyInt_FromLong((long) wxSL_AUTOTICKS)); | |
2401 | PyDict_SetItemString(d,"wxSL_LABELS", PyInt_FromLong((long) wxSL_LABELS)); | |
2402 | PyDict_SetItemString(d,"wxSL_LEFT", PyInt_FromLong((long) wxSL_LEFT)); | |
2403 | PyDict_SetItemString(d,"wxSL_TOP", PyInt_FromLong((long) wxSL_TOP)); | |
2404 | PyDict_SetItemString(d,"wxSL_RIGHT", PyInt_FromLong((long) wxSL_RIGHT)); | |
2405 | PyDict_SetItemString(d,"wxSL_BOTTOM", PyInt_FromLong((long) wxSL_BOTTOM)); | |
2406 | PyDict_SetItemString(d,"wxSL_BOTH", PyInt_FromLong((long) wxSL_BOTH)); | |
2407 | PyDict_SetItemString(d,"wxSL_SELRANGE", PyInt_FromLong((long) wxSL_SELRANGE)); | |
2408 | PyDict_SetItemString(d,"wxSB_HORIZONTAL", PyInt_FromLong((long) wxSB_HORIZONTAL)); | |
2409 | PyDict_SetItemString(d,"wxSB_VERTICAL", PyInt_FromLong((long) wxSB_VERTICAL)); | |
cf694132 | 2410 | PyDict_SetItemString(d,"wxST_SIZEGRIP", PyInt_FromLong((long) wxST_SIZEGRIP)); |
2abc0a0f | 2411 | PyDict_SetItemString(d,"wxST_NO_AUTORESIZE", PyInt_FromLong((long) wxST_NO_AUTORESIZE)); |
8ab979d7 RD |
2412 | PyDict_SetItemString(d,"wxBU_AUTODRAW", PyInt_FromLong((long) wxBU_AUTODRAW)); |
2413 | PyDict_SetItemString(d,"wxBU_NOAUTODRAW", PyInt_FromLong((long) wxBU_NOAUTODRAW)); | |
2414 | PyDict_SetItemString(d,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS)); | |
2415 | PyDict_SetItemString(d,"wxTR_EDIT_LABELS", PyInt_FromLong((long) wxTR_EDIT_LABELS)); | |
d5c9047a | 2416 | PyDict_SetItemString(d,"wxTR_LINES_AT_ROOT", PyInt_FromLong((long) wxTR_LINES_AT_ROOT)); |
8bf5d46e | 2417 | PyDict_SetItemString(d,"wxTR_MULTIPLE", PyInt_FromLong((long) wxTR_MULTIPLE)); |
1afc06c2 | 2418 | PyDict_SetItemString(d,"wxTR_SINGLE", PyInt_FromLong((long) wxTR_SINGLE)); |
8bf5d46e | 2419 | PyDict_SetItemString(d,"wxTR_HAS_VARIABLE_ROW_HEIGHT", PyInt_FromLong((long) wxTR_HAS_VARIABLE_ROW_HEIGHT)); |
8ab979d7 RD |
2420 | PyDict_SetItemString(d,"wxLC_ICON", PyInt_FromLong((long) wxLC_ICON)); |
2421 | PyDict_SetItemString(d,"wxLC_SMALL_ICON", PyInt_FromLong((long) wxLC_SMALL_ICON)); | |
2422 | PyDict_SetItemString(d,"wxLC_LIST", PyInt_FromLong((long) wxLC_LIST)); | |
2423 | PyDict_SetItemString(d,"wxLC_REPORT", PyInt_FromLong((long) wxLC_REPORT)); | |
2424 | PyDict_SetItemString(d,"wxLC_ALIGN_TOP", PyInt_FromLong((long) wxLC_ALIGN_TOP)); | |
2425 | PyDict_SetItemString(d,"wxLC_ALIGN_LEFT", PyInt_FromLong((long) wxLC_ALIGN_LEFT)); | |
2426 | PyDict_SetItemString(d,"wxLC_AUTOARRANGE", PyInt_FromLong((long) wxLC_AUTOARRANGE)); | |
2427 | PyDict_SetItemString(d,"wxLC_USER_TEXT", PyInt_FromLong((long) wxLC_USER_TEXT)); | |
2428 | PyDict_SetItemString(d,"wxLC_EDIT_LABELS", PyInt_FromLong((long) wxLC_EDIT_LABELS)); | |
2429 | PyDict_SetItemString(d,"wxLC_NO_HEADER", PyInt_FromLong((long) wxLC_NO_HEADER)); | |
2430 | PyDict_SetItemString(d,"wxLC_NO_SORT_HEADER", PyInt_FromLong((long) wxLC_NO_SORT_HEADER)); | |
2431 | PyDict_SetItemString(d,"wxLC_SINGLE_SEL", PyInt_FromLong((long) wxLC_SINGLE_SEL)); | |
2432 | PyDict_SetItemString(d,"wxLC_SORT_ASCENDING", PyInt_FromLong((long) wxLC_SORT_ASCENDING)); | |
2433 | PyDict_SetItemString(d,"wxLC_SORT_DESCENDING", PyInt_FromLong((long) wxLC_SORT_DESCENDING)); | |
2434 | PyDict_SetItemString(d,"wxLC_MASK_TYPE", PyInt_FromLong((long) wxLC_MASK_TYPE)); | |
2435 | PyDict_SetItemString(d,"wxLC_MASK_ALIGN", PyInt_FromLong((long) wxLC_MASK_ALIGN)); | |
2436 | PyDict_SetItemString(d,"wxLC_MASK_SORT", PyInt_FromLong((long) wxLC_MASK_SORT)); | |
2437 | PyDict_SetItemString(d,"wxSP_VERTICAL", PyInt_FromLong((long) wxSP_VERTICAL)); | |
2438 | PyDict_SetItemString(d,"wxSP_HORIZONTAL", PyInt_FromLong((long) wxSP_HORIZONTAL)); | |
2439 | PyDict_SetItemString(d,"wxSP_ARROW_KEYS", PyInt_FromLong((long) wxSP_ARROW_KEYS)); | |
2440 | PyDict_SetItemString(d,"wxSP_WRAP", PyInt_FromLong((long) wxSP_WRAP)); | |
2441 | PyDict_SetItemString(d,"wxSP_NOBORDER", PyInt_FromLong((long) wxSP_NOBORDER)); | |
2442 | PyDict_SetItemString(d,"wxSP_3D", PyInt_FromLong((long) wxSP_3D)); | |
2443 | PyDict_SetItemString(d,"wxSP_BORDER", PyInt_FromLong((long) wxSP_BORDER)); | |
9d8bd15f RD |
2444 | PyDict_SetItemString(d,"wxSP_LIVE_UPDATE", PyInt_FromLong((long) wxSP_LIVE_UPDATE)); |
2445 | PyDict_SetItemString(d,"wxSP_PERMIT_UNSPLIT", PyInt_FromLong((long) wxSP_PERMIT_UNSPLIT)); | |
8ab979d7 RD |
2446 | PyDict_SetItemString(d,"wxFLOOD_SURFACE", PyInt_FromLong((long) wxFLOOD_SURFACE)); |
2447 | PyDict_SetItemString(d,"wxFLOOD_BORDER", PyInt_FromLong((long) wxFLOOD_BORDER)); | |
2448 | PyDict_SetItemString(d,"wxODDEVEN_RULE", PyInt_FromLong((long) wxODDEVEN_RULE)); | |
2449 | PyDict_SetItemString(d,"wxWINDING_RULE", PyInt_FromLong((long) wxWINDING_RULE)); | |
2450 | PyDict_SetItemString(d,"wxTOOL_TOP", PyInt_FromLong((long) wxTOOL_TOP)); | |
2451 | PyDict_SetItemString(d,"wxTOOL_BOTTOM", PyInt_FromLong((long) wxTOOL_BOTTOM)); | |
2452 | PyDict_SetItemString(d,"wxTOOL_LEFT", PyInt_FromLong((long) wxTOOL_LEFT)); | |
2453 | PyDict_SetItemString(d,"wxTOOL_RIGHT", PyInt_FromLong((long) wxTOOL_RIGHT)); | |
2454 | PyDict_SetItemString(d,"wxOK", PyInt_FromLong((long) wxOK)); | |
2455 | PyDict_SetItemString(d,"wxYES_NO", PyInt_FromLong((long) wxYES_NO)); | |
2456 | PyDict_SetItemString(d,"wxCANCEL", PyInt_FromLong((long) wxCANCEL)); | |
2457 | PyDict_SetItemString(d,"wxYES", PyInt_FromLong((long) wxYES)); | |
2458 | PyDict_SetItemString(d,"wxNO", PyInt_FromLong((long) wxNO)); | |
1afc06c2 RD |
2459 | PyDict_SetItemString(d,"wxNO_DEFAULT", PyInt_FromLong((long) wxNO_DEFAULT)); |
2460 | PyDict_SetItemString(d,"wxYES_DEFAULT", PyInt_FromLong((long) wxYES_DEFAULT)); | |
8ab979d7 RD |
2461 | PyDict_SetItemString(d,"wxICON_EXCLAMATION", PyInt_FromLong((long) wxICON_EXCLAMATION)); |
2462 | PyDict_SetItemString(d,"wxICON_HAND", PyInt_FromLong((long) wxICON_HAND)); | |
2463 | PyDict_SetItemString(d,"wxICON_QUESTION", PyInt_FromLong((long) wxICON_QUESTION)); | |
2464 | PyDict_SetItemString(d,"wxICON_INFORMATION", PyInt_FromLong((long) wxICON_INFORMATION)); | |
2465 | PyDict_SetItemString(d,"wxICON_STOP", PyInt_FromLong((long) wxICON_STOP)); | |
2466 | PyDict_SetItemString(d,"wxICON_ASTERISK", PyInt_FromLong((long) wxICON_ASTERISK)); | |
2467 | PyDict_SetItemString(d,"wxICON_MASK", PyInt_FromLong((long) wxICON_MASK)); | |
1afc06c2 RD |
2468 | PyDict_SetItemString(d,"wxICON_WARNING", PyInt_FromLong((long) wxICON_WARNING)); |
2469 | PyDict_SetItemString(d,"wxICON_ERROR", PyInt_FromLong((long) wxICON_ERROR)); | |
2470 | PyDict_SetItemString(d,"wxFORWARD", PyInt_FromLong((long) wxFORWARD)); | |
2471 | PyDict_SetItemString(d,"wxBACKWARD", PyInt_FromLong((long) wxBACKWARD)); | |
2472 | PyDict_SetItemString(d,"wxRESET", PyInt_FromLong((long) wxRESET)); | |
2473 | PyDict_SetItemString(d,"wxHELP", PyInt_FromLong((long) wxHELP)); | |
2474 | PyDict_SetItemString(d,"wxMORE", PyInt_FromLong((long) wxMORE)); | |
2475 | PyDict_SetItemString(d,"wxSETUP", PyInt_FromLong((long) wxSETUP)); | |
8ab979d7 RD |
2476 | PyDict_SetItemString(d,"wxCENTRE", PyInt_FromLong((long) wxCENTRE)); |
2477 | PyDict_SetItemString(d,"wxCENTER", PyInt_FromLong((long) wxCENTER)); | |
2478 | PyDict_SetItemString(d,"wxSIZE_AUTO_WIDTH", PyInt_FromLong((long) wxSIZE_AUTO_WIDTH)); | |
2479 | PyDict_SetItemString(d,"wxSIZE_AUTO_HEIGHT", PyInt_FromLong((long) wxSIZE_AUTO_HEIGHT)); | |
2480 | PyDict_SetItemString(d,"wxSIZE_AUTO", PyInt_FromLong((long) wxSIZE_AUTO)); | |
2481 | PyDict_SetItemString(d,"wxSIZE_USE_EXISTING", PyInt_FromLong((long) wxSIZE_USE_EXISTING)); | |
2482 | PyDict_SetItemString(d,"wxSIZE_ALLOW_MINUS_ONE", PyInt_FromLong((long) wxSIZE_ALLOW_MINUS_ONE)); | |
8ab979d7 RD |
2483 | PyDict_SetItemString(d,"wxPORTRAIT", PyInt_FromLong((long) wxPORTRAIT)); |
2484 | PyDict_SetItemString(d,"wxLANDSCAPE", PyInt_FromLong((long) wxLANDSCAPE)); | |
bb0054cd RD |
2485 | PyDict_SetItemString(d,"wxPRINT_QUALITY_HIGH", PyInt_FromLong((long) wxPRINT_QUALITY_HIGH)); |
2486 | PyDict_SetItemString(d,"wxPRINT_QUALITY_MEDIUM", PyInt_FromLong((long) wxPRINT_QUALITY_MEDIUM)); | |
2487 | PyDict_SetItemString(d,"wxPRINT_QUALITY_LOW", PyInt_FromLong((long) wxPRINT_QUALITY_LOW)); | |
2488 | PyDict_SetItemString(d,"wxPRINT_QUALITY_DRAFT", PyInt_FromLong((long) wxPRINT_QUALITY_DRAFT)); | |
8ab979d7 RD |
2489 | PyDict_SetItemString(d,"wxID_OPEN", PyInt_FromLong((long) wxID_OPEN)); |
2490 | PyDict_SetItemString(d,"wxID_CLOSE", PyInt_FromLong((long) wxID_CLOSE)); | |
2491 | PyDict_SetItemString(d,"wxID_NEW", PyInt_FromLong((long) wxID_NEW)); | |
2492 | PyDict_SetItemString(d,"wxID_SAVE", PyInt_FromLong((long) wxID_SAVE)); | |
2493 | PyDict_SetItemString(d,"wxID_SAVEAS", PyInt_FromLong((long) wxID_SAVEAS)); | |
2494 | PyDict_SetItemString(d,"wxID_REVERT", PyInt_FromLong((long) wxID_REVERT)); | |
2495 | PyDict_SetItemString(d,"wxID_EXIT", PyInt_FromLong((long) wxID_EXIT)); | |
2496 | PyDict_SetItemString(d,"wxID_UNDO", PyInt_FromLong((long) wxID_UNDO)); | |
2497 | PyDict_SetItemString(d,"wxID_REDO", PyInt_FromLong((long) wxID_REDO)); | |
2498 | PyDict_SetItemString(d,"wxID_HELP", PyInt_FromLong((long) wxID_HELP)); | |
2499 | PyDict_SetItemString(d,"wxID_PRINT", PyInt_FromLong((long) wxID_PRINT)); | |
2500 | PyDict_SetItemString(d,"wxID_PRINT_SETUP", PyInt_FromLong((long) wxID_PRINT_SETUP)); | |
2501 | PyDict_SetItemString(d,"wxID_PREVIEW", PyInt_FromLong((long) wxID_PREVIEW)); | |
2502 | PyDict_SetItemString(d,"wxID_ABOUT", PyInt_FromLong((long) wxID_ABOUT)); | |
2503 | PyDict_SetItemString(d,"wxID_HELP_CONTENTS", PyInt_FromLong((long) wxID_HELP_CONTENTS)); | |
2504 | PyDict_SetItemString(d,"wxID_HELP_COMMANDS", PyInt_FromLong((long) wxID_HELP_COMMANDS)); | |
2505 | PyDict_SetItemString(d,"wxID_HELP_PROCEDURES", PyInt_FromLong((long) wxID_HELP_PROCEDURES)); | |
2506 | PyDict_SetItemString(d,"wxID_HELP_CONTEXT", PyInt_FromLong((long) wxID_HELP_CONTEXT)); | |
2507 | PyDict_SetItemString(d,"wxID_CUT", PyInt_FromLong((long) wxID_CUT)); | |
2508 | PyDict_SetItemString(d,"wxID_COPY", PyInt_FromLong((long) wxID_COPY)); | |
2509 | PyDict_SetItemString(d,"wxID_PASTE", PyInt_FromLong((long) wxID_PASTE)); | |
2510 | PyDict_SetItemString(d,"wxID_CLEAR", PyInt_FromLong((long) wxID_CLEAR)); | |
2511 | PyDict_SetItemString(d,"wxID_FIND", PyInt_FromLong((long) wxID_FIND)); | |
2512 | PyDict_SetItemString(d,"wxID_FILE1", PyInt_FromLong((long) wxID_FILE1)); | |
2513 | PyDict_SetItemString(d,"wxID_FILE2", PyInt_FromLong((long) wxID_FILE2)); | |
2514 | PyDict_SetItemString(d,"wxID_FILE3", PyInt_FromLong((long) wxID_FILE3)); | |
2515 | PyDict_SetItemString(d,"wxID_FILE4", PyInt_FromLong((long) wxID_FILE4)); | |
2516 | PyDict_SetItemString(d,"wxID_FILE5", PyInt_FromLong((long) wxID_FILE5)); | |
2517 | PyDict_SetItemString(d,"wxID_FILE6", PyInt_FromLong((long) wxID_FILE6)); | |
2518 | PyDict_SetItemString(d,"wxID_FILE7", PyInt_FromLong((long) wxID_FILE7)); | |
2519 | PyDict_SetItemString(d,"wxID_FILE8", PyInt_FromLong((long) wxID_FILE8)); | |
2520 | PyDict_SetItemString(d,"wxID_FILE9", PyInt_FromLong((long) wxID_FILE9)); | |
2521 | PyDict_SetItemString(d,"wxID_OK", PyInt_FromLong((long) wxID_OK)); | |
2522 | PyDict_SetItemString(d,"wxID_CANCEL", PyInt_FromLong((long) wxID_CANCEL)); | |
2523 | PyDict_SetItemString(d,"wxID_APPLY", PyInt_FromLong((long) wxID_APPLY)); | |
2524 | PyDict_SetItemString(d,"wxID_YES", PyInt_FromLong((long) wxID_YES)); | |
2525 | PyDict_SetItemString(d,"wxID_NO", PyInt_FromLong((long) wxID_NO)); | |
cf694132 | 2526 | PyDict_SetItemString(d,"wxID_STATIC", PyInt_FromLong((long) wxID_STATIC)); |
4c9993c3 | 2527 | PyDict_SetItemString(d,"wxID_SEPARATOR", PyInt_FromLong((long) wxID_SEPARATOR)); |
8ab979d7 RD |
2528 | PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP", PyInt_FromLong((long) wxBITMAP_TYPE_BMP)); |
2529 | PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_BMP_RESOURCE)); | |
2530 | PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO", PyInt_FromLong((long) wxBITMAP_TYPE_ICO)); | |
2531 | PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_ICO_RESOURCE)); | |
2532 | PyDict_SetItemString(d,"wxBITMAP_TYPE_CUR", PyInt_FromLong((long) wxBITMAP_TYPE_CUR)); | |
2533 | PyDict_SetItemString(d,"wxBITMAP_TYPE_CUR_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_CUR_RESOURCE)); | |
2534 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XBM", PyInt_FromLong((long) wxBITMAP_TYPE_XBM)); | |
2535 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XBM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XBM_DATA)); | |
2536 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XPM", PyInt_FromLong((long) wxBITMAP_TYPE_XPM)); | |
2537 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XPM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XPM_DATA)); | |
2538 | PyDict_SetItemString(d,"wxBITMAP_TYPE_TIF", PyInt_FromLong((long) wxBITMAP_TYPE_TIF)); | |
2539 | PyDict_SetItemString(d,"wxBITMAP_TYPE_TIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_TIF_RESOURCE)); | |
2540 | PyDict_SetItemString(d,"wxBITMAP_TYPE_GIF", PyInt_FromLong((long) wxBITMAP_TYPE_GIF)); | |
2541 | PyDict_SetItemString(d,"wxBITMAP_TYPE_GIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_GIF_RESOURCE)); | |
2542 | PyDict_SetItemString(d,"wxBITMAP_TYPE_PNG", PyInt_FromLong((long) wxBITMAP_TYPE_PNG)); | |
2543 | PyDict_SetItemString(d,"wxBITMAP_TYPE_PNG_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_PNG_RESOURCE)); | |
2544 | PyDict_SetItemString(d,"wxBITMAP_TYPE_ANY", PyInt_FromLong((long) wxBITMAP_TYPE_ANY)); | |
2545 | PyDict_SetItemString(d,"wxBITMAP_TYPE_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_RESOURCE)); | |
cf694132 | 2546 | PyDict_SetItemString(d,"wxBITMAP_TYPE_JPEG", PyInt_FromLong((long) wxBITMAP_TYPE_JPEG)); |
9b3d3bc4 | 2547 | PyDict_SetItemString(d,"wxBITMAP_TYPE_PCX", PyInt_FromLong((long) wxBITMAP_TYPE_PCX)); |
8ab979d7 RD |
2548 | PyDict_SetItemString(d,"wxOPEN", PyInt_FromLong((long) wxOPEN)); |
2549 | PyDict_SetItemString(d,"wxSAVE", PyInt_FromLong((long) wxSAVE)); | |
2550 | PyDict_SetItemString(d,"wxHIDE_READONLY", PyInt_FromLong((long) wxHIDE_READONLY)); | |
2551 | PyDict_SetItemString(d,"wxOVERWRITE_PROMPT", PyInt_FromLong((long) wxOVERWRITE_PROMPT)); | |
2abc0a0f | 2552 | PyDict_SetItemString(d,"wxFILE_MUST_EXIST", PyInt_FromLong((long) wxFILE_MUST_EXIST)); |
f6bcfd97 | 2553 | PyDict_SetItemString(d,"wxMULTIPLE", PyInt_FromLong((long) wxMULTIPLE)); |
8ab979d7 RD |
2554 | PyDict_SetItemString(d,"wxACCEL_ALT", PyInt_FromLong((long) wxACCEL_ALT)); |
2555 | PyDict_SetItemString(d,"wxACCEL_CTRL", PyInt_FromLong((long) wxACCEL_CTRL)); | |
2556 | PyDict_SetItemString(d,"wxACCEL_SHIFT", PyInt_FromLong((long) wxACCEL_SHIFT)); | |
f6bcfd97 | 2557 | PyDict_SetItemString(d,"wxACCEL_NORMAL", PyInt_FromLong((long) wxACCEL_NORMAL)); |
bb0054cd RD |
2558 | PyDict_SetItemString(d,"wxPD_AUTO_HIDE", PyInt_FromLong((long) wxPD_AUTO_HIDE)); |
2559 | PyDict_SetItemString(d,"wxPD_APP_MODAL", PyInt_FromLong((long) wxPD_APP_MODAL)); | |
2560 | PyDict_SetItemString(d,"wxPD_CAN_ABORT", PyInt_FromLong((long) wxPD_CAN_ABORT)); | |
a08cbc01 RD |
2561 | PyDict_SetItemString(d,"wxPD_ELAPSED_TIME", PyInt_FromLong((long) wxPD_ELAPSED_TIME)); |
2562 | PyDict_SetItemString(d,"wxPD_ESTIMATED_TIME", PyInt_FromLong((long) wxPD_ESTIMATED_TIME)); | |
2563 | PyDict_SetItemString(d,"wxPD_REMAINING_TIME", PyInt_FromLong((long) wxPD_REMAINING_TIME)); | |
8bf5d46e | 2564 | PyDict_SetItemString(d,"wxMENU_TEAROFF", PyInt_FromLong((long) wxMENU_TEAROFF)); |
1afc06c2 | 2565 | PyDict_SetItemString(d,"wxMB_DOCKABLE", PyInt_FromLong((long) wxMB_DOCKABLE)); |
8bf5d46e | 2566 | PyDict_SetItemString(d,"wxNO_FULL_REPAINT_ON_RESIZE", PyInt_FromLong((long) wxNO_FULL_REPAINT_ON_RESIZE)); |
1afc06c2 RD |
2567 | PyDict_SetItemString(d,"wxLEFT", PyInt_FromLong((long) wxLEFT)); |
2568 | PyDict_SetItemString(d,"wxRIGHT", PyInt_FromLong((long) wxRIGHT)); | |
2569 | PyDict_SetItemString(d,"wxUP", PyInt_FromLong((long) wxUP)); | |
2570 | PyDict_SetItemString(d,"wxDOWN", PyInt_FromLong((long) wxDOWN)); | |
2571 | PyDict_SetItemString(d,"wxALL", PyInt_FromLong((long) wxALL)); | |
2572 | PyDict_SetItemString(d,"wxTOP", PyInt_FromLong((long) wxTOP)); | |
2573 | PyDict_SetItemString(d,"wxBOTTOM", PyInt_FromLong((long) wxBOTTOM)); | |
2574 | PyDict_SetItemString(d,"wxNORTH", PyInt_FromLong((long) wxNORTH)); | |
2575 | PyDict_SetItemString(d,"wxSOUTH", PyInt_FromLong((long) wxSOUTH)); | |
2576 | PyDict_SetItemString(d,"wxEAST", PyInt_FromLong((long) wxEAST)); | |
2577 | PyDict_SetItemString(d,"wxWEST", PyInt_FromLong((long) wxWEST)); | |
2578 | PyDict_SetItemString(d,"wxSTRETCH_NOT", PyInt_FromLong((long) wxSTRETCH_NOT)); | |
2579 | PyDict_SetItemString(d,"wxSHRINK", PyInt_FromLong((long) wxSHRINK)); | |
2580 | PyDict_SetItemString(d,"wxGROW", PyInt_FromLong((long) wxGROW)); | |
2581 | PyDict_SetItemString(d,"wxEXPAND", PyInt_FromLong((long) wxEXPAND)); | |
2582 | PyDict_SetItemString(d,"wxNB_FIXEDWIDTH", PyInt_FromLong((long) wxNB_FIXEDWIDTH)); | |
f0261a72 RD |
2583 | PyDict_SetItemString(d,"wxNB_LEFT", PyInt_FromLong((long) wxNB_LEFT)); |
2584 | PyDict_SetItemString(d,"wxNB_RIGHT", PyInt_FromLong((long) wxNB_RIGHT)); | |
2585 | PyDict_SetItemString(d,"wxNB_BOTTOM", PyInt_FromLong((long) wxNB_BOTTOM)); | |
1afc06c2 RD |
2586 | PyDict_SetItemString(d,"wxLI_HORIZONTAL", PyInt_FromLong((long) wxLI_HORIZONTAL)); |
2587 | PyDict_SetItemString(d,"wxLI_VERTICAL", PyInt_FromLong((long) wxLI_VERTICAL)); | |
2588 | PyDict_SetItemString(d,"wxHW_SCROLLBAR_NEVER", PyInt_FromLong((long) wxHW_SCROLLBAR_NEVER)); | |
2589 | PyDict_SetItemString(d,"wxHW_SCROLLBAR_AUTO", PyInt_FromLong((long) wxHW_SCROLLBAR_AUTO)); | |
185d7c3e RD |
2590 | PyDict_SetItemString(d,"wxJOYSTICK1", PyInt_FromLong((long) wxJOYSTICK1)); |
2591 | PyDict_SetItemString(d,"wxJOYSTICK2", PyInt_FromLong((long) wxJOYSTICK2)); | |
2592 | PyDict_SetItemString(d,"wxJOY_BUTTON1", PyInt_FromLong((long) wxJOY_BUTTON1)); | |
2593 | PyDict_SetItemString(d,"wxJOY_BUTTON2", PyInt_FromLong((long) wxJOY_BUTTON2)); | |
2594 | PyDict_SetItemString(d,"wxJOY_BUTTON3", PyInt_FromLong((long) wxJOY_BUTTON3)); | |
2595 | PyDict_SetItemString(d,"wxJOY_BUTTON4", PyInt_FromLong((long) wxJOY_BUTTON4)); | |
2596 | PyDict_SetItemString(d,"wxJOY_BUTTON_ANY", PyInt_FromLong((long) wxJOY_BUTTON_ANY)); | |
8ab979d7 RD |
2597 | PyDict_SetItemString(d,"wxDEFAULT", PyInt_FromLong((long) wxDEFAULT)); |
2598 | PyDict_SetItemString(d,"wxDECORATIVE", PyInt_FromLong((long) wxDECORATIVE)); | |
2599 | PyDict_SetItemString(d,"wxROMAN", PyInt_FromLong((long) wxROMAN)); | |
2600 | PyDict_SetItemString(d,"wxSCRIPT", PyInt_FromLong((long) wxSCRIPT)); | |
2601 | PyDict_SetItemString(d,"wxSWISS", PyInt_FromLong((long) wxSWISS)); | |
2602 | PyDict_SetItemString(d,"wxMODERN", PyInt_FromLong((long) wxMODERN)); | |
2603 | PyDict_SetItemString(d,"wxTELETYPE", PyInt_FromLong((long) wxTELETYPE)); | |
2604 | PyDict_SetItemString(d,"wxVARIABLE", PyInt_FromLong((long) wxVARIABLE)); | |
2605 | PyDict_SetItemString(d,"wxFIXED", PyInt_FromLong((long) wxFIXED)); | |
2606 | PyDict_SetItemString(d,"wxNORMAL", PyInt_FromLong((long) wxNORMAL)); | |
2607 | PyDict_SetItemString(d,"wxLIGHT", PyInt_FromLong((long) wxLIGHT)); | |
2608 | PyDict_SetItemString(d,"wxBOLD", PyInt_FromLong((long) wxBOLD)); | |
2609 | PyDict_SetItemString(d,"wxITALIC", PyInt_FromLong((long) wxITALIC)); | |
2610 | PyDict_SetItemString(d,"wxSLANT", PyInt_FromLong((long) wxSLANT)); | |
2611 | PyDict_SetItemString(d,"wxSOLID", PyInt_FromLong((long) wxSOLID)); | |
2612 | PyDict_SetItemString(d,"wxDOT", PyInt_FromLong((long) wxDOT)); | |
2613 | PyDict_SetItemString(d,"wxLONG_DASH", PyInt_FromLong((long) wxLONG_DASH)); | |
2614 | PyDict_SetItemString(d,"wxSHORT_DASH", PyInt_FromLong((long) wxSHORT_DASH)); | |
2615 | PyDict_SetItemString(d,"wxDOT_DASH", PyInt_FromLong((long) wxDOT_DASH)); | |
2616 | PyDict_SetItemString(d,"wxUSER_DASH", PyInt_FromLong((long) wxUSER_DASH)); | |
2617 | PyDict_SetItemString(d,"wxTRANSPARENT", PyInt_FromLong((long) wxTRANSPARENT)); | |
2618 | PyDict_SetItemString(d,"wxSTIPPLE", PyInt_FromLong((long) wxSTIPPLE)); | |
2619 | PyDict_SetItemString(d,"wxBDIAGONAL_HATCH", PyInt_FromLong((long) wxBDIAGONAL_HATCH)); | |
2620 | PyDict_SetItemString(d,"wxCROSSDIAG_HATCH", PyInt_FromLong((long) wxCROSSDIAG_HATCH)); | |
2621 | PyDict_SetItemString(d,"wxFDIAGONAL_HATCH", PyInt_FromLong((long) wxFDIAGONAL_HATCH)); | |
2622 | PyDict_SetItemString(d,"wxCROSS_HATCH", PyInt_FromLong((long) wxCROSS_HATCH)); | |
2623 | PyDict_SetItemString(d,"wxHORIZONTAL_HATCH", PyInt_FromLong((long) wxHORIZONTAL_HATCH)); | |
2624 | PyDict_SetItemString(d,"wxVERTICAL_HATCH", PyInt_FromLong((long) wxVERTICAL_HATCH)); | |
2625 | PyDict_SetItemString(d,"wxJOIN_BEVEL", PyInt_FromLong((long) wxJOIN_BEVEL)); | |
2626 | PyDict_SetItemString(d,"wxJOIN_MITER", PyInt_FromLong((long) wxJOIN_MITER)); | |
2627 | PyDict_SetItemString(d,"wxJOIN_ROUND", PyInt_FromLong((long) wxJOIN_ROUND)); | |
2628 | PyDict_SetItemString(d,"wxCAP_ROUND", PyInt_FromLong((long) wxCAP_ROUND)); | |
2629 | PyDict_SetItemString(d,"wxCAP_PROJECTING", PyInt_FromLong((long) wxCAP_PROJECTING)); | |
2630 | PyDict_SetItemString(d,"wxCAP_BUTT", PyInt_FromLong((long) wxCAP_BUTT)); | |
2631 | PyDict_SetItemString(d,"wxCLEAR", PyInt_FromLong((long) wxCLEAR)); | |
2632 | PyDict_SetItemString(d,"wxXOR", PyInt_FromLong((long) wxXOR)); | |
2633 | PyDict_SetItemString(d,"wxINVERT", PyInt_FromLong((long) wxINVERT)); | |
2634 | PyDict_SetItemString(d,"wxOR_REVERSE", PyInt_FromLong((long) wxOR_REVERSE)); | |
2635 | PyDict_SetItemString(d,"wxAND_REVERSE", PyInt_FromLong((long) wxAND_REVERSE)); | |
2636 | PyDict_SetItemString(d,"wxCOPY", PyInt_FromLong((long) wxCOPY)); | |
2637 | PyDict_SetItemString(d,"wxAND", PyInt_FromLong((long) wxAND)); | |
2638 | PyDict_SetItemString(d,"wxAND_INVERT", PyInt_FromLong((long) wxAND_INVERT)); | |
2639 | PyDict_SetItemString(d,"wxNO_OP", PyInt_FromLong((long) wxNO_OP)); | |
2640 | PyDict_SetItemString(d,"wxNOR", PyInt_FromLong((long) wxNOR)); | |
2641 | PyDict_SetItemString(d,"wxEQUIV", PyInt_FromLong((long) wxEQUIV)); | |
2642 | PyDict_SetItemString(d,"wxSRC_INVERT", PyInt_FromLong((long) wxSRC_INVERT)); | |
2643 | PyDict_SetItemString(d,"wxOR_INVERT", PyInt_FromLong((long) wxOR_INVERT)); | |
2644 | PyDict_SetItemString(d,"wxNAND", PyInt_FromLong((long) wxNAND)); | |
2645 | PyDict_SetItemString(d,"wxOR", PyInt_FromLong((long) wxOR)); | |
2646 | PyDict_SetItemString(d,"wxSET", PyInt_FromLong((long) wxSET)); | |
8ab979d7 RD |
2647 | PyDict_SetItemString(d,"WXK_BACK", PyInt_FromLong((long) WXK_BACK)); |
2648 | PyDict_SetItemString(d,"WXK_TAB", PyInt_FromLong((long) WXK_TAB)); | |
2649 | PyDict_SetItemString(d,"WXK_RETURN", PyInt_FromLong((long) WXK_RETURN)); | |
2650 | PyDict_SetItemString(d,"WXK_ESCAPE", PyInt_FromLong((long) WXK_ESCAPE)); | |
2651 | PyDict_SetItemString(d,"WXK_SPACE", PyInt_FromLong((long) WXK_SPACE)); | |
2652 | PyDict_SetItemString(d,"WXK_DELETE", PyInt_FromLong((long) WXK_DELETE)); | |
2653 | PyDict_SetItemString(d,"WXK_START", PyInt_FromLong((long) WXK_START)); | |
2654 | PyDict_SetItemString(d,"WXK_LBUTTON", PyInt_FromLong((long) WXK_LBUTTON)); | |
2655 | PyDict_SetItemString(d,"WXK_RBUTTON", PyInt_FromLong((long) WXK_RBUTTON)); | |
2656 | PyDict_SetItemString(d,"WXK_CANCEL", PyInt_FromLong((long) WXK_CANCEL)); | |
2657 | PyDict_SetItemString(d,"WXK_MBUTTON", PyInt_FromLong((long) WXK_MBUTTON)); | |
2658 | PyDict_SetItemString(d,"WXK_CLEAR", PyInt_FromLong((long) WXK_CLEAR)); | |
2659 | PyDict_SetItemString(d,"WXK_SHIFT", PyInt_FromLong((long) WXK_SHIFT)); | |
2660 | PyDict_SetItemString(d,"WXK_CONTROL", PyInt_FromLong((long) WXK_CONTROL)); | |
2661 | PyDict_SetItemString(d,"WXK_MENU", PyInt_FromLong((long) WXK_MENU)); | |
2662 | PyDict_SetItemString(d,"WXK_PAUSE", PyInt_FromLong((long) WXK_PAUSE)); | |
2663 | PyDict_SetItemString(d,"WXK_CAPITAL", PyInt_FromLong((long) WXK_CAPITAL)); | |
2664 | PyDict_SetItemString(d,"WXK_PRIOR", PyInt_FromLong((long) WXK_PRIOR)); | |
2665 | PyDict_SetItemString(d,"WXK_NEXT", PyInt_FromLong((long) WXK_NEXT)); | |
2666 | PyDict_SetItemString(d,"WXK_END", PyInt_FromLong((long) WXK_END)); | |
2667 | PyDict_SetItemString(d,"WXK_HOME", PyInt_FromLong((long) WXK_HOME)); | |
2668 | PyDict_SetItemString(d,"WXK_LEFT", PyInt_FromLong((long) WXK_LEFT)); | |
2669 | PyDict_SetItemString(d,"WXK_UP", PyInt_FromLong((long) WXK_UP)); | |
2670 | PyDict_SetItemString(d,"WXK_RIGHT", PyInt_FromLong((long) WXK_RIGHT)); | |
2671 | PyDict_SetItemString(d,"WXK_DOWN", PyInt_FromLong((long) WXK_DOWN)); | |
2672 | PyDict_SetItemString(d,"WXK_SELECT", PyInt_FromLong((long) WXK_SELECT)); | |
2673 | PyDict_SetItemString(d,"WXK_PRINT", PyInt_FromLong((long) WXK_PRINT)); | |
2674 | PyDict_SetItemString(d,"WXK_EXECUTE", PyInt_FromLong((long) WXK_EXECUTE)); | |
2675 | PyDict_SetItemString(d,"WXK_SNAPSHOT", PyInt_FromLong((long) WXK_SNAPSHOT)); | |
2676 | PyDict_SetItemString(d,"WXK_INSERT", PyInt_FromLong((long) WXK_INSERT)); | |
2677 | PyDict_SetItemString(d,"WXK_HELP", PyInt_FromLong((long) WXK_HELP)); | |
2678 | PyDict_SetItemString(d,"WXK_NUMPAD0", PyInt_FromLong((long) WXK_NUMPAD0)); | |
2679 | PyDict_SetItemString(d,"WXK_NUMPAD1", PyInt_FromLong((long) WXK_NUMPAD1)); | |
2680 | PyDict_SetItemString(d,"WXK_NUMPAD2", PyInt_FromLong((long) WXK_NUMPAD2)); | |
2681 | PyDict_SetItemString(d,"WXK_NUMPAD3", PyInt_FromLong((long) WXK_NUMPAD3)); | |
2682 | PyDict_SetItemString(d,"WXK_NUMPAD4", PyInt_FromLong((long) WXK_NUMPAD4)); | |
2683 | PyDict_SetItemString(d,"WXK_NUMPAD5", PyInt_FromLong((long) WXK_NUMPAD5)); | |
2684 | PyDict_SetItemString(d,"WXK_NUMPAD6", PyInt_FromLong((long) WXK_NUMPAD6)); | |
2685 | PyDict_SetItemString(d,"WXK_NUMPAD7", PyInt_FromLong((long) WXK_NUMPAD7)); | |
2686 | PyDict_SetItemString(d,"WXK_NUMPAD8", PyInt_FromLong((long) WXK_NUMPAD8)); | |
2687 | PyDict_SetItemString(d,"WXK_NUMPAD9", PyInt_FromLong((long) WXK_NUMPAD9)); | |
2688 | PyDict_SetItemString(d,"WXK_MULTIPLY", PyInt_FromLong((long) WXK_MULTIPLY)); | |
2689 | PyDict_SetItemString(d,"WXK_ADD", PyInt_FromLong((long) WXK_ADD)); | |
2690 | PyDict_SetItemString(d,"WXK_SEPARATOR", PyInt_FromLong((long) WXK_SEPARATOR)); | |
2691 | PyDict_SetItemString(d,"WXK_SUBTRACT", PyInt_FromLong((long) WXK_SUBTRACT)); | |
2692 | PyDict_SetItemString(d,"WXK_DECIMAL", PyInt_FromLong((long) WXK_DECIMAL)); | |
2693 | PyDict_SetItemString(d,"WXK_DIVIDE", PyInt_FromLong((long) WXK_DIVIDE)); | |
2694 | PyDict_SetItemString(d,"WXK_F1", PyInt_FromLong((long) WXK_F1)); | |
2695 | PyDict_SetItemString(d,"WXK_F2", PyInt_FromLong((long) WXK_F2)); | |
2696 | PyDict_SetItemString(d,"WXK_F3", PyInt_FromLong((long) WXK_F3)); | |
2697 | PyDict_SetItemString(d,"WXK_F4", PyInt_FromLong((long) WXK_F4)); | |
2698 | PyDict_SetItemString(d,"WXK_F5", PyInt_FromLong((long) WXK_F5)); | |
2699 | PyDict_SetItemString(d,"WXK_F6", PyInt_FromLong((long) WXK_F6)); | |
2700 | PyDict_SetItemString(d,"WXK_F7", PyInt_FromLong((long) WXK_F7)); | |
2701 | PyDict_SetItemString(d,"WXK_F8", PyInt_FromLong((long) WXK_F8)); | |
2702 | PyDict_SetItemString(d,"WXK_F9", PyInt_FromLong((long) WXK_F9)); | |
2703 | PyDict_SetItemString(d,"WXK_F10", PyInt_FromLong((long) WXK_F10)); | |
2704 | PyDict_SetItemString(d,"WXK_F11", PyInt_FromLong((long) WXK_F11)); | |
2705 | PyDict_SetItemString(d,"WXK_F12", PyInt_FromLong((long) WXK_F12)); | |
2706 | PyDict_SetItemString(d,"WXK_F13", PyInt_FromLong((long) WXK_F13)); | |
2707 | PyDict_SetItemString(d,"WXK_F14", PyInt_FromLong((long) WXK_F14)); | |
2708 | PyDict_SetItemString(d,"WXK_F15", PyInt_FromLong((long) WXK_F15)); | |
2709 | PyDict_SetItemString(d,"WXK_F16", PyInt_FromLong((long) WXK_F16)); | |
2710 | PyDict_SetItemString(d,"WXK_F17", PyInt_FromLong((long) WXK_F17)); | |
2711 | PyDict_SetItemString(d,"WXK_F18", PyInt_FromLong((long) WXK_F18)); | |
2712 | PyDict_SetItemString(d,"WXK_F19", PyInt_FromLong((long) WXK_F19)); | |
2713 | PyDict_SetItemString(d,"WXK_F20", PyInt_FromLong((long) WXK_F20)); | |
2714 | PyDict_SetItemString(d,"WXK_F21", PyInt_FromLong((long) WXK_F21)); | |
2715 | PyDict_SetItemString(d,"WXK_F22", PyInt_FromLong((long) WXK_F22)); | |
2716 | PyDict_SetItemString(d,"WXK_F23", PyInt_FromLong((long) WXK_F23)); | |
2717 | PyDict_SetItemString(d,"WXK_F24", PyInt_FromLong((long) WXK_F24)); | |
2718 | PyDict_SetItemString(d,"WXK_NUMLOCK", PyInt_FromLong((long) WXK_NUMLOCK)); | |
2719 | PyDict_SetItemString(d,"WXK_SCROLL", PyInt_FromLong((long) WXK_SCROLL)); | |
2720 | PyDict_SetItemString(d,"WXK_PAGEUP", PyInt_FromLong((long) WXK_PAGEUP)); | |
2721 | PyDict_SetItemString(d,"WXK_PAGEDOWN", PyInt_FromLong((long) WXK_PAGEDOWN)); | |
9c039d08 | 2722 | PyDict_SetItemString(d,"wxCURSOR_NONE", PyInt_FromLong((long) wxCURSOR_NONE)); |
8ab979d7 RD |
2723 | PyDict_SetItemString(d,"wxCURSOR_ARROW", PyInt_FromLong((long) wxCURSOR_ARROW)); |
2724 | PyDict_SetItemString(d,"wxCURSOR_BULLSEYE", PyInt_FromLong((long) wxCURSOR_BULLSEYE)); | |
2725 | PyDict_SetItemString(d,"wxCURSOR_CHAR", PyInt_FromLong((long) wxCURSOR_CHAR)); | |
2726 | PyDict_SetItemString(d,"wxCURSOR_CROSS", PyInt_FromLong((long) wxCURSOR_CROSS)); | |
2727 | PyDict_SetItemString(d,"wxCURSOR_HAND", PyInt_FromLong((long) wxCURSOR_HAND)); | |
2728 | PyDict_SetItemString(d,"wxCURSOR_IBEAM", PyInt_FromLong((long) wxCURSOR_IBEAM)); | |
2729 | PyDict_SetItemString(d,"wxCURSOR_LEFT_BUTTON", PyInt_FromLong((long) wxCURSOR_LEFT_BUTTON)); | |
2730 | PyDict_SetItemString(d,"wxCURSOR_MAGNIFIER", PyInt_FromLong((long) wxCURSOR_MAGNIFIER)); | |
2731 | PyDict_SetItemString(d,"wxCURSOR_MIDDLE_BUTTON", PyInt_FromLong((long) wxCURSOR_MIDDLE_BUTTON)); | |
2732 | PyDict_SetItemString(d,"wxCURSOR_NO_ENTRY", PyInt_FromLong((long) wxCURSOR_NO_ENTRY)); | |
2733 | PyDict_SetItemString(d,"wxCURSOR_PAINT_BRUSH", PyInt_FromLong((long) wxCURSOR_PAINT_BRUSH)); | |
2734 | PyDict_SetItemString(d,"wxCURSOR_PENCIL", PyInt_FromLong((long) wxCURSOR_PENCIL)); | |
2735 | PyDict_SetItemString(d,"wxCURSOR_POINT_LEFT", PyInt_FromLong((long) wxCURSOR_POINT_LEFT)); | |
2736 | PyDict_SetItemString(d,"wxCURSOR_POINT_RIGHT", PyInt_FromLong((long) wxCURSOR_POINT_RIGHT)); | |
2737 | PyDict_SetItemString(d,"wxCURSOR_QUESTION_ARROW", PyInt_FromLong((long) wxCURSOR_QUESTION_ARROW)); | |
2738 | PyDict_SetItemString(d,"wxCURSOR_RIGHT_BUTTON", PyInt_FromLong((long) wxCURSOR_RIGHT_BUTTON)); | |
2739 | PyDict_SetItemString(d,"wxCURSOR_SIZENESW", PyInt_FromLong((long) wxCURSOR_SIZENESW)); | |
2740 | PyDict_SetItemString(d,"wxCURSOR_SIZENS", PyInt_FromLong((long) wxCURSOR_SIZENS)); | |
2741 | PyDict_SetItemString(d,"wxCURSOR_SIZENWSE", PyInt_FromLong((long) wxCURSOR_SIZENWSE)); | |
2742 | PyDict_SetItemString(d,"wxCURSOR_SIZEWE", PyInt_FromLong((long) wxCURSOR_SIZEWE)); | |
2743 | PyDict_SetItemString(d,"wxCURSOR_SIZING", PyInt_FromLong((long) wxCURSOR_SIZING)); | |
2744 | PyDict_SetItemString(d,"wxCURSOR_SPRAYCAN", PyInt_FromLong((long) wxCURSOR_SPRAYCAN)); | |
2745 | PyDict_SetItemString(d,"wxCURSOR_WAIT", PyInt_FromLong((long) wxCURSOR_WAIT)); | |
2746 | PyDict_SetItemString(d,"wxCURSOR_WATCH", PyInt_FromLong((long) wxCURSOR_WATCH)); | |
2747 | PyDict_SetItemString(d,"wxCURSOR_BLANK", PyInt_FromLong((long) wxCURSOR_BLANK)); | |
cf694132 RD |
2748 | PyDict_SetItemString(d,"wxPAPER_NONE", PyInt_FromLong((long) wxPAPER_NONE)); |
2749 | PyDict_SetItemString(d,"wxPAPER_LETTER", PyInt_FromLong((long) wxPAPER_LETTER)); | |
2750 | PyDict_SetItemString(d,"wxPAPER_LEGAL", PyInt_FromLong((long) wxPAPER_LEGAL)); | |
2751 | PyDict_SetItemString(d,"wxPAPER_A4", PyInt_FromLong((long) wxPAPER_A4)); | |
2752 | PyDict_SetItemString(d,"wxPAPER_CSHEET", PyInt_FromLong((long) wxPAPER_CSHEET)); | |
2753 | PyDict_SetItemString(d,"wxPAPER_DSHEET", PyInt_FromLong((long) wxPAPER_DSHEET)); | |
2754 | PyDict_SetItemString(d,"wxPAPER_ESHEET", PyInt_FromLong((long) wxPAPER_ESHEET)); | |
2755 | PyDict_SetItemString(d,"wxPAPER_LETTERSMALL", PyInt_FromLong((long) wxPAPER_LETTERSMALL)); | |
2756 | PyDict_SetItemString(d,"wxPAPER_TABLOID", PyInt_FromLong((long) wxPAPER_TABLOID)); | |
2757 | PyDict_SetItemString(d,"wxPAPER_LEDGER", PyInt_FromLong((long) wxPAPER_LEDGER)); | |
2758 | PyDict_SetItemString(d,"wxPAPER_STATEMENT", PyInt_FromLong((long) wxPAPER_STATEMENT)); | |
2759 | PyDict_SetItemString(d,"wxPAPER_EXECUTIVE", PyInt_FromLong((long) wxPAPER_EXECUTIVE)); | |
2760 | PyDict_SetItemString(d,"wxPAPER_A3", PyInt_FromLong((long) wxPAPER_A3)); | |
2761 | PyDict_SetItemString(d,"wxPAPER_A4SMALL", PyInt_FromLong((long) wxPAPER_A4SMALL)); | |
2762 | PyDict_SetItemString(d,"wxPAPER_A5", PyInt_FromLong((long) wxPAPER_A5)); | |
2763 | PyDict_SetItemString(d,"wxPAPER_B4", PyInt_FromLong((long) wxPAPER_B4)); | |
2764 | PyDict_SetItemString(d,"wxPAPER_B5", PyInt_FromLong((long) wxPAPER_B5)); | |
2765 | PyDict_SetItemString(d,"wxPAPER_FOLIO", PyInt_FromLong((long) wxPAPER_FOLIO)); | |
2766 | PyDict_SetItemString(d,"wxPAPER_QUARTO", PyInt_FromLong((long) wxPAPER_QUARTO)); | |
2767 | PyDict_SetItemString(d,"wxPAPER_10X14", PyInt_FromLong((long) wxPAPER_10X14)); | |
2768 | PyDict_SetItemString(d,"wxPAPER_11X17", PyInt_FromLong((long) wxPAPER_11X17)); | |
2769 | PyDict_SetItemString(d,"wxPAPER_NOTE", PyInt_FromLong((long) wxPAPER_NOTE)); | |
2770 | PyDict_SetItemString(d,"wxPAPER_ENV_9", PyInt_FromLong((long) wxPAPER_ENV_9)); | |
2771 | PyDict_SetItemString(d,"wxPAPER_ENV_10", PyInt_FromLong((long) wxPAPER_ENV_10)); | |
2772 | PyDict_SetItemString(d,"wxPAPER_ENV_11", PyInt_FromLong((long) wxPAPER_ENV_11)); | |
2773 | PyDict_SetItemString(d,"wxPAPER_ENV_12", PyInt_FromLong((long) wxPAPER_ENV_12)); | |
2774 | PyDict_SetItemString(d,"wxPAPER_ENV_14", PyInt_FromLong((long) wxPAPER_ENV_14)); | |
2775 | PyDict_SetItemString(d,"wxPAPER_ENV_DL", PyInt_FromLong((long) wxPAPER_ENV_DL)); | |
2776 | PyDict_SetItemString(d,"wxPAPER_ENV_C5", PyInt_FromLong((long) wxPAPER_ENV_C5)); | |
2777 | PyDict_SetItemString(d,"wxPAPER_ENV_C3", PyInt_FromLong((long) wxPAPER_ENV_C3)); | |
2778 | PyDict_SetItemString(d,"wxPAPER_ENV_C4", PyInt_FromLong((long) wxPAPER_ENV_C4)); | |
2779 | PyDict_SetItemString(d,"wxPAPER_ENV_C6", PyInt_FromLong((long) wxPAPER_ENV_C6)); | |
2780 | PyDict_SetItemString(d,"wxPAPER_ENV_C65", PyInt_FromLong((long) wxPAPER_ENV_C65)); | |
2781 | PyDict_SetItemString(d,"wxPAPER_ENV_B4", PyInt_FromLong((long) wxPAPER_ENV_B4)); | |
2782 | PyDict_SetItemString(d,"wxPAPER_ENV_B5", PyInt_FromLong((long) wxPAPER_ENV_B5)); | |
2783 | PyDict_SetItemString(d,"wxPAPER_ENV_B6", PyInt_FromLong((long) wxPAPER_ENV_B6)); | |
2784 | PyDict_SetItemString(d,"wxPAPER_ENV_ITALY", PyInt_FromLong((long) wxPAPER_ENV_ITALY)); | |
2785 | PyDict_SetItemString(d,"wxPAPER_ENV_MONARCH", PyInt_FromLong((long) wxPAPER_ENV_MONARCH)); | |
2786 | PyDict_SetItemString(d,"wxPAPER_ENV_PERSONAL", PyInt_FromLong((long) wxPAPER_ENV_PERSONAL)); | |
2787 | PyDict_SetItemString(d,"wxPAPER_FANFOLD_US", PyInt_FromLong((long) wxPAPER_FANFOLD_US)); | |
2788 | PyDict_SetItemString(d,"wxPAPER_FANFOLD_STD_GERMAN", PyInt_FromLong((long) wxPAPER_FANFOLD_STD_GERMAN)); | |
2789 | PyDict_SetItemString(d,"wxPAPER_FANFOLD_LGL_GERMAN", PyInt_FromLong((long) wxPAPER_FANFOLD_LGL_GERMAN)); | |
2790 | PyDict_SetItemString(d,"wxPAPER_ISO_B4", PyInt_FromLong((long) wxPAPER_ISO_B4)); | |
2791 | PyDict_SetItemString(d,"wxPAPER_JAPANESE_POSTCARD", PyInt_FromLong((long) wxPAPER_JAPANESE_POSTCARD)); | |
2792 | PyDict_SetItemString(d,"wxPAPER_9X11", PyInt_FromLong((long) wxPAPER_9X11)); | |
2793 | PyDict_SetItemString(d,"wxPAPER_10X11", PyInt_FromLong((long) wxPAPER_10X11)); | |
2794 | PyDict_SetItemString(d,"wxPAPER_15X11", PyInt_FromLong((long) wxPAPER_15X11)); | |
2795 | PyDict_SetItemString(d,"wxPAPER_ENV_INVITE", PyInt_FromLong((long) wxPAPER_ENV_INVITE)); | |
2796 | PyDict_SetItemString(d,"wxPAPER_LETTER_EXTRA", PyInt_FromLong((long) wxPAPER_LETTER_EXTRA)); | |
2797 | PyDict_SetItemString(d,"wxPAPER_LEGAL_EXTRA", PyInt_FromLong((long) wxPAPER_LEGAL_EXTRA)); | |
2798 | PyDict_SetItemString(d,"wxPAPER_TABLOID_EXTRA", PyInt_FromLong((long) wxPAPER_TABLOID_EXTRA)); | |
2799 | PyDict_SetItemString(d,"wxPAPER_A4_EXTRA", PyInt_FromLong((long) wxPAPER_A4_EXTRA)); | |
2800 | PyDict_SetItemString(d,"wxPAPER_LETTER_TRANSVERSE", PyInt_FromLong((long) wxPAPER_LETTER_TRANSVERSE)); | |
2801 | PyDict_SetItemString(d,"wxPAPER_A4_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A4_TRANSVERSE)); | |
2802 | PyDict_SetItemString(d,"wxPAPER_LETTER_EXTRA_TRANSVERSE", PyInt_FromLong((long) wxPAPER_LETTER_EXTRA_TRANSVERSE)); | |
2803 | PyDict_SetItemString(d,"wxPAPER_A_PLUS", PyInt_FromLong((long) wxPAPER_A_PLUS)); | |
2804 | PyDict_SetItemString(d,"wxPAPER_B_PLUS", PyInt_FromLong((long) wxPAPER_B_PLUS)); | |
2805 | PyDict_SetItemString(d,"wxPAPER_LETTER_PLUS", PyInt_FromLong((long) wxPAPER_LETTER_PLUS)); | |
2806 | PyDict_SetItemString(d,"wxPAPER_A4_PLUS", PyInt_FromLong((long) wxPAPER_A4_PLUS)); | |
2807 | PyDict_SetItemString(d,"wxPAPER_A5_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A5_TRANSVERSE)); | |
2808 | PyDict_SetItemString(d,"wxPAPER_B5_TRANSVERSE", PyInt_FromLong((long) wxPAPER_B5_TRANSVERSE)); | |
2809 | PyDict_SetItemString(d,"wxPAPER_A3_EXTRA", PyInt_FromLong((long) wxPAPER_A3_EXTRA)); | |
2810 | PyDict_SetItemString(d,"wxPAPER_A5_EXTRA", PyInt_FromLong((long) wxPAPER_A5_EXTRA)); | |
2811 | PyDict_SetItemString(d,"wxPAPER_B5_EXTRA", PyInt_FromLong((long) wxPAPER_B5_EXTRA)); | |
2812 | PyDict_SetItemString(d,"wxPAPER_A2", PyInt_FromLong((long) wxPAPER_A2)); | |
2813 | PyDict_SetItemString(d,"wxPAPER_A3_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A3_TRANSVERSE)); | |
2814 | PyDict_SetItemString(d,"wxPAPER_A3_EXTRA_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A3_EXTRA_TRANSVERSE)); | |
bb0054cd RD |
2815 | PyDict_SetItemString(d,"wxDUPLEX_SIMPLEX", PyInt_FromLong((long) wxDUPLEX_SIMPLEX)); |
2816 | PyDict_SetItemString(d,"wxDUPLEX_HORIZONTAL", PyInt_FromLong((long) wxDUPLEX_HORIZONTAL)); | |
2817 | PyDict_SetItemString(d,"wxDUPLEX_VERTICAL", PyInt_FromLong((long) wxDUPLEX_VERTICAL)); | |
8ab979d7 RD |
2818 | PyDict_SetItemString(d,"FALSE", PyInt_FromLong((long) 0)); |
2819 | PyDict_SetItemString(d,"false", PyInt_FromLong((long) 0)); | |
2820 | PyDict_SetItemString(d,"TRUE", PyInt_FromLong((long) 1)); | |
2821 | PyDict_SetItemString(d,"true", PyInt_FromLong((long) 1)); | |
0699c864 | 2822 | PyDict_SetItemString(d,"wxVERSION_STRING", PyString_FromString("wxVERSION_STRING")); |
8ab979d7 RD |
2823 | PyDict_SetItemString(d,"wxEVT_NULL", PyInt_FromLong((long) wxEVT_NULL)); |
2824 | PyDict_SetItemString(d,"wxEVT_FIRST", PyInt_FromLong((long) wxEVT_FIRST)); | |
2825 | PyDict_SetItemString(d,"wxEVT_COMMAND_BUTTON_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_BUTTON_CLICKED)); | |
2826 | PyDict_SetItemString(d,"wxEVT_COMMAND_CHECKBOX_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKBOX_CLICKED)); | |
2827 | PyDict_SetItemString(d,"wxEVT_COMMAND_CHOICE_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_CHOICE_SELECTED)); | |
2828 | PyDict_SetItemString(d,"wxEVT_COMMAND_LISTBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_SELECTED)); | |
2829 | PyDict_SetItemString(d,"wxEVT_COMMAND_LISTBOX_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_DOUBLECLICKED)); | |
2830 | PyDict_SetItemString(d,"wxEVT_COMMAND_CHECKLISTBOX_TOGGLED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKLISTBOX_TOGGLED)); | |
3af4e610 | 2831 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPINCTRL_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SPINCTRL_UPDATED)); |
8ab979d7 RD |
2832 | PyDict_SetItemString(d,"wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_UPDATED)); |
2833 | PyDict_SetItemString(d,"wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_ENTER)); | |
2834 | PyDict_SetItemString(d,"wxEVT_COMMAND_MENU_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_MENU_SELECTED)); | |
2835 | PyDict_SetItemString(d,"wxEVT_COMMAND_SLIDER_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SLIDER_UPDATED)); | |
2836 | PyDict_SetItemString(d,"wxEVT_COMMAND_RADIOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBOX_SELECTED)); | |
2837 | PyDict_SetItemString(d,"wxEVT_COMMAND_RADIOBUTTON_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBUTTON_SELECTED)); | |
2838 | PyDict_SetItemString(d,"wxEVT_COMMAND_SCROLLBAR_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SCROLLBAR_UPDATED)); | |
2839 | PyDict_SetItemString(d,"wxEVT_COMMAND_VLBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_VLBOX_SELECTED)); | |
2840 | PyDict_SetItemString(d,"wxEVT_COMMAND_COMBOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_COMBOBOX_SELECTED)); | |
2841 | PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_CLICKED)); | |
2842 | PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_RCLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_RCLICKED)); | |
2843 | PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_ENTER)); | |
2844 | PyDict_SetItemString(d,"wxEVT_SET_FOCUS", PyInt_FromLong((long) wxEVT_SET_FOCUS)); | |
2845 | PyDict_SetItemString(d,"wxEVT_KILL_FOCUS", PyInt_FromLong((long) wxEVT_KILL_FOCUS)); | |
2846 | PyDict_SetItemString(d,"wxEVT_LEFT_DOWN", PyInt_FromLong((long) wxEVT_LEFT_DOWN)); | |
2847 | PyDict_SetItemString(d,"wxEVT_LEFT_UP", PyInt_FromLong((long) wxEVT_LEFT_UP)); | |
2848 | PyDict_SetItemString(d,"wxEVT_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_MIDDLE_DOWN)); | |
2849 | PyDict_SetItemString(d,"wxEVT_MIDDLE_UP", PyInt_FromLong((long) wxEVT_MIDDLE_UP)); | |
2850 | PyDict_SetItemString(d,"wxEVT_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_RIGHT_DOWN)); | |
2851 | PyDict_SetItemString(d,"wxEVT_RIGHT_UP", PyInt_FromLong((long) wxEVT_RIGHT_UP)); | |
2852 | PyDict_SetItemString(d,"wxEVT_MOTION", PyInt_FromLong((long) wxEVT_MOTION)); | |
2853 | PyDict_SetItemString(d,"wxEVT_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_ENTER_WINDOW)); | |
2854 | PyDict_SetItemString(d,"wxEVT_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_LEAVE_WINDOW)); | |
2855 | PyDict_SetItemString(d,"wxEVT_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_LEFT_DCLICK)); | |
2856 | PyDict_SetItemString(d,"wxEVT_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_MIDDLE_DCLICK)); | |
2857 | PyDict_SetItemString(d,"wxEVT_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_RIGHT_DCLICK)); | |
2858 | PyDict_SetItemString(d,"wxEVT_NC_LEFT_DOWN", PyInt_FromLong((long) wxEVT_NC_LEFT_DOWN)); | |
2859 | PyDict_SetItemString(d,"wxEVT_NC_LEFT_UP", PyInt_FromLong((long) wxEVT_NC_LEFT_UP)); | |
2860 | PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DOWN)); | |
2861 | PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_UP", PyInt_FromLong((long) wxEVT_NC_MIDDLE_UP)); | |
2862 | PyDict_SetItemString(d,"wxEVT_NC_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_NC_RIGHT_DOWN)); | |
2863 | PyDict_SetItemString(d,"wxEVT_NC_RIGHT_UP", PyInt_FromLong((long) wxEVT_NC_RIGHT_UP)); | |
2864 | PyDict_SetItemString(d,"wxEVT_NC_MOTION", PyInt_FromLong((long) wxEVT_NC_MOTION)); | |
2865 | PyDict_SetItemString(d,"wxEVT_NC_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_NC_ENTER_WINDOW)); | |
2866 | PyDict_SetItemString(d,"wxEVT_NC_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_NC_LEAVE_WINDOW)); | |
2867 | PyDict_SetItemString(d,"wxEVT_NC_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_NC_LEFT_DCLICK)); | |
2868 | PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DCLICK)); | |
2869 | PyDict_SetItemString(d,"wxEVT_NC_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_NC_RIGHT_DCLICK)); | |
2870 | PyDict_SetItemString(d,"wxEVT_CHAR", PyInt_FromLong((long) wxEVT_CHAR)); | |
8bf5d46e RD |
2871 | PyDict_SetItemString(d,"wxEVT_KEY_DOWN", PyInt_FromLong((long) wxEVT_KEY_DOWN)); |
2872 | PyDict_SetItemString(d,"wxEVT_KEY_UP", PyInt_FromLong((long) wxEVT_KEY_UP)); | |
2873 | PyDict_SetItemString(d,"wxEVT_CHAR_HOOK", PyInt_FromLong((long) wxEVT_CHAR_HOOK)); | |
8ab979d7 RD |
2874 | PyDict_SetItemString(d,"wxEVT_SCROLL_TOP", PyInt_FromLong((long) wxEVT_SCROLL_TOP)); |
2875 | PyDict_SetItemString(d,"wxEVT_SCROLL_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLL_BOTTOM)); | |
2876 | PyDict_SetItemString(d,"wxEVT_SCROLL_LINEUP", PyInt_FromLong((long) wxEVT_SCROLL_LINEUP)); | |
2877 | PyDict_SetItemString(d,"wxEVT_SCROLL_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_LINEDOWN)); | |
2878 | PyDict_SetItemString(d,"wxEVT_SCROLL_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLL_PAGEUP)); | |
2879 | PyDict_SetItemString(d,"wxEVT_SCROLL_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_PAGEDOWN)); | |
2880 | PyDict_SetItemString(d,"wxEVT_SCROLL_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLL_THUMBTRACK)); | |
26b9cf27 | 2881 | PyDict_SetItemString(d,"wxEVT_SCROLL_THUMBRELEASE", PyInt_FromLong((long) wxEVT_SCROLL_THUMBRELEASE)); |
bb0054cd RD |
2882 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_TOP", PyInt_FromLong((long) wxEVT_SCROLLWIN_TOP)); |
2883 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLLWIN_BOTTOM)); | |
2884 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_LINEUP", PyInt_FromLong((long) wxEVT_SCROLLWIN_LINEUP)); | |
2885 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLLWIN_LINEDOWN)); | |
2886 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLLWIN_PAGEUP)); | |
2887 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLLWIN_PAGEDOWN)); | |
2888 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLLWIN_THUMBTRACK)); | |
26b9cf27 | 2889 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_THUMBRELEASE", PyInt_FromLong((long) wxEVT_SCROLLWIN_THUMBRELEASE)); |
8ab979d7 RD |
2890 | PyDict_SetItemString(d,"wxEVT_SIZE", PyInt_FromLong((long) wxEVT_SIZE)); |
2891 | PyDict_SetItemString(d,"wxEVT_MOVE", PyInt_FromLong((long) wxEVT_MOVE)); | |
2892 | PyDict_SetItemString(d,"wxEVT_CLOSE_WINDOW", PyInt_FromLong((long) wxEVT_CLOSE_WINDOW)); | |
2893 | PyDict_SetItemString(d,"wxEVT_END_SESSION", PyInt_FromLong((long) wxEVT_END_SESSION)); | |
2894 | PyDict_SetItemString(d,"wxEVT_QUERY_END_SESSION", PyInt_FromLong((long) wxEVT_QUERY_END_SESSION)); | |
2895 | PyDict_SetItemString(d,"wxEVT_ACTIVATE_APP", PyInt_FromLong((long) wxEVT_ACTIVATE_APP)); | |
2896 | PyDict_SetItemString(d,"wxEVT_POWER", PyInt_FromLong((long) wxEVT_POWER)); | |
8ab979d7 RD |
2897 | PyDict_SetItemString(d,"wxEVT_ACTIVATE", PyInt_FromLong((long) wxEVT_ACTIVATE)); |
2898 | PyDict_SetItemString(d,"wxEVT_CREATE", PyInt_FromLong((long) wxEVT_CREATE)); | |
2899 | PyDict_SetItemString(d,"wxEVT_DESTROY", PyInt_FromLong((long) wxEVT_DESTROY)); | |
2900 | PyDict_SetItemString(d,"wxEVT_SHOW", PyInt_FromLong((long) wxEVT_SHOW)); | |
2901 | PyDict_SetItemString(d,"wxEVT_ICONIZE", PyInt_FromLong((long) wxEVT_ICONIZE)); | |
2902 | PyDict_SetItemString(d,"wxEVT_MAXIMIZE", PyInt_FromLong((long) wxEVT_MAXIMIZE)); | |
2903 | PyDict_SetItemString(d,"wxEVT_MOUSE_CAPTURE_CHANGED", PyInt_FromLong((long) wxEVT_MOUSE_CAPTURE_CHANGED)); | |
2904 | PyDict_SetItemString(d,"wxEVT_PAINT", PyInt_FromLong((long) wxEVT_PAINT)); | |
2905 | PyDict_SetItemString(d,"wxEVT_ERASE_BACKGROUND", PyInt_FromLong((long) wxEVT_ERASE_BACKGROUND)); | |
2906 | PyDict_SetItemString(d,"wxEVT_NC_PAINT", PyInt_FromLong((long) wxEVT_NC_PAINT)); | |
2907 | PyDict_SetItemString(d,"wxEVT_PAINT_ICON", PyInt_FromLong((long) wxEVT_PAINT_ICON)); | |
2908 | PyDict_SetItemString(d,"wxEVT_MENU_CHAR", PyInt_FromLong((long) wxEVT_MENU_CHAR)); | |
2909 | PyDict_SetItemString(d,"wxEVT_MENU_INIT", PyInt_FromLong((long) wxEVT_MENU_INIT)); | |
2910 | PyDict_SetItemString(d,"wxEVT_MENU_HIGHLIGHT", PyInt_FromLong((long) wxEVT_MENU_HIGHLIGHT)); | |
2911 | PyDict_SetItemString(d,"wxEVT_POPUP_MENU_INIT", PyInt_FromLong((long) wxEVT_POPUP_MENU_INIT)); | |
2912 | PyDict_SetItemString(d,"wxEVT_CONTEXT_MENU", PyInt_FromLong((long) wxEVT_CONTEXT_MENU)); | |
2913 | PyDict_SetItemString(d,"wxEVT_SYS_COLOUR_CHANGED", PyInt_FromLong((long) wxEVT_SYS_COLOUR_CHANGED)); | |
2914 | PyDict_SetItemString(d,"wxEVT_SETTING_CHANGED", PyInt_FromLong((long) wxEVT_SETTING_CHANGED)); | |
2915 | PyDict_SetItemString(d,"wxEVT_QUERY_NEW_PALETTE", PyInt_FromLong((long) wxEVT_QUERY_NEW_PALETTE)); | |
2916 | PyDict_SetItemString(d,"wxEVT_PALETTE_CHANGED", PyInt_FromLong((long) wxEVT_PALETTE_CHANGED)); | |
2917 | PyDict_SetItemString(d,"wxEVT_JOY_BUTTON_DOWN", PyInt_FromLong((long) wxEVT_JOY_BUTTON_DOWN)); | |
2918 | PyDict_SetItemString(d,"wxEVT_JOY_BUTTON_UP", PyInt_FromLong((long) wxEVT_JOY_BUTTON_UP)); | |
2919 | PyDict_SetItemString(d,"wxEVT_JOY_MOVE", PyInt_FromLong((long) wxEVT_JOY_MOVE)); | |
2920 | PyDict_SetItemString(d,"wxEVT_JOY_ZMOVE", PyInt_FromLong((long) wxEVT_JOY_ZMOVE)); | |
2921 | PyDict_SetItemString(d,"wxEVT_DROP_FILES", PyInt_FromLong((long) wxEVT_DROP_FILES)); | |
2922 | PyDict_SetItemString(d,"wxEVT_DRAW_ITEM", PyInt_FromLong((long) wxEVT_DRAW_ITEM)); | |
2923 | PyDict_SetItemString(d,"wxEVT_MEASURE_ITEM", PyInt_FromLong((long) wxEVT_MEASURE_ITEM)); | |
2924 | PyDict_SetItemString(d,"wxEVT_COMPARE_ITEM", PyInt_FromLong((long) wxEVT_COMPARE_ITEM)); | |
2925 | PyDict_SetItemString(d,"wxEVT_INIT_DIALOG", PyInt_FromLong((long) wxEVT_INIT_DIALOG)); | |
2926 | PyDict_SetItemString(d,"wxEVT_IDLE", PyInt_FromLong((long) wxEVT_IDLE)); | |
2927 | PyDict_SetItemString(d,"wxEVT_UPDATE_UI", PyInt_FromLong((long) wxEVT_UPDATE_UI)); | |
2928 | PyDict_SetItemString(d,"wxEVT_COMMAND_LEFT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_CLICK)); | |
2929 | PyDict_SetItemString(d,"wxEVT_COMMAND_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_DCLICK)); | |
2930 | PyDict_SetItemString(d,"wxEVT_COMMAND_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_CLICK)); | |
2931 | PyDict_SetItemString(d,"wxEVT_COMMAND_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_DCLICK)); | |
2932 | PyDict_SetItemString(d,"wxEVT_COMMAND_SET_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_SET_FOCUS)); | |
2933 | PyDict_SetItemString(d,"wxEVT_COMMAND_KILL_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_KILL_FOCUS)); | |
2934 | PyDict_SetItemString(d,"wxEVT_COMMAND_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_ENTER)); | |
2935 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_DRAG)); | |
2936 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_RDRAG)); | |
2937 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT)); | |
2938 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_END_LABEL_EDIT)); | |
2939 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_TREE_DELETE_ITEM)); | |
2940 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_GET_INFO)); | |
2941 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SET_INFO)); | |
2942 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDED)); | |
2943 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDING)); | |
630d84f2 RD |
2944 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSED)); |
2945 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSING)); | |
8ab979d7 RD |
2946 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED)); |
2947 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING)); | |
2948 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN)); | |
2abc0a0f RD |
2949 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_ACTIVATED)); |
2950 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK)); | |
2951 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK)); | |
8ab979d7 RD |
2952 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG)); |
2953 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG)); | |
2954 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT)); | |
2955 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_END_LABEL_EDIT)); | |
2956 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ITEM)); | |
2957 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS)); | |
2958 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_GET_INFO)); | |
2959 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_SET_INFO)); | |
2960 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_SELECTED)); | |
2961 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_DESELECTED)); | |
2962 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_LIST_KEY_DOWN)); | |
2963 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_INSERT_ITEM)); | |
2964 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_CLICK)); | |
bb0054cd | 2965 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_ACTIVATED)); |
2f90df85 RD |
2966 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK)); |
2967 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK)); | |
8ab979d7 RD |
2968 | PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGED)); |
2969 | PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGING)); | |
2970 | PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)); | |
2971 | PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)); | |
bb0054cd RD |
2972 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING)); |
2973 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED)); | |
2974 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_UNSPLIT", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_UNSPLIT)); | |
2975 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_DOUBLECLICKED)); | |
2f90df85 | 2976 | PyDict_SetItemString(d,"wxEVT_NAVIGATION_KEY", PyInt_FromLong((long) wxEVT_NAVIGATION_KEY)); |
f6bcfd97 | 2977 | PyDict_SetItemString(d,"wxEVT_TIMER", PyInt_FromLong((long) wxEVT_TIMER)); |
c368d904 | 2978 | PyDict_SetItemString(d,"wxEVT_END_PROCESS", PyInt_FromLong((long) wxEVT_END_PROCESS)); |
2f90df85 | 2979 | PyDict_SetItemString(d,"__version__", PyString_FromString("0.0.0")); |
8ab979d7 RD |
2980 | PyDict_SetItemString(d,"cvar", SWIG_globals); |
2981 | SWIG_addvarlink(SWIG_globals,"wxPyDefaultPosition",_wrap_wxPyDefaultPosition_get, _wrap_wxPyDefaultPosition_set); | |
2982 | SWIG_addvarlink(SWIG_globals,"wxPyDefaultSize",_wrap_wxPyDefaultSize_get, _wrap_wxPyDefaultSize_set); | |
2983 | ||
8ab979d7 | 2984 | |
9c039d08 | 2985 | __wxPreStart(); // initialize the GUI toolkit, if needed. |
8ab979d7 | 2986 | |
8ab979d7 RD |
2987 | |
2988 | // Since these modules are all linked together, initialize them now | |
f6bcfd97 | 2989 | // because Python won't be able to find their shared library files, |
8ab979d7 RD |
2990 | // (since there isn't any.) |
2991 | initwindowsc(); | |
2992 | initwindows2c(); | |
2993 | initeventsc(); | |
2994 | initmiscc(); | |
bb0054cd | 2995 | initmisc2c(); |
8ab979d7 RD |
2996 | initgdic(); |
2997 | initmdic(); | |
2998 | initcontrolsc(); | |
2999 | initcontrols2c(); | |
3000 | initcmndlgsc(); | |
9c039d08 RD |
3001 | initstattoolc(); |
3002 | initframesc(); | |
08127323 | 3003 | initwindows3c(); |
cf694132 | 3004 | initimagec(); |
bb0054cd | 3005 | initprintfwc(); |
2f90df85 | 3006 | initsizersc(); |
b1462dfa | 3007 | initclip_dndc(); |
c368d904 RD |
3008 | initstreamsc(); |
3009 | initfilesysc(); | |
f6bcfd97 BP |
3010 | |
3011 | initgridc(); | |
3012 | initutilsc(); | |
3013 | inithtmlc(); | |
3014 | inithtmlhelpc(); | |
3015 | initcalendarc(); | |
c368d904 RD |
3016 | |
3017 | initglcanvasc(); | |
3018 | initoglc(); | |
3019 | initstc_c(); | |
1d99702e RD |
3020 | { |
3021 | int i; | |
3022 | for (i = 0; _swig_mapping[i].n1; i++) | |
3023 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
3024 | } | |
8ab979d7 | 3025 | } |