4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Patch 5)
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.
13 * Do not make changes to this file--changes will be lost!
19 /* Implementation : PYTHON */
24 /***********************************************************************
26 * swig_lib/python/python.cfg
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
32 * Also contains supporting code for building python under Windows
33 * and things like that.
36 * Revision 1.13 1999/07/31 07:56:03 RD
39 * Added the missing wxWindow.GetUpdateRegion() method.
41 * Made a new change in SWIG (update your patches everybody) that
42 * provides a fix for global shadow objects that get an exception in
43 * their __del__ when their extension module has already been deleted.
44 * It was only a 1 line change in .../SWIG/Modules/pycpp.cxx at about
45 * line 496 if you want to do it by hand.
47 * It is now possible to run through MainLoop more than once in any one
48 * process. The cleanup that used to happen as MainLoop completed (and
49 * prevented it from running again) has been delayed until the wxc module
50 * is being unloaded by Python.
52 * wxWindow.PopupMenu() now takes a wxPoint instead of x,y. Added
53 * wxWindow.PopupMenuXY to be consistent with some other methods.
55 * Added wxGrid.SetEditInPlace and wxGrid.GetEditInPlace.
57 * You can now provide your own app.MainLoop method. See
58 * wxPython/demo/demoMainLoop.py for an example and some explaination.
60 * Got the in-place-edit for the wxTreeCtrl fixed and added some demo
61 * code to show how to use it.
63 * Put the wxIcon constructor back in for GTK as it now has one that
66 * Added wxGrid.GetCells
68 * Added wxSystemSettings static methods as functions with names like
69 * wxSystemSettings_GetSystemColour.
71 * Removed wxPyMenu since using menu callbacks have been depreciated in
72 * wxWindows. Use wxMenu and events instead.
74 * Added alternate wxBitmap constructor (for MSW only) as
75 * wxBitmapFromData(data, type, width, height, depth = 1)
77 * Added a helper function named wxPyTypeCast that can convert shadow
78 * objects of one type into shadow objects of another type. (Like doing
79 * a down-cast.) See the implementation in wx.py for some docs.
81 ************************************************************************/
91 /* Definitions for Windows/Unix exporting */
92 #if defined(__WIN32__)
93 # if defined(_MSC_VER)
94 # define SWIGEXPORT(a,b) __declspec(dllexport) a b
96 # if defined(__BORLANDC__)
97 # define SWIGEXPORT(a,b) a _export b
99 # define SWIGEXPORT(a,b) a b
103 # define SWIGEXPORT(a,b) a b
108 #define SWIGSTATIC extern "C"
115 #define SWIGSTATIC static
120 PyObject
*(*get_attr
)(void);
121 int (*set_attr
)(PyObject
*);
124 typedef struct swig_varlinkobject
{
126 swig_globalvar
**vars
;
129 } swig_varlinkobject
;
131 /* ----------------------------------------------------------------------
134 Function for python repr method
135 ---------------------------------------------------------------------- */
138 swig_varlink_repr(swig_varlinkobject
*v
)
141 return PyString_FromString("<Global variables>");
144 /* ---------------------------------------------------------------------
147 Print out all of the global variable names
148 --------------------------------------------------------------------- */
151 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int flags
)
156 fprintf(fp
,"Global variables { ");
158 fprintf(fp
,"%s", v
->vars
[i
]->name
);
160 if (v
->vars
[i
]) fprintf(fp
,", ");
166 /* --------------------------------------------------------------------
169 This function gets the value of a variable and returns it as a
170 PyObject. In our case, we'll be looking at the datatype and
171 converting into a number or string
172 -------------------------------------------------------------------- */
175 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
)
181 if (strcmp(v
->vars
[i
]->name
,n
) == 0) {
182 return (*v
->vars
[i
]->get_attr
)();
186 sprintf(temp
,"C global variable %s not found.", n
);
187 PyErr_SetString(PyExc_NameError
,temp
);
191 /* -------------------------------------------------------------------
192 swig_varlink_setattr()
194 This function sets the value of a variable.
195 ------------------------------------------------------------------- */
198 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
)
203 if (strcmp(v
->vars
[i
]->name
,n
) == 0) {
204 return (*v
->vars
[i
]->set_attr
)(p
);
208 sprintf(temp
,"C global variable %s not found.", n
);
209 PyErr_SetString(PyExc_NameError
,temp
);
213 statichere PyTypeObject varlinktype
= {
214 /* PyObject_HEAD_INIT(&PyType_Type) Note : This doesn't work on some machines */
215 PyObject_HEAD_INIT(0)
217 "varlink", /* Type name */
218 sizeof(swig_varlinkobject
), /* Basic size */
221 (printfunc
) swig_varlink_print
, /* Print */
222 (getattrfunc
) swig_varlink_getattr
, /* get attr */
223 (setattrfunc
) swig_varlink_setattr
, /* Set attr */
225 (reprfunc
) swig_varlink_repr
, /* tp_repr */
226 0, /* tp_as_number */
227 0, /* tp_as_mapping*/
231 /* Create a variable linking object for use later */
233 SWIGSTATIC PyObject
*
234 SWIG_newvarlink(void)
236 swig_varlinkobject
*result
= 0;
237 result
= PyMem_NEW(swig_varlinkobject
,1);
238 varlinktype
.ob_type
= &PyType_Type
; /* Patch varlinktype into a PyType */
239 result
->ob_type
= &varlinktype
;
240 /* _Py_NewReference(result); Does not seem to be necessary */
242 result
->maxvars
= 64;
243 result
->vars
= (swig_globalvar
**) malloc(64*sizeof(swig_globalvar
*));
245 result
->ob_refcnt
= 0;
246 Py_XINCREF((PyObject
*) result
);
247 return ((PyObject
*) result
);
251 SWIG_addvarlink(PyObject
*p
, char *name
,
252 PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
))
254 swig_varlinkobject
*v
;
255 v
= (swig_varlinkobject
*) p
;
257 if (v
->nvars
>= v
->maxvars
-1) {
258 v
->maxvars
= 2*v
->maxvars
;
259 v
->vars
= (swig_globalvar
**) realloc(v
->vars
,v
->maxvars
*sizeof(swig_globalvar
*));
260 if (v
->vars
== NULL
) {
261 fprintf(stderr
,"SWIG : Fatal error in initializing Python module.\n");
265 v
->vars
[v
->nvars
] = (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
266 v
->vars
[v
->nvars
]->name
= (char *) malloc(strlen(name
)+1);
267 strcpy(v
->vars
[v
->nvars
]->name
,name
);
268 v
->vars
[v
->nvars
]->get_attr
= get_attr
;
269 v
->vars
[v
->nvars
]->set_attr
= set_attr
;
271 v
->vars
[v
->nvars
] = 0;
276 /*****************************************************************************
281 * This file contains supporting code for the SWIG run-time type checking
282 * mechanism. The following functions are available :
284 * SWIG_RegisterMapping(char *origtype, char *newtype, void *(*cast)(void *));
286 * Registers a new type-mapping with the type-checker. origtype is the
287 * original datatype and newtype is an equivalent type. cast is optional
288 * pointer to a function to cast pointer values between types (this
289 * is typically used to cast pointers from derived classes to base classes in C++)
291 * SWIG_MakePtr(char *buffer, void *ptr, char *typestring);
293 * Makes a pointer string from a pointer and typestring. The result is returned
294 * in buffer which is assumed to hold enough space for the result.
296 * char * SWIG_GetPtr(char *buffer, void **ptr, char *type)
298 * Gets a pointer value from a string. If there is a type-mismatch, returns
299 * a character string to the received type. On success, returns NULL.
302 * You can remap these functions by making a file called "swigptr.swg" in
303 * your the same directory as the interface file you are wrapping.
305 * These functions are normally declared static, but this file can be
306 * can be used in a multi-module environment by redefining the symbol
308 *****************************************************************************/
314 #define SWIGSTATIC extern "C"
321 #define SWIGSTATIC static
325 /* SWIG pointer structure */
327 typedef struct SwigPtrType
{
328 char *name
; /* Datatype name */
329 int len
; /* Length (used for optimization) */
330 void *(*cast
)(void *); /* Pointer casting function */
331 struct SwigPtrType
*next
; /* Linked list pointer */
334 /* Pointer cache structure */
337 int stat
; /* Status (valid) bit */
338 SwigPtrType
*tp
; /* Pointer to type structure */
339 char name
[256]; /* Given datatype name */
340 char mapped
[256]; /* Equivalent name */
345 static int SwigPtrMax
= 64; /* Max entries that can be currently held */
346 /* This value may be adjusted dynamically */
347 static int SwigPtrN
= 0; /* Current number of entries */
348 static int SwigPtrSort
= 0; /* Status flag indicating sort */
349 static int SwigStart
[256]; /* Starting positions of types */
352 static SwigPtrType
*SwigPtrTable
= 0; /* Table containing pointer equivalences */
356 #define SWIG_CACHESIZE 8
357 #define SWIG_CACHEMASK 0x7
358 static SwigCacheType SwigCache
[SWIG_CACHESIZE
];
359 static int SwigCacheIndex
= 0;
360 static int SwigLastCache
= 0;
362 /* Sort comparison function */
363 static int swigsort(const void *data1
, const void *data2
) {
364 SwigPtrType
*d1
= (SwigPtrType
*) data1
;
365 SwigPtrType
*d2
= (SwigPtrType
*) data2
;
366 return strcmp(d1
->name
,d2
->name
);
369 /* Binary Search function */
370 static int swigcmp(const void *key
, const void *data
) {
371 char *k
= (char *) key
;
372 SwigPtrType
*d
= (SwigPtrType
*) data
;
373 return strncmp(k
,d
->name
,d
->len
);
376 /* Register a new datatype with the type-checker */
379 void SWIG_RegisterMapping(char *origtype
, char *newtype
, void *(*cast
)(void *)) {
382 SwigPtrType
*t
= 0,*t1
;
384 /* Allocate the pointer table if necessary */
387 SwigPtrTable
= (SwigPtrType
*) malloc(SwigPtrMax
*sizeof(SwigPtrType
));
391 if (SwigPtrN
>= SwigPtrMax
) {
392 SwigPtrMax
= 2*SwigPtrMax
;
393 SwigPtrTable
= (SwigPtrType
*) realloc((char *) SwigPtrTable
,SwigPtrMax
*sizeof(SwigPtrType
));
395 for (i
= 0; i
< SwigPtrN
; i
++)
396 if (strcmp(SwigPtrTable
[i
].name
,origtype
) == 0) {
397 t
= &SwigPtrTable
[i
];
401 t
= &SwigPtrTable
[SwigPtrN
];
403 t
->len
= strlen(t
->name
);
409 /* Check for existing entry */
412 if ((strcmp(t
->name
,newtype
) == 0)) {
413 if (cast
) t
->cast
= cast
;
419 /* Now place entry (in sorted order) */
421 t1
= (SwigPtrType
*) malloc(sizeof(SwigPtrType
));
423 t1
->len
= strlen(t1
->name
);
430 /* Make a pointer value string */
433 void SWIG_MakePtr(char *_c
, const void *_ptr
, char *type
) {
434 static char _hex
[16] =
435 {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
436 'a', 'b', 'c', 'd', 'e', 'f'};
437 unsigned long _p
, _s
;
438 char _result
[20], *_r
; /* Note : a 64-bit hex number = 16 digits */
440 _p
= (unsigned long) _ptr
;
448 while (_r
>= _result
)
457 /* Define for backwards compatibility */
459 #define _swig_make_hex SWIG_MakePtr
461 /* Function for getting a pointer value */
464 char *SWIG_GetPtr(char *_c
, void **ptr
, char *_t
)
471 SwigCacheType
*cache
;
475 /* Pointer values must start with leading underscore */
478 /* Extract hex value from pointer */
480 if ((*_c
>= '0') && (*_c
<= '9'))
481 _p
= (_p
<< 4) + (*_c
- '0');
482 else if ((*_c
>= 'a') && (*_c
<= 'f'))
483 _p
= (_p
<< 4) + ((*_c
- 'a') + 10);
492 qsort((void *) SwigPtrTable
, SwigPtrN
, sizeof(SwigPtrType
), swigsort
);
493 for (i
= 0; i
< 256; i
++) {
494 SwigStart
[i
] = SwigPtrN
;
496 for (i
= SwigPtrN
-1; i
>= 0; i
--) {
497 SwigStart
[(int) (SwigPtrTable
[i
].name
[1])] = i
;
499 for (i
= 255; i
>= 1; i
--) {
500 if (SwigStart
[i
-1] > SwigStart
[i
])
501 SwigStart
[i
-1] = SwigStart
[i
];
504 for (i
= 0; i
< SWIG_CACHESIZE
; i
++)
505 SwigCache
[i
].stat
= 0;
508 /* First check cache for matches. Uses last cache value as starting point */
509 cache
= &SwigCache
[SwigLastCache
];
510 for (i
= 0; i
< SWIG_CACHESIZE
; i
++) {
512 if (strcmp(_t
,cache
->name
) == 0) {
513 if (strcmp(_c
,cache
->mapped
) == 0) {
516 if (cache
->tp
->cast
) *ptr
= (*(cache
->tp
->cast
))(*ptr
);
521 SwigLastCache
= (SwigLastCache
+1) & SWIG_CACHEMASK
;
522 if (!SwigLastCache
) cache
= SwigCache
;
525 /* We have a type mismatch. Will have to look through our type
526 mapping table to figure out whether or not we can accept this datatype */
528 start
= SwigStart
[(int) _t
[1]];
529 end
= SwigStart
[(int) _t
[1]+1];
530 sp
= &SwigPtrTable
[start
];
531 while (start
< end
) {
532 if (swigcmp(_t
,sp
) == 0) break;
536 if (start
>= end
) sp
= 0;
537 /* Try to find a match for this */
539 while (swigcmp(_t
,sp
) == 0) {
543 /* Try to find entry for our given datatype */
545 if (tp
->len
>= 255) {
548 strcpy(temp_type
,tp
->name
);
549 strncat(temp_type
,_t
+len
,255-tp
->len
);
550 if (strcmp(_c
,temp_type
) == 0) {
552 strcpy(SwigCache
[SwigCacheIndex
].mapped
,_c
);
553 strcpy(SwigCache
[SwigCacheIndex
].name
,_t
);
554 SwigCache
[SwigCacheIndex
].stat
= 1;
555 SwigCache
[SwigCacheIndex
].tp
= tp
;
556 SwigCacheIndex
= SwigCacheIndex
& SWIG_CACHEMASK
;
558 /* Get pointer value */
560 if (tp
->cast
) *ptr
= (*(tp
->cast
))(*ptr
);
566 /* Hmmm. Didn't find it this time */
569 /* Didn't find any sort of match for this data.
570 Get the pointer value and return the received type */
574 /* Found a match on the first try. Return pointer value */
579 /* No type specified. Good luck */
584 if (strcmp (_c
, "NULL") == 0) {
593 /* Compatibility mode */
595 #define _swig_get_hex SWIG_GetPtr
597 #define SWIG_init initwxc
599 #define SWIG_name "wxc"
603 static PyObject
* l_output_helper(PyObject
* target
, PyObject
* o
) {
607 } else if (target
== Py_None
) {
611 if (!PyList_Check(target
)) {
613 target
= PyList_New(0);
614 PyList_Append(target
, o2
);
617 PyList_Append(target
,o
);
623 static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) {
629 } else if (target
== Py_None
) {
633 if (!PyTuple_Check(target
)) {
635 target
= PyTuple_New(1);
636 PyTuple_SetItem(target
, 0, o2
);
639 PyTuple_SetItem(o3
, 0, o
);
642 target
= PySequence_Concat(o2
, o3
);
650 extern byte
* byte_LIST_helper(PyObject
* source
);
651 extern int* int_LIST_helper(PyObject
* source
);
652 extern long* long_LIST_helper(PyObject
* source
);
653 extern char** string_LIST_helper(PyObject
* source
);
654 extern wxPoint
* wxPoint_LIST_helper(PyObject
* source
);
655 extern wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
);
656 extern wxString
* wxString_LIST_helper(PyObject
* source
);
657 extern wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
);
660 static char* wxStringErrorMsg
= "string type is required for parameter";
665 /*------------------------------------------------------------------
668 Constructs a new pointer value. Value may either be a string
669 or an integer. Type is a string corresponding to either the
670 C datatype or mangled datatype.
672 ptrcast(0,"Vector *")
674 ptrcast(0,"Vector_p")
675 ------------------------------------------------------------------ */
677 static PyObject
*ptrcast(PyObject
*_PTRVALUE
, char *type
) {
684 /* Produce a "mangled" version of the type string. */
686 typestr
= (char *) malloc(strlen(type
)+2);
688 /* Go through and munge the typestring */
695 if ((*c
== '*') || (*c
== '&')) {
706 /* Check to see what kind of object _PTRVALUE is */
708 if (PyInt_Check(_PTRVALUE
)) {
709 ptr
= (void *) PyInt_AsLong(_PTRVALUE
);
710 /* Received a numerical value. Make a pointer out of it */
711 r
= (char *) malloc(strlen(typestr
)+22);
713 SWIG_MakePtr(r
, ptr
, typestr
);
715 sprintf(r
,"_0%s",typestr
);
717 obj
= PyString_FromString(r
);
719 } else if (PyString_Check(_PTRVALUE
)) {
720 /* Have a real pointer value now. Try to strip out the pointer
722 s
= PyString_AsString(_PTRVALUE
);
723 r
= (char *) malloc(strlen(type
)+22);
725 /* Now extract the pointer value */
726 if (!SWIG_GetPtr(s
,&ptr
,0)) {
728 SWIG_MakePtr(r
,ptr
,typestr
);
730 sprintf(r
,"_0%s",typestr
);
732 obj
= PyString_FromString(r
);
742 PyErr_SetString(PyExc_TypeError
,"Type error in ptrcast. Argument is not a valid pointer value.");
746 /*------------------------------------------------------------------
747 ptrvalue(ptr,type = 0)
749 Attempts to dereference a pointer value. If type is given, it
750 will try to use that type. Otherwise, this function will attempt
751 to "guess" the proper datatype by checking against all of the
753 ------------------------------------------------------------------ */
755 static PyObject
*ptrvalue(PyObject
*_PTRVALUE
, int index
, char *type
) {
760 if (!PyString_Check(_PTRVALUE
)) {
761 PyErr_SetString(PyExc_TypeError
,"Type error in ptrvalue. Argument is not a valid pointer value.");
764 s
= PyString_AsString(_PTRVALUE
);
765 if (SWIG_GetPtr(s
,&ptr
,0)) {
766 PyErr_SetString(PyExc_TypeError
,"Type error in ptrvalue. Argument is not a valid pointer value.");
770 /* If no datatype was passed, try a few common datatypes first */
774 /* No datatype was passed. Type to figure out if it's a common one */
776 if (!SWIG_GetPtr(s
,&ptr
,"_int_p")) {
778 } else if (!SWIG_GetPtr(s
,&ptr
,"_double_p")) {
780 } else if (!SWIG_GetPtr(s
,&ptr
,"_short_p")) {
782 } else if (!SWIG_GetPtr(s
,&ptr
,"_long_p")) {
784 } else if (!SWIG_GetPtr(s
,&ptr
,"_float_p")) {
786 } else if (!SWIG_GetPtr(s
,&ptr
,"_char_p")) {
788 } else if (!SWIG_GetPtr(s
,&ptr
,"_char_pp")) {
796 PyErr_SetString(PyExc_TypeError
,"Unable to dereference NULL pointer.");
800 /* Now we have a datatype. Try to figure out what to do about it */
801 if (strcmp(type
,"int") == 0) {
802 obj
= PyInt_FromLong((long) *(((int *) ptr
) + index
));
803 } else if (strcmp(type
,"double") == 0) {
804 obj
= PyFloat_FromDouble((double) *(((double *) ptr
)+index
));
805 } else if (strcmp(type
,"short") == 0) {
806 obj
= PyInt_FromLong((long) *(((short *) ptr
)+index
));
807 } else if (strcmp(type
,"long") == 0) {
808 obj
= PyInt_FromLong((long) *(((long *) ptr
)+index
));
809 } else if (strcmp(type
,"float") == 0) {
810 obj
= PyFloat_FromDouble((double) *(((float *) ptr
)+index
));
811 } else if (strcmp(type
,"char") == 0) {
812 obj
= PyString_FromString(((char *) ptr
)+index
);
813 } else if (strcmp(type
,"char *") == 0) {
814 char *c
= *(((char **) ptr
)+index
);
815 if (c
) obj
= PyString_FromString(c
);
816 else obj
= PyString_FromString("NULL");
818 PyErr_SetString(PyExc_TypeError
,"Unable to dereference unsupported datatype.");
824 /*------------------------------------------------------------------
825 ptrcreate(type,value = 0,numelements = 1)
827 Attempts to create a new object of given type. Type must be
828 a basic C datatype. Will not create complex objects.
829 ------------------------------------------------------------------ */
831 static PyObject
*ptrcreate(char *type
, PyObject
*_PYVALUE
, int numelements
) {
838 /* Check the type string against a variety of possibilities */
840 if (strcmp(type
,"int") == 0) {
841 sz
= sizeof(int)*numelements
;
843 } else if (strcmp(type
,"short") == 0) {
844 sz
= sizeof(short)*numelements
;
846 } else if (strcmp(type
,"long") == 0) {
847 sz
= sizeof(long)*numelements
;
849 } else if (strcmp(type
,"double") == 0) {
850 sz
= sizeof(double)*numelements
;
852 } else if (strcmp(type
,"float") == 0) {
853 sz
= sizeof(float)*numelements
;
855 } else if (strcmp(type
,"char") == 0) {
856 sz
= sizeof(char)*numelements
;
858 } else if (strcmp(type
,"char *") == 0) {
859 sz
= sizeof(char *)*(numelements
+1);
862 PyErr_SetString(PyExc_TypeError
,"Unable to create unknown datatype.");
866 /* Create the new object */
868 ptr
= (void *) malloc(sz
);
870 PyErr_SetString(PyExc_MemoryError
,"Out of memory in swig_create.");
874 /* Now try to set its default value */
877 if (strcmp(type
,"int") == 0) {
879 ivalue
= (int) PyInt_AsLong(_PYVALUE
);
881 for (i
= 0; i
< numelements
; i
++)
883 } else if (strcmp(type
,"short") == 0) {
886 ivalue
= (short) PyInt_AsLong(_PYVALUE
);
888 for (i
= 0; i
< numelements
; i
++)
890 } else if (strcmp(type
,"long") == 0) {
893 ivalue
= (long) PyInt_AsLong(_PYVALUE
);
895 for (i
= 0; i
< numelements
; i
++)
897 } else if (strcmp(type
,"double") == 0) {
900 ivalue
= (double) PyFloat_AsDouble(_PYVALUE
);
902 for (i
= 0; i
< numelements
; i
++)
904 } else if (strcmp(type
,"float") == 0) {
907 ivalue
= (float) PyFloat_AsDouble(_PYVALUE
);
909 for (i
= 0; i
< numelements
; i
++)
911 } else if (strcmp(type
,"char") == 0) {
913 ivalue
= (char *) PyString_AsString(_PYVALUE
);
915 strncpy(ip
,ivalue
,numelements
-1);
916 } else if (strcmp(type
,"char *") == 0) {
919 ivalue
= (char *) PyString_AsString(_PYVALUE
);
921 for (i
= 0; i
< numelements
; i
++) {
923 ip
[i
] = (char *) malloc(strlen(ivalue
)+1);
924 strcpy(ip
[i
],ivalue
);
932 /* Create the pointer value */
934 SWIG_MakePtr(temp
,ptr
,cast
);
935 obj
= PyString_FromString(temp
);
940 /*------------------------------------------------------------------
941 ptrset(ptr,value,index = 0,type = 0)
943 Attempts to set the value of a pointer variable. If type is
944 given, we will use that type. Otherwise, we'll guess the datatype.
945 ------------------------------------------------------------------ */
947 static PyObject
*ptrset(PyObject
*_PTRVALUE
, PyObject
*_PYVALUE
, int index
, char *type
) {
952 if (!PyString_Check(_PTRVALUE
)) {
953 PyErr_SetString(PyExc_TypeError
,"Type error in ptrset. Argument is not a valid pointer value.");
956 s
= PyString_AsString(_PTRVALUE
);
957 if (SWIG_GetPtr(s
,&ptr
,0)) {
958 PyErr_SetString(PyExc_TypeError
,"Type error in ptrset. Argument is not a valid pointer value.");
962 /* If no datatype was passed, try a few common datatypes first */
966 /* No datatype was passed. Type to figure out if it's a common one */
968 if (!SWIG_GetPtr(s
,&ptr
,"_int_p")) {
970 } else if (!SWIG_GetPtr(s
,&ptr
,"_double_p")) {
972 } else if (!SWIG_GetPtr(s
,&ptr
,"_short_p")) {
974 } else if (!SWIG_GetPtr(s
,&ptr
,"_long_p")) {
976 } else if (!SWIG_GetPtr(s
,&ptr
,"_float_p")) {
978 } else if (!SWIG_GetPtr(s
,&ptr
,"_char_p")) {
980 } else if (!SWIG_GetPtr(s
,&ptr
,"_char_pp")) {
988 PyErr_SetString(PyExc_TypeError
,"Unable to set NULL pointer.");
992 /* Now we have a datatype. Try to figure out what to do about it */
993 if (strcmp(type
,"int") == 0) {
994 *(((int *) ptr
)+index
) = (int) PyInt_AsLong(_PYVALUE
);
995 } else if (strcmp(type
,"double") == 0) {
996 *(((double *) ptr
)+index
) = (double) PyFloat_AsDouble(_PYVALUE
);
997 } else if (strcmp(type
,"short") == 0) {
998 *(((short *) ptr
)+index
) = (short) PyInt_AsLong(_PYVALUE
);
999 } else if (strcmp(type
,"long") == 0) {
1000 *(((long *) ptr
)+index
) = (long) PyInt_AsLong(_PYVALUE
);
1001 } else if (strcmp(type
,"float") == 0) {
1002 *(((float *) ptr
)+index
) = (float) PyFloat_AsDouble(_PYVALUE
);
1003 } else if (strcmp(type
,"char") == 0) {
1004 char *c
= PyString_AsString(_PYVALUE
);
1005 strcpy(((char *) ptr
)+index
, c
);
1006 } else if (strcmp(type
,"char *") == 0) {
1007 char *c
= PyString_AsString(_PYVALUE
);
1008 char **ca
= (char **) ptr
;
1009 if (ca
[index
]) free(ca
[index
]);
1010 if (strcmp(c
,"NULL") == 0) {
1013 ca
[index
] = (char *) malloc(strlen(c
)+1);
1014 strcpy(ca
[index
],c
);
1017 PyErr_SetString(PyExc_TypeError
,"Unable to set unsupported datatype.");
1025 /*------------------------------------------------------------------
1028 Adds a value to an existing pointer value. Will do a type-dependent
1029 add for basic datatypes. For other datatypes, will do a byte-add.
1030 ------------------------------------------------------------------ */
1032 static PyObject
*ptradd(PyObject
*_PTRVALUE
, int offset
) {
1039 /* Check to see what kind of object _PTRVALUE is */
1041 if (PyString_Check(_PTRVALUE
)) {
1042 /* Have a potential pointer value now. Try to strip out the value */
1043 s
= PyString_AsString(_PTRVALUE
);
1045 /* Try to handle a few common datatypes first */
1047 if (!SWIG_GetPtr(s
,&ptr
,"_int_p")) {
1048 ptr
= (void *) (((int *) ptr
) + offset
);
1049 } else if (!SWIG_GetPtr(s
,&ptr
,"_double_p")) {
1050 ptr
= (void *) (((double *) ptr
) + offset
);
1051 } else if (!SWIG_GetPtr(s
,&ptr
,"_short_p")) {
1052 ptr
= (void *) (((short *) ptr
) + offset
);
1053 } else if (!SWIG_GetPtr(s
,&ptr
,"_long_p")) {
1054 ptr
= (void *) (((long *) ptr
) + offset
);
1055 } else if (!SWIG_GetPtr(s
,&ptr
,"_float_p")) {
1056 ptr
= (void *) (((float *) ptr
) + offset
);
1057 } else if (!SWIG_GetPtr(s
,&ptr
,"_char_p")) {
1058 ptr
= (void *) (((char *) ptr
) + offset
);
1059 } else if (!SWIG_GetPtr(s
,&ptr
,0)) {
1060 ptr
= (void *) (((char *) ptr
) + offset
);
1062 PyErr_SetString(PyExc_TypeError
,"Type error in ptradd. Argument is not a valid pointer value.");
1065 type
= SWIG_GetPtr(s
,&junk
,"INVALID POINTER");
1066 r
= (char *) malloc(strlen(type
)+20);
1068 SWIG_MakePtr(r
,ptr
,type
);
1070 sprintf(r
,"_0%s",type
);
1072 obj
= PyString_FromString(r
);
1078 /*------------------------------------------------------------------
1081 Allows a mapping between type1 and type2. (Like a typedef)
1082 ------------------------------------------------------------------ */
1084 static void ptrmap(char *type1
, char *type2
) {
1086 char *typestr1
,*typestr2
,*c
,*r
;
1088 /* Produce a "mangled" version of the type string. */
1090 typestr1
= (char *) malloc(strlen(type1
)+2);
1092 /* Go through and munge the typestring */
1099 if ((*c
== '*') || (*c
== '&')) {
1110 typestr2
= (char *) malloc(strlen(type2
)+2);
1112 /* Go through and munge the typestring */
1119 if ((*c
== '*') || (*c
== '&')) {
1129 SWIG_RegisterMapping(typestr1
,typestr2
,0);
1130 SWIG_RegisterMapping(typestr2
,typestr1
,0);
1133 /*------------------------------------------------------------------
1136 Destroys a pointer value
1137 ------------------------------------------------------------------ */
1139 PyObject
*ptrfree(PyObject
*_PTRVALUE
) {
1143 if (!PyString_Check(_PTRVALUE
)) {
1144 PyErr_SetString(PyExc_TypeError
,"Type error in ptrfree. Argument is not a valid pointer value.");
1147 s
= PyString_AsString(_PTRVALUE
);
1148 if (SWIG_GetPtr(s
,&ptr
,0)) {
1149 PyErr_SetString(PyExc_TypeError
,"Type error in ptrfree. Argument is not a valid pointer value.");
1153 /* Check to see if this pointer is a char ** */
1154 if (!SWIG_GetPtr(s
,&junk
,"_char_pp")) {
1155 char **c
= (char **) ptr
;
1172 class __wxPyCleanup
{
1175 ~__wxPyCleanup() { wxApp::CleanUp(); }
1178 extern "C" SWIGEXPORT(void,initwindowsc
)();
1179 extern "C" SWIGEXPORT(void,initwindows2c
)();
1180 extern "C" SWIGEXPORT(void,initeventsc
)();
1181 extern "C" SWIGEXPORT(void,initmiscc
)();
1182 extern "C" SWIGEXPORT(void,initmisc2c
)();
1183 extern "C" SWIGEXPORT(void,initgdic
)();
1184 extern "C" SWIGEXPORT(void,initmdic
)();
1185 extern "C" SWIGEXPORT(void,initcontrolsc
)();
1186 extern "C" SWIGEXPORT(void,initcontrols2c
)();
1187 extern "C" SWIGEXPORT(void,initcmndlgsc
)();
1188 extern "C" SWIGEXPORT(void,initstattoolc
)();
1189 extern "C" SWIGEXPORT(void,initframesc
)();
1190 extern "C" SWIGEXPORT(void,initwindows3c
)();
1191 extern "C" SWIGEXPORT(void,initimagec
)();
1192 extern "C" SWIGEXPORT(void,initprintfwc
)();
1194 extern "C" SWIGEXPORT(void,initutilsc
)();
1195 //extern "C" SWIGEXPORT(void,initoglc)();
1196 extern "C" SWIGEXPORT(void,initglcanvasc
)();
1198 static PyObject
*_wrap_ptrcast(PyObject
*self
, PyObject
*args
) {
1199 PyObject
* _resultobj
;
1203 PyObject
* _obj0
= 0;
1206 if(!PyArg_ParseTuple(args
,"Os:ptrcast",&_obj0
,&_arg1
))
1212 wxPy_BEGIN_ALLOW_THREADS
;
1213 _result
= (PyObject
*)ptrcast(_arg0
,_arg1
);
1215 wxPy_END_ALLOW_THREADS
;
1217 _resultobj
= _result
;
1222 static PyObject
*_wrap_ptrvalue(PyObject
*self
, PyObject
*args
) {
1223 PyObject
* _resultobj
;
1228 PyObject
* _obj0
= 0;
1231 if(!PyArg_ParseTuple(args
,"O|is:ptrvalue",&_obj0
,&_arg1
,&_arg2
))
1237 wxPy_BEGIN_ALLOW_THREADS
;
1238 _result
= (PyObject
*)ptrvalue(_arg0
,_arg1
,_arg2
);
1240 wxPy_END_ALLOW_THREADS
;
1242 _resultobj
= _result
;
1247 static PyObject
*_wrap_ptrset(PyObject
*self
, PyObject
*args
) {
1248 PyObject
* _resultobj
;
1254 PyObject
* _obj0
= 0;
1255 PyObject
* _obj1
= 0;
1258 if(!PyArg_ParseTuple(args
,"OO|is:ptrset",&_obj0
,&_obj1
,&_arg2
,&_arg3
))
1267 wxPy_BEGIN_ALLOW_THREADS
;
1268 _result
= (PyObject
*)ptrset(_arg0
,_arg1
,_arg2
,_arg3
);
1270 wxPy_END_ALLOW_THREADS
;
1272 _resultobj
= _result
;
1277 static PyObject
*_wrap_ptrcreate(PyObject
*self
, PyObject
*args
) {
1278 PyObject
* _resultobj
;
1281 PyObject
* _arg1
= 0;
1283 PyObject
* _obj1
= 0;
1286 if(!PyArg_ParseTuple(args
,"s|Oi:ptrcreate",&_arg0
,&_obj1
,&_arg2
))
1293 wxPy_BEGIN_ALLOW_THREADS
;
1294 _result
= (PyObject
*)ptrcreate(_arg0
,_arg1
,_arg2
);
1296 wxPy_END_ALLOW_THREADS
;
1298 _resultobj
= _result
;
1303 static PyObject
*_wrap_ptrfree(PyObject
*self
, PyObject
*args
) {
1304 PyObject
* _resultobj
;
1307 PyObject
* _obj0
= 0;
1310 if(!PyArg_ParseTuple(args
,"O:ptrfree",&_obj0
))
1316 wxPy_BEGIN_ALLOW_THREADS
;
1317 _result
= (PyObject
*)ptrfree(_arg0
);
1319 wxPy_END_ALLOW_THREADS
;
1321 _resultobj
= _result
;
1326 static PyObject
*_wrap_ptradd(PyObject
*self
, PyObject
*args
) {
1327 PyObject
* _resultobj
;
1331 PyObject
* _obj0
= 0;
1334 if(!PyArg_ParseTuple(args
,"Oi:ptradd",&_obj0
,&_arg1
))
1340 wxPy_BEGIN_ALLOW_THREADS
;
1341 _result
= (PyObject
*)ptradd(_arg0
,_arg1
);
1343 wxPy_END_ALLOW_THREADS
;
1345 _resultobj
= _result
;
1350 static PyObject
*_wrap_ptrmap(PyObject
*self
, PyObject
*args
) {
1351 PyObject
* _resultobj
;
1356 if(!PyArg_ParseTuple(args
,"ss:ptrmap",&_arg0
,&_arg1
))
1359 wxPy_BEGIN_ALLOW_THREADS
;
1360 ptrmap(_arg0
,_arg1
);
1362 wxPy_END_ALLOW_THREADS
;
1363 } Py_INCREF(Py_None
);
1364 _resultobj
= Py_None
;
1368 static int _wrap_wxPyDefaultPosition_set(PyObject
*val
) {
1372 tval
= (char *) PyString_AsString(val
);
1373 if (PyErr_Occurred()) {
1374 PyErr_SetString(PyExc_TypeError
,"C variable 'wxPyDefaultPosition'(wxPoint *)");
1378 if (SWIG_GetPtr(tval
,(void **) &temp
,"_wxPoint_p")) {
1379 PyErr_SetString(PyExc_TypeError
,"Type error in value of wxPyDefaultPosition. Expected _wxPoint_p.");
1383 wxPyDefaultPosition
= *temp
;
1387 static PyObject
*_wrap_wxPyDefaultPosition_get() {
1391 SWIG_MakePtr(ptemp
,(char *) &wxPyDefaultPosition
,"_wxPoint_p");
1392 pyobj
= PyString_FromString(ptemp
);
1396 static int _wrap_wxPyDefaultSize_set(PyObject
*val
) {
1400 tval
= (char *) PyString_AsString(val
);
1401 if (PyErr_Occurred()) {
1402 PyErr_SetString(PyExc_TypeError
,"C variable 'wxPyDefaultSize'(wxSize *)");
1406 if (SWIG_GetPtr(tval
,(void **) &temp
,"_wxSize_p")) {
1407 PyErr_SetString(PyExc_TypeError
,"Type error in value of wxPyDefaultSize. Expected _wxSize_p.");
1411 wxPyDefaultSize
= *temp
;
1415 static PyObject
*_wrap_wxPyDefaultSize_get() {
1419 SWIG_MakePtr(ptemp
,(char *) &wxPyDefaultSize
,"_wxSize_p");
1420 pyobj
= PyString_FromString(ptemp
);
1424 static void *SwigwxPyAppTowxEvtHandler(void *ptr
) {
1427 src
= (wxPyApp
*) ptr
;
1428 dest
= (wxEvtHandler
*) src
;
1429 return (void *) dest
;
1432 static wxPyApp
*new_wxPyApp() {
1433 wxPythonApp
= new wxPyApp();
1437 static PyObject
*_wrap_new_wxPyApp(PyObject
*self
, PyObject
*args
) {
1438 PyObject
* _resultobj
;
1443 if(!PyArg_ParseTuple(args
,":new_wxPyApp"))
1446 wxPy_BEGIN_ALLOW_THREADS
;
1447 _result
= (wxPyApp
*)new_wxPyApp();
1449 wxPy_END_ALLOW_THREADS
;
1450 } SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxPyApp_p");
1451 _resultobj
= Py_BuildValue("s",_ptemp
);
1455 #define delete_wxPyApp(_swigobj) (delete _swigobj)
1456 static PyObject
*_wrap_delete_wxPyApp(PyObject
*self
, PyObject
*args
) {
1457 PyObject
* _resultobj
;
1462 if(!PyArg_ParseTuple(args
,"s:delete_wxPyApp",&_argc0
))
1465 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1466 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of delete_wxPyApp. Expected _wxPyApp_p.");
1471 wxPy_BEGIN_ALLOW_THREADS
;
1472 delete_wxPyApp(_arg0
);
1474 wxPy_END_ALLOW_THREADS
;
1475 } Py_INCREF(Py_None
);
1476 _resultobj
= Py_None
;
1480 #define wxPyApp_GetAppName(_swigobj) (_swigobj->GetAppName())
1481 static PyObject
*_wrap_wxPyApp_GetAppName(PyObject
*self
, PyObject
*args
) {
1482 PyObject
* _resultobj
;
1488 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetAppName",&_argc0
))
1491 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1492 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetAppName. Expected _wxPyApp_p.");
1497 wxPy_BEGIN_ALLOW_THREADS
;
1498 _result
= new wxString (wxPyApp_GetAppName(_arg0
));
1500 wxPy_END_ALLOW_THREADS
;
1502 _resultobj
= PyString_FromString(WXSTRINGCAST
*(_result
));
1510 #define wxPyApp_GetAuto3D(_swigobj) (_swigobj->GetAuto3D())
1511 static PyObject
*_wrap_wxPyApp_GetAuto3D(PyObject
*self
, PyObject
*args
) {
1512 PyObject
* _resultobj
;
1518 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetAuto3D",&_argc0
))
1521 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1522 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetAuto3D. Expected _wxPyApp_p.");
1527 wxPy_BEGIN_ALLOW_THREADS
;
1528 _result
= (bool )wxPyApp_GetAuto3D(_arg0
);
1530 wxPy_END_ALLOW_THREADS
;
1531 } _resultobj
= Py_BuildValue("i",_result
);
1535 #define wxPyApp_GetClassName(_swigobj) (_swigobj->GetClassName())
1536 static PyObject
*_wrap_wxPyApp_GetClassName(PyObject
*self
, PyObject
*args
) {
1537 PyObject
* _resultobj
;
1543 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetClassName",&_argc0
))
1546 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1547 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetClassName. Expected _wxPyApp_p.");
1552 wxPy_BEGIN_ALLOW_THREADS
;
1553 _result
= new wxString (wxPyApp_GetClassName(_arg0
));
1555 wxPy_END_ALLOW_THREADS
;
1557 _resultobj
= PyString_FromString(WXSTRINGCAST
*(_result
));
1565 #define wxPyApp_GetExitOnFrameDelete(_swigobj) (_swigobj->GetExitOnFrameDelete())
1566 static PyObject
*_wrap_wxPyApp_GetExitOnFrameDelete(PyObject
*self
, PyObject
*args
) {
1567 PyObject
* _resultobj
;
1573 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetExitOnFrameDelete",&_argc0
))
1576 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1577 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetExitOnFrameDelete. Expected _wxPyApp_p.");
1582 wxPy_BEGIN_ALLOW_THREADS
;
1583 _result
= (bool )wxPyApp_GetExitOnFrameDelete(_arg0
);
1585 wxPy_END_ALLOW_THREADS
;
1586 } _resultobj
= Py_BuildValue("i",_result
);
1590 #define wxPyApp_GetPrintMode(_swigobj) (_swigobj->GetPrintMode())
1591 static PyObject
*_wrap_wxPyApp_GetPrintMode(PyObject
*self
, PyObject
*args
) {
1592 PyObject
* _resultobj
;
1598 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetPrintMode",&_argc0
))
1601 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1602 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetPrintMode. Expected _wxPyApp_p.");
1607 wxPy_BEGIN_ALLOW_THREADS
;
1608 _result
= (int )wxPyApp_GetPrintMode(_arg0
);
1610 wxPy_END_ALLOW_THREADS
;
1611 } _resultobj
= Py_BuildValue("i",_result
);
1615 #define wxPyApp_GetTopWindow(_swigobj) (_swigobj->GetTopWindow())
1616 static PyObject
*_wrap_wxPyApp_GetTopWindow(PyObject
*self
, PyObject
*args
) {
1617 PyObject
* _resultobj
;
1624 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetTopWindow",&_argc0
))
1627 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1628 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetTopWindow. Expected _wxPyApp_p.");
1633 wxPy_BEGIN_ALLOW_THREADS
;
1634 _result
= (wxWindow
*)wxPyApp_GetTopWindow(_arg0
);
1636 wxPy_END_ALLOW_THREADS
;
1637 } SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxWindow_p");
1638 _resultobj
= Py_BuildValue("s",_ptemp
);
1642 #define wxPyApp_GetVendorName(_swigobj) (_swigobj->GetVendorName())
1643 static PyObject
*_wrap_wxPyApp_GetVendorName(PyObject
*self
, PyObject
*args
) {
1644 PyObject
* _resultobj
;
1650 if(!PyArg_ParseTuple(args
,"s:wxPyApp_GetVendorName",&_argc0
))
1653 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1654 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetVendorName. Expected _wxPyApp_p.");
1659 wxPy_BEGIN_ALLOW_THREADS
;
1660 _result
= new wxString (wxPyApp_GetVendorName(_arg0
));
1662 wxPy_END_ALLOW_THREADS
;
1664 _resultobj
= PyString_FromString(WXSTRINGCAST
*(_result
));
1672 #define wxPyApp_Dispatch(_swigobj) (_swigobj->Dispatch())
1673 static PyObject
*_wrap_wxPyApp_Dispatch(PyObject
*self
, PyObject
*args
) {
1674 PyObject
* _resultobj
;
1679 if(!PyArg_ParseTuple(args
,"s:wxPyApp_Dispatch",&_argc0
))
1682 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1683 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_Dispatch. Expected _wxPyApp_p.");
1688 wxPy_BEGIN_ALLOW_THREADS
;
1689 wxPyApp_Dispatch(_arg0
);
1691 wxPy_END_ALLOW_THREADS
;
1692 } Py_INCREF(Py_None
);
1693 _resultobj
= Py_None
;
1697 #define wxPyApp_ExitMainLoop(_swigobj) (_swigobj->ExitMainLoop())
1698 static PyObject
*_wrap_wxPyApp_ExitMainLoop(PyObject
*self
, PyObject
*args
) {
1699 PyObject
* _resultobj
;
1704 if(!PyArg_ParseTuple(args
,"s:wxPyApp_ExitMainLoop",&_argc0
))
1707 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1708 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_ExitMainLoop. Expected _wxPyApp_p.");
1713 wxPy_BEGIN_ALLOW_THREADS
;
1714 wxPyApp_ExitMainLoop(_arg0
);
1716 wxPy_END_ALLOW_THREADS
;
1717 } Py_INCREF(Py_None
);
1718 _resultobj
= Py_None
;
1722 #define wxPyApp_Initialized(_swigobj) (_swigobj->Initialized())
1723 static PyObject
*_wrap_wxPyApp_Initialized(PyObject
*self
, PyObject
*args
) {
1724 PyObject
* _resultobj
;
1730 if(!PyArg_ParseTuple(args
,"s:wxPyApp_Initialized",&_argc0
))
1733 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1734 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_Initialized. Expected _wxPyApp_p.");
1739 wxPy_BEGIN_ALLOW_THREADS
;
1740 _result
= (bool )wxPyApp_Initialized(_arg0
);
1742 wxPy_END_ALLOW_THREADS
;
1743 } _resultobj
= Py_BuildValue("i",_result
);
1747 #define wxPyApp_MainLoop(_swigobj) (_swigobj->MainLoop())
1748 static PyObject
*_wrap_wxPyApp_MainLoop(PyObject
*self
, PyObject
*args
) {
1749 PyObject
* _resultobj
;
1755 if(!PyArg_ParseTuple(args
,"s:wxPyApp_MainLoop",&_argc0
))
1758 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1759 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_MainLoop. Expected _wxPyApp_p.");
1764 wxPy_BEGIN_ALLOW_THREADS
;
1765 _result
= (int )wxPyApp_MainLoop(_arg0
);
1767 wxPy_END_ALLOW_THREADS
;
1768 } _resultobj
= Py_BuildValue("i",_result
);
1772 #define wxPyApp_Pending(_swigobj) (_swigobj->Pending())
1773 static PyObject
*_wrap_wxPyApp_Pending(PyObject
*self
, PyObject
*args
) {
1774 PyObject
* _resultobj
;
1780 if(!PyArg_ParseTuple(args
,"s:wxPyApp_Pending",&_argc0
))
1783 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1784 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_Pending. Expected _wxPyApp_p.");
1789 wxPy_BEGIN_ALLOW_THREADS
;
1790 _result
= (bool )wxPyApp_Pending(_arg0
);
1792 wxPy_END_ALLOW_THREADS
;
1793 } _resultobj
= Py_BuildValue("i",_result
);
1797 #define wxPyApp_ProcessIdle(_swigobj) (_swigobj->ProcessIdle())
1798 static PyObject
*_wrap_wxPyApp_ProcessIdle(PyObject
*self
, PyObject
*args
) {
1799 PyObject
* _resultobj
;
1805 if(!PyArg_ParseTuple(args
,"s:wxPyApp_ProcessIdle",&_argc0
))
1808 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1809 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_ProcessIdle. Expected _wxPyApp_p.");
1814 wxPy_BEGIN_ALLOW_THREADS
;
1815 _result
= (bool )wxPyApp_ProcessIdle(_arg0
);
1817 wxPy_END_ALLOW_THREADS
;
1818 } _resultobj
= Py_BuildValue("i",_result
);
1822 #define wxPyApp_SetAppName(_swigobj,_swigarg0) (_swigobj->SetAppName(_swigarg0))
1823 static PyObject
*_wrap_wxPyApp_SetAppName(PyObject
*self
, PyObject
*args
) {
1824 PyObject
* _resultobj
;
1828 PyObject
* _obj1
= 0;
1831 if(!PyArg_ParseTuple(args
,"sO:wxPyApp_SetAppName",&_argc0
,&_obj1
))
1834 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1835 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetAppName. Expected _wxPyApp_p.");
1840 if (!PyString_Check(_obj1
)) {
1841 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1844 _arg1
= new wxString(PyString_AsString(_obj1
), PyString_Size(_obj1
));
1847 wxPy_BEGIN_ALLOW_THREADS
;
1848 wxPyApp_SetAppName(_arg0
,*_arg1
);
1850 wxPy_END_ALLOW_THREADS
;
1851 } Py_INCREF(Py_None
);
1852 _resultobj
= Py_None
;
1860 #define wxPyApp_SetAuto3D(_swigobj,_swigarg0) (_swigobj->SetAuto3D(_swigarg0))
1861 static PyObject
*_wrap_wxPyApp_SetAuto3D(PyObject
*self
, PyObject
*args
) {
1862 PyObject
* _resultobj
;
1869 if(!PyArg_ParseTuple(args
,"si:wxPyApp_SetAuto3D",&_argc0
,&tempbool1
))
1872 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1873 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetAuto3D. Expected _wxPyApp_p.");
1877 _arg1
= (bool ) tempbool1
;
1879 wxPy_BEGIN_ALLOW_THREADS
;
1880 wxPyApp_SetAuto3D(_arg0
,_arg1
);
1882 wxPy_END_ALLOW_THREADS
;
1883 } Py_INCREF(Py_None
);
1884 _resultobj
= Py_None
;
1888 #define wxPyApp_SetClassName(_swigobj,_swigarg0) (_swigobj->SetClassName(_swigarg0))
1889 static PyObject
*_wrap_wxPyApp_SetClassName(PyObject
*self
, PyObject
*args
) {
1890 PyObject
* _resultobj
;
1894 PyObject
* _obj1
= 0;
1897 if(!PyArg_ParseTuple(args
,"sO:wxPyApp_SetClassName",&_argc0
,&_obj1
))
1900 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1901 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetClassName. Expected _wxPyApp_p.");
1906 if (!PyString_Check(_obj1
)) {
1907 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
1910 _arg1
= new wxString(PyString_AsString(_obj1
), PyString_Size(_obj1
));
1913 wxPy_BEGIN_ALLOW_THREADS
;
1914 wxPyApp_SetClassName(_arg0
,*_arg1
);
1916 wxPy_END_ALLOW_THREADS
;
1917 } Py_INCREF(Py_None
);
1918 _resultobj
= Py_None
;
1926 #define wxPyApp_SetExitOnFrameDelete(_swigobj,_swigarg0) (_swigobj->SetExitOnFrameDelete(_swigarg0))
1927 static PyObject
*_wrap_wxPyApp_SetExitOnFrameDelete(PyObject
*self
, PyObject
*args
) {
1928 PyObject
* _resultobj
;
1935 if(!PyArg_ParseTuple(args
,"si:wxPyApp_SetExitOnFrameDelete",&_argc0
,&tempbool1
))
1938 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1939 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetExitOnFrameDelete. Expected _wxPyApp_p.");
1943 _arg1
= (bool ) tempbool1
;
1945 wxPy_BEGIN_ALLOW_THREADS
;
1946 wxPyApp_SetExitOnFrameDelete(_arg0
,_arg1
);
1948 wxPy_END_ALLOW_THREADS
;
1949 } Py_INCREF(Py_None
);
1950 _resultobj
= Py_None
;
1954 #define wxPyApp_SetPrintMode(_swigobj,_swigarg0) (_swigobj->SetPrintMode(_swigarg0))
1955 static PyObject
*_wrap_wxPyApp_SetPrintMode(PyObject
*self
, PyObject
*args
) {
1956 PyObject
* _resultobj
;
1962 if(!PyArg_ParseTuple(args
,"si:wxPyApp_SetPrintMode",&_argc0
,&_arg1
))
1965 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1966 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetPrintMode. Expected _wxPyApp_p.");
1971 wxPy_BEGIN_ALLOW_THREADS
;
1972 wxPyApp_SetPrintMode(_arg0
,_arg1
);
1974 wxPy_END_ALLOW_THREADS
;
1975 } Py_INCREF(Py_None
);
1976 _resultobj
= Py_None
;
1980 #define wxPyApp_SetTopWindow(_swigobj,_swigarg0) (_swigobj->SetTopWindow(_swigarg0))
1981 static PyObject
*_wrap_wxPyApp_SetTopWindow(PyObject
*self
, PyObject
*args
) {
1982 PyObject
* _resultobj
;
1989 if(!PyArg_ParseTuple(args
,"ss:wxPyApp_SetTopWindow",&_argc0
,&_argc1
))
1992 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
1993 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetTopWindow. Expected _wxPyApp_p.");
1998 if (SWIG_GetPtr(_argc1
,(void **) &_arg1
,"_wxWindow_p")) {
1999 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxPyApp_SetTopWindow. Expected _wxWindow_p.");
2004 wxPy_BEGIN_ALLOW_THREADS
;
2005 wxPyApp_SetTopWindow(_arg0
,_arg1
);
2007 wxPy_END_ALLOW_THREADS
;
2008 } Py_INCREF(Py_None
);
2009 _resultobj
= Py_None
;
2013 #define wxPyApp_SetVendorName(_swigobj,_swigarg0) (_swigobj->SetVendorName(_swigarg0))
2014 static PyObject
*_wrap_wxPyApp_SetVendorName(PyObject
*self
, PyObject
*args
) {
2015 PyObject
* _resultobj
;
2019 PyObject
* _obj1
= 0;
2022 if(!PyArg_ParseTuple(args
,"sO:wxPyApp_SetVendorName",&_argc0
,&_obj1
))
2025 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
2026 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_SetVendorName. Expected _wxPyApp_p.");
2031 if (!PyString_Check(_obj1
)) {
2032 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2035 _arg1
= new wxString(PyString_AsString(_obj1
), PyString_Size(_obj1
));
2038 wxPy_BEGIN_ALLOW_THREADS
;
2039 wxPyApp_SetVendorName(_arg0
,*_arg1
);
2041 wxPy_END_ALLOW_THREADS
;
2042 } Py_INCREF(Py_None
);
2043 _resultobj
= Py_None
;
2051 #define wxPyApp_GetStdIcon(_swigobj,_swigarg0) (_swigobj->GetStdIcon(_swigarg0))
2052 static PyObject
*_wrap_wxPyApp_GetStdIcon(PyObject
*self
, PyObject
*args
) {
2053 PyObject
* _resultobj
;
2061 if(!PyArg_ParseTuple(args
,"si:wxPyApp_GetStdIcon",&_argc0
,&_arg1
))
2064 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"_wxPyApp_p")) {
2065 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxPyApp_GetStdIcon. Expected _wxPyApp_p.");
2070 wxPy_BEGIN_ALLOW_THREADS
;
2071 _result
= new wxIcon (wxPyApp_GetStdIcon(_arg0
,_arg1
));
2073 wxPy_END_ALLOW_THREADS
;
2074 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxIcon_p");
2075 _resultobj
= Py_BuildValue("s",_ptemp
);
2079 #define new___wxPyCleanup() (new __wxPyCleanup())
2080 static PyObject
*_wrap_new___wxPyCleanup(PyObject
*self
, PyObject
*args
) {
2081 PyObject
* _resultobj
;
2082 __wxPyCleanup
* _result
;
2086 if(!PyArg_ParseTuple(args
,":new___wxPyCleanup"))
2089 wxPy_BEGIN_ALLOW_THREADS
;
2090 _result
= (__wxPyCleanup
*)new___wxPyCleanup();
2092 wxPy_END_ALLOW_THREADS
;
2093 } SWIG_MakePtr(_ptemp
, (char *) _result
,"___wxPyCleanup_p");
2094 _resultobj
= Py_BuildValue("s",_ptemp
);
2098 #define delete___wxPyCleanup(_swigobj) (delete _swigobj)
2099 static PyObject
*_wrap_delete___wxPyCleanup(PyObject
*self
, PyObject
*args
) {
2100 PyObject
* _resultobj
;
2101 __wxPyCleanup
* _arg0
;
2105 if(!PyArg_ParseTuple(args
,"s:delete___wxPyCleanup",&_argc0
))
2108 if (SWIG_GetPtr(_argc0
,(void **) &_arg0
,"___wxPyCleanup_p")) {
2109 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of delete___wxPyCleanup. Expected ___wxPyCleanup_p.");
2114 wxPy_BEGIN_ALLOW_THREADS
;
2115 delete___wxPyCleanup(_arg0
);
2117 wxPy_END_ALLOW_THREADS
;
2118 } Py_INCREF(Py_None
);
2119 _resultobj
= Py_None
;
2123 static PyMethodDef wxcMethods
[] = {
2124 { "delete___wxPyCleanup", _wrap_delete___wxPyCleanup
, 1 },
2125 { "new___wxPyCleanup", _wrap_new___wxPyCleanup
, 1 },
2126 { "wxPyApp_GetStdIcon", _wrap_wxPyApp_GetStdIcon
, 1 },
2127 { "wxPyApp_SetVendorName", _wrap_wxPyApp_SetVendorName
, 1 },
2128 { "wxPyApp_SetTopWindow", _wrap_wxPyApp_SetTopWindow
, 1 },
2129 { "wxPyApp_SetPrintMode", _wrap_wxPyApp_SetPrintMode
, 1 },
2130 { "wxPyApp_SetExitOnFrameDelete", _wrap_wxPyApp_SetExitOnFrameDelete
, 1 },
2131 { "wxPyApp_SetClassName", _wrap_wxPyApp_SetClassName
, 1 },
2132 { "wxPyApp_SetAuto3D", _wrap_wxPyApp_SetAuto3D
, 1 },
2133 { "wxPyApp_SetAppName", _wrap_wxPyApp_SetAppName
, 1 },
2134 { "wxPyApp_ProcessIdle", _wrap_wxPyApp_ProcessIdle
, 1 },
2135 { "wxPyApp_Pending", _wrap_wxPyApp_Pending
, 1 },
2136 { "wxPyApp_MainLoop", _wrap_wxPyApp_MainLoop
, 1 },
2137 { "wxPyApp_Initialized", _wrap_wxPyApp_Initialized
, 1 },
2138 { "wxPyApp_ExitMainLoop", _wrap_wxPyApp_ExitMainLoop
, 1 },
2139 { "wxPyApp_Dispatch", _wrap_wxPyApp_Dispatch
, 1 },
2140 { "wxPyApp_GetVendorName", _wrap_wxPyApp_GetVendorName
, 1 },
2141 { "wxPyApp_GetTopWindow", _wrap_wxPyApp_GetTopWindow
, 1 },
2142 { "wxPyApp_GetPrintMode", _wrap_wxPyApp_GetPrintMode
, 1 },
2143 { "wxPyApp_GetExitOnFrameDelete", _wrap_wxPyApp_GetExitOnFrameDelete
, 1 },
2144 { "wxPyApp_GetClassName", _wrap_wxPyApp_GetClassName
, 1 },
2145 { "wxPyApp_GetAuto3D", _wrap_wxPyApp_GetAuto3D
, 1 },
2146 { "wxPyApp_GetAppName", _wrap_wxPyApp_GetAppName
, 1 },
2147 { "delete_wxPyApp", _wrap_delete_wxPyApp
, 1 },
2148 { "new_wxPyApp", _wrap_new_wxPyApp
, 1 },
2149 { "_wxSetDictionary", __wxSetDictionary
, 1 },
2150 { "_wxStart", __wxStart
, 1 },
2151 { "ptrmap", _wrap_ptrmap
, 1 },
2152 { "ptradd", _wrap_ptradd
, 1 },
2153 { "ptrfree", _wrap_ptrfree
, 1 },
2154 { "ptrcreate", _wrap_ptrcreate
, 1 },
2155 { "ptrset", _wrap_ptrset
, 1 },
2156 { "ptrvalue", _wrap_ptrvalue
, 1 },
2157 { "ptrcast", _wrap_ptrcast
, 1 },
2160 static PyObject
*SWIG_globals
;
2164 SWIGEXPORT(void,initwxc
)() {
2166 SWIG_globals
= SWIG_newvarlink();
2167 m
= Py_InitModule("wxc", wxcMethods
);
2168 d
= PyModule_GetDict(m
);
2169 PyDict_SetItemString(d
,"wxMAJOR_VERSION", PyInt_FromLong((long) wxMAJOR_VERSION
));
2170 PyDict_SetItemString(d
,"wxMINOR_VERSION", PyInt_FromLong((long) wxMINOR_VERSION
));
2171 PyDict_SetItemString(d
,"wxRELEASE_NUMBER", PyInt_FromLong((long) wxRELEASE_NUMBER
));
2172 PyDict_SetItemString(d
,"wxNOT_FOUND", PyInt_FromLong((long) wxNOT_FOUND
));
2173 PyDict_SetItemString(d
,"wxVSCROLL", PyInt_FromLong((long) wxVSCROLL
));
2174 PyDict_SetItemString(d
,"wxHSCROLL", PyInt_FromLong((long) wxHSCROLL
));
2175 PyDict_SetItemString(d
,"wxCAPTION", PyInt_FromLong((long) wxCAPTION
));
2176 PyDict_SetItemString(d
,"wxDOUBLE_BORDER", PyInt_FromLong((long) wxDOUBLE_BORDER
));
2177 PyDict_SetItemString(d
,"wxSUNKEN_BORDER", PyInt_FromLong((long) wxSUNKEN_BORDER
));
2178 PyDict_SetItemString(d
,"wxRAISED_BORDER", PyInt_FromLong((long) wxRAISED_BORDER
));
2179 PyDict_SetItemString(d
,"wxBORDER", PyInt_FromLong((long) wxBORDER
));
2180 PyDict_SetItemString(d
,"wxSIMPLE_BORDER", PyInt_FromLong((long) wxSIMPLE_BORDER
));
2181 PyDict_SetItemString(d
,"wxSTATIC_BORDER", PyInt_FromLong((long) wxSTATIC_BORDER
));
2182 PyDict_SetItemString(d
,"wxTRANSPARENT_WINDOW", PyInt_FromLong((long) wxTRANSPARENT_WINDOW
));
2183 PyDict_SetItemString(d
,"wxNO_BORDER", PyInt_FromLong((long) wxNO_BORDER
));
2184 PyDict_SetItemString(d
,"wxUSER_COLOURS", PyInt_FromLong((long) wxUSER_COLOURS
));
2185 PyDict_SetItemString(d
,"wxNO_3D", PyInt_FromLong((long) wxNO_3D
));
2186 PyDict_SetItemString(d
,"wxTAB_TRAVERSAL", PyInt_FromLong((long) wxTAB_TRAVERSAL
));
2187 PyDict_SetItemString(d
,"wxHORIZONTAL", PyInt_FromLong((long) wxHORIZONTAL
));
2188 PyDict_SetItemString(d
,"wxVERTICAL", PyInt_FromLong((long) wxVERTICAL
));
2189 PyDict_SetItemString(d
,"wxBOTH", PyInt_FromLong((long) wxBOTH
));
2190 PyDict_SetItemString(d
,"wxCENTER_FRAME", PyInt_FromLong((long) wxCENTER_FRAME
));
2191 PyDict_SetItemString(d
,"wxSTAY_ON_TOP", PyInt_FromLong((long) wxSTAY_ON_TOP
));
2192 PyDict_SetItemString(d
,"wxICONIZE", PyInt_FromLong((long) wxICONIZE
));
2193 PyDict_SetItemString(d
,"wxMINIMIZE", PyInt_FromLong((long) wxMINIMIZE
));
2194 PyDict_SetItemString(d
,"wxMAXIMIZE", PyInt_FromLong((long) wxMAXIMIZE
));
2195 PyDict_SetItemString(d
,"wxTHICK_FRAME", PyInt_FromLong((long) wxTHICK_FRAME
));
2196 PyDict_SetItemString(d
,"wxSYSTEM_MENU", PyInt_FromLong((long) wxSYSTEM_MENU
));
2197 PyDict_SetItemString(d
,"wxMINIMIZE_BOX", PyInt_FromLong((long) wxMINIMIZE_BOX
));
2198 PyDict_SetItemString(d
,"wxMAXIMIZE_BOX", PyInt_FromLong((long) wxMAXIMIZE_BOX
));
2199 PyDict_SetItemString(d
,"wxTINY_CAPTION_HORIZ", PyInt_FromLong((long) wxTINY_CAPTION_HORIZ
));
2200 PyDict_SetItemString(d
,"wxTINY_CAPTION_VERT", PyInt_FromLong((long) wxTINY_CAPTION_VERT
));
2201 PyDict_SetItemString(d
,"wxRESIZE_BOX", PyInt_FromLong((long) wxRESIZE_BOX
));
2202 PyDict_SetItemString(d
,"wxRESIZE_BORDER", PyInt_FromLong((long) wxRESIZE_BORDER
));
2203 PyDict_SetItemString(d
,"wxDIALOG_MODAL", PyInt_FromLong((long) wxDIALOG_MODAL
));
2204 PyDict_SetItemString(d
,"wxDIALOG_MODELESS", PyInt_FromLong((long) wxDIALOG_MODELESS
));
2205 PyDict_SetItemString(d
,"wxDEFAULT_FRAME_STYLE", PyInt_FromLong((long) wxDEFAULT_FRAME_STYLE
));
2206 PyDict_SetItemString(d
,"wxDEFAULT_DIALOG_STYLE", PyInt_FromLong((long) wxDEFAULT_DIALOG_STYLE
));
2207 PyDict_SetItemString(d
,"wxFRAME_TOOL_WINDOW", PyInt_FromLong((long) wxFRAME_TOOL_WINDOW
));
2208 PyDict_SetItemString(d
,"wxFRAME_FLOAT_ON_PARENT", PyInt_FromLong((long) wxFRAME_FLOAT_ON_PARENT
));
2209 PyDict_SetItemString(d
,"wxCLIP_CHILDREN", PyInt_FromLong((long) wxCLIP_CHILDREN
));
2210 PyDict_SetItemString(d
,"wxRETAINED", PyInt_FromLong((long) wxRETAINED
));
2211 PyDict_SetItemString(d
,"wxBACKINGSTORE", PyInt_FromLong((long) wxBACKINGSTORE
));
2212 PyDict_SetItemString(d
,"wxTB_3DBUTTONS", PyInt_FromLong((long) wxTB_3DBUTTONS
));
2213 PyDict_SetItemString(d
,"wxTB_HORIZONTAL", PyInt_FromLong((long) wxTB_HORIZONTAL
));
2214 PyDict_SetItemString(d
,"wxTB_VERTICAL", PyInt_FromLong((long) wxTB_VERTICAL
));
2215 PyDict_SetItemString(d
,"wxTB_FLAT", PyInt_FromLong((long) wxTB_FLAT
));
2216 PyDict_SetItemString(d
,"wxCOLOURED", PyInt_FromLong((long) wxCOLOURED
));
2217 PyDict_SetItemString(d
,"wxFIXED_LENGTH", PyInt_FromLong((long) wxFIXED_LENGTH
));
2218 PyDict_SetItemString(d
,"wxALIGN_LEFT", PyInt_FromLong((long) wxALIGN_LEFT
));
2219 PyDict_SetItemString(d
,"wxALIGN_CENTER", PyInt_FromLong((long) wxALIGN_CENTER
));
2220 PyDict_SetItemString(d
,"wxALIGN_CENTRE", PyInt_FromLong((long) wxALIGN_CENTRE
));
2221 PyDict_SetItemString(d
,"wxALIGN_RIGHT", PyInt_FromLong((long) wxALIGN_RIGHT
));
2222 PyDict_SetItemString(d
,"wxLB_NEEDED_SB", PyInt_FromLong((long) wxLB_NEEDED_SB
));
2223 PyDict_SetItemString(d
,"wxLB_ALWAYS_SB", PyInt_FromLong((long) wxLB_ALWAYS_SB
));
2224 PyDict_SetItemString(d
,"wxLB_SORT", PyInt_FromLong((long) wxLB_SORT
));
2225 PyDict_SetItemString(d
,"wxLB_SINGLE", PyInt_FromLong((long) wxLB_SINGLE
));
2226 PyDict_SetItemString(d
,"wxLB_MULTIPLE", PyInt_FromLong((long) wxLB_MULTIPLE
));
2227 PyDict_SetItemString(d
,"wxLB_EXTENDED", PyInt_FromLong((long) wxLB_EXTENDED
));
2228 PyDict_SetItemString(d
,"wxLB_OWNERDRAW", PyInt_FromLong((long) wxLB_OWNERDRAW
));
2229 PyDict_SetItemString(d
,"wxLB_HSCROLL", PyInt_FromLong((long) wxLB_HSCROLL
));
2230 PyDict_SetItemString(d
,"wxPROCESS_ENTER", PyInt_FromLong((long) wxPROCESS_ENTER
));
2231 PyDict_SetItemString(d
,"wxPASSWORD", PyInt_FromLong((long) wxPASSWORD
));
2232 PyDict_SetItemString(d
,"wxTE_PROCESS_ENTER", PyInt_FromLong((long) wxTE_PROCESS_ENTER
));
2233 PyDict_SetItemString(d
,"wxTE_PASSWORD", PyInt_FromLong((long) wxTE_PASSWORD
));
2234 PyDict_SetItemString(d
,"wxTE_READONLY", PyInt_FromLong((long) wxTE_READONLY
));
2235 PyDict_SetItemString(d
,"wxTE_RICH", PyInt_FromLong((long) wxTE_RICH
));
2236 PyDict_SetItemString(d
,"wxTE_MULTILINE", PyInt_FromLong((long) wxTE_MULTILINE
));
2237 PyDict_SetItemString(d
,"wxCB_SIMPLE", PyInt_FromLong((long) wxCB_SIMPLE
));
2238 PyDict_SetItemString(d
,"wxCB_DROPDOWN", PyInt_FromLong((long) wxCB_DROPDOWN
));
2239 PyDict_SetItemString(d
,"wxCB_SORT", PyInt_FromLong((long) wxCB_SORT
));
2240 PyDict_SetItemString(d
,"wxCB_READONLY", PyInt_FromLong((long) wxCB_READONLY
));
2241 PyDict_SetItemString(d
,"wxRA_HORIZONTAL", PyInt_FromLong((long) wxRA_HORIZONTAL
));
2242 PyDict_SetItemString(d
,"wxRA_VERTICAL", PyInt_FromLong((long) wxRA_VERTICAL
));
2243 PyDict_SetItemString(d
,"wxRA_SPECIFY_ROWS", PyInt_FromLong((long) wxRA_SPECIFY_ROWS
));
2244 PyDict_SetItemString(d
,"wxRA_SPECIFY_COLS", PyInt_FromLong((long) wxRA_SPECIFY_COLS
));
2245 PyDict_SetItemString(d
,"wxRB_GROUP", PyInt_FromLong((long) wxRB_GROUP
));
2246 PyDict_SetItemString(d
,"wxGA_PROGRESSBAR", PyInt_FromLong((long) wxGA_PROGRESSBAR
));
2247 PyDict_SetItemString(d
,"wxGA_HORIZONTAL", PyInt_FromLong((long) wxGA_HORIZONTAL
));
2248 PyDict_SetItemString(d
,"wxGA_VERTICAL", PyInt_FromLong((long) wxGA_VERTICAL
));
2249 PyDict_SetItemString(d
,"wxGA_SMOOTH", PyInt_FromLong((long) wxGA_SMOOTH
));
2250 PyDict_SetItemString(d
,"wxSL_HORIZONTAL", PyInt_FromLong((long) wxSL_HORIZONTAL
));
2251 PyDict_SetItemString(d
,"wxSL_VERTICAL", PyInt_FromLong((long) wxSL_VERTICAL
));
2252 PyDict_SetItemString(d
,"wxSL_AUTOTICKS", PyInt_FromLong((long) wxSL_AUTOTICKS
));
2253 PyDict_SetItemString(d
,"wxSL_LABELS", PyInt_FromLong((long) wxSL_LABELS
));
2254 PyDict_SetItemString(d
,"wxSL_LEFT", PyInt_FromLong((long) wxSL_LEFT
));
2255 PyDict_SetItemString(d
,"wxSL_TOP", PyInt_FromLong((long) wxSL_TOP
));
2256 PyDict_SetItemString(d
,"wxSL_RIGHT", PyInt_FromLong((long) wxSL_RIGHT
));
2257 PyDict_SetItemString(d
,"wxSL_BOTTOM", PyInt_FromLong((long) wxSL_BOTTOM
));
2258 PyDict_SetItemString(d
,"wxSL_BOTH", PyInt_FromLong((long) wxSL_BOTH
));
2259 PyDict_SetItemString(d
,"wxSL_SELRANGE", PyInt_FromLong((long) wxSL_SELRANGE
));
2260 PyDict_SetItemString(d
,"wxSB_HORIZONTAL", PyInt_FromLong((long) wxSB_HORIZONTAL
));
2261 PyDict_SetItemString(d
,"wxSB_VERTICAL", PyInt_FromLong((long) wxSB_VERTICAL
));
2262 PyDict_SetItemString(d
,"wxST_SIZEGRIP", PyInt_FromLong((long) wxST_SIZEGRIP
));
2263 PyDict_SetItemString(d
,"wxBU_AUTODRAW", PyInt_FromLong((long) wxBU_AUTODRAW
));
2264 PyDict_SetItemString(d
,"wxBU_NOAUTODRAW", PyInt_FromLong((long) wxBU_NOAUTODRAW
));
2265 PyDict_SetItemString(d
,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS
));
2266 PyDict_SetItemString(d
,"wxTR_EDIT_LABELS", PyInt_FromLong((long) wxTR_EDIT_LABELS
));
2267 PyDict_SetItemString(d
,"wxTR_LINES_AT_ROOT", PyInt_FromLong((long) wxTR_LINES_AT_ROOT
));
2268 PyDict_SetItemString(d
,"wxTR_MULTIPLE", PyInt_FromLong((long) wxTR_MULTIPLE
));
2269 PyDict_SetItemString(d
,"wxTR_HAS_VARIABLE_ROW_HEIGHT", PyInt_FromLong((long) wxTR_HAS_VARIABLE_ROW_HEIGHT
));
2270 PyDict_SetItemString(d
,"wxLC_ICON", PyInt_FromLong((long) wxLC_ICON
));
2271 PyDict_SetItemString(d
,"wxLC_SMALL_ICON", PyInt_FromLong((long) wxLC_SMALL_ICON
));
2272 PyDict_SetItemString(d
,"wxLC_LIST", PyInt_FromLong((long) wxLC_LIST
));
2273 PyDict_SetItemString(d
,"wxLC_REPORT", PyInt_FromLong((long) wxLC_REPORT
));
2274 PyDict_SetItemString(d
,"wxLC_ALIGN_TOP", PyInt_FromLong((long) wxLC_ALIGN_TOP
));
2275 PyDict_SetItemString(d
,"wxLC_ALIGN_LEFT", PyInt_FromLong((long) wxLC_ALIGN_LEFT
));
2276 PyDict_SetItemString(d
,"wxLC_AUTOARRANGE", PyInt_FromLong((long) wxLC_AUTOARRANGE
));
2277 PyDict_SetItemString(d
,"wxLC_USER_TEXT", PyInt_FromLong((long) wxLC_USER_TEXT
));
2278 PyDict_SetItemString(d
,"wxLC_EDIT_LABELS", PyInt_FromLong((long) wxLC_EDIT_LABELS
));
2279 PyDict_SetItemString(d
,"wxLC_NO_HEADER", PyInt_FromLong((long) wxLC_NO_HEADER
));
2280 PyDict_SetItemString(d
,"wxLC_NO_SORT_HEADER", PyInt_FromLong((long) wxLC_NO_SORT_HEADER
));
2281 PyDict_SetItemString(d
,"wxLC_SINGLE_SEL", PyInt_FromLong((long) wxLC_SINGLE_SEL
));
2282 PyDict_SetItemString(d
,"wxLC_SORT_ASCENDING", PyInt_FromLong((long) wxLC_SORT_ASCENDING
));
2283 PyDict_SetItemString(d
,"wxLC_SORT_DESCENDING", PyInt_FromLong((long) wxLC_SORT_DESCENDING
));
2284 PyDict_SetItemString(d
,"wxLC_MASK_TYPE", PyInt_FromLong((long) wxLC_MASK_TYPE
));
2285 PyDict_SetItemString(d
,"wxLC_MASK_ALIGN", PyInt_FromLong((long) wxLC_MASK_ALIGN
));
2286 PyDict_SetItemString(d
,"wxLC_MASK_SORT", PyInt_FromLong((long) wxLC_MASK_SORT
));
2287 PyDict_SetItemString(d
,"wxSP_VERTICAL", PyInt_FromLong((long) wxSP_VERTICAL
));
2288 PyDict_SetItemString(d
,"wxSP_HORIZONTAL", PyInt_FromLong((long) wxSP_HORIZONTAL
));
2289 PyDict_SetItemString(d
,"wxSP_ARROW_KEYS", PyInt_FromLong((long) wxSP_ARROW_KEYS
));
2290 PyDict_SetItemString(d
,"wxSP_WRAP", PyInt_FromLong((long) wxSP_WRAP
));
2291 PyDict_SetItemString(d
,"wxSP_NOBORDER", PyInt_FromLong((long) wxSP_NOBORDER
));
2292 PyDict_SetItemString(d
,"wxSP_3D", PyInt_FromLong((long) wxSP_3D
));
2293 PyDict_SetItemString(d
,"wxSP_BORDER", PyInt_FromLong((long) wxSP_BORDER
));
2294 PyDict_SetItemString(d
,"wxFLOOD_SURFACE", PyInt_FromLong((long) wxFLOOD_SURFACE
));
2295 PyDict_SetItemString(d
,"wxFLOOD_BORDER", PyInt_FromLong((long) wxFLOOD_BORDER
));
2296 PyDict_SetItemString(d
,"wxODDEVEN_RULE", PyInt_FromLong((long) wxODDEVEN_RULE
));
2297 PyDict_SetItemString(d
,"wxWINDING_RULE", PyInt_FromLong((long) wxWINDING_RULE
));
2298 PyDict_SetItemString(d
,"wxTOOL_TOP", PyInt_FromLong((long) wxTOOL_TOP
));
2299 PyDict_SetItemString(d
,"wxTOOL_BOTTOM", PyInt_FromLong((long) wxTOOL_BOTTOM
));
2300 PyDict_SetItemString(d
,"wxTOOL_LEFT", PyInt_FromLong((long) wxTOOL_LEFT
));
2301 PyDict_SetItemString(d
,"wxTOOL_RIGHT", PyInt_FromLong((long) wxTOOL_RIGHT
));
2302 PyDict_SetItemString(d
,"wxOK", PyInt_FromLong((long) wxOK
));
2303 PyDict_SetItemString(d
,"wxYES_NO", PyInt_FromLong((long) wxYES_NO
));
2304 PyDict_SetItemString(d
,"wxCANCEL", PyInt_FromLong((long) wxCANCEL
));
2305 PyDict_SetItemString(d
,"wxYES", PyInt_FromLong((long) wxYES
));
2306 PyDict_SetItemString(d
,"wxNO", PyInt_FromLong((long) wxNO
));
2307 PyDict_SetItemString(d
,"wxICON_EXCLAMATION", PyInt_FromLong((long) wxICON_EXCLAMATION
));
2308 PyDict_SetItemString(d
,"wxICON_HAND", PyInt_FromLong((long) wxICON_HAND
));
2309 PyDict_SetItemString(d
,"wxICON_QUESTION", PyInt_FromLong((long) wxICON_QUESTION
));
2310 PyDict_SetItemString(d
,"wxICON_INFORMATION", PyInt_FromLong((long) wxICON_INFORMATION
));
2311 PyDict_SetItemString(d
,"wxICON_STOP", PyInt_FromLong((long) wxICON_STOP
));
2312 PyDict_SetItemString(d
,"wxICON_ASTERISK", PyInt_FromLong((long) wxICON_ASTERISK
));
2313 PyDict_SetItemString(d
,"wxICON_MASK", PyInt_FromLong((long) wxICON_MASK
));
2314 PyDict_SetItemString(d
,"wxCENTRE", PyInt_FromLong((long) wxCENTRE
));
2315 PyDict_SetItemString(d
,"wxCENTER", PyInt_FromLong((long) wxCENTER
));
2316 PyDict_SetItemString(d
,"wxSIZE_AUTO_WIDTH", PyInt_FromLong((long) wxSIZE_AUTO_WIDTH
));
2317 PyDict_SetItemString(d
,"wxSIZE_AUTO_HEIGHT", PyInt_FromLong((long) wxSIZE_AUTO_HEIGHT
));
2318 PyDict_SetItemString(d
,"wxSIZE_AUTO", PyInt_FromLong((long) wxSIZE_AUTO
));
2319 PyDict_SetItemString(d
,"wxSIZE_USE_EXISTING", PyInt_FromLong((long) wxSIZE_USE_EXISTING
));
2320 PyDict_SetItemString(d
,"wxSIZE_ALLOW_MINUS_ONE", PyInt_FromLong((long) wxSIZE_ALLOW_MINUS_ONE
));
2321 PyDict_SetItemString(d
,"wxDF_TEXT", PyInt_FromLong((long) wxDF_TEXT
));
2322 PyDict_SetItemString(d
,"wxDF_BITMAP", PyInt_FromLong((long) wxDF_BITMAP
));
2323 PyDict_SetItemString(d
,"wxDF_METAFILE", PyInt_FromLong((long) wxDF_METAFILE
));
2324 PyDict_SetItemString(d
,"wxDF_DIB", PyInt_FromLong((long) wxDF_DIB
));
2325 PyDict_SetItemString(d
,"wxDF_OEMTEXT", PyInt_FromLong((long) wxDF_OEMTEXT
));
2326 PyDict_SetItemString(d
,"wxDF_FILENAME", PyInt_FromLong((long) wxDF_FILENAME
));
2327 PyDict_SetItemString(d
,"wxPORTRAIT", PyInt_FromLong((long) wxPORTRAIT
));
2328 PyDict_SetItemString(d
,"wxLANDSCAPE", PyInt_FromLong((long) wxLANDSCAPE
));
2329 PyDict_SetItemString(d
,"wxPRINT_QUALITY_HIGH", PyInt_FromLong((long) wxPRINT_QUALITY_HIGH
));
2330 PyDict_SetItemString(d
,"wxPRINT_QUALITY_MEDIUM", PyInt_FromLong((long) wxPRINT_QUALITY_MEDIUM
));
2331 PyDict_SetItemString(d
,"wxPRINT_QUALITY_LOW", PyInt_FromLong((long) wxPRINT_QUALITY_LOW
));
2332 PyDict_SetItemString(d
,"wxPRINT_QUALITY_DRAFT", PyInt_FromLong((long) wxPRINT_QUALITY_DRAFT
));
2333 PyDict_SetItemString(d
,"wxID_OPEN", PyInt_FromLong((long) wxID_OPEN
));
2334 PyDict_SetItemString(d
,"wxID_CLOSE", PyInt_FromLong((long) wxID_CLOSE
));
2335 PyDict_SetItemString(d
,"wxID_NEW", PyInt_FromLong((long) wxID_NEW
));
2336 PyDict_SetItemString(d
,"wxID_SAVE", PyInt_FromLong((long) wxID_SAVE
));
2337 PyDict_SetItemString(d
,"wxID_SAVEAS", PyInt_FromLong((long) wxID_SAVEAS
));
2338 PyDict_SetItemString(d
,"wxID_REVERT", PyInt_FromLong((long) wxID_REVERT
));
2339 PyDict_SetItemString(d
,"wxID_EXIT", PyInt_FromLong((long) wxID_EXIT
));
2340 PyDict_SetItemString(d
,"wxID_UNDO", PyInt_FromLong((long) wxID_UNDO
));
2341 PyDict_SetItemString(d
,"wxID_REDO", PyInt_FromLong((long) wxID_REDO
));
2342 PyDict_SetItemString(d
,"wxID_HELP", PyInt_FromLong((long) wxID_HELP
));
2343 PyDict_SetItemString(d
,"wxID_PRINT", PyInt_FromLong((long) wxID_PRINT
));
2344 PyDict_SetItemString(d
,"wxID_PRINT_SETUP", PyInt_FromLong((long) wxID_PRINT_SETUP
));
2345 PyDict_SetItemString(d
,"wxID_PREVIEW", PyInt_FromLong((long) wxID_PREVIEW
));
2346 PyDict_SetItemString(d
,"wxID_ABOUT", PyInt_FromLong((long) wxID_ABOUT
));
2347 PyDict_SetItemString(d
,"wxID_HELP_CONTENTS", PyInt_FromLong((long) wxID_HELP_CONTENTS
));
2348 PyDict_SetItemString(d
,"wxID_HELP_COMMANDS", PyInt_FromLong((long) wxID_HELP_COMMANDS
));
2349 PyDict_SetItemString(d
,"wxID_HELP_PROCEDURES", PyInt_FromLong((long) wxID_HELP_PROCEDURES
));
2350 PyDict_SetItemString(d
,"wxID_HELP_CONTEXT", PyInt_FromLong((long) wxID_HELP_CONTEXT
));
2351 PyDict_SetItemString(d
,"wxID_CUT", PyInt_FromLong((long) wxID_CUT
));
2352 PyDict_SetItemString(d
,"wxID_COPY", PyInt_FromLong((long) wxID_COPY
));
2353 PyDict_SetItemString(d
,"wxID_PASTE", PyInt_FromLong((long) wxID_PASTE
));
2354 PyDict_SetItemString(d
,"wxID_CLEAR", PyInt_FromLong((long) wxID_CLEAR
));
2355 PyDict_SetItemString(d
,"wxID_FIND", PyInt_FromLong((long) wxID_FIND
));
2356 PyDict_SetItemString(d
,"wxID_FILE1", PyInt_FromLong((long) wxID_FILE1
));
2357 PyDict_SetItemString(d
,"wxID_FILE2", PyInt_FromLong((long) wxID_FILE2
));
2358 PyDict_SetItemString(d
,"wxID_FILE3", PyInt_FromLong((long) wxID_FILE3
));
2359 PyDict_SetItemString(d
,"wxID_FILE4", PyInt_FromLong((long) wxID_FILE4
));
2360 PyDict_SetItemString(d
,"wxID_FILE5", PyInt_FromLong((long) wxID_FILE5
));
2361 PyDict_SetItemString(d
,"wxID_FILE6", PyInt_FromLong((long) wxID_FILE6
));
2362 PyDict_SetItemString(d
,"wxID_FILE7", PyInt_FromLong((long) wxID_FILE7
));
2363 PyDict_SetItemString(d
,"wxID_FILE8", PyInt_FromLong((long) wxID_FILE8
));
2364 PyDict_SetItemString(d
,"wxID_FILE9", PyInt_FromLong((long) wxID_FILE9
));
2365 PyDict_SetItemString(d
,"wxID_OK", PyInt_FromLong((long) wxID_OK
));
2366 PyDict_SetItemString(d
,"wxID_CANCEL", PyInt_FromLong((long) wxID_CANCEL
));
2367 PyDict_SetItemString(d
,"wxID_APPLY", PyInt_FromLong((long) wxID_APPLY
));
2368 PyDict_SetItemString(d
,"wxID_YES", PyInt_FromLong((long) wxID_YES
));
2369 PyDict_SetItemString(d
,"wxID_NO", PyInt_FromLong((long) wxID_NO
));
2370 PyDict_SetItemString(d
,"wxID_STATIC", PyInt_FromLong((long) wxID_STATIC
));
2371 PyDict_SetItemString(d
,"wxBITMAP_TYPE_BMP", PyInt_FromLong((long) wxBITMAP_TYPE_BMP
));
2372 PyDict_SetItemString(d
,"wxBITMAP_TYPE_BMP_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_BMP_RESOURCE
));
2373 PyDict_SetItemString(d
,"wxBITMAP_TYPE_ICO", PyInt_FromLong((long) wxBITMAP_TYPE_ICO
));
2374 PyDict_SetItemString(d
,"wxBITMAP_TYPE_ICO_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_ICO_RESOURCE
));
2375 PyDict_SetItemString(d
,"wxBITMAP_TYPE_CUR", PyInt_FromLong((long) wxBITMAP_TYPE_CUR
));
2376 PyDict_SetItemString(d
,"wxBITMAP_TYPE_CUR_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_CUR_RESOURCE
));
2377 PyDict_SetItemString(d
,"wxBITMAP_TYPE_XBM", PyInt_FromLong((long) wxBITMAP_TYPE_XBM
));
2378 PyDict_SetItemString(d
,"wxBITMAP_TYPE_XBM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XBM_DATA
));
2379 PyDict_SetItemString(d
,"wxBITMAP_TYPE_XPM", PyInt_FromLong((long) wxBITMAP_TYPE_XPM
));
2380 PyDict_SetItemString(d
,"wxBITMAP_TYPE_XPM_DATA", PyInt_FromLong((long) wxBITMAP_TYPE_XPM_DATA
));
2381 PyDict_SetItemString(d
,"wxBITMAP_TYPE_TIF", PyInt_FromLong((long) wxBITMAP_TYPE_TIF
));
2382 PyDict_SetItemString(d
,"wxBITMAP_TYPE_TIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_TIF_RESOURCE
));
2383 PyDict_SetItemString(d
,"wxBITMAP_TYPE_GIF", PyInt_FromLong((long) wxBITMAP_TYPE_GIF
));
2384 PyDict_SetItemString(d
,"wxBITMAP_TYPE_GIF_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_GIF_RESOURCE
));
2385 PyDict_SetItemString(d
,"wxBITMAP_TYPE_PNG", PyInt_FromLong((long) wxBITMAP_TYPE_PNG
));
2386 PyDict_SetItemString(d
,"wxBITMAP_TYPE_PNG_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_PNG_RESOURCE
));
2387 PyDict_SetItemString(d
,"wxBITMAP_TYPE_ANY", PyInt_FromLong((long) wxBITMAP_TYPE_ANY
));
2388 PyDict_SetItemString(d
,"wxBITMAP_TYPE_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_RESOURCE
));
2389 PyDict_SetItemString(d
,"wxBITMAP_TYPE_JPEG", PyInt_FromLong((long) wxBITMAP_TYPE_JPEG
));
2390 PyDict_SetItemString(d
,"wxOPEN", PyInt_FromLong((long) wxOPEN
));
2391 PyDict_SetItemString(d
,"wxSAVE", PyInt_FromLong((long) wxSAVE
));
2392 PyDict_SetItemString(d
,"wxHIDE_READONLY", PyInt_FromLong((long) wxHIDE_READONLY
));
2393 PyDict_SetItemString(d
,"wxOVERWRITE_PROMPT", PyInt_FromLong((long) wxOVERWRITE_PROMPT
));
2394 PyDict_SetItemString(d
,"wxACCEL_ALT", PyInt_FromLong((long) wxACCEL_ALT
));
2395 PyDict_SetItemString(d
,"wxACCEL_CTRL", PyInt_FromLong((long) wxACCEL_CTRL
));
2396 PyDict_SetItemString(d
,"wxACCEL_SHIFT", PyInt_FromLong((long) wxACCEL_SHIFT
));
2397 PyDict_SetItemString(d
,"wxPD_AUTO_HIDE", PyInt_FromLong((long) wxPD_AUTO_HIDE
));
2398 PyDict_SetItemString(d
,"wxPD_APP_MODAL", PyInt_FromLong((long) wxPD_APP_MODAL
));
2399 PyDict_SetItemString(d
,"wxPD_CAN_ABORT", PyInt_FromLong((long) wxPD_CAN_ABORT
));
2400 PyDict_SetItemString(d
,"wxPD_ELAPSED_TIME", PyInt_FromLong((long) wxPD_ELAPSED_TIME
));
2401 PyDict_SetItemString(d
,"wxPD_ESTIMATED_TIME", PyInt_FromLong((long) wxPD_ESTIMATED_TIME
));
2402 PyDict_SetItemString(d
,"wxPD_REMAINING_TIME", PyInt_FromLong((long) wxPD_REMAINING_TIME
));
2403 PyDict_SetItemString(d
,"wxNO_DEFAULT", PyInt_FromLong((long) wxNO_DEFAULT
));
2404 PyDict_SetItemString(d
,"wxMENU_TEAROFF", PyInt_FromLong((long) wxMENU_TEAROFF
));
2405 PyDict_SetItemString(d
,"wxNO_FULL_REPAINT_ON_RESIZE", PyInt_FromLong((long) wxNO_FULL_REPAINT_ON_RESIZE
));
2406 PyDict_SetItemString(d
,"wxDEFAULT", PyInt_FromLong((long) wxDEFAULT
));
2407 PyDict_SetItemString(d
,"wxDECORATIVE", PyInt_FromLong((long) wxDECORATIVE
));
2408 PyDict_SetItemString(d
,"wxROMAN", PyInt_FromLong((long) wxROMAN
));
2409 PyDict_SetItemString(d
,"wxSCRIPT", PyInt_FromLong((long) wxSCRIPT
));
2410 PyDict_SetItemString(d
,"wxSWISS", PyInt_FromLong((long) wxSWISS
));
2411 PyDict_SetItemString(d
,"wxMODERN", PyInt_FromLong((long) wxMODERN
));
2412 PyDict_SetItemString(d
,"wxTELETYPE", PyInt_FromLong((long) wxTELETYPE
));
2413 PyDict_SetItemString(d
,"wxVARIABLE", PyInt_FromLong((long) wxVARIABLE
));
2414 PyDict_SetItemString(d
,"wxFIXED", PyInt_FromLong((long) wxFIXED
));
2415 PyDict_SetItemString(d
,"wxNORMAL", PyInt_FromLong((long) wxNORMAL
));
2416 PyDict_SetItemString(d
,"wxLIGHT", PyInt_FromLong((long) wxLIGHT
));
2417 PyDict_SetItemString(d
,"wxBOLD", PyInt_FromLong((long) wxBOLD
));
2418 PyDict_SetItemString(d
,"wxITALIC", PyInt_FromLong((long) wxITALIC
));
2419 PyDict_SetItemString(d
,"wxSLANT", PyInt_FromLong((long) wxSLANT
));
2420 PyDict_SetItemString(d
,"wxSOLID", PyInt_FromLong((long) wxSOLID
));
2421 PyDict_SetItemString(d
,"wxDOT", PyInt_FromLong((long) wxDOT
));
2422 PyDict_SetItemString(d
,"wxLONG_DASH", PyInt_FromLong((long) wxLONG_DASH
));
2423 PyDict_SetItemString(d
,"wxSHORT_DASH", PyInt_FromLong((long) wxSHORT_DASH
));
2424 PyDict_SetItemString(d
,"wxDOT_DASH", PyInt_FromLong((long) wxDOT_DASH
));
2425 PyDict_SetItemString(d
,"wxUSER_DASH", PyInt_FromLong((long) wxUSER_DASH
));
2426 PyDict_SetItemString(d
,"wxTRANSPARENT", PyInt_FromLong((long) wxTRANSPARENT
));
2427 PyDict_SetItemString(d
,"wxSTIPPLE", PyInt_FromLong((long) wxSTIPPLE
));
2428 PyDict_SetItemString(d
,"wxBDIAGONAL_HATCH", PyInt_FromLong((long) wxBDIAGONAL_HATCH
));
2429 PyDict_SetItemString(d
,"wxCROSSDIAG_HATCH", PyInt_FromLong((long) wxCROSSDIAG_HATCH
));
2430 PyDict_SetItemString(d
,"wxFDIAGONAL_HATCH", PyInt_FromLong((long) wxFDIAGONAL_HATCH
));
2431 PyDict_SetItemString(d
,"wxCROSS_HATCH", PyInt_FromLong((long) wxCROSS_HATCH
));
2432 PyDict_SetItemString(d
,"wxHORIZONTAL_HATCH", PyInt_FromLong((long) wxHORIZONTAL_HATCH
));
2433 PyDict_SetItemString(d
,"wxVERTICAL_HATCH", PyInt_FromLong((long) wxVERTICAL_HATCH
));
2434 PyDict_SetItemString(d
,"wxJOIN_BEVEL", PyInt_FromLong((long) wxJOIN_BEVEL
));
2435 PyDict_SetItemString(d
,"wxJOIN_MITER", PyInt_FromLong((long) wxJOIN_MITER
));
2436 PyDict_SetItemString(d
,"wxJOIN_ROUND", PyInt_FromLong((long) wxJOIN_ROUND
));
2437 PyDict_SetItemString(d
,"wxCAP_ROUND", PyInt_FromLong((long) wxCAP_ROUND
));
2438 PyDict_SetItemString(d
,"wxCAP_PROJECTING", PyInt_FromLong((long) wxCAP_PROJECTING
));
2439 PyDict_SetItemString(d
,"wxCAP_BUTT", PyInt_FromLong((long) wxCAP_BUTT
));
2440 PyDict_SetItemString(d
,"wxCLEAR", PyInt_FromLong((long) wxCLEAR
));
2441 PyDict_SetItemString(d
,"wxXOR", PyInt_FromLong((long) wxXOR
));
2442 PyDict_SetItemString(d
,"wxINVERT", PyInt_FromLong((long) wxINVERT
));
2443 PyDict_SetItemString(d
,"wxOR_REVERSE", PyInt_FromLong((long) wxOR_REVERSE
));
2444 PyDict_SetItemString(d
,"wxAND_REVERSE", PyInt_FromLong((long) wxAND_REVERSE
));
2445 PyDict_SetItemString(d
,"wxCOPY", PyInt_FromLong((long) wxCOPY
));
2446 PyDict_SetItemString(d
,"wxAND", PyInt_FromLong((long) wxAND
));
2447 PyDict_SetItemString(d
,"wxAND_INVERT", PyInt_FromLong((long) wxAND_INVERT
));
2448 PyDict_SetItemString(d
,"wxNO_OP", PyInt_FromLong((long) wxNO_OP
));
2449 PyDict_SetItemString(d
,"wxNOR", PyInt_FromLong((long) wxNOR
));
2450 PyDict_SetItemString(d
,"wxEQUIV", PyInt_FromLong((long) wxEQUIV
));
2451 PyDict_SetItemString(d
,"wxSRC_INVERT", PyInt_FromLong((long) wxSRC_INVERT
));
2452 PyDict_SetItemString(d
,"wxOR_INVERT", PyInt_FromLong((long) wxOR_INVERT
));
2453 PyDict_SetItemString(d
,"wxNAND", PyInt_FromLong((long) wxNAND
));
2454 PyDict_SetItemString(d
,"wxOR", PyInt_FromLong((long) wxOR
));
2455 PyDict_SetItemString(d
,"wxSET", PyInt_FromLong((long) wxSET
));
2456 PyDict_SetItemString(d
,"wxSRC_OR", PyInt_FromLong((long) wxSRC_OR
));
2457 PyDict_SetItemString(d
,"wxSRC_AND", PyInt_FromLong((long) wxSRC_AND
));
2458 PyDict_SetItemString(d
,"WXK_BACK", PyInt_FromLong((long) WXK_BACK
));
2459 PyDict_SetItemString(d
,"WXK_TAB", PyInt_FromLong((long) WXK_TAB
));
2460 PyDict_SetItemString(d
,"WXK_RETURN", PyInt_FromLong((long) WXK_RETURN
));
2461 PyDict_SetItemString(d
,"WXK_ESCAPE", PyInt_FromLong((long) WXK_ESCAPE
));
2462 PyDict_SetItemString(d
,"WXK_SPACE", PyInt_FromLong((long) WXK_SPACE
));
2463 PyDict_SetItemString(d
,"WXK_DELETE", PyInt_FromLong((long) WXK_DELETE
));
2464 PyDict_SetItemString(d
,"WXK_START", PyInt_FromLong((long) WXK_START
));
2465 PyDict_SetItemString(d
,"WXK_LBUTTON", PyInt_FromLong((long) WXK_LBUTTON
));
2466 PyDict_SetItemString(d
,"WXK_RBUTTON", PyInt_FromLong((long) WXK_RBUTTON
));
2467 PyDict_SetItemString(d
,"WXK_CANCEL", PyInt_FromLong((long) WXK_CANCEL
));
2468 PyDict_SetItemString(d
,"WXK_MBUTTON", PyInt_FromLong((long) WXK_MBUTTON
));
2469 PyDict_SetItemString(d
,"WXK_CLEAR", PyInt_FromLong((long) WXK_CLEAR
));
2470 PyDict_SetItemString(d
,"WXK_SHIFT", PyInt_FromLong((long) WXK_SHIFT
));
2471 PyDict_SetItemString(d
,"WXK_CONTROL", PyInt_FromLong((long) WXK_CONTROL
));
2472 PyDict_SetItemString(d
,"WXK_MENU", PyInt_FromLong((long) WXK_MENU
));
2473 PyDict_SetItemString(d
,"WXK_PAUSE", PyInt_FromLong((long) WXK_PAUSE
));
2474 PyDict_SetItemString(d
,"WXK_CAPITAL", PyInt_FromLong((long) WXK_CAPITAL
));
2475 PyDict_SetItemString(d
,"WXK_PRIOR", PyInt_FromLong((long) WXK_PRIOR
));
2476 PyDict_SetItemString(d
,"WXK_NEXT", PyInt_FromLong((long) WXK_NEXT
));
2477 PyDict_SetItemString(d
,"WXK_END", PyInt_FromLong((long) WXK_END
));
2478 PyDict_SetItemString(d
,"WXK_HOME", PyInt_FromLong((long) WXK_HOME
));
2479 PyDict_SetItemString(d
,"WXK_LEFT", PyInt_FromLong((long) WXK_LEFT
));
2480 PyDict_SetItemString(d
,"WXK_UP", PyInt_FromLong((long) WXK_UP
));
2481 PyDict_SetItemString(d
,"WXK_RIGHT", PyInt_FromLong((long) WXK_RIGHT
));
2482 PyDict_SetItemString(d
,"WXK_DOWN", PyInt_FromLong((long) WXK_DOWN
));
2483 PyDict_SetItemString(d
,"WXK_SELECT", PyInt_FromLong((long) WXK_SELECT
));
2484 PyDict_SetItemString(d
,"WXK_PRINT", PyInt_FromLong((long) WXK_PRINT
));
2485 PyDict_SetItemString(d
,"WXK_EXECUTE", PyInt_FromLong((long) WXK_EXECUTE
));
2486 PyDict_SetItemString(d
,"WXK_SNAPSHOT", PyInt_FromLong((long) WXK_SNAPSHOT
));
2487 PyDict_SetItemString(d
,"WXK_INSERT", PyInt_FromLong((long) WXK_INSERT
));
2488 PyDict_SetItemString(d
,"WXK_HELP", PyInt_FromLong((long) WXK_HELP
));
2489 PyDict_SetItemString(d
,"WXK_NUMPAD0", PyInt_FromLong((long) WXK_NUMPAD0
));
2490 PyDict_SetItemString(d
,"WXK_NUMPAD1", PyInt_FromLong((long) WXK_NUMPAD1
));
2491 PyDict_SetItemString(d
,"WXK_NUMPAD2", PyInt_FromLong((long) WXK_NUMPAD2
));
2492 PyDict_SetItemString(d
,"WXK_NUMPAD3", PyInt_FromLong((long) WXK_NUMPAD3
));
2493 PyDict_SetItemString(d
,"WXK_NUMPAD4", PyInt_FromLong((long) WXK_NUMPAD4
));
2494 PyDict_SetItemString(d
,"WXK_NUMPAD5", PyInt_FromLong((long) WXK_NUMPAD5
));
2495 PyDict_SetItemString(d
,"WXK_NUMPAD6", PyInt_FromLong((long) WXK_NUMPAD6
));
2496 PyDict_SetItemString(d
,"WXK_NUMPAD7", PyInt_FromLong((long) WXK_NUMPAD7
));
2497 PyDict_SetItemString(d
,"WXK_NUMPAD8", PyInt_FromLong((long) WXK_NUMPAD8
));
2498 PyDict_SetItemString(d
,"WXK_NUMPAD9", PyInt_FromLong((long) WXK_NUMPAD9
));
2499 PyDict_SetItemString(d
,"WXK_MULTIPLY", PyInt_FromLong((long) WXK_MULTIPLY
));
2500 PyDict_SetItemString(d
,"WXK_ADD", PyInt_FromLong((long) WXK_ADD
));
2501 PyDict_SetItemString(d
,"WXK_SEPARATOR", PyInt_FromLong((long) WXK_SEPARATOR
));
2502 PyDict_SetItemString(d
,"WXK_SUBTRACT", PyInt_FromLong((long) WXK_SUBTRACT
));
2503 PyDict_SetItemString(d
,"WXK_DECIMAL", PyInt_FromLong((long) WXK_DECIMAL
));
2504 PyDict_SetItemString(d
,"WXK_DIVIDE", PyInt_FromLong((long) WXK_DIVIDE
));
2505 PyDict_SetItemString(d
,"WXK_F1", PyInt_FromLong((long) WXK_F1
));
2506 PyDict_SetItemString(d
,"WXK_F2", PyInt_FromLong((long) WXK_F2
));
2507 PyDict_SetItemString(d
,"WXK_F3", PyInt_FromLong((long) WXK_F3
));
2508 PyDict_SetItemString(d
,"WXK_F4", PyInt_FromLong((long) WXK_F4
));
2509 PyDict_SetItemString(d
,"WXK_F5", PyInt_FromLong((long) WXK_F5
));
2510 PyDict_SetItemString(d
,"WXK_F6", PyInt_FromLong((long) WXK_F6
));
2511 PyDict_SetItemString(d
,"WXK_F7", PyInt_FromLong((long) WXK_F7
));
2512 PyDict_SetItemString(d
,"WXK_F8", PyInt_FromLong((long) WXK_F8
));
2513 PyDict_SetItemString(d
,"WXK_F9", PyInt_FromLong((long) WXK_F9
));
2514 PyDict_SetItemString(d
,"WXK_F10", PyInt_FromLong((long) WXK_F10
));
2515 PyDict_SetItemString(d
,"WXK_F11", PyInt_FromLong((long) WXK_F11
));
2516 PyDict_SetItemString(d
,"WXK_F12", PyInt_FromLong((long) WXK_F12
));
2517 PyDict_SetItemString(d
,"WXK_F13", PyInt_FromLong((long) WXK_F13
));
2518 PyDict_SetItemString(d
,"WXK_F14", PyInt_FromLong((long) WXK_F14
));
2519 PyDict_SetItemString(d
,"WXK_F15", PyInt_FromLong((long) WXK_F15
));
2520 PyDict_SetItemString(d
,"WXK_F16", PyInt_FromLong((long) WXK_F16
));
2521 PyDict_SetItemString(d
,"WXK_F17", PyInt_FromLong((long) WXK_F17
));
2522 PyDict_SetItemString(d
,"WXK_F18", PyInt_FromLong((long) WXK_F18
));
2523 PyDict_SetItemString(d
,"WXK_F19", PyInt_FromLong((long) WXK_F19
));
2524 PyDict_SetItemString(d
,"WXK_F20", PyInt_FromLong((long) WXK_F20
));
2525 PyDict_SetItemString(d
,"WXK_F21", PyInt_FromLong((long) WXK_F21
));
2526 PyDict_SetItemString(d
,"WXK_F22", PyInt_FromLong((long) WXK_F22
));
2527 PyDict_SetItemString(d
,"WXK_F23", PyInt_FromLong((long) WXK_F23
));
2528 PyDict_SetItemString(d
,"WXK_F24", PyInt_FromLong((long) WXK_F24
));
2529 PyDict_SetItemString(d
,"WXK_NUMLOCK", PyInt_FromLong((long) WXK_NUMLOCK
));
2530 PyDict_SetItemString(d
,"WXK_SCROLL", PyInt_FromLong((long) WXK_SCROLL
));
2531 PyDict_SetItemString(d
,"WXK_PAGEUP", PyInt_FromLong((long) WXK_PAGEUP
));
2532 PyDict_SetItemString(d
,"WXK_PAGEDOWN", PyInt_FromLong((long) WXK_PAGEDOWN
));
2533 PyDict_SetItemString(d
,"wxCURSOR_NONE", PyInt_FromLong((long) wxCURSOR_NONE
));
2534 PyDict_SetItemString(d
,"wxCURSOR_ARROW", PyInt_FromLong((long) wxCURSOR_ARROW
));
2535 PyDict_SetItemString(d
,"wxCURSOR_BULLSEYE", PyInt_FromLong((long) wxCURSOR_BULLSEYE
));
2536 PyDict_SetItemString(d
,"wxCURSOR_CHAR", PyInt_FromLong((long) wxCURSOR_CHAR
));
2537 PyDict_SetItemString(d
,"wxCURSOR_CROSS", PyInt_FromLong((long) wxCURSOR_CROSS
));
2538 PyDict_SetItemString(d
,"wxCURSOR_HAND", PyInt_FromLong((long) wxCURSOR_HAND
));
2539 PyDict_SetItemString(d
,"wxCURSOR_IBEAM", PyInt_FromLong((long) wxCURSOR_IBEAM
));
2540 PyDict_SetItemString(d
,"wxCURSOR_LEFT_BUTTON", PyInt_FromLong((long) wxCURSOR_LEFT_BUTTON
));
2541 PyDict_SetItemString(d
,"wxCURSOR_MAGNIFIER", PyInt_FromLong((long) wxCURSOR_MAGNIFIER
));
2542 PyDict_SetItemString(d
,"wxCURSOR_MIDDLE_BUTTON", PyInt_FromLong((long) wxCURSOR_MIDDLE_BUTTON
));
2543 PyDict_SetItemString(d
,"wxCURSOR_NO_ENTRY", PyInt_FromLong((long) wxCURSOR_NO_ENTRY
));
2544 PyDict_SetItemString(d
,"wxCURSOR_PAINT_BRUSH", PyInt_FromLong((long) wxCURSOR_PAINT_BRUSH
));
2545 PyDict_SetItemString(d
,"wxCURSOR_PENCIL", PyInt_FromLong((long) wxCURSOR_PENCIL
));
2546 PyDict_SetItemString(d
,"wxCURSOR_POINT_LEFT", PyInt_FromLong((long) wxCURSOR_POINT_LEFT
));
2547 PyDict_SetItemString(d
,"wxCURSOR_POINT_RIGHT", PyInt_FromLong((long) wxCURSOR_POINT_RIGHT
));
2548 PyDict_SetItemString(d
,"wxCURSOR_QUESTION_ARROW", PyInt_FromLong((long) wxCURSOR_QUESTION_ARROW
));
2549 PyDict_SetItemString(d
,"wxCURSOR_RIGHT_BUTTON", PyInt_FromLong((long) wxCURSOR_RIGHT_BUTTON
));
2550 PyDict_SetItemString(d
,"wxCURSOR_SIZENESW", PyInt_FromLong((long) wxCURSOR_SIZENESW
));
2551 PyDict_SetItemString(d
,"wxCURSOR_SIZENS", PyInt_FromLong((long) wxCURSOR_SIZENS
));
2552 PyDict_SetItemString(d
,"wxCURSOR_SIZENWSE", PyInt_FromLong((long) wxCURSOR_SIZENWSE
));
2553 PyDict_SetItemString(d
,"wxCURSOR_SIZEWE", PyInt_FromLong((long) wxCURSOR_SIZEWE
));
2554 PyDict_SetItemString(d
,"wxCURSOR_SIZING", PyInt_FromLong((long) wxCURSOR_SIZING
));
2555 PyDict_SetItemString(d
,"wxCURSOR_SPRAYCAN", PyInt_FromLong((long) wxCURSOR_SPRAYCAN
));
2556 PyDict_SetItemString(d
,"wxCURSOR_WAIT", PyInt_FromLong((long) wxCURSOR_WAIT
));
2557 PyDict_SetItemString(d
,"wxCURSOR_WATCH", PyInt_FromLong((long) wxCURSOR_WATCH
));
2558 PyDict_SetItemString(d
,"wxCURSOR_BLANK", PyInt_FromLong((long) wxCURSOR_BLANK
));
2559 PyDict_SetItemString(d
,"wxPAPER_NONE", PyInt_FromLong((long) wxPAPER_NONE
));
2560 PyDict_SetItemString(d
,"wxPAPER_LETTER", PyInt_FromLong((long) wxPAPER_LETTER
));
2561 PyDict_SetItemString(d
,"wxPAPER_LEGAL", PyInt_FromLong((long) wxPAPER_LEGAL
));
2562 PyDict_SetItemString(d
,"wxPAPER_A4", PyInt_FromLong((long) wxPAPER_A4
));
2563 PyDict_SetItemString(d
,"wxPAPER_CSHEET", PyInt_FromLong((long) wxPAPER_CSHEET
));
2564 PyDict_SetItemString(d
,"wxPAPER_DSHEET", PyInt_FromLong((long) wxPAPER_DSHEET
));
2565 PyDict_SetItemString(d
,"wxPAPER_ESHEET", PyInt_FromLong((long) wxPAPER_ESHEET
));
2566 PyDict_SetItemString(d
,"wxPAPER_LETTERSMALL", PyInt_FromLong((long) wxPAPER_LETTERSMALL
));
2567 PyDict_SetItemString(d
,"wxPAPER_TABLOID", PyInt_FromLong((long) wxPAPER_TABLOID
));
2568 PyDict_SetItemString(d
,"wxPAPER_LEDGER", PyInt_FromLong((long) wxPAPER_LEDGER
));
2569 PyDict_SetItemString(d
,"wxPAPER_STATEMENT", PyInt_FromLong((long) wxPAPER_STATEMENT
));
2570 PyDict_SetItemString(d
,"wxPAPER_EXECUTIVE", PyInt_FromLong((long) wxPAPER_EXECUTIVE
));
2571 PyDict_SetItemString(d
,"wxPAPER_A3", PyInt_FromLong((long) wxPAPER_A3
));
2572 PyDict_SetItemString(d
,"wxPAPER_A4SMALL", PyInt_FromLong((long) wxPAPER_A4SMALL
));
2573 PyDict_SetItemString(d
,"wxPAPER_A5", PyInt_FromLong((long) wxPAPER_A5
));
2574 PyDict_SetItemString(d
,"wxPAPER_B4", PyInt_FromLong((long) wxPAPER_B4
));
2575 PyDict_SetItemString(d
,"wxPAPER_B5", PyInt_FromLong((long) wxPAPER_B5
));
2576 PyDict_SetItemString(d
,"wxPAPER_FOLIO", PyInt_FromLong((long) wxPAPER_FOLIO
));
2577 PyDict_SetItemString(d
,"wxPAPER_QUARTO", PyInt_FromLong((long) wxPAPER_QUARTO
));
2578 PyDict_SetItemString(d
,"wxPAPER_10X14", PyInt_FromLong((long) wxPAPER_10X14
));
2579 PyDict_SetItemString(d
,"wxPAPER_11X17", PyInt_FromLong((long) wxPAPER_11X17
));
2580 PyDict_SetItemString(d
,"wxPAPER_NOTE", PyInt_FromLong((long) wxPAPER_NOTE
));
2581 PyDict_SetItemString(d
,"wxPAPER_ENV_9", PyInt_FromLong((long) wxPAPER_ENV_9
));
2582 PyDict_SetItemString(d
,"wxPAPER_ENV_10", PyInt_FromLong((long) wxPAPER_ENV_10
));
2583 PyDict_SetItemString(d
,"wxPAPER_ENV_11", PyInt_FromLong((long) wxPAPER_ENV_11
));
2584 PyDict_SetItemString(d
,"wxPAPER_ENV_12", PyInt_FromLong((long) wxPAPER_ENV_12
));
2585 PyDict_SetItemString(d
,"wxPAPER_ENV_14", PyInt_FromLong((long) wxPAPER_ENV_14
));
2586 PyDict_SetItemString(d
,"wxPAPER_ENV_DL", PyInt_FromLong((long) wxPAPER_ENV_DL
));
2587 PyDict_SetItemString(d
,"wxPAPER_ENV_C5", PyInt_FromLong((long) wxPAPER_ENV_C5
));
2588 PyDict_SetItemString(d
,"wxPAPER_ENV_C3", PyInt_FromLong((long) wxPAPER_ENV_C3
));
2589 PyDict_SetItemString(d
,"wxPAPER_ENV_C4", PyInt_FromLong((long) wxPAPER_ENV_C4
));
2590 PyDict_SetItemString(d
,"wxPAPER_ENV_C6", PyInt_FromLong((long) wxPAPER_ENV_C6
));
2591 PyDict_SetItemString(d
,"wxPAPER_ENV_C65", PyInt_FromLong((long) wxPAPER_ENV_C65
));
2592 PyDict_SetItemString(d
,"wxPAPER_ENV_B4", PyInt_FromLong((long) wxPAPER_ENV_B4
));
2593 PyDict_SetItemString(d
,"wxPAPER_ENV_B5", PyInt_FromLong((long) wxPAPER_ENV_B5
));
2594 PyDict_SetItemString(d
,"wxPAPER_ENV_B6", PyInt_FromLong((long) wxPAPER_ENV_B6
));
2595 PyDict_SetItemString(d
,"wxPAPER_ENV_ITALY", PyInt_FromLong((long) wxPAPER_ENV_ITALY
));
2596 PyDict_SetItemString(d
,"wxPAPER_ENV_MONARCH", PyInt_FromLong((long) wxPAPER_ENV_MONARCH
));
2597 PyDict_SetItemString(d
,"wxPAPER_ENV_PERSONAL", PyInt_FromLong((long) wxPAPER_ENV_PERSONAL
));
2598 PyDict_SetItemString(d
,"wxPAPER_FANFOLD_US", PyInt_FromLong((long) wxPAPER_FANFOLD_US
));
2599 PyDict_SetItemString(d
,"wxPAPER_FANFOLD_STD_GERMAN", PyInt_FromLong((long) wxPAPER_FANFOLD_STD_GERMAN
));
2600 PyDict_SetItemString(d
,"wxPAPER_FANFOLD_LGL_GERMAN", PyInt_FromLong((long) wxPAPER_FANFOLD_LGL_GERMAN
));
2601 PyDict_SetItemString(d
,"wxPAPER_ISO_B4", PyInt_FromLong((long) wxPAPER_ISO_B4
));
2602 PyDict_SetItemString(d
,"wxPAPER_JAPANESE_POSTCARD", PyInt_FromLong((long) wxPAPER_JAPANESE_POSTCARD
));
2603 PyDict_SetItemString(d
,"wxPAPER_9X11", PyInt_FromLong((long) wxPAPER_9X11
));
2604 PyDict_SetItemString(d
,"wxPAPER_10X11", PyInt_FromLong((long) wxPAPER_10X11
));
2605 PyDict_SetItemString(d
,"wxPAPER_15X11", PyInt_FromLong((long) wxPAPER_15X11
));
2606 PyDict_SetItemString(d
,"wxPAPER_ENV_INVITE", PyInt_FromLong((long) wxPAPER_ENV_INVITE
));
2607 PyDict_SetItemString(d
,"wxPAPER_LETTER_EXTRA", PyInt_FromLong((long) wxPAPER_LETTER_EXTRA
));
2608 PyDict_SetItemString(d
,"wxPAPER_LEGAL_EXTRA", PyInt_FromLong((long) wxPAPER_LEGAL_EXTRA
));
2609 PyDict_SetItemString(d
,"wxPAPER_TABLOID_EXTRA", PyInt_FromLong((long) wxPAPER_TABLOID_EXTRA
));
2610 PyDict_SetItemString(d
,"wxPAPER_A4_EXTRA", PyInt_FromLong((long) wxPAPER_A4_EXTRA
));
2611 PyDict_SetItemString(d
,"wxPAPER_LETTER_TRANSVERSE", PyInt_FromLong((long) wxPAPER_LETTER_TRANSVERSE
));
2612 PyDict_SetItemString(d
,"wxPAPER_A4_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A4_TRANSVERSE
));
2613 PyDict_SetItemString(d
,"wxPAPER_LETTER_EXTRA_TRANSVERSE", PyInt_FromLong((long) wxPAPER_LETTER_EXTRA_TRANSVERSE
));
2614 PyDict_SetItemString(d
,"wxPAPER_A_PLUS", PyInt_FromLong((long) wxPAPER_A_PLUS
));
2615 PyDict_SetItemString(d
,"wxPAPER_B_PLUS", PyInt_FromLong((long) wxPAPER_B_PLUS
));
2616 PyDict_SetItemString(d
,"wxPAPER_LETTER_PLUS", PyInt_FromLong((long) wxPAPER_LETTER_PLUS
));
2617 PyDict_SetItemString(d
,"wxPAPER_A4_PLUS", PyInt_FromLong((long) wxPAPER_A4_PLUS
));
2618 PyDict_SetItemString(d
,"wxPAPER_A5_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A5_TRANSVERSE
));
2619 PyDict_SetItemString(d
,"wxPAPER_B5_TRANSVERSE", PyInt_FromLong((long) wxPAPER_B5_TRANSVERSE
));
2620 PyDict_SetItemString(d
,"wxPAPER_A3_EXTRA", PyInt_FromLong((long) wxPAPER_A3_EXTRA
));
2621 PyDict_SetItemString(d
,"wxPAPER_A5_EXTRA", PyInt_FromLong((long) wxPAPER_A5_EXTRA
));
2622 PyDict_SetItemString(d
,"wxPAPER_B5_EXTRA", PyInt_FromLong((long) wxPAPER_B5_EXTRA
));
2623 PyDict_SetItemString(d
,"wxPAPER_A2", PyInt_FromLong((long) wxPAPER_A2
));
2624 PyDict_SetItemString(d
,"wxPAPER_A3_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A3_TRANSVERSE
));
2625 PyDict_SetItemString(d
,"wxPAPER_A3_EXTRA_TRANSVERSE", PyInt_FromLong((long) wxPAPER_A3_EXTRA_TRANSVERSE
));
2626 PyDict_SetItemString(d
,"wxDUPLEX_SIMPLEX", PyInt_FromLong((long) wxDUPLEX_SIMPLEX
));
2627 PyDict_SetItemString(d
,"wxDUPLEX_HORIZONTAL", PyInt_FromLong((long) wxDUPLEX_HORIZONTAL
));
2628 PyDict_SetItemString(d
,"wxDUPLEX_VERTICAL", PyInt_FromLong((long) wxDUPLEX_VERTICAL
));
2629 PyDict_SetItemString(d
,"FALSE", PyInt_FromLong((long) 0));
2630 PyDict_SetItemString(d
,"false", PyInt_FromLong((long) 0));
2631 PyDict_SetItemString(d
,"TRUE", PyInt_FromLong((long) 1));
2632 PyDict_SetItemString(d
,"true", PyInt_FromLong((long) 1));
2633 PyDict_SetItemString(d
,"wxVERSION_STRING", PyString_FromString("wxVERSION_STRING"));
2634 PyDict_SetItemString(d
,"wxEVT_NULL", PyInt_FromLong((long) wxEVT_NULL
));
2635 PyDict_SetItemString(d
,"wxEVT_FIRST", PyInt_FromLong((long) wxEVT_FIRST
));
2636 PyDict_SetItemString(d
,"wxEVT_COMMAND_BUTTON_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_BUTTON_CLICKED
));
2637 PyDict_SetItemString(d
,"wxEVT_COMMAND_CHECKBOX_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKBOX_CLICKED
));
2638 PyDict_SetItemString(d
,"wxEVT_COMMAND_CHOICE_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_CHOICE_SELECTED
));
2639 PyDict_SetItemString(d
,"wxEVT_COMMAND_LISTBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_SELECTED
));
2640 PyDict_SetItemString(d
,"wxEVT_COMMAND_LISTBOX_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
));
2641 PyDict_SetItemString(d
,"wxEVT_COMMAND_CHECKLISTBOX_TOGGLED", PyInt_FromLong((long) wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
));
2642 PyDict_SetItemString(d
,"wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_UPDATED
));
2643 PyDict_SetItemString(d
,"wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TEXT_ENTER
));
2644 PyDict_SetItemString(d
,"wxEVT_COMMAND_MENU_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_MENU_SELECTED
));
2645 PyDict_SetItemString(d
,"wxEVT_COMMAND_SLIDER_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SLIDER_UPDATED
));
2646 PyDict_SetItemString(d
,"wxEVT_COMMAND_RADIOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBOX_SELECTED
));
2647 PyDict_SetItemString(d
,"wxEVT_COMMAND_RADIOBUTTON_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_RADIOBUTTON_SELECTED
));
2648 PyDict_SetItemString(d
,"wxEVT_COMMAND_SCROLLBAR_UPDATED", PyInt_FromLong((long) wxEVT_COMMAND_SCROLLBAR_UPDATED
));
2649 PyDict_SetItemString(d
,"wxEVT_COMMAND_VLBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_VLBOX_SELECTED
));
2650 PyDict_SetItemString(d
,"wxEVT_COMMAND_COMBOBOX_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_COMBOBOX_SELECTED
));
2651 PyDict_SetItemString(d
,"wxEVT_COMMAND_TOOL_CLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_CLICKED
));
2652 PyDict_SetItemString(d
,"wxEVT_COMMAND_TOOL_RCLICKED", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_RCLICKED
));
2653 PyDict_SetItemString(d
,"wxEVT_COMMAND_TOOL_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_TOOL_ENTER
));
2654 PyDict_SetItemString(d
,"wxEVT_SET_FOCUS", PyInt_FromLong((long) wxEVT_SET_FOCUS
));
2655 PyDict_SetItemString(d
,"wxEVT_KILL_FOCUS", PyInt_FromLong((long) wxEVT_KILL_FOCUS
));
2656 PyDict_SetItemString(d
,"wxEVT_LEFT_DOWN", PyInt_FromLong((long) wxEVT_LEFT_DOWN
));
2657 PyDict_SetItemString(d
,"wxEVT_LEFT_UP", PyInt_FromLong((long) wxEVT_LEFT_UP
));
2658 PyDict_SetItemString(d
,"wxEVT_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_MIDDLE_DOWN
));
2659 PyDict_SetItemString(d
,"wxEVT_MIDDLE_UP", PyInt_FromLong((long) wxEVT_MIDDLE_UP
));
2660 PyDict_SetItemString(d
,"wxEVT_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_RIGHT_DOWN
));
2661 PyDict_SetItemString(d
,"wxEVT_RIGHT_UP", PyInt_FromLong((long) wxEVT_RIGHT_UP
));
2662 PyDict_SetItemString(d
,"wxEVT_MOTION", PyInt_FromLong((long) wxEVT_MOTION
));
2663 PyDict_SetItemString(d
,"wxEVT_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_ENTER_WINDOW
));
2664 PyDict_SetItemString(d
,"wxEVT_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_LEAVE_WINDOW
));
2665 PyDict_SetItemString(d
,"wxEVT_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_LEFT_DCLICK
));
2666 PyDict_SetItemString(d
,"wxEVT_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_MIDDLE_DCLICK
));
2667 PyDict_SetItemString(d
,"wxEVT_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_RIGHT_DCLICK
));
2668 PyDict_SetItemString(d
,"wxEVT_NC_LEFT_DOWN", PyInt_FromLong((long) wxEVT_NC_LEFT_DOWN
));
2669 PyDict_SetItemString(d
,"wxEVT_NC_LEFT_UP", PyInt_FromLong((long) wxEVT_NC_LEFT_UP
));
2670 PyDict_SetItemString(d
,"wxEVT_NC_MIDDLE_DOWN", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DOWN
));
2671 PyDict_SetItemString(d
,"wxEVT_NC_MIDDLE_UP", PyInt_FromLong((long) wxEVT_NC_MIDDLE_UP
));
2672 PyDict_SetItemString(d
,"wxEVT_NC_RIGHT_DOWN", PyInt_FromLong((long) wxEVT_NC_RIGHT_DOWN
));
2673 PyDict_SetItemString(d
,"wxEVT_NC_RIGHT_UP", PyInt_FromLong((long) wxEVT_NC_RIGHT_UP
));
2674 PyDict_SetItemString(d
,"wxEVT_NC_MOTION", PyInt_FromLong((long) wxEVT_NC_MOTION
));
2675 PyDict_SetItemString(d
,"wxEVT_NC_ENTER_WINDOW", PyInt_FromLong((long) wxEVT_NC_ENTER_WINDOW
));
2676 PyDict_SetItemString(d
,"wxEVT_NC_LEAVE_WINDOW", PyInt_FromLong((long) wxEVT_NC_LEAVE_WINDOW
));
2677 PyDict_SetItemString(d
,"wxEVT_NC_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_NC_LEFT_DCLICK
));
2678 PyDict_SetItemString(d
,"wxEVT_NC_MIDDLE_DCLICK", PyInt_FromLong((long) wxEVT_NC_MIDDLE_DCLICK
));
2679 PyDict_SetItemString(d
,"wxEVT_NC_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_NC_RIGHT_DCLICK
));
2680 PyDict_SetItemString(d
,"wxEVT_CHAR", PyInt_FromLong((long) wxEVT_CHAR
));
2681 PyDict_SetItemString(d
,"wxEVT_KEY_DOWN", PyInt_FromLong((long) wxEVT_KEY_DOWN
));
2682 PyDict_SetItemString(d
,"wxEVT_KEY_UP", PyInt_FromLong((long) wxEVT_KEY_UP
));
2683 PyDict_SetItemString(d
,"wxEVT_CHAR_HOOK", PyInt_FromLong((long) wxEVT_CHAR_HOOK
));
2684 PyDict_SetItemString(d
,"wxEVT_SCROLL_TOP", PyInt_FromLong((long) wxEVT_SCROLL_TOP
));
2685 PyDict_SetItemString(d
,"wxEVT_SCROLL_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLL_BOTTOM
));
2686 PyDict_SetItemString(d
,"wxEVT_SCROLL_LINEUP", PyInt_FromLong((long) wxEVT_SCROLL_LINEUP
));
2687 PyDict_SetItemString(d
,"wxEVT_SCROLL_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_LINEDOWN
));
2688 PyDict_SetItemString(d
,"wxEVT_SCROLL_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLL_PAGEUP
));
2689 PyDict_SetItemString(d
,"wxEVT_SCROLL_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLL_PAGEDOWN
));
2690 PyDict_SetItemString(d
,"wxEVT_SCROLL_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLL_THUMBTRACK
));
2691 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_TOP", PyInt_FromLong((long) wxEVT_SCROLLWIN_TOP
));
2692 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_BOTTOM", PyInt_FromLong((long) wxEVT_SCROLLWIN_BOTTOM
));
2693 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_LINEUP", PyInt_FromLong((long) wxEVT_SCROLLWIN_LINEUP
));
2694 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_LINEDOWN", PyInt_FromLong((long) wxEVT_SCROLLWIN_LINEDOWN
));
2695 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_PAGEUP", PyInt_FromLong((long) wxEVT_SCROLLWIN_PAGEUP
));
2696 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_PAGEDOWN", PyInt_FromLong((long) wxEVT_SCROLLWIN_PAGEDOWN
));
2697 PyDict_SetItemString(d
,"wxEVT_SCROLLWIN_THUMBTRACK", PyInt_FromLong((long) wxEVT_SCROLLWIN_THUMBTRACK
));
2698 PyDict_SetItemString(d
,"wxEVT_SIZE", PyInt_FromLong((long) wxEVT_SIZE
));
2699 PyDict_SetItemString(d
,"wxEVT_MOVE", PyInt_FromLong((long) wxEVT_MOVE
));
2700 PyDict_SetItemString(d
,"wxEVT_CLOSE_WINDOW", PyInt_FromLong((long) wxEVT_CLOSE_WINDOW
));
2701 PyDict_SetItemString(d
,"wxEVT_END_SESSION", PyInt_FromLong((long) wxEVT_END_SESSION
));
2702 PyDict_SetItemString(d
,"wxEVT_QUERY_END_SESSION", PyInt_FromLong((long) wxEVT_QUERY_END_SESSION
));
2703 PyDict_SetItemString(d
,"wxEVT_ACTIVATE_APP", PyInt_FromLong((long) wxEVT_ACTIVATE_APP
));
2704 PyDict_SetItemString(d
,"wxEVT_POWER", PyInt_FromLong((long) wxEVT_POWER
));
2705 PyDict_SetItemString(d
,"wxEVT_ACTIVATE", PyInt_FromLong((long) wxEVT_ACTIVATE
));
2706 PyDict_SetItemString(d
,"wxEVT_CREATE", PyInt_FromLong((long) wxEVT_CREATE
));
2707 PyDict_SetItemString(d
,"wxEVT_DESTROY", PyInt_FromLong((long) wxEVT_DESTROY
));
2708 PyDict_SetItemString(d
,"wxEVT_SHOW", PyInt_FromLong((long) wxEVT_SHOW
));
2709 PyDict_SetItemString(d
,"wxEVT_ICONIZE", PyInt_FromLong((long) wxEVT_ICONIZE
));
2710 PyDict_SetItemString(d
,"wxEVT_MAXIMIZE", PyInt_FromLong((long) wxEVT_MAXIMIZE
));
2711 PyDict_SetItemString(d
,"wxEVT_MOUSE_CAPTURE_CHANGED", PyInt_FromLong((long) wxEVT_MOUSE_CAPTURE_CHANGED
));
2712 PyDict_SetItemString(d
,"wxEVT_PAINT", PyInt_FromLong((long) wxEVT_PAINT
));
2713 PyDict_SetItemString(d
,"wxEVT_ERASE_BACKGROUND", PyInt_FromLong((long) wxEVT_ERASE_BACKGROUND
));
2714 PyDict_SetItemString(d
,"wxEVT_NC_PAINT", PyInt_FromLong((long) wxEVT_NC_PAINT
));
2715 PyDict_SetItemString(d
,"wxEVT_PAINT_ICON", PyInt_FromLong((long) wxEVT_PAINT_ICON
));
2716 PyDict_SetItemString(d
,"wxEVT_MENU_CHAR", PyInt_FromLong((long) wxEVT_MENU_CHAR
));
2717 PyDict_SetItemString(d
,"wxEVT_MENU_INIT", PyInt_FromLong((long) wxEVT_MENU_INIT
));
2718 PyDict_SetItemString(d
,"wxEVT_MENU_HIGHLIGHT", PyInt_FromLong((long) wxEVT_MENU_HIGHLIGHT
));
2719 PyDict_SetItemString(d
,"wxEVT_POPUP_MENU_INIT", PyInt_FromLong((long) wxEVT_POPUP_MENU_INIT
));
2720 PyDict_SetItemString(d
,"wxEVT_CONTEXT_MENU", PyInt_FromLong((long) wxEVT_CONTEXT_MENU
));
2721 PyDict_SetItemString(d
,"wxEVT_SYS_COLOUR_CHANGED", PyInt_FromLong((long) wxEVT_SYS_COLOUR_CHANGED
));
2722 PyDict_SetItemString(d
,"wxEVT_SETTING_CHANGED", PyInt_FromLong((long) wxEVT_SETTING_CHANGED
));
2723 PyDict_SetItemString(d
,"wxEVT_QUERY_NEW_PALETTE", PyInt_FromLong((long) wxEVT_QUERY_NEW_PALETTE
));
2724 PyDict_SetItemString(d
,"wxEVT_PALETTE_CHANGED", PyInt_FromLong((long) wxEVT_PALETTE_CHANGED
));
2725 PyDict_SetItemString(d
,"wxEVT_JOY_BUTTON_DOWN", PyInt_FromLong((long) wxEVT_JOY_BUTTON_DOWN
));
2726 PyDict_SetItemString(d
,"wxEVT_JOY_BUTTON_UP", PyInt_FromLong((long) wxEVT_JOY_BUTTON_UP
));
2727 PyDict_SetItemString(d
,"wxEVT_JOY_MOVE", PyInt_FromLong((long) wxEVT_JOY_MOVE
));
2728 PyDict_SetItemString(d
,"wxEVT_JOY_ZMOVE", PyInt_FromLong((long) wxEVT_JOY_ZMOVE
));
2729 PyDict_SetItemString(d
,"wxEVT_DROP_FILES", PyInt_FromLong((long) wxEVT_DROP_FILES
));
2730 PyDict_SetItemString(d
,"wxEVT_DRAW_ITEM", PyInt_FromLong((long) wxEVT_DRAW_ITEM
));
2731 PyDict_SetItemString(d
,"wxEVT_MEASURE_ITEM", PyInt_FromLong((long) wxEVT_MEASURE_ITEM
));
2732 PyDict_SetItemString(d
,"wxEVT_COMPARE_ITEM", PyInt_FromLong((long) wxEVT_COMPARE_ITEM
));
2733 PyDict_SetItemString(d
,"wxEVT_INIT_DIALOG", PyInt_FromLong((long) wxEVT_INIT_DIALOG
));
2734 PyDict_SetItemString(d
,"wxEVT_IDLE", PyInt_FromLong((long) wxEVT_IDLE
));
2735 PyDict_SetItemString(d
,"wxEVT_UPDATE_UI", PyInt_FromLong((long) wxEVT_UPDATE_UI
));
2736 PyDict_SetItemString(d
,"wxEVT_COMMAND_LEFT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_CLICK
));
2737 PyDict_SetItemString(d
,"wxEVT_COMMAND_LEFT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_LEFT_DCLICK
));
2738 PyDict_SetItemString(d
,"wxEVT_COMMAND_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_CLICK
));
2739 PyDict_SetItemString(d
,"wxEVT_COMMAND_RIGHT_DCLICK", PyInt_FromLong((long) wxEVT_COMMAND_RIGHT_DCLICK
));
2740 PyDict_SetItemString(d
,"wxEVT_COMMAND_SET_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_SET_FOCUS
));
2741 PyDict_SetItemString(d
,"wxEVT_COMMAND_KILL_FOCUS", PyInt_FromLong((long) wxEVT_COMMAND_KILL_FOCUS
));
2742 PyDict_SetItemString(d
,"wxEVT_COMMAND_ENTER", PyInt_FromLong((long) wxEVT_COMMAND_ENTER
));
2743 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_DRAG
));
2744 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_RDRAG
));
2745 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
));
2746 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_TREE_END_LABEL_EDIT
));
2747 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_TREE_DELETE_ITEM
));
2748 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_GET_INFO
));
2749 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SET_INFO
));
2750 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDED
));
2751 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_EXPANDING
));
2752 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSED
));
2753 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_COLLAPSING
));
2754 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED
));
2755 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING
));
2756 PyDict_SetItemString(d
,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN
));
2757 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG
));
2758 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG
));
2759 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
));
2760 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_END_LABEL_EDIT
));
2761 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ITEM
));
2762 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong((long) wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
));
2763 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_GET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_GET_INFO
));
2764 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_SET_INFO", PyInt_FromLong((long) wxEVT_COMMAND_LIST_SET_INFO
));
2765 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_SELECTED
));
2766 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_DESELECTED
));
2767 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_LIST_KEY_DOWN
));
2768 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong((long) wxEVT_COMMAND_LIST_INSERT_ITEM
));
2769 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_LIST_COL_CLICK
));
2770 PyDict_SetItemString(d
,"wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_LIST_ITEM_ACTIVATED
));
2771 PyDict_SetItemString(d
,"wxEVT_COMMAND_TAB_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGED
));
2772 PyDict_SetItemString(d
,"wxEVT_COMMAND_TAB_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGING
));
2773 PyDict_SetItemString(d
,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
));
2774 PyDict_SetItemString(d
,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
));
2775 PyDict_SetItemString(d
,"wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
));
2776 PyDict_SetItemString(d
,"wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
));
2777 PyDict_SetItemString(d
,"wxEVT_COMMAND_SPLITTER_UNSPLIT", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_UNSPLIT
));
2778 PyDict_SetItemString(d
,"wxEVT_COMMAND_SPLITTER_DOUBLECLICKED", PyInt_FromLong((long) wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
));
2779 PyDict_SetItemString(d
,"__version__", PyString_FromString("2.1b2"));
2780 PyDict_SetItemString(d
,"cvar", SWIG_globals
);
2781 SWIG_addvarlink(SWIG_globals
,"wxPyDefaultPosition",_wrap_wxPyDefaultPosition_get
, _wrap_wxPyDefaultPosition_set
);
2782 SWIG_addvarlink(SWIG_globals
,"wxPyDefaultSize",_wrap_wxPyDefaultSize_get
, _wrap_wxPyDefaultSize_set
);
2785 __wxPreStart(); // initialize the GUI toolkit, if needed.
2788 // Since these modules are all linked together, initialize them now
2789 // because python won't be able to find their shared library files,
2790 // (since there isn't any.)
2809 #ifdef WITH_GLCANVAS
2814 * These are the pointer type-equivalency mappings.
2815 * (Used by the SWIG pointer type-checker).
2817 SWIG_RegisterMapping("_wxAcceleratorTable","_class_wxAcceleratorTable",0);
2818 SWIG_RegisterMapping("_wxEvent","_class_wxEvent",0);
2819 SWIG_RegisterMapping("_class_wxActivateEvent","_wxActivateEvent",0);
2820 SWIG_RegisterMapping("_signed_long","_long",0);
2821 SWIG_RegisterMapping("_wxMenuEvent","_class_wxMenuEvent",0);
2822 SWIG_RegisterMapping("_class_wxJPEGHandler","_wxJPEGHandler",0);
2823 SWIG_RegisterMapping("_wxBMPHandler","_class_wxBMPHandler",0);
2824 SWIG_RegisterMapping("_wxImage","_class_wxImage",0);
2825 SWIG_RegisterMapping("_wxPrintQuality","_int",0);
2826 SWIG_RegisterMapping("_wxPrintQuality","_signed_int",0);
2827 SWIG_RegisterMapping("_wxPrintQuality","_unsigned_int",0);
2828 SWIG_RegisterMapping("_wxPrintQuality","_wxWindowID",0);
2829 SWIG_RegisterMapping("_wxPrintQuality","_uint",0);
2830 SWIG_RegisterMapping("_wxPrintQuality","_EBool",0);
2831 SWIG_RegisterMapping("_wxPrintQuality","_size_t",0);
2832 SWIG_RegisterMapping("_wxFontData","_class_wxFontData",0);
2833 SWIG_RegisterMapping("___wxPyCleanup","_class___wxPyCleanup",0);
2834 SWIG_RegisterMapping("_class_wxRegionIterator","_wxRegionIterator",0);
2835 SWIG_RegisterMapping("_class_wxMenuBar","_wxMenuBar",0);
2836 SWIG_RegisterMapping("_class_wxPyTreeItemData","_wxPyTreeItemData",0);
2837 SWIG_RegisterMapping("_class_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler
);
2838 SWIG_RegisterMapping("_class_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler
);
2839 SWIG_RegisterMapping("_class_wxEvtHandler","_wxEvtHandler",0);
2840 SWIG_RegisterMapping("_wxPaintEvent","_class_wxPaintEvent",0);
2841 SWIG_RegisterMapping("_wxGIFHandler","_class_wxGIFHandler",0);
2842 SWIG_RegisterMapping("_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0);
2843 SWIG_RegisterMapping("_wxCursor","_class_wxCursor",0);
2844 SWIG_RegisterMapping("_wxNotifyEvent","_class_wxNotifyEvent",0);
2845 SWIG_RegisterMapping("_wxImageHandler","_class_wxImageHandler",0);
2846 SWIG_RegisterMapping("_class_wxTreeCtrl","_wxTreeCtrl",0);
2847 SWIG_RegisterMapping("_wxMask","_class_wxMask",0);
2848 SWIG_RegisterMapping("_wxToolTip","_class_wxToolTip",0);
2849 SWIG_RegisterMapping("_wxGrid","_class_wxGrid",0);
2850 SWIG_RegisterMapping("_wxPNGHandler","_class_wxPNGHandler",0);
2851 SWIG_RegisterMapping("_class_wxColourData","_wxColourData",0);
2852 SWIG_RegisterMapping("_class_wxPageSetupDialogData","_wxPageSetupDialogData",0);
2853 SWIG_RegisterMapping("_wxPrinter","_class_wxPrinter",0);
2854 SWIG_RegisterMapping("_wxPen","_class_wxPen",0);
2855 SWIG_RegisterMapping("_wxUpdateUIEvent","_class_wxUpdateUIEvent",0);
2856 SWIG_RegisterMapping("_byte","_unsigned_char",0);
2857 SWIG_RegisterMapping("_wxStaticBox","_class_wxStaticBox",0);
2858 SWIG_RegisterMapping("_wxChoice","_class_wxChoice",0);
2859 SWIG_RegisterMapping("_wxSlider","_class_wxSlider",0);
2860 SWIG_RegisterMapping("_wxNotebookEvent","_class_wxNotebookEvent",0);
2861 SWIG_RegisterMapping("_wxPyPrintout","_class_wxPyPrintout",0);
2862 SWIG_RegisterMapping("_long","_wxDash",0);
2863 SWIG_RegisterMapping("_long","_unsigned_long",0);
2864 SWIG_RegisterMapping("_long","_signed_long",0);
2865 SWIG_RegisterMapping("_wxImageList","_class_wxImageList",0);
2866 SWIG_RegisterMapping("_wxDropFilesEvent","_class_wxDropFilesEvent",0);
2867 SWIG_RegisterMapping("_wxBitmapButton","_class_wxBitmapButton",0);
2868 SWIG_RegisterMapping("_wxSashWindow","_class_wxSashWindow",0);
2869 SWIG_RegisterMapping("_class_wxPrintDialogData","_wxPrintDialogData",0);
2870 SWIG_RegisterMapping("_class_wxAcceleratorTable","_wxAcceleratorTable",0);
2871 SWIG_RegisterMapping("_class_wxGauge","_wxGauge",0);
2872 SWIG_RegisterMapping("_class_wxSashEvent","_wxSashEvent",0);
2873 SWIG_RegisterMapping("_wxDC","_class_wxDC",0);
2874 SWIG_RegisterMapping("_wxListEvent","_class_wxListEvent",0);
2875 SWIG_RegisterMapping("_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0);
2876 SWIG_RegisterMapping("_wxProgressDialog","_class_wxProgressDialog",0);
2877 SWIG_RegisterMapping("_class_wxBMPHandler","_wxBMPHandler",0);
2878 SWIG_RegisterMapping("_wxPrintPreview","_class_wxPrintPreview",0);
2879 SWIG_RegisterMapping("_wxSpinEvent","_class_wxSpinEvent",0);
2880 SWIG_RegisterMapping("_wxSashLayoutWindow","_class_wxSashLayoutWindow",0);
2881 SWIG_RegisterMapping("_size_t","_wxPrintQuality",0);
2882 SWIG_RegisterMapping("_size_t","_unsigned_int",0);
2883 SWIG_RegisterMapping("_size_t","_int",0);
2884 SWIG_RegisterMapping("_size_t","_wxWindowID",0);
2885 SWIG_RegisterMapping("_size_t","_uint",0);
2886 SWIG_RegisterMapping("_class_wxRealPoint","_wxRealPoint",0);
2887 SWIG_RegisterMapping("_wxPrinterDC","_class_wxPrinterDC",0);
2888 SWIG_RegisterMapping("_class_wxMenuItem","_wxMenuItem",0);
2889 SWIG_RegisterMapping("_class_wxPaintEvent","_wxPaintEvent",0);
2890 SWIG_RegisterMapping("_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0);
2891 SWIG_RegisterMapping("_class_wxStatusBar","_wxStatusBar",0);
2892 SWIG_RegisterMapping("_class_wxGIFHandler","_wxGIFHandler",0);
2893 SWIG_RegisterMapping("_wxPanel","_class_wxPanel",0);
2894 SWIG_RegisterMapping("_wxInitDialogEvent","_class_wxInitDialogEvent",0);
2895 SWIG_RegisterMapping("_wxCheckBox","_class_wxCheckBox",0);
2896 SWIG_RegisterMapping("_wxPyEvent","_class_wxPyEvent",0);
2897 SWIG_RegisterMapping("_wxTextCtrl","_class_wxTextCtrl",0);
2898 SWIG_RegisterMapping("_class_wxMask","_wxMask",0);
2899 SWIG_RegisterMapping("_class_wxToolTip","_wxToolTip",0);
2900 SWIG_RegisterMapping("_class_wxKeyEvent","_wxKeyEvent",0);
2901 SWIG_RegisterMapping("_class_wxGrid","_wxGrid",0);
2902 SWIG_RegisterMapping("_class_wxPNGHandler","_wxPNGHandler",0);
2903 SWIG_RegisterMapping("_wxColour","_class_wxColour",0);
2904 SWIG_RegisterMapping("_class_wxDialog","_wxDialog",0);
2905 SWIG_RegisterMapping("_wxPageSetupDialog","_class_wxPageSetupDialog",0);
2906 SWIG_RegisterMapping("_class_wxPrinter","_wxPrinter",0);
2907 SWIG_RegisterMapping("_wxIdleEvent","_class_wxIdleEvent",0);
2908 SWIG_RegisterMapping("_class_wxUpdateUIEvent","_wxUpdateUIEvent",0);
2909 SWIG_RegisterMapping("_wxToolBar","_class_wxToolBar",0);
2910 SWIG_RegisterMapping("_wxStaticLine","_class_wxStaticLine",0);
2911 SWIG_RegisterMapping("_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0);
2912 SWIG_RegisterMapping("_wxBrush","_class_wxBrush",0);
2913 SWIG_RegisterMapping("_wxMiniFrame","_class_wxMiniFrame",0);
2914 SWIG_RegisterMapping("_class_wxNotebookEvent","_wxNotebookEvent",0);
2915 SWIG_RegisterMapping("_class_wxPyPrintout","_wxPyPrintout",0);
2916 SWIG_RegisterMapping("_class_wxSashWindow","_wxSashWindow",0);
2917 SWIG_RegisterMapping("_wxShowEvent","_class_wxShowEvent",0);
2918 SWIG_RegisterMapping("_uint","_wxPrintQuality",0);
2919 SWIG_RegisterMapping("_uint","_size_t",0);
2920 SWIG_RegisterMapping("_uint","_unsigned_int",0);
2921 SWIG_RegisterMapping("_uint","_int",0);
2922 SWIG_RegisterMapping("_uint","_wxWindowID",0);
2923 SWIG_RegisterMapping("_class_wxEvent","_wxEvent",0);
2924 SWIG_RegisterMapping("_wxCheckListBox","_class_wxCheckListBox",0);
2925 SWIG_RegisterMapping("_wxSplitterEvent","_class_wxSplitterEvent",0);
2926 SWIG_RegisterMapping("_wxGridEvent","_class_wxGridEvent",0);
2927 SWIG_RegisterMapping("_wxRect","_class_wxRect",0);
2928 SWIG_RegisterMapping("_wxCommandEvent","_class_wxCommandEvent",0);
2929 SWIG_RegisterMapping("_wxSizeEvent","_class_wxSizeEvent",0);
2930 SWIG_RegisterMapping("_class_wxImage","_wxImage",0);
2931 SWIG_RegisterMapping("_wxPoint","_class_wxPoint",0);
2932 SWIG_RegisterMapping("_class_wxSashLayoutWindow","_wxSashLayoutWindow",0);
2933 SWIG_RegisterMapping("_class_wxButton","_wxButton",0);
2934 SWIG_RegisterMapping("_wxRadioBox","_class_wxRadioBox",0);
2935 SWIG_RegisterMapping("_class_wxFontData","_wxFontData",0);
2936 SWIG_RegisterMapping("_class___wxPyCleanup","___wxPyCleanup",0);
2937 SWIG_RegisterMapping("_wxBitmap","_class_wxBitmap",0);
2938 SWIG_RegisterMapping("_wxTaskBarIcon","_class_wxTaskBarIcon",0);
2939 SWIG_RegisterMapping("_wxPrintDialog","_class_wxPrintDialog",0);
2940 SWIG_RegisterMapping("_wxPyTimer","_class_wxPyTimer",0);
2941 SWIG_RegisterMapping("_wxWindowDC","_class_wxWindowDC",0);
2942 SWIG_RegisterMapping("_wxScrollBar","_class_wxScrollBar",0);
2943 SWIG_RegisterMapping("_wxSpinButton","_class_wxSpinButton",0);
2944 SWIG_RegisterMapping("_wxToolBarTool","_class_wxToolBarTool",0);
2945 SWIG_RegisterMapping("_wxColourDialog","_class_wxColourDialog",0);
2946 SWIG_RegisterMapping("_wxPrintData","_class_wxPrintData",0);
2947 SWIG_RegisterMapping("_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0);
2948 SWIG_RegisterMapping("_class_wxNotifyEvent","_wxNotifyEvent",0);
2949 SWIG_RegisterMapping("_wxMessageDialog","_class_wxMessageDialog",0);
2950 SWIG_RegisterMapping("_class_wxPyEvent","_wxPyEvent",0);
2951 SWIG_RegisterMapping("_wxTextEntryDialog","_class_wxTextEntryDialog",0);
2952 SWIG_RegisterMapping("_class_wxIconizeEvent","_wxIconizeEvent",0);
2953 SWIG_RegisterMapping("_class_wxStaticBitmap","_wxStaticBitmap",0);
2954 SWIG_RegisterMapping("_wxMDIChildFrame","_class_wxMDIChildFrame",0);
2955 SWIG_RegisterMapping("_wxListItem","_class_wxListItem",0);
2956 SWIG_RegisterMapping("_class_wxToolBar","_wxToolBar",0);
2957 SWIG_RegisterMapping("_class_wxStaticLine","_wxStaticLine",0);
2958 SWIG_RegisterMapping("_wxScrollEvent","_class_wxScrollEvent",0);
2959 SWIG_RegisterMapping("_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0);
2960 SWIG_RegisterMapping("_EBool","_wxPrintQuality",0);
2961 SWIG_RegisterMapping("_EBool","_signed_int",0);
2962 SWIG_RegisterMapping("_EBool","_int",0);
2963 SWIG_RegisterMapping("_EBool","_wxWindowID",0);
2964 SWIG_RegisterMapping("_class_wxRegion","_wxRegion",0);
2965 SWIG_RegisterMapping("_class_wxDropFilesEvent","_wxDropFilesEvent",0);
2966 SWIG_RegisterMapping("_class_wxPreviewFrame","_wxPreviewFrame",0);
2967 SWIG_RegisterMapping("_wxStaticText","_class_wxStaticText",0);
2968 SWIG_RegisterMapping("_wxFont","_class_wxFont",0);
2969 SWIG_RegisterMapping("_wxCloseEvent","_class_wxCloseEvent",0);
2970 SWIG_RegisterMapping("_class_wxSplitterEvent","_wxSplitterEvent",0);
2971 SWIG_RegisterMapping("_wxNotebook","_class_wxNotebook",0);
2972 SWIG_RegisterMapping("_unsigned_long","_wxDash",0);
2973 SWIG_RegisterMapping("_unsigned_long","_long",0);
2974 SWIG_RegisterMapping("_class_wxRect","_wxRect",0);
2975 SWIG_RegisterMapping("_class_wxDC","_wxDC",0);
2976 SWIG_RegisterMapping("_class_wxProgressDialog","_wxProgressDialog",0);
2977 SWIG_RegisterMapping("_wxPyApp","_class_wxPyApp",0);
2978 SWIG_RegisterMapping("_wxMDIParentFrame","_class_wxMDIParentFrame",0);
2979 SWIG_RegisterMapping("_class_wxTreeEvent","_wxTreeEvent",0);
2980 SWIG_RegisterMapping("_class_wxDirDialog","_wxDirDialog",0);
2981 SWIG_RegisterMapping("_class_wxPyTimer","_wxPyTimer",0);
2982 SWIG_RegisterMapping("_wxFocusEvent","_class_wxFocusEvent",0);
2983 SWIG_RegisterMapping("_wxMaximizeEvent","_class_wxMaximizeEvent",0);
2984 SWIG_RegisterMapping("_class_wxSpinButton","_wxSpinButton",0);
2985 SWIG_RegisterMapping("_wxAcceleratorEntry","_class_wxAcceleratorEntry",0);
2986 SWIG_RegisterMapping("_class_wxPanel","_wxPanel",0);
2987 SWIG_RegisterMapping("_class_wxCheckBox","_wxCheckBox",0);
2988 SWIG_RegisterMapping("_wxComboBox","_class_wxComboBox",0);
2989 SWIG_RegisterMapping("_wxRadioButton","_class_wxRadioButton",0);
2990 SWIG_RegisterMapping("_class_wxMessageDialog","_wxMessageDialog",0);
2991 SWIG_RegisterMapping("_signed_int","_wxPrintQuality",0);
2992 SWIG_RegisterMapping("_signed_int","_EBool",0);
2993 SWIG_RegisterMapping("_signed_int","_wxWindowID",0);
2994 SWIG_RegisterMapping("_signed_int","_int",0);
2995 SWIG_RegisterMapping("_class_wxTextCtrl","_wxTextCtrl",0);
2996 SWIG_RegisterMapping("_wxLayoutConstraints","_class_wxLayoutConstraints",0);
2997 SWIG_RegisterMapping("_wxMetaFileDC","_class_wxMetaFileDC",0);
2998 SWIG_RegisterMapping("_wxMenu","_class_wxMenu",0);
2999 SWIG_RegisterMapping("_class_wxMoveEvent","_wxMoveEvent",0);
3000 SWIG_RegisterMapping("_wxListBox","_class_wxListBox",0);
3001 SWIG_RegisterMapping("_wxScreenDC","_class_wxScreenDC",0);
3002 SWIG_RegisterMapping("_class_wxMDIChildFrame","_wxMDIChildFrame",0);
3003 SWIG_RegisterMapping("_WXTYPE","_short",0);
3004 SWIG_RegisterMapping("_WXTYPE","_signed_short",0);
3005 SWIG_RegisterMapping("_WXTYPE","_unsigned_short",0);
3006 SWIG_RegisterMapping("_wxFileDialog","_class_wxFileDialog",0);
3007 SWIG_RegisterMapping("_class_wxMDIClientWindow","_wxMDIClientWindow",0);
3008 SWIG_RegisterMapping("_class_wxBrush","_wxBrush",0);
3009 SWIG_RegisterMapping("_unsigned_short","_WXTYPE",0);
3010 SWIG_RegisterMapping("_unsigned_short","_short",0);
3011 SWIG_RegisterMapping("_class_wxWindow","_wxWindow",0);
3012 SWIG_RegisterMapping("_wxSplitterWindow","_class_wxSplitterWindow",0);
3013 SWIG_RegisterMapping("_class_wxStaticText","_wxStaticText",0);
3014 SWIG_RegisterMapping("_wxPrintDialogData","_class_wxPrintDialogData",0);
3015 SWIG_RegisterMapping("_class_wxFont","_wxFont",0);
3016 SWIG_RegisterMapping("_class_wxCloseEvent","_wxCloseEvent",0);
3017 SWIG_RegisterMapping("_wxSashEvent","_class_wxSashEvent",0);
3018 SWIG_RegisterMapping("_class_wxMenuEvent","_wxMenuEvent",0);
3019 SWIG_RegisterMapping("_wxClientDC","_class_wxClientDC",0);
3020 SWIG_RegisterMapping("_wxMouseEvent","_class_wxMouseEvent",0);
3021 SWIG_RegisterMapping("_wxListCtrl","_class_wxListCtrl",0);
3022 SWIG_RegisterMapping("_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0);
3023 SWIG_RegisterMapping("_class_wxPoint","_wxPoint",0);
3024 SWIG_RegisterMapping("_wxRealPoint","_class_wxRealPoint",0);
3025 SWIG_RegisterMapping("_class_wxRadioBox","_wxRadioBox",0);
3026 SWIG_RegisterMapping("_wxGridCell","_class_wxGridCell",0);
3027 SWIG_RegisterMapping("_signed_short","_WXTYPE",0);
3028 SWIG_RegisterMapping("_signed_short","_short",0);
3029 SWIG_RegisterMapping("_wxMemoryDC","_class_wxMemoryDC",0);
3030 SWIG_RegisterMapping("_class_wxTaskBarIcon","_wxTaskBarIcon",0);
3031 SWIG_RegisterMapping("_class_wxPrintDialog","_wxPrintDialog",0);
3032 SWIG_RegisterMapping("_wxPaintDC","_class_wxPaintDC",0);
3033 SWIG_RegisterMapping("_class_wxWindowDC","_wxWindowDC",0);
3034 SWIG_RegisterMapping("_class_wxFocusEvent","_wxFocusEvent",0);
3035 SWIG_RegisterMapping("_class_wxMaximizeEvent","_wxMaximizeEvent",0);
3036 SWIG_RegisterMapping("_wxStatusBar","_class_wxStatusBar",0);
3037 SWIG_RegisterMapping("_class_wxToolBarTool","_wxToolBarTool",0);
3038 SWIG_RegisterMapping("_class_wxAcceleratorEntry","_wxAcceleratorEntry",0);
3039 SWIG_RegisterMapping("_class_wxCursor","_wxCursor",0);
3040 SWIG_RegisterMapping("_class_wxImageHandler","_wxImageHandler",0);
3041 SWIG_RegisterMapping("_wxScrolledWindow","_class_wxScrolledWindow",0);
3042 SWIG_RegisterMapping("_wxTreeItemId","_class_wxTreeItemId",0);
3043 SWIG_RegisterMapping("_unsigned_char","_byte",0);
3044 SWIG_RegisterMapping("_class_wxMetaFileDC","_wxMetaFileDC",0);
3045 SWIG_RegisterMapping("_class_wxMenu","_wxMenu",0);
3046 SWIG_RegisterMapping("_wxControl","_class_wxControl",0);
3047 SWIG_RegisterMapping("_class_wxListBox","_wxListBox",0);
3048 SWIG_RegisterMapping("_unsigned_int","_wxPrintQuality",0);
3049 SWIG_RegisterMapping("_unsigned_int","_size_t",0);
3050 SWIG_RegisterMapping("_unsigned_int","_uint",0);
3051 SWIG_RegisterMapping("_unsigned_int","_wxWindowID",0);
3052 SWIG_RegisterMapping("_unsigned_int","_int",0);
3053 SWIG_RegisterMapping("_wxIcon","_class_wxIcon",0);
3054 SWIG_RegisterMapping("_wxDialog","_class_wxDialog",0);
3055 SWIG_RegisterMapping("_class_wxListItem","_wxListItem",0);
3056 SWIG_RegisterMapping("_class_wxPen","_wxPen",0);
3057 SWIG_RegisterMapping("_class_wxFileDialog","_wxFileDialog",0);
3058 SWIG_RegisterMapping("_wxQueryLayoutInfoEvent","_class_wxQueryLayoutInfoEvent",0);
3059 SWIG_RegisterMapping("_short","_WXTYPE",0);
3060 SWIG_RegisterMapping("_short","_unsigned_short",0);
3061 SWIG_RegisterMapping("_short","_signed_short",0);
3062 SWIG_RegisterMapping("_class_wxStaticBox","_wxStaticBox",0);
3063 SWIG_RegisterMapping("_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0);
3064 SWIG_RegisterMapping("_class_wxScrollEvent","_wxScrollEvent",0);
3065 SWIG_RegisterMapping("_wxJoystickEvent","_class_wxJoystickEvent",0);
3066 SWIG_RegisterMapping("_class_wxChoice","_wxChoice",0);
3067 SWIG_RegisterMapping("_class_wxSlider","_wxSlider",0);
3068 SWIG_RegisterMapping("_class_wxCalculateLayoutEvent","_wxCalculateLayoutEvent",0);
3069 SWIG_RegisterMapping("_class_wxImageList","_wxImageList",0);
3070 SWIG_RegisterMapping("_class_wxBitmapButton","_wxBitmapButton",0);
3071 SWIG_RegisterMapping("_wxFrame","_class_wxFrame",0);
3072 SWIG_RegisterMapping("_class_wxNotebook","_wxNotebook",0);
3073 SWIG_RegisterMapping("_wxJPEGHandler","_class_wxJPEGHandler",0);
3074 SWIG_RegisterMapping("_wxWindowID","_wxPrintQuality",0);
3075 SWIG_RegisterMapping("_wxWindowID","_size_t",0);
3076 SWIG_RegisterMapping("_wxWindowID","_EBool",0);
3077 SWIG_RegisterMapping("_wxWindowID","_uint",0);
3078 SWIG_RegisterMapping("_wxWindowID","_int",0);
3079 SWIG_RegisterMapping("_wxWindowID","_signed_int",0);
3080 SWIG_RegisterMapping("_wxWindowID","_unsigned_int",0);
3081 SWIG_RegisterMapping("_int","_wxPrintQuality",0);
3082 SWIG_RegisterMapping("_int","_size_t",0);
3083 SWIG_RegisterMapping("_int","_EBool",0);
3084 SWIG_RegisterMapping("_int","_uint",0);
3085 SWIG_RegisterMapping("_int","_wxWindowID",0);
3086 SWIG_RegisterMapping("_int","_unsigned_int",0);
3087 SWIG_RegisterMapping("_int","_signed_int",0);
3088 SWIG_RegisterMapping("_class_wxMouseEvent","_wxMouseEvent",0);
3089 SWIG_RegisterMapping("_class_wxListEvent","_wxListEvent",0);
3090 SWIG_RegisterMapping("_class_wxPrintPreview","_wxPrintPreview",0);
3091 SWIG_RegisterMapping("_class_wxSpinEvent","_wxSpinEvent",0);
3092 SWIG_RegisterMapping("_wxButton","_class_wxButton",0);
3093 SWIG_RegisterMapping("_class_wxPyApp","_wxPyApp",0);
3094 SWIG_RegisterMapping("_wxSize","_class_wxSize",0);
3095 SWIG_RegisterMapping("_wxRegionIterator","_class_wxRegionIterator",0);
3096 SWIG_RegisterMapping("_class_wxPrinterDC","_wxPrinterDC",0);
3097 SWIG_RegisterMapping("_class_wxMDIParentFrame","_wxMDIParentFrame",0);
3098 SWIG_RegisterMapping("_wxPyTreeItemData","_class_wxPyTreeItemData",0);
3099 SWIG_RegisterMapping("_class_wxPaintDC","_wxPaintDC",0);
3100 SWIG_RegisterMapping("_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0);
3101 SWIG_RegisterMapping("_class_wxInitDialogEvent","_wxInitDialogEvent",0);
3102 SWIG_RegisterMapping("_class_wxComboBox","_wxComboBox",0);
3103 SWIG_RegisterMapping("_class_wxRadioButton","_wxRadioButton",0);
3104 SWIG_RegisterMapping("_class_wxTreeItemId","_wxTreeItemId",0);
3105 SWIG_RegisterMapping("_wxTreeCtrl","_class_wxTreeCtrl",0);
3106 SWIG_RegisterMapping("_class_wxLayoutConstraints","_wxLayoutConstraints",0);
3107 SWIG_RegisterMapping("_wxIconizeEvent","_class_wxIconizeEvent",0);
3108 SWIG_RegisterMapping("_class_wxControl","_wxControl",0);
3109 SWIG_RegisterMapping("_wxStaticBitmap","_class_wxStaticBitmap",0);
3110 SWIG_RegisterMapping("_class_wxIcon","_wxIcon",0);
3111 SWIG_RegisterMapping("_class_wxColour","_wxColour",0);
3112 SWIG_RegisterMapping("_class_wxScreenDC","_wxScreenDC",0);
3113 SWIG_RegisterMapping("_class_wxPageSetupDialog","_wxPageSetupDialog",0);
3114 SWIG_RegisterMapping("_wxPalette","_class_wxPalette",0);
3115 SWIG_RegisterMapping("_class_wxIdleEvent","_wxIdleEvent",0);
3116 SWIG_RegisterMapping("_wxEraseEvent","_class_wxEraseEvent",0);
3117 SWIG_RegisterMapping("_class_wxJoystickEvent","_wxJoystickEvent",0);
3118 SWIG_RegisterMapping("_class_wxMiniFrame","_wxMiniFrame",0);
3119 SWIG_RegisterMapping("_wxFontDialog","_class_wxFontDialog",0);
3120 SWIG_RegisterMapping("_wxRegion","_class_wxRegion",0);
3121 SWIG_RegisterMapping("_class_wxSplitterWindow","_wxSplitterWindow",0);
3122 SWIG_RegisterMapping("_wxPreviewFrame","_class_wxPreviewFrame",0);
3123 SWIG_RegisterMapping("_class_wxShowEvent","_wxShowEvent",0);
3124 SWIG_RegisterMapping("_wxActivateEvent","_class_wxActivateEvent",0);
3125 SWIG_RegisterMapping("_wxGauge","_class_wxGauge",0);
3126 SWIG_RegisterMapping("_class_wxCheckListBox","_wxCheckListBox",0);
3127 SWIG_RegisterMapping("_class_wxGridEvent","_wxGridEvent",0);
3128 SWIG_RegisterMapping("_class_wxCommandEvent","_wxCommandEvent",0);
3129 SWIG_RegisterMapping("_class_wxClientDC","_wxClientDC",0);
3130 SWIG_RegisterMapping("_class_wxSizeEvent","_wxSizeEvent",0);
3131 SWIG_RegisterMapping("_class_wxListCtrl","_wxListCtrl",0);
3132 SWIG_RegisterMapping("_class_wxGridCell","_wxGridCell",0);
3133 SWIG_RegisterMapping("_class_wxSize","_wxSize",0);
3134 SWIG_RegisterMapping("_class_wxBitmap","_wxBitmap",0);
3135 SWIG_RegisterMapping("_class_wxMemoryDC","_wxMemoryDC",0);
3136 SWIG_RegisterMapping("_wxMenuBar","_class_wxMenuBar",0);
3137 SWIG_RegisterMapping("_wxTreeEvent","_class_wxTreeEvent",0);
3138 SWIG_RegisterMapping("_wxDirDialog","_class_wxDirDialog",0);
3139 SWIG_RegisterMapping("_wxEvtHandler","_class_wxPyApp",SwigwxPyAppTowxEvtHandler
);
3140 SWIG_RegisterMapping("_wxEvtHandler","_wxPyApp",SwigwxPyAppTowxEvtHandler
);
3141 SWIG_RegisterMapping("_wxEvtHandler","_class_wxEvtHandler",0);
3142 SWIG_RegisterMapping("_wxMenuItem","_class_wxMenuItem",0);
3143 SWIG_RegisterMapping("_class_wxScrollBar","_wxScrollBar",0);
3144 SWIG_RegisterMapping("_class_wxColourDialog","_wxColourDialog",0);
3145 SWIG_RegisterMapping("_class_wxPrintData","_wxPrintData",0);
3146 SWIG_RegisterMapping("_wxDash","_unsigned_long",0);
3147 SWIG_RegisterMapping("_wxDash","_long",0);
3148 SWIG_RegisterMapping("_class_wxScrolledWindow","_wxScrolledWindow",0);
3149 SWIG_RegisterMapping("_class_wxTextEntryDialog","_wxTextEntryDialog",0);
3150 SWIG_RegisterMapping("_wxKeyEvent","_class_wxKeyEvent",0);
3151 SWIG_RegisterMapping("_wxMoveEvent","_class_wxMoveEvent",0);
3152 SWIG_RegisterMapping("_wxColourData","_class_wxColourData",0);
3153 SWIG_RegisterMapping("_wxPageSetupDialogData","_class_wxPageSetupDialogData",0);
3154 SWIG_RegisterMapping("_class_wxPalette","_wxPalette",0);
3155 SWIG_RegisterMapping("_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0);
3156 SWIG_RegisterMapping("_class_wxEraseEvent","_wxEraseEvent",0);
3157 SWIG_RegisterMapping("_wxMDIClientWindow","_class_wxMDIClientWindow",0);
3158 SWIG_RegisterMapping("_class_wxFontDialog","_wxFontDialog",0);
3159 SWIG_RegisterMapping("_wxWindow","_class_wxWindow",0);
3160 SWIG_RegisterMapping("_class_wxFrame","_wxFrame",0);