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