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