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