]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/msw/wx.cpp
wxDataObject documented
[wxWidgets.git] / utils / wxPython / src / msw / wx.cpp
1 /*
2 * FILE : msw/wx.cpp
3 *
4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Patch 5)
7 *
8 * Portions Copyright (c) 1995-1998
9 * The University of Utah and The Regents of the University of California.
10 * Permission is granted to distribute this file in any manner provided
11 * this notice remains intact.
12 *
13 * Do not make changes to this file--changes will be lost!
14 *
15 */
16
17
18 #define SWIGCODE
19 /* Implementation : PYTHON */
20
21 #define SWIGPYTHON
22 #include <string.h>
23 #include <stdlib.h>
24 /***********************************************************************
25 * $Header$
26 * swig_lib/python/python.cfg
27 *
28 * This file contains coded needed to add variable linking to the
29 * Python interpreter. C variables are added as a new kind of Python
30 * datatype.
31 *
32 * Also contains supporting code for building python under Windows
33 * and things like that.
34 *
35 * $Log$
36 * Revision 1.4 1999/01/14 14:33:56 VZ
37 * 1. NOT_FOUND -> wxNOT_FOUND
38 * 2. wxString::Left(), Right(), Before(), After() clean up
39 * 3. wxLocale updates
40 *
41 * Revision 1.3 1998/12/21 19:59:01 RD
42 *
43 * Now compiles with /GX- on MSW.
44 *
45 ************************************************************************/
46
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50 #include "Python.h"
51 #ifdef __cplusplus
52 }
53 #endif
54
55 /* Definitions for Windows/Unix exporting */
56 #if defined(__WIN32__)
57 # if defined(_MSC_VER)
58 # define SWIGEXPORT(a,b) __declspec(dllexport) a b
59 # else
60 # if defined(__BORLANDC__)
61 # define SWIGEXPORT(a,b) a _export b
62 # else
63 # define SWIGEXPORT(a,b) a b
64 # endif
65 # endif
66 #else
67 # define SWIGEXPORT(a,b) a b
68 #endif
69
70 #ifdef SWIG_GLOBAL
71 #ifdef __cplusplus
72 #define SWIGSTATIC extern "C"
73 #else
74 #define SWIGSTATIC
75 #endif
76 #endif
77
78 #ifndef SWIGSTATIC
79 #define SWIGSTATIC static
80 #endif
81
82 typedef struct {
83 char *name;
84 PyObject *(*get_attr)(void);
85 int (*set_attr)(PyObject *);
86 } swig_globalvar;
87
88 typedef struct swig_varlinkobject {
89 PyObject_HEAD
90 swig_globalvar **vars;
91 int nvars;
92 int maxvars;
93 } swig_varlinkobject;
94
95 /* ----------------------------------------------------------------------
96 swig_varlink_repr()
97
98 Function for python repr method
99 ---------------------------------------------------------------------- */
100
101 static PyObject *
102 swig_varlink_repr(swig_varlinkobject *v)
103 {
104 v = v;
105 return PyString_FromString("<Global variables>");
106 }
107
108 /* ---------------------------------------------------------------------
109 swig_varlink_print()
110
111 Print out all of the global variable names
112 --------------------------------------------------------------------- */
113
114 static int
115 swig_varlink_print(swig_varlinkobject *v, FILE *fp, int flags)
116 {
117
118 int i = 0;
119 flags = flags;
120 fprintf(fp,"Global variables { ");
121 while (v->vars[i]) {
122 fprintf(fp,"%s", v->vars[i]->name);
123 i++;
124 if (v->vars[i]) fprintf(fp,", ");
125 }
126 fprintf(fp," }\n");
127 return 0;
128 }
129
130 /* --------------------------------------------------------------------
131 swig_varlink_getattr
132
133 This function gets the value of a variable and returns it as a
134 PyObject. In our case, we'll be looking at the datatype and
135 converting into a number or string
136 -------------------------------------------------------------------- */
137
138 static PyObject *
139 swig_varlink_getattr(swig_varlinkobject *v, char *n)
140 {
141 int i = 0;
142 char temp[128];
143
144 while (v->vars[i]) {
145 if (strcmp(v->vars[i]->name,n) == 0) {
146 return (*v->vars[i]->get_attr)();
147 }
148 i++;
149 }
150 sprintf(temp,"C global variable %s not found.", n);
151 PyErr_SetString(PyExc_NameError,temp);
152 return NULL;
153 }
154
155 /* -------------------------------------------------------------------
156 swig_varlink_setattr()
157
158 This function sets the value of a variable.
159 ------------------------------------------------------------------- */
160
161 static int
162 swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p)
163 {
164 char temp[128];
165 int i = 0;
166 while (v->vars[i]) {
167 if (strcmp(v->vars[i]->name,n) == 0) {
168 return (*v->vars[i]->set_attr)(p);
169 }
170 i++;
171 }
172 sprintf(temp,"C global variable %s not found.", n);
173 PyErr_SetString(PyExc_NameError,temp);
174 return 1;
175 }
176
177 statichere PyTypeObject varlinktype = {
178 /* PyObject_HEAD_INIT(&PyType_Type) Note : This doesn't work on some machines */
179 PyObject_HEAD_INIT(0)
180 0,
181 "varlink", /* Type name */
182 sizeof(swig_varlinkobject), /* Basic size */
183 0, /* Itemsize */
184 0, /* Deallocator */
185 (printfunc) swig_varlink_print, /* Print */
186 (getattrfunc) swig_varlink_getattr, /* get attr */
187 (setattrfunc) swig_varlink_setattr, /* Set attr */
188 0, /* tp_compare */
189 (reprfunc) swig_varlink_repr, /* tp_repr */
190 0, /* tp_as_number */
191 0, /* tp_as_mapping*/
192 0, /* tp_hash */
193 };
194
195 /* Create a variable linking object for use later */
196
197 SWIGSTATIC PyObject *
198 SWIG_newvarlink(void)
199 {
200 swig_varlinkobject *result = 0;
201 result = PyMem_NEW(swig_varlinkobject,1);
202 varlinktype.ob_type = &PyType_Type; /* Patch varlinktype into a PyType */
203 result->ob_type = &varlinktype;
204 /* _Py_NewReference(result); Does not seem to be necessary */
205 result->nvars = 0;
206 result->maxvars = 64;
207 result->vars = (swig_globalvar **) malloc(64*sizeof(swig_globalvar *));
208 result->vars[0] = 0;
209 result->ob_refcnt = 0;
210 Py_XINCREF((PyObject *) result);
211 return ((PyObject*) result);
212 }
213
214 SWIGSTATIC void
215 SWIG_addvarlink(PyObject *p, char *name,
216 PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p))
217 {
218 swig_varlinkobject *v;
219 v= (swig_varlinkobject *) p;
220
221 if (v->nvars >= v->maxvars -1) {
222 v->maxvars = 2*v->maxvars;
223 v->vars = (swig_globalvar **) realloc(v->vars,v->maxvars*sizeof(swig_globalvar *));
224 if (v->vars == NULL) {
225 fprintf(stderr,"SWIG : Fatal error in initializing Python module.\n");
226 exit(1);
227 }
228 }
229 v->vars[v->nvars] = (swig_globalvar *) malloc(sizeof(swig_globalvar));
230 v->vars[v->nvars]->name = (char *) malloc(strlen(name)+1);
231 strcpy(v->vars[v->nvars]->name,name);
232 v->vars[v->nvars]->get_attr = get_attr;
233 v->vars[v->nvars]->set_attr = set_attr;
234 v->nvars++;
235 v->vars[v->nvars] = 0;
236 }
237
238
239
240 /*****************************************************************************
241 * $Header$
242 *
243 * swigptr.swg
244 *
245 * This file contains supporting code for the SWIG run-time type checking
246 * mechanism. The following functions are available :
247 *
248 * SWIG_RegisterMapping(char *origtype, char *newtype, void *(*cast)(void *));
249 *
250 * Registers a new type-mapping with the type-checker. origtype is the
251 * original datatype and newtype is an equivalent type. cast is optional
252 * pointer to a function to cast pointer values between types (this
253 * is typically used to cast pointers from derived classes to base classes in C++)
254 *
255 * SWIG_MakePtr(char *buffer, void *ptr, char *typestring);
256 *
257 * Makes a pointer string from a pointer and typestring. The result is returned
258 * in buffer which is assumed to hold enough space for the result.
259 *
260 * char * SWIG_GetPtr(char *buffer, void **ptr, char *type)
261 *
262 * Gets a pointer value from a string. If there is a type-mismatch, returns
263 * a character string to the received type. On success, returns NULL.
264 *
265 *
266 * You can remap these functions by making a file called "swigptr.swg" in
267 * your the same directory as the interface file you are wrapping.
268 *
269 * These functions are normally declared static, but this file can be
270 * can be used in a multi-module environment by redefining the symbol
271 * SWIGSTATIC.
272 *****************************************************************************/
273
274 #include <stdlib.h>
275
276 #ifdef SWIG_GLOBAL
277 #ifdef __cplusplus
278 #define SWIGSTATIC extern "C"
279 #else
280 #define SWIGSTATIC
281 #endif
282 #endif
283
284 #ifndef SWIGSTATIC
285 #define SWIGSTATIC static
286 #endif
287
288
289 /* SWIG pointer structure */
290
291 typedef struct SwigPtrType {
292 char *name; /* Datatype name */
293 int len; /* Length (used for optimization) */
294 void *(*cast)(void *); /* Pointer casting function */
295 struct SwigPtrType *next; /* Linked list pointer */
296 } SwigPtrType;
297
298 /* Pointer cache structure */
299
300 typedef struct {
301 int stat; /* Status (valid) bit */
302 SwigPtrType *tp; /* Pointer to type structure */
303 char name[256]; /* Given datatype name */
304 char mapped[256]; /* Equivalent name */
305 } SwigCacheType;
306
307 /* Some variables */
308
309 static int SwigPtrMax = 64; /* Max entries that can be currently held */
310 /* This value may be adjusted dynamically */
311 static int SwigPtrN = 0; /* Current number of entries */
312 static int SwigPtrSort = 0; /* Status flag indicating sort */
313 static int SwigStart[256]; /* Starting positions of types */
314
315 /* Pointer table */
316 static SwigPtrType *SwigPtrTable = 0; /* Table containing pointer equivalences */
317
318 /* Cached values */
319
320 #define SWIG_CACHESIZE 8
321 #define SWIG_CACHEMASK 0x7
322 static SwigCacheType SwigCache[SWIG_CACHESIZE];
323 static int SwigCacheIndex = 0;
324 static int SwigLastCache = 0;
325
326 /* Sort comparison function */
327 static int swigsort(const void *data1, const void *data2) {
328 SwigPtrType *d1 = (SwigPtrType *) data1;
329 SwigPtrType *d2 = (SwigPtrType *) data2;
330 return strcmp(d1->name,d2->name);
331 }
332
333 /* Binary Search function */
334 static int swigcmp(const void *key, const void *data) {
335 char *k = (char *) key;
336 SwigPtrType *d = (SwigPtrType *) data;
337 return strncmp(k,d->name,d->len);
338 }
339
340 /* Register a new datatype with the type-checker */
341
342 SWIGSTATIC
343 void SWIG_RegisterMapping(char *origtype, char *newtype, void *(*cast)(void *)) {
344
345 int i;
346 SwigPtrType *t = 0,*t1;
347
348 /* Allocate the pointer table if necessary */
349
350 if (!SwigPtrTable) {
351 SwigPtrTable = (SwigPtrType *) malloc(SwigPtrMax*sizeof(SwigPtrType));
352 SwigPtrN = 0;
353 }
354 /* Grow the table */
355 if (SwigPtrN >= SwigPtrMax) {
356 SwigPtrMax = 2*SwigPtrMax;
357 SwigPtrTable = (SwigPtrType *) realloc((char *) SwigPtrTable,SwigPtrMax*sizeof(SwigPtrType));
358 }
359 for (i = 0; i < SwigPtrN; i++)
360 if (strcmp(SwigPtrTable[i].name,origtype) == 0) {
361 t = &SwigPtrTable[i];
362 break;
363 }
364 if (!t) {
365 t = &SwigPtrTable[SwigPtrN];
366 t->name = origtype;
367 t->len = strlen(t->name);
368 t->cast = 0;
369 t->next = 0;
370 SwigPtrN++;
371 }
372
373 /* Check for existing entry */
374
375 while (t->next) {
376 if ((strcmp(t->name,newtype) == 0)) {
377 if (cast) t->cast = cast;
378 return;
379 }
380 t = t->next;
381 }
382
383 /* Now place entry (in sorted order) */
384
385 t1 = (SwigPtrType *) malloc(sizeof(SwigPtrType));
386 t1->name = newtype;
387 t1->len = strlen(t1->name);
388 t1->cast = cast;
389 t1->next = 0;
390 t->next = t1;
391 SwigPtrSort = 0;
392 }
393
394 /* Make a pointer value string */
395
396 SWIGSTATIC
397 void SWIG_MakePtr(char *_c, const void *_ptr, char *type) {
398 static char _hex[16] =
399 {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
400 'a', 'b', 'c', 'd', 'e', 'f'};
401 unsigned long _p, _s;
402 char _result[20], *_r; /* Note : a 64-bit hex number = 16 digits */
403 _r = _result;
404 _p = (unsigned long) _ptr;
405 if (_p > 0) {
406 while (_p > 0) {
407 _s = _p & 0xf;
408 *(_r++) = _hex[_s];
409 _p = _p >> 4;
410 }
411 *_r = '_';
412 while (_r >= _result)
413 *(_c++) = *(_r--);
414 } else {
415 strcpy (_c, "NULL");
416 }
417 if (_ptr)
418 strcpy (_c, type);
419 }
420
421 /* Define for backwards compatibility */
422
423 #define _swig_make_hex SWIG_MakePtr
424
425 /* Function for getting a pointer value */
426
427 SWIGSTATIC
428 char *SWIG_GetPtr(char *_c, void **ptr, char *_t)
429 {
430 unsigned long _p;
431 char temp_type[256];
432 char *name;
433 int i, len;
434 SwigPtrType *sp,*tp;
435 SwigCacheType *cache;
436 int start, end;
437 _p = 0;
438
439 /* Pointer values must start with leading underscore */
440 if (*_c == '_') {
441 _c++;
442 /* Extract hex value from pointer */
443 while (*_c) {
444 if ((*_c >= '0') && (*_c <= '9'))
445 _p = (_p << 4) + (*_c - '0');
446 else if ((*_c >= 'a') && (*_c <= 'f'))
447 _p = (_p << 4) + ((*_c - 'a') + 10);
448 else
449 break;
450 _c++;
451 }
452
453 if (_t) {
454 if (strcmp(_t,_c)) {
455 if (!SwigPtrSort) {
456 qsort((void *) SwigPtrTable, SwigPtrN, sizeof(SwigPtrType), swigsort);
457 for (i = 0; i < 256; i++) {
458 SwigStart[i] = SwigPtrN;
459 }
460 for (i = SwigPtrN-1; i >= 0; i--) {
461 SwigStart[(int) (SwigPtrTable[i].name[1])] = i;
462 }
463 for (i = 255; i >= 1; i--) {
464 if (SwigStart[i-1] > SwigStart[i])
465 SwigStart[i-1] = SwigStart[i];
466 }
467 SwigPtrSort = 1;
468 for (i = 0; i < SWIG_CACHESIZE; i++)
469 SwigCache[i].stat = 0;
470 }
471
472 /* First check cache for matches. Uses last cache value as starting point */
473 cache = &SwigCache[SwigLastCache];
474 for (i = 0; i < SWIG_CACHESIZE; i++) {
475 if (cache->stat) {
476 if (strcmp(_t,cache->name) == 0) {
477 if (strcmp(_c,cache->mapped) == 0) {
478 cache->stat++;
479 *ptr = (void *) _p;
480 if (cache->tp->cast) *ptr = (*(cache->tp->cast))(*ptr);
481 return (char *) 0;
482 }
483 }
484 }
485 SwigLastCache = (SwigLastCache+1) & SWIG_CACHEMASK;
486 if (!SwigLastCache) cache = SwigCache;
487 else cache++;
488 }
489 /* We have a type mismatch. Will have to look through our type
490 mapping table to figure out whether or not we can accept this datatype */
491
492 start = SwigStart[(int) _t[1]];
493 end = SwigStart[(int) _t[1]+1];
494 sp = &SwigPtrTable[start];
495 while (start < end) {
496 if (swigcmp(_t,sp) == 0) break;
497 sp++;
498 start++;
499 }
500 if (start >= end) sp = 0;
501 /* Try to find a match for this */
502 if (sp) {
503 while (swigcmp(_t,sp) == 0) {
504 name = sp->name;
505 len = sp->len;
506 tp = sp->next;
507 /* Try to find entry for our given datatype */
508 while(tp) {
509 if (tp->len >= 255) {
510 return _c;
511 }
512 strcpy(temp_type,tp->name);
513 strncat(temp_type,_t+len,255-tp->len);
514 if (strcmp(_c,temp_type) == 0) {
515
516 strcpy(SwigCache[SwigCacheIndex].mapped,_c);
517 strcpy(SwigCache[SwigCacheIndex].name,_t);
518 SwigCache[SwigCacheIndex].stat = 1;
519 SwigCache[SwigCacheIndex].tp = tp;
520 SwigCacheIndex = SwigCacheIndex & SWIG_CACHEMASK;
521
522 /* Get pointer value */
523 *ptr = (void *) _p;
524 if (tp->cast) *ptr = (*(tp->cast))(*ptr);
525 return (char *) 0;
526 }
527 tp = tp->next;
528 }
529 sp++;
530 /* Hmmm. Didn't find it this time */
531 }
532 }
533 /* Didn't find any sort of match for this data.
534 Get the pointer value and return the received type */
535 *ptr = (void *) _p;
536 return _c;
537 } else {
538 /* Found a match on the first try. Return pointer value */
539 *ptr = (void *) _p;
540 return (char *) 0;
541 }
542 } else {
543 /* No type specified. Good luck */
544 *ptr = (void *) _p;
545 return (char *) 0;
546 }
547 } else {
548 if (strcmp (_c, "NULL") == 0) {
549 *ptr = (void *) 0;
550 return (char *) 0;
551 }
552 *ptr = (void *) 0;
553 return _c;
554 }
555 }
556
557 /* Compatibility mode */
558
559 #define _swig_get_hex SWIG_GetPtr
560
561 #define SWIG_init initwxc
562
563 #define SWIG_name "wxc"
564
565 #include "helpers.h"
566
567 static PyObject* l_output_helper(PyObject* target, PyObject* o) {
568 PyObject* o2;
569 if (!target) {
570 target = o;
571 } else if (target == Py_None) {
572 Py_DECREF(Py_None);
573 target = o;
574 } else {
575 if (!PyList_Check(target)) {
576 o2 = target;
577 target = PyList_New(0);
578 PyList_Append(target, o2);
579 Py_XDECREF(o2);
580 }
581 PyList_Append(target,o);
582 Py_XDECREF(o);
583 }
584 return target;
585 }
586
587 static PyObject* t_output_helper(PyObject* target, PyObject* o) {
588 PyObject* o2;
589 PyObject* o3;
590
591 if (!target) {
592 target = o;
593 } else if (target == Py_None) {
594 Py_DECREF(Py_None);
595 target = o;
596 } else {
597 if (!PyTuple_Check(target)) {
598 o2 = target;
599 target = PyTuple_New(1);
600 PyTuple_SetItem(target, 0, o2);
601 }
602 o3 = PyTuple_New(1);
603 PyTuple_SetItem(o3, 0, o);
604
605 o2 = target;
606 target = PySequence_Concat(o2, o3);
607 Py_DECREF(o2);
608 Py_DECREF(o3);
609 }
610 return target;
611 }
612
613
614 extern byte* byte_LIST_helper(PyObject* source);
615 extern int* int_LIST_helper(PyObject* source);
616 extern long* long_LIST_helper(PyObject* source);
617 extern char** string_LIST_helper(PyObject* source);
618 extern wxPoint* wxPoint_LIST_helper(PyObject* source);
619 extern wxBitmap** wxBitmap_LIST_helper(PyObject* source);
620 extern wxString* wxString_LIST_helper(PyObject* source);
621 extern wxAcceleratorEntry* wxAcceleratorEntry_LIST_helper(PyObject* source);
622
623
624 static char* wxStringErrorMsg = "string type is required for parameter";
625
626 extern "C" SWIGEXPORT(void,initwindowsc)();
627 extern "C" SWIGEXPORT(void,initwindows2c)();
628 extern "C" SWIGEXPORT(void,initeventsc)();
629 extern "C" SWIGEXPORT(void,initmiscc)();
630 extern "C" SWIGEXPORT(void,initgdic)();
631 extern "C" SWIGEXPORT(void,initmdic)();
632 extern "C" SWIGEXPORT(void,initcontrolsc)();
633 extern "C" SWIGEXPORT(void,initcontrols2c)();
634 extern "C" SWIGEXPORT(void,initcmndlgsc)();
635 extern "C" SWIGEXPORT(void,initstattoolc)();
636 extern "C" SWIGEXPORT(void,initframesc)();
637 extern "C" SWIGEXPORT(void,initutilsc)();
638
639 static int _wrap_wxPyDefaultPosition_set(PyObject *val) {
640
641 PyErr_SetString(PyExc_TypeError,"Variable wxPyDefaultPosition is read-only.");
642 return 1;
643 }
644
645 static PyObject *_wrap_wxPyDefaultPosition_get() {
646 PyObject * pyobj;
647 char ptemp[128];
648
649 SWIG_MakePtr(ptemp,(char *) &wxPyDefaultPosition,"_wxPoint_p");
650 pyobj = PyString_FromString(ptemp);
651 return pyobj;
652 }
653
654 static int _wrap_wxPyDefaultSize_set(PyObject *val) {
655
656 PyErr_SetString(PyExc_TypeError,"Variable wxPyDefaultSize is read-only.");
657 return 1;
658 }
659
660 static PyObject *_wrap_wxPyDefaultSize_get() {
661 PyObject * pyobj;
662 char ptemp[128];
663
664 SWIG_MakePtr(ptemp,(char *) &wxPyDefaultSize,"_wxSize_p");
665 pyobj = PyString_FromString(ptemp);
666 return pyobj;
667 }
668
669 static void *SwigwxPyAppTowxEvtHandler(void *ptr) {
670 wxPyApp *src;
671 wxEvtHandler *dest;
672 src = (wxPyApp *) ptr;
673 dest = (wxEvtHandler *) src;
674 return (void *) dest;
675 }
676
677 static wxPyApp *new_wxPyApp() {
678 wxPythonApp = new wxPyApp();
679 return wxPythonApp;
680 }
681
682 static PyObject *_wrap_new_wxPyApp(PyObject *self, PyObject *args) {
683 PyObject * _resultobj;
684 wxPyApp * _result;
685 char _ptemp[128];
686
687 self = self;
688 if(!PyArg_ParseTuple(args,":new_wxPyApp"))
689 return NULL;
690 _result = (wxPyApp *)new_wxPyApp();
691 SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyApp_p");
692 _resultobj = Py_BuildValue("s",_ptemp);
693 return _resultobj;
694 }
695
696 #define wxPyApp_GetAppName(_swigobj) (_swigobj->GetAppName())
697 static PyObject *_wrap_wxPyApp_GetAppName(PyObject *self, PyObject *args) {
698 PyObject * _resultobj;
699 wxString * _result;
700 wxPyApp * _arg0;
701 char * _argc0 = 0;
702
703 self = self;
704 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetAppName",&_argc0))
705 return NULL;
706 if (_argc0) {
707 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
708 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetAppName. Expected _wxPyApp_p.");
709 return NULL;
710 }
711 }
712 _result = new wxString (wxPyApp_GetAppName(_arg0));
713 {
714 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
715 }
716 {
717 delete _result;
718 }
719 return _resultobj;
720 }
721
722 #define wxPyApp_GetAuto3D(_swigobj) (_swigobj->GetAuto3D())
723 static PyObject *_wrap_wxPyApp_GetAuto3D(PyObject *self, PyObject *args) {
724 PyObject * _resultobj;
725 bool _result;
726 wxPyApp * _arg0;
727 char * _argc0 = 0;
728
729 self = self;
730 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetAuto3D",&_argc0))
731 return NULL;
732 if (_argc0) {
733 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
734 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetAuto3D. Expected _wxPyApp_p.");
735 return NULL;
736 }
737 }
738 _result = (bool )wxPyApp_GetAuto3D(_arg0);
739 _resultobj = Py_BuildValue("i",_result);
740 return _resultobj;
741 }
742
743 #define wxPyApp_GetClassName(_swigobj) (_swigobj->GetClassName())
744 static PyObject *_wrap_wxPyApp_GetClassName(PyObject *self, PyObject *args) {
745 PyObject * _resultobj;
746 wxString * _result;
747 wxPyApp * _arg0;
748 char * _argc0 = 0;
749
750 self = self;
751 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetClassName",&_argc0))
752 return NULL;
753 if (_argc0) {
754 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
755 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetClassName. Expected _wxPyApp_p.");
756 return NULL;
757 }
758 }
759 _result = new wxString (wxPyApp_GetClassName(_arg0));
760 {
761 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
762 }
763 {
764 delete _result;
765 }
766 return _resultobj;
767 }
768
769 #define wxPyApp_GetExitOnFrameDelete(_swigobj) (_swigobj->GetExitOnFrameDelete())
770 static PyObject *_wrap_wxPyApp_GetExitOnFrameDelete(PyObject *self, PyObject *args) {
771 PyObject * _resultobj;
772 bool _result;
773 wxPyApp * _arg0;
774 char * _argc0 = 0;
775
776 self = self;
777 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetExitOnFrameDelete",&_argc0))
778 return NULL;
779 if (_argc0) {
780 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
781 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetExitOnFrameDelete. Expected _wxPyApp_p.");
782 return NULL;
783 }
784 }
785 _result = (bool )wxPyApp_GetExitOnFrameDelete(_arg0);
786 _resultobj = Py_BuildValue("i",_result);
787 return _resultobj;
788 }
789
790 #define wxPyApp_GetPrintMode(_swigobj) (_swigobj->GetPrintMode())
791 static PyObject *_wrap_wxPyApp_GetPrintMode(PyObject *self, PyObject *args) {
792 PyObject * _resultobj;
793 int _result;
794 wxPyApp * _arg0;
795 char * _argc0 = 0;
796
797 self = self;
798 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetPrintMode",&_argc0))
799 return NULL;
800 if (_argc0) {
801 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
802 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetPrintMode. Expected _wxPyApp_p.");
803 return NULL;
804 }
805 }
806 _result = (int )wxPyApp_GetPrintMode(_arg0);
807 _resultobj = Py_BuildValue("i",_result);
808 return _resultobj;
809 }
810
811 #define wxPyApp_GetTopWindow(_swigobj) (_swigobj->GetTopWindow())
812 static PyObject *_wrap_wxPyApp_GetTopWindow(PyObject *self, PyObject *args) {
813 PyObject * _resultobj;
814 wxWindow * _result;
815 wxPyApp * _arg0;
816 char * _argc0 = 0;
817 char _ptemp[128];
818
819 self = self;
820 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetTopWindow",&_argc0))
821 return NULL;
822 if (_argc0) {
823 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
824 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetTopWindow. Expected _wxPyApp_p.");
825 return NULL;
826 }
827 }
828 _result = (wxWindow *)wxPyApp_GetTopWindow(_arg0);
829 SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p");
830 _resultobj = Py_BuildValue("s",_ptemp);
831 return _resultobj;
832 }
833
834 #define wxPyApp_GetVendorName(_swigobj) (_swigobj->GetVendorName())
835 static PyObject *_wrap_wxPyApp_GetVendorName(PyObject *self, PyObject *args) {
836 PyObject * _resultobj;
837 wxString * _result;
838 wxPyApp * _arg0;
839 char * _argc0 = 0;
840
841 self = self;
842 if(!PyArg_ParseTuple(args,"s:wxPyApp_GetVendorName",&_argc0))
843 return NULL;
844 if (_argc0) {
845 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
846 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_GetVendorName. Expected _wxPyApp_p.");
847 return NULL;
848 }
849 }
850 _result = new wxString (wxPyApp_GetVendorName(_arg0));
851 {
852 _resultobj = PyString_FromString(WXSTRINGCAST *(_result));
853 }
854 {
855 delete _result;
856 }
857 return _resultobj;
858 }
859
860 #define wxPyApp_Dispatch(_swigobj) (_swigobj->Dispatch())
861 static PyObject *_wrap_wxPyApp_Dispatch(PyObject *self, PyObject *args) {
862 PyObject * _resultobj;
863 wxPyApp * _arg0;
864 char * _argc0 = 0;
865
866 self = self;
867 if(!PyArg_ParseTuple(args,"s:wxPyApp_Dispatch",&_argc0))
868 return NULL;
869 if (_argc0) {
870 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
871 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Dispatch. Expected _wxPyApp_p.");
872 return NULL;
873 }
874 }
875 wxPyApp_Dispatch(_arg0);
876 Py_INCREF(Py_None);
877 _resultobj = Py_None;
878 return _resultobj;
879 }
880
881 #define wxPyApp_ExitMainLoop(_swigobj) (_swigobj->ExitMainLoop())
882 static PyObject *_wrap_wxPyApp_ExitMainLoop(PyObject *self, PyObject *args) {
883 PyObject * _resultobj;
884 wxPyApp * _arg0;
885 char * _argc0 = 0;
886
887 self = self;
888 if(!PyArg_ParseTuple(args,"s:wxPyApp_ExitMainLoop",&_argc0))
889 return NULL;
890 if (_argc0) {
891 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
892 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_ExitMainLoop. Expected _wxPyApp_p.");
893 return NULL;
894 }
895 }
896 wxPyApp_ExitMainLoop(_arg0);
897 Py_INCREF(Py_None);
898 _resultobj = Py_None;
899 return _resultobj;
900 }
901
902 #define wxPyApp_Initialized(_swigobj) (_swigobj->Initialized())
903 static PyObject *_wrap_wxPyApp_Initialized(PyObject *self, PyObject *args) {
904 PyObject * _resultobj;
905 bool _result;
906 wxPyApp * _arg0;
907 char * _argc0 = 0;
908
909 self = self;
910 if(!PyArg_ParseTuple(args,"s:wxPyApp_Initialized",&_argc0))
911 return NULL;
912 if (_argc0) {
913 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
914 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Initialized. Expected _wxPyApp_p.");
915 return NULL;
916 }
917 }
918 _result = (bool )wxPyApp_Initialized(_arg0);
919 _resultobj = Py_BuildValue("i",_result);
920 return _resultobj;
921 }
922
923 #define wxPyApp_MainLoop(_swigobj) (_swigobj->MainLoop())
924 static PyObject *_wrap_wxPyApp_MainLoop(PyObject *self, PyObject *args) {
925 PyObject * _resultobj;
926 int _result;
927 wxPyApp * _arg0;
928 char * _argc0 = 0;
929
930 self = self;
931 if(!PyArg_ParseTuple(args,"s:wxPyApp_MainLoop",&_argc0))
932 return NULL;
933 if (_argc0) {
934 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
935 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_MainLoop. Expected _wxPyApp_p.");
936 return NULL;
937 }
938 }
939 _result = (int )wxPyApp_MainLoop(_arg0);
940 _resultobj = Py_BuildValue("i",_result);
941 return _resultobj;
942 }
943
944 #define wxPyApp_Pending(_swigobj) (_swigobj->Pending())
945 static PyObject *_wrap_wxPyApp_Pending(PyObject *self, PyObject *args) {
946 PyObject * _resultobj;
947 bool _result;
948 wxPyApp * _arg0;
949 char * _argc0 = 0;
950
951 self = self;
952 if(!PyArg_ParseTuple(args,"s:wxPyApp_Pending",&_argc0))
953 return NULL;
954 if (_argc0) {
955 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
956 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_Pending. Expected _wxPyApp_p.");
957 return NULL;
958 }
959 }
960 _result = (bool )wxPyApp_Pending(_arg0);
961 _resultobj = Py_BuildValue("i",_result);
962 return _resultobj;
963 }
964
965 #define wxPyApp_SetAppName(_swigobj,_swigarg0) (_swigobj->SetAppName(_swigarg0))
966 static PyObject *_wrap_wxPyApp_SetAppName(PyObject *self, PyObject *args) {
967 PyObject * _resultobj;
968 wxPyApp * _arg0;
969 wxString * _arg1;
970 char * _argc0 = 0;
971 PyObject * _obj1 = 0;
972
973 self = self;
974 if(!PyArg_ParseTuple(args,"sO:wxPyApp_SetAppName",&_argc0,&_obj1))
975 return NULL;
976 if (_argc0) {
977 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
978 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetAppName. Expected _wxPyApp_p.");
979 return NULL;
980 }
981 }
982 {
983 if (!PyString_Check(_obj1)) {
984 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
985 return NULL;
986 }
987 _arg1 = new wxString(PyString_AsString(_obj1));
988 }
989 wxPyApp_SetAppName(_arg0,*_arg1);
990 Py_INCREF(Py_None);
991 _resultobj = Py_None;
992 {
993 if (_obj1)
994 delete _arg1;
995 }
996 return _resultobj;
997 }
998
999 #define wxPyApp_SetAuto3D(_swigobj,_swigarg0) (_swigobj->SetAuto3D(_swigarg0))
1000 static PyObject *_wrap_wxPyApp_SetAuto3D(PyObject *self, PyObject *args) {
1001 PyObject * _resultobj;
1002 wxPyApp * _arg0;
1003 bool _arg1;
1004 char * _argc0 = 0;
1005 int tempbool1;
1006
1007 self = self;
1008 if(!PyArg_ParseTuple(args,"si:wxPyApp_SetAuto3D",&_argc0,&tempbool1))
1009 return NULL;
1010 if (_argc0) {
1011 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1012 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetAuto3D. Expected _wxPyApp_p.");
1013 return NULL;
1014 }
1015 }
1016 _arg1 = (bool ) tempbool1;
1017 wxPyApp_SetAuto3D(_arg0,_arg1);
1018 Py_INCREF(Py_None);
1019 _resultobj = Py_None;
1020 return _resultobj;
1021 }
1022
1023 #define wxPyApp_SetClassName(_swigobj,_swigarg0) (_swigobj->SetClassName(_swigarg0))
1024 static PyObject *_wrap_wxPyApp_SetClassName(PyObject *self, PyObject *args) {
1025 PyObject * _resultobj;
1026 wxPyApp * _arg0;
1027 wxString * _arg1;
1028 char * _argc0 = 0;
1029 PyObject * _obj1 = 0;
1030
1031 self = self;
1032 if(!PyArg_ParseTuple(args,"sO:wxPyApp_SetClassName",&_argc0,&_obj1))
1033 return NULL;
1034 if (_argc0) {
1035 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1036 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetClassName. Expected _wxPyApp_p.");
1037 return NULL;
1038 }
1039 }
1040 {
1041 if (!PyString_Check(_obj1)) {
1042 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
1043 return NULL;
1044 }
1045 _arg1 = new wxString(PyString_AsString(_obj1));
1046 }
1047 wxPyApp_SetClassName(_arg0,*_arg1);
1048 Py_INCREF(Py_None);
1049 _resultobj = Py_None;
1050 {
1051 if (_obj1)
1052 delete _arg1;
1053 }
1054 return _resultobj;
1055 }
1056
1057 #define wxPyApp_SetExitOnFrameDelete(_swigobj,_swigarg0) (_swigobj->SetExitOnFrameDelete(_swigarg0))
1058 static PyObject *_wrap_wxPyApp_SetExitOnFrameDelete(PyObject *self, PyObject *args) {
1059 PyObject * _resultobj;
1060 wxPyApp * _arg0;
1061 bool _arg1;
1062 char * _argc0 = 0;
1063 int tempbool1;
1064
1065 self = self;
1066 if(!PyArg_ParseTuple(args,"si:wxPyApp_SetExitOnFrameDelete",&_argc0,&tempbool1))
1067 return NULL;
1068 if (_argc0) {
1069 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1070 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetExitOnFrameDelete. Expected _wxPyApp_p.");
1071 return NULL;
1072 }
1073 }
1074 _arg1 = (bool ) tempbool1;
1075 wxPyApp_SetExitOnFrameDelete(_arg0,_arg1);
1076 Py_INCREF(Py_None);
1077 _resultobj = Py_None;
1078 return _resultobj;
1079 }
1080
1081 #define wxPyApp_SetPrintMode(_swigobj,_swigarg0) (_swigobj->SetPrintMode(_swigarg0))
1082 static PyObject *_wrap_wxPyApp_SetPrintMode(PyObject *self, PyObject *args) {
1083 PyObject * _resultobj;
1084 wxPyApp * _arg0;
1085 int _arg1;
1086 char * _argc0 = 0;
1087
1088 self = self;
1089 if(!PyArg_ParseTuple(args,"si:wxPyApp_SetPrintMode",&_argc0,&_arg1))
1090 return NULL;
1091 if (_argc0) {
1092 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1093 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetPrintMode. Expected _wxPyApp_p.");
1094 return NULL;
1095 }
1096 }
1097 wxPyApp_SetPrintMode(_arg0,_arg1);
1098 Py_INCREF(Py_None);
1099 _resultobj = Py_None;
1100 return _resultobj;
1101 }
1102
1103 #define wxPyApp_SetTopWindow(_swigobj,_swigarg0) (_swigobj->SetTopWindow(_swigarg0))
1104 static PyObject *_wrap_wxPyApp_SetTopWindow(PyObject *self, PyObject *args) {
1105 PyObject * _resultobj;
1106 wxPyApp * _arg0;
1107 wxWindow * _arg1;
1108 char * _argc0 = 0;
1109 char * _argc1 = 0;
1110
1111 self = self;
1112 if(!PyArg_ParseTuple(args,"ss:wxPyApp_SetTopWindow",&_argc0,&_argc1))
1113 return NULL;
1114 if (_argc0) {
1115 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1116 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetTopWindow. Expected _wxPyApp_p.");
1117 return NULL;
1118 }
1119 }
1120 if (_argc1) {
1121 if (SWIG_GetPtr(_argc1,(void **) &_arg1,"_wxWindow_p")) {
1122 PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPyApp_SetTopWindow. Expected _wxWindow_p.");
1123 return NULL;
1124 }
1125 }
1126 wxPyApp_SetTopWindow(_arg0,_arg1);
1127 Py_INCREF(Py_None);
1128 _resultobj = Py_None;
1129 return _resultobj;
1130 }
1131
1132 #define wxPyApp_SetVendorName(_swigobj,_swigarg0) (_swigobj->SetVendorName(_swigarg0))
1133 static PyObject *_wrap_wxPyApp_SetVendorName(PyObject *self, PyObject *args) {
1134 PyObject * _resultobj;
1135 wxPyApp * _arg0;
1136 wxString * _arg1;
1137 char * _argc0 = 0;
1138 PyObject * _obj1 = 0;
1139
1140 self = self;
1141 if(!PyArg_ParseTuple(args,"sO:wxPyApp_SetVendorName",&_argc0,&_obj1))
1142 return NULL;
1143 if (_argc0) {
1144 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1145 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_SetVendorName. Expected _wxPyApp_p.");
1146 return NULL;
1147 }
1148 }
1149 {
1150 if (!PyString_Check(_obj1)) {
1151 PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
1152 return NULL;
1153 }
1154 _arg1 = new wxString(PyString_AsString(_obj1));
1155 }
1156 wxPyApp_SetVendorName(_arg0,*_arg1);
1157 Py_INCREF(Py_None);
1158 _resultobj = Py_None;
1159 {
1160 if (_obj1)
1161 delete _arg1;
1162 }
1163 return _resultobj;
1164 }
1165
1166 #define wxPyApp_AfterMainLoop(_swigobj) (_swigobj->AfterMainLoop())
1167 static PyObject *_wrap_wxPyApp_AfterMainLoop(PyObject *self, PyObject *args) {
1168 PyObject * _resultobj;
1169 wxPyApp * _arg0;
1170 char * _argc0 = 0;
1171
1172 self = self;
1173 if(!PyArg_ParseTuple(args,"s:wxPyApp_AfterMainLoop",&_argc0))
1174 return NULL;
1175 if (_argc0) {
1176 if (SWIG_GetPtr(_argc0,(void **) &_arg0,"_wxPyApp_p")) {
1177 PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyApp_AfterMainLoop. Expected _wxPyApp_p.");
1178 return NULL;
1179 }
1180 }
1181 wxPyApp_AfterMainLoop(_arg0);
1182 Py_INCREF(Py_None);
1183 _resultobj = Py_None;
1184 return _resultobj;
1185 }
1186
1187 static PyMethodDef wxcMethods[] = {
1188 { "wxPyApp_AfterMainLoop", _wrap_wxPyApp_AfterMainLoop, 1 },
1189 { "wxPyApp_SetVendorName", _wrap_wxPyApp_SetVendorName, 1 },
1190 { "wxPyApp_SetTopWindow", _wrap_wxPyApp_SetTopWindow, 1 },
1191 { "wxPyApp_SetPrintMode", _wrap_wxPyApp_SetPrintMode, 1 },
1192 { "wxPyApp_SetExitOnFrameDelete", _wrap_wxPyApp_SetExitOnFrameDelete, 1 },
1193 { "wxPyApp_SetClassName", _wrap_wxPyApp_SetClassName, 1 },
1194 { "wxPyApp_SetAuto3D", _wrap_wxPyApp_SetAuto3D, 1 },
1195 { "wxPyApp_SetAppName", _wrap_wxPyApp_SetAppName, 1 },
1196 { "wxPyApp_Pending", _wrap_wxPyApp_Pending, 1 },
1197 { "wxPyApp_MainLoop", _wrap_wxPyApp_MainLoop, 1 },
1198 { "wxPyApp_Initialized", _wrap_wxPyApp_Initialized, 1 },
1199 { "wxPyApp_ExitMainLoop", _wrap_wxPyApp_ExitMainLoop, 1 },
1200 { "wxPyApp_Dispatch", _wrap_wxPyApp_Dispatch, 1 },
1201 { "wxPyApp_GetVendorName", _wrap_wxPyApp_GetVendorName, 1 },
1202 { "wxPyApp_GetTopWindow", _wrap_wxPyApp_GetTopWindow, 1 },
1203 { "wxPyApp_GetPrintMode", _wrap_wxPyApp_GetPrintMode, 1 },
1204 { "wxPyApp_GetExitOnFrameDelete", _wrap_wxPyApp_GetExitOnFrameDelete, 1 },
1205 { "wxPyApp_GetClassName", _wrap_wxPyApp_GetClassName, 1 },
1206 { "wxPyApp_GetAuto3D", _wrap_wxPyApp_GetAuto3D, 1 },
1207 { "wxPyApp_GetAppName", _wrap_wxPyApp_GetAppName, 1 },
1208 { "new_wxPyApp", _wrap_new_wxPyApp, 1 },
1209 { "_wxSetDictionary", __wxSetDictionary, 1 },
1210 { "_wxStart", __wxStart, 1 },
1211 { NULL, NULL }
1212 };
1213 static PyObject *SWIG_globals;
1214 #ifdef __cplusplus
1215 extern "C"
1216 #endif
1217 SWIGEXPORT(void,initwxc)() {
1218 PyObject *m, *d;
1219 SWIG_globals = SWIG_newvarlink();
1220 m = Py_InitModule("wxc", wxcMethods);
1221 d = PyModule_GetDict(m);
1222 PyDict_SetItemString(d,"wxMAJOR_VERSION", PyInt_FromLong((long) wxMAJOR_VERSION));
1223 PyDict_SetItemString(d,"wxMINOR_VERSION", PyInt_FromLong((long) wxMINOR_VERSION));
1224 PyDict_SetItemString(d,"wxRELEASE_NUMBER", PyInt_FromLong((long) wxRELEASE_NUMBER));
1225 PyDict_SetItemString(d,"wxNOT_FOUND", PyInt_FromLong((long) NOT_FOUND));
1226 PyDict_SetItemString(d,"wxVSCROLL", PyInt_FromLong((long) wxVSCROLL));
1227 PyDict_SetItemString(d,"wxHSCROLL", PyInt_FromLong((long) wxHSCROLL));
1228 PyDict_SetItemString(d,"wxCAPTION", PyInt_FromLong((long) wxCAPTION));
1229 PyDict_SetItemString(d,"wxDOUBLE_BORDER", PyInt_FromLong((long) wxDOUBLE_BORDER));
1230 PyDict_SetItemString(d,"wxSUNKEN_BORDER", PyInt_FromLong((long) wxSUNKEN_BORDER));
1231 PyDict_SetItemString(d,"wxRAISED_BORDER", PyInt_FromLong((long) wxRAISED_BORDER));
1232 PyDict_SetItemString(d,"wxBORDER", PyInt_FromLong((long) wxBORDER));
1233 PyDict_SetItemString(d,"wxSIMPLE_BORDER", PyInt_FromLong((long) wxSIMPLE_BORDER));
1234 PyDict_SetItemString(d,"wxSTATIC_BORDER", PyInt_FromLong((long) wxSTATIC_BORDER));
1235 PyDict_SetItemString(d,"wxTRANSPARENT_WINDOW", PyInt_FromLong((long) wxTRANSPARENT_WINDOW));
1236 PyDict_SetItemString(d,"wxNO_BORDER", PyInt_FromLong((long) wxNO_BORDER));
1237 PyDict_SetItemString(d,"wxUSER_COLOURS", PyInt_FromLong((long) wxUSER_COLOURS));
1238 PyDict_SetItemString(d,"wxNO_3D", PyInt_FromLong((long) wxNO_3D));
1239 PyDict_SetItemString(d,"wxTAB_TRAVERSAL", PyInt_FromLong((long) wxTAB_TRAVERSAL));
1240 PyDict_SetItemString(d,"wxHORIZONTAL", PyInt_FromLong((long) wxHORIZONTAL));
1241 PyDict_SetItemString(d,"wxVERTICAL", PyInt_FromLong((long) wxVERTICAL));
1242 PyDict_SetItemString(d,"wxBOTH", PyInt_FromLong((long) wxBOTH));
1243 PyDict_SetItemString(d,"wxCENTER_FRAME", PyInt_FromLong((long) wxCENTER_FRAME));
1244 PyDict_SetItemString(d,"wxSTAY_ON_TOP", PyInt_FromLong((long) wxSTAY_ON_TOP));
1245 PyDict_SetItemString(d,"wxICONIZE", PyInt_FromLong((long) wxICONIZE));
1246 PyDict_SetItemString(d,"wxMINIMIZE", PyInt_FromLong((long) wxMINIMIZE));
1247 PyDict_SetItemString(d,"wxMAXIMIZE", PyInt_FromLong((long) wxMAXIMIZE));
1248 PyDict_SetItemString(d,"wxTHICK_FRAME", PyInt_FromLong((long) wxTHICK_FRAME));
1249 PyDict_SetItemString(d,"wxSYSTEM_MENU", PyInt_FromLong((long) wxSYSTEM_MENU));
1250 PyDict_SetItemString(d,"wxMINIMIZE_BOX", PyInt_FromLong((long) wxMINIMIZE_BOX));
1251 PyDict_SetItemString(d,"wxMAXIMIZE_BOX", PyInt_FromLong((long) wxMAXIMIZE_BOX));
1252 PyDict_SetItemString(d,"wxTINY_CAPTION_HORIZ", PyInt_FromLong((long) wxTINY_CAPTION_HORIZ));
1253 PyDict_SetItemString(d,"wxTINY_CAPTION_VERT", PyInt_FromLong((long) wxTINY_CAPTION_VERT));
1254 PyDict_SetItemString(d,"wxRESIZE_BOX", PyInt_FromLong((long) wxRESIZE_BOX));
1255 PyDict_SetItemString(d,"wxRESIZE_BORDER", PyInt_FromLong((long) wxRESIZE_BORDER));
1256 PyDict_SetItemString(d,"wxDIALOG_MODAL", PyInt_FromLong((long) wxDIALOG_MODAL));
1257 PyDict_SetItemString(d,"wxDIALOG_MODELESS", PyInt_FromLong((long) wxDIALOG_MODELESS));
1258 PyDict_SetItemString(d,"wxDEFAULT_FRAME_STYLE", PyInt_FromLong((long) wxDEFAULT_FRAME_STYLE));
1259 PyDict_SetItemString(d,"wxDEFAULT_DIALOG_STYLE", PyInt_FromLong((long) wxDEFAULT_DIALOG_STYLE));
1260 PyDict_SetItemString(d,"wxFRAME_TOOL_WINDOW", PyInt_FromLong((long) wxFRAME_TOOL_WINDOW));
1261 PyDict_SetItemString(d,"wxRETAINED", PyInt_FromLong((long) wxRETAINED));
1262 PyDict_SetItemString(d,"wxBACKINGSTORE", PyInt_FromLong((long) wxBACKINGSTORE));
1263 PyDict_SetItemString(d,"wxTB_3DBUTTONS", PyInt_FromLong((long) wxTB_3DBUTTONS));
1264 PyDict_SetItemString(d,"wxTB_HORIZONTAL", PyInt_FromLong((long) wxTB_HORIZONTAL));
1265 PyDict_SetItemString(d,"wxTB_VERTICAL", PyInt_FromLong((long) wxTB_VERTICAL));
1266 PyDict_SetItemString(d,"wxTB_FLAT", PyInt_FromLong((long) wxTB_FLAT));
1267 PyDict_SetItemString(d,"wxCOLOURED", PyInt_FromLong((long) wxCOLOURED));
1268 PyDict_SetItemString(d,"wxFIXED_LENGTH", PyInt_FromLong((long) wxFIXED_LENGTH));
1269 PyDict_SetItemString(d,"wxALIGN_LEFT", PyInt_FromLong((long) wxALIGN_LEFT));
1270 PyDict_SetItemString(d,"wxALIGN_CENTER", PyInt_FromLong((long) wxALIGN_CENTER));
1271 PyDict_SetItemString(d,"wxALIGN_CENTRE", PyInt_FromLong((long) wxALIGN_CENTRE));
1272 PyDict_SetItemString(d,"wxALIGN_RIGHT", PyInt_FromLong((long) wxALIGN_RIGHT));
1273 PyDict_SetItemString(d,"wxLB_NEEDED_SB", PyInt_FromLong((long) wxLB_NEEDED_SB));
1274 PyDict_SetItemString(d,"wxLB_ALWAYS_SB", PyInt_FromLong((long) wxLB_ALWAYS_SB));
1275 PyDict_SetItemString(d,"wxLB_SORT", PyInt_FromLong((long) wxLB_SORT));
1276 PyDict_SetItemString(d,"wxLB_SINGLE", PyInt_FromLong((long) wxLB_SINGLE));
1277 PyDict_SetItemString(d,"wxLB_MULTIPLE", PyInt_FromLong((long) wxLB_MULTIPLE));
1278 PyDict_SetItemString(d,"wxLB_EXTENDED", PyInt_FromLong((long) wxLB_EXTENDED));
1279 PyDict_SetItemString(d,"wxLB_OWNERDRAW", PyInt_FromLong((long) wxLB_OWNERDRAW));
1280 PyDict_SetItemString(d,"wxLB_HSCROLL", PyInt_FromLong((long) wxLB_HSCROLL));
1281 PyDict_SetItemString(d,"wxPROCESS_ENTER", PyInt_FromLong((long) wxPROCESS_ENTER));
1282 PyDict_SetItemString(d,"wxPASSWORD", PyInt_FromLong((long) wxPASSWORD));
1283 PyDict_SetItemString(d,"wxTE_PROCESS_ENTER", PyInt_FromLong((long) wxTE_PROCESS_ENTER));
1284 PyDict_SetItemString(d,"wxTE_PASSWORD", PyInt_FromLong((long) wxTE_PASSWORD));
1285 PyDict_SetItemString(d,"wxTE_READONLY", PyInt_FromLong((long) wxTE_READONLY));
1286 PyDict_SetItemString(d,"wxTE_MULTILINE", PyInt_FromLong((long) wxTE_MULTILINE));
1287 PyDict_SetItemString(d,"wxCB_SIMPLE", PyInt_FromLong((long) wxCB_SIMPLE));
1288 PyDict_SetItemString(d,"wxCB_DROPDOWN", PyInt_FromLong((long) wxCB_DROPDOWN));
1289 PyDict_SetItemString(d,"wxCB_SORT", PyInt_FromLong((long) wxCB_SORT));
1290 PyDict_SetItemString(d,"wxCB_READONLY", PyInt_FromLong((long) wxCB_READONLY));
1291 PyDict_SetItemString(d,"wxRA_HORIZONTAL", PyInt_FromLong((long) wxRA_HORIZONTAL));
1292 PyDict_SetItemString(d,"wxRA_VERTICAL", PyInt_FromLong((long) wxRA_VERTICAL));
1293 PyDict_SetItemString(d,"wxRB_GROUP", PyInt_FromLong((long) wxRB_GROUP));
1294 PyDict_SetItemString(d,"wxGA_PROGRESSBAR", PyInt_FromLong((long) wxGA_PROGRESSBAR));
1295 PyDict_SetItemString(d,"wxGA_HORIZONTAL", PyInt_FromLong((long) wxGA_HORIZONTAL));
1296 PyDict_SetItemString(d,"wxGA_VERTICAL", PyInt_FromLong((long) wxGA_VERTICAL));
1297 PyDict_SetItemString(d,"wxSL_HORIZONTAL", PyInt_FromLong((long) wxSL_HORIZONTAL));
1298 PyDict_SetItemString(d,"wxSL_VERTICAL", PyInt_FromLong((long) wxSL_VERTICAL));
1299 PyDict_SetItemString(d,"wxSL_AUTOTICKS", PyInt_FromLong((long) wxSL_AUTOTICKS));
1300 PyDict_SetItemString(d,"wxSL_LABELS", PyInt_FromLong((long) wxSL_LABELS));
1301 PyDict_SetItemString(d,"wxSL_LEFT", PyInt_FromLong((long) wxSL_LEFT));
1302 PyDict_SetItemString(d,"wxSL_TOP", PyInt_FromLong((long) wxSL_TOP));
1303 PyDict_SetItemString(d,"wxSL_RIGHT", PyInt_FromLong((long) wxSL_RIGHT));
1304 PyDict_SetItemString(d,"wxSL_BOTTOM", PyInt_FromLong((long) wxSL_BOTTOM));
1305 PyDict_SetItemString(d,"wxSL_BOTH", PyInt_FromLong((long) wxSL_BOTH));
1306 PyDict_SetItemString(d,"wxSL_SELRANGE", PyInt_FromLong((long) wxSL_SELRANGE));
1307 PyDict_SetItemString(d,"wxSB_HORIZONTAL", PyInt_FromLong((long) wxSB_HORIZONTAL));
1308 PyDict_SetItemString(d,"wxSB_VERTICAL", PyInt_FromLong((long) wxSB_VERTICAL));
1309 PyDict_SetItemString(d,"wxBU_AUTODRAW", PyInt_FromLong((long) wxBU_AUTODRAW));
1310 PyDict_SetItemString(d,"wxBU_NOAUTODRAW", PyInt_FromLong((long) wxBU_NOAUTODRAW));
1311 PyDict_SetItemString(d,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS));
1312 PyDict_SetItemString(d,"wxTR_EDIT_LABELS", PyInt_FromLong((long) wxTR_EDIT_LABELS));
1313 PyDict_SetItemString(d,"wxTR_LINES_AT_ROOT", PyInt_FromLong((long) wxTR_LINES_AT_ROOT));
1314 PyDict_SetItemString(d,"wxLC_ICON", PyInt_FromLong((long) wxLC_ICON));
1315 PyDict_SetItemString(d,"wxLC_SMALL_ICON", PyInt_FromLong((long) wxLC_SMALL_ICON));
1316 PyDict_SetItemString(d,"wxLC_LIST", PyInt_FromLong((long) wxLC_LIST));
1317 PyDict_SetItemString(d,"wxLC_REPORT", PyInt_FromLong((long) wxLC_REPORT));
1318 PyDict_SetItemString(d,"wxLC_ALIGN_TOP", PyInt_FromLong((long) wxLC_ALIGN_TOP));
1319 PyDict_SetItemString(d,"wxLC_ALIGN_LEFT", PyInt_FromLong((long) wxLC_ALIGN_LEFT));
1320 PyDict_SetItemString(d,"wxLC_AUTOARRANGE", PyInt_FromLong((long) wxLC_AUTOARRANGE));
1321 PyDict_SetItemString(d,"wxLC_USER_TEXT", PyInt_FromLong((long) wxLC_USER_TEXT));
1322 PyDict_SetItemString(d,"wxLC_EDIT_LABELS", PyInt_FromLong((long) wxLC_EDIT_LABELS));
1323 PyDict_SetItemString(d,"wxLC_NO_HEADER", PyInt_FromLong((long) wxLC_NO_HEADER));
1324 PyDict_SetItemString(d,"wxLC_NO_SORT_HEADER", PyInt_FromLong((long) wxLC_NO_SORT_HEADER));
1325 PyDict_SetItemString(d,"wxLC_SINGLE_SEL", PyInt_FromLong((long) wxLC_SINGLE_SEL));
1326 PyDict_SetItemString(d,"wxLC_SORT_ASCENDING", PyInt_FromLong((long) wxLC_SORT_ASCENDING));
1327 PyDict_SetItemString(d,"wxLC_SORT_DESCENDING", PyInt_FromLong((long) wxLC_SORT_DESCENDING));
1328 PyDict_SetItemString(d,"wxLC_MASK_TYPE", PyInt_FromLong((long) wxLC_MASK_TYPE));
1329 PyDict_SetItemString(d,"wxLC_MASK_ALIGN", PyInt_FromLong((long) wxLC_MASK_ALIGN));
1330 PyDict_SetItemString(d,"wxLC_MASK_SORT", PyInt_FromLong((long) wxLC_MASK_SORT));
1331 PyDict_SetItemString(d,"wxSP_VERTICAL", PyInt_FromLong((long) wxSP_VERTICAL));
1332 PyDict_SetItemString(d,"wxSP_HORIZONTAL", PyInt_FromLong((long) wxSP_HORIZONTAL));
1333 PyDict_SetItemString(d,"wxSP_ARROW_KEYS", PyInt_FromLong((long) wxSP_ARROW_KEYS));
1334 PyDict_SetItemString(d,"wxSP_WRAP", PyInt_FromLong((long) wxSP_WRAP));
1335 PyDict_SetItemString(d,"wxSP_NOBORDER", PyInt_FromLong((long) wxSP_NOBORDER));
1336 PyDict_SetItemString(d,"wxSP_3D", PyInt_FromLong((long) wxSP_3D));
1337 PyDict_SetItemString(d,"wxSP_BORDER", PyInt_FromLong((long) wxSP_BORDER));
1338 PyDict_SetItemString(d,"wxTAB_MULTILINE", PyInt_FromLong((long) wxTAB_MULTILINE));
1339 PyDict_SetItemString(d,"wxTAB_RIGHTJUSTIFY", PyInt_FromLong((long) wxTAB_RIGHTJUSTIFY));
1340 PyDict_SetItemString(d,"wxTAB_FIXEDWIDTH", PyInt_FromLong((long) wxTAB_FIXEDWIDTH));
1341 PyDict_SetItemString(d,"wxTAB_OWNERDRAW", PyInt_FromLong((long) wxTAB_OWNERDRAW));
1342 PyDict_SetItemString(d,"wxFLOOD_SURFACE", PyInt_FromLong((long) wxFLOOD_SURFACE));
1343 PyDict_SetItemString(d,"wxFLOOD_BORDER", PyInt_FromLong((long) wxFLOOD_BORDER));
1344 PyDict_SetItemString(d,"wxODDEVEN_RULE", PyInt_FromLong((long) wxODDEVEN_RULE));
1345 PyDict_SetItemString(d,"wxWINDING_RULE", PyInt_FromLong((long) wxWINDING_RULE));
1346 PyDict_SetItemString(d,"wxTOOL_TOP", PyInt_FromLong((long) wxTOOL_TOP));
1347 PyDict_SetItemString(d,"wxTOOL_BOTTOM", PyInt_FromLong((long) wxTOOL_BOTTOM));
1348 PyDict_SetItemString(d,"wxTOOL_LEFT", PyInt_FromLong((long) wxTOOL_LEFT));
1349 PyDict_SetItemString(d,"wxTOOL_RIGHT", PyInt_FromLong((long) wxTOOL_RIGHT));
1350 PyDict_SetItemString(d,"wxOK", PyInt_FromLong((long) wxOK));
1351 PyDict_SetItemString(d,"wxYES_NO", PyInt_FromLong((long) wxYES_NO));
1352 PyDict_SetItemString(d,"wxCANCEL", PyInt_FromLong((long) wxCANCEL));
1353 PyDict_SetItemString(d,"wxYES", PyInt_FromLong((long) wxYES));
1354 PyDict_SetItemString(d,"wxNO", PyInt_FromLong((long) wxNO));
1355 PyDict_SetItemString(d,"wxICON_EXCLAMATION", PyInt_FromLong((long) wxICON_EXCLAMATION));
1356 PyDict_SetItemString(d,"wxICON_HAND", PyInt_FromLong((long) wxICON_HAND));
1357 PyDict_SetItemString(d,"wxICON_QUESTION", PyInt_FromLong((long) wxICON_QUESTION));
1358 PyDict_SetItemString(d,"wxICON_INFORMATION", PyInt_FromLong((long) wxICON_INFORMATION));
1359 PyDict_SetItemString(d,"wxICON_STOP", PyInt_FromLong((long) wxICON_STOP));
1360 PyDict_SetItemString(d,"wxICON_ASTERISK", PyInt_FromLong((long) wxICON_ASTERISK));
1361 PyDict_SetItemString(d,"wxICON_MASK", PyInt_FromLong((long) wxICON_MASK));
1362 PyDict_SetItemString(d,"wxCENTRE", PyInt_FromLong((long) wxCENTRE));
1363 PyDict_SetItemString(d,"wxCENTER", PyInt_FromLong((long) wxCENTER));
1364 PyDict_SetItemString(d,"wxSIZE_AUTO_WIDTH", PyInt_FromLong((long) wxSIZE_AUTO_WIDTH));
1365 PyDict_SetItemString(d,"wxSIZE_AUTO_HEIGHT", PyInt_FromLong((long) wxSIZE_AUTO_HEIGHT));
1366 PyDict_SetItemString(d,"wxSIZE_AUTO", PyInt_FromLong((long) wxSIZE_AUTO));
1367 PyDict_SetItemString(d,"wxSIZE_USE_EXISTING", PyInt_FromLong((long) wxSIZE_USE_EXISTING));
1368 PyDict_SetItemString(d,"wxSIZE_ALLOW_MINUS_ONE", PyInt_FromLong((long) wxSIZE_ALLOW_MINUS_ONE));
1369 PyDict_SetItemString(d,"wxDF_TEXT", PyInt_FromLong((long) wxDF_TEXT));
1370 PyDict_SetItemString(d,"wxDF_BITMAP", PyInt_FromLong((long) wxDF_BITMAP));
1371 PyDict_SetItemString(d,"wxDF_METAFILE", PyInt_FromLong((long) wxDF_METAFILE));
1372 PyDict_SetItemString(d,"wxDF_DIB", PyInt_FromLong((long) wxDF_DIB));
1373 PyDict_SetItemString(d,"wxDF_OEMTEXT", PyInt_FromLong((long) wxDF_OEMTEXT));
1374 PyDict_SetItemString(d,"wxDF_FILENAME", PyInt_FromLong((long) wxDF_FILENAME));
1375 PyDict_SetItemString(d,"wxPORTRAIT", PyInt_FromLong((long) wxPORTRAIT));
1376 PyDict_SetItemString(d,"wxLANDSCAPE", PyInt_FromLong((long) wxLANDSCAPE));
1377 PyDict_SetItemString(d,"wxID_OPEN", PyInt_FromLong((long) wxID_OPEN));
1378 PyDict_SetItemString(d,"wxID_CLOSE", PyInt_FromLong((long) wxID_CLOSE));
1379 PyDict_SetItemString(d,"wxID_NEW", PyInt_FromLong((long) wxID_NEW));
1380 PyDict_SetItemString(d,"wxID_SAVE", PyInt_FromLong((long) wxID_SAVE));
1381 PyDict_SetItemString(d,"wxID_SAVEAS", PyInt_FromLong((long) wxID_SAVEAS));
1382 PyDict_SetItemString(d,"wxID_REVERT", PyInt_FromLong((long) wxID_REVERT));
1383 PyDict_SetItemString(d,"wxID_EXIT", PyInt_FromLong((long) wxID_EXIT));
1384 PyDict_SetItemString(d,"wxID_UNDO", PyInt_FromLong((long) wxID_UNDO));
1385 PyDict_SetItemString(d,"wxID_REDO", PyInt_FromLong((long) wxID_REDO));
1386 PyDict_SetItemString(d,"wxID_HELP", PyInt_FromLong((long) wxID_HELP));
1387 PyDict_SetItemString(d,"wxID_PRINT", PyInt_FromLong((long) wxID_PRINT));
1388 PyDict_SetItemString(d,"wxID_PRINT_SETUP", PyInt_FromLong((long) wxID_PRINT_SETUP));
1389 PyDict_SetItemString(d,"wxID_PREVIEW", PyInt_FromLong((long) wxID_PREVIEW));
1390 PyDict_SetItemString(d,"wxID_ABOUT", PyInt_FromLong((long) wxID_ABOUT));
1391 PyDict_SetItemString(d,"wxID_HELP_CONTENTS", PyInt_FromLong((long) wxID_HELP_CONTENTS));
1392 PyDict_SetItemString(d,"wxID_HELP_COMMANDS", PyInt_FromLong((long) wxID_HELP_COMMANDS));
1393 PyDict_SetItemString(d,"wxID_HELP_PROCEDURES", PyInt_FromLong((long) wxID_HELP_PROCEDURES));
1394 PyDict_SetItemString(d,"wxID_HELP_CONTEXT", PyInt_FromLong((long) wxID_HELP_CONTEXT));
1395 PyDict_SetItemString(d,"wxID_CUT", PyInt_FromLong((long) wxID_CUT));
1396 PyDict_SetItemString(d,"wxID_COPY", PyInt_FromLong((long) wxID_COPY));
1397 PyDict_SetItemString(d,"wxID_PASTE", PyInt_FromLong((long) wxID_PASTE));
1398 PyDict_SetItemString(d,"wxID_CLEAR", PyInt_FromLong((long) wxID_CLEAR));
1399 PyDict_SetItemString(d,"wxID_FIND", PyInt_FromLong((long) wxID_FIND));
1400 PyDict_SetItemString(d,"wxID_FILE1", PyInt_FromLong((long) wxID_FILE1));
1401 PyDict_SetItemString(d,"wxID_FILE2", PyInt_FromLong((long) wxID_FILE2));
1402 PyDict_SetItemString(d,"wxID_FILE3", PyInt_FromLong((long) wxID_FILE3));
1403 PyDict_SetItemString(d,"wxID_FILE4", PyInt_FromLong((long) wxID_FILE4));
1404 PyDict_SetItemString(d,"wxID_FILE5", PyInt_FromLong((long) wxID_FILE5));
1405 PyDict_SetItemString(d,"wxID_FILE6", PyInt_FromLong((long) wxID_FILE6));
1406 PyDict_SetItemString(d,"wxID_FILE7", PyInt_FromLong((long) wxID_FILE7));
1407 PyDict_SetItemString(d,"wxID_FILE8", PyInt_FromLong((long) wxID_FILE8));
1408 PyDict_SetItemString(d,"wxID_FILE9", PyInt_FromLong((long) wxID_FILE9));
1409 PyDict_SetItemString(d,"wxID_OK", PyInt_FromLong((long) wxID_OK));
1410 PyDict_SetItemString(d,"wxID_CANCEL", PyInt_FromLong((long) wxID_CANCEL));
1411 PyDict_SetItemString(d,"wxID_APPLY", PyInt_FromLong((long) wxID_APPLY));
1412 PyDict_SetItemString(d,"wxID_YES", PyInt_FromLong((long) wxID_YES));
1413 PyDict_SetItemString(d,"wxID_NO", PyInt_FromLong((long) wxID_NO));
1414 PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP", PyInt_FromLong((long) wxBITMAP_TYPE_BMP));
1415 PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_BMP_RESOURCE));
1416 PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO", PyInt_FromLong((long) wxBITMAP_TYPE_ICO));
1417 PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_ICO_RESOURCE));
1418 PyDict_SetItemString(d,"wxBITMAP_TYPE_CUR", PyInt_FromLong((long) wxBITMAP_TYPE_CUR));
1419 PyDict_SetItemString(d,"wxBITMAP_TYPE_CUR_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_CUR_RESOURCE));
1420 PyDict_SetItemString(d,"wxBITMAP_TYPE_XBM", PyInt_FromLong((long) wxBITMAP_TYPE_XBM));
1421 PyDict_SetItemString(d,"wxBITMAP_TYPE_XBM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XBM_DATA));
1422 PyDict_SetItemString(d,"wxBITMAP_TYPE_XPM", PyInt_FromLong((long) wxBITMAP_TYPE_XPM));
1423 PyDict_SetItemString(d,"wxBITMAP_TYPE_XPM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XPM_DATA));
1424 PyDict_SetItemString(d,"wxBITMAP_TYPE_TIF", PyInt_FromLong((long) wxBITMAP_TYPE_TIF));
1425 PyDict_SetItemString(d,"wxBITMAP_TYPE_TIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_TIF_RESOURCE));
1426 PyDict_SetItemString(d,"wxBITMAP_TYPE_GIF", PyInt_FromLong((long) wxBITMAP_TYPE_GIF));
1427 PyDict_SetItemString(d,"wxBITMAP_TYPE_GIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_GIF_RESOURCE));
1428 PyDict_SetItemString(d,"wxBITMAP_TYPE_PNG", PyInt_FromLong((long) wxBITMAP_TYPE_PNG));
1429 PyDict_SetItemString(d,"wxBITMAP_TYPE_PNG_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_PNG_RESOURCE));
1430 PyDict_SetItemString(d,"wxBITMAP_TYPE_ANY", PyInt_FromLong((long) wxBITMAP_TYPE_ANY));
1431 PyDict_SetItemString(d,"wxBITMAP_TYPE_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_RESOURCE));
1432 PyDict_SetItemString(d,"wxOPEN", PyInt_FromLong((long) wxOPEN));
1433 PyDict_SetItemString(d,"wxSAVE", PyInt_FromLong((long) wxSAVE));
1434 PyDict_SetItemString(d,"wxHIDE_READONLY", PyInt_FromLong((long) wxHIDE_READONLY));
1435 PyDict_SetItemString(d,"wxOVERWRITE_PROMPT", PyInt_FromLong((long) wxOVERWRITE_PROMPT));
1436 PyDict_SetItemString(d,"wxACCEL_ALT", PyInt_FromLong((long) wxACCEL_ALT));
1437 PyDict_SetItemString(d,"wxACCEL_CTRL", PyInt_FromLong((long) wxACCEL_CTRL));
1438 PyDict_SetItemString(d,"wxACCEL_SHIFT", PyInt_FromLong((long) wxACCEL_SHIFT));
1439 PyDict_SetItemString(d,"ERR_PARAM", PyInt_FromLong((long) ERR_PARAM));
1440 PyDict_SetItemString(d,"ERR_NODATA", PyInt_FromLong((long) ERR_NODATA));
1441 PyDict_SetItemString(d,"ERR_CANCEL", PyInt_FromLong((long) ERR_CANCEL));
1442 PyDict_SetItemString(d,"ERR_SUCCESS", PyInt_FromLong((long) ERR_SUCCESS));
1443 PyDict_SetItemString(d,"wxDEFAULT", PyInt_FromLong((long) wxDEFAULT));
1444 PyDict_SetItemString(d,"wxDECORATIVE", PyInt_FromLong((long) wxDECORATIVE));
1445 PyDict_SetItemString(d,"wxROMAN", PyInt_FromLong((long) wxROMAN));
1446 PyDict_SetItemString(d,"wxSCRIPT", PyInt_FromLong((long) wxSCRIPT));
1447 PyDict_SetItemString(d,"wxSWISS", PyInt_FromLong((long) wxSWISS));
1448 PyDict_SetItemString(d,"wxMODERN", PyInt_FromLong((long) wxMODERN));
1449 PyDict_SetItemString(d,"wxTELETYPE", PyInt_FromLong((long) wxTELETYPE));
1450 PyDict_SetItemString(d,"wxVARIABLE", PyInt_FromLong((long) wxVARIABLE));
1451 PyDict_SetItemString(d,"wxFIXED", PyInt_FromLong((long) wxFIXED));
1452 PyDict_SetItemString(d,"wxNORMAL", PyInt_FromLong((long) wxNORMAL));
1453 PyDict_SetItemString(d,"wxLIGHT", PyInt_FromLong((long) wxLIGHT));
1454 PyDict_SetItemString(d,"wxBOLD", PyInt_FromLong((long) wxBOLD));
1455 PyDict_SetItemString(d,"wxITALIC", PyInt_FromLong((long) wxITALIC));
1456 PyDict_SetItemString(d,"wxSLANT", PyInt_FromLong((long) wxSLANT));
1457 PyDict_SetItemString(d,"wxSOLID", PyInt_FromLong((long) wxSOLID));
1458 PyDict_SetItemString(d,"wxDOT", PyInt_FromLong((long) wxDOT));
1459 PyDict_SetItemString(d,"wxLONG_DASH", PyInt_FromLong((long) wxLONG_DASH));
1460 PyDict_SetItemString(d,"wxSHORT_DASH", PyInt_FromLong((long) wxSHORT_DASH));
1461 PyDict_SetItemString(d,"wxDOT_DASH", PyInt_FromLong((long) wxDOT_DASH));
1462 PyDict_SetItemString(d,"wxUSER_DASH", PyInt_FromLong((long) wxUSER_DASH));
1463 PyDict_SetItemString(d,"wxTRANSPARENT", PyInt_FromLong((long) wxTRANSPARENT));
1464 PyDict_SetItemString(d,"wxSTIPPLE", PyInt_FromLong((long) wxSTIPPLE));
1465 PyDict_SetItemString(d,"wxBDIAGONAL_HATCH", PyInt_FromLong((long) wxBDIAGONAL_HATCH));
1466 PyDict_SetItemString(d,"wxCROSSDIAG_HATCH", PyInt_FromLong((long) wxCROSSDIAG_HATCH));
1467 PyDict_SetItemString(d,"wxFDIAGONAL_HATCH", PyInt_FromLong((long) wxFDIAGONAL_HATCH));
1468 PyDict_SetItemString(d,"wxCROSS_HATCH", PyInt_FromLong((long) wxCROSS_HATCH));
1469 PyDict_SetItemString(d,"wxHORIZONTAL_HATCH", PyInt_FromLong((long) wxHORIZONTAL_HATCH));
1470 PyDict_SetItemString(d,"wxVERTICAL_HATCH", PyInt_FromLong((long) wxVERTICAL_HATCH));
1471 PyDict_SetItemString(d,"wxJOIN_BEVEL", PyInt_FromLong((long) wxJOIN_BEVEL));
1472 PyDict_SetItemString(d,"wxJOIN_MITER", PyInt_FromLong((long) wxJOIN_MITER));
1473 PyDict_SetItemString(d,"wxJOIN_ROUND", PyInt_FromLong((long) wxJOIN_ROUND));
1474 PyDict_SetItemString(d,"wxCAP_ROUND", PyInt_FromLong((long) wxCAP_ROUND));
1475 PyDict_SetItemString(d,"wxCAP_PROJECTING", PyInt_FromLong((long) wxCAP_PROJECTING));
1476 PyDict_SetItemString(d,"wxCAP_BUTT", PyInt_FromLong((long) wxCAP_BUTT));
1477 PyDict_SetItemString(d,"wxCLEAR", PyInt_FromLong((long) wxCLEAR));
1478 PyDict_SetItemString(d,"wxXOR", PyInt_FromLong((long) wxXOR));
1479 PyDict_SetItemString(d,"wxINVERT", PyInt_FromLong((long) wxINVERT));
1480 PyDict_SetItemString(d,"wxOR_REVERSE", PyInt_FromLong((long) wxOR_REVERSE));
1481 PyDict_SetItemString(d,"wxAND_REVERSE", PyInt_FromLong((long) wxAND_REVERSE));
1482 PyDict_SetItemString(d,"wxCOPY", PyInt_FromLong((long) wxCOPY));
1483 PyDict_SetItemString(d,"wxAND", PyInt_FromLong((long) wxAND));
1484 PyDict_SetItemString(d,"wxAND_INVERT", PyInt_FromLong((long) wxAND_INVERT));
1485 PyDict_SetItemString(d,"wxNO_OP", PyInt_FromLong((long) wxNO_OP));
1486 PyDict_SetItemString(d,"wxNOR", PyInt_FromLong((long) wxNOR));
1487 PyDict_SetItemString(d,"wxEQUIV", PyInt_FromLong((long) wxEQUIV));
1488 PyDict_SetItemString(d,"wxSRC_INVERT", PyInt_FromLong((long) wxSRC_INVERT));
1489 PyDict_SetItemString(d,"wxOR_INVERT", PyInt_FromLong((long) wxOR_INVERT));
1490 PyDict_SetItemString(d,"wxNAND", PyInt_FromLong((long) wxNAND));
1491 PyDict_SetItemString(d,"wxOR", PyInt_FromLong((long) wxOR));
1492 PyDict_SetItemString(d,"wxSET", PyInt_FromLong((long) wxSET));
1493 PyDict_SetItemString(d,"wxSRC_OR", PyInt_FromLong((long) wxSRC_OR));
1494 PyDict_SetItemString(d,"wxSRC_AND", PyInt_FromLong((long) wxSRC_AND));
1495 PyDict_SetItemString(d,"WXK_BACK", PyInt_FromLong((long) WXK_BACK));
1496 PyDict_SetItemString(d,"WXK_TAB", PyInt_FromLong((long) WXK_TAB));
1497 PyDict_SetItemString(d,"WXK_RETURN", PyInt_FromLong((long) WXK_RETURN));
1498 PyDict_SetItemString(d,"WXK_ESCAPE", PyInt_FromLong((long) WXK_ESCAPE));
1499 PyDict_SetItemString(d,"WXK_SPACE", PyInt_FromLong((long) WXK_SPACE));
1500 PyDict_SetItemString(d,"WXK_DELETE", PyInt_FromLong((long) WXK_DELETE));
1501 PyDict_SetItemString(d,"WXK_START", PyInt_FromLong((long) WXK_START));
1502 PyDict_SetItemString(d,"WXK_LBUTTON", PyInt_FromLong((long) WXK_LBUTTON));
1503 PyDict_SetItemString(d,"WXK_RBUTTON", PyInt_FromLong((long) WXK_RBUTTON));
1504 PyDict_SetItemString(d,"WXK_CANCEL", PyInt_FromLong((long) WXK_CANCEL));
1505 PyDict_SetItemString(d,"WXK_MBUTTON", PyInt_FromLong((long) WXK_MBUTTON));
1506 PyDict_SetItemString(d,"WXK_CLEAR", PyInt_FromLong((long) WXK_CLEAR));
1507 PyDict_SetItemString(d,"WXK_SHIFT", PyInt_FromLong((long) WXK_SHIFT));
1508 PyDict_SetItemString(d,"WXK_CONTROL", PyInt_FromLong((long) WXK_CONTROL));
1509 PyDict_SetItemString(d,"WXK_MENU", PyInt_FromLong((long) WXK_MENU));
1510 PyDict_SetItemString(d,"WXK_PAUSE", PyInt_FromLong((long) WXK_PAUSE));
1511 PyDict_SetItemString(d,"WXK_CAPITAL", PyInt_FromLong((long) WXK_CAPITAL));
1512 PyDict_SetItemString(d,"WXK_PRIOR", PyInt_FromLong((long) WXK_PRIOR));
1513 PyDict_SetItemString(d,"WXK_NEXT", PyInt_FromLong((long) WXK_NEXT));
1514 PyDict_SetItemString(d,"WXK_END", PyInt_FromLong((long) WXK_END));
1515 PyDict_SetItemString(d,"WXK_HOME", PyInt_FromLong((long) WXK_HOME));
1516 PyDict_SetItemString(d,"WXK_LEFT", PyInt_FromLong((long) WXK_LEFT));
1517 PyDict_SetItemString(d,"WXK_UP", PyInt_FromLong((long) WXK_UP));
1518 PyDict_SetItemString(d,"WXK_RIGHT", PyInt_FromLong((long) WXK_RIGHT));
1519 PyDict_SetItemString(d,"WXK_DOWN", PyInt_FromLong((long) WXK_DOWN));
1520 PyDict_SetItemString(d,"WXK_SELECT", PyInt_FromLong((long) WXK_SELECT));
1521 PyDict_SetItemString(d,"WXK_PRINT", PyInt_FromLong((long) WXK_PRINT));
1522 PyDict_SetItemString(d,"WXK_EXECUTE", PyInt_FromLong((long) WXK_EXECUTE));
1523 PyDict_SetItemString(d,"WXK_SNAPSHOT", PyInt_FromLong((long) WXK_SNAPSHOT));
1524 PyDict_SetItemString(d,"WXK_INSERT", PyInt_FromLong((long) WXK_INSERT));
1525 PyDict_SetItemString(d,"WXK_HELP", PyInt_FromLong((long) WXK_HELP));
1526 PyDict_SetItemString(d,"WXK_NUMPAD0", PyInt_FromLong((long) WXK_NUMPAD0));
1527 PyDict_SetItemString(d,"WXK_NUMPAD1", PyInt_FromLong((long) WXK_NUMPAD1));
1528 PyDict_SetItemString(d,"WXK_NUMPAD2", PyInt_FromLong((long) WXK_NUMPAD2));
1529 PyDict_SetItemString(d,"WXK_NUMPAD3", PyInt_FromLong((long) WXK_NUMPAD3));
1530 PyDict_SetItemString(d,"WXK_NUMPAD4", PyInt_FromLong((long) WXK_NUMPAD4));
1531 PyDict_SetItemString(d,"WXK_NUMPAD5", PyInt_FromLong((long) WXK_NUMPAD5));
1532 PyDict_SetItemString(d,"WXK_NUMPAD6", PyInt_FromLong((long) WXK_NUMPAD6));
1533 PyDict_SetItemString(d,"WXK_NUMPAD7", PyInt_FromLong((long) WXK_NUMPAD7));
1534 PyDict_SetItemString(d,"WXK_NUMPAD8", PyInt_FromLong((long) WXK_NUMPAD8));
1535 PyDict_SetItemString(d,"WXK_NUMPAD9", PyInt_FromLong((long) WXK_NUMPAD9));
1536 PyDict_SetItemString(d,"WXK_MULTIPLY", PyInt_FromLong((long) WXK_MULTIPLY));
1537 PyDict_SetItemString(d,"WXK_ADD", PyInt_FromLong((long) WXK_ADD));
1538 PyDict_SetItemString(d,"WXK_SEPARATOR", PyInt_FromLong((long) WXK_SEPARATOR));
1539 PyDict_SetItemString(d,"WXK_SUBTRACT", PyInt_FromLong((long) WXK_SUBTRACT));
1540 PyDict_SetItemString(d,"WXK_DECIMAL", PyInt_FromLong((long) WXK_DECIMAL));
1541 PyDict_SetItemString(d,"WXK_DIVIDE", PyInt_FromLong((long) WXK_DIVIDE));
1542 PyDict_SetItemString(d,"WXK_F1", PyInt_FromLong((long) WXK_F1));
1543 PyDict_SetItemString(d,"WXK_F2", PyInt_FromLong((long) WXK_F2));
1544 PyDict_SetItemString(d,"WXK_F3", PyInt_FromLong((long) WXK_F3));
1545 PyDict_SetItemString(d,"WXK_F4", PyInt_FromLong((long) WXK_F4));
1546 PyDict_SetItemString(d,"WXK_F5", PyInt_FromLong((long) WXK_F5));
1547 PyDict_SetItemString(d,"WXK_F6", PyInt_FromLong((long) WXK_F6));
1548 PyDict_SetItemString(d,"WXK_F7", PyInt_FromLong((long) WXK_F7));
1549 PyDict_SetItemString(d,"WXK_F8", PyInt_FromLong((long) WXK_F8));
1550 PyDict_SetItemString(d,"WXK_F9", PyInt_FromLong((long) WXK_F9));
1551 PyDict_SetItemString(d,"WXK_F10", PyInt_FromLong((long) WXK_F10));
1552 PyDict_SetItemString(d,"WXK_F11", PyInt_FromLong((long) WXK_F11));
1553 PyDict_SetItemString(d,"WXK_F12", PyInt_FromLong((long) WXK_F12));
1554 PyDict_SetItemString(d,"WXK_F13", PyInt_FromLong((long) WXK_F13));
1555 PyDict_SetItemString(d,"WXK_F14", PyInt_FromLong((long) WXK_F14));
1556 PyDict_SetItemString(d,"WXK_F15", PyInt_FromLong((long) WXK_F15));
1557 PyDict_SetItemString(d,"WXK_F16", PyInt_FromLong((long) WXK_F16));
1558 PyDict_SetItemString(d,"WXK_F17", PyInt_FromLong((long) WXK_F17));
1559 PyDict_SetItemString(d,"WXK_F18", PyInt_FromLong((long) WXK_F18));
1560 PyDict_SetItemString(d,"WXK_F19", PyInt_FromLong((long) WXK_F19));
1561 PyDict_SetItemString(d,"WXK_F20", PyInt_FromLong((long) WXK_F20));
1562 PyDict_SetItemString(d,"WXK_F21", PyInt_FromLong((long) WXK_F21));
1563 PyDict_SetItemString(d,"WXK_F22", PyInt_FromLong((long) WXK_F22));
1564 PyDict_SetItemString(d,"WXK_F23", PyInt_FromLong((long) WXK_F23));
1565 PyDict_SetItemString(d,"WXK_F24", PyInt_FromLong((long) WXK_F24));
1566 PyDict_SetItemString(d,"WXK_NUMLOCK", PyInt_FromLong((long) WXK_NUMLOCK));
1567 PyDict_SetItemString(d,"WXK_SCROLL", PyInt_FromLong((long) WXK_SCROLL));
1568 PyDict_SetItemString(d,"WXK_PAGEUP", PyInt_FromLong((long) WXK_PAGEUP));
1569 PyDict_SetItemString(d,"WXK_PAGEDOWN", PyInt_FromLong((long) WXK_PAGEDOWN));
1570 PyDict_SetItemString(d,"wxCURSOR_NONE", PyInt_FromLong((long) wxCURSOR_NONE));
1571 PyDict_SetItemString(d,"wxCURSOR_ARROW", PyInt_FromLong((long) wxCURSOR_ARROW));
1572 PyDict_SetItemString(d,"wxCURSOR_BULLSEYE", PyInt_FromLong((long) wxCURSOR_BULLSEYE));
1573 PyDict_SetItemString(d,"wxCURSOR_CHAR", PyInt_FromLong((long) wxCURSOR_CHAR));
1574 PyDict_SetItemString(d,"wxCURSOR_CROSS", PyInt_FromLong((long) wxCURSOR_CROSS));
1575 PyDict_SetItemString(d,"wxCURSOR_HAND", PyInt_FromLong((long) wxCURSOR_HAND));
1576 PyDict_SetItemString(d,"wxCURSOR_IBEAM", PyInt_FromLong((long) wxCURSOR_IBEAM));
1577 PyDict_SetItemString(d,"wxCURSOR_LEFT_BUTTON", PyInt_FromLong((long) wxCURSOR_LEFT_BUTTON));
1578 PyDict_SetItemString(d,"wxCURSOR_MAGNIFIER", PyInt_FromLong((long) wxCURSOR_MAGNIFIER));
1579 PyDict_SetItemString(d,"wxCURSOR_MIDDLE_BUTTON", PyInt_FromLong((long) wxCURSOR_MIDDLE_BUTTON));
1580 PyDict_SetItemString(d,"wxCURSOR_NO_ENTRY", PyInt_FromLong((long) wxCURSOR_NO_ENTRY));
1581 PyDict_SetItemString(d,"wxCURSOR_PAINT_BRUSH", PyInt_FromLong((long) wxCURSOR_PAINT_BRUSH));
1582 PyDict_SetItemString(d,"wxCURSOR_PENCIL", PyInt_FromLong((long) wxCURSOR_PENCIL));
1583 PyDict_SetItemString(d,"wxCURSOR_POINT_LEFT", PyInt_FromLong((long) wxCURSOR_POINT_LEFT));
1584 PyDict_SetItemString(d,"wxCURSOR_POINT_RIGHT", PyInt_FromLong((long) wxCURSOR_POINT_RIGHT));
1585 PyDict_SetItemString(d,"wxCURSOR_QUESTION_ARROW", PyInt_FromLong((long) wxCURSOR_QUESTION_ARROW));
1586 PyDict_SetItemString(d,"wxCURSOR_RIGHT_BUTTON", PyInt_FromLong((long) wxCURSOR_RIGHT_BUTTON));
1587 PyDict_SetItemString(d,"wxCURSOR_SIZENESW", PyInt_FromLong((long) wxCURSOR_SIZENESW));
1588 PyDict_SetItemString(d,"wxCURSOR_SIZENS", PyInt_FromLong((long) wxCURSOR_SIZENS));
1589 PyDict_SetItemString(d,"wxCURSOR_SIZENWSE", PyInt_FromLong((long) wxCURSOR_SIZENWSE));
1590 PyDict_SetItemString(d,"wxCURSOR_SIZEWE", PyInt_FromLong((long) wxCURSOR_SIZEWE));
1591 PyDict_SetItemString(d,"wxCURSOR_SIZING", PyInt_FromLong((long) wxCURSOR_SIZING));
1592 PyDict_SetItemString(d,"wxCURSOR_SPRAYCAN", PyInt_FromLong((long) wxCURSOR_SPRAYCAN));
1593 PyDict_SetItemString(d,"wxCURSOR_WAIT", PyInt_FromLong((long) wxCURSOR_WAIT));
1594 PyDict_SetItemString(d,"wxCURSOR_WATCH", PyInt_FromLong((long) wxCURSOR_WATCH));
1595 PyDict_SetItemString(d,"wxCURSOR_BLANK", PyInt_FromLong((long) wxCURSOR_BLANK));
1596 PyDict_SetItemString(d,"FALSE", PyInt_FromLong((long) 0));
1597 PyDict_SetItemString(d,"false", PyInt_FromLong((long) 0));
1598 PyDict_SetItemString(d,"TRUE", PyInt_FromLong((long) 1));
1599 PyDict_SetItemString(d,"true", PyInt_FromLong((long) 1));
1600 PyDict_SetItemString(d,"wxEVT_NULL", PyInt_FromLong((long) wxEVT_NULL));
1601 PyDict_SetItemString(d,"wxEVT_FIRST", PyInt_FromLong((long) wxEVT_FIRST));
1602 PyDict_SetItemString(d,"wxEVT_COMMAND_BUTTON_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_BUTTON_CLICKED));
1603 PyDict_SetItemString(d,"wxEVT_COMMAND_CHECKBOX_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKBOX_CLICKED));
1604 PyDict_SetItemString(d,"wxEVT_COMMAND_CHOICE_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_CHOICE_SELECTED));
1605 PyDict_SetItemString(d,"wxEVT_COMMAND_LISTBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_SELECTED));
1606 PyDict_SetItemString(d,"wxEVT_COMMAND_LISTBOX_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_DOUBLECLICKED));
1607 PyDict_SetItemString(d,"wxEVT_COMMAND_CHECKLISTBOX_TOGGLED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKLISTBOX_TOGGLED));
1608 PyDict_SetItemString(d,"wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_UPDATED));
1609 PyDict_SetItemString(d,"wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_ENTER));
1610 PyDict_SetItemString(d,"wxEVT_COMMAND_MENU_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_MENU_SELECTED));
1611 PyDict_SetItemString(d,"wxEVT_COMMAND_SLIDER_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SLIDER_UPDATED));
1612 PyDict_SetItemString(d,"wxEVT_COMMAND_RADIOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBOX_SELECTED));
1613 PyDict_SetItemString(d,"wxEVT_COMMAND_RADIOBUTTON_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBUTTON_SELECTED));
1614 PyDict_SetItemString(d,"wxEVT_COMMAND_SCROLLBAR_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SCROLLBAR_UPDATED));
1615 PyDict_SetItemString(d,"wxEVT_COMMAND_VLBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_VLBOX_SELECTED));
1616 PyDict_SetItemString(d,"wxEVT_COMMAND_COMBOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_COMBOBOX_SELECTED));
1617 PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_CLICKED));
1618 PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_RCLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_RCLICKED));
1619 PyDict_SetItemString(d,"wxEVT_COMMAND_TOOL_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_ENTER));
1620 PyDict_SetItemString(d,"wxEVT_SET_FOCUS", PyInt_FromLong((long) wxEVT_SET_FOCUS));
1621 PyDict_SetItemString(d,"wxEVT_KILL_FOCUS", PyInt_FromLong((long) wxEVT_KILL_FOCUS));
1622 PyDict_SetItemString(d,"wxEVT_LEFT_DOWN", PyInt_FromLong((long) wxEVT_LEFT_DOWN));
1623 PyDict_SetItemString(d,"wxEVT_LEFT_UP", PyInt_FromLong((long) wxEVT_LEFT_UP));
1624 PyDict_SetItemString(d,"wxEVT_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_MIDDLE_DOWN));
1625 PyDict_SetItemString(d,"wxEVT_MIDDLE_UP", PyInt_FromLong((long) wxEVT_MIDDLE_UP));
1626 PyDict_SetItemString(d,"wxEVT_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_RIGHT_DOWN));
1627 PyDict_SetItemString(d,"wxEVT_RIGHT_UP", PyInt_FromLong((long) wxEVT_RIGHT_UP));
1628 PyDict_SetItemString(d,"wxEVT_MOTION", PyInt_FromLong((long) wxEVT_MOTION));
1629 PyDict_SetItemString(d,"wxEVT_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_ENTER_WINDOW));
1630 PyDict_SetItemString(d,"wxEVT_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_LEAVE_WINDOW));
1631 PyDict_SetItemString(d,"wxEVT_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_LEFT_DCLICK));
1632 PyDict_SetItemString(d,"wxEVT_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_MIDDLE_DCLICK));
1633 PyDict_SetItemString(d,"wxEVT_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_RIGHT_DCLICK));
1634 PyDict_SetItemString(d,"wxEVT_NC_LEFT_DOWN", PyInt_FromLong((long) wxEVT_NC_LEFT_DOWN));
1635 PyDict_SetItemString(d,"wxEVT_NC_LEFT_UP", PyInt_FromLong((long) wxEVT_NC_LEFT_UP));
1636 PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DOWN));
1637 PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_UP", PyInt_FromLong((long) wxEVT_NC_MIDDLE_UP));
1638 PyDict_SetItemString(d,"wxEVT_NC_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_NC_RIGHT_DOWN));
1639 PyDict_SetItemString(d,"wxEVT_NC_RIGHT_UP", PyInt_FromLong((long) wxEVT_NC_RIGHT_UP));
1640 PyDict_SetItemString(d,"wxEVT_NC_MOTION", PyInt_FromLong((long) wxEVT_NC_MOTION));
1641 PyDict_SetItemString(d,"wxEVT_NC_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_NC_ENTER_WINDOW));
1642 PyDict_SetItemString(d,"wxEVT_NC_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_NC_LEAVE_WINDOW));
1643 PyDict_SetItemString(d,"wxEVT_NC_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_NC_LEFT_DCLICK));
1644 PyDict_SetItemString(d,"wxEVT_NC_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DCLICK));
1645 PyDict_SetItemString(d,"wxEVT_NC_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_NC_RIGHT_DCLICK));
1646 PyDict_SetItemString(d,"wxEVT_CHAR", PyInt_FromLong((long) wxEVT_CHAR));
1647 PyDict_SetItemString(d,"wxEVT_SCROLL_TOP", PyInt_FromLong((long) wxEVT_SCROLL_TOP));
1648 PyDict_SetItemString(d,"wxEVT_SCROLL_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLL_BOTTOM));
1649 PyDict_SetItemString(d,"wxEVT_SCROLL_LINEUP", PyInt_FromLong((long) wxEVT_SCROLL_LINEUP));
1650 PyDict_SetItemString(d,"wxEVT_SCROLL_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_LINEDOWN));
1651 PyDict_SetItemString(d,"wxEVT_SCROLL_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLL_PAGEUP));
1652 PyDict_SetItemString(d,"wxEVT_SCROLL_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_PAGEDOWN));
1653 PyDict_SetItemString(d,"wxEVT_SCROLL_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLL_THUMBTRACK));
1654 PyDict_SetItemString(d,"wxEVT_SIZE", PyInt_FromLong((long) wxEVT_SIZE));
1655 PyDict_SetItemString(d,"wxEVT_MOVE", PyInt_FromLong((long) wxEVT_MOVE));
1656 PyDict_SetItemString(d,"wxEVT_CLOSE_WINDOW", PyInt_FromLong((long) wxEVT_CLOSE_WINDOW));
1657 PyDict_SetItemString(d,"wxEVT_END_SESSION", PyInt_FromLong((long) wxEVT_END_SESSION));
1658 PyDict_SetItemString(d,"wxEVT_QUERY_END_SESSION", PyInt_FromLong((long) wxEVT_QUERY_END_SESSION));
1659 PyDict_SetItemString(d,"wxEVT_ACTIVATE_APP", PyInt_FromLong((long) wxEVT_ACTIVATE_APP));
1660 PyDict_SetItemString(d,"wxEVT_POWER", PyInt_FromLong((long) wxEVT_POWER));
1661 PyDict_SetItemString(d,"wxEVT_CHAR_HOOK", PyInt_FromLong((long) wxEVT_CHAR_HOOK));
1662 PyDict_SetItemString(d,"wxEVT_KEY_UP", PyInt_FromLong((long) wxEVT_KEY_UP));
1663 PyDict_SetItemString(d,"wxEVT_ACTIVATE", PyInt_FromLong((long) wxEVT_ACTIVATE));
1664 PyDict_SetItemString(d,"wxEVT_CREATE", PyInt_FromLong((long) wxEVT_CREATE));
1665 PyDict_SetItemString(d,"wxEVT_DESTROY", PyInt_FromLong((long) wxEVT_DESTROY));
1666 PyDict_SetItemString(d,"wxEVT_SHOW", PyInt_FromLong((long) wxEVT_SHOW));
1667 PyDict_SetItemString(d,"wxEVT_ICONIZE", PyInt_FromLong((long) wxEVT_ICONIZE));
1668 PyDict_SetItemString(d,"wxEVT_MAXIMIZE", PyInt_FromLong((long) wxEVT_MAXIMIZE));
1669 PyDict_SetItemString(d,"wxEVT_MOUSE_CAPTURE_CHANGED", PyInt_FromLong((long) wxEVT_MOUSE_CAPTURE_CHANGED));
1670 PyDict_SetItemString(d,"wxEVT_PAINT", PyInt_FromLong((long) wxEVT_PAINT));
1671 PyDict_SetItemString(d,"wxEVT_ERASE_BACKGROUND", PyInt_FromLong((long) wxEVT_ERASE_BACKGROUND));
1672 PyDict_SetItemString(d,"wxEVT_NC_PAINT", PyInt_FromLong((long) wxEVT_NC_PAINT));
1673 PyDict_SetItemString(d,"wxEVT_PAINT_ICON", PyInt_FromLong((long) wxEVT_PAINT_ICON));
1674 PyDict_SetItemString(d,"wxEVT_MENU_CHAR", PyInt_FromLong((long) wxEVT_MENU_CHAR));
1675 PyDict_SetItemString(d,"wxEVT_MENU_INIT", PyInt_FromLong((long) wxEVT_MENU_INIT));
1676 PyDict_SetItemString(d,"wxEVT_MENU_HIGHLIGHT", PyInt_FromLong((long) wxEVT_MENU_HIGHLIGHT));
1677 PyDict_SetItemString(d,"wxEVT_POPUP_MENU_INIT", PyInt_FromLong((long) wxEVT_POPUP_MENU_INIT));
1678 PyDict_SetItemString(d,"wxEVT_CONTEXT_MENU", PyInt_FromLong((long) wxEVT_CONTEXT_MENU));
1679 PyDict_SetItemString(d,"wxEVT_SYS_COLOUR_CHANGED", PyInt_FromLong((long) wxEVT_SYS_COLOUR_CHANGED));
1680 PyDict_SetItemString(d,"wxEVT_SETTING_CHANGED", PyInt_FromLong((long) wxEVT_SETTING_CHANGED));
1681 PyDict_SetItemString(d,"wxEVT_QUERY_NEW_PALETTE", PyInt_FromLong((long) wxEVT_QUERY_NEW_PALETTE));
1682 PyDict_SetItemString(d,"wxEVT_PALETTE_CHANGED", PyInt_FromLong((long) wxEVT_PALETTE_CHANGED));
1683 PyDict_SetItemString(d,"wxEVT_JOY_BUTTON_DOWN", PyInt_FromLong((long) wxEVT_JOY_BUTTON_DOWN));
1684 PyDict_SetItemString(d,"wxEVT_JOY_BUTTON_UP", PyInt_FromLong((long) wxEVT_JOY_BUTTON_UP));
1685 PyDict_SetItemString(d,"wxEVT_JOY_MOVE", PyInt_FromLong((long) wxEVT_JOY_MOVE));
1686 PyDict_SetItemString(d,"wxEVT_JOY_ZMOVE", PyInt_FromLong((long) wxEVT_JOY_ZMOVE));
1687 PyDict_SetItemString(d,"wxEVT_DROP_FILES", PyInt_FromLong((long) wxEVT_DROP_FILES));
1688 PyDict_SetItemString(d,"wxEVT_DRAW_ITEM", PyInt_FromLong((long) wxEVT_DRAW_ITEM));
1689 PyDict_SetItemString(d,"wxEVT_MEASURE_ITEM", PyInt_FromLong((long) wxEVT_MEASURE_ITEM));
1690 PyDict_SetItemString(d,"wxEVT_COMPARE_ITEM", PyInt_FromLong((long) wxEVT_COMPARE_ITEM));
1691 PyDict_SetItemString(d,"wxEVT_INIT_DIALOG", PyInt_FromLong((long) wxEVT_INIT_DIALOG));
1692 PyDict_SetItemString(d,"wxEVT_IDLE", PyInt_FromLong((long) wxEVT_IDLE));
1693 PyDict_SetItemString(d,"wxEVT_UPDATE_UI", PyInt_FromLong((long) wxEVT_UPDATE_UI));
1694 PyDict_SetItemString(d,"wxEVT_COMMAND_LEFT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_CLICK));
1695 PyDict_SetItemString(d,"wxEVT_COMMAND_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_DCLICK));
1696 PyDict_SetItemString(d,"wxEVT_COMMAND_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_CLICK));
1697 PyDict_SetItemString(d,"wxEVT_COMMAND_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_DCLICK));
1698 PyDict_SetItemString(d,"wxEVT_COMMAND_SET_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_SET_FOCUS));
1699 PyDict_SetItemString(d,"wxEVT_COMMAND_KILL_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_KILL_FOCUS));
1700 PyDict_SetItemString(d,"wxEVT_COMMAND_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_ENTER));
1701 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_DRAG));
1702 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_RDRAG));
1703 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT));
1704 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_END_LABEL_EDIT));
1705 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_TREE_DELETE_ITEM));
1706 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_GET_INFO));
1707 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SET_INFO));
1708 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDED));
1709 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDING));
1710 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSED));
1711 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSING));
1712 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED));
1713 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING));
1714 PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN));
1715 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG));
1716 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG));
1717 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT));
1718 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_END_LABEL_EDIT));
1719 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ITEM));
1720 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS));
1721 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_GET_INFO));
1722 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_SET_INFO));
1723 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_SELECTED));
1724 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_DESELECTED));
1725 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_LIST_KEY_DOWN));
1726 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_INSERT_ITEM));
1727 PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_CLICK));
1728 PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGED));
1729 PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGING));
1730 PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED));
1731 PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING));
1732 PyDict_SetItemString(d,"__version__", PyString_FromString("0.5.2"));
1733 PyDict_SetItemString(d,"cvar", SWIG_globals);
1734 SWIG_addvarlink(SWIG_globals,"wxPyDefaultPosition",_wrap_wxPyDefaultPosition_get, _wrap_wxPyDefaultPosition_set);
1735 SWIG_addvarlink(SWIG_globals,"wxPyDefaultSize",_wrap_wxPyDefaultSize_get, _wrap_wxPyDefaultSize_set);
1736
1737
1738 __wxPreStart(); // initialize the GUI toolkit, if needed.
1739
1740 // wxPyWindows = new wxHashTable(wxKEY_INTEGER, 100);
1741
1742 // Since these modules are all linked together, initialize them now
1743 // because python won't be able to find their shared library files,
1744 // (since there isn't any.)
1745 initwindowsc();
1746 initwindows2c();
1747 initeventsc();
1748 initmiscc();
1749 initgdic();
1750 initmdic();
1751 initcontrolsc();
1752 initcontrols2c();
1753 initcmndlgsc();
1754 initstattoolc();
1755 initframesc();
1756 #ifndef SEPARATE
1757 initutilsc();
1758 #endif
1759 /*
1760 * These are the pointer type-equivalency mappings.
1761 * (Used by the SWIG pointer type-checker).
1762 */
1763 SWIG_RegisterMapping("_wxAcceleratorTable","_class_wxAcceleratorTable",0);
1764 SWIG_RegisterMapping("_wxEvent","_class_wxEvent",0);
1765 SWIG_RegisterMapping("_class_wxActivateEvent","_wxActivateEvent",0);
1766 SWIG_RegisterMapping("_signed_long","_long",0);
1767 SWIG_RegisterMapping("_wxMenuEvent","_class_wxMenuEvent",0);
1768 SWIG_RegisterMapping("_wxFontData","_class_wxFontData",0);
1769 SWIG_RegisterMapping("_class_wxRegionIterator","_wxRegionIterator",0);
1770 SWIG_RegisterMapping("_class_wxMenuBar","_wxMenuBar",0);
1771 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler);
1772 SWIG_RegisterMapping("_class_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler);
1773 SWIG_RegisterMapping("_class_wxEvtHandler","_wxEvtHandler",0);
1774 SWIG_RegisterMapping("_wxPaintEvent","_class_wxPaintEvent",0);
1775 SWIG_RegisterMapping("_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0);
1776 SWIG_RegisterMapping("_wxCursor","_class_wxCursor",0);
1777 SWIG_RegisterMapping("_class_wxTreeCtrl","_wxTreeCtrl",0);
1778 SWIG_RegisterMapping("_wxMask","_class_wxMask",0);
1779 SWIG_RegisterMapping("_wxGrid","_class_wxGrid",0);
1780 SWIG_RegisterMapping("_wxPageSetupData","_class_wxPageSetupData",0);
1781 SWIG_RegisterMapping("_wxPyMenu","_class_wxPyMenu",0);
1782 SWIG_RegisterMapping("_class_wxColourData","_wxColourData",0);
1783 SWIG_RegisterMapping("_wxPen","_class_wxPen",0);
1784 SWIG_RegisterMapping("_wxUpdateUIEvent","_class_wxUpdateUIEvent",0);
1785 SWIG_RegisterMapping("_byte","_unsigned_char",0);
1786 SWIG_RegisterMapping("_wxStaticBox","_class_wxStaticBox",0);
1787 SWIG_RegisterMapping("_wxChoice","_class_wxChoice",0);
1788 SWIG_RegisterMapping("_wxSlider","_class_wxSlider",0);
1789 SWIG_RegisterMapping("_wxNotebookEvent","_class_wxNotebookEvent",0);
1790 SWIG_RegisterMapping("_long","_wxDash",0);
1791 SWIG_RegisterMapping("_long","_unsigned_long",0);
1792 SWIG_RegisterMapping("_long","_signed_long",0);
1793 SWIG_RegisterMapping("_wxDropFilesEvent","_class_wxDropFilesEvent",0);
1794 SWIG_RegisterMapping("_wxBitmapButton","_class_wxBitmapButton",0);
1795 SWIG_RegisterMapping("_class_wxAcceleratorTable","_wxAcceleratorTable",0);
1796 SWIG_RegisterMapping("_class_wxGauge","_wxGauge",0);
1797 SWIG_RegisterMapping("_wxDC","_class_wxDC",0);
1798 SWIG_RegisterMapping("_wxListEvent","_class_wxListEvent",0);
1799 SWIG_RegisterMapping("_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0);
1800 SWIG_RegisterMapping("_wxSpinEvent","_class_wxSpinEvent",0);
1801 SWIG_RegisterMapping("_class_wxRealPoint","_wxRealPoint",0);
1802 SWIG_RegisterMapping("_wxPrinterDC","_class_wxPrinterDC",0);
1803 SWIG_RegisterMapping("_class_wxMenuItem","_wxMenuItem",0);
1804 SWIG_RegisterMapping("_class_wxPaintEvent","_wxPaintEvent",0);
1805 SWIG_RegisterMapping("_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0);
1806 SWIG_RegisterMapping("_class_wxStatusBar","_wxStatusBar",0);
1807 SWIG_RegisterMapping("_wxPanel","_class_wxPanel",0);
1808 SWIG_RegisterMapping("_wxInitDialogEvent","_class_wxInitDialogEvent",0);
1809 SWIG_RegisterMapping("_wxCheckBox","_class_wxCheckBox",0);
1810 SWIG_RegisterMapping("_wxTextCtrl","_class_wxTextCtrl",0);
1811 SWIG_RegisterMapping("_class_wxMask","_wxMask",0);
1812 SWIG_RegisterMapping("_class_wxKeyEvent","_wxKeyEvent",0);
1813 SWIG_RegisterMapping("_class_wxGrid","_wxGrid",0);
1814 SWIG_RegisterMapping("_class_wxPageSetupData","_wxPageSetupData",0);
1815 SWIG_RegisterMapping("_wxColour","_class_wxColour",0);
1816 SWIG_RegisterMapping("_class_wxDialog","_wxDialog",0);
1817 SWIG_RegisterMapping("_wxPageSetupDialog","_class_wxPageSetupDialog",0);
1818 SWIG_RegisterMapping("_wxIdleEvent","_class_wxIdleEvent",0);
1819 SWIG_RegisterMapping("_class_wxUpdateUIEvent","_wxUpdateUIEvent",0);
1820 SWIG_RegisterMapping("_wxToolBar","_class_wxToolBar",0);
1821 SWIG_RegisterMapping("_wxBrush","_class_wxBrush",0);
1822 SWIG_RegisterMapping("_wxMiniFrame","_class_wxMiniFrame",0);
1823 SWIG_RegisterMapping("_class_wxNotebookEvent","_wxNotebookEvent",0);
1824 SWIG_RegisterMapping("_wxShowEvent","_class_wxShowEvent",0);
1825 SWIG_RegisterMapping("_uint","_unsigned_int",0);
1826 SWIG_RegisterMapping("_uint","_int",0);
1827 SWIG_RegisterMapping("_uint","_wxWindowID",0);
1828 SWIG_RegisterMapping("_class_wxEvent","_wxEvent",0);
1829 SWIG_RegisterMapping("_wxCheckListBox","_class_wxCheckListBox",0);
1830 SWIG_RegisterMapping("_wxGridEvent","_class_wxGridEvent",0);
1831 SWIG_RegisterMapping("_wxRect","_class_wxRect",0);
1832 SWIG_RegisterMapping("_wxCommandEvent","_class_wxCommandEvent",0);
1833 SWIG_RegisterMapping("_wxSizeEvent","_class_wxSizeEvent",0);
1834 SWIG_RegisterMapping("_wxPoint","_class_wxPoint",0);
1835 SWIG_RegisterMapping("_class_wxButton","_wxButton",0);
1836 SWIG_RegisterMapping("_wxRadioBox","_class_wxRadioBox",0);
1837 SWIG_RegisterMapping("_wxTreeItemData","_class_wxTreeItemData",0);
1838 SWIG_RegisterMapping("_class_wxFontData","_wxFontData",0);
1839 SWIG_RegisterMapping("_wxBitmap","_class_wxBitmap",0);
1840 SWIG_RegisterMapping("_wxTaskBarIcon","_class_wxTaskBarIcon",0);
1841 SWIG_RegisterMapping("_wxPrintDialog","_class_wxPrintDialog",0);
1842 SWIG_RegisterMapping("_wxPyTimer","_class_wxPyTimer",0);
1843 SWIG_RegisterMapping("_wxWindowDC","_class_wxWindowDC",0);
1844 SWIG_RegisterMapping("_wxScrollBar","_class_wxScrollBar",0);
1845 SWIG_RegisterMapping("_wxSpinButton","_class_wxSpinButton",0);
1846 SWIG_RegisterMapping("_wxToolBarTool","_class_wxToolBarTool",0);
1847 SWIG_RegisterMapping("_wxColourDialog","_class_wxColourDialog",0);
1848 SWIG_RegisterMapping("_wxPrintData","_class_wxPrintData",0);
1849 SWIG_RegisterMapping("_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0);
1850 SWIG_RegisterMapping("_wxMessageDialog","_class_wxMessageDialog",0);
1851 SWIG_RegisterMapping("_wxTextEntryDialog","_class_wxTextEntryDialog",0);
1852 SWIG_RegisterMapping("_wxConfig","_class_wxConfig",0);
1853 SWIG_RegisterMapping("_class_wxIconizeEvent","_wxIconizeEvent",0);
1854 SWIG_RegisterMapping("_class_wxStaticBitmap","_wxStaticBitmap",0);
1855 SWIG_RegisterMapping("_wxMDIChildFrame","_class_wxMDIChildFrame",0);
1856 SWIG_RegisterMapping("_wxListItem","_class_wxListItem",0);
1857 SWIG_RegisterMapping("_class_wxToolBar","_wxToolBar",0);
1858 SWIG_RegisterMapping("_wxScrollEvent","_class_wxScrollEvent",0);
1859 SWIG_RegisterMapping("_EBool","_signed_int",0);
1860 SWIG_RegisterMapping("_EBool","_int",0);
1861 SWIG_RegisterMapping("_EBool","_wxWindowID",0);
1862 SWIG_RegisterMapping("_class_wxRegion","_wxRegion",0);
1863 SWIG_RegisterMapping("_class_wxDropFilesEvent","_wxDropFilesEvent",0);
1864 SWIG_RegisterMapping("_wxStaticText","_class_wxStaticText",0);
1865 SWIG_RegisterMapping("_wxFont","_class_wxFont",0);
1866 SWIG_RegisterMapping("_wxCloseEvent","_class_wxCloseEvent",0);
1867 SWIG_RegisterMapping("_wxNotebook","_class_wxNotebook",0);
1868 SWIG_RegisterMapping("_unsigned_long","_wxDash",0);
1869 SWIG_RegisterMapping("_unsigned_long","_long",0);
1870 SWIG_RegisterMapping("_class_wxRect","_wxRect",0);
1871 SWIG_RegisterMapping("_class_wxDC","_wxDC",0);
1872 SWIG_RegisterMapping("_wxPyApp","_class_wxPyApp",0);
1873 SWIG_RegisterMapping("_wxMDIParentFrame","_class_wxMDIParentFrame",0);
1874 SWIG_RegisterMapping("_class_wxTreeEvent","_wxTreeEvent",0);
1875 SWIG_RegisterMapping("_class_wxDirDialog","_wxDirDialog",0);
1876 SWIG_RegisterMapping("_class_wxPyTimer","_wxPyTimer",0);
1877 SWIG_RegisterMapping("_wxFocusEvent","_class_wxFocusEvent",0);
1878 SWIG_RegisterMapping("_wxMaximizeEvent","_class_wxMaximizeEvent",0);
1879 SWIG_RegisterMapping("_class_wxSpinButton","_wxSpinButton",0);
1880 SWIG_RegisterMapping("_wxAcceleratorEntry","_class_wxAcceleratorEntry",0);
1881 SWIG_RegisterMapping("_class_wxPanel","_wxPanel",0);
1882 SWIG_RegisterMapping("_class_wxCheckBox","_wxCheckBox",0);
1883 SWIG_RegisterMapping("_wxComboBox","_class_wxComboBox",0);
1884 SWIG_RegisterMapping("_wxRadioButton","_class_wxRadioButton",0);
1885 SWIG_RegisterMapping("_class_wxMessageDialog","_wxMessageDialog",0);
1886 SWIG_RegisterMapping("_signed_int","_EBool",0);
1887 SWIG_RegisterMapping("_signed_int","_wxWindowID",0);
1888 SWIG_RegisterMapping("_signed_int","_int",0);
1889 SWIG_RegisterMapping("_class_wxTextCtrl","_wxTextCtrl",0);
1890 SWIG_RegisterMapping("_wxLayoutConstraints","_class_wxLayoutConstraints",0);
1891 SWIG_RegisterMapping("_wxMetaFileDC","_class_wxMetaFileDC",0);
1892 SWIG_RegisterMapping("_wxMenu","_class_wxMenu",0);
1893 SWIG_RegisterMapping("_class_wxMoveEvent","_wxMoveEvent",0);
1894 SWIG_RegisterMapping("_wxListBox","_class_wxListBox",0);
1895 SWIG_RegisterMapping("_wxScreenDC","_class_wxScreenDC",0);
1896 SWIG_RegisterMapping("_class_wxMDIChildFrame","_wxMDIChildFrame",0);
1897 SWIG_RegisterMapping("_WXTYPE","_short",0);
1898 SWIG_RegisterMapping("_WXTYPE","_signed_short",0);
1899 SWIG_RegisterMapping("_WXTYPE","_unsigned_short",0);
1900 SWIG_RegisterMapping("_wxFileDialog","_class_wxFileDialog",0);
1901 SWIG_RegisterMapping("_class_wxMDIClientWindow","_wxMDIClientWindow",0);
1902 SWIG_RegisterMapping("_class_wxBrush","_wxBrush",0);
1903 SWIG_RegisterMapping("_unsigned_short","_WXTYPE",0);
1904 SWIG_RegisterMapping("_unsigned_short","_short",0);
1905 SWIG_RegisterMapping("_class_wxWindow","_wxWindow",0);
1906 SWIG_RegisterMapping("_wxSplitterWindow","_class_wxSplitterWindow",0);
1907 SWIG_RegisterMapping("_class_wxStaticText","_wxStaticText",0);
1908 SWIG_RegisterMapping("_class_wxFont","_wxFont",0);
1909 SWIG_RegisterMapping("_class_wxCloseEvent","_wxCloseEvent",0);
1910 SWIG_RegisterMapping("_class_wxMenuEvent","_wxMenuEvent",0);
1911 SWIG_RegisterMapping("_wxClientDC","_class_wxClientDC",0);
1912 SWIG_RegisterMapping("_wxMouseEvent","_class_wxMouseEvent",0);
1913 SWIG_RegisterMapping("_wxListCtrl","_class_wxListCtrl",0);
1914 SWIG_RegisterMapping("_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0);
1915 SWIG_RegisterMapping("_class_wxPoint","_wxPoint",0);
1916 SWIG_RegisterMapping("_wxRealPoint","_class_wxRealPoint",0);
1917 SWIG_RegisterMapping("_class_wxRadioBox","_wxRadioBox",0);
1918 SWIG_RegisterMapping("_wxGridCell","_class_wxGridCell",0);
1919 SWIG_RegisterMapping("_signed_short","_WXTYPE",0);
1920 SWIG_RegisterMapping("_signed_short","_short",0);
1921 SWIG_RegisterMapping("_wxMemoryDC","_class_wxMemoryDC",0);
1922 SWIG_RegisterMapping("_class_wxTaskBarIcon","_wxTaskBarIcon",0);
1923 SWIG_RegisterMapping("_class_wxPrintDialog","_wxPrintDialog",0);
1924 SWIG_RegisterMapping("_wxPaintDC","_class_wxPaintDC",0);
1925 SWIG_RegisterMapping("_class_wxWindowDC","_wxWindowDC",0);
1926 SWIG_RegisterMapping("_class_wxFocusEvent","_wxFocusEvent",0);
1927 SWIG_RegisterMapping("_class_wxMaximizeEvent","_wxMaximizeEvent",0);
1928 SWIG_RegisterMapping("_wxStatusBar","_class_wxStatusBar",0);
1929 SWIG_RegisterMapping("_class_wxToolBarTool","_wxToolBarTool",0);
1930 SWIG_RegisterMapping("_class_wxAcceleratorEntry","_wxAcceleratorEntry",0);
1931 SWIG_RegisterMapping("_class_wxCursor","_wxCursor",0);
1932 SWIG_RegisterMapping("_wxScrolledWindow","_class_wxScrolledWindow",0);
1933 SWIG_RegisterMapping("_wxTreeItemId","_class_wxTreeItemId",0);
1934 SWIG_RegisterMapping("_unsigned_char","_byte",0);
1935 SWIG_RegisterMapping("_class_wxMetaFileDC","_wxMetaFileDC",0);
1936 SWIG_RegisterMapping("_class_wxMenu","_wxMenu",0);
1937 SWIG_RegisterMapping("_wxControl","_class_wxControl",0);
1938 SWIG_RegisterMapping("_class_wxListBox","_wxListBox",0);
1939 SWIG_RegisterMapping("_unsigned_int","_uint",0);
1940 SWIG_RegisterMapping("_unsigned_int","_wxWindowID",0);
1941 SWIG_RegisterMapping("_unsigned_int","_int",0);
1942 SWIG_RegisterMapping("_wxIcon","_class_wxIcon",0);
1943 SWIG_RegisterMapping("_wxDialog","_class_wxDialog",0);
1944 SWIG_RegisterMapping("_class_wxPyMenu","_wxPyMenu",0);
1945 SWIG_RegisterMapping("_class_wxListItem","_wxListItem",0);
1946 SWIG_RegisterMapping("_class_wxPen","_wxPen",0);
1947 SWIG_RegisterMapping("_class_wxFileDialog","_wxFileDialog",0);
1948 SWIG_RegisterMapping("_short","_WXTYPE",0);
1949 SWIG_RegisterMapping("_short","_unsigned_short",0);
1950 SWIG_RegisterMapping("_short","_signed_short",0);
1951 SWIG_RegisterMapping("_class_wxStaticBox","_wxStaticBox",0);
1952 SWIG_RegisterMapping("_class_wxScrollEvent","_wxScrollEvent",0);
1953 SWIG_RegisterMapping("_wxJoystickEvent","_class_wxJoystickEvent",0);
1954 SWIG_RegisterMapping("_class_wxChoice","_wxChoice",0);
1955 SWIG_RegisterMapping("_class_wxSlider","_wxSlider",0);
1956 SWIG_RegisterMapping("_class_wxBitmapButton","_wxBitmapButton",0);
1957 SWIG_RegisterMapping("_wxFrame","_class_wxFrame",0);
1958 SWIG_RegisterMapping("_class_wxNotebook","_wxNotebook",0);
1959 SWIG_RegisterMapping("_wxWindowID","_EBool",0);
1960 SWIG_RegisterMapping("_wxWindowID","_uint",0);
1961 SWIG_RegisterMapping("_wxWindowID","_int",0);
1962 SWIG_RegisterMapping("_wxWindowID","_signed_int",0);
1963 SWIG_RegisterMapping("_wxWindowID","_unsigned_int",0);
1964 SWIG_RegisterMapping("_int","_EBool",0);
1965 SWIG_RegisterMapping("_int","_uint",0);
1966 SWIG_RegisterMapping("_int","_wxWindowID",0);
1967 SWIG_RegisterMapping("_int","_unsigned_int",0);
1968 SWIG_RegisterMapping("_int","_signed_int",0);
1969 SWIG_RegisterMapping("_class_wxMouseEvent","_wxMouseEvent",0);
1970 SWIG_RegisterMapping("_class_wxListEvent","_wxListEvent",0);
1971 SWIG_RegisterMapping("_class_wxSpinEvent","_wxSpinEvent",0);
1972 SWIG_RegisterMapping("_wxButton","_class_wxButton",0);
1973 SWIG_RegisterMapping("_class_wxPyApp","_wxPyApp",0);
1974 SWIG_RegisterMapping("_wxSize","_class_wxSize",0);
1975 SWIG_RegisterMapping("_wxRegionIterator","_class_wxRegionIterator",0);
1976 SWIG_RegisterMapping("_class_wxPrinterDC","_wxPrinterDC",0);
1977 SWIG_RegisterMapping("_class_wxMDIParentFrame","_wxMDIParentFrame",0);
1978 SWIG_RegisterMapping("_class_wxPaintDC","_wxPaintDC",0);
1979 SWIG_RegisterMapping("_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0);
1980 SWIG_RegisterMapping("_class_wxInitDialogEvent","_wxInitDialogEvent",0);
1981 SWIG_RegisterMapping("_class_wxComboBox","_wxComboBox",0);
1982 SWIG_RegisterMapping("_class_wxRadioButton","_wxRadioButton",0);
1983 SWIG_RegisterMapping("_class_wxTreeItemId","_wxTreeItemId",0);
1984 SWIG_RegisterMapping("_wxTreeCtrl","_class_wxTreeCtrl",0);
1985 SWIG_RegisterMapping("_class_wxLayoutConstraints","_wxLayoutConstraints",0);
1986 SWIG_RegisterMapping("_wxIconizeEvent","_class_wxIconizeEvent",0);
1987 SWIG_RegisterMapping("_class_wxControl","_wxControl",0);
1988 SWIG_RegisterMapping("_wxStaticBitmap","_class_wxStaticBitmap",0);
1989 SWIG_RegisterMapping("_class_wxIcon","_wxIcon",0);
1990 SWIG_RegisterMapping("_class_wxColour","_wxColour",0);
1991 SWIG_RegisterMapping("_class_wxScreenDC","_wxScreenDC",0);
1992 SWIG_RegisterMapping("_class_wxPageSetupDialog","_wxPageSetupDialog",0);
1993 SWIG_RegisterMapping("_wxPalette","_class_wxPalette",0);
1994 SWIG_RegisterMapping("_class_wxIdleEvent","_wxIdleEvent",0);
1995 SWIG_RegisterMapping("_wxEraseEvent","_class_wxEraseEvent",0);
1996 SWIG_RegisterMapping("_class_wxJoystickEvent","_wxJoystickEvent",0);
1997 SWIG_RegisterMapping("_class_wxMiniFrame","_wxMiniFrame",0);
1998 SWIG_RegisterMapping("_wxFontDialog","_class_wxFontDialog",0);
1999 SWIG_RegisterMapping("_wxRegion","_class_wxRegion",0);
2000 SWIG_RegisterMapping("_class_wxSplitterWindow","_wxSplitterWindow",0);
2001 SWIG_RegisterMapping("_class_wxShowEvent","_wxShowEvent",0);
2002 SWIG_RegisterMapping("_wxActivateEvent","_class_wxActivateEvent",0);
2003 SWIG_RegisterMapping("_wxGauge","_class_wxGauge",0);
2004 SWIG_RegisterMapping("_class_wxCheckListBox","_wxCheckListBox",0);
2005 SWIG_RegisterMapping("_class_wxGridEvent","_wxGridEvent",0);
2006 SWIG_RegisterMapping("_class_wxCommandEvent","_wxCommandEvent",0);
2007 SWIG_RegisterMapping("_class_wxClientDC","_wxClientDC",0);
2008 SWIG_RegisterMapping("_class_wxSizeEvent","_wxSizeEvent",0);
2009 SWIG_RegisterMapping("_class_wxListCtrl","_wxListCtrl",0);
2010 SWIG_RegisterMapping("_class_wxTreeItemData","_wxTreeItemData",0);
2011 SWIG_RegisterMapping("_class_wxGridCell","_wxGridCell",0);
2012 SWIG_RegisterMapping("_class_wxSize","_wxSize",0);
2013 SWIG_RegisterMapping("_class_wxBitmap","_wxBitmap",0);
2014 SWIG_RegisterMapping("_class_wxMemoryDC","_wxMemoryDC",0);
2015 SWIG_RegisterMapping("_wxMenuBar","_class_wxMenuBar",0);
2016 SWIG_RegisterMapping("_wxTreeEvent","_class_wxTreeEvent",0);
2017 SWIG_RegisterMapping("_wxDirDialog","_class_wxDirDialog",0);
2018 SWIG_RegisterMapping("_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler);
2019 SWIG_RegisterMapping("_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler);
2020 SWIG_RegisterMapping("_wxEvtHandler","_class_wxEvtHandler",0);
2021 SWIG_RegisterMapping("_wxMenuItem","_class_wxMenuItem",0);
2022 SWIG_RegisterMapping("_class_wxScrollBar","_wxScrollBar",0);
2023 SWIG_RegisterMapping("_class_wxColourDialog","_wxColourDialog",0);
2024 SWIG_RegisterMapping("_class_wxPrintData","_wxPrintData",0);
2025 SWIG_RegisterMapping("_wxDash","_unsigned_long",0);
2026 SWIG_RegisterMapping("_wxDash","_long",0);
2027 SWIG_RegisterMapping("_class_wxScrolledWindow","_wxScrolledWindow",0);
2028 SWIG_RegisterMapping("_class_wxTextEntryDialog","_wxTextEntryDialog",0);
2029 SWIG_RegisterMapping("_class_wxConfig","_wxConfig",0);
2030 SWIG_RegisterMapping("_wxKeyEvent","_class_wxKeyEvent",0);
2031 SWIG_RegisterMapping("_wxMoveEvent","_class_wxMoveEvent",0);
2032 SWIG_RegisterMapping("_wxColourData","_class_wxColourData",0);
2033 SWIG_RegisterMapping("_class_wxPalette","_wxPalette",0);
2034 SWIG_RegisterMapping("_class_wxEraseEvent","_wxEraseEvent",0);
2035 SWIG_RegisterMapping("_wxMDIClientWindow","_class_wxMDIClientWindow",0);
2036 SWIG_RegisterMapping("_class_wxFontDialog","_wxFontDialog",0);
2037 SWIG_RegisterMapping("_wxWindow","_class_wxWindow",0);
2038 SWIG_RegisterMapping("_class_wxFrame","_wxFrame",0);
2039 }