]>
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 | 617 | void wxApp_CleanUp() { |
7ece89c6 | 618 | __wxCleanup(); |
b1462dfa | 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(); |
f6bcfd97 BP |
638 | extern "C" SWIGEXPORT(void) initgridc(); |
639 | extern "C" SWIGEXPORT(void) initutilsc(); | |
640 | extern "C" SWIGEXPORT(void) inithtmlc(); | |
641 | extern "C" SWIGEXPORT(void) inithtmlhelpc(); | |
642 | extern "C" SWIGEXPORT(void) initcalendarc(); | |
1d99702e RD |
643 | #ifdef __cplusplus |
644 | extern "C" { | |
0699c864 | 645 | #endif |
efc5f224 | 646 | static PyObject *_wrap_ptrcast(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
647 | PyObject * _resultobj; |
648 | PyObject * _result; | |
649 | PyObject * _arg0; | |
650 | char * _arg1; | |
651 | PyObject * _obj0 = 0; | |
efc5f224 | 652 | char *_kwnames[] = { "ptr","type", NULL }; |
8bf5d46e RD |
653 | |
654 | self = self; | |
efc5f224 | 655 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Os:ptrcast",_kwnames,&_obj0,&_arg1)) |
8bf5d46e RD |
656 | return NULL; |
657 | { | |
658 | _arg0 = _obj0; | |
659 | } | |
660 | { | |
661 | wxPy_BEGIN_ALLOW_THREADS; | |
662 | _result = (PyObject *)ptrcast(_arg0,_arg1); | |
663 | ||
664 | wxPy_END_ALLOW_THREADS; | |
665 | }{ | |
666 | _resultobj = _result; | |
667 | } | |
668 | return _resultobj; | |
669 | } | |
670 | ||
efc5f224 | 671 | static PyObject *_wrap_ptrvalue(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
672 | PyObject * _resultobj; |
673 | PyObject * _result; | |
674 | PyObject * _arg0; | |
1d99702e RD |
675 | int _arg1 = (int ) 0; |
676 | char * _arg2 = (char *) 0; | |
8bf5d46e | 677 | PyObject * _obj0 = 0; |
efc5f224 | 678 | char *_kwnames[] = { "ptr","index","type", NULL }; |
8bf5d46e RD |
679 | |
680 | self = self; | |
efc5f224 | 681 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|is:ptrvalue",_kwnames,&_obj0,&_arg1,&_arg2)) |
8bf5d46e RD |
682 | return NULL; |
683 | { | |
684 | _arg0 = _obj0; | |
685 | } | |
686 | { | |
687 | wxPy_BEGIN_ALLOW_THREADS; | |
688 | _result = (PyObject *)ptrvalue(_arg0,_arg1,_arg2); | |
689 | ||
690 | wxPy_END_ALLOW_THREADS; | |
691 | }{ | |
692 | _resultobj = _result; | |
693 | } | |
694 | return _resultobj; | |
695 | } | |
696 | ||
efc5f224 | 697 | static PyObject *_wrap_ptrset(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
698 | PyObject * _resultobj; |
699 | PyObject * _result; | |
700 | PyObject * _arg0; | |
701 | PyObject * _arg1; | |
1d99702e RD |
702 | int _arg2 = (int ) 0; |
703 | char * _arg3 = (char *) 0; | |
8bf5d46e RD |
704 | PyObject * _obj0 = 0; |
705 | PyObject * _obj1 = 0; | |
efc5f224 | 706 | char *_kwnames[] = { "ptr","value","index","type", NULL }; |
8bf5d46e RD |
707 | |
708 | self = self; | |
efc5f224 | 709 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|is:ptrset",_kwnames,&_obj0,&_obj1,&_arg2,&_arg3)) |
8bf5d46e RD |
710 | return NULL; |
711 | { | |
712 | _arg0 = _obj0; | |
713 | } | |
714 | { | |
715 | _arg1 = _obj1; | |
716 | } | |
717 | { | |
718 | wxPy_BEGIN_ALLOW_THREADS; | |
719 | _result = (PyObject *)ptrset(_arg0,_arg1,_arg2,_arg3); | |
720 | ||
721 | wxPy_END_ALLOW_THREADS; | |
722 | }{ | |
723 | _resultobj = _result; | |
724 | } | |
725 | return _resultobj; | |
726 | } | |
727 | ||
efc5f224 | 728 | static PyObject *_wrap_ptrcreate(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
729 | PyObject * _resultobj; |
730 | PyObject * _result; | |
731 | char * _arg0; | |
1d99702e RD |
732 | PyObject * _arg1 = (PyObject *) 0; |
733 | int _arg2 = (int ) 1; | |
8bf5d46e | 734 | PyObject * _obj1 = 0; |
efc5f224 | 735 | char *_kwnames[] = { "type","value","nitems", NULL }; |
8bf5d46e RD |
736 | |
737 | self = self; | |
efc5f224 | 738 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"s|Oi:ptrcreate",_kwnames,&_arg0,&_obj1,&_arg2)) |
8bf5d46e RD |
739 | return NULL; |
740 | if (_obj1) | |
741 | { | |
742 | _arg1 = _obj1; | |
743 | } | |
744 | { | |
745 | wxPy_BEGIN_ALLOW_THREADS; | |
746 | _result = (PyObject *)ptrcreate(_arg0,_arg1,_arg2); | |
747 | ||
748 | wxPy_END_ALLOW_THREADS; | |
749 | }{ | |
750 | _resultobj = _result; | |
751 | } | |
752 | return _resultobj; | |
753 | } | |
754 | ||
efc5f224 | 755 | static PyObject *_wrap_ptrfree(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
756 | PyObject * _resultobj; |
757 | PyObject * _result; | |
758 | PyObject * _arg0; | |
759 | PyObject * _obj0 = 0; | |
efc5f224 | 760 | char *_kwnames[] = { "ptr", NULL }; |
8bf5d46e RD |
761 | |
762 | self = self; | |
efc5f224 | 763 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:ptrfree",_kwnames,&_obj0)) |
8bf5d46e RD |
764 | return NULL; |
765 | { | |
766 | _arg0 = _obj0; | |
767 | } | |
768 | { | |
769 | wxPy_BEGIN_ALLOW_THREADS; | |
770 | _result = (PyObject *)ptrfree(_arg0); | |
771 | ||
772 | wxPy_END_ALLOW_THREADS; | |
773 | }{ | |
774 | _resultobj = _result; | |
775 | } | |
776 | return _resultobj; | |
777 | } | |
778 | ||
efc5f224 | 779 | static PyObject *_wrap_ptradd(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
780 | PyObject * _resultobj; |
781 | PyObject * _result; | |
782 | PyObject * _arg0; | |
783 | int _arg1; | |
784 | PyObject * _obj0 = 0; | |
efc5f224 | 785 | char *_kwnames[] = { "ptr","offset", NULL }; |
8bf5d46e RD |
786 | |
787 | self = self; | |
efc5f224 | 788 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:ptradd",_kwnames,&_obj0,&_arg1)) |
8bf5d46e RD |
789 | return NULL; |
790 | { | |
791 | _arg0 = _obj0; | |
792 | } | |
793 | { | |
794 | wxPy_BEGIN_ALLOW_THREADS; | |
795 | _result = (PyObject *)ptradd(_arg0,_arg1); | |
796 | ||
797 | wxPy_END_ALLOW_THREADS; | |
798 | }{ | |
799 | _resultobj = _result; | |
800 | } | |
801 | return _resultobj; | |
802 | } | |
803 | ||
efc5f224 | 804 | static PyObject *_wrap_ptrmap(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
805 | PyObject * _resultobj; |
806 | char * _arg0; | |
807 | char * _arg1; | |
efc5f224 | 808 | char *_kwnames[] = { "type1","type2", NULL }; |
8bf5d46e RD |
809 | |
810 | self = self; | |
efc5f224 | 811 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"ss:ptrmap",_kwnames,&_arg0,&_arg1)) |
8bf5d46e RD |
812 | return NULL; |
813 | { | |
814 | wxPy_BEGIN_ALLOW_THREADS; | |
815 | ptrmap(_arg0,_arg1); | |
816 | ||
817 | wxPy_END_ALLOW_THREADS; | |
818 | } Py_INCREF(Py_None); | |
819 | _resultobj = Py_None; | |
820 | return _resultobj; | |
821 | } | |
822 | ||
8ab979d7 | 823 | static int _wrap_wxPyDefaultPosition_set(PyObject *val) { |
0699c864 | 824 | wxPoint * temp; |
8ab979d7 | 825 | |
1d99702e RD |
826 | if (val) { |
827 | if (val == Py_None) { temp = NULL; } | |
828 | else if (SWIG_GetPtrObj(val,(void **) &temp,"_wxPoint_p")) { | |
0699c864 RD |
829 | PyErr_SetString(PyExc_TypeError,"Type error in value of wxPyDefaultPosition. Expected _wxPoint_p."); |
830 | return 1; | |
831 | } | |
832 | } | |
833 | wxPyDefaultPosition = *temp; | |
834 | return 0; | |
8ab979d7 RD |
835 | } |
836 | ||
837 | static PyObject *_wrap_wxPyDefaultPosition_get() { | |
838 | PyObject * pyobj; | |
839 | char ptemp[128]; | |
840 | ||
841 | SWIG_MakePtr(ptemp,(char *) &wxPyDefaultPosition,"_wxPoint_p"); | |
842 | pyobj = PyString_FromString(ptemp); | |
843 | return pyobj; | |
844 | } | |
845 | ||
846 | static int _wrap_wxPyDefaultSize_set(PyObject *val) { | |
0699c864 | 847 | wxSize * temp; |
8ab979d7 | 848 | |
1d99702e RD |
849 | if (val) { |
850 | if (val == Py_None) { temp = NULL; } | |
851 | else if (SWIG_GetPtrObj(val,(void **) &temp,"_wxSize_p")) { | |
0699c864 RD |
852 | PyErr_SetString(PyExc_TypeError,"Type error in value of wxPyDefaultSize. Expected _wxSize_p."); |
853 | return 1; | |
854 | } | |
855 | } | |
856 | wxPyDefaultSize = *temp; | |
857 | return 0; | |
8ab979d7 RD |
858 | } |
859 | ||
860 | static PyObject *_wrap_wxPyDefaultSize_get() { | |
861 | PyObject * pyobj; | |
862 | char ptemp[128]; | |
863 | ||
864 | SWIG_MakePtr(ptemp,(char *) &wxPyDefaultSize,"_wxSize_p"); | |
865 | pyobj = PyString_FromString(ptemp); | |
866 | return pyobj; | |
867 | } | |
868 | ||
b1462dfa RD |
869 | static PyObject *_wrap_wxApp_CleanUp(PyObject *self, PyObject *args, PyObject *kwargs) { |
870 | PyObject * _resultobj; | |
871 | char *_kwnames[] = { NULL }; | |
872 | ||
873 | self = self; | |
874 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxApp_CleanUp",_kwnames)) | |
875 | return NULL; | |
876 | { | |
877 | wxPy_BEGIN_ALLOW_THREADS; | |
878 | wxApp_CleanUp(); | |
879 | ||
880 | wxPy_END_ALLOW_THREADS; | |
881 | } Py_INCREF(Py_None); | |
882 | _resultobj = Py_None; | |
883 | return _resultobj; | |
884 | } | |
885 | ||
8ab979d7 RD |
886 | static void *SwigwxPyAppTowxEvtHandler(void *ptr) { |
887 | wxPyApp *src; | |
888 | wxEvtHandler *dest; | |
889 | src = (wxPyApp *) ptr; | |
890 | dest = (wxEvtHandler *) src; | |
891 | return (void *) dest; | |
892 | } | |
893 | ||
894 | static wxPyApp *new_wxPyApp() { | |
895 | wxPythonApp = new wxPyApp(); | |
896 | return wxPythonApp; | |
897 | } | |
898 | ||
efc5f224 | 899 | static PyObject *_wrap_new_wxPyApp(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
900 | PyObject * _resultobj; |
901 | wxPyApp * _result; | |
efc5f224 | 902 | char *_kwnames[] = { NULL }; |
8ab979d7 RD |
903 | char _ptemp[128]; |
904 | ||
905 | self = self; | |
efc5f224 | 906 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPyApp",_kwnames)) |
8ab979d7 | 907 | return NULL; |
cf694132 RD |
908 | { |
909 | wxPy_BEGIN_ALLOW_THREADS; | |
910 | _result = (wxPyApp *)new_wxPyApp(); | |
911 | ||
912 | wxPy_END_ALLOW_THREADS; | |
1d99702e RD |
913 | } if (_result) { |
914 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyApp_p"); | |
915 | _resultobj = Py_BuildValue("s",_ptemp); | |
916 | } else { | |
917 | Py_INCREF(Py_None); | |
918 | _resultobj = Py_None; | |
919 | } | |
8ab979d7 RD |
920 | return _resultobj; |
921 | } | |
922 | ||
8bf5d46e | 923 | #define delete_wxPyApp(_swigobj) (delete _swigobj) |
efc5f224 | 924 | static PyObject *_wrap_delete_wxPyApp(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
925 | PyObject * _resultobj; |
926 | wxPyApp * _arg0; | |
1d99702e | 927 | PyObject * _argo0 = 0; |
efc5f224 | 928 | char *_kwnames[] = { "self", NULL }; |
8bf5d46e RD |
929 | |
930 | self = self; | |
efc5f224 | 931 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPyApp",_kwnames,&_argo0)) |
8bf5d46e | 932 | return NULL; |
1d99702e RD |
933 | if (_argo0) { |
934 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
935 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8bf5d46e RD |
936 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPyApp. Expected _wxPyApp_p."); |
937 | return NULL; | |
938 | } | |
939 | } | |
940 | { | |
941 | wxPy_BEGIN_ALLOW_THREADS; | |
942 | delete_wxPyApp(_arg0); | |
943 | ||
944 | wxPy_END_ALLOW_THREADS; | |
945 | } Py_INCREF(Py_None); | |
946 | _resultobj = Py_None; | |
947 | return _resultobj; | |
948 | } | |
949 | ||
8ab979d7 | 950 | #define wxPyApp_GetAppName(_swigobj) (_swigobj->GetAppName()) |
efc5f224 | 951 | static PyObject *_wrap_wxPyApp_GetAppName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
952 | PyObject * _resultobj; |
953 | wxString * _result; | |
954 | wxPyApp * _arg0; | |
1d99702e | 955 | PyObject * _argo0 = 0; |
efc5f224 | 956 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
957 | |
958 | self = self; | |
efc5f224 | 959 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetAppName",_kwnames,&_argo0)) |
8ab979d7 | 960 | return NULL; |
1d99702e RD |
961 | if (_argo0) { |
962 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
963 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
964 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetAppName. Expected _wxPyApp_p."); |
965 | return NULL; | |
966 | } | |
967 | } | |
8ab979d7 | 968 | { |
cf694132 RD |
969 | wxPy_BEGIN_ALLOW_THREADS; |
970 | _result = new wxString (wxPyApp_GetAppName(_arg0)); | |
971 | ||
972 | wxPy_END_ALLOW_THREADS; | |
973 | }{ | |
eec92d76 | 974 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
975 | } |
976 | { | |
977 | delete _result; | |
978 | } | |
979 | return _resultobj; | |
980 | } | |
981 | ||
982 | #define wxPyApp_GetAuto3D(_swigobj) (_swigobj->GetAuto3D()) | |
efc5f224 | 983 | static PyObject *_wrap_wxPyApp_GetAuto3D(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
984 | PyObject * _resultobj; |
985 | bool _result; | |
986 | wxPyApp * _arg0; | |
1d99702e | 987 | PyObject * _argo0 = 0; |
efc5f224 | 988 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
989 | |
990 | self = self; | |
efc5f224 | 991 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetAuto3D",_kwnames,&_argo0)) |
8ab979d7 | 992 | return NULL; |
1d99702e RD |
993 | if (_argo0) { |
994 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
995 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
996 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetAuto3D. Expected _wxPyApp_p."); |
997 | return NULL; | |
998 | } | |
999 | } | |
cf694132 RD |
1000 | { |
1001 | wxPy_BEGIN_ALLOW_THREADS; | |
1002 | _result = (bool )wxPyApp_GetAuto3D(_arg0); | |
1003 | ||
1004 | wxPy_END_ALLOW_THREADS; | |
1005 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1006 | return _resultobj; |
1007 | } | |
1008 | ||
1009 | #define wxPyApp_GetClassName(_swigobj) (_swigobj->GetClassName()) | |
efc5f224 | 1010 | static PyObject *_wrap_wxPyApp_GetClassName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1011 | PyObject * _resultobj; |
1012 | wxString * _result; | |
1013 | wxPyApp * _arg0; | |
1d99702e | 1014 | PyObject * _argo0 = 0; |
efc5f224 | 1015 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1016 | |
1017 | self = self; | |
efc5f224 | 1018 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetClassName",_kwnames,&_argo0)) |
8ab979d7 | 1019 | return NULL; |
1d99702e RD |
1020 | if (_argo0) { |
1021 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1022 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1023 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetClassName. Expected _wxPyApp_p."); |
1024 | return NULL; | |
1025 | } | |
1026 | } | |
8ab979d7 | 1027 | { |
cf694132 RD |
1028 | wxPy_BEGIN_ALLOW_THREADS; |
1029 | _result = new wxString (wxPyApp_GetClassName(_arg0)); | |
1030 | ||
1031 | wxPy_END_ALLOW_THREADS; | |
1032 | }{ | |
eec92d76 | 1033 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
1034 | } |
1035 | { | |
1036 | delete _result; | |
1037 | } | |
1038 | return _resultobj; | |
1039 | } | |
1040 | ||
1041 | #define wxPyApp_GetExitOnFrameDelete(_swigobj) (_swigobj->GetExitOnFrameDelete()) | |
efc5f224 | 1042 | static PyObject *_wrap_wxPyApp_GetExitOnFrameDelete(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1043 | PyObject * _resultobj; |
1044 | bool _result; | |
1045 | wxPyApp * _arg0; | |
1d99702e | 1046 | PyObject * _argo0 = 0; |
efc5f224 | 1047 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1048 | |
1049 | self = self; | |
efc5f224 | 1050 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetExitOnFrameDelete",_kwnames,&_argo0)) |
8ab979d7 | 1051 | return NULL; |
1d99702e RD |
1052 | if (_argo0) { |
1053 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1054 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1055 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetExitOnFrameDelete. Expected _wxPyApp_p."); |
1056 | return NULL; | |
1057 | } | |
1058 | } | |
cf694132 RD |
1059 | { |
1060 | wxPy_BEGIN_ALLOW_THREADS; | |
1061 | _result = (bool )wxPyApp_GetExitOnFrameDelete(_arg0); | |
1062 | ||
1063 | wxPy_END_ALLOW_THREADS; | |
1064 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1065 | return _resultobj; |
1066 | } | |
1067 | ||
1068 | #define wxPyApp_GetPrintMode(_swigobj) (_swigobj->GetPrintMode()) | |
efc5f224 | 1069 | static PyObject *_wrap_wxPyApp_GetPrintMode(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1070 | PyObject * _resultobj; |
1071 | int _result; | |
1072 | wxPyApp * _arg0; | |
1d99702e | 1073 | PyObject * _argo0 = 0; |
efc5f224 | 1074 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1075 | |
1076 | self = self; | |
efc5f224 | 1077 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetPrintMode",_kwnames,&_argo0)) |
8ab979d7 | 1078 | return NULL; |
1d99702e RD |
1079 | if (_argo0) { |
1080 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1081 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1082 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetPrintMode. Expected _wxPyApp_p."); |
1083 | return NULL; | |
1084 | } | |
1085 | } | |
cf694132 RD |
1086 | { |
1087 | wxPy_BEGIN_ALLOW_THREADS; | |
1088 | _result = (int )wxPyApp_GetPrintMode(_arg0); | |
1089 | ||
1090 | wxPy_END_ALLOW_THREADS; | |
1091 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1092 | return _resultobj; |
1093 | } | |
1094 | ||
1095 | #define wxPyApp_GetTopWindow(_swigobj) (_swigobj->GetTopWindow()) | |
efc5f224 | 1096 | static PyObject *_wrap_wxPyApp_GetTopWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1097 | PyObject * _resultobj; |
1098 | wxWindow * _result; | |
1099 | wxPyApp * _arg0; | |
1d99702e | 1100 | PyObject * _argo0 = 0; |
efc5f224 | 1101 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1102 | char _ptemp[128]; |
1103 | ||
1104 | self = self; | |
efc5f224 | 1105 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetTopWindow",_kwnames,&_argo0)) |
8ab979d7 | 1106 | return NULL; |
1d99702e RD |
1107 | if (_argo0) { |
1108 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1109 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1110 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetTopWindow. Expected _wxPyApp_p."); |
1111 | return NULL; | |
1112 | } | |
1113 | } | |
cf694132 RD |
1114 | { |
1115 | wxPy_BEGIN_ALLOW_THREADS; | |
1116 | _result = (wxWindow *)wxPyApp_GetTopWindow(_arg0); | |
1117 | ||
1118 | wxPy_END_ALLOW_THREADS; | |
1d99702e RD |
1119 | } if (_result) { |
1120 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
1121 | _resultobj = Py_BuildValue("s",_ptemp); | |
1122 | } else { | |
1123 | Py_INCREF(Py_None); | |
1124 | _resultobj = Py_None; | |
1125 | } | |
8ab979d7 RD |
1126 | return _resultobj; |
1127 | } | |
1128 | ||
1129 | #define wxPyApp_GetVendorName(_swigobj) (_swigobj->GetVendorName()) | |
efc5f224 | 1130 | static PyObject *_wrap_wxPyApp_GetVendorName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1131 | PyObject * _resultobj; |
1132 | wxString * _result; | |
1133 | wxPyApp * _arg0; | |
1d99702e | 1134 | PyObject * _argo0 = 0; |
efc5f224 | 1135 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1136 | |
1137 | self = self; | |
efc5f224 | 1138 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetVendorName",_kwnames,&_argo0)) |
8ab979d7 | 1139 | return NULL; |
1d99702e RD |
1140 | if (_argo0) { |
1141 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1142 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1143 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetVendorName. Expected _wxPyApp_p."); |
1144 | return NULL; | |
1145 | } | |
1146 | } | |
8ab979d7 | 1147 | { |
cf694132 RD |
1148 | wxPy_BEGIN_ALLOW_THREADS; |
1149 | _result = new wxString (wxPyApp_GetVendorName(_arg0)); | |
1150 | ||
1151 | wxPy_END_ALLOW_THREADS; | |
1152 | }{ | |
eec92d76 | 1153 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
8ab979d7 RD |
1154 | } |
1155 | { | |
1156 | delete _result; | |
1157 | } | |
1158 | return _resultobj; | |
1159 | } | |
1160 | ||
f6bcfd97 BP |
1161 | #define wxPyApp_GetUseBestVisual(_swigobj) (_swigobj->GetUseBestVisual()) |
1162 | static PyObject *_wrap_wxPyApp_GetUseBestVisual(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1163 | PyObject * _resultobj; | |
1164 | bool _result; | |
1165 | wxPyApp * _arg0; | |
1166 | PyObject * _argo0 = 0; | |
1167 | char *_kwnames[] = { "self", NULL }; | |
1168 | ||
1169 | self = self; | |
1170 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_GetUseBestVisual",_kwnames,&_argo0)) | |
1171 | return NULL; | |
1172 | if (_argo0) { | |
1173 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1174 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
1175 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetUseBestVisual. Expected _wxPyApp_p."); | |
1176 | return NULL; | |
1177 | } | |
1178 | } | |
1179 | { | |
1180 | wxPy_BEGIN_ALLOW_THREADS; | |
1181 | _result = (bool )wxPyApp_GetUseBestVisual(_arg0); | |
1182 | ||
1183 | wxPy_END_ALLOW_THREADS; | |
1184 | } _resultobj = Py_BuildValue("i",_result); | |
1185 | return _resultobj; | |
1186 | } | |
1187 | ||
8ab979d7 | 1188 | #define wxPyApp_Dispatch(_swigobj) (_swigobj->Dispatch()) |
efc5f224 | 1189 | static PyObject *_wrap_wxPyApp_Dispatch(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1190 | PyObject * _resultobj; |
1191 | wxPyApp * _arg0; | |
1d99702e | 1192 | PyObject * _argo0 = 0; |
efc5f224 | 1193 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1194 | |
1195 | self = self; | |
efc5f224 | 1196 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_Dispatch",_kwnames,&_argo0)) |
8ab979d7 | 1197 | return NULL; |
1d99702e RD |
1198 | if (_argo0) { |
1199 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1200 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1201 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Dispatch. Expected _wxPyApp_p."); |
1202 | return NULL; | |
1203 | } | |
1204 | } | |
cf694132 RD |
1205 | { |
1206 | wxPy_BEGIN_ALLOW_THREADS; | |
1207 | wxPyApp_Dispatch(_arg0); | |
1208 | ||
1209 | wxPy_END_ALLOW_THREADS; | |
1210 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1211 | _resultobj = Py_None; |
1212 | return _resultobj; | |
1213 | } | |
1214 | ||
1215 | #define wxPyApp_ExitMainLoop(_swigobj) (_swigobj->ExitMainLoop()) | |
efc5f224 | 1216 | static PyObject *_wrap_wxPyApp_ExitMainLoop(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1217 | PyObject * _resultobj; |
1218 | wxPyApp * _arg0; | |
1d99702e | 1219 | PyObject * _argo0 = 0; |
efc5f224 | 1220 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1221 | |
1222 | self = self; | |
efc5f224 | 1223 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_ExitMainLoop",_kwnames,&_argo0)) |
8ab979d7 | 1224 | return NULL; |
1d99702e RD |
1225 | if (_argo0) { |
1226 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1227 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1228 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_ExitMainLoop. Expected _wxPyApp_p."); |
1229 | return NULL; | |
1230 | } | |
1231 | } | |
cf694132 RD |
1232 | { |
1233 | wxPy_BEGIN_ALLOW_THREADS; | |
1234 | wxPyApp_ExitMainLoop(_arg0); | |
1235 | ||
1236 | wxPy_END_ALLOW_THREADS; | |
1237 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1238 | _resultobj = Py_None; |
1239 | return _resultobj; | |
1240 | } | |
1241 | ||
1242 | #define wxPyApp_Initialized(_swigobj) (_swigobj->Initialized()) | |
efc5f224 | 1243 | static PyObject *_wrap_wxPyApp_Initialized(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1244 | PyObject * _resultobj; |
1245 | bool _result; | |
1246 | wxPyApp * _arg0; | |
1d99702e | 1247 | PyObject * _argo0 = 0; |
efc5f224 | 1248 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1249 | |
1250 | self = self; | |
efc5f224 | 1251 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_Initialized",_kwnames,&_argo0)) |
8ab979d7 | 1252 | return NULL; |
1d99702e RD |
1253 | if (_argo0) { |
1254 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1255 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1256 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Initialized. Expected _wxPyApp_p."); |
1257 | return NULL; | |
1258 | } | |
1259 | } | |
cf694132 RD |
1260 | { |
1261 | wxPy_BEGIN_ALLOW_THREADS; | |
1262 | _result = (bool )wxPyApp_Initialized(_arg0); | |
1263 | ||
1264 | wxPy_END_ALLOW_THREADS; | |
1265 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1266 | return _resultobj; |
1267 | } | |
1268 | ||
1269 | #define wxPyApp_MainLoop(_swigobj) (_swigobj->MainLoop()) | |
efc5f224 | 1270 | static PyObject *_wrap_wxPyApp_MainLoop(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1271 | PyObject * _resultobj; |
1272 | int _result; | |
1273 | wxPyApp * _arg0; | |
1d99702e | 1274 | PyObject * _argo0 = 0; |
efc5f224 | 1275 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1276 | |
1277 | self = self; | |
efc5f224 | 1278 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_MainLoop",_kwnames,&_argo0)) |
8ab979d7 | 1279 | return NULL; |
1d99702e RD |
1280 | if (_argo0) { |
1281 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1282 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1283 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_MainLoop. Expected _wxPyApp_p."); |
1284 | return NULL; | |
1285 | } | |
1286 | } | |
cf694132 RD |
1287 | { |
1288 | wxPy_BEGIN_ALLOW_THREADS; | |
1289 | _result = (int )wxPyApp_MainLoop(_arg0); | |
1290 | ||
1291 | wxPy_END_ALLOW_THREADS; | |
1292 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1293 | return _resultobj; |
1294 | } | |
1295 | ||
1296 | #define wxPyApp_Pending(_swigobj) (_swigobj->Pending()) | |
efc5f224 | 1297 | static PyObject *_wrap_wxPyApp_Pending(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1298 | PyObject * _resultobj; |
1299 | bool _result; | |
1300 | wxPyApp * _arg0; | |
1d99702e | 1301 | PyObject * _argo0 = 0; |
efc5f224 | 1302 | char *_kwnames[] = { "self", NULL }; |
8ab979d7 RD |
1303 | |
1304 | self = self; | |
efc5f224 | 1305 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_Pending",_kwnames,&_argo0)) |
8ab979d7 | 1306 | return NULL; |
1d99702e RD |
1307 | if (_argo0) { |
1308 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1309 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1310 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Pending. Expected _wxPyApp_p."); |
1311 | return NULL; | |
1312 | } | |
1313 | } | |
cf694132 RD |
1314 | { |
1315 | wxPy_BEGIN_ALLOW_THREADS; | |
1316 | _result = (bool )wxPyApp_Pending(_arg0); | |
1317 | ||
1318 | wxPy_END_ALLOW_THREADS; | |
1319 | } _resultobj = Py_BuildValue("i",_result); | |
8ab979d7 RD |
1320 | return _resultobj; |
1321 | } | |
1322 | ||
8bf5d46e | 1323 | #define wxPyApp_ProcessIdle(_swigobj) (_swigobj->ProcessIdle()) |
efc5f224 | 1324 | static PyObject *_wrap_wxPyApp_ProcessIdle(PyObject *self, PyObject *args, PyObject *kwargs) { |
8bf5d46e RD |
1325 | PyObject * _resultobj; |
1326 | bool _result; | |
1327 | wxPyApp * _arg0; | |
1d99702e | 1328 | PyObject * _argo0 = 0; |
efc5f224 | 1329 | char *_kwnames[] = { "self", NULL }; |
8bf5d46e RD |
1330 | |
1331 | self = self; | |
efc5f224 | 1332 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyApp_ProcessIdle",_kwnames,&_argo0)) |
8bf5d46e | 1333 | return NULL; |
1d99702e RD |
1334 | if (_argo0) { |
1335 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1336 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8bf5d46e RD |
1337 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_ProcessIdle. Expected _wxPyApp_p."); |
1338 | return NULL; | |
1339 | } | |
1340 | } | |
1341 | { | |
1342 | wxPy_BEGIN_ALLOW_THREADS; | |
1343 | _result = (bool )wxPyApp_ProcessIdle(_arg0); | |
1344 | ||
1345 | wxPy_END_ALLOW_THREADS; | |
1346 | } _resultobj = Py_BuildValue("i",_result); | |
1347 | return _resultobj; | |
1348 | } | |
1349 | ||
8ab979d7 | 1350 | #define wxPyApp_SetAppName(_swigobj,_swigarg0) (_swigobj->SetAppName(_swigarg0)) |
efc5f224 | 1351 | static PyObject *_wrap_wxPyApp_SetAppName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1352 | PyObject * _resultobj; |
1353 | wxPyApp * _arg0; | |
1354 | wxString * _arg1; | |
1d99702e | 1355 | PyObject * _argo0 = 0; |
8ab979d7 | 1356 | PyObject * _obj1 = 0; |
efc5f224 | 1357 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1358 | |
1359 | self = self; | |
efc5f224 | 1360 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetAppName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1361 | return NULL; |
1d99702e RD |
1362 | if (_argo0) { |
1363 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1364 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1365 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetAppName. Expected _wxPyApp_p."); |
1366 | return NULL; | |
1367 | } | |
1368 | } | |
1369 | { | |
1370 | if (!PyString_Check(_obj1)) { | |
1371 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1372 | return NULL; | |
1373 | } | |
cf694132 | 1374 | _arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1)); |
8ab979d7 | 1375 | } |
cf694132 RD |
1376 | { |
1377 | wxPy_BEGIN_ALLOW_THREADS; | |
1378 | wxPyApp_SetAppName(_arg0,*_arg1); | |
1379 | ||
1380 | wxPy_END_ALLOW_THREADS; | |
1381 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1382 | _resultobj = Py_None; |
1383 | { | |
1384 | if (_obj1) | |
1385 | delete _arg1; | |
1386 | } | |
1387 | return _resultobj; | |
1388 | } | |
1389 | ||
1390 | #define wxPyApp_SetAuto3D(_swigobj,_swigarg0) (_swigobj->SetAuto3D(_swigarg0)) | |
efc5f224 | 1391 | static PyObject *_wrap_wxPyApp_SetAuto3D(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1392 | PyObject * _resultobj; |
1393 | wxPyApp * _arg0; | |
1394 | bool _arg1; | |
1d99702e | 1395 | PyObject * _argo0 = 0; |
8ab979d7 | 1396 | int tempbool1; |
efc5f224 | 1397 | char *_kwnames[] = { "self","auto3D", NULL }; |
8ab979d7 RD |
1398 | |
1399 | self = self; | |
efc5f224 | 1400 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetAuto3D",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1401 | return NULL; |
1d99702e RD |
1402 | if (_argo0) { |
1403 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1404 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1405 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetAuto3D. Expected _wxPyApp_p."); |
1406 | return NULL; | |
1407 | } | |
1408 | } | |
1409 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
1410 | { |
1411 | wxPy_BEGIN_ALLOW_THREADS; | |
1412 | wxPyApp_SetAuto3D(_arg0,_arg1); | |
1413 | ||
1414 | wxPy_END_ALLOW_THREADS; | |
1415 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1416 | _resultobj = Py_None; |
1417 | return _resultobj; | |
1418 | } | |
1419 | ||
1420 | #define wxPyApp_SetClassName(_swigobj,_swigarg0) (_swigobj->SetClassName(_swigarg0)) | |
efc5f224 | 1421 | static PyObject *_wrap_wxPyApp_SetClassName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1422 | PyObject * _resultobj; |
1423 | wxPyApp * _arg0; | |
1424 | wxString * _arg1; | |
1d99702e | 1425 | PyObject * _argo0 = 0; |
8ab979d7 | 1426 | PyObject * _obj1 = 0; |
efc5f224 | 1427 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1428 | |
1429 | self = self; | |
efc5f224 | 1430 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetClassName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1431 | return NULL; |
1d99702e RD |
1432 | if (_argo0) { |
1433 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1434 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1435 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetClassName. Expected _wxPyApp_p."); |
1436 | return NULL; | |
1437 | } | |
1438 | } | |
1439 | { | |
1440 | if (!PyString_Check(_obj1)) { | |
1441 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1442 | return NULL; | |
1443 | } | |
cf694132 | 1444 | _arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1)); |
8ab979d7 | 1445 | } |
cf694132 RD |
1446 | { |
1447 | wxPy_BEGIN_ALLOW_THREADS; | |
1448 | wxPyApp_SetClassName(_arg0,*_arg1); | |
1449 | ||
1450 | wxPy_END_ALLOW_THREADS; | |
1451 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1452 | _resultobj = Py_None; |
1453 | { | |
1454 | if (_obj1) | |
1455 | delete _arg1; | |
1456 | } | |
1457 | return _resultobj; | |
1458 | } | |
1459 | ||
1460 | #define wxPyApp_SetExitOnFrameDelete(_swigobj,_swigarg0) (_swigobj->SetExitOnFrameDelete(_swigarg0)) | |
efc5f224 | 1461 | static PyObject *_wrap_wxPyApp_SetExitOnFrameDelete(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1462 | PyObject * _resultobj; |
1463 | wxPyApp * _arg0; | |
1464 | bool _arg1; | |
1d99702e | 1465 | PyObject * _argo0 = 0; |
8ab979d7 | 1466 | int tempbool1; |
efc5f224 | 1467 | char *_kwnames[] = { "self","flag", NULL }; |
8ab979d7 RD |
1468 | |
1469 | self = self; | |
efc5f224 | 1470 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetExitOnFrameDelete",_kwnames,&_argo0,&tempbool1)) |
8ab979d7 | 1471 | return NULL; |
1d99702e RD |
1472 | if (_argo0) { |
1473 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1474 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1475 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetExitOnFrameDelete. Expected _wxPyApp_p."); |
1476 | return NULL; | |
1477 | } | |
1478 | } | |
1479 | _arg1 = (bool ) tempbool1; | |
cf694132 RD |
1480 | { |
1481 | wxPy_BEGIN_ALLOW_THREADS; | |
1482 | wxPyApp_SetExitOnFrameDelete(_arg0,_arg1); | |
1483 | ||
1484 | wxPy_END_ALLOW_THREADS; | |
1485 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1486 | _resultobj = Py_None; |
1487 | return _resultobj; | |
1488 | } | |
1489 | ||
1490 | #define wxPyApp_SetPrintMode(_swigobj,_swigarg0) (_swigobj->SetPrintMode(_swigarg0)) | |
efc5f224 | 1491 | static PyObject *_wrap_wxPyApp_SetPrintMode(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1492 | PyObject * _resultobj; |
1493 | wxPyApp * _arg0; | |
1494 | int _arg1; | |
1d99702e | 1495 | PyObject * _argo0 = 0; |
efc5f224 | 1496 | char *_kwnames[] = { "self","mode", NULL }; |
8ab979d7 RD |
1497 | |
1498 | self = self; | |
efc5f224 | 1499 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetPrintMode",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1500 | return NULL; |
1d99702e RD |
1501 | if (_argo0) { |
1502 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1503 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1504 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetPrintMode. Expected _wxPyApp_p."); |
1505 | return NULL; | |
1506 | } | |
1507 | } | |
cf694132 RD |
1508 | { |
1509 | wxPy_BEGIN_ALLOW_THREADS; | |
1510 | wxPyApp_SetPrintMode(_arg0,_arg1); | |
1511 | ||
1512 | wxPy_END_ALLOW_THREADS; | |
1513 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1514 | _resultobj = Py_None; |
1515 | return _resultobj; | |
1516 | } | |
1517 | ||
1518 | #define wxPyApp_SetTopWindow(_swigobj,_swigarg0) (_swigobj->SetTopWindow(_swigarg0)) | |
efc5f224 | 1519 | static PyObject *_wrap_wxPyApp_SetTopWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1520 | PyObject * _resultobj; |
1521 | wxPyApp * _arg0; | |
1522 | wxWindow * _arg1; | |
1d99702e RD |
1523 | PyObject * _argo0 = 0; |
1524 | PyObject * _argo1 = 0; | |
efc5f224 | 1525 | char *_kwnames[] = { "self","window", NULL }; |
8ab979d7 RD |
1526 | |
1527 | self = self; | |
efc5f224 | 1528 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetTopWindow",_kwnames,&_argo0,&_argo1)) |
8ab979d7 | 1529 | return NULL; |
1d99702e RD |
1530 | if (_argo0) { |
1531 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1532 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1533 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetTopWindow. Expected _wxPyApp_p."); |
1534 | return NULL; | |
1535 | } | |
1536 | } | |
1d99702e RD |
1537 | if (_argo1) { |
1538 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1539 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
8ab979d7 RD |
1540 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPyApp_SetTopWindow. Expected _wxWindow_p."); |
1541 | return NULL; | |
1542 | } | |
1543 | } | |
cf694132 RD |
1544 | { |
1545 | wxPy_BEGIN_ALLOW_THREADS; | |
1546 | wxPyApp_SetTopWindow(_arg0,_arg1); | |
1547 | ||
1548 | wxPy_END_ALLOW_THREADS; | |
1549 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1550 | _resultobj = Py_None; |
1551 | return _resultobj; | |
1552 | } | |
1553 | ||
1554 | #define wxPyApp_SetVendorName(_swigobj,_swigarg0) (_swigobj->SetVendorName(_swigarg0)) | |
efc5f224 | 1555 | static PyObject *_wrap_wxPyApp_SetVendorName(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 RD |
1556 | PyObject * _resultobj; |
1557 | wxPyApp * _arg0; | |
1558 | wxString * _arg1; | |
1d99702e | 1559 | PyObject * _argo0 = 0; |
8ab979d7 | 1560 | PyObject * _obj1 = 0; |
efc5f224 | 1561 | char *_kwnames[] = { "self","name", NULL }; |
8ab979d7 RD |
1562 | |
1563 | self = self; | |
efc5f224 | 1564 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyApp_SetVendorName",_kwnames,&_argo0,&_obj1)) |
8ab979d7 | 1565 | return NULL; |
1d99702e RD |
1566 | if (_argo0) { |
1567 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1568 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8ab979d7 RD |
1569 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetVendorName. Expected _wxPyApp_p."); |
1570 | return NULL; | |
1571 | } | |
1572 | } | |
1573 | { | |
1574 | if (!PyString_Check(_obj1)) { | |
1575 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1576 | return NULL; | |
1577 | } | |
cf694132 | 1578 | _arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1)); |
8ab979d7 | 1579 | } |
cf694132 RD |
1580 | { |
1581 | wxPy_BEGIN_ALLOW_THREADS; | |
1582 | wxPyApp_SetVendorName(_arg0,*_arg1); | |
1583 | ||
1584 | wxPy_END_ALLOW_THREADS; | |
1585 | } Py_INCREF(Py_None); | |
8ab979d7 RD |
1586 | _resultobj = Py_None; |
1587 | { | |
1588 | if (_obj1) | |
1589 | delete _arg1; | |
1590 | } | |
1591 | return _resultobj; | |
1592 | } | |
1593 | ||
f6bcfd97 BP |
1594 | #define wxPyApp_SetUseBestVisual(_swigobj,_swigarg0) (_swigobj->SetUseBestVisual(_swigarg0)) |
1595 | static PyObject *_wrap_wxPyApp_SetUseBestVisual(PyObject *self, PyObject *args, PyObject *kwargs) { | |
1596 | PyObject * _resultobj; | |
1597 | wxPyApp * _arg0; | |
1598 | bool _arg1; | |
1599 | PyObject * _argo0 = 0; | |
1600 | int tempbool1; | |
1601 | char *_kwnames[] = { "self","flag", NULL }; | |
1602 | ||
1603 | self = self; | |
1604 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_SetUseBestVisual",_kwnames,&_argo0,&tempbool1)) | |
1605 | return NULL; | |
1606 | if (_argo0) { | |
1607 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1608 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
1609 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetUseBestVisual. Expected _wxPyApp_p."); | |
1610 | return NULL; | |
1611 | } | |
1612 | } | |
1613 | _arg1 = (bool ) tempbool1; | |
1614 | { | |
1615 | wxPy_BEGIN_ALLOW_THREADS; | |
1616 | wxPyApp_SetUseBestVisual(_arg0,_arg1); | |
1617 | ||
1618 | wxPy_END_ALLOW_THREADS; | |
1619 | } Py_INCREF(Py_None); | |
1620 | _resultobj = Py_None; | |
1621 | return _resultobj; | |
1622 | } | |
1623 | ||
8bf5d46e | 1624 | #define wxPyApp_GetStdIcon(_swigobj,_swigarg0) (_swigobj->GetStdIcon(_swigarg0)) |
efc5f224 | 1625 | static PyObject *_wrap_wxPyApp_GetStdIcon(PyObject *self, PyObject *args, PyObject *kwargs) { |
8ab979d7 | 1626 | PyObject * _resultobj; |
8bf5d46e | 1627 | wxIcon * _result; |
8ab979d7 | 1628 | wxPyApp * _arg0; |
8bf5d46e | 1629 | int _arg1; |
1d99702e | 1630 | PyObject * _argo0 = 0; |
efc5f224 | 1631 | char *_kwnames[] = { "self","which", NULL }; |
8bf5d46e | 1632 | char _ptemp[128]; |
8ab979d7 RD |
1633 | |
1634 | self = self; | |
efc5f224 | 1635 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPyApp_GetStdIcon",_kwnames,&_argo0,&_arg1)) |
8ab979d7 | 1636 | return NULL; |
1d99702e RD |
1637 | if (_argo0) { |
1638 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1639 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyApp_p")) { | |
8bf5d46e | 1640 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetStdIcon. Expected _wxPyApp_p."); |
8ab979d7 RD |
1641 | return NULL; |
1642 | } | |
1643 | } | |
cf694132 RD |
1644 | { |
1645 | wxPy_BEGIN_ALLOW_THREADS; | |
8bf5d46e RD |
1646 | _result = new wxIcon (wxPyApp_GetStdIcon(_arg0,_arg1)); |
1647 | ||
1648 | wxPy_END_ALLOW_THREADS; | |
1649 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxIcon_p"); | |
1650 | _resultobj = Py_BuildValue("s",_ptemp); | |
1651 | return _resultobj; | |
1652 | } | |
1653 | ||
b8b8dda7 | 1654 | static PyMethodDef wxcMethods[] = { |
efc5f224 | 1655 | { "wxPyApp_GetStdIcon", (PyCFunction) _wrap_wxPyApp_GetStdIcon, METH_VARARGS | METH_KEYWORDS }, |
f6bcfd97 | 1656 | { "wxPyApp_SetUseBestVisual", (PyCFunction) _wrap_wxPyApp_SetUseBestVisual, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
1657 | { "wxPyApp_SetVendorName", (PyCFunction) _wrap_wxPyApp_SetVendorName, METH_VARARGS | METH_KEYWORDS }, |
1658 | { "wxPyApp_SetTopWindow", (PyCFunction) _wrap_wxPyApp_SetTopWindow, METH_VARARGS | METH_KEYWORDS }, | |
1659 | { "wxPyApp_SetPrintMode", (PyCFunction) _wrap_wxPyApp_SetPrintMode, METH_VARARGS | METH_KEYWORDS }, | |
1660 | { "wxPyApp_SetExitOnFrameDelete", (PyCFunction) _wrap_wxPyApp_SetExitOnFrameDelete, METH_VARARGS | METH_KEYWORDS }, | |
1661 | { "wxPyApp_SetClassName", (PyCFunction) _wrap_wxPyApp_SetClassName, METH_VARARGS | METH_KEYWORDS }, | |
1662 | { "wxPyApp_SetAuto3D", (PyCFunction) _wrap_wxPyApp_SetAuto3D, METH_VARARGS | METH_KEYWORDS }, | |
1663 | { "wxPyApp_SetAppName", (PyCFunction) _wrap_wxPyApp_SetAppName, METH_VARARGS | METH_KEYWORDS }, | |
1664 | { "wxPyApp_ProcessIdle", (PyCFunction) _wrap_wxPyApp_ProcessIdle, METH_VARARGS | METH_KEYWORDS }, | |
1665 | { "wxPyApp_Pending", (PyCFunction) _wrap_wxPyApp_Pending, METH_VARARGS | METH_KEYWORDS }, | |
1666 | { "wxPyApp_MainLoop", (PyCFunction) _wrap_wxPyApp_MainLoop, METH_VARARGS | METH_KEYWORDS }, | |
1667 | { "wxPyApp_Initialized", (PyCFunction) _wrap_wxPyApp_Initialized, METH_VARARGS | METH_KEYWORDS }, | |
1668 | { "wxPyApp_ExitMainLoop", (PyCFunction) _wrap_wxPyApp_ExitMainLoop, METH_VARARGS | METH_KEYWORDS }, | |
1669 | { "wxPyApp_Dispatch", (PyCFunction) _wrap_wxPyApp_Dispatch, METH_VARARGS | METH_KEYWORDS }, | |
f6bcfd97 | 1670 | { "wxPyApp_GetUseBestVisual", (PyCFunction) _wrap_wxPyApp_GetUseBestVisual, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
1671 | { "wxPyApp_GetVendorName", (PyCFunction) _wrap_wxPyApp_GetVendorName, METH_VARARGS | METH_KEYWORDS }, |
1672 | { "wxPyApp_GetTopWindow", (PyCFunction) _wrap_wxPyApp_GetTopWindow, METH_VARARGS | METH_KEYWORDS }, | |
1673 | { "wxPyApp_GetPrintMode", (PyCFunction) _wrap_wxPyApp_GetPrintMode, METH_VARARGS | METH_KEYWORDS }, | |
1674 | { "wxPyApp_GetExitOnFrameDelete", (PyCFunction) _wrap_wxPyApp_GetExitOnFrameDelete, METH_VARARGS | METH_KEYWORDS }, | |
1675 | { "wxPyApp_GetClassName", (PyCFunction) _wrap_wxPyApp_GetClassName, METH_VARARGS | METH_KEYWORDS }, | |
1676 | { "wxPyApp_GetAuto3D", (PyCFunction) _wrap_wxPyApp_GetAuto3D, METH_VARARGS | METH_KEYWORDS }, | |
1677 | { "wxPyApp_GetAppName", (PyCFunction) _wrap_wxPyApp_GetAppName, METH_VARARGS | METH_KEYWORDS }, | |
1678 | { "delete_wxPyApp", (PyCFunction) _wrap_delete_wxPyApp, METH_VARARGS | METH_KEYWORDS }, | |
1679 | { "new_wxPyApp", (PyCFunction) _wrap_new_wxPyApp, METH_VARARGS | METH_KEYWORDS }, | |
b1462dfa | 1680 | { "wxApp_CleanUp", (PyCFunction) _wrap_wxApp_CleanUp, METH_VARARGS | METH_KEYWORDS }, |
efc5f224 RD |
1681 | { "_wxSetDictionary", (PyCFunction) __wxSetDictionary, METH_VARARGS | METH_KEYWORDS }, |
1682 | { "_wxStart", (PyCFunction) __wxStart, METH_VARARGS | METH_KEYWORDS }, | |
1683 | { "ptrmap", (PyCFunction) _wrap_ptrmap, METH_VARARGS | METH_KEYWORDS }, | |
1684 | { "ptradd", (PyCFunction) _wrap_ptradd, METH_VARARGS | METH_KEYWORDS }, | |
1685 | { "ptrfree", (PyCFunction) _wrap_ptrfree, METH_VARARGS | METH_KEYWORDS }, | |
1686 | { "ptrcreate", (PyCFunction) _wrap_ptrcreate, METH_VARARGS | METH_KEYWORDS }, | |
1687 | { "ptrset", (PyCFunction) _wrap_ptrset, METH_VARARGS | METH_KEYWORDS }, | |
1688 | { "ptrvalue", (PyCFunction) _wrap_ptrvalue, METH_VARARGS | METH_KEYWORDS }, | |
1689 | { "ptrcast", (PyCFunction) _wrap_ptrcast, METH_VARARGS | METH_KEYWORDS }, | |
8ab979d7 RD |
1690 | { NULL, NULL } |
1691 | }; | |
1d99702e RD |
1692 | #ifdef __cplusplus |
1693 | } | |
1694 | #endif | |
1695 | /* | |
1696 | * This table is used by the pointer type-checker | |
1697 | */ | |
1698 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
1699 | { "_wxAcceleratorTable","_class_wxAcceleratorTable",0}, | |
1700 | { "_wxEvent","_class_wxEvent",0}, | |
1701 | { "_class_wxActivateEvent","_wxActivateEvent",0}, | |
1702 | { "_signed_long","_long",0}, | |
1703 | { "_wxMenuEvent","_class_wxMenuEvent",0}, | |
1704 | { "_class_wxJPEGHandler","_wxJPEGHandler",0}, | |
65dd82cb | 1705 | { "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0}, |
b1462dfa | 1706 | { "_wxBitmapDataObject","_class_wxBitmapDataObject",0}, |
2f90df85 | 1707 | { "_class_wxPyCommandEvent","_wxPyCommandEvent",0}, |
1d99702e RD |
1708 | { "_wxBMPHandler","_class_wxBMPHandler",0}, |
1709 | { "_wxImage","_class_wxImage",0}, | |
f6bcfd97 | 1710 | { "_wxFlexGridSizer","_class_wxFlexGridSizer",0}, |
b1462dfa | 1711 | { "_wxPrintQuality","_wxCoord",0}, |
1d99702e RD |
1712 | { "_wxPrintQuality","_int",0}, |
1713 | { "_wxPrintQuality","_signed_int",0}, | |
1714 | { "_wxPrintQuality","_unsigned_int",0}, | |
1715 | { "_wxPrintQuality","_wxWindowID",0}, | |
1716 | { "_wxPrintQuality","_uint",0}, | |
1717 | { "_wxPrintQuality","_EBool",0}, | |
1718 | { "_wxPrintQuality","_size_t",0}, | |
b1462dfa | 1719 | { "_class_wxCustomDataObject","_wxCustomDataObject",0}, |
f6bcfd97 | 1720 | { "_wxSpinCtrl","_class_wxSpinCtrl",0}, |
1d99702e | 1721 | { "_wxFontData","_class_wxFontData",0}, |
1d99702e | 1722 | { "_class_wxRegionIterator","_wxRegionIterator",0}, |
b1462dfa | 1723 | { "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0}, |
1d99702e RD |
1724 | { "_class_wxMenuBar","_wxMenuBar",0}, |
1725 | { "_class_wxPyTreeItemData","_wxPyTreeItemData",0}, | |
2f90df85 | 1726 | { "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0}, |
1d99702e RD |
1727 | { "_class_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler}, |
1728 | { "_class_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler}, | |
1729 | { "_class_wxEvtHandler","_wxEvtHandler",0}, | |
1730 | { "_wxPaintEvent","_class_wxPaintEvent",0}, | |
1731 | { "_wxGIFHandler","_class_wxGIFHandler",0}, | |
2f90df85 | 1732 | { "_wxPySizer","_class_wxPySizer",0}, |
1d99702e RD |
1733 | { "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0}, |
1734 | { "_wxCursor","_class_wxCursor",0}, | |
1735 | { "_wxNotifyEvent","_class_wxNotifyEvent",0}, | |
f6bcfd97 | 1736 | { "_wxPyTreeCtrl","_class_wxPyTreeCtrl",0}, |
1d99702e | 1737 | { "_wxImageHandler","_class_wxImageHandler",0}, |
9b3d3bc4 | 1738 | { "_class_wxToolBarBase","_wxToolBarBase",0}, |
1d99702e RD |
1739 | { "_wxMask","_class_wxMask",0}, |
1740 | { "_wxToolTip","_class_wxToolTip",0}, | |
1d99702e RD |
1741 | { "_wxPNGHandler","_class_wxPNGHandler",0}, |
1742 | { "_class_wxColourData","_wxColourData",0}, | |
1743 | { "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0}, | |
1744 | { "_wxPrinter","_class_wxPrinter",0}, | |
1745 | { "_wxPen","_class_wxPen",0}, | |
1746 | { "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0}, | |
f6bcfd97 | 1747 | { "_class_wxNotebookSizer","_wxNotebookSizer",0}, |
1d99702e | 1748 | { "_byte","_unsigned_char",0}, |
b1462dfa | 1749 | { "_wxDataObject","_class_wxDataObject",0}, |
65dd82cb | 1750 | { "_class_wxPyFontEnumerator","_wxPyFontEnumerator",0}, |
1d99702e | 1751 | { "_wxStaticBox","_class_wxStaticBox",0}, |
65dd82cb RD |
1752 | { "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0}, |
1753 | { "_wxPyDropSource","_class_wxPyDropSource",0}, | |
1d99702e RD |
1754 | { "_wxChoice","_class_wxChoice",0}, |
1755 | { "_wxSlider","_class_wxSlider",0}, | |
1756 | { "_wxNotebookEvent","_class_wxNotebookEvent",0}, | |
1757 | { "_wxPyPrintout","_class_wxPyPrintout",0}, | |
1d99702e RD |
1758 | { "_long","_unsigned_long",0}, |
1759 | { "_long","_signed_long",0}, | |
1760 | { "_wxImageList","_class_wxImageList",0}, | |
b1462dfa | 1761 | { "_wxDataObjectSimple","_class_wxDataObjectSimple",0}, |
1d99702e RD |
1762 | { "_wxDropFilesEvent","_class_wxDropFilesEvent",0}, |
1763 | { "_wxBitmapButton","_class_wxBitmapButton",0}, | |
1764 | { "_wxSashWindow","_class_wxSashWindow",0}, | |
2f90df85 | 1765 | { "_class_wxSizer","_wxSizer",0}, |
9b3d3bc4 | 1766 | { "_class_wxTIFFHandler","_wxTIFFHandler",0}, |
1d99702e | 1767 | { "_class_wxPrintDialogData","_wxPrintDialogData",0}, |
f6bcfd97 | 1768 | { "_wxGridSizer","_class_wxGridSizer",0}, |
1d99702e | 1769 | { "_class_wxAcceleratorTable","_wxAcceleratorTable",0}, |
b1462dfa | 1770 | { "_class_wxClipboard","_wxClipboard",0}, |
1d99702e RD |
1771 | { "_class_wxGauge","_wxGauge",0}, |
1772 | { "_class_wxSashEvent","_wxSashEvent",0}, | |
1773 | { "_wxDC","_class_wxDC",0}, | |
2f90df85 | 1774 | { "_wxSizerItem","_class_wxSizerItem",0}, |
b1462dfa | 1775 | { "_class_wxBitmapDataObject","_wxBitmapDataObject",0}, |
1d99702e RD |
1776 | { "_wxListEvent","_class_wxListEvent",0}, |
1777 | { "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0}, | |
1778 | { "_wxProgressDialog","_class_wxProgressDialog",0}, | |
1779 | { "_class_wxBMPHandler","_wxBMPHandler",0}, | |
1780 | { "_wxPrintPreview","_class_wxPrintPreview",0}, | |
f6bcfd97 | 1781 | { "_class_wxFlexGridSizer","_wxFlexGridSizer",0}, |
1d99702e RD |
1782 | { "_wxSpinEvent","_class_wxSpinEvent",0}, |
1783 | { "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0}, | |
b1462dfa | 1784 | { "_size_t","_wxCoord",0}, |
1d99702e RD |
1785 | { "_size_t","_wxPrintQuality",0}, |
1786 | { "_size_t","_unsigned_int",0}, | |
1787 | { "_size_t","_int",0}, | |
1788 | { "_size_t","_wxWindowID",0}, | |
1789 | { "_size_t","_uint",0}, | |
1790 | { "_class_wxRealPoint","_wxRealPoint",0}, | |
48115f4a | 1791 | { "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0}, |
46c3e3d9 | 1792 | { "_wxPNMHandler","_class_wxPNMHandler",0}, |
1d99702e | 1793 | { "_wxPrinterDC","_class_wxPrinterDC",0}, |
48115f4a | 1794 | { "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0}, |
1d99702e RD |
1795 | { "_class_wxMenuItem","_wxMenuItem",0}, |
1796 | { "_class_wxPaintEvent","_wxPaintEvent",0}, | |
1797 | { "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0}, | |
1798 | { "_class_wxStatusBar","_wxStatusBar",0}, | |
1799 | { "_class_wxGIFHandler","_wxGIFHandler",0}, | |
2f90df85 | 1800 | { "_class_wxPySizer","_wxPySizer",0}, |
1d99702e RD |
1801 | { "_wxPanel","_class_wxPanel",0}, |
1802 | { "_wxInitDialogEvent","_class_wxInitDialogEvent",0}, | |
1803 | { "_wxCheckBox","_class_wxCheckBox",0}, | |
f6bcfd97 | 1804 | { "_class_wxPyTreeCtrl","_wxPyTreeCtrl",0}, |
1d99702e RD |
1805 | { "_wxPyEvent","_class_wxPyEvent",0}, |
1806 | { "_wxTextCtrl","_class_wxTextCtrl",0}, | |
1807 | { "_class_wxMask","_wxMask",0}, | |
b1462dfa | 1808 | { "_wxTextDataObject","_class_wxTextDataObject",0}, |
1d99702e | 1809 | { "_class_wxKeyEvent","_wxKeyEvent",0}, |
65dd82cb | 1810 | { "_class_wxToolTip","_wxToolTip",0}, |
1d99702e RD |
1811 | { "_class_wxPNGHandler","_wxPNGHandler",0}, |
1812 | { "_wxColour","_class_wxColour",0}, | |
1813 | { "_class_wxDialog","_wxDialog",0}, | |
2abc0a0f | 1814 | { "_wxBusyCursor","_class_wxBusyCursor",0}, |
1d99702e RD |
1815 | { "_wxPageSetupDialog","_class_wxPageSetupDialog",0}, |
1816 | { "_class_wxPrinter","_wxPrinter",0}, | |
65dd82cb | 1817 | { "_class_wxFileDataObject","_wxFileDataObject",0}, |
1d99702e RD |
1818 | { "_wxIdleEvent","_class_wxIdleEvent",0}, |
1819 | { "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0}, | |
1820 | { "_wxToolBar","_class_wxToolBar",0}, | |
b1462dfa | 1821 | { "_class_wxDataObject","_wxDataObject",0}, |
f0261a72 | 1822 | { "_wxCaret","_class_wxCaret",0}, |
1d99702e RD |
1823 | { "_wxStaticLine","_class_wxStaticLine",0}, |
1824 | { "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0}, | |
1825 | { "_wxBrush","_class_wxBrush",0}, | |
1826 | { "_wxMiniFrame","_class_wxMiniFrame",0}, | |
1827 | { "_class_wxNotebookEvent","_wxNotebookEvent",0}, | |
1828 | { "_class_wxPyPrintout","_wxPyPrintout",0}, | |
b1462dfa RD |
1829 | { "_wxDataFormat","_class_wxDataFormat",0}, |
1830 | { "_class_wxDataObjectSimple","_wxDataObjectSimple",0}, | |
1d99702e RD |
1831 | { "_class_wxSashWindow","_wxSashWindow",0}, |
1832 | { "_wxShowEvent","_class_wxShowEvent",0}, | |
b1462dfa | 1833 | { "_uint","_wxCoord",0}, |
1d99702e RD |
1834 | { "_uint","_wxPrintQuality",0}, |
1835 | { "_uint","_size_t",0}, | |
1836 | { "_uint","_unsigned_int",0}, | |
1837 | { "_uint","_int",0}, | |
1838 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 1839 | { "_wxChar","_char",0}, |
2f90df85 | 1840 | { "_wxPyValidator","_class_wxPyValidator",0}, |
1d99702e RD |
1841 | { "_class_wxEvent","_wxEvent",0}, |
1842 | { "_wxCheckListBox","_class_wxCheckListBox",0}, | |
1843 | { "_wxSplitterEvent","_class_wxSplitterEvent",0}, | |
1d99702e RD |
1844 | { "_wxRect","_class_wxRect",0}, |
1845 | { "_wxCommandEvent","_class_wxCommandEvent",0}, | |
1846 | { "_wxSizeEvent","_class_wxSizeEvent",0}, | |
1847 | { "_class_wxImage","_wxImage",0}, | |
1848 | { "_wxPoint","_class_wxPoint",0}, | |
1849 | { "_class_wxSashLayoutWindow","_wxSashLayoutWindow",0}, | |
1850 | { "_class_wxButton","_wxButton",0}, | |
1851 | { "_wxRadioBox","_class_wxRadioBox",0}, | |
f6bcfd97 | 1852 | { "_class_wxSpinCtrl","_wxSpinCtrl",0}, |
1d99702e | 1853 | { "_class_wxFontData","_wxFontData",0}, |
46c3e3d9 | 1854 | { "_class_wxPNMHandler","_wxPNMHandler",0}, |
2f90df85 | 1855 | { "_wxBoxSizer","_class_wxBoxSizer",0}, |
f6bcfd97 | 1856 | { "_char","_wxChar",0}, |
1d99702e RD |
1857 | { "_wxBitmap","_class_wxBitmap",0}, |
1858 | { "_wxTaskBarIcon","_class_wxTaskBarIcon",0}, | |
1859 | { "_wxPrintDialog","_class_wxPrintDialog",0}, | |
1d99702e | 1860 | { "_wxWindowDC","_class_wxWindowDC",0}, |
f6bcfd97 BP |
1861 | { "_wxTimerEvent","_class_wxTimerEvent",0}, |
1862 | { "_wxPyTimer","_class_wxPyTimer",0}, | |
1d99702e RD |
1863 | { "_wxScrollBar","_class_wxScrollBar",0}, |
1864 | { "_wxSpinButton","_class_wxSpinButton",0}, | |
1d99702e RD |
1865 | { "_wxColourDialog","_class_wxColourDialog",0}, |
1866 | { "_wxPrintData","_class_wxPrintData",0}, | |
1867 | { "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0}, | |
1868 | { "_class_wxNotifyEvent","_wxNotifyEvent",0}, | |
1869 | { "_wxMessageDialog","_class_wxMessageDialog",0}, | |
2f90df85 | 1870 | { "_class_wxValidator","_wxValidator",0}, |
1d99702e RD |
1871 | { "_class_wxPyEvent","_wxPyEvent",0}, |
1872 | { "_wxTextEntryDialog","_class_wxTextEntryDialog",0}, | |
1873 | { "_class_wxIconizeEvent","_wxIconizeEvent",0}, | |
1874 | { "_class_wxStaticBitmap","_wxStaticBitmap",0}, | |
2abc0a0f | 1875 | { "_class_wxBusyCursor","_wxBusyCursor",0}, |
9b3d3bc4 | 1876 | { "_wxToolBarSimple","_class_wxToolBarSimple",0}, |
1d99702e RD |
1877 | { "_wxMDIChildFrame","_class_wxMDIChildFrame",0}, |
1878 | { "_wxListItem","_class_wxListItem",0}, | |
1879 | { "_class_wxToolBar","_wxToolBar",0}, | |
65dd82cb | 1880 | { "_wxDropTarget","_class_wxDropTarget",0}, |
1d99702e RD |
1881 | { "_class_wxStaticLine","_wxStaticLine",0}, |
1882 | { "_wxScrollEvent","_class_wxScrollEvent",0}, | |
9b3d3bc4 | 1883 | { "_wxToolBarToolBase","_class_wxToolBarToolBase",0}, |
1d99702e | 1884 | { "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0}, |
b1462dfa | 1885 | { "_EBool","_wxCoord",0}, |
1d99702e RD |
1886 | { "_EBool","_wxPrintQuality",0}, |
1887 | { "_EBool","_signed_int",0}, | |
1888 | { "_EBool","_int",0}, | |
1889 | { "_EBool","_wxWindowID",0}, | |
1890 | { "_class_wxRegion","_wxRegion",0}, | |
b1462dfa | 1891 | { "_class_wxDataFormat","_wxDataFormat",0}, |
1d99702e | 1892 | { "_class_wxDropFilesEvent","_wxDropFilesEvent",0}, |
48115f4a | 1893 | { "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0}, |
1d99702e RD |
1894 | { "_class_wxPreviewFrame","_wxPreviewFrame",0}, |
1895 | { "_wxStaticText","_class_wxStaticText",0}, | |
1896 | { "_wxFont","_class_wxFont",0}, | |
b1462dfa | 1897 | { "_class_wxPyDropTarget","_wxPyDropTarget",0}, |
1d99702e RD |
1898 | { "_wxCloseEvent","_class_wxCloseEvent",0}, |
1899 | { "_class_wxSplitterEvent","_wxSplitterEvent",0}, | |
1900 | { "_wxNotebook","_class_wxNotebook",0}, | |
1d99702e RD |
1901 | { "_unsigned_long","_long",0}, |
1902 | { "_class_wxRect","_wxRect",0}, | |
1903 | { "_class_wxDC","_wxDC",0}, | |
d426c97e | 1904 | { "_wxScrollWinEvent","_class_wxScrollWinEvent",0}, |
f6bcfd97 | 1905 | { "_wxGenericDragImage","_class_wxGenericDragImage",0}, |
1d99702e | 1906 | { "_class_wxProgressDialog","_wxProgressDialog",0}, |
48115f4a | 1907 | { "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0}, |
1d99702e | 1908 | { "_wxPyApp","_class_wxPyApp",0}, |
48115f4a | 1909 | { "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0}, |
1d99702e RD |
1910 | { "_wxMDIParentFrame","_class_wxMDIParentFrame",0}, |
1911 | { "_class_wxTreeEvent","_wxTreeEvent",0}, | |
1912 | { "_class_wxDirDialog","_wxDirDialog",0}, | |
1d99702e RD |
1913 | { "_wxFocusEvent","_class_wxFocusEvent",0}, |
1914 | { "_wxMaximizeEvent","_class_wxMaximizeEvent",0}, | |
f6bcfd97 BP |
1915 | { "_class_wxTimerEvent","_wxTimerEvent",0}, |
1916 | { "_class_wxPyTimer","_wxPyTimer",0}, | |
1d99702e RD |
1917 | { "_class_wxSpinButton","_wxSpinButton",0}, |
1918 | { "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0}, | |
1919 | { "_class_wxPanel","_wxPanel",0}, | |
1920 | { "_class_wxCheckBox","_wxCheckBox",0}, | |
1921 | { "_wxComboBox","_class_wxComboBox",0}, | |
1922 | { "_wxRadioButton","_class_wxRadioButton",0}, | |
1923 | { "_class_wxMessageDialog","_wxMessageDialog",0}, | |
b1462dfa | 1924 | { "_signed_int","_wxCoord",0}, |
1d99702e RD |
1925 | { "_signed_int","_wxPrintQuality",0}, |
1926 | { "_signed_int","_EBool",0}, | |
1927 | { "_signed_int","_wxWindowID",0}, | |
1928 | { "_signed_int","_int",0}, | |
1929 | { "_class_wxTextCtrl","_wxTextCtrl",0}, | |
f6bcfd97 | 1930 | { "_class_wxListItemAttr","_wxListItemAttr",0}, |
1d99702e RD |
1931 | { "_wxLayoutConstraints","_class_wxLayoutConstraints",0}, |
1932 | { "_wxMetaFileDC","_class_wxMetaFileDC",0}, | |
b1462dfa | 1933 | { "_class_wxTextDataObject","_wxTextDataObject",0}, |
1d99702e RD |
1934 | { "_wxMenu","_class_wxMenu",0}, |
1935 | { "_class_wxMoveEvent","_wxMoveEvent",0}, | |
1936 | { "_wxListBox","_class_wxListBox",0}, | |
1937 | { "_wxScreenDC","_class_wxScreenDC",0}, | |
9b3d3bc4 | 1938 | { "_class_wxToolBarSimple","_wxToolBarSimple",0}, |
1d99702e RD |
1939 | { "_class_wxMDIChildFrame","_wxMDIChildFrame",0}, |
1940 | { "_WXTYPE","_short",0}, | |
1941 | { "_WXTYPE","_signed_short",0}, | |
1942 | { "_WXTYPE","_unsigned_short",0}, | |
1943 | { "_wxFileDialog","_class_wxFileDialog",0}, | |
65dd82cb | 1944 | { "_class_wxDropTarget","_wxDropTarget",0}, |
f0261a72 | 1945 | { "_class_wxCaret","_wxCaret",0}, |
1d99702e RD |
1946 | { "_class_wxMDIClientWindow","_wxMDIClientWindow",0}, |
1947 | { "_class_wxBrush","_wxBrush",0}, | |
f6bcfd97 | 1948 | { "_wxTipProvider","_class_wxTipProvider",0}, |
1d99702e RD |
1949 | { "_unsigned_short","_WXTYPE",0}, |
1950 | { "_unsigned_short","_short",0}, | |
1951 | { "_class_wxWindow","_wxWindow",0}, | |
1952 | { "_wxSplitterWindow","_class_wxSplitterWindow",0}, | |
1953 | { "_class_wxStaticText","_wxStaticText",0}, | |
1954 | { "_wxPrintDialogData","_class_wxPrintDialogData",0}, | |
1955 | { "_class_wxFont","_wxFont",0}, | |
b1462dfa | 1956 | { "_wxClipboard","_class_wxClipboard",0}, |
2f90df85 | 1957 | { "_class_wxPyValidator","_wxPyValidator",0}, |
1d99702e RD |
1958 | { "_class_wxCloseEvent","_wxCloseEvent",0}, |
1959 | { "_wxSashEvent","_class_wxSashEvent",0}, | |
2abc0a0f | 1960 | { "_wxBusyInfo","_class_wxBusyInfo",0}, |
1d99702e | 1961 | { "_class_wxMenuEvent","_wxMenuEvent",0}, |
48115f4a | 1962 | { "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0}, |
65dd82cb | 1963 | { "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0}, |
1d99702e RD |
1964 | { "_wxClientDC","_class_wxClientDC",0}, |
1965 | { "_wxMouseEvent","_class_wxMouseEvent",0}, | |
f6bcfd97 | 1966 | { "_class_wxGenericDragImage","_wxGenericDragImage",0}, |
1d99702e RD |
1967 | { "_wxListCtrl","_class_wxListCtrl",0}, |
1968 | { "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0}, | |
1969 | { "_class_wxPoint","_wxPoint",0}, | |
1970 | { "_wxRealPoint","_class_wxRealPoint",0}, | |
1971 | { "_class_wxRadioBox","_wxRadioBox",0}, | |
2f90df85 | 1972 | { "_class_wxBoxSizer","_wxBoxSizer",0}, |
1d99702e RD |
1973 | { "_signed_short","_WXTYPE",0}, |
1974 | { "_signed_short","_short",0}, | |
1975 | { "_wxMemoryDC","_class_wxMemoryDC",0}, | |
65dd82cb | 1976 | { "_wxPyTextDataObject","_class_wxPyTextDataObject",0}, |
1d99702e RD |
1977 | { "_class_wxTaskBarIcon","_wxTaskBarIcon",0}, |
1978 | { "_class_wxPrintDialog","_wxPrintDialog",0}, | |
1979 | { "_wxPaintDC","_class_wxPaintDC",0}, | |
1980 | { "_class_wxWindowDC","_wxWindowDC",0}, | |
1981 | { "_class_wxFocusEvent","_wxFocusEvent",0}, | |
1982 | { "_class_wxMaximizeEvent","_wxMaximizeEvent",0}, | |
1983 | { "_wxStatusBar","_class_wxStatusBar",0}, | |
1d99702e RD |
1984 | { "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0}, |
1985 | { "_class_wxCursor","_wxCursor",0}, | |
b1462dfa | 1986 | { "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0}, |
1d99702e RD |
1987 | { "_class_wxImageHandler","_wxImageHandler",0}, |
1988 | { "_wxScrolledWindow","_class_wxScrolledWindow",0}, | |
1989 | { "_wxTreeItemId","_class_wxTreeItemId",0}, | |
1990 | { "_unsigned_char","_byte",0}, | |
1991 | { "_class_wxMetaFileDC","_wxMetaFileDC",0}, | |
1992 | { "_class_wxMenu","_wxMenu",0}, | |
1993 | { "_wxControl","_class_wxControl",0}, | |
1994 | { "_class_wxListBox","_wxListBox",0}, | |
b1462dfa | 1995 | { "_unsigned_int","_wxCoord",0}, |
1d99702e RD |
1996 | { "_unsigned_int","_wxPrintQuality",0}, |
1997 | { "_unsigned_int","_size_t",0}, | |
1998 | { "_unsigned_int","_uint",0}, | |
1999 | { "_unsigned_int","_wxWindowID",0}, | |
2000 | { "_unsigned_int","_int",0}, | |
2001 | { "_wxIcon","_class_wxIcon",0}, | |
2002 | { "_wxDialog","_class_wxDialog",0}, | |
2003 | { "_class_wxListItem","_wxListItem",0}, | |
2004 | { "_class_wxPen","_wxPen",0}, | |
2005 | { "_class_wxFileDialog","_wxFileDialog",0}, | |
2006 | { "_wxQueryLayoutInfoEvent","_class_wxQueryLayoutInfoEvent",0}, | |
2007 | { "_short","_WXTYPE",0}, | |
2008 | { "_short","_unsigned_short",0}, | |
2009 | { "_short","_signed_short",0}, | |
2010 | { "_class_wxStaticBox","_wxStaticBox",0}, | |
2011 | { "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0}, | |
65dd82cb RD |
2012 | { "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0}, |
2013 | { "_class_wxPyDropSource","_wxPyDropSource",0}, | |
1d99702e RD |
2014 | { "_class_wxScrollEvent","_wxScrollEvent",0}, |
2015 | { "_wxJoystickEvent","_class_wxJoystickEvent",0}, | |
2016 | { "_class_wxChoice","_wxChoice",0}, | |
2017 | { "_class_wxSlider","_wxSlider",0}, | |
2018 | { "_class_wxCalculateLayoutEvent","_wxCalculateLayoutEvent",0}, | |
2019 | { "_class_wxImageList","_wxImageList",0}, | |
2020 | { "_class_wxBitmapButton","_wxBitmapButton",0}, | |
f6bcfd97 | 2021 | { "_wxPyTipProvider","_class_wxPyTipProvider",0}, |
1d99702e | 2022 | { "_wxFrame","_class_wxFrame",0}, |
46c3e3d9 | 2023 | { "_wxPCXHandler","_class_wxPCXHandler",0}, |
f6bcfd97 | 2024 | { "_class_wxGridSizer","_wxGridSizer",0}, |
48115f4a | 2025 | { "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0}, |
1d99702e RD |
2026 | { "_class_wxNotebook","_wxNotebook",0}, |
2027 | { "_wxJPEGHandler","_class_wxJPEGHandler",0}, | |
b1462dfa | 2028 | { "_wxWindowID","_wxCoord",0}, |
1d99702e RD |
2029 | { "_wxWindowID","_wxPrintQuality",0}, |
2030 | { "_wxWindowID","_size_t",0}, | |
2031 | { "_wxWindowID","_EBool",0}, | |
2032 | { "_wxWindowID","_uint",0}, | |
2033 | { "_wxWindowID","_int",0}, | |
2034 | { "_wxWindowID","_signed_int",0}, | |
2035 | { "_wxWindowID","_unsigned_int",0}, | |
d426c97e | 2036 | { "_class_wxScrollWinEvent","_wxScrollWinEvent",0}, |
2f90df85 | 2037 | { "_class_wxSizerItem","_wxSizerItem",0}, |
b1462dfa | 2038 | { "_int","_wxCoord",0}, |
1d99702e RD |
2039 | { "_int","_wxPrintQuality",0}, |
2040 | { "_int","_size_t",0}, | |
2041 | { "_int","_EBool",0}, | |
2042 | { "_int","_uint",0}, | |
2043 | { "_int","_wxWindowID",0}, | |
2044 | { "_int","_unsigned_int",0}, | |
2045 | { "_int","_signed_int",0}, | |
2046 | { "_class_wxMouseEvent","_wxMouseEvent",0}, | |
2f90df85 | 2047 | { "_wxPyCommandEvent","_class_wxPyCommandEvent",0}, |
1d99702e RD |
2048 | { "_class_wxListEvent","_wxListEvent",0}, |
2049 | { "_class_wxPrintPreview","_wxPrintPreview",0}, | |
2050 | { "_class_wxSpinEvent","_wxSpinEvent",0}, | |
48115f4a RD |
2051 | { "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0}, |
2052 | { "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0}, | |
1d99702e RD |
2053 | { "_wxButton","_class_wxButton",0}, |
2054 | { "_class_wxPyApp","_wxPyApp",0}, | |
2055 | { "_wxSize","_class_wxSize",0}, | |
2056 | { "_wxRegionIterator","_class_wxRegionIterator",0}, | |
2057 | { "_class_wxPrinterDC","_wxPrinterDC",0}, | |
65dd82cb | 2058 | { "_class_wxPyTextDataObject","_wxPyTextDataObject",0}, |
1d99702e RD |
2059 | { "_class_wxMDIParentFrame","_wxMDIParentFrame",0}, |
2060 | { "_wxPyTreeItemData","_class_wxPyTreeItemData",0}, | |
2f90df85 | 2061 | { "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0}, |
1d99702e RD |
2062 | { "_class_wxPaintDC","_wxPaintDC",0}, |
2063 | { "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0}, | |
b1462dfa | 2064 | { "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0}, |
1d99702e RD |
2065 | { "_class_wxInitDialogEvent","_wxInitDialogEvent",0}, |
2066 | { "_class_wxComboBox","_wxComboBox",0}, | |
2067 | { "_class_wxRadioButton","_wxRadioButton",0}, | |
2f90df85 | 2068 | { "_wxValidator","_class_wxValidator",0}, |
9b3d3bc4 | 2069 | { "_wxToolBarBase","_class_wxToolBarBase",0}, |
1d99702e | 2070 | { "_class_wxTreeItemId","_wxTreeItemId",0}, |
1d99702e RD |
2071 | { "_class_wxLayoutConstraints","_wxLayoutConstraints",0}, |
2072 | { "_wxIconizeEvent","_class_wxIconizeEvent",0}, | |
2073 | { "_class_wxControl","_wxControl",0}, | |
2074 | { "_wxStaticBitmap","_class_wxStaticBitmap",0}, | |
2075 | { "_class_wxIcon","_wxIcon",0}, | |
2076 | { "_class_wxColour","_wxColour",0}, | |
2077 | { "_class_wxScreenDC","_wxScreenDC",0}, | |
2078 | { "_class_wxPageSetupDialog","_wxPageSetupDialog",0}, | |
2079 | { "_wxPalette","_class_wxPalette",0}, | |
2080 | { "_class_wxIdleEvent","_wxIdleEvent",0}, | |
b1462dfa RD |
2081 | { "_wxCoord","_int",0}, |
2082 | { "_wxCoord","_signed_int",0}, | |
2083 | { "_wxCoord","_unsigned_int",0}, | |
2084 | { "_wxCoord","_wxWindowID",0}, | |
2085 | { "_wxCoord","_uint",0}, | |
2086 | { "_wxCoord","_EBool",0}, | |
2087 | { "_wxCoord","_size_t",0}, | |
2088 | { "_wxCoord","_wxPrintQuality",0}, | |
1d99702e | 2089 | { "_wxEraseEvent","_class_wxEraseEvent",0}, |
b1462dfa | 2090 | { "_wxDataObjectComposite","_class_wxDataObjectComposite",0}, |
1d99702e | 2091 | { "_class_wxJoystickEvent","_wxJoystickEvent",0}, |
f6bcfd97 | 2092 | { "_class_wxTipProvider","_wxTipProvider",0}, |
1d99702e RD |
2093 | { "_class_wxMiniFrame","_wxMiniFrame",0}, |
2094 | { "_wxFontDialog","_class_wxFontDialog",0}, | |
2095 | { "_wxRegion","_class_wxRegion",0}, | |
2096 | { "_class_wxSplitterWindow","_wxSplitterWindow",0}, | |
2097 | { "_wxPreviewFrame","_class_wxPreviewFrame",0}, | |
2f90df85 | 2098 | { "_wxSizer","_class_wxSizer",0}, |
1d99702e | 2099 | { "_class_wxShowEvent","_wxShowEvent",0}, |
f6bcfd97 | 2100 | { "_class_wxPyTipProvider","_wxPyTipProvider",0}, |
46c3e3d9 | 2101 | { "_class_wxPCXHandler","_wxPCXHandler",0}, |
9b3d3bc4 | 2102 | { "_wxTIFFHandler","_class_wxTIFFHandler",0}, |
b1462dfa | 2103 | { "_wxPyDropTarget","_class_wxPyDropTarget",0}, |
1d99702e RD |
2104 | { "_wxActivateEvent","_class_wxActivateEvent",0}, |
2105 | { "_wxGauge","_class_wxGauge",0}, | |
2106 | { "_class_wxCheckListBox","_wxCheckListBox",0}, | |
2abc0a0f | 2107 | { "_class_wxBusyInfo","_wxBusyInfo",0}, |
1d99702e RD |
2108 | { "_class_wxCommandEvent","_wxCommandEvent",0}, |
2109 | { "_class_wxClientDC","_wxClientDC",0}, | |
2110 | { "_class_wxSizeEvent","_wxSizeEvent",0}, | |
2111 | { "_class_wxListCtrl","_wxListCtrl",0}, | |
b1462dfa | 2112 | { "_wxCustomDataObject","_class_wxCustomDataObject",0}, |
1d99702e RD |
2113 | { "_class_wxSize","_wxSize",0}, |
2114 | { "_class_wxBitmap","_wxBitmap",0}, | |
2115 | { "_class_wxMemoryDC","_wxMemoryDC",0}, | |
b1462dfa | 2116 | { "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0}, |
1d99702e RD |
2117 | { "_wxMenuBar","_class_wxMenuBar",0}, |
2118 | { "_wxTreeEvent","_class_wxTreeEvent",0}, | |
2119 | { "_wxDirDialog","_class_wxDirDialog",0}, | |
2120 | { "_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler}, | |
2121 | { "_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler}, | |
2122 | { "_wxEvtHandler","_class_wxEvtHandler",0}, | |
2123 | { "_wxMenuItem","_class_wxMenuItem",0}, | |
2124 | { "_class_wxScrollBar","_wxScrollBar",0}, | |
2125 | { "_class_wxColourDialog","_wxColourDialog",0}, | |
2126 | { "_class_wxPrintData","_wxPrintData",0}, | |
1d99702e | 2127 | { "_class_wxScrolledWindow","_wxScrolledWindow",0}, |
f6bcfd97 | 2128 | { "_wxListItemAttr","_class_wxListItemAttr",0}, |
1d99702e RD |
2129 | { "_class_wxTextEntryDialog","_wxTextEntryDialog",0}, |
2130 | { "_wxKeyEvent","_class_wxKeyEvent",0}, | |
2131 | { "_wxMoveEvent","_class_wxMoveEvent",0}, | |
2132 | { "_wxColourData","_class_wxColourData",0}, | |
2133 | { "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0}, | |
2134 | { "_class_wxPalette","_wxPalette",0}, | |
65dd82cb | 2135 | { "_wxFileDataObject","_class_wxFileDataObject",0}, |
1d99702e | 2136 | { "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0}, |
f6bcfd97 | 2137 | { "_wxNotebookSizer","_class_wxNotebookSizer",0}, |
1d99702e | 2138 | { "_class_wxEraseEvent","_wxEraseEvent",0}, |
65dd82cb | 2139 | { "_wxPyFontEnumerator","_class_wxPyFontEnumerator",0}, |
1d99702e | 2140 | { "_wxMDIClientWindow","_class_wxMDIClientWindow",0}, |
b1462dfa | 2141 | { "_class_wxDataObjectComposite","_wxDataObjectComposite",0}, |
9b3d3bc4 | 2142 | { "_class_wxToolBarToolBase","_wxToolBarToolBase",0}, |
1d99702e RD |
2143 | { "_class_wxFontDialog","_wxFontDialog",0}, |
2144 | { "_wxWindow","_class_wxWindow",0}, | |
48115f4a | 2145 | { "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0}, |
1d99702e RD |
2146 | { "_class_wxFrame","_wxFrame",0}, |
2147 | {0,0,0}}; | |
2148 | ||
8ab979d7 RD |
2149 | static PyObject *SWIG_globals; |
2150 | #ifdef __cplusplus | |
2151 | extern "C" | |
2152 | #endif | |
1d99702e | 2153 | SWIGEXPORT(void) initwxc() { |
8ab979d7 RD |
2154 | PyObject *m, *d; |
2155 | SWIG_globals = SWIG_newvarlink(); | |
b8b8dda7 | 2156 | m = Py_InitModule("wxc", wxcMethods); |
8ab979d7 RD |
2157 | d = PyModule_GetDict(m); |
2158 | PyDict_SetItemString(d,"wxMAJOR_VERSION", PyInt_FromLong((long) wxMAJOR_VERSION)); | |
2159 | PyDict_SetItemString(d,"wxMINOR_VERSION", PyInt_FromLong((long) wxMINOR_VERSION)); | |
2160 | PyDict_SetItemString(d,"wxRELEASE_NUMBER", PyInt_FromLong((long) wxRELEASE_NUMBER)); | |
08127323 | 2161 | PyDict_SetItemString(d,"wxNOT_FOUND", PyInt_FromLong((long) wxNOT_FOUND)); |
8ab979d7 RD |
2162 | PyDict_SetItemString(d,"wxVSCROLL", PyInt_FromLong((long) wxVSCROLL)); |
2163 | PyDict_SetItemString(d,"wxHSCROLL", PyInt_FromLong((long) wxHSCROLL)); | |
2164 | PyDict_SetItemString(d,"wxCAPTION", PyInt_FromLong((long) wxCAPTION)); | |
2165 | PyDict_SetItemString(d,"wxDOUBLE_BORDER", PyInt_FromLong((long) wxDOUBLE_BORDER)); | |
2166 | PyDict_SetItemString(d,"wxSUNKEN_BORDER", PyInt_FromLong((long) wxSUNKEN_BORDER)); | |
2167 | PyDict_SetItemString(d,"wxRAISED_BORDER", PyInt_FromLong((long) wxRAISED_BORDER)); | |
2168 | PyDict_SetItemString(d,"wxBORDER", PyInt_FromLong((long) wxBORDER)); | |
2169 | PyDict_SetItemString(d,"wxSIMPLE_BORDER", PyInt_FromLong((long) wxSIMPLE_BORDER)); | |
2170 | PyDict_SetItemString(d,"wxSTATIC_BORDER", PyInt_FromLong((long) wxSTATIC_BORDER)); | |
2171 | PyDict_SetItemString(d,"wxTRANSPARENT_WINDOW", PyInt_FromLong((long) wxTRANSPARENT_WINDOW)); | |
2172 | PyDict_SetItemString(d,"wxNO_BORDER", PyInt_FromLong((long) wxNO_BORDER)); | |
2173 | PyDict_SetItemString(d,"wxUSER_COLOURS", PyInt_FromLong((long) wxUSER_COLOURS)); | |
2174 | PyDict_SetItemString(d,"wxNO_3D", PyInt_FromLong((long) wxNO_3D)); | |
2175 | PyDict_SetItemString(d,"wxTAB_TRAVERSAL", PyInt_FromLong((long) wxTAB_TRAVERSAL)); | |
1afc06c2 | 2176 | PyDict_SetItemString(d,"wxWANTS_CHARS", PyInt_FromLong((long) wxWANTS_CHARS)); |
8ab979d7 RD |
2177 | PyDict_SetItemString(d,"wxHORIZONTAL", PyInt_FromLong((long) wxHORIZONTAL)); |
2178 | PyDict_SetItemString(d,"wxVERTICAL", PyInt_FromLong((long) wxVERTICAL)); | |
2179 | PyDict_SetItemString(d,"wxBOTH", PyInt_FromLong((long) wxBOTH)); | |
2180 | PyDict_SetItemString(d,"wxCENTER_FRAME", PyInt_FromLong((long) wxCENTER_FRAME)); | |
1afc06c2 RD |
2181 | PyDict_SetItemString(d,"wxCENTRE_ON_SCREEN", PyInt_FromLong((long) wxCENTRE_ON_SCREEN)); |
2182 | PyDict_SetItemString(d,"wxCENTER_ON_SCREEN", PyInt_FromLong((long) wxCENTER_ON_SCREEN)); | |
8ab979d7 RD |
2183 | PyDict_SetItemString(d,"wxSTAY_ON_TOP", PyInt_FromLong((long) wxSTAY_ON_TOP)); |
2184 | PyDict_SetItemString(d,"wxICONIZE", PyInt_FromLong((long) wxICONIZE)); | |
2185 | PyDict_SetItemString(d,"wxMINIMIZE", PyInt_FromLong((long) wxMINIMIZE)); | |
2186 | PyDict_SetItemString(d,"wxMAXIMIZE", PyInt_FromLong((long) wxMAXIMIZE)); | |
2187 | PyDict_SetItemString(d,"wxTHICK_FRAME", PyInt_FromLong((long) wxTHICK_FRAME)); | |
2188 | PyDict_SetItemString(d,"wxSYSTEM_MENU", PyInt_FromLong((long) wxSYSTEM_MENU)); | |
2189 | PyDict_SetItemString(d,"wxMINIMIZE_BOX", PyInt_FromLong((long) wxMINIMIZE_BOX)); | |
2190 | PyDict_SetItemString(d,"wxMAXIMIZE_BOX", PyInt_FromLong((long) wxMAXIMIZE_BOX)); | |
2191 | PyDict_SetItemString(d,"wxTINY_CAPTION_HORIZ", PyInt_FromLong((long) wxTINY_CAPTION_HORIZ)); | |
2192 | PyDict_SetItemString(d,"wxTINY_CAPTION_VERT", PyInt_FromLong((long) wxTINY_CAPTION_VERT)); | |
2193 | PyDict_SetItemString(d,"wxRESIZE_BOX", PyInt_FromLong((long) wxRESIZE_BOX)); | |
2194 | PyDict_SetItemString(d,"wxRESIZE_BORDER", PyInt_FromLong((long) wxRESIZE_BORDER)); | |
2195 | PyDict_SetItemString(d,"wxDIALOG_MODAL", PyInt_FromLong((long) wxDIALOG_MODAL)); | |
2196 | PyDict_SetItemString(d,"wxDIALOG_MODELESS", PyInt_FromLong((long) wxDIALOG_MODELESS)); | |
2197 | PyDict_SetItemString(d,"wxDEFAULT_FRAME_STYLE", PyInt_FromLong((long) wxDEFAULT_FRAME_STYLE)); | |
2198 | PyDict_SetItemString(d,"wxDEFAULT_DIALOG_STYLE", PyInt_FromLong((long) wxDEFAULT_DIALOG_STYLE)); | |
b8b8dda7 | 2199 | PyDict_SetItemString(d,"wxFRAME_TOOL_WINDOW", PyInt_FromLong((long) wxFRAME_TOOL_WINDOW)); |
bb0054cd | 2200 | PyDict_SetItemString(d,"wxFRAME_FLOAT_ON_PARENT", PyInt_FromLong((long) wxFRAME_FLOAT_ON_PARENT)); |
4c9993c3 | 2201 | PyDict_SetItemString(d,"wxFRAME_NO_WINDOW_MENU", PyInt_FromLong((long) wxFRAME_NO_WINDOW_MENU)); |
1afc06c2 RD |
2202 | PyDict_SetItemString(d,"wxED_CLIENT_MARGIN", PyInt_FromLong((long) wxED_CLIENT_MARGIN)); |
2203 | PyDict_SetItemString(d,"wxED_BUTTONS_BOTTOM", PyInt_FromLong((long) wxED_BUTTONS_BOTTOM)); | |
2204 | PyDict_SetItemString(d,"wxED_BUTTONS_RIGHT", PyInt_FromLong((long) wxED_BUTTONS_RIGHT)); | |
2205 | PyDict_SetItemString(d,"wxED_STATIC_LINE", PyInt_FromLong((long) wxED_STATIC_LINE)); | |
2206 | PyDict_SetItemString(d,"wxEXT_DIALOG_STYLE", PyInt_FromLong((long) wxEXT_DIALOG_STYLE)); | |
08127323 | 2207 | PyDict_SetItemString(d,"wxCLIP_CHILDREN", PyInt_FromLong((long) wxCLIP_CHILDREN)); |
8ab979d7 RD |
2208 | PyDict_SetItemString(d,"wxRETAINED", PyInt_FromLong((long) wxRETAINED)); |
2209 | PyDict_SetItemString(d,"wxBACKINGSTORE", PyInt_FromLong((long) wxBACKINGSTORE)); | |
2210 | PyDict_SetItemString(d,"wxTB_3DBUTTONS", PyInt_FromLong((long) wxTB_3DBUTTONS)); | |
2211 | PyDict_SetItemString(d,"wxTB_HORIZONTAL", PyInt_FromLong((long) wxTB_HORIZONTAL)); | |
2212 | PyDict_SetItemString(d,"wxTB_VERTICAL", PyInt_FromLong((long) wxTB_VERTICAL)); | |
9c039d08 | 2213 | PyDict_SetItemString(d,"wxTB_FLAT", PyInt_FromLong((long) wxTB_FLAT)); |
f0261a72 | 2214 | PyDict_SetItemString(d,"wxTB_DOCKABLE", PyInt_FromLong((long) wxTB_DOCKABLE)); |
8ab979d7 RD |
2215 | PyDict_SetItemString(d,"wxCOLOURED", PyInt_FromLong((long) wxCOLOURED)); |
2216 | PyDict_SetItemString(d,"wxFIXED_LENGTH", PyInt_FromLong((long) wxFIXED_LENGTH)); | |
2217 | PyDict_SetItemString(d,"wxALIGN_LEFT", PyInt_FromLong((long) wxALIGN_LEFT)); | |
694759cf RD |
2218 | PyDict_SetItemString(d,"wxALIGN_CENTER_HORIZONTAL", PyInt_FromLong((long) wxALIGN_CENTER_HORIZONTAL)); |
2219 | PyDict_SetItemString(d,"wxALIGN_CENTRE_HORIZONTAL", PyInt_FromLong((long) wxALIGN_CENTRE_HORIZONTAL)); | |
8ab979d7 | 2220 | PyDict_SetItemString(d,"wxALIGN_RIGHT", PyInt_FromLong((long) wxALIGN_RIGHT)); |
2f90df85 | 2221 | PyDict_SetItemString(d,"wxALIGN_BOTTOM", PyInt_FromLong((long) wxALIGN_BOTTOM)); |
694759cf RD |
2222 | PyDict_SetItemString(d,"wxALIGN_CENTER_VERTICAL", PyInt_FromLong((long) wxALIGN_CENTER_VERTICAL)); |
2223 | PyDict_SetItemString(d,"wxALIGN_CENTRE_VERTICAL", PyInt_FromLong((long) wxALIGN_CENTRE_VERTICAL)); | |
2f90df85 | 2224 | PyDict_SetItemString(d,"wxALIGN_TOP", PyInt_FromLong((long) wxALIGN_TOP)); |
694759cf RD |
2225 | PyDict_SetItemString(d,"wxALIGN_CENTER", PyInt_FromLong((long) wxALIGN_CENTER)); |
2226 | PyDict_SetItemString(d,"wxALIGN_CENTRE", PyInt_FromLong((long) wxALIGN_CENTRE)); | |
2227 | PyDict_SetItemString(d,"wxSHAPED", PyInt_FromLong((long) wxSHAPED)); | |
8ab979d7 RD |
2228 | PyDict_SetItemString(d,"wxLB_NEEDED_SB", PyInt_FromLong((long) wxLB_NEEDED_SB)); |
2229 | PyDict_SetItemString(d,"wxLB_ALWAYS_SB", PyInt_FromLong((long) wxLB_ALWAYS_SB)); | |
2230 | PyDict_SetItemString(d,"wxLB_SORT", PyInt_FromLong((long) wxLB_SORT)); | |
2231 | PyDict_SetItemString(d,"wxLB_SINGLE", PyInt_FromLong((long) wxLB_SINGLE)); | |
2232 | PyDict_SetItemString(d,"wxLB_MULTIPLE", PyInt_FromLong((long) wxLB_MULTIPLE)); | |
2233 | PyDict_SetItemString(d,"wxLB_EXTENDED", PyInt_FromLong((long) wxLB_EXTENDED)); | |
2234 | PyDict_SetItemString(d,"wxLB_OWNERDRAW", PyInt_FromLong((long) wxLB_OWNERDRAW)); | |
2235 | PyDict_SetItemString(d,"wxLB_HSCROLL", PyInt_FromLong((long) wxLB_HSCROLL)); | |
2236 | PyDict_SetItemString(d,"wxPROCESS_ENTER", PyInt_FromLong((long) wxPROCESS_ENTER)); | |
2237 | PyDict_SetItemString(d,"wxPASSWORD", PyInt_FromLong((long) wxPASSWORD)); | |
2238 | PyDict_SetItemString(d,"wxTE_PROCESS_ENTER", PyInt_FromLong((long) wxTE_PROCESS_ENTER)); | |
f6bcfd97 | 2239 | PyDict_SetItemString(d,"wxTE_PROCESS_TAB", PyInt_FromLong((long) wxTE_PROCESS_TAB)); |
8ab979d7 RD |
2240 | PyDict_SetItemString(d,"wxTE_PASSWORD", PyInt_FromLong((long) wxTE_PASSWORD)); |
2241 | PyDict_SetItemString(d,"wxTE_READONLY", PyInt_FromLong((long) wxTE_READONLY)); | |
8bf5d46e | 2242 | PyDict_SetItemString(d,"wxTE_RICH", PyInt_FromLong((long) wxTE_RICH)); |
8ab979d7 | 2243 | PyDict_SetItemString(d,"wxTE_MULTILINE", PyInt_FromLong((long) wxTE_MULTILINE)); |
06c0fba4 RD |
2244 | PyDict_SetItemString(d,"wxTE_AUTO_SCROLL", PyInt_FromLong((long) wxTE_AUTO_SCROLL)); |
2245 | PyDict_SetItemString(d,"wxTE_NO_VSCROLL", PyInt_FromLong((long) wxTE_NO_VSCROLL)); | |
8ab979d7 RD |
2246 | PyDict_SetItemString(d,"wxCB_SIMPLE", PyInt_FromLong((long) wxCB_SIMPLE)); |
2247 | PyDict_SetItemString(d,"wxCB_DROPDOWN", PyInt_FromLong((long) wxCB_DROPDOWN)); | |
2248 | PyDict_SetItemString(d,"wxCB_SORT", PyInt_FromLong((long) wxCB_SORT)); | |
2249 | PyDict_SetItemString(d,"wxCB_READONLY", PyInt_FromLong((long) wxCB_READONLY)); | |
2250 | PyDict_SetItemString(d,"wxRA_HORIZONTAL", PyInt_FromLong((long) wxRA_HORIZONTAL)); | |
2251 | PyDict_SetItemString(d,"wxRA_VERTICAL", PyInt_FromLong((long) wxRA_VERTICAL)); | |
62abd41e RD |
2252 | PyDict_SetItemString(d,"wxRA_SPECIFY_ROWS", PyInt_FromLong((long) wxRA_SPECIFY_ROWS)); |
2253 | PyDict_SetItemString(d,"wxRA_SPECIFY_COLS", PyInt_FromLong((long) wxRA_SPECIFY_COLS)); | |
8ab979d7 RD |
2254 | PyDict_SetItemString(d,"wxRB_GROUP", PyInt_FromLong((long) wxRB_GROUP)); |
2255 | PyDict_SetItemString(d,"wxGA_PROGRESSBAR", PyInt_FromLong((long) wxGA_PROGRESSBAR)); | |
2256 | PyDict_SetItemString(d,"wxGA_HORIZONTAL", PyInt_FromLong((long) wxGA_HORIZONTAL)); | |
2257 | PyDict_SetItemString(d,"wxGA_VERTICAL", PyInt_FromLong((long) wxGA_VERTICAL)); | |
bb0054cd | 2258 | PyDict_SetItemString(d,"wxGA_SMOOTH", PyInt_FromLong((long) wxGA_SMOOTH)); |
8ab979d7 RD |
2259 | PyDict_SetItemString(d,"wxSL_HORIZONTAL", PyInt_FromLong((long) wxSL_HORIZONTAL)); |
2260 | PyDict_SetItemString(d,"wxSL_VERTICAL", PyInt_FromLong((long) wxSL_VERTICAL)); | |
2261 | PyDict_SetItemString(d,"wxSL_AUTOTICKS", PyInt_FromLong((long) wxSL_AUTOTICKS)); | |
2262 | PyDict_SetItemString(d,"wxSL_LABELS", PyInt_FromLong((long) wxSL_LABELS)); | |
2263 | PyDict_SetItemString(d,"wxSL_LEFT", PyInt_FromLong((long) wxSL_LEFT)); | |
2264 | PyDict_SetItemString(d,"wxSL_TOP", PyInt_FromLong((long) wxSL_TOP)); | |
2265 | PyDict_SetItemString(d,"wxSL_RIGHT", PyInt_FromLong((long) wxSL_RIGHT)); | |
2266 | PyDict_SetItemString(d,"wxSL_BOTTOM", PyInt_FromLong((long) wxSL_BOTTOM)); | |
2267 | PyDict_SetItemString(d,"wxSL_BOTH", PyInt_FromLong((long) wxSL_BOTH)); | |
2268 | PyDict_SetItemString(d,"wxSL_SELRANGE", PyInt_FromLong((long) wxSL_SELRANGE)); | |
2269 | PyDict_SetItemString(d,"wxSB_HORIZONTAL", PyInt_FromLong((long) wxSB_HORIZONTAL)); | |
2270 | PyDict_SetItemString(d,"wxSB_VERTICAL", PyInt_FromLong((long) wxSB_VERTICAL)); | |
cf694132 | 2271 | PyDict_SetItemString(d,"wxST_SIZEGRIP", PyInt_FromLong((long) wxST_SIZEGRIP)); |
2abc0a0f | 2272 | PyDict_SetItemString(d,"wxST_NO_AUTORESIZE", PyInt_FromLong((long) wxST_NO_AUTORESIZE)); |
8ab979d7 RD |
2273 | PyDict_SetItemString(d,"wxBU_AUTODRAW", PyInt_FromLong((long) wxBU_AUTODRAW)); |
2274 | PyDict_SetItemString(d,"wxBU_NOAUTODRAW", PyInt_FromLong((long) wxBU_NOAUTODRAW)); | |
2275 | PyDict_SetItemString(d,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS)); | |
2276 | PyDict_SetItemString(d,"wxTR_EDIT_LABELS", PyInt_FromLong((long) wxTR_EDIT_LABELS)); | |
d5c9047a | 2277 | PyDict_SetItemString(d,"wxTR_LINES_AT_ROOT", PyInt_FromLong((long) wxTR_LINES_AT_ROOT)); |
8bf5d46e | 2278 | PyDict_SetItemString(d,"wxTR_MULTIPLE", PyInt_FromLong((long) wxTR_MULTIPLE)); |
1afc06c2 | 2279 | PyDict_SetItemString(d,"wxTR_SINGLE", PyInt_FromLong((long) wxTR_SINGLE)); |
8bf5d46e | 2280 | PyDict_SetItemString(d,"wxTR_HAS_VARIABLE_ROW_HEIGHT", PyInt_FromLong((long) wxTR_HAS_VARIABLE_ROW_HEIGHT)); |
8ab979d7 RD |
2281 | PyDict_SetItemString(d,"wxLC_ICON", PyInt_FromLong((long) wxLC_ICON)); |
2282 | PyDict_SetItemString(d,"wxLC_SMALL_ICON", PyInt_FromLong((long) wxLC_SMALL_ICON)); | |
2283 | PyDict_SetItemString(d,"wxLC_LIST", PyInt_FromLong((long) wxLC_LIST)); | |
2284 | PyDict_SetItemString(d,"wxLC_REPORT", PyInt_FromLong((long) wxLC_REPORT)); | |
2285 | PyDict_SetItemString(d,"wxLC_ALIGN_TOP", PyInt_FromLong((long) wxLC_ALIGN_TOP)); | |
2286 | PyDict_SetItemString(d,"wxLC_ALIGN_LEFT", PyInt_FromLong((long) wxLC_ALIGN_LEFT)); | |
2287 | PyDict_SetItemString(d,"wxLC_AUTOARRANGE", PyInt_FromLong((long) wxLC_AUTOARRANGE)); | |
2288 | PyDict_SetItemString(d,"wxLC_USER_TEXT", PyInt_FromLong((long) wxLC_USER_TEXT)); | |
2289 | PyDict_SetItemString(d,"wxLC_EDIT_LABELS", PyInt_FromLong((long) wxLC_EDIT_LABELS)); | |
2290 | PyDict_SetItemString(d,"wxLC_NO_HEADER", PyInt_FromLong((long) wxLC_NO_HEADER)); | |
2291 | PyDict_SetItemString(d,"wxLC_NO_SORT_HEADER", PyInt_FromLong((long) wxLC_NO_SORT_HEADER)); | |
2292 | PyDict_SetItemString(d,"wxLC_SINGLE_SEL", PyInt_FromLong((long) wxLC_SINGLE_SEL)); | |
2293 | PyDict_SetItemString(d,"wxLC_SORT_ASCENDING", PyInt_FromLong((long) wxLC_SORT_ASCENDING)); | |
2294 | PyDict_SetItemString(d,"wxLC_SORT_DESCENDING", PyInt_FromLong((long) wxLC_SORT_DESCENDING)); | |
2295 | PyDict_SetItemString(d,"wxLC_MASK_TYPE", PyInt_FromLong((long) wxLC_MASK_TYPE)); | |
2296 | PyDict_SetItemString(d,"wxLC_MASK_ALIGN", PyInt_FromLong((long) wxLC_MASK_ALIGN)); | |
2297 | PyDict_SetItemString(d,"wxLC_MASK_SORT", PyInt_FromLong((long) wxLC_MASK_SORT)); | |
2298 | PyDict_SetItemString(d,"wxSP_VERTICAL", PyInt_FromLong((long) wxSP_VERTICAL)); | |
2299 | PyDict_SetItemString(d,"wxSP_HORIZONTAL", PyInt_FromLong((long) wxSP_HORIZONTAL)); | |
2300 | PyDict_SetItemString(d,"wxSP_ARROW_KEYS", PyInt_FromLong((long) wxSP_ARROW_KEYS)); | |
2301 | PyDict_SetItemString(d,"wxSP_WRAP", PyInt_FromLong((long) wxSP_WRAP)); | |
2302 | PyDict_SetItemString(d,"wxSP_NOBORDER", PyInt_FromLong((long) wxSP_NOBORDER)); | |
2303 | PyDict_SetItemString(d,"wxSP_3D", PyInt_FromLong((long) wxSP_3D)); | |
2304 | PyDict_SetItemString(d,"wxSP_BORDER", PyInt_FromLong((long) wxSP_BORDER)); | |
9d8bd15f RD |
2305 | PyDict_SetItemString(d,"wxSP_LIVE_UPDATE", PyInt_FromLong((long) wxSP_LIVE_UPDATE)); |
2306 | PyDict_SetItemString(d,"wxSP_PERMIT_UNSPLIT", PyInt_FromLong((long) wxSP_PERMIT_UNSPLIT)); | |
8ab979d7 RD |
2307 | PyDict_SetItemString(d,"wxFLOOD_SURFACE", PyInt_FromLong((long) wxFLOOD_SURFACE)); |
2308 | PyDict_SetItemString(d,"wxFLOOD_BORDER", PyInt_FromLong((long) wxFLOOD_BORDER)); | |
2309 | PyDict_SetItemString(d,"wxODDEVEN_RULE", PyInt_FromLong((long) wxODDEVEN_RULE)); | |
2310 | PyDict_SetItemString(d,"wxWINDING_RULE", PyInt_FromLong((long) wxWINDING_RULE)); | |
2311 | PyDict_SetItemString(d,"wxTOOL_TOP", PyInt_FromLong((long) wxTOOL_TOP)); | |
2312 | PyDict_SetItemString(d,"wxTOOL_BOTTOM", PyInt_FromLong((long) wxTOOL_BOTTOM)); | |
2313 | PyDict_SetItemString(d,"wxTOOL_LEFT", PyInt_FromLong((long) wxTOOL_LEFT)); | |
2314 | PyDict_SetItemString(d,"wxTOOL_RIGHT", PyInt_FromLong((long) wxTOOL_RIGHT)); | |
2315 | PyDict_SetItemString(d,"wxOK", PyInt_FromLong((long) wxOK)); | |
2316 | PyDict_SetItemString(d,"wxYES_NO", PyInt_FromLong((long) wxYES_NO)); | |
2317 | PyDict_SetItemString(d,"wxCANCEL", PyInt_FromLong((long) wxCANCEL)); | |
2318 | PyDict_SetItemString(d,"wxYES", PyInt_FromLong((long) wxYES)); | |
2319 | PyDict_SetItemString(d,"wxNO", PyInt_FromLong((long) wxNO)); | |
1afc06c2 RD |
2320 | PyDict_SetItemString(d,"wxNO_DEFAULT", PyInt_FromLong((long) wxNO_DEFAULT)); |
2321 | PyDict_SetItemString(d,"wxYES_DEFAULT", PyInt_FromLong((long) wxYES_DEFAULT)); | |
8ab979d7 RD |
2322 | PyDict_SetItemString(d,"wxICON_EXCLAMATION", PyInt_FromLong((long) wxICON_EXCLAMATION)); |
2323 | PyDict_SetItemString(d,"wxICON_HAND", PyInt_FromLong((long) wxICON_HAND)); | |
2324 | PyDict_SetItemString(d,"wxICON_QUESTION", PyInt_FromLong((long) wxICON_QUESTION)); | |
2325 | PyDict_SetItemString(d,"wxICON_INFORMATION", PyInt_FromLong((long) wxICON_INFORMATION)); | |
2326 | PyDict_SetItemString(d,"wxICON_STOP", PyInt_FromLong((long) wxICON_STOP)); | |
2327 | PyDict_SetItemString(d,"wxICON_ASTERISK", PyInt_FromLong((long) wxICON_ASTERISK)); | |
2328 | PyDict_SetItemString(d,"wxICON_MASK", PyInt_FromLong((long) wxICON_MASK)); | |
1afc06c2 RD |
2329 | PyDict_SetItemString(d,"wxICON_WARNING", PyInt_FromLong((long) wxICON_WARNING)); |
2330 | PyDict_SetItemString(d,"wxICON_ERROR", PyInt_FromLong((long) wxICON_ERROR)); | |
2331 | PyDict_SetItemString(d,"wxFORWARD", PyInt_FromLong((long) wxFORWARD)); | |
2332 | PyDict_SetItemString(d,"wxBACKWARD", PyInt_FromLong((long) wxBACKWARD)); | |
2333 | PyDict_SetItemString(d,"wxRESET", PyInt_FromLong((long) wxRESET)); | |
2334 | PyDict_SetItemString(d,"wxHELP", PyInt_FromLong((long) wxHELP)); | |
2335 | PyDict_SetItemString(d,"wxMORE", PyInt_FromLong((long) wxMORE)); | |
2336 | PyDict_SetItemString(d,"wxSETUP", PyInt_FromLong((long) wxSETUP)); | |
8ab979d7 RD |
2337 | PyDict_SetItemString(d,"wxCENTRE", PyInt_FromLong((long) wxCENTRE)); |
2338 | PyDict_SetItemString(d,"wxCENTER", PyInt_FromLong((long) wxCENTER)); | |
2339 | PyDict_SetItemString(d,"wxSIZE_AUTO_WIDTH", PyInt_FromLong((long) wxSIZE_AUTO_WIDTH)); | |
2340 | PyDict_SetItemString(d,"wxSIZE_AUTO_HEIGHT", PyInt_FromLong((long) wxSIZE_AUTO_HEIGHT)); | |
2341 | PyDict_SetItemString(d,"wxSIZE_AUTO", PyInt_FromLong((long) wxSIZE_AUTO)); | |
2342 | PyDict_SetItemString(d,"wxSIZE_USE_EXISTING", PyInt_FromLong((long) wxSIZE_USE_EXISTING)); | |
2343 | PyDict_SetItemString(d,"wxSIZE_ALLOW_MINUS_ONE", PyInt_FromLong((long) wxSIZE_ALLOW_MINUS_ONE)); | |
8ab979d7 RD |
2344 | PyDict_SetItemString(d,"wxPORTRAIT", PyInt_FromLong((long) wxPORTRAIT)); |
2345 | PyDict_SetItemString(d,"wxLANDSCAPE", PyInt_FromLong((long) wxLANDSCAPE)); | |
bb0054cd RD |
2346 | PyDict_SetItemString(d,"wxPRINT_QUALITY_HIGH", PyInt_FromLong((long) wxPRINT_QUALITY_HIGH)); |
2347 | PyDict_SetItemString(d,"wxPRINT_QUALITY_MEDIUM", PyInt_FromLong((long) wxPRINT_QUALITY_MEDIUM)); | |
2348 | PyDict_SetItemString(d,"wxPRINT_QUALITY_LOW", PyInt_FromLong((long) wxPRINT_QUALITY_LOW)); | |
2349 | PyDict_SetItemString(d,"wxPRINT_QUALITY_DRAFT", PyInt_FromLong((long) wxPRINT_QUALITY_DRAFT)); | |
8ab979d7 RD |
2350 | PyDict_SetItemString(d,"wxID_OPEN", PyInt_FromLong((long) wxID_OPEN)); |
2351 | PyDict_SetItemString(d,"wxID_CLOSE", PyInt_FromLong((long) wxID_CLOSE)); | |
2352 | PyDict_SetItemString(d,"wxID_NEW", PyInt_FromLong((long) wxID_NEW)); | |
2353 | PyDict_SetItemString(d,"wxID_SAVE", PyInt_FromLong((long) wxID_SAVE)); | |
2354 | PyDict_SetItemString(d,"wxID_SAVEAS", PyInt_FromLong((long) wxID_SAVEAS)); | |
2355 | PyDict_SetItemString(d,"wxID_REVERT", PyInt_FromLong((long) wxID_REVERT)); | |
2356 | PyDict_SetItemString(d,"wxID_EXIT", PyInt_FromLong((long) wxID_EXIT)); | |
2357 | PyDict_SetItemString(d,"wxID_UNDO", PyInt_FromLong((long) wxID_UNDO)); | |
2358 | PyDict_SetItemString(d,"wxID_REDO", PyInt_FromLong((long) wxID_REDO)); | |
2359 | PyDict_SetItemString(d,"wxID_HELP", PyInt_FromLong((long) wxID_HELP)); | |
2360 | PyDict_SetItemString(d,"wxID_PRINT", PyInt_FromLong((long) wxID_PRINT)); | |
2361 | PyDict_SetItemString(d,"wxID_PRINT_SETUP", PyInt_FromLong((long) wxID_PRINT_SETUP)); | |
2362 | PyDict_SetItemString(d,"wxID_PREVIEW", PyInt_FromLong((long) wxID_PREVIEW)); | |
2363 | PyDict_SetItemString(d,"wxID_ABOUT", PyInt_FromLong((long) wxID_ABOUT)); | |
2364 | PyDict_SetItemString(d,"wxID_HELP_CONTENTS", PyInt_FromLong((long) wxID_HELP_CONTENTS)); | |
2365 | PyDict_SetItemString(d,"wxID_HELP_COMMANDS", PyInt_FromLong((long) wxID_HELP_COMMANDS)); | |
2366 | PyDict_SetItemString(d,"wxID_HELP_PROCEDURES", PyInt_FromLong((long) wxID_HELP_PROCEDURES)); | |
2367 | PyDict_SetItemString(d,"wxID_HELP_CONTEXT", PyInt_FromLong((long) wxID_HELP_CONTEXT)); | |
2368 | PyDict_SetItemString(d,"wxID_CUT", PyInt_FromLong((long) wxID_CUT)); | |
2369 | PyDict_SetItemString(d,"wxID_COPY", PyInt_FromLong((long) wxID_COPY)); | |
2370 | PyDict_SetItemString(d,"wxID_PASTE", PyInt_FromLong((long) wxID_PASTE)); | |
2371 | PyDict_SetItemString(d,"wxID_CLEAR", PyInt_FromLong((long) wxID_CLEAR)); | |
2372 | PyDict_SetItemString(d,"wxID_FIND", PyInt_FromLong((long) wxID_FIND)); | |
2373 | PyDict_SetItemString(d,"wxID_FILE1", PyInt_FromLong((long) wxID_FILE1)); | |
2374 | PyDict_SetItemString(d,"wxID_FILE2", PyInt_FromLong((long) wxID_FILE2)); | |
2375 | PyDict_SetItemString(d,"wxID_FILE3", PyInt_FromLong((long) wxID_FILE3)); | |
2376 | PyDict_SetItemString(d,"wxID_FILE4", PyInt_FromLong((long) wxID_FILE4)); | |
2377 | PyDict_SetItemString(d,"wxID_FILE5", PyInt_FromLong((long) wxID_FILE5)); | |
2378 | PyDict_SetItemString(d,"wxID_FILE6", PyInt_FromLong((long) wxID_FILE6)); | |
2379 | PyDict_SetItemString(d,"wxID_FILE7", PyInt_FromLong((long) wxID_FILE7)); | |
2380 | PyDict_SetItemString(d,"wxID_FILE8", PyInt_FromLong((long) wxID_FILE8)); | |
2381 | PyDict_SetItemString(d,"wxID_FILE9", PyInt_FromLong((long) wxID_FILE9)); | |
2382 | PyDict_SetItemString(d,"wxID_OK", PyInt_FromLong((long) wxID_OK)); | |
2383 | PyDict_SetItemString(d,"wxID_CANCEL", PyInt_FromLong((long) wxID_CANCEL)); | |
2384 | PyDict_SetItemString(d,"wxID_APPLY", PyInt_FromLong((long) wxID_APPLY)); | |
2385 | PyDict_SetItemString(d,"wxID_YES", PyInt_FromLong((long) wxID_YES)); | |
2386 | PyDict_SetItemString(d,"wxID_NO", PyInt_FromLong((long) wxID_NO)); | |
cf694132 | 2387 | PyDict_SetItemString(d,"wxID_STATIC", PyInt_FromLong((long) wxID_STATIC)); |
4c9993c3 | 2388 | PyDict_SetItemString(d,"wxID_SEPARATOR", PyInt_FromLong((long) wxID_SEPARATOR)); |
8ab979d7 RD |
2389 | PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP", PyInt_FromLong((long) wxBITMAP_TYPE_BMP)); |
2390 | PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_BMP_RESOURCE)); | |
2391 | PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO", PyInt_FromLong((long) wxBITMAP_TYPE_ICO)); | |
2392 | PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_ICO_RESOURCE)); | |
2393 | PyDict_SetItemString(d,"wxBITMAP_TYPE_CUR", PyInt_FromLong((long) wxBITMAP_TYPE_CUR)); | |
2394 | PyDict_SetItemString(d,"wxBITMAP_TYPE_CUR_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_CUR_RESOURCE)); | |
2395 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XBM", PyInt_FromLong((long) wxBITMAP_TYPE_XBM)); | |
2396 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XBM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XBM_DATA)); | |
2397 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XPM", PyInt_FromLong((long) wxBITMAP_TYPE_XPM)); | |
2398 | PyDict_SetItemString(d,"wxBITMAP_TYPE_XPM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XPM_DATA)); | |
2399 | PyDict_SetItemString(d,"wxBITMAP_TYPE_TIF", PyInt_FromLong((long) wxBITMAP_TYPE_TIF)); | |
2400 | PyDict_SetItemString(d,"wxBITMAP_TYPE_TIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_TIF_RESOURCE)); | |
2401 | PyDict_SetItemString(d,"wxBITMAP_TYPE_GIF", PyInt_FromLong((long) wxBITMAP_TYPE_GIF)); | |
2402 | PyDict_SetItemString(d,"wxBITMAP_TYPE_GIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_GIF_RESOURCE)); | |
2403 | PyDict_SetItemString(d,"wxBITMAP_TYPE_PNG", PyInt_FromLong((long) wxBITMAP_TYPE_PNG)); | |
2404 | PyDict_SetItemString(d,"wxBITMAP_TYPE_PNG_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_PNG_RESOURCE)); | |
2405 | PyDict_SetItemString(d,"wxBITMAP_TYPE_ANY", PyInt_FromLong((long) wxBITMAP_TYPE_ANY)); | |
2406 | PyDict_SetItemString(d,"wxBITMAP_TYPE_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_RESOURCE)); | |
cf694132 | 2407 | PyDict_SetItemString(d,"wxBITMAP_TYPE_JPEG", PyInt_FromLong((long) wxBITMAP_TYPE_JPEG)); |
9b3d3bc4 | 2408 | PyDict_SetItemString(d,"wxBITMAP_TYPE_PCX", PyInt_FromLong((long) wxBITMAP_TYPE_PCX)); |
8ab979d7 RD |
2409 | PyDict_SetItemString(d,"wxOPEN", PyInt_FromLong((long) wxOPEN)); |
2410 | PyDict_SetItemString(d,"wxSAVE", PyInt_FromLong((long) wxSAVE)); | |
2411 | PyDict_SetItemString(d,"wxHIDE_READONLY", PyInt_FromLong((long) wxHIDE_READONLY)); | |
2412 | PyDict_SetItemString(d,"wxOVERWRITE_PROMPT", PyInt_FromLong((long) wxOVERWRITE_PROMPT)); | |
2abc0a0f | 2413 | PyDict_SetItemString(d,"wxFILE_MUST_EXIST", PyInt_FromLong((long) wxFILE_MUST_EXIST)); |
f6bcfd97 | 2414 | PyDict_SetItemString(d,"wxMULTIPLE", PyInt_FromLong((long) wxMULTIPLE)); |
8ab979d7 RD |
2415 | PyDict_SetItemString(d,"wxACCEL_ALT", PyInt_FromLong((long) wxACCEL_ALT)); |
2416 | PyDict_SetItemString(d,"wxACCEL_CTRL", PyInt_FromLong((long) wxACCEL_CTRL)); | |
2417 | PyDict_SetItemString(d,"wxACCEL_SHIFT", PyInt_FromLong((long) wxACCEL_SHIFT)); | |
f6bcfd97 | 2418 | PyDict_SetItemString(d,"wxACCEL_NORMAL", PyInt_FromLong((long) wxACCEL_NORMAL)); |
bb0054cd RD |
2419 | PyDict_SetItemString(d,"wxPD_AUTO_HIDE", PyInt_FromLong((long) wxPD_AUTO_HIDE)); |
2420 | PyDict_SetItemString(d,"wxPD_APP_MODAL", PyInt_FromLong((long) wxPD_APP_MODAL)); | |
2421 | PyDict_SetItemString(d,"wxPD_CAN_ABORT", PyInt_FromLong((long) wxPD_CAN_ABORT)); | |
a08cbc01 RD |
2422 | PyDict_SetItemString(d,"wxPD_ELAPSED_TIME", PyInt_FromLong((long) wxPD_ELAPSED_TIME)); |
2423 | PyDict_SetItemString(d,"wxPD_ESTIMATED_TIME", PyInt_FromLong((long) wxPD_ESTIMATED_TIME)); | |
2424 | PyDict_SetItemString(d,"wxPD_REMAINING_TIME", PyInt_FromLong((long) wxPD_REMAINING_TIME)); | |
8bf5d46e | 2425 | PyDict_SetItemString(d,"wxMENU_TEAROFF", PyInt_FromLong((long) wxMENU_TEAROFF)); |
1afc06c2 | 2426 | PyDict_SetItemString(d,"wxMB_DOCKABLE", PyInt_FromLong((long) wxMB_DOCKABLE)); |
8bf5d46e | 2427 | PyDict_SetItemString(d,"wxNO_FULL_REPAINT_ON_RESIZE", PyInt_FromLong((long) wxNO_FULL_REPAINT_ON_RESIZE)); |
1afc06c2 RD |
2428 | PyDict_SetItemString(d,"wxLEFT", PyInt_FromLong((long) wxLEFT)); |
2429 | PyDict_SetItemString(d,"wxRIGHT", PyInt_FromLong((long) wxRIGHT)); | |
2430 | PyDict_SetItemString(d,"wxUP", PyInt_FromLong((long) wxUP)); | |
2431 | PyDict_SetItemString(d,"wxDOWN", PyInt_FromLong((long) wxDOWN)); | |
2432 | PyDict_SetItemString(d,"wxALL", PyInt_FromLong((long) wxALL)); | |
2433 | PyDict_SetItemString(d,"wxTOP", PyInt_FromLong((long) wxTOP)); | |
2434 | PyDict_SetItemString(d,"wxBOTTOM", PyInt_FromLong((long) wxBOTTOM)); | |
2435 | PyDict_SetItemString(d,"wxNORTH", PyInt_FromLong((long) wxNORTH)); | |
2436 | PyDict_SetItemString(d,"wxSOUTH", PyInt_FromLong((long) wxSOUTH)); | |
2437 | PyDict_SetItemString(d,"wxEAST", PyInt_FromLong((long) wxEAST)); | |
2438 | PyDict_SetItemString(d,"wxWEST", PyInt_FromLong((long) wxWEST)); | |
2439 | PyDict_SetItemString(d,"wxSTRETCH_NOT", PyInt_FromLong((long) wxSTRETCH_NOT)); | |
2440 | PyDict_SetItemString(d,"wxSHRINK", PyInt_FromLong((long) wxSHRINK)); | |
2441 | PyDict_SetItemString(d,"wxGROW", PyInt_FromLong((long) wxGROW)); | |
2442 | PyDict_SetItemString(d,"wxEXPAND", PyInt_FromLong((long) wxEXPAND)); | |
2443 | PyDict_SetItemString(d,"wxNB_FIXEDWIDTH", PyInt_FromLong((long) wxNB_FIXEDWIDTH)); | |
f0261a72 RD |
2444 | PyDict_SetItemString(d,"wxNB_LEFT", PyInt_FromLong((long) wxNB_LEFT)); |
2445 | PyDict_SetItemString(d,"wxNB_RIGHT", PyInt_FromLong((long) wxNB_RIGHT)); | |
2446 | PyDict_SetItemString(d,"wxNB_BOTTOM", PyInt_FromLong((long) wxNB_BOTTOM)); | |
1afc06c2 RD |
2447 | PyDict_SetItemString(d,"wxLI_HORIZONTAL", PyInt_FromLong((long) wxLI_HORIZONTAL)); |
2448 | PyDict_SetItemString(d,"wxLI_VERTICAL", PyInt_FromLong((long) wxLI_VERTICAL)); | |
2449 | PyDict_SetItemString(d,"wxHW_SCROLLBAR_NEVER", PyInt_FromLong((long) wxHW_SCROLLBAR_NEVER)); | |
2450 | PyDict_SetItemString(d,"wxHW_SCROLLBAR_AUTO", PyInt_FromLong((long) wxHW_SCROLLBAR_AUTO)); | |
8ab979d7 RD |
2451 | PyDict_SetItemString(d,"wxDEFAULT", PyInt_FromLong((long) wxDEFAULT)); |
2452 | PyDict_SetItemString(d,"wxDECORATIVE", PyInt_FromLong((long) wxDECORATIVE)); | |
2453 | PyDict_SetItemString(d,"wxROMAN", PyInt_FromLong((long) wxROMAN)); | |
2454 | PyDict_SetItemString(d,"wxSCRIPT", PyInt_FromLong((long) wxSCRIPT)); | |
2455 | PyDict_SetItemString(d,"wxSWISS", PyInt_FromLong((long) wxSWISS)); | |
2456 | PyDict_SetItemString(d,"wxMODERN", PyInt_FromLong((long) wxMODERN)); | |
2457 | PyDict_SetItemString(d,"wxTELETYPE", PyInt_FromLong((long) wxTELETYPE)); | |
2458 | PyDict_SetItemString(d,"wxVARIABLE", PyInt_FromLong((long) wxVARIABLE)); | |
2459 | PyDict_SetItemString(d,"wxFIXED", PyInt_FromLong((long) wxFIXED)); | |
2460 | PyDict_SetItemString(d,"wxNORMAL", PyInt_FromLong((long) wxNORMAL)); | |
2461 | PyDict_SetItemString(d,"wxLIGHT", PyInt_FromLong((long) wxLIGHT)); | |
2462 | PyDict_SetItemString(d,"wxBOLD", PyInt_FromLong((long) wxBOLD)); | |
2463 | PyDict_SetItemString(d,"wxITALIC", PyInt_FromLong((long) wxITALIC)); | |
2464 | PyDict_SetItemString(d,"wxSLANT", PyInt_FromLong((long) wxSLANT)); | |
2465 | PyDict_SetItemString(d,"wxSOLID", PyInt_FromLong((long) wxSOLID)); | |
2466 | PyDict_SetItemString(d,"wxDOT", PyInt_FromLong((long) wxDOT)); | |
2467 | PyDict_SetItemString(d,"wxLONG_DASH", PyInt_FromLong((long) wxLONG_DASH)); | |
2468 | PyDict_SetItemString(d,"wxSHORT_DASH", PyInt_FromLong((long) wxSHORT_DASH)); | |
2469 | PyDict_SetItemString(d,"wxDOT_DASH", PyInt_FromLong((long) wxDOT_DASH)); | |
2470 | PyDict_SetItemString(d,"wxUSER_DASH", PyInt_FromLong((long) wxUSER_DASH)); | |
2471 | PyDict_SetItemString(d,"wxTRANSPARENT", PyInt_FromLong((long) wxTRANSPARENT)); | |
2472 | PyDict_SetItemString(d,"wxSTIPPLE", PyInt_FromLong((long) wxSTIPPLE)); | |
2473 | PyDict_SetItemString(d,"wxBDIAGONAL_HATCH", PyInt_FromLong((long) wxBDIAGONAL_HATCH)); | |
2474 | PyDict_SetItemString(d,"wxCROSSDIAG_HATCH", PyInt_FromLong((long) wxCROSSDIAG_HATCH)); | |
2475 | PyDict_SetItemString(d,"wxFDIAGONAL_HATCH", PyInt_FromLong((long) wxFDIAGONAL_HATCH)); | |
2476 | PyDict_SetItemString(d,"wxCROSS_HATCH", PyInt_FromLong((long) wxCROSS_HATCH)); | |
2477 | PyDict_SetItemString(d,"wxHORIZONTAL_HATCH", PyInt_FromLong((long) wxHORIZONTAL_HATCH)); | |
2478 | PyDict_SetItemString(d,"wxVERTICAL_HATCH", PyInt_FromLong((long) wxVERTICAL_HATCH)); | |
2479 | PyDict_SetItemString(d,"wxJOIN_BEVEL", PyInt_FromLong((long) wxJOIN_BEVEL)); | |
2480 | PyDict_SetItemString(d,"wxJOIN_MITER", PyInt_FromLong((long) wxJOIN_MITER)); | |
2481 | PyDict_SetItemString(d,"wxJOIN_ROUND", PyInt_FromLong((long) wxJOIN_ROUND)); | |
2482 | PyDict_SetItemString(d,"wxCAP_ROUND", PyInt_FromLong((long) wxCAP_ROUND)); | |
2483 | PyDict_SetItemString(d,"wxCAP_PROJECTING", PyInt_FromLong((long) wxCAP_PROJECTING)); | |
2484 | PyDict_SetItemString(d,"wxCAP_BUTT", PyInt_FromLong((long) wxCAP_BUTT)); | |
2485 | PyDict_SetItemString(d,"wxCLEAR", PyInt_FromLong((long) wxCLEAR)); | |
2486 | PyDict_SetItemString(d,"wxXOR", PyInt_FromLong((long) wxXOR)); | |
2487 | PyDict_SetItemString(d,"wxINVERT", PyInt_FromLong((long) wxINVERT)); | |
2488 | PyDict_SetItemString(d,"wxOR_REVERSE", PyInt_FromLong((long) wxOR_REVERSE)); | |
2489 | PyDict_SetItemString(d,"wxAND_REVERSE", PyInt_FromLong((long) wxAND_REVERSE)); | |
2490 | PyDict_SetItemString(d,"wxCOPY", PyInt_FromLong((long) wxCOPY)); | |
2491 | PyDict_SetItemString(d,"wxAND", PyInt_FromLong((long) wxAND)); | |
2492 | PyDict_SetItemString(d,"wxAND_INVERT", PyInt_FromLong((long) wxAND_INVERT)); | |
2493 | PyDict_SetItemString(d,"wxNO_OP", PyInt_FromLong((long) wxNO_OP)); | |
2494 | PyDict_SetItemString(d,"wxNOR", PyInt_FromLong((long) wxNOR)); | |
2495 | PyDict_SetItemString(d,"wxEQUIV", PyInt_FromLong((long) wxEQUIV)); | |
2496 | PyDict_SetItemString(d,"wxSRC_INVERT", PyInt_FromLong((long) wxSRC_INVERT)); | |
2497 | PyDict_SetItemString(d,"wxOR_INVERT", PyInt_FromLong((long) wxOR_INVERT)); | |
2498 | PyDict_SetItemString(d,"wxNAND", PyInt_FromLong((long) wxNAND)); | |
2499 | PyDict_SetItemString(d,"wxOR", PyInt_FromLong((long) wxOR)); | |
2500 | PyDict_SetItemString(d,"wxSET", PyInt_FromLong((long) wxSET)); | |
8ab979d7 RD |
2501 | PyDict_SetItemString(d,"WXK_BACK", PyInt_FromLong((long) WXK_BACK)); |
2502 | PyDict_SetItemString(d,"WXK_TAB", PyInt_FromLong((long) WXK_TAB)); | |
2503 | PyDict_SetItemString(d,"WXK_RETURN", PyInt_FromLong((long) WXK_RETURN)); | |
2504 | PyDict_SetItemString(d,"WXK_ESCAPE", PyInt_FromLong((long) WXK_ESCAPE)); | |
2505 | PyDict_SetItemString(d,"WXK_SPACE", PyInt_FromLong((long) WXK_SPACE)); | |
2506 | PyDict_SetItemString(d,"WXK_DELETE", PyInt_FromLong((long) WXK_DELETE)); | |
2507 | PyDict_SetItemString(d,"WXK_START", PyInt_FromLong((long) WXK_START)); | |
2508 | PyDict_SetItemString(d,"WXK_LBUTTON", PyInt_FromLong((long) WXK_LBUTTON)); | |
2509 | PyDict_SetItemString(d,"WXK_RBUTTON", PyInt_FromLong((long) WXK_RBUTTON)); | |
2510 | PyDict_SetItemString(d,"WXK_CANCEL", PyInt_FromLong((long) WXK_CANCEL)); | |
2511 | PyDict_SetItemString(d,"WXK_MBUTTON", PyInt_FromLong((long) WXK_MBUTTON)); | |
2512 | PyDict_SetItemString(d,"WXK_CLEAR", PyInt_FromLong((long) WXK_CLEAR)); | |
2513 | PyDict_SetItemString(d,"WXK_SHIFT", PyInt_FromLong((long) WXK_SHIFT)); | |
2514 | PyDict_SetItemString(d,"WXK_CONTROL", PyInt_FromLong((long) WXK_CONTROL)); | |
2515 | PyDict_SetItemString(d,"WXK_MENU", PyInt_FromLong((long) WXK_MENU)); | |
2516 | PyDict_SetItemString(d,"WXK_PAUSE", PyInt_FromLong((long) WXK_PAUSE)); | |
2517 | PyDict_SetItemString(d,"WXK_CAPITAL", PyInt_FromLong((long) WXK_CAPITAL)); | |
2518 | PyDict_SetItemString(d,"WXK_PRIOR", PyInt_FromLong((long) WXK_PRIOR)); | |
2519 | PyDict_SetItemString(d,"WXK_NEXT", PyInt_FromLong((long) WXK_NEXT)); | |
2520 | PyDict_SetItemString(d,"WXK_END", PyInt_FromLong((long) WXK_END)); | |
2521 | PyDict_SetItemString(d,"WXK_HOME", PyInt_FromLong((long) WXK_HOME)); | |
2522 | PyDict_SetItemString(d,"WXK_LEFT", PyInt_FromLong((long) WXK_LEFT)); | |
2523 | PyDict_SetItemString(d,"WXK_UP", PyInt_FromLong((long) WXK_UP)); | |
2524 | PyDict_SetItemString(d,"WXK_RIGHT", PyInt_FromLong((long) WXK_RIGHT)); | |
2525 | PyDict_SetItemString(d,"WXK_DOWN", PyInt_FromLong((long) WXK_DOWN)); | |
2526 | PyDict_SetItemString(d,"WXK_SELECT", PyInt_FromLong((long) WXK_SELECT)); | |
2527 | PyDict_SetItemString(d,"WXK_PRINT", PyInt_FromLong((long) WXK_PRINT)); | |
2528 | PyDict_SetItemString(d,"WXK_EXECUTE", PyInt_FromLong((long) WXK_EXECUTE)); | |
2529 | PyDict_SetItemString(d,"WXK_SNAPSHOT", PyInt_FromLong((long) WXK_SNAPSHOT)); | |
2530 | PyDict_SetItemString(d,"WXK_INSERT", PyInt_FromLong((long) WXK_INSERT)); | |
2531 | PyDict_SetItemString(d,"WXK_HELP", PyInt_FromLong((long) WXK_HELP)); | |
2532 | PyDict_SetItemString(d,"WXK_NUMPAD0", PyInt_FromLong((long) WXK_NUMPAD0)); | |
2533 | PyDict_SetItemString(d,"WXK_NUMPAD1", PyInt_FromLong((long) WXK_NUMPAD1)); | |
2534 | PyDict_SetItemString(d,"WXK_NUMPAD2", PyInt_FromLong((long) WXK_NUMPAD2)); | |
2535 | PyDict_SetItemString(d,"WXK_NUMPAD3", PyInt_FromLong((long) WXK_NUMPAD3)); | |
2536 | PyDict_SetItemString(d,"WXK_NUMPAD4", PyInt_FromLong((long) WXK_NUMPAD4)); | |
2537 | PyDict_SetItemString(d,"WXK_NUMPAD5", PyInt_FromLong((long) WXK_NUMPAD5)); | |
2538 | PyDict_SetItemString(d,"WXK_NUMPAD6", PyInt_FromLong((long) WXK_NUMPAD6)); | |
2539 | PyDict_SetItemString(d,"WXK_NUMPAD7", PyInt_FromLong((long) WXK_NUMPAD7)); | |
2540 | PyDict_SetItemString(d,"WXK_NUMPAD8", PyInt_FromLong((long) WXK_NUMPAD8)); | |
2541 | PyDict_SetItemString(d,"WXK_NUMPAD9", PyInt_FromLong((long) WXK_NUMPAD9)); | |
2542 | PyDict_SetItemString(d,"WXK_MULTIPLY", PyInt_FromLong((long) WXK_MULTIPLY)); | |
2543 | PyDict_SetItemString(d,"WXK_ADD", PyInt_FromLong((long) WXK_ADD)); | |
2544 | PyDict_SetItemString(d,"WXK_SEPARATOR", PyInt_FromLong((long) WXK_SEPARATOR)); | |
2545 | PyDict_SetItemString(d,"WXK_SUBTRACT", PyInt_FromLong((long) WXK_SUBTRACT)); | |
2546 | PyDict_SetItemString(d,"WXK_DECIMAL", PyInt_FromLong((long) WXK_DECIMAL)); | |
2547 | PyDict_SetItemString(d,"WXK_DIVIDE", PyInt_FromLong((long) WXK_DIVIDE)); | |
2548 | PyDict_SetItemString(d,"WXK_F1", PyInt_FromLong((long) WXK_F1)); | |
2549 | PyDict_SetItemString(d,"WXK_F2", PyInt_FromLong((long) WXK_F2)); | |
2550 | PyDict_SetItemString(d,"WXK_F3", PyInt_FromLong((long) WXK_F3)); | |
2551 | PyDict_SetItemString(d,"WXK_F4", PyInt_FromLong((long) WXK_F4)); | |
2552 | PyDict_SetItemString(d,"WXK_F5", PyInt_FromLong((long) WXK_F5)); | |
2553 | PyDict_SetItemString(d,"WXK_F6", PyInt_FromLong((long) WXK_F6)); | |
2554 | PyDict_SetItemString(d,"WXK_F7", PyInt_FromLong((long) WXK_F7)); | |
2555 | PyDict_SetItemString(d,"WXK_F8", PyInt_FromLong((long) WXK_F8)); | |
2556 | PyDict_SetItemString(d,"WXK_F9", PyInt_FromLong((long) WXK_F9)); | |
2557 | PyDict_SetItemString(d,"WXK_F10", PyInt_FromLong((long) WXK_F10)); | |
2558 | PyDict_SetItemString(d,"WXK_F11", PyInt_FromLong((long) WXK_F11)); | |
2559 | PyDict_SetItemString(d,"WXK_F12", PyInt_FromLong((long) WXK_F12)); | |
2560 | PyDict_SetItemString(d,"WXK_F13", PyInt_FromLong((long) WXK_F13)); | |
2561 | PyDict_SetItemString(d,"WXK_F14", PyInt_FromLong((long) WXK_F14)); | |
2562 | PyDict_SetItemString(d,"WXK_F15", PyInt_FromLong((long) WXK_F15)); | |
2563 | PyDict_SetItemString(d,"WXK_F16", PyInt_FromLong((long) WXK_F16)); | |
2564 | PyDict_SetItemString(d,"WXK_F17", PyInt_FromLong((long) WXK_F17)); | |
2565 | PyDict_SetItemString(d,"WXK_F18", PyInt_FromLong((long) WXK_F18)); | |
2566 | PyDict_SetItemString(d,"WXK_F19", PyInt_FromLong((long) WXK_F19)); | |
2567 | PyDict_SetItemString(d,"WXK_F20", PyInt_FromLong((long) WXK_F20)); | |
2568 | PyDict_SetItemString(d,"WXK_F21", PyInt_FromLong((long) WXK_F21)); | |
2569 | PyDict_SetItemString(d,"WXK_F22", PyInt_FromLong((long) WXK_F22)); | |
2570 | PyDict_SetItemString(d,"WXK_F23", PyInt_FromLong((long) WXK_F23)); | |
2571 | PyDict_SetItemString(d,"WXK_F24", PyInt_FromLong((long) WXK_F24)); | |
2572 | PyDict_SetItemString(d,"WXK_NUMLOCK", PyInt_FromLong((long) WXK_NUMLOCK)); | |
2573 | PyDict_SetItemString(d,"WXK_SCROLL", PyInt_FromLong((long) WXK_SCROLL)); | |
2574 | PyDict_SetItemString(d,"WXK_PAGEUP", PyInt_FromLong((long) WXK_PAGEUP)); | |
2575 | PyDict_SetItemString(d,"WXK_PAGEDOWN", PyInt_FromLong((long) WXK_PAGEDOWN)); | |
9c039d08 | 2576 | PyDict_SetItemString(d,"wxCURSOR_NONE", PyInt_FromLong((long) wxCURSOR_NONE)); |
8ab979d7 RD |
2577 | PyDict_SetItemString(d,"wxCURSOR_ARROW", PyInt_FromLong((long) wxCURSOR_ARROW)); |
2578 | PyDict_SetItemString(d,"wxCURSOR_BULLSEYE", PyInt_FromLong((long) wxCURSOR_BULLSEYE)); | |
2579 | PyDict_SetItemString(d,"wxCURSOR_CHAR", PyInt_FromLong((long) wxCURSOR_CHAR)); | |
2580 | PyDict_SetItemString(d,"wxCURSOR_CROSS", PyInt_FromLong((long) wxCURSOR_CROSS)); | |
2581 | PyDict_SetItemString(d,"wxCURSOR_HAND", PyInt_FromLong((long) wxCURSOR_HAND)); | |
2582 | PyDict_SetItemString(d,"wxCURSOR_IBEAM", PyInt_FromLong((long) wxCURSOR_IBEAM)); | |
2583 | PyDict_SetItemString(d,"wxCURSOR_LEFT_BUTTON", PyInt_FromLong((long) wxCURSOR_LEFT_BUTTON)); | |
2584 | PyDict_SetItemString(d,"wxCURSOR_MAGNIFIER", PyInt_FromLong((long) wxCURSOR_MAGNIFIER)); | |
2585 | PyDict_SetItemString(d,"wxCURSOR_MIDDLE_BUTTON", PyInt_FromLong((long) wxCURSOR_MIDDLE_BUTTON)); | |
2586 | PyDict_SetItemString(d,"wxCURSOR_NO_ENTRY", PyInt_FromLong((long) wxCURSOR_NO_ENTRY)); | |
2587 | PyDict_SetItemString(d,"wxCURSOR_PAINT_BRUSH", PyInt_FromLong((long) wxCURSOR_PAINT_BRUSH)); | |
2588 | PyDict_SetItemString(d,"wxCURSOR_PENCIL", PyInt_FromLong((long) wxCURSOR_PENCIL)); | |
2589 | PyDict_SetItemString(d,"wxCURSOR_POINT_LEFT", PyInt_FromLong((long) wxCURSOR_POINT_LEFT)); | |
2590 | PyDict_SetItemString(d,"wxCURSOR_POINT_RIGHT", PyInt_FromLong((long) wxCURSOR_POINT_RIGHT)); | |
2591 | PyDict_SetItemString(d,"wxCURSOR_QUESTION_ARROW", PyInt_FromLong((long) wxCURSOR_QUESTION_ARROW)); | |
2592 | PyDict_SetItemString(d,"wxCURSOR_RIGHT_BUTTON", PyInt_FromLong((long) wxCURSOR_RIGHT_BUTTON)); | |
2593 | PyDict_SetItemString(d,"wxCURSOR_SIZENESW", PyInt_FromLong((long) wxCURSOR_SIZENESW)); | |
2594 | PyDict_SetItemString(d,"wxCURSOR_SIZENS", PyInt_FromLong((long) wxCURSOR_SIZENS)); | |
2595 | PyDict_SetItemString(d,"wxCURSOR_SIZENWSE", PyInt_FromLong((long) wxCURSOR_SIZENWSE)); | |
2596 | PyDict_SetItemString(d,"wxCURSOR_SIZEWE", PyInt_FromLong((long) wxCURSOR_SIZEWE)); | |
2597 | PyDict_SetItemString(d,"wxCURSOR_SIZING", PyInt_FromLong((long) wxCURSOR_SIZING)); | |
2598 | PyDict_SetItemString(d,"wxCURSOR_SPRAYCAN", PyInt_FromLong((long) wxCURSOR_SPRAYCAN)); | |
2599 | PyDict_SetItemString(d,"wxCURSOR_WAIT", PyInt_FromLong((long) wxCURSOR_WAIT)); | |
2600 | PyDict_SetItemString(d,"wxCURSOR_WATCH", PyInt_FromLong((long) wxCURSOR_WATCH)); | |
2601 | PyDict_SetItemString(d,"wxCURSOR_BLANK", PyInt_FromLong((long) wxCURSOR_BLANK)); | |
cf694132 RD |
2602 | PyDict_SetItemString(d,"wxPAPER_NONE", PyInt_FromLong((long) wxPAPER_NONE)); |
2603 | PyDict_SetItemString(d,"wxPAPER_LETTER", PyInt_FromLong((long) wxPAPER_LETTER)); | |
2604 | PyDict_SetItemString(d,"wxPAPER_LEGAL", PyInt_FromLong((long) wxPAPER_LEGAL)); | |
2605 | PyDict_SetItemString(d,"wxPAPER_A4", PyInt_FromLong((long) wxPAPER_A4)); | |
2606 | PyDict_SetItemString(d,"wxPAPER_CSHEET", PyInt_FromLong((long) wxPAPER_CSHEET)); | |
2607 | PyDict_SetItemString(d,"wxPAPER_DSHEET", PyInt_FromLong((long) wxPAPER_DSHEET)); | |
2608 | PyDict_SetItemString(d,"wxPAPER_ESHEET", PyInt_FromLong((long) wxPAPER_ESHEET)); | |
2609 | PyDict_SetItemString(d,"wxPAPER_LETTERSMALL", PyInt_FromLong((long) wxPAPER_LETTERSMALL)); | |
2610 | PyDict_SetItemString(d,"wxPAPER_TABLOID", PyInt_FromLong((long) wxPAPER_TABLOID)); | |
2611 | PyDict_SetItemString(d,"wxPAPER_LEDGER", PyInt_FromLong((long) wxPAPER_LEDGER)); | |
2612 | PyDict_SetItemString(d,"wxPAPER_STATEMENT", PyInt_FromLong((long) wxPAPER_STATEMENT)); | |
2613 | PyDict_SetItemString(d,"wxPAPER_EXECUTIVE", PyInt_FromLong((long) wxPAPER_EXECUTIVE)); | |
2614 | PyDict_SetItemString(d,"wxPAPER_A3", PyInt_FromLong((long) wxPAPER_A3)); | |
2615 | PyDict_SetItemString(d,"wxPAPER_A4SMALL", PyInt_FromLong((long) wxPAPER_A4SMALL)); | |
2616 | PyDict_SetItemString(d,"wxPAPER_A5", PyInt_FromLong((long) wxPAPER_A5)); | |
2617 | PyDict_SetItemString(d,"wxPAPER_B4", PyInt_FromLong((long) wxPAPER_B4)); | |
2618 | PyDict_SetItemString(d,"wxPAPER_B5", PyInt_FromLong((long) wxPAPER_B5)); | |
2619 | PyDict_SetItemString(d,"wxPAPER_FOLIO", PyInt_FromLong((long) wxPAPER_FOLIO)); | |
2620 | PyDict_SetItemString(d,"wxPAPER_QUARTO", PyInt_FromLong((long) wxPAPER_QUARTO)); | |
2621 | PyDict_SetItemString(d,"wxPAPER_10X14", PyInt_FromLong((long) wxPAPER_10X14)); | |
2622 | PyDict_SetItemString(d,"wxPAPER_11X17", PyInt_FromLong((long) wxPAPER_11X17)); | |
2623 | PyDict_SetItemString(d,"wxPAPER_NOTE", PyInt_FromLong((long) wxPAPER_NOTE)); | |
2624 | PyDict_SetItemString(d,"wxPAPER_ENV_9", PyInt_FromLong((long) wxPAPER_ENV_9)); | |
2625 | PyDict_SetItemString(d,"wxPAPER_ENV_10", PyInt_FromLong((long) wxPAPER_ENV_10)); | |
2626 | PyDict_SetItemString(d,"wxPAPER_ENV_11", PyInt_FromLong((long) wxPAPER_ENV_11)); | |
2627 | PyDict_SetItemString(d,"wxPAPER_ENV_12", PyInt_FromLong((long) wxPAPER_ENV_12)); | |
2628 | PyDict_SetItemString(d,"wxPAPER_ENV_14", PyInt_FromLong((long) wxPAPER_ENV_14)); | |
2629 | PyDict_SetItemString(d,"wxPAPER_ENV_DL", PyInt_FromLong((long) wxPAPER_ENV_DL)); | |
2630 | PyDict_SetItemString(d,"wxPAPER_ENV_C5", PyInt_FromLong((long) wxPAPER_ENV_C5)); | |
2631 | PyDict_SetItemString(d,"wxPAPER_ENV_C3", PyInt_FromLong((long) wxPAPER_ENV_C3)); | |
2632 | PyDict_SetItemString(d,"wxPAPER_ENV_C4", PyInt_FromLong((long) wxPAPER_ENV_C4)); | |
2633 | PyDict_SetItemString(d,"wxPAPER_ENV_C6", PyInt_FromLong((long) wxPAPER_ENV_C6)); | |
2634 | PyDict_SetItemString(d,"wxPAPER_ENV_C65", PyInt_FromLong((long) wxPAPER_ENV_C65)); | |
2635 | PyDict_SetItemString(d,"wxPAPER_ENV_B4", PyInt_FromLong((long) wxPAPER_ENV_B4)); | |
2636 | PyDict_SetItemString(d,"wxPAPER_ENV_B5", PyInt_FromLong((long) wxPAPER_ENV_B5)); | |
2637 | PyDict_SetItemString(d,"wxPAPER_ENV_B6", PyInt_FromLong((long) wxPAPER_ENV_B6)); | |
2638 | PyDict_SetItemString(d,"wxPAPER_ENV_ITALY", PyInt_FromLong((long) wxPAPER_ENV_ITALY)); | |
2639 | PyDict_SetItemString(d,"wxPAPER_ENV_MONARCH", PyInt_FromLong((long) wxPAPER_ENV_MONARCH)); | |
2640 | PyDict_SetItemString(d,"wxPAPER_ENV_PERSONAL", PyInt_FromLong((long) wxPAPER_ENV_PERSONAL)); | |
2641 | PyDict_SetItemString(d,"wxPAPER_FANFOLD_US", PyInt_FromLong((long) wxPAPER_FANFOLD_US)); | |
2642 | PyDict_SetItemString(d,"wxPAPER_FANFOLD_STD_GERMAN", PyInt_FromLong((long) wxPAPER_FANFOLD_STD_GERMAN)); | |
2643 | PyDict_SetItemString(d,"wxPAPER_FANFOLD_LGL_GERMAN", PyInt_FromLong((long) wxPAPER_FANFOLD_LGL_GERMAN)); | |
2644 | PyDict_SetItemString(d,"wxPAPER_ISO_B4", PyInt_FromLong((long) wxPAPER_ISO_B4)); | |
2645 | PyDict_SetItemString(d,"wxPAPER_JAPANESE_POSTCARD", PyInt_FromLong((long) wxPAPER_JAPANESE_POSTCARD)); | |
2646 | PyDict_SetItemString(d,"wxPAPER_9X11", PyInt_FromLong((long) wxPAPER_9X11)); | |
2647 | PyDict_SetItemString(d,"wxPAPER_10X11", PyInt_FromLong((long) wxPAPER_10X11)); | |
2648 | PyDict_SetItemString(d,"wxPAPER_15X11", PyInt_FromLong((long) wxPAPER_15X11)); | |
2649 | PyDict_SetItemString(d,"wxPAPER_ENV_INVITE", PyInt_FromLong((long) wxPAPER_ENV_INVITE)); | |
2650 | PyDict_SetItemString(d,"wxPAPER_LETTER_EXTRA", PyInt_FromLong((long) wxPAPER_LETTER_EXTRA)); | |
2651 | PyDict_SetItemString(d,"wxPAPER_LEGAL_EXTRA", PyInt_FromLong((long) wxPAPER_LEGAL_EXTRA)); | |
2652 | PyDict_SetItemString(d,"wxPAPER_TABLOID_EXTRA", PyInt_FromLong((long) wxPAPER_TABLOID_EXTRA)); | |
2653 | PyDict_SetItemString(d,"wxPAPER_A4_EXTRA", PyInt_FromLong((long) wxPAPER_A4_EXTRA)); | |
2654 | PyDict_SetItemString(d,"wxPAPER_LETTER_TRANSVERSE", PyInt_FromLong((long) wxPAPER_LETTER_TRANSVERSE)); | |
2655 | PyDict_SetItemString(d,"wxPAPER_A4_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A4_TRANSVERSE)); | |
2656 | PyDict_SetItemString(d,"wxPAPER_LETTER_EXTRA_TRANSVERSE", PyInt_FromLong((long) wxPAPER_LETTER_EXTRA_TRANSVERSE)); | |
2657 | PyDict_SetItemString(d,"wxPAPER_A_PLUS", PyInt_FromLong((long) wxPAPER_A_PLUS)); | |
2658 | PyDict_SetItemString(d,"wxPAPER_B_PLUS", PyInt_FromLong((long) wxPAPER_B_PLUS)); | |
2659 | PyDict_SetItemString(d,"wxPAPER_LETTER_PLUS", PyInt_FromLong((long) wxPAPER_LETTER_PLUS)); | |
2660 | PyDict_SetItemString(d,"wxPAPER_A4_PLUS", PyInt_FromLong((long) wxPAPER_A4_PLUS)); | |
2661 | PyDict_SetItemString(d,"wxPAPER_A5_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A5_TRANSVERSE)); | |
2662 | PyDict_SetItemString(d,"wxPAPER_B5_TRANSVERSE", PyInt_FromLong((long) wxPAPER_B5_TRANSVERSE)); | |
2663 | PyDict_SetItemString(d,"wxPAPER_A3_EXTRA", PyInt_FromLong((long) wxPAPER_A3_EXTRA)); | |
2664 | PyDict_SetItemString(d,"wxPAPER_A5_EXTRA", PyInt_FromLong((long) wxPAPER_A5_EXTRA)); | |
2665 | PyDict_SetItemString(d,"wxPAPER_B5_EXTRA", PyInt_FromLong((long) wxPAPER_B5_EXTRA)); | |
2666 | PyDict_SetItemString(d,"wxPAPER_A2", PyInt_FromLong((long) wxPAPER_A2)); | |
2667 | PyDict_SetItemString(d,"wxPAPER_A3_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A3_TRANSVERSE)); | |
2668 | PyDict_SetItemString(d,"wxPAPER_A3_EXTRA_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A3_EXTRA_TRANSVERSE)); | |
bb0054cd RD |
2669 | PyDict_SetItemString(d,"wxDUPLEX_SIMPLEX", PyInt_FromLong((long) wxDUPLEX_SIMPLEX)); |
2670 | PyDict_SetItemString(d,"wxDUPLEX_HORIZONTAL", PyInt_FromLong((long) wxDUPLEX_HORIZONTAL)); | |
2671 | PyDict_SetItemString(d,"wxDUPLEX_VERTICAL", PyInt_FromLong((long) wxDUPLEX_VERTICAL)); | |
8ab979d7 RD |
2672 | PyDict_SetItemString(d,"FALSE", PyInt_FromLong((long) 0)); |
2673 | PyDict_SetItemString(d,"false", PyInt_FromLong((long) 0)); | |
2674 | PyDict_SetItemString(d,"TRUE", PyInt_FromLong((long) 1)); | |
2675 | PyDict_SetItemString(d,"true", PyInt_FromLong((long) 1)); | |
0699c864 | 2676 | PyDict_SetItemString(d,"wxVERSION_STRING", PyString_FromString("wxVERSION_STRING")); |
8ab979d7 RD |
2677 | PyDict_SetItemString(d,"wxEVT_NULL", PyInt_FromLong((long) wxEVT_NULL)); |
2678 | PyDict_SetItemString(d,"wxEVT_FIRST", PyInt_FromLong((long) wxEVT_FIRST)); | |
2679 | PyDict_SetItemString(d,"wxEVT_COMMAND_BUTTON_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_BUTTON_CLICKED)); | |
2680 | PyDict_SetItemString(d,"wxEVT_COMMAND_CHECKBOX_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKBOX_CLICKED)); | |
2681 | PyDict_SetItemString(d,"wxEVT_COMMAND_CHOICE_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_CHOICE_SELECTED)); | |
2682 | PyDict_SetItemString(d,"wxEVT_COMMAND_LISTBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_SELECTED)); | |
2683 | PyDict_SetItemString(d,"wxEVT_COMMAND_LISTBOX_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_DOUBLECLICKED)); | |
2684 | PyDict_SetItemString(d,"wxEVT_COMMAND_CHECKLISTBOX_TOGGLED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKLISTBOX_TOGGLED)); | |
3af4e610 | 2685 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPINCTRL_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SPINCTRL_UPDATED)); |
8ab979d7 RD |
2686 | PyDict_SetItemString(d,"wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_UPDATED)); |
2687 | PyDict_SetItemString(d,"wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_ENTER)); | |
2688 | PyDict_SetItemString(d,"wxEVT_COMMAND_MENU_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_MENU_SELECTED)); | |
2689 | PyDict_SetItemString(d,"wxEVT_COMMAND_SLIDER_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SLIDER_UPDATED)); | |
2690 | PyDict_SetItemString(d,"wxEVT_COMMAND_RADIOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBOX_SELECTED)); | |
2691 | PyDict_SetItemString(d,"wxEVT_COMMAND_RADIOBUTTON_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBUTTON_SELECTED)); | |
2692 | PyDict_SetItemString(d,"wxEVT_COMMAND_SCROLLBAR_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SCROLLBAR_UPDATED)); | |
2693 | PyDict_SetItemString(d,"wxEVT_COMMAND_VLBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_VLBOX_SELECTED)); | |
2694 | PyDict_SetItemString(d,"wxEVT_COMMAND_COMBOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_COMBOBOX_SELECTED)); | |
2695 | PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_CLICKED)); | |
2696 | PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_RCLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_RCLICKED)); | |
2697 | PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_ENTER)); | |
2698 | PyDict_SetItemString(d,"wxEVT_SET_FOCUS", PyInt_FromLong((long) wxEVT_SET_FOCUS)); | |
2699 | PyDict_SetItemString(d,"wxEVT_KILL_FOCUS", PyInt_FromLong((long) wxEVT_KILL_FOCUS)); | |
2700 | PyDict_SetItemString(d,"wxEVT_LEFT_DOWN", PyInt_FromLong((long) wxEVT_LEFT_DOWN)); | |
2701 | PyDict_SetItemString(d,"wxEVT_LEFT_UP", PyInt_FromLong((long) wxEVT_LEFT_UP)); | |
2702 | PyDict_SetItemString(d,"wxEVT_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_MIDDLE_DOWN)); | |
2703 | PyDict_SetItemString(d,"wxEVT_MIDDLE_UP", PyInt_FromLong((long) wxEVT_MIDDLE_UP)); | |
2704 | PyDict_SetItemString(d,"wxEVT_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_RIGHT_DOWN)); | |
2705 | PyDict_SetItemString(d,"wxEVT_RIGHT_UP", PyInt_FromLong((long) wxEVT_RIGHT_UP)); | |
2706 | PyDict_SetItemString(d,"wxEVT_MOTION", PyInt_FromLong((long) wxEVT_MOTION)); | |
2707 | PyDict_SetItemString(d,"wxEVT_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_ENTER_WINDOW)); | |
2708 | PyDict_SetItemString(d,"wxEVT_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_LEAVE_WINDOW)); | |
2709 | PyDict_SetItemString(d,"wxEVT_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_LEFT_DCLICK)); | |
2710 | PyDict_SetItemString(d,"wxEVT_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_MIDDLE_DCLICK)); | |
2711 | PyDict_SetItemString(d,"wxEVT_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_RIGHT_DCLICK)); | |
2712 | PyDict_SetItemString(d,"wxEVT_NC_LEFT_DOWN", PyInt_FromLong((long) wxEVT_NC_LEFT_DOWN)); | |
2713 | PyDict_SetItemString(d,"wxEVT_NC_LEFT_UP", PyInt_FromLong((long) wxEVT_NC_LEFT_UP)); | |
2714 | PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DOWN)); | |
2715 | PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_UP", PyInt_FromLong((long) wxEVT_NC_MIDDLE_UP)); | |
2716 | PyDict_SetItemString(d,"wxEVT_NC_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_NC_RIGHT_DOWN)); | |
2717 | PyDict_SetItemString(d,"wxEVT_NC_RIGHT_UP", PyInt_FromLong((long) wxEVT_NC_RIGHT_UP)); | |
2718 | PyDict_SetItemString(d,"wxEVT_NC_MOTION", PyInt_FromLong((long) wxEVT_NC_MOTION)); | |
2719 | PyDict_SetItemString(d,"wxEVT_NC_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_NC_ENTER_WINDOW)); | |
2720 | PyDict_SetItemString(d,"wxEVT_NC_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_NC_LEAVE_WINDOW)); | |
2721 | PyDict_SetItemString(d,"wxEVT_NC_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_NC_LEFT_DCLICK)); | |
2722 | PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DCLICK)); | |
2723 | PyDict_SetItemString(d,"wxEVT_NC_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_NC_RIGHT_DCLICK)); | |
2724 | PyDict_SetItemString(d,"wxEVT_CHAR", PyInt_FromLong((long) wxEVT_CHAR)); | |
8bf5d46e RD |
2725 | PyDict_SetItemString(d,"wxEVT_KEY_DOWN", PyInt_FromLong((long) wxEVT_KEY_DOWN)); |
2726 | PyDict_SetItemString(d,"wxEVT_KEY_UP", PyInt_FromLong((long) wxEVT_KEY_UP)); | |
2727 | PyDict_SetItemString(d,"wxEVT_CHAR_HOOK", PyInt_FromLong((long) wxEVT_CHAR_HOOK)); | |
8ab979d7 RD |
2728 | PyDict_SetItemString(d,"wxEVT_SCROLL_TOP", PyInt_FromLong((long) wxEVT_SCROLL_TOP)); |
2729 | PyDict_SetItemString(d,"wxEVT_SCROLL_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLL_BOTTOM)); | |
2730 | PyDict_SetItemString(d,"wxEVT_SCROLL_LINEUP", PyInt_FromLong((long) wxEVT_SCROLL_LINEUP)); | |
2731 | PyDict_SetItemString(d,"wxEVT_SCROLL_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_LINEDOWN)); | |
2732 | PyDict_SetItemString(d,"wxEVT_SCROLL_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLL_PAGEUP)); | |
2733 | PyDict_SetItemString(d,"wxEVT_SCROLL_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_PAGEDOWN)); | |
2734 | PyDict_SetItemString(d,"wxEVT_SCROLL_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLL_THUMBTRACK)); | |
26b9cf27 | 2735 | PyDict_SetItemString(d,"wxEVT_SCROLL_THUMBRELEASE", PyInt_FromLong((long) wxEVT_SCROLL_THUMBRELEASE)); |
bb0054cd RD |
2736 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_TOP", PyInt_FromLong((long) wxEVT_SCROLLWIN_TOP)); |
2737 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLLWIN_BOTTOM)); | |
2738 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_LINEUP", PyInt_FromLong((long) wxEVT_SCROLLWIN_LINEUP)); | |
2739 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLLWIN_LINEDOWN)); | |
2740 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLLWIN_PAGEUP)); | |
2741 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLLWIN_PAGEDOWN)); | |
2742 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLLWIN_THUMBTRACK)); | |
26b9cf27 | 2743 | PyDict_SetItemString(d,"wxEVT_SCROLLWIN_THUMBRELEASE", PyInt_FromLong((long) wxEVT_SCROLLWIN_THUMBRELEASE)); |
8ab979d7 RD |
2744 | PyDict_SetItemString(d,"wxEVT_SIZE", PyInt_FromLong((long) wxEVT_SIZE)); |
2745 | PyDict_SetItemString(d,"wxEVT_MOVE", PyInt_FromLong((long) wxEVT_MOVE)); | |
2746 | PyDict_SetItemString(d,"wxEVT_CLOSE_WINDOW", PyInt_FromLong((long) wxEVT_CLOSE_WINDOW)); | |
2747 | PyDict_SetItemString(d,"wxEVT_END_SESSION", PyInt_FromLong((long) wxEVT_END_SESSION)); | |
2748 | PyDict_SetItemString(d,"wxEVT_QUERY_END_SESSION", PyInt_FromLong((long) wxEVT_QUERY_END_SESSION)); | |
2749 | PyDict_SetItemString(d,"wxEVT_ACTIVATE_APP", PyInt_FromLong((long) wxEVT_ACTIVATE_APP)); | |
2750 | PyDict_SetItemString(d,"wxEVT_POWER", PyInt_FromLong((long) wxEVT_POWER)); | |
8ab979d7 RD |
2751 | PyDict_SetItemString(d,"wxEVT_ACTIVATE", PyInt_FromLong((long) wxEVT_ACTIVATE)); |
2752 | PyDict_SetItemString(d,"wxEVT_CREATE", PyInt_FromLong((long) wxEVT_CREATE)); | |
2753 | PyDict_SetItemString(d,"wxEVT_DESTROY", PyInt_FromLong((long) wxEVT_DESTROY)); | |
2754 | PyDict_SetItemString(d,"wxEVT_SHOW", PyInt_FromLong((long) wxEVT_SHOW)); | |
2755 | PyDict_SetItemString(d,"wxEVT_ICONIZE", PyInt_FromLong((long) wxEVT_ICONIZE)); | |
2756 | PyDict_SetItemString(d,"wxEVT_MAXIMIZE", PyInt_FromLong((long) wxEVT_MAXIMIZE)); | |
2757 | PyDict_SetItemString(d,"wxEVT_MOUSE_CAPTURE_CHANGED", PyInt_FromLong((long) wxEVT_MOUSE_CAPTURE_CHANGED)); | |
2758 | PyDict_SetItemString(d,"wxEVT_PAINT", PyInt_FromLong((long) wxEVT_PAINT)); | |
2759 | PyDict_SetItemString(d,"wxEVT_ERASE_BACKGROUND", PyInt_FromLong((long) wxEVT_ERASE_BACKGROUND)); | |
2760 | PyDict_SetItemString(d,"wxEVT_NC_PAINT", PyInt_FromLong((long) wxEVT_NC_PAINT)); | |
2761 | PyDict_SetItemString(d,"wxEVT_PAINT_ICON", PyInt_FromLong((long) wxEVT_PAINT_ICON)); | |
2762 | PyDict_SetItemString(d,"wxEVT_MENU_CHAR", PyInt_FromLong((long) wxEVT_MENU_CHAR)); | |
2763 | PyDict_SetItemString(d,"wxEVT_MENU_INIT", PyInt_FromLong((long) wxEVT_MENU_INIT)); | |
2764 | PyDict_SetItemString(d,"wxEVT_MENU_HIGHLIGHT", PyInt_FromLong((long) wxEVT_MENU_HIGHLIGHT)); | |
2765 | PyDict_SetItemString(d,"wxEVT_POPUP_MENU_INIT", PyInt_FromLong((long) wxEVT_POPUP_MENU_INIT)); | |
2766 | PyDict_SetItemString(d,"wxEVT_CONTEXT_MENU", PyInt_FromLong((long) wxEVT_CONTEXT_MENU)); | |
2767 | PyDict_SetItemString(d,"wxEVT_SYS_COLOUR_CHANGED", PyInt_FromLong((long) wxEVT_SYS_COLOUR_CHANGED)); | |
2768 | PyDict_SetItemString(d,"wxEVT_SETTING_CHANGED", PyInt_FromLong((long) wxEVT_SETTING_CHANGED)); | |
2769 | PyDict_SetItemString(d,"wxEVT_QUERY_NEW_PALETTE", PyInt_FromLong((long) wxEVT_QUERY_NEW_PALETTE)); | |
2770 | PyDict_SetItemString(d,"wxEVT_PALETTE_CHANGED", PyInt_FromLong((long) wxEVT_PALETTE_CHANGED)); | |
2771 | PyDict_SetItemString(d,"wxEVT_JOY_BUTTON_DOWN", PyInt_FromLong((long) wxEVT_JOY_BUTTON_DOWN)); | |
2772 | PyDict_SetItemString(d,"wxEVT_JOY_BUTTON_UP", PyInt_FromLong((long) wxEVT_JOY_BUTTON_UP)); | |
2773 | PyDict_SetItemString(d,"wxEVT_JOY_MOVE", PyInt_FromLong((long) wxEVT_JOY_MOVE)); | |
2774 | PyDict_SetItemString(d,"wxEVT_JOY_ZMOVE", PyInt_FromLong((long) wxEVT_JOY_ZMOVE)); | |
2775 | PyDict_SetItemString(d,"wxEVT_DROP_FILES", PyInt_FromLong((long) wxEVT_DROP_FILES)); | |
2776 | PyDict_SetItemString(d,"wxEVT_DRAW_ITEM", PyInt_FromLong((long) wxEVT_DRAW_ITEM)); | |
2777 | PyDict_SetItemString(d,"wxEVT_MEASURE_ITEM", PyInt_FromLong((long) wxEVT_MEASURE_ITEM)); | |
2778 | PyDict_SetItemString(d,"wxEVT_COMPARE_ITEM", PyInt_FromLong((long) wxEVT_COMPARE_ITEM)); | |
2779 | PyDict_SetItemString(d,"wxEVT_INIT_DIALOG", PyInt_FromLong((long) wxEVT_INIT_DIALOG)); | |
2780 | PyDict_SetItemString(d,"wxEVT_IDLE", PyInt_FromLong((long) wxEVT_IDLE)); | |
2781 | PyDict_SetItemString(d,"wxEVT_UPDATE_UI", PyInt_FromLong((long) wxEVT_UPDATE_UI)); | |
2782 | PyDict_SetItemString(d,"wxEVT_COMMAND_LEFT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_CLICK)); | |
2783 | PyDict_SetItemString(d,"wxEVT_COMMAND_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_DCLICK)); | |
2784 | PyDict_SetItemString(d,"wxEVT_COMMAND_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_CLICK)); | |
2785 | PyDict_SetItemString(d,"wxEVT_COMMAND_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_DCLICK)); | |
2786 | PyDict_SetItemString(d,"wxEVT_COMMAND_SET_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_SET_FOCUS)); | |
2787 | PyDict_SetItemString(d,"wxEVT_COMMAND_KILL_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_KILL_FOCUS)); | |
2788 | PyDict_SetItemString(d,"wxEVT_COMMAND_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_ENTER)); | |
2789 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_DRAG)); | |
2790 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_RDRAG)); | |
2791 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT)); | |
2792 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_END_LABEL_EDIT)); | |
2793 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_TREE_DELETE_ITEM)); | |
2794 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_GET_INFO)); | |
2795 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SET_INFO)); | |
2796 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDED)); | |
2797 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDING)); | |
630d84f2 RD |
2798 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSED)); |
2799 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSING)); | |
8ab979d7 RD |
2800 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED)); |
2801 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING)); | |
2802 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN)); | |
2abc0a0f RD |
2803 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_ACTIVATED)); |
2804 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK)); | |
2805 | PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK)); | |
8ab979d7 RD |
2806 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG)); |
2807 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG)); | |
2808 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT)); | |
2809 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_END_LABEL_EDIT)); | |
2810 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ITEM)); | |
2811 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS)); | |
2812 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_GET_INFO)); | |
2813 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_SET_INFO)); | |
2814 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_SELECTED)); | |
2815 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_DESELECTED)); | |
2816 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_LIST_KEY_DOWN)); | |
2817 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_INSERT_ITEM)); | |
2818 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_CLICK)); | |
bb0054cd | 2819 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_ACTIVATED)); |
2f90df85 RD |
2820 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK)); |
2821 | PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK)); | |
8ab979d7 RD |
2822 | PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGED)); |
2823 | PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGING)); | |
2824 | PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)); | |
2825 | PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)); | |
bb0054cd RD |
2826 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING)); |
2827 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED)); | |
2828 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_UNSPLIT", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_UNSPLIT)); | |
2829 | PyDict_SetItemString(d,"wxEVT_COMMAND_SPLITTER_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_DOUBLECLICKED)); | |
2f90df85 | 2830 | PyDict_SetItemString(d,"wxEVT_NAVIGATION_KEY", PyInt_FromLong((long) wxEVT_NAVIGATION_KEY)); |
f6bcfd97 | 2831 | PyDict_SetItemString(d,"wxEVT_TIMER", PyInt_FromLong((long) wxEVT_TIMER)); |
2f90df85 | 2832 | PyDict_SetItemString(d,"__version__", PyString_FromString("0.0.0")); |
8ab979d7 RD |
2833 | PyDict_SetItemString(d,"cvar", SWIG_globals); |
2834 | SWIG_addvarlink(SWIG_globals,"wxPyDefaultPosition",_wrap_wxPyDefaultPosition_get, _wrap_wxPyDefaultPosition_set); | |
2835 | SWIG_addvarlink(SWIG_globals,"wxPyDefaultSize",_wrap_wxPyDefaultSize_get, _wrap_wxPyDefaultSize_set); | |
2836 | ||
8ab979d7 | 2837 | |
9c039d08 | 2838 | __wxPreStart(); // initialize the GUI toolkit, if needed. |
8ab979d7 | 2839 | |
8ab979d7 RD |
2840 | |
2841 | // Since these modules are all linked together, initialize them now | |
f6bcfd97 | 2842 | // because Python won't be able to find their shared library files, |
8ab979d7 RD |
2843 | // (since there isn't any.) |
2844 | initwindowsc(); | |
2845 | initwindows2c(); | |
2846 | initeventsc(); | |
2847 | initmiscc(); | |
bb0054cd | 2848 | initmisc2c(); |
8ab979d7 RD |
2849 | initgdic(); |
2850 | initmdic(); | |
2851 | initcontrolsc(); | |
2852 | initcontrols2c(); | |
2853 | initcmndlgsc(); | |
9c039d08 RD |
2854 | initstattoolc(); |
2855 | initframesc(); | |
08127323 | 2856 | initwindows3c(); |
cf694132 | 2857 | initimagec(); |
bb0054cd | 2858 | initprintfwc(); |
2f90df85 | 2859 | initsizersc(); |
b1462dfa | 2860 | initclip_dndc(); |
f6bcfd97 BP |
2861 | |
2862 | initgridc(); | |
2863 | initutilsc(); | |
2864 | inithtmlc(); | |
2865 | inithtmlhelpc(); | |
2866 | initcalendarc(); | |
1d99702e RD |
2867 | { |
2868 | int i; | |
2869 | for (i = 0; _swig_mapping[i].n1; i++) | |
2870 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
2871 | } | |
8ab979d7 | 2872 | } |