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