1 /* ---------------------------------------------------------------------------- 
   2  * This file was automatically generated by SWIG (http://www.swig.org). 
   5  * This file is not intended to be easily readable and contains a number of  
   6  * coding conventions designed to improve portability and efficiency. Do not make 
   7  * changes to this file unless you know what you are doing--modify the SWIG  
   8  * interface file instead.  
   9  * ----------------------------------------------------------------------------- */ 
  12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE 
  15 template<class T
> class SwigValueWrapper 
{ 
  18     SwigValueWrapper() : tt(0) { } 
  19     SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { } 
  20     SwigValueWrapper(const T
& t
) : tt(new T(t
)) { } 
  21     ~SwigValueWrapper() { delete tt
; }  
  22     SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt 
= new T(t
); return *this; } 
  23     operator T
&() const { return *tt
; } 
  24     T 
*operator&() { return tt
; } 
  26     SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
); 
  30 /* ----------------------------------------------------------------------------- 
  31  *  This section contains generic SWIG labels for method/variable 
  32  *  declarations/attributes, and other compiler dependent labels. 
  33  * ----------------------------------------------------------------------------- */ 
  35 /* template workaround for compilers that cannot correctly implement the C++ standard */ 
  36 #ifndef SWIGTEMPLATEDISAMBIGUATOR 
  37 # if defined(__SUNPRO_CC) 
  38 #   if (__SUNPRO_CC <= 0x560) 
  39 #     define SWIGTEMPLATEDISAMBIGUATOR template 
  41 #     define SWIGTEMPLATEDISAMBIGUATOR  
  44 #   define SWIGTEMPLATEDISAMBIGUATOR  
  48 /* inline attribute */ 
  50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) 
  51 #   define SWIGINLINE inline 
  57 /* attribute recognised by some compilers to avoid 'unused' warnings */ 
  59 # if defined(__GNUC__) 
  60 #   if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) 
  61 #     define SWIGUNUSED __attribute__ ((__unused__))  
  66 #   define SWIGUNUSED __attribute__ ((__unused__))  
  72 #ifndef SWIGUNUSEDPARM 
  74 #   define SWIGUNUSEDPARM(p) 
  76 #   define SWIGUNUSEDPARM(p) p SWIGUNUSED  
  80 /* internal SWIG method */ 
  82 # define SWIGINTERN static SWIGUNUSED 
  85 /* internal inline SWIG method */ 
  86 #ifndef SWIGINTERNINLINE 
  87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE 
  90 /* exporting methods */ 
  91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) 
  92 #  ifndef GCC_HASCLASSVISIBILITY 
  93 #    define GCC_HASCLASSVISIBILITY 
  98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
  99 #   if defined(STATIC_LINKED) 
 102 #     define SWIGEXPORT __declspec(dllexport) 
 105 #   if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) 
 106 #     define SWIGEXPORT __attribute__ ((visibility("default"))) 
 113 /* calling conventions for Windows */ 
 115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
 116 #   define SWIGSTDCALL __stdcall 
 122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */ 
 123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) 
 124 # define _CRT_SECURE_NO_DEPRECATE 
 128 /* Python.h has to appear first */ 
 131 /* ----------------------------------------------------------------------------- 
 134  * This file contains generic CAPI SWIG runtime support for pointer 
 136  * ----------------------------------------------------------------------------- */ 
 138 /* This should only be incremented when either the layout of swig_type_info changes, 
 139    or for whatever reason, the runtime changes incompatibly */ 
 140 #define SWIG_RUNTIME_VERSION "2" 
 142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ 
 143 #ifdef SWIG_TYPE_TABLE 
 144 # define SWIG_QUOTE_STRING(x) #x 
 145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) 
 146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) 
 148 # define SWIG_TYPE_TABLE_NAME 
 152   You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for 
 153   creating a static or dynamic library from the swig runtime code. 
 154   In 99.9% of the cases, swig just needs to declare them as 'static'. 
 156   But only do this if is strictly necessary, ie, if you have problems 
 157   with your compiler or so. 
 161 # define SWIGRUNTIME SWIGINTERN 
 164 #ifndef SWIGRUNTIMEINLINE 
 165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE 
 168 /*  Generic buffer size */ 
 169 #ifndef SWIG_BUFFER_SIZE 
 170 # define SWIG_BUFFER_SIZE 1024 
 173 /* Flags for pointer conversions */ 
 174 #define SWIG_POINTER_DISOWN        0x1 
 176 /* Flags for new pointer objects */ 
 177 #define SWIG_POINTER_OWN           0x1 
 181    Flags/methods for returning states. 
 183    The swig conversion methods, as ConvertPtr, return and integer  
 184    that tells if the conversion was successful or not. And if not, 
 185    an error code can be returned (see swigerrors.swg for the codes). 
 187    Use the following macros/flags to set or process the returning 
 190    In old swig versions, you usually write code as: 
 192      if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { 
 198    Now you can be more explicit as: 
 200     int res = SWIG_ConvertPtr(obj,vptr,ty.flags); 
 201     if (SWIG_IsOK(res)) { 
 207    that seems to be the same, but now you can also do 
 210     int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); 
 211     if (SWIG_IsOK(res)) { 
 213       if (SWIG_IsNewObj(res) { 
 223    I.e., now SWIG_ConvertPtr can return new objects and you can 
 224    identify the case and take care of the deallocation. Of course that 
 225    requires also to SWIG_ConvertPtr to return new result values, as 
 227       int SWIG_ConvertPtr(obj, ptr,...) {          
 229           if (<need new object>) {                      
 230             *ptr = <ptr to new allocated object>;  
 233             *ptr = <ptr to old object>;         
 241    Of course, returning the plain '0(success)/-1(fail)' still works, but you can be 
 242    more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the 
 245    Finally, if the SWIG_CASTRANK_MODE is enabled, the result code 
 246    allows to return the 'cast rank', for example, if you have this 
 253       food(1)   // cast rank '1'  (1 -> 1.0) 
 254       fooi(1)   // cast rank '0' 
 256    just use the SWIG_AddCast()/SWIG_CheckState() 
 261 #define SWIG_ERROR                 (-1) 
 262 #define SWIG_IsOK(r)               (r >= 0) 
 263 #define SWIG_ArgError(r)           ((r != SWIG_ERROR) ? r : SWIG_TypeError)   
 265 /* The CastRankLimit says how many bits are used for the cast rank */ 
 266 #define SWIG_CASTRANKLIMIT         (1 << 8) 
 267 /* The NewMask denotes the object was created (using new/malloc) */ 
 268 #define SWIG_NEWOBJMASK            (SWIG_CASTRANKLIMIT  << 1) 
 269 /* The TmpMask is for in/out typemaps that use temporal objects */ 
 270 #define SWIG_TMPOBJMASK            (SWIG_NEWOBJMASK << 1) 
 271 /* Simple returning values */ 
 272 #define SWIG_BADOBJ                (SWIG_ERROR) 
 273 #define SWIG_OLDOBJ                (SWIG_OK) 
 274 #define SWIG_NEWOBJ                (SWIG_OK | SWIG_NEWOBJMASK) 
 275 #define SWIG_TMPOBJ                (SWIG_OK | SWIG_TMPOBJMASK) 
 276 /* Check, add and del mask methods */ 
 277 #define SWIG_AddNewMask(r)         (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) 
 278 #define SWIG_DelNewMask(r)         (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) 
 279 #define SWIG_IsNewObj(r)           (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) 
 280 #define SWIG_AddTmpMask(r)         (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) 
 281 #define SWIG_DelTmpMask(r)         (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) 
 282 #define SWIG_IsTmpObj(r)           (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) 
 286 #if defined(SWIG_CASTRANK_MODE) 
 287 #  ifndef SWIG_TypeRank 
 288 #    define SWIG_TypeRank             unsigned long 
 290 #  ifndef SWIG_MAXCASTRANK            /* Default cast allowed */ 
 291 #    define SWIG_MAXCASTRANK          (2) 
 293 #  define SWIG_CASTRANKMASK          ((SWIG_CASTRANKLIMIT) -1) 
 294 #  define SWIG_CastRank(r)           (r & SWIG_CASTRANKMASK) 
 295 SWIGINTERNINLINE 
int SWIG_AddCast(int r
) {  
 296   return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r 
+ 1) : SWIG_ERROR
) : r
; 
 298 SWIGINTERNINLINE 
int SWIG_CheckState(int r
) {  
 299   return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;  
 301 #else /* no cast-rank mode */ 
 302 #  define SWIG_AddCast 
 303 #  define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) 
 315 typedef void *(*swig_converter_func
)(void *); 
 316 typedef struct swig_type_info 
*(*swig_dycast_func
)(void **); 
 318 /* Structure to store inforomation on one type */ 
 319 typedef struct swig_type_info 
{ 
 320   const char             *name
;                 /* mangled name of this type */ 
 321   const char             *str
;                  /* human readable name of this type */ 
 322   swig_dycast_func        dcast
;                /* dynamic cast function down a hierarchy */ 
 323   struct swig_cast_info  
*cast
;                 /* linked list of types that can cast into this type */ 
 324   void                   *clientdata
;           /* language specific type data */ 
 325   int                    owndata
;               /* flag if the structure owns the clientdata */ 
 328 /* Structure to store a type and conversion function used for casting */ 
 329 typedef struct swig_cast_info 
{ 
 330   swig_type_info         
*type
;                 /* pointer to type that is equivalent to this type */ 
 331   swig_converter_func     converter
;            /* function to cast the void pointers */ 
 332   struct swig_cast_info  
*next
;                 /* pointer to next cast in linked list */ 
 333   struct swig_cast_info  
*prev
;                 /* pointer to the previous cast */ 
 336 /* Structure used to store module information 
 337  * Each module generates one structure like this, and the runtime collects 
 338  * all of these structures and stores them in a circularly linked list.*/ 
 339 typedef struct swig_module_info 
{ 
 340   swig_type_info         
**types
;               /* Array of pointers to swig_type_info structures that are in this module */ 
 341   size_t                 size
;                  /* Number of types in this module */ 
 342   struct swig_module_info 
*next
;                /* Pointer to next element in circularly linked list */ 
 343   swig_type_info         
**type_initial
;        /* Array of initially generated type structures */ 
 344   swig_cast_info         
**cast_initial
;        /* Array of initially generated casting structures */ 
 345   void                    *clientdata
;          /* Language specific module data */ 
 349   Compare two type names skipping the space characters, therefore 
 350   "char*" == "char *" and "Class<int>" == "Class<int >", etc. 
 352   Return 0 when the two name types are equivalent, as in 
 353   strncmp, but skipping ' '. 
 356 SWIG_TypeNameComp(const char *f1
, const char *l1
, 
 357                   const char *f2
, const char *l2
) { 
 358   for (;(f1 
!= l1
) && (f2 
!= l2
); ++f1
, ++f2
) { 
 359     while ((*f1 
== ' ') && (f1 
!= l1
)) ++f1
; 
 360     while ((*f2 
== ' ') && (f2 
!= l2
)) ++f2
; 
 361     if (*f1 
!= *f2
) return (*f1 
> *f2
) ? 1 : -1; 
 363   return (l1 
- f1
) - (l2 
- f2
); 
 367   Check type equivalence in a name list like <name1>|<name2>|... 
 368   Return 0 if not equal, 1 if equal 
 371 SWIG_TypeEquiv(const char *nb
, const char *tb
) { 
 373   const char* te 
= tb 
+ strlen(tb
); 
 375   while (!equiv 
&& *ne
) { 
 376     for (nb 
= ne
; *ne
; ++ne
) { 
 377       if (*ne 
== '|') break; 
 379     equiv 
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0; 
 386   Check type equivalence in a name list like <name1>|<name2>|... 
 387   Return 0 if equal, -1 if nb < tb, 1 if nb > tb 
 390 SWIG_TypeCompare(const char *nb
, const char *tb
) { 
 392   const char* te 
= tb 
+ strlen(tb
); 
 394   while (!equiv 
&& *ne
) { 
 395     for (nb 
= ne
; *ne
; ++ne
) { 
 396       if (*ne 
== '|') break; 
 398     equiv 
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0; 
 405 /* think of this as a c++ template<> or a scheme macro */ 
 406 #define SWIG_TypeCheck_Template(comparison, ty)         \ 
 408     swig_cast_info *iter = ty->cast;                    \ 
 411         if (iter == ty->cast) return iter;              \ 
 412         /* Move iter to the top of the linked list */   \ 
 413         iter->prev->next = iter->next;                  \ 
 415           iter->next->prev = iter->prev;                \ 
 416         iter->next = ty->cast;                          \ 
 418         if (ty->cast) ty->cast->prev = iter;            \ 
 430 SWIGRUNTIME swig_cast_info 
* 
 431 SWIG_TypeCheck(const char *c
, swig_type_info 
*ty
) { 
 432   SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
); 
 435 /* Same as previous function, except strcmp is replaced with a pointer comparison */ 
 436 SWIGRUNTIME swig_cast_info 
* 
 437 SWIG_TypeCheckStruct(swig_type_info 
*from
, swig_type_info 
*into
) { 
 438   SWIG_TypeCheck_Template(iter
->type 
== from
, into
); 
 442   Cast a pointer up an inheritance hierarchy 
 444 SWIGRUNTIMEINLINE 
void * 
 445 SWIG_TypeCast(swig_cast_info 
*ty
, void *ptr
) { 
 446   return ((!ty
) || (!ty
->converter
)) ? ptr 
: (*ty
->converter
)(ptr
); 
 450    Dynamic pointer casting. Down an inheritance hierarchy 
 452 SWIGRUNTIME swig_type_info 
* 
 453 SWIG_TypeDynamicCast(swig_type_info 
*ty
, void **ptr
) { 
 454   swig_type_info 
*lastty 
= ty
; 
 455   if (!ty 
|| !ty
->dcast
) return ty
; 
 456   while (ty 
&& (ty
->dcast
)) { 
 457     ty 
= (*ty
->dcast
)(ptr
); 
 464   Return the name associated with this type 
 466 SWIGRUNTIMEINLINE 
const char * 
 467 SWIG_TypeName(const swig_type_info 
*ty
) { 
 472   Return the pretty name associated with this type, 
 473   that is an unmangled type name in a form presentable to the user. 
 475 SWIGRUNTIME 
const char * 
 476 SWIG_TypePrettyName(const swig_type_info 
*type
) { 
 477   /* The "str" field contains the equivalent pretty names of the 
 478      type, separated by vertical-bar characters.  We choose 
 479      to print the last name, as it is often (?) the most 
 481   if (!type
) return NULL
; 
 482   if (type
->str 
!= NULL
) { 
 483     const char *last_name 
= type
->str
; 
 485     for (s 
= type
->str
; *s
; s
++) 
 486       if (*s 
== '|') last_name 
= s
+1; 
 494    Set the clientdata field for a type 
 497 SWIG_TypeClientData(swig_type_info 
*ti
, void *clientdata
) { 
 498   swig_cast_info 
*cast 
= ti
->cast
; 
 499   /* if (ti->clientdata == clientdata) return; */ 
 500   ti
->clientdata 
= clientdata
; 
 503     if (!cast
->converter
) { 
 504       swig_type_info 
*tc 
= cast
->type
; 
 505       if (!tc
->clientdata
) { 
 506         SWIG_TypeClientData(tc
, clientdata
); 
 513 SWIG_TypeNewClientData(swig_type_info 
*ti
, void *clientdata
) { 
 514   SWIG_TypeClientData(ti
, clientdata
); 
 519   Search for a swig_type_info structure only by mangled name 
 520   Search is a O(log #types) 
 522   We start searching at module start, and finish searching when start == end.   
 523   Note: if start == end at the beginning of the function, we go all the way around 
 526 SWIGRUNTIME swig_type_info 
* 
 527 SWIG_MangledTypeQueryModule(swig_module_info 
*start
,  
 528                             swig_module_info 
*end
,  
 530   swig_module_info 
*iter 
= start
; 
 533       register size_t l 
= 0; 
 534       register size_t r 
= iter
->size 
- 1; 
 536         /* since l+r >= 0, we can (>> 1) instead (/ 2) */ 
 537         register size_t i 
= (l 
+ r
) >> 1;  
 538         const char *iname 
= iter
->types
[i
]->name
; 
 540           register int compare 
= strcmp(name
, iname
); 
 542             return iter
->types
[i
]; 
 543           } else if (compare 
< 0) { 
 549           } else if (compare 
> 0) { 
 553           break; /* should never happen */ 
 558   } while (iter 
!= end
); 
 563   Search for a swig_type_info structure for either a mangled name or a human readable name. 
 564   It first searches the mangled names of the types, which is a O(log #types) 
 565   If a type is not found it then searches the human readable names, which is O(#types). 
 567   We start searching at module start, and finish searching when start == end.   
 568   Note: if start == end at the beginning of the function, we go all the way around 
 571 SWIGRUNTIME swig_type_info 
* 
 572 SWIG_TypeQueryModule(swig_module_info 
*start
,  
 573                      swig_module_info 
*end
,  
 575   /* STEP 1: Search the name field using binary search */ 
 576   swig_type_info 
*ret 
= SWIG_MangledTypeQueryModule(start
, end
, name
); 
 580     /* STEP 2: If the type hasn't been found, do a complete search 
 581        of the str field (the human readable name) */ 
 582     swig_module_info 
*iter 
= start
; 
 584       register size_t i 
= 0; 
 585       for (; i 
< iter
->size
; ++i
) { 
 586         if (iter
->types
[i
]->str 
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
))) 
 587           return iter
->types
[i
]; 
 590     } while (iter 
!= end
); 
 593   /* neither found a match */ 
 598    Pack binary data into a string 
 601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) { 
 602   static const char hex
[17] = "0123456789abcdef"; 
 603   register const unsigned char *u 
= (unsigned char *) ptr
; 
 604   register const unsigned char *eu 
=  u 
+ sz
; 
 605   for (; u 
!= eu
; ++u
) { 
 606     register unsigned char uu 
= *u
; 
 607     *(c
++) = hex
[(uu 
& 0xf0) >> 4]; 
 608     *(c
++) = hex
[uu 
& 0xf]; 
 614    Unpack binary data from a string 
 616 SWIGRUNTIME 
const char * 
 617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) { 
 618   register unsigned char *u 
= (unsigned char *) ptr
; 
 619   register const unsigned char *eu 
= u 
+ sz
; 
 620   for (; u 
!= eu
; ++u
) { 
 621     register char d 
= *(c
++); 
 622     register unsigned char uu
; 
 623     if ((d 
>= '0') && (d 
<= '9')) 
 624       uu 
= ((d 
- '0') << 4); 
 625     else if ((d 
>= 'a') && (d 
<= 'f')) 
 626       uu 
= ((d 
- ('a'-10)) << 4); 
 630     if ((d 
>= '0') && (d 
<= '9')) 
 632     else if ((d 
>= 'a') && (d 
<= 'f')) 
 633       uu 
|= (d 
- ('a'-10)); 
 642    Pack 'void *' into a string buffer. 
 645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) { 
 647   if ((2*sizeof(void *) + 2) > bsz
) return 0; 
 649   r 
= SWIG_PackData(r
,&ptr
,sizeof(void *)); 
 650   if (strlen(name
) + 1 > (bsz 
- (r 
- buff
))) return 0; 
 655 SWIGRUNTIME 
const char * 
 656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) { 
 658     if (strcmp(c
,"NULL") == 0) { 
 665   return SWIG_UnpackData(++c
,ptr
,sizeof(void *)); 
 669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) { 
 671   size_t lname 
= (name 
? strlen(name
) : 0); 
 672   if ((2*sz 
+ 2 + lname
) > bsz
) return 0; 
 674   r 
= SWIG_PackData(r
,ptr
,sz
); 
 676     strncpy(r
,name
,lname
+1); 
 683 SWIGRUNTIME 
const char * 
 684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) { 
 686     if (strcmp(c
,"NULL") == 0) { 
 693   return SWIG_UnpackData(++c
,ptr
,sz
); 
 701 #define  SWIG_UnknownError         -1  
 702 #define  SWIG_IOError              -2  
 703 #define  SWIG_RuntimeError         -3  
 704 #define  SWIG_IndexError           -4  
 705 #define  SWIG_TypeError            -5  
 706 #define  SWIG_DivisionByZero       -6  
 707 #define  SWIG_OverflowError        -7  
 708 #define  SWIG_SyntaxError          -8  
 709 #define  SWIG_ValueError           -9  
 710 #define  SWIG_SystemError          -10 
 711 #define  SWIG_AttributeError       -11 
 712 #define  SWIG_MemoryError          -12  
 713 #define  SWIG_NullReferenceError   -13 
 717 /* Python.h has to appear first */ 
 720 /* Add PyOS_snprintf for old Pythons */ 
 721 #if PY_VERSION_HEX < 0x02020000 
 722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) 
 723 #  define PyOS_snprintf _snprintf 
 725 #  define PyOS_snprintf snprintf 
 729 /* A crude PyString_FromFormat implementation for old Pythons */ 
 730 #if PY_VERSION_HEX < 0x02020000 
 732 #ifndef SWIG_PYBUFFER_SIZE 
 733 # define SWIG_PYBUFFER_SIZE 1024 
 737 PyString_FromFormat(const char *fmt
, ...) { 
 739   char buf
[SWIG_PYBUFFER_SIZE 
* 2]; 
 742   res 
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
); 
 744   return (res 
< 0 || res 
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
); 
 748 /* Add PyObject_Del for old Pythons */ 
 749 #if PY_VERSION_HEX < 0x01060000 
 750 # define PyObject_Del(op) PyMem_DEL((op)) 
 753 # define PyObject_DEL PyObject_Del 
 756 /* A crude PyExc_StopIteration exception for old Pythons */ 
 757 #if PY_VERSION_HEX < 0x02020000 
 758 # ifndef PyExc_StopIteration 
 759 #  define PyExc_StopIteration PyExc_RuntimeError 
 761 # ifndef PyObject_GenericGetAttr 
 762 #  define PyObject_GenericGetAttr 0 
 765 /* Py_NotImplemented is defined in 2.1 and up. */ 
 766 #if PY_VERSION_HEX < 0x02010000 
 767 # ifndef Py_NotImplemented 
 768 #  define Py_NotImplemented PyExc_RuntimeError 
 773 /* A crude PyString_AsStringAndSize implementation for old Pythons */ 
 774 #if PY_VERSION_HEX < 0x02010000 
 775 # ifndef PyString_AsStringAndSize 
 776 #  define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} 
 780 /* PySequence_Size for old Pythons */ 
 781 #if PY_VERSION_HEX < 0x02000000 
 782 # ifndef PySequence_Size 
 783 #  define PySequence_Size PySequence_Length 
 788 /* PyBool_FromLong for old Pythons */ 
 789 #if PY_VERSION_HEX < 0x02030000 
 791 PyObject 
*PyBool_FromLong(long ok
) 
 793   PyObject 
*result 
= ok 
? Py_True 
: Py_False
; 
 800 /* ----------------------------------------------------------------------------- 
 802  * ----------------------------------------------------------------------------- */ 
 804 SWIGRUNTIME PyObject
* 
 805 SWIG_Python_ErrorType(int code
) { 
 808   case SWIG_MemoryError
: 
 809     type 
= PyExc_MemoryError
; 
 812     type 
= PyExc_IOError
; 
 814   case SWIG_RuntimeError
: 
 815     type 
= PyExc_RuntimeError
; 
 817   case SWIG_IndexError
: 
 818     type 
= PyExc_IndexError
; 
 821     type 
= PyExc_TypeError
; 
 823   case SWIG_DivisionByZero
: 
 824     type 
= PyExc_ZeroDivisionError
; 
 826   case SWIG_OverflowError
: 
 827     type 
= PyExc_OverflowError
; 
 829   case SWIG_SyntaxError
: 
 830     type 
= PyExc_SyntaxError
; 
 832   case SWIG_ValueError
: 
 833     type 
= PyExc_ValueError
; 
 835   case SWIG_SystemError
: 
 836     type 
= PyExc_SystemError
; 
 838   case SWIG_AttributeError
: 
 839     type 
= PyExc_AttributeError
; 
 842     type 
= PyExc_RuntimeError
; 
 849 SWIG_Python_AddErrorMsg(const char* mesg
) 
 853   PyObject 
*traceback 
= 0; 
 855   if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
); 
 857     PyObject 
*old_str 
= PyObject_Str(value
); 
 860     PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
); 
 864     PyErr_Format(PyExc_RuntimeError
, mesg
); 
 870 #if defined(SWIG_PYTHON_NO_THREADS) 
 871 #  if defined(SWIG_PYTHON_THREADS) 
 872 #    undef SWIG_PYTHON_THREADS 
 875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ 
 876 #  if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) 
 877 #    if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ 
 878 #      define SWIG_PYTHON_USE_GIL 
 881 #  if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ 
 882 #    ifndef SWIG_PYTHON_INITIALIZE_THREADS 
 883 #     define SWIG_PYTHON_INITIALIZE_THREADS  PyEval_InitThreads()  
 885 #    ifdef __cplusplus /* C++ code */ 
 886        class SWIG_Python_Thread_Block 
{ 
 888          PyGILState_STATE state
; 
 890          void end() { if (status
) { PyGILState_Release(state
); status 
= false;} } 
 891          SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} 
 892          ~SWIG_Python_Thread_Block() { end(); } 
 894        class SWIG_Python_Thread_Allow 
{ 
 898          void end() { if (status
) { PyEval_RestoreThread(save
); status 
= false; }} 
 899          SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} 
 900          ~SWIG_Python_Thread_Allow() { end(); } 
 902 #      define SWIG_PYTHON_THREAD_BEGIN_BLOCK   SWIG_Python_Thread_Block _swig_thread_block 
 903 #      define SWIG_PYTHON_THREAD_END_BLOCK     _swig_thread_block.end() 
 904 #      define SWIG_PYTHON_THREAD_BEGIN_ALLOW   SWIG_Python_Thread_Allow _swig_thread_allow 
 905 #      define SWIG_PYTHON_THREAD_END_ALLOW     _swig_thread_allow.end() 
 907 #      define SWIG_PYTHON_THREAD_BEGIN_BLOCK   PyGILState_STATE _swig_thread_block = PyGILState_Ensure() 
 908 #      define SWIG_PYTHON_THREAD_END_BLOCK     PyGILState_Release(_swig_thread_block) 
 909 #      define SWIG_PYTHON_THREAD_BEGIN_ALLOW   PyThreadState *_swig_thread_allow = PyEval_SaveThread() 
 910 #      define SWIG_PYTHON_THREAD_END_ALLOW     PyEval_RestoreThread(_swig_thread_allow) 
 912 #  else /* Old thread way, not implemented, user must provide it */ 
 913 #    if !defined(SWIG_PYTHON_INITIALIZE_THREADS) 
 914 #      define SWIG_PYTHON_INITIALIZE_THREADS 
 916 #    if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) 
 917 #      define SWIG_PYTHON_THREAD_BEGIN_BLOCK 
 919 #    if !defined(SWIG_PYTHON_THREAD_END_BLOCK) 
 920 #      define SWIG_PYTHON_THREAD_END_BLOCK 
 922 #    if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) 
 923 #      define SWIG_PYTHON_THREAD_BEGIN_ALLOW 
 925 #    if !defined(SWIG_PYTHON_THREAD_END_ALLOW) 
 926 #      define SWIG_PYTHON_THREAD_END_ALLOW 
 929 #else /* No thread support */ 
 930 #  define SWIG_PYTHON_INITIALIZE_THREADS 
 931 #  define SWIG_PYTHON_THREAD_BEGIN_BLOCK 
 932 #  define SWIG_PYTHON_THREAD_END_BLOCK 
 933 #  define SWIG_PYTHON_THREAD_BEGIN_ALLOW 
 934 #  define SWIG_PYTHON_THREAD_END_ALLOW 
 937 /* ----------------------------------------------------------------------------- 
 938  * Python API portion that goes into the runtime 
 939  * ----------------------------------------------------------------------------- */ 
 948 /* ----------------------------------------------------------------------------- 
 949  * Constant declarations 
 950  * ----------------------------------------------------------------------------- */ 
 953 #define SWIG_PY_POINTER 4 
 954 #define SWIG_PY_BINARY  5 
 956 /* Constant information structure */ 
 957 typedef struct swig_const_info 
{ 
 963   swig_type_info 
**ptype
; 
 974 /* ----------------------------------------------------------------------------- 
 975  * See the LICENSE file for information on copyright, usage and redistribution 
 976  * of SWIG, and the README file for authors - http://www.swig.org/release.html. 
 980  * This file contains the runtime support for Python modules 
 981  * and includes code for managing global variables and pointer 
 984  * ----------------------------------------------------------------------------- */ 
 986 /* Common SWIG API */ 
 988 #if PY_VERSION_HEX < 0x02050000 
 989 typedef int Py_ssize_t
; 
 992 /* for raw pointers */ 
 993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags)  SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) 
 994 #define SWIG_ConvertPtr(obj, pptr, type, flags)         SWIG_Python_ConvertPtr(obj, pptr, type, flags) 
 995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own)  SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) 
 996 #define SWIG_NewPointerObj(ptr, type, flags)            SWIG_Python_NewPointerObj(ptr, type, flags) 
 997 #define SWIG_CheckImplicit(ty)                          SWIG_Python_CheckImplicit(ty)  
 998 #define SWIG_AcquirePtr(ptr, src)                       SWIG_Python_AcquirePtr(ptr, src) 
 999 #define swig_owntype                                    int 
1001 /* for raw packed data */ 
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty)            SWIG_Python_ConvertPacked(obj, ptr, sz, ty) 
1003 #define SWIG_NewPackedObj(ptr, sz, type)                SWIG_Python_NewPackedObj(ptr, sz, type) 
1005 /* for class or struct pointers */ 
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags)    SWIG_ConvertPtr(obj, pptr, type, flags) 
1007 #define SWIG_NewInstanceObj(ptr, type, flags)           SWIG_NewPointerObj(ptr, type, flags) 
1009 /* for C or C++ function pointers */ 
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type)        SWIG_Python_ConvertFunctionPtr(obj, pptr, type) 
1011 #define SWIG_NewFunctionPtrObj(ptr, type)               SWIG_Python_NewPointerObj(ptr, type, 0) 
1013 /* for C++ member pointers, ie, member methods */ 
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty)            SWIG_Python_ConvertPacked(obj, ptr, sz, ty) 
1015 #define SWIG_NewMemberObj(ptr, sz, type)                SWIG_Python_NewPackedObj(ptr, sz, type) 
1020 #define SWIG_GetModule(clientdata)                      SWIG_Python_GetModule() 
1021 #define SWIG_SetModule(clientdata, pointer)             SWIG_Python_SetModule(pointer) 
1022 #define SWIG_NewClientData(obj)                         PySwigClientData_New(obj) 
1024 #define SWIG_SetErrorObj                                SWIG_Python_SetErrorObj                             
1025 #define SWIG_SetErrorMsg                                SWIG_Python_SetErrorMsg                             
1026 #define SWIG_ErrorType(code)                            SWIG_Python_ErrorType(code)                         
1027 #define SWIG_Error(code, msg)                           SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)  
1028 #define SWIG_fail                                       goto fail                                           
1031 /* Runtime API implementation */ 
1033 /* Error manipulation */ 
1036 SWIG_Python_SetErrorObj(PyObject 
*errtype
, PyObject 
*obj
) { 
1037   SWIG_PYTHON_THREAD_BEGIN_BLOCK
;  
1038   PyErr_SetObject(errtype
, obj
); 
1040   SWIG_PYTHON_THREAD_END_BLOCK
; 
1044 SWIG_Python_SetErrorMsg(PyObject 
*errtype
, const char *msg
) { 
1045   SWIG_PYTHON_THREAD_BEGIN_BLOCK
; 
1046   PyErr_SetString(errtype
, (char *) msg
); 
1047   SWIG_PYTHON_THREAD_END_BLOCK
; 
1050 #define SWIG_Python_Raise(obj, type, desc)  SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) 
1052 /* Set a constant value */ 
1055 SWIG_Python_SetConstant(PyObject 
*d
, const char *name
, PyObject 
*obj
) {    
1056   PyDict_SetItemString(d
, (char*) name
, obj
); 
1060 /* Append a value to the result obj */ 
1062 SWIGINTERN PyObject
* 
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) { 
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE) 
1067   } else if (result 
== Py_None
) { 
1071     if (!PyList_Check(result
)) { 
1072       PyObject 
*o2 
= result
; 
1073       result 
= PyList_New(1); 
1074       PyList_SetItem(result
, 0, o2
); 
1076     PyList_Append(result
,obj
); 
1085   } else if (result 
== Py_None
) { 
1089     if (!PyTuple_Check(result
)) { 
1091       result 
= PyTuple_New(1); 
1092       PyTuple_SET_ITEM(result
, 0, o2
); 
1094     o3 
= PyTuple_New(1); 
1095     PyTuple_SET_ITEM(o3
, 0, obj
); 
1097     result 
= PySequence_Concat(o2
, o3
); 
1105 /* Unpack the argument tuple */ 
1108 SWIG_Python_UnpackTuple(PyObject 
*args
, const char *name
, int min
, int max
, PyObject 
**objs
) 
1114       PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",  
1115                    name
, (min 
== max 
? "" : "at least "), min
); 
1119   if (!PyTuple_Check(args
)) { 
1120     PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple"); 
1123     register int l 
= PyTuple_GET_SIZE(args
); 
1125       PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",  
1126                    name
, (min 
== max 
? "" : "at least "), min
, l
); 
1128     } else if (l 
> max
) { 
1129       PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",  
1130                    name
, (min 
== max 
? "" : "at most "), max
, l
); 
1134       for (i 
= 0; i 
< l
; ++i
) { 
1135         objs
[i
] = PyTuple_GET_ITEM(args
, i
); 
1137       for (; l 
< max
; ++l
) { 
1145 /* A functor is a function object with one single object argument */ 
1146 #if PY_VERSION_HEX >= 0x02020000 
1147 #define SWIG_Python_CallFunctor(functor, obj)           PyObject_CallFunctionObjArgs(functor, obj, NULL); 
1149 #define SWIG_Python_CallFunctor(functor, obj)           PyObject_CallFunction(functor, "O", obj); 
1153   Helper for static pointer initialization for both C and C++ code, for example 
1154   static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); 
1157 #define SWIG_STATIC_POINTER(var)  var 
1159 #define SWIG_STATIC_POINTER(var)  var = 0; if (!var) var 
1162 /* ----------------------------------------------------------------------------- 
1163  * Pointer declarations 
1164  * ----------------------------------------------------------------------------- */ 
1166 /* Flags for new pointer objects */ 
1167 #define SWIG_POINTER_NOSHADOW       (SWIG_POINTER_OWN      << 1) 
1168 #define SWIG_POINTER_NEW            (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) 
1170 #define SWIG_POINTER_IMPLICIT_CONV  (SWIG_POINTER_DISOWN   << 1) 
1179 /*  How to access Py_None */ 
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
1181 #  ifndef SWIG_PYTHON_NO_BUILD_NONE 
1182 #    ifndef SWIG_PYTHON_BUILD_NONE 
1183 #      define SWIG_PYTHON_BUILD_NONE 
1188 #ifdef SWIG_PYTHON_BUILD_NONE 
1191 #   define Py_None SWIG_Py_None() 
1193 SWIGRUNTIMEINLINE PyObject 
*  
1196   PyObject 
*none 
= Py_BuildValue(""); 
1200 SWIGRUNTIME PyObject 
*  
1203   static PyObject 
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None(); 
1208 /* The python void return value */ 
1210 SWIGRUNTIMEINLINE PyObject 
*  
1213   PyObject 
*none 
= Py_None
; 
1218 /* PySwigClientData */ 
1229 SWIGRUNTIMEINLINE 
int  
1230 SWIG_Python_CheckImplicit(swig_type_info 
*ty
) 
1232   PySwigClientData 
*data 
= (PySwigClientData 
*)ty
->clientdata
; 
1233   return data 
? data
->implicitconv 
: 0; 
1236 SWIGRUNTIMEINLINE PyObject 
* 
1237 SWIG_Python_ExceptionType(swig_type_info 
*desc
) { 
1238   PySwigClientData 
*data 
= desc 
? (PySwigClientData 
*) desc
->clientdata 
: 0; 
1239   PyObject 
*klass 
= data 
? data
->klass 
: 0; 
1240   return (klass 
? klass 
: PyExc_RuntimeError
); 
1244 SWIGRUNTIME PySwigClientData 
*  
1245 PySwigClientData_New(PyObject
* obj
) 
1250     PySwigClientData 
*data 
= (PySwigClientData 
*)malloc(sizeof(PySwigClientData
)); 
1251     /* the klass element */ 
1253     Py_INCREF(data
->klass
); 
1254     /* the newraw method and newargs arguments used to create a new raw instance */ 
1255     if (PyClass_Check(obj
)) { 
1257       data
->newargs 
= obj
; 
1260 #if (PY_VERSION_HEX < 0x02020000) 
1263       data
->newraw 
= PyObject_GetAttrString(data
->klass
, (char *)"__new__"); 
1266         Py_INCREF(data
->newraw
); 
1267         data
->newargs 
= PyTuple_New(1); 
1268         PyTuple_SetItem(data
->newargs
, 0, obj
); 
1270         data
->newargs 
= obj
; 
1272       Py_INCREF(data
->newargs
); 
1274     /* the destroy method, aka as the C++ delete method */ 
1275     data
->destroy 
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__"); 
1276     if (PyErr_Occurred()) { 
1280     if (data
->destroy
) { 
1282       Py_INCREF(data
->destroy
); 
1283       flags 
= PyCFunction_GET_FLAGS(data
->destroy
); 
1285       data
->delargs 
= !(flags 
& (METH_O
)); 
1292     data
->implicitconv 
= 0; 
1298 PySwigClientData_Del(PySwigClientData
* data
) 
1300   Py_XDECREF(data
->newraw
); 
1301   Py_XDECREF(data
->newargs
); 
1302   Py_XDECREF(data
->destroy
); 
1305 /* =============== PySwigObject =====================*/ 
1315 SWIGRUNTIME PyObject 
* 
1316 PySwigObject_long(PySwigObject 
*v
) 
1318   return PyLong_FromVoidPtr(v
->ptr
); 
1321 SWIGRUNTIME PyObject 
* 
1322 PySwigObject_format(const char* fmt
, PySwigObject 
*v
) 
1324   PyObject 
*res 
= NULL
; 
1325   PyObject 
*args 
= PyTuple_New(1); 
1327     if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) { 
1328       PyObject 
*ofmt 
= PyString_FromString(fmt
); 
1330         res 
= PyString_Format(ofmt
,args
); 
1339 SWIGRUNTIME PyObject 
* 
1340 PySwigObject_oct(PySwigObject 
*v
) 
1342   return PySwigObject_format("%o",v
); 
1345 SWIGRUNTIME PyObject 
* 
1346 PySwigObject_hex(PySwigObject 
*v
) 
1348   return PySwigObject_format("%x",v
); 
1351 SWIGRUNTIME PyObject 
* 
1353 PySwigObject_repr(PySwigObject 
*v
) 
1355 PySwigObject_repr(PySwigObject 
*v
, PyObject 
*args
) 
1358   const char *name 
= SWIG_TypePrettyName(v
->ty
); 
1359   PyObject 
*hex 
= PySwigObject_hex(v
);     
1360   PyObject 
*repr 
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
)); 
1364     PyObject 
*nrep 
= PySwigObject_repr((PySwigObject 
*)v
->next
); 
1366     PyObject 
*nrep 
= PySwigObject_repr((PySwigObject 
*)v
->next
, args
); 
1368     PyString_ConcatAndDel(&repr
,nrep
); 
1374 PySwigObject_print(PySwigObject 
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) 
1377   PyObject 
*repr 
= PySwigObject_repr(v
); 
1379   PyObject 
*repr 
= PySwigObject_repr(v
, NULL
); 
1382     fputs(PyString_AsString(repr
), fp
); 
1390 SWIGRUNTIME PyObject 
* 
1391 PySwigObject_str(PySwigObject 
*v
) 
1393   char result
[SWIG_BUFFER_SIZE
]; 
1394   return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ? 
1395     PyString_FromString(result
) : 0; 
1399 PySwigObject_compare(PySwigObject 
*v
, PySwigObject 
*w
) 
1403   return (i 
< j
) ? -1 : ((i 
> j
) ? 1 : 0); 
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void); 
1408 SWIGRUNTIME PyTypeObject
* 
1409 PySwigObject_type(void) { 
1410   static PyTypeObject 
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type(); 
1414 SWIGRUNTIMEINLINE 
int 
1415 PySwigObject_Check(PyObject 
*op
) { 
1416   return ((op
)->ob_type 
== PySwigObject_type()) 
1417     || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0); 
1420 SWIGRUNTIME PyObject 
* 
1421 PySwigObject_New(void *ptr
, swig_type_info 
*ty
, int own
); 
1424 PySwigObject_dealloc(PyObject 
*v
) 
1426   PySwigObject 
*sobj 
= (PySwigObject 
*) v
; 
1427   PyObject 
*next 
= sobj
->next
; 
1429     swig_type_info 
*ty 
= sobj
->ty
; 
1430     PySwigClientData 
*data 
= ty 
? (PySwigClientData 
*) ty
->clientdata 
: 0; 
1431     PyObject 
*destroy 
= data 
? data
->destroy 
: 0; 
1433       /* destroy is always a VARARGS method */ 
1435       if (data
->delargs
) { 
1436         /* we need to create a temporal object to carry the destroy operation */ 
1437         PyObject 
*tmp 
= PySwigObject_New(sobj
->ptr
, ty
, 0); 
1438         res 
= SWIG_Python_CallFunctor(destroy
, tmp
); 
1441         PyCFunction meth 
= PyCFunction_GET_FUNCTION(destroy
); 
1442         PyObject 
*mself 
= PyCFunction_GET_SELF(destroy
); 
1443         res 
= ((*meth
)(mself
, v
)); 
1447       const char *name 
= SWIG_TypePrettyName(ty
); 
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK) 
1449       printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
); 
1457 SWIGRUNTIME PyObject
*  
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
) 
1460   PySwigObject 
*sobj 
= (PySwigObject 
*) v
; 
1463   if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
; 
1466   if (!PySwigObject_Check(next
)) { 
1471   return SWIG_Py_Void(); 
1474 SWIGRUNTIME PyObject
*  
1476 PySwigObject_next(PyObject
* v
) 
1478 PySwigObject_next(PyObject
* v
, PyObject 
*SWIGUNUSEDPARM(args
)) 
1481   PySwigObject 
*sobj 
= (PySwigObject 
*) v
; 
1483     Py_INCREF(sobj
->next
); 
1486     return SWIG_Py_Void(); 
1490 SWIGINTERN PyObject
* 
1492 PySwigObject_disown(PyObject 
*v
) 
1494 PySwigObject_disown(PyObject
* v
, PyObject 
*SWIGUNUSEDPARM(args
)) 
1497   PySwigObject 
*sobj 
= (PySwigObject 
*)v
; 
1499   return SWIG_Py_Void(); 
1502 SWIGINTERN PyObject
* 
1504 PySwigObject_acquire(PyObject 
*v
) 
1506 PySwigObject_acquire(PyObject
* v
, PyObject 
*SWIGUNUSEDPARM(args
)) 
1509   PySwigObject 
*sobj 
= (PySwigObject 
*)v
; 
1510   sobj
->own 
= SWIG_POINTER_OWN
; 
1511   return SWIG_Py_Void(); 
1514 SWIGINTERN PyObject
* 
1515 PySwigObject_own(PyObject 
*v
, PyObject 
*args
) 
1518 #if (PY_VERSION_HEX < 0x02020000) 
1519   if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
)) 
1521   if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))  
1528       PySwigObject 
*sobj 
= (PySwigObject 
*)v
; 
1529       PyObject 
*obj 
= PyBool_FromLong(sobj
->own
); 
1532         if (PyObject_IsTrue(val
)) { 
1533           PySwigObject_acquire(v
); 
1535           PySwigObject_disown(v
); 
1538         if (PyObject_IsTrue(val
)) { 
1539           PySwigObject_acquire(v
,args
); 
1541           PySwigObject_disown(v
,args
); 
1551 swigobject_methods
[] = { 
1552   {(char *)"disown",  (PyCFunction
)PySwigObject_disown
,  METH_NOARGS
,  (char *)"releases ownership of the pointer"}, 
1553   {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
,  (char *)"aquires ownership of the pointer"}, 
1554   {(char *)"own",     (PyCFunction
)PySwigObject_own
,     METH_VARARGS
, (char *)"returns/sets ownership of the pointer"}, 
1555   {(char *)"append",  (PyCFunction
)PySwigObject_append
,  METH_O
,       (char *)"appends another 'this' object"}, 
1556   {(char *)"next",    (PyCFunction
)PySwigObject_next
,    METH_NOARGS
,  (char *)"returns the next 'this' object"}, 
1557   {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
,    METH_NOARGS
,  (char *)"returns object representation"}, 
1562 swigobject_methods
[] = { 
1563   {(char *)"disown",  (PyCFunction
)PySwigObject_disown
,  METH_VARARGS
,  (char *)"releases ownership of the pointer"}, 
1564   {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
,  (char *)"aquires ownership of the pointer"}, 
1565   {(char *)"own",     (PyCFunction
)PySwigObject_own
,     METH_VARARGS
,  (char *)"returns/sets ownership of the pointer"}, 
1566   {(char *)"append",  (PyCFunction
)PySwigObject_append
,  METH_VARARGS
,  (char *)"appends another 'this' object"}, 
1567   {(char *)"next",    (PyCFunction
)PySwigObject_next
,    METH_VARARGS
,  (char *)"returns the next 'this' object"}, 
1568   {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
,   METH_VARARGS
,  (char *)"returns object representation"}, 
1573 #if PY_VERSION_HEX < 0x02020000 
1574 SWIGINTERN PyObject 
* 
1575 PySwigObject_getattr(PySwigObject 
*sobj
,char *name
) 
1577   return Py_FindMethod(swigobject_methods
, (PyObject 
*)sobj
, name
); 
1581 SWIGRUNTIME PyTypeObject
* 
1582 _PySwigObject_type(void) { 
1583   static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer"; 
1585   static PyNumberMethods PySwigObject_as_number 
= { 
1586     (binaryfunc
)0, /*nb_add*/ 
1587     (binaryfunc
)0, /*nb_subtract*/ 
1588     (binaryfunc
)0, /*nb_multiply*/ 
1589     (binaryfunc
)0, /*nb_divide*/ 
1590     (binaryfunc
)0, /*nb_remainder*/ 
1591     (binaryfunc
)0, /*nb_divmod*/ 
1592     (ternaryfunc
)0,/*nb_power*/ 
1593     (unaryfunc
)0,  /*nb_negative*/ 
1594     (unaryfunc
)0,  /*nb_positive*/ 
1595     (unaryfunc
)0,  /*nb_absolute*/ 
1596     (inquiry
)0,    /*nb_nonzero*/ 
1603     (coercion
)0,   /*nb_coerce*/ 
1604     (unaryfunc
)PySwigObject_long
, /*nb_int*/ 
1605     (unaryfunc
)PySwigObject_long
, /*nb_long*/ 
1606     (unaryfunc
)0,                 /*nb_float*/ 
1607     (unaryfunc
)PySwigObject_oct
,  /*nb_oct*/ 
1608     (unaryfunc
)PySwigObject_hex
,  /*nb_hex*/ 
1609 #if PY_VERSION_HEX >= 0x02020000 
1610     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */  
1611 #elif PY_VERSION_HEX >= 0x02000000 
1612     0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ 
1616   static PyTypeObject pyswigobject_type
;   
1617   static int type_init 
= 0; 
1619     const PyTypeObject tmp
 
1621         PyObject_HEAD_INIT(NULL
) 
1623         (char *)"PySwigObject",             /* tp_name */ 
1624         sizeof(PySwigObject
),               /* tp_basicsize */ 
1625         0,                                  /* tp_itemsize */ 
1626         (destructor
)PySwigObject_dealloc
,   /* tp_dealloc */ 
1627         (printfunc
)PySwigObject_print
,      /* tp_print */ 
1628 #if PY_VERSION_HEX < 0x02020000 
1629         (getattrfunc
)PySwigObject_getattr
,  /* tp_getattr */  
1631         (getattrfunc
)0,                     /* tp_getattr */  
1633         (setattrfunc
)0,                     /* tp_setattr */  
1634         (cmpfunc
)PySwigObject_compare
,      /* tp_compare */  
1635         (reprfunc
)PySwigObject_repr
,        /* tp_repr */     
1636         &PySwigObject_as_number
,            /* tp_as_number */ 
1637         0,                                  /* tp_as_sequence */ 
1638         0,                                  /* tp_as_mapping */ 
1639         (hashfunc
)0,                        /* tp_hash */ 
1640         (ternaryfunc
)0,                     /* tp_call */ 
1641         (reprfunc
)PySwigObject_str
,         /* tp_str */ 
1642         PyObject_GenericGetAttr
,            /* tp_getattro */ 
1643         0,                                  /* tp_setattro */ 
1644         0,                                  /* tp_as_buffer */ 
1645         Py_TPFLAGS_DEFAULT
,                 /* tp_flags */ 
1646         swigobject_doc
,                     /* tp_doc */         
1647         0,                                  /* tp_traverse */ 
1649         0,                                  /* tp_richcompare */ 
1650         0,                                  /* tp_weaklistoffset */ 
1651 #if PY_VERSION_HEX >= 0x02020000 
1653         0,                                  /* tp_iternext */ 
1654         swigobject_methods
,                 /* tp_methods */  
1659         0,                                  /* tp_descr_get */           
1660         0,                                  /* tp_descr_set */           
1661         0,                                  /* tp_dictoffset */          
1670         0,                                  /* tp_subclasses */ 
1671         0,                                  /* tp_weaklist */ 
1673 #if PY_VERSION_HEX >= 0x02030000 
1677         0,0,0,0                             /* tp_alloc -> tp_next */ 
1680     pyswigobject_type 
= tmp
; 
1681     pyswigobject_type
.ob_type 
= &PyType_Type
; 
1684   return &pyswigobject_type
; 
1687 SWIGRUNTIME PyObject 
* 
1688 PySwigObject_New(void *ptr
, swig_type_info 
*ty
, int own
) 
1690   PySwigObject 
*sobj 
= PyObject_NEW(PySwigObject
, PySwigObject_type()); 
1697   return (PyObject 
*)sobj
; 
1700 /* ----------------------------------------------------------------------------- 
1701  * Implements a simple Swig Packed type, and use it instead of string 
1702  * ----------------------------------------------------------------------------- */ 
1712 PySwigPacked_print(PySwigPacked 
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) 
1714   char result
[SWIG_BUFFER_SIZE
]; 
1715   fputs("<Swig Packed ", fp
);  
1716   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) { 
1720   fputs(v
->ty
->name
,fp
);  
1725 SWIGRUNTIME PyObject 
* 
1726 PySwigPacked_repr(PySwigPacked 
*v
) 
1728   char result
[SWIG_BUFFER_SIZE
]; 
1729   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) { 
1730     return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
); 
1732     return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
); 
1736 SWIGRUNTIME PyObject 
* 
1737 PySwigPacked_str(PySwigPacked 
*v
) 
1739   char result
[SWIG_BUFFER_SIZE
]; 
1740   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){ 
1741     return PyString_FromFormat("%s%s", result
, v
->ty
->name
); 
1743     return PyString_FromString(v
->ty
->name
); 
1748 PySwigPacked_compare(PySwigPacked 
*v
, PySwigPacked 
*w
) 
1752   int s 
= (i 
< j
) ? -1 : ((i 
> j
) ? 1 : 0); 
1753   return s 
? s 
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
); 
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void); 
1758 SWIGRUNTIME PyTypeObject
* 
1759 PySwigPacked_type(void) { 
1760   static PyTypeObject 
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type(); 
1764 SWIGRUNTIMEINLINE 
int 
1765 PySwigPacked_Check(PyObject 
*op
) { 
1766   return ((op
)->ob_type 
== _PySwigPacked_type())  
1767     || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0); 
1771 PySwigPacked_dealloc(PyObject 
*v
) 
1773   if (PySwigPacked_Check(v
)) { 
1774     PySwigPacked 
*sobj 
= (PySwigPacked 
*) v
; 
1780 SWIGRUNTIME PyTypeObject
* 
1781 _PySwigPacked_type(void) { 
1782   static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer"; 
1783   static PyTypeObject pyswigpacked_type
; 
1784   static int type_init 
= 0;   
1786     const PyTypeObject tmp
 
1788         PyObject_HEAD_INIT(NULL
) 
1790         (char *)"PySwigPacked",             /* tp_name */        
1791         sizeof(PySwigPacked
),               /* tp_basicsize */   
1792         0,                                  /* tp_itemsize */    
1793         (destructor
)PySwigPacked_dealloc
,   /* tp_dealloc */     
1794         (printfunc
)PySwigPacked_print
,      /* tp_print */       
1795         (getattrfunc
)0,                     /* tp_getattr */     
1796         (setattrfunc
)0,                     /* tp_setattr */     
1797         (cmpfunc
)PySwigPacked_compare
,      /* tp_compare */     
1798         (reprfunc
)PySwigPacked_repr
,        /* tp_repr */        
1799         0,                                  /* tp_as_number */   
1800         0,                                  /* tp_as_sequence */ 
1801         0,                                  /* tp_as_mapping */  
1802         (hashfunc
)0,                        /* tp_hash */        
1803         (ternaryfunc
)0,                     /* tp_call */        
1804         (reprfunc
)PySwigPacked_str
,         /* tp_str */         
1805         PyObject_GenericGetAttr
,            /* tp_getattro */ 
1806         0,                                  /* tp_setattro */ 
1807         0,                                  /* tp_as_buffer */ 
1808         Py_TPFLAGS_DEFAULT
,                 /* tp_flags */ 
1809         swigpacked_doc
,                     /* tp_doc */ 
1810         0,                                  /* tp_traverse */ 
1812         0,                                  /* tp_richcompare */ 
1813         0,                                  /* tp_weaklistoffset */ 
1814 #if PY_VERSION_HEX >= 0x02020000 
1816         0,                                  /* tp_iternext */ 
1822         0,                                  /* tp_descr_get */           
1823         0,                                  /* tp_descr_set */           
1824         0,                                  /* tp_dictoffset */          
1833         0,                                  /* tp_subclasses */ 
1834         0,                                  /* tp_weaklist */ 
1836 #if PY_VERSION_HEX >= 0x02030000 
1840         0,0,0,0                             /* tp_alloc -> tp_next */ 
1843     pyswigpacked_type 
= tmp
; 
1844     pyswigpacked_type
.ob_type 
= &PyType_Type
; 
1847   return &pyswigpacked_type
; 
1850 SWIGRUNTIME PyObject 
* 
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info 
*ty
) 
1853   PySwigPacked 
*sobj 
= PyObject_NEW(PySwigPacked
, PySwigPacked_type()); 
1855     void *pack 
= malloc(size
); 
1857       memcpy(pack
, ptr
, size
); 
1862       PyObject_DEL((PyObject 
*) sobj
); 
1866   return (PyObject 
*) sobj
; 
1869 SWIGRUNTIME swig_type_info 
* 
1870 PySwigPacked_UnpackData(PyObject 
*obj
, void *ptr
, size_t size
) 
1872   if (PySwigPacked_Check(obj
)) { 
1873     PySwigPacked 
*sobj 
= (PySwigPacked 
*)obj
; 
1874     if (sobj
->size 
!= size
) return 0; 
1875     memcpy(ptr
, sobj
->pack
, size
); 
1882 /* ----------------------------------------------------------------------------- 
1883  * pointers/data manipulation 
1884  * ----------------------------------------------------------------------------- */ 
1886 SWIGRUNTIMEINLINE PyObject 
* 
1889   return PyString_FromString("this"); 
1892 SWIGRUNTIME PyObject 
* 
1895   static PyObject 
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This(); 
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */ 
1901 SWIGRUNTIME PySwigObject 
* 
1902 SWIG_Python_GetSwigThis(PyObject 
*pyobj
)  
1904   if (PySwigObject_Check(pyobj
)) { 
1905     return (PySwigObject 
*) pyobj
; 
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) 
1909     if (PyInstance_Check(pyobj
)) { 
1910       obj 
= _PyInstance_Lookup(pyobj
, SWIG_This());       
1912       PyObject 
**dictptr 
= _PyObject_GetDictPtr(pyobj
); 
1913       if (dictptr 
!= NULL
) { 
1914         PyObject 
*dict 
= *dictptr
; 
1915         obj 
= dict 
? PyDict_GetItem(dict
, SWIG_This()) : 0; 
1917 #ifdef PyWeakref_CheckProxy 
1918         if (PyWeakref_CheckProxy(pyobj
)) { 
1919           PyObject 
*wobj 
= PyWeakref_GET_OBJECT(pyobj
); 
1920           return wobj 
? SWIG_Python_GetSwigThis(wobj
) : 0; 
1923         obj 
= PyObject_GetAttr(pyobj
,SWIG_This()); 
1927           if (PyErr_Occurred()) PyErr_Clear(); 
1933     obj 
= PyObject_GetAttr(pyobj
,SWIG_This()); 
1937       if (PyErr_Occurred()) PyErr_Clear(); 
1941     if (obj 
&& !PySwigObject_Check(obj
)) { 
1942       /* a PyObject is called 'this', try to get the 'real this' 
1943          PySwigObject from it */  
1944       return SWIG_Python_GetSwigThis(obj
); 
1946     return (PySwigObject 
*)obj
; 
1950 /* Acquire a pointer value */ 
1953 SWIG_Python_AcquirePtr(PyObject 
*obj
, int own
) { 
1955     PySwigObject 
*sobj 
= SWIG_Python_GetSwigThis(obj
); 
1957       int oldown 
= sobj
->own
; 
1965 /* Convert a pointer value */ 
1968 SWIG_Python_ConvertPtrAndOwn(PyObject 
*obj
, void **ptr
, swig_type_info 
*ty
, int flags
, int *own
) { 
1969   if (!obj
) return SWIG_ERROR
; 
1970   if (obj 
== Py_None
) { 
1974     PySwigObject 
*sobj 
= SWIG_Python_GetSwigThis(obj
); 
1976       void *vptr 
= sobj
->ptr
; 
1978         swig_type_info 
*to 
= sobj
->ty
; 
1980           /* no type cast needed */ 
1981           if (ptr
) *ptr 
= vptr
; 
1984           swig_cast_info 
*tc 
= SWIG_TypeCheck(to
->name
,ty
); 
1986             sobj 
= (PySwigObject 
*)sobj
->next
; 
1988             if (ptr
) *ptr 
= SWIG_TypeCast(tc
,vptr
); 
1993         if (ptr
) *ptr 
= vptr
; 
1998       if (own
) *own 
= sobj
->own
; 
1999       if (flags 
& SWIG_POINTER_DISOWN
) { 
2004       int res 
= SWIG_ERROR
; 
2005       if (flags 
& SWIG_POINTER_IMPLICIT_CONV
) { 
2006         PySwigClientData 
*data 
= ty 
? (PySwigClientData 
*) ty
->clientdata 
: 0; 
2007         if (data 
&& !data
->implicitconv
) { 
2008           PyObject 
*klass 
= data
->klass
; 
2011             data
->implicitconv 
= 1; /* avoid recursion and call 'explicit' constructors*/ 
2012             impconv 
= SWIG_Python_CallFunctor(klass
, obj
); 
2013             data
->implicitconv 
= 0; 
2014             if (PyErr_Occurred()) { 
2019               PySwigObject 
*iobj 
= SWIG_Python_GetSwigThis(impconv
); 
2022                 res 
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0); 
2023                 if (SWIG_IsOK(res
)) { 
2026                     /* transfer the ownership to 'ptr' */ 
2028                     res 
= SWIG_AddCast(res
); 
2029                     res 
= SWIG_AddNewMask(res
); 
2031                     res 
= SWIG_AddCast(res
);                 
2045 /* Convert a function ptr value */ 
2048 SWIG_Python_ConvertFunctionPtr(PyObject 
*obj
, void **ptr
, swig_type_info 
*ty
) { 
2049   if (!PyCFunction_Check(obj
)) { 
2050     return SWIG_ConvertPtr(obj
, ptr
, ty
, 0); 
2054     /* here we get the method pointer for callbacks */ 
2055     const char *doc 
= (((PyCFunctionObject 
*)obj
) -> m_ml 
-> ml_doc
); 
2056     const char *desc 
= doc 
? strstr(doc
, "swig_ptr: ") : 0; 
2058       desc 
= ty 
? SWIG_UnpackVoidPtr(desc 
+ 10, &vptr
, ty
->name
) : 0; 
2059       if (!desc
) return SWIG_ERROR
; 
2062       swig_cast_info 
*tc 
= SWIG_TypeCheck(desc
,ty
); 
2063       if (!tc
) return SWIG_ERROR
; 
2064       *ptr 
= SWIG_TypeCast(tc
,vptr
); 
2072 /* Convert a packed value value */ 
2075 SWIG_Python_ConvertPacked(PyObject 
*obj
, void *ptr
, size_t sz
, swig_type_info 
*ty
) { 
2076   swig_type_info 
*to 
= PySwigPacked_UnpackData(obj
, ptr
, sz
); 
2077   if (!to
) return SWIG_ERROR
; 
2080       /* check type cast? */ 
2081       swig_cast_info 
*tc 
= SWIG_TypeCheck(to
->name
,ty
); 
2082       if (!tc
) return SWIG_ERROR
; 
2088 /* ----------------------------------------------------------------------------- 
2089  * Create a new pointer object 
2090  * ----------------------------------------------------------------------------- */ 
2093   Create a new instance object, whitout calling __init__, and set the 
2097 SWIGRUNTIME PyObject
*  
2098 SWIG_Python_NewShadowInstance(PySwigClientData 
*data
, PyObject 
*swig_this
) 
2100 #if (PY_VERSION_HEX >= 0x02020000) 
2102   PyObject 
*newraw 
= data
->newraw
; 
2104     inst 
= PyObject_Call(newraw
, data
->newargs
, NULL
); 
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) 
2107       PyObject 
**dictptr 
= _PyObject_GetDictPtr(inst
); 
2108       if (dictptr 
!= NULL
) { 
2109         PyObject 
*dict 
= *dictptr
; 
2111           dict 
= PyDict_New(); 
2113           PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2117       PyObject 
*key 
= SWIG_This(); 
2118       PyObject_SetAttr(inst
, key
, swig_this
); 
2122     PyObject 
*dict 
= PyDict_New(); 
2123     PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2124     inst 
= PyInstance_NewRaw(data
->newargs
, dict
); 
2129 #if (PY_VERSION_HEX >= 0x02010000) 
2131   PyObject 
*dict 
= PyDict_New(); 
2132   PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2133   inst 
= PyInstance_NewRaw(data
->newargs
, dict
); 
2135   return (PyObject 
*) inst
; 
2137   PyInstanceObject 
*inst 
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
); 
2141   inst
->in_class 
= (PyClassObject 
*)data
->newargs
; 
2142   Py_INCREF(inst
->in_class
); 
2143   inst
->in_dict 
= PyDict_New(); 
2144   if (inst
->in_dict 
== NULL
) { 
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS 
2149   inst
->in_weakreflist 
= NULL
; 
2151 #ifdef Py_TPFLAGS_GC 
2152   PyObject_GC_Init(inst
); 
2154   PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
); 
2155   return (PyObject 
*) inst
; 
2161 SWIG_Python_SetSwigThis(PyObject 
*inst
, PyObject 
*swig_this
) 
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) 
2165  PyObject 
**dictptr 
= _PyObject_GetDictPtr(inst
); 
2166  if (dictptr 
!= NULL
) { 
2169      dict 
= PyDict_New(); 
2172    PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2176  dict 
= PyObject_GetAttrString(inst
, "__dict__"); 
2177  PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2182 SWIGINTERN PyObject 
* 
2183 SWIG_Python_InitShadowInstance(PyObject 
*args
) { 
2185   if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) { 
2188     PySwigObject 
*sthis 
= SWIG_Python_GetSwigThis(obj
[0]); 
2190       PySwigObject_append((PyObject
*) sthis
, obj
[1]); 
2192       SWIG_Python_SetSwigThis(obj
[0], obj
[1]); 
2194     return SWIG_Py_Void(); 
2198 /* Create a new pointer object */ 
2200 SWIGRUNTIME PyObject 
* 
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info 
*type
, int flags
) { 
2203     return SWIG_Py_Void(); 
2205     int own 
= (flags 
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN 
: 0; 
2206     PyObject 
*robj 
= PySwigObject_New(ptr
, type
, own
); 
2207     PySwigClientData 
*clientdata 
= type 
? (PySwigClientData 
*)(type
->clientdata
) : 0; 
2208     if (clientdata 
&& !(flags 
& SWIG_POINTER_NOSHADOW
)) { 
2209       PyObject 
*inst 
= SWIG_Python_NewShadowInstance(clientdata
, robj
); 
2219 /* Create a new packed object */ 
2221 SWIGRUNTIMEINLINE PyObject 
* 
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info 
*type
) { 
2223   return ptr 
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void(); 
2226 /* -----------------------------------------------------------------------------* 
2228  * -----------------------------------------------------------------------------*/ 
2230 #ifdef SWIG_LINK_RUNTIME 
2231 void *SWIG_ReturnGlobalTypeList(void *); 
2234 SWIGRUNTIME swig_module_info 
* 
2235 SWIG_Python_GetModule(void) { 
2236   static void *type_pointer 
= (void *)0; 
2237   /* first check if module already created */ 
2238   if (!type_pointer
) { 
2239 #ifdef SWIG_LINK_RUNTIME 
2240     type_pointer 
= SWIG_ReturnGlobalTypeList((void *)0); 
2242     type_pointer 
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
2243                                     (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
); 
2244     if (PyErr_Occurred()) { 
2246       type_pointer 
= (void *)0; 
2250   return (swig_module_info 
*) type_pointer
; 
2253 #if PY_MAJOR_VERSION < 2 
2254 /* PyModule_AddObject function was introduced in Python 2.0.  The following function 
2255    is copied out of Python/modsupport.c in python version 2.3.4 */ 
2257 PyModule_AddObject(PyObject 
*m
, char *name
, PyObject 
*o
) 
2260   if (!PyModule_Check(m
)) { 
2261     PyErr_SetString(PyExc_TypeError
, 
2262                     "PyModule_AddObject() needs module as first arg"); 
2266     PyErr_SetString(PyExc_TypeError
, 
2267                     "PyModule_AddObject() needs non-NULL value"); 
2271   dict 
= PyModule_GetDict(m
); 
2273     /* Internal error -- modules must have a dict! */ 
2274     PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__", 
2275                  PyModule_GetName(m
)); 
2278   if (PyDict_SetItemString(dict
, name
, o
)) 
2286 SWIG_Python_DestroyModule(void *vptr
) 
2288   swig_module_info 
*swig_module 
= (swig_module_info 
*) vptr
; 
2289   swig_type_info 
**types 
= swig_module
->types
; 
2291   for (i 
=0; i 
< swig_module
->size
; ++i
) { 
2292     swig_type_info 
*ty 
= types
[i
]; 
2294       PySwigClientData 
*data 
= (PySwigClientData 
*) ty
->clientdata
; 
2295       if (data
) PySwigClientData_Del(data
); 
2298   Py_DECREF(SWIG_This()); 
2302 SWIG_Python_SetModule(swig_module_info 
*swig_module
) { 
2303   static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */ 
2305   PyObject 
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
2306                                    swig_empty_runtime_method_table
); 
2307   PyObject 
*pointer 
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
); 
2308   if (pointer 
&& module) { 
2309     PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
); 
2311     Py_XDECREF(pointer
); 
2315 /* The python cached type query */ 
2316 SWIGRUNTIME PyObject 
* 
2317 SWIG_Python_TypeCache() { 
2318   static PyObject 
*SWIG_STATIC_POINTER(cache
) = PyDict_New(); 
2322 SWIGRUNTIME swig_type_info 
* 
2323 SWIG_Python_TypeQuery(const char *type
) 
2325   PyObject 
*cache 
= SWIG_Python_TypeCache(); 
2326   PyObject 
*key 
= PyString_FromString(type
);  
2327   PyObject 
*obj 
= PyDict_GetItem(cache
, key
); 
2328   swig_type_info 
*descriptor
; 
2330     descriptor 
= (swig_type_info 
*) PyCObject_AsVoidPtr(obj
); 
2332     swig_module_info 
*swig_module 
= SWIG_Python_GetModule(); 
2333     descriptor 
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
); 
2335       obj 
= PyCObject_FromVoidPtr(descriptor
, NULL
); 
2336       PyDict_SetItem(cache
, key
, obj
); 
2345    For backward compatibility only 
2347 #define SWIG_POINTER_EXCEPTION  0 
2348 #define SWIG_arg_fail(arg)      SWIG_Python_ArgFail(arg) 
2349 #define SWIG_MustGetPtr(p, type, argnum, flags)  SWIG_Python_MustGetPtr(p, type, argnum, flags) 
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
) 
2354   if (PyErr_Occurred()) { 
2356     PyObject 
*value 
= 0; 
2357     PyObject 
*traceback 
= 0; 
2358     PyErr_Fetch(&type
, &value
, &traceback
); 
2360       PyObject 
*old_str 
= PyObject_Str(value
); 
2364         PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
)); 
2366         PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
); 
2377 SWIG_Python_ArgFail(int argnum
) 
2379   if (PyErr_Occurred()) { 
2380     /* add information about failing argument */ 
2382     PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
); 
2383     return SWIG_Python_AddErrMesg(mesg
, 1); 
2389 SWIGRUNTIMEINLINE 
const char * 
2390 PySwigObject_GetDesc(PyObject 
*self
) 
2392   PySwigObject 
*v 
= (PySwigObject 
*)self
; 
2393   swig_type_info 
*ty 
= v 
? v
->ty 
: 0; 
2394   return ty 
? ty
->str 
: (char*)""; 
2398 SWIG_Python_TypeError(const char *type
, PyObject 
*obj
) 
2401 #if defined(SWIG_COBJECT_TYPES) 
2402     if (obj 
&& PySwigObject_Check(obj
)) { 
2403       const char *otype 
= (const char *) PySwigObject_GetDesc(obj
); 
2405         PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received", 
2412       const char *otype 
= (obj 
? obj
->ob_type
->tp_name 
: 0);  
2414         PyObject 
*str 
= PyObject_Str(obj
); 
2415         const char *cstr 
= str 
? PyString_AsString(str
) : 0; 
2417           PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received", 
2420           PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received", 
2427     PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
); 
2429     PyErr_Format(PyExc_TypeError
, "unexpected type is received"); 
2434 /* Convert a pointer value, signal an exception on a type mismatch */ 
2436 SWIG_Python_MustGetPtr(PyObject 
*obj
, swig_type_info 
*ty
, int argnum
, int flags
) { 
2438   if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) { 
2440     if (flags 
& SWIG_POINTER_EXCEPTION
) { 
2441       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
2442       SWIG_Python_ArgFail(argnum
); 
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)  
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else  
2464 /* -------- TYPES TABLE (BEGIN) -------- */ 
2466 #define SWIGTYPE_p_char swig_types[0] 
2467 #define SWIGTYPE_p_double swig_types[1] 
2468 #define SWIGTYPE_p_form_ops_t swig_types[2] 
2469 #define SWIGTYPE_p_int swig_types[3] 
2470 #define SWIGTYPE_p_p_wxAuiFloatingFrame swig_types[4] 
2471 #define SWIGTYPE_p_p_wxAuiMDIChildFrame swig_types[5] 
2472 #define SWIGTYPE_p_p_wxAuiMDIClientWindow swig_types[6] 
2473 #define SWIGTYPE_p_p_wxAuiMDIParentFrame swig_types[7] 
2474 #define SWIGTYPE_p_p_wxAuiNotebook swig_types[8] 
2475 #define SWIGTYPE_p_p_wxAuiTabContainerButton swig_types[9] 
2476 #define SWIGTYPE_p_p_wxAuiTabCtrl swig_types[10] 
2477 #define SWIGTYPE_p_p_wxColourDialog swig_types[11] 
2478 #define SWIGTYPE_p_p_wxControl swig_types[12] 
2479 #define SWIGTYPE_p_p_wxControlWithItems swig_types[13] 
2480 #define SWIGTYPE_p_p_wxDialog swig_types[14] 
2481 #define SWIGTYPE_p_p_wxDirDialog swig_types[15] 
2482 #define SWIGTYPE_p_p_wxFileDialog swig_types[16] 
2483 #define SWIGTYPE_p_p_wxFindReplaceDialog swig_types[17] 
2484 #define SWIGTYPE_p_p_wxFontDialog swig_types[18] 
2485 #define SWIGTYPE_p_p_wxFrame swig_types[19] 
2486 #define SWIGTYPE_p_p_wxMDIChildFrame swig_types[20] 
2487 #define SWIGTYPE_p_p_wxMDIClientWindow swig_types[21] 
2488 #define SWIGTYPE_p_p_wxMDIParentFrame swig_types[22] 
2489 #define SWIGTYPE_p_p_wxMenuBar swig_types[23] 
2490 #define SWIGTYPE_p_p_wxMessageDialog swig_types[24] 
2491 #define SWIGTYPE_p_p_wxMiniFrame swig_types[25] 
2492 #define SWIGTYPE_p_p_wxMultiChoiceDialog swig_types[26] 
2493 #define SWIGTYPE_p_p_wxNumberEntryDialog swig_types[27] 
2494 #define SWIGTYPE_p_p_wxPanel swig_types[28] 
2495 #define SWIGTYPE_p_p_wxPasswordEntryDialog swig_types[29] 
2496 #define SWIGTYPE_p_p_wxPopupWindow swig_types[30] 
2497 #define SWIGTYPE_p_p_wxPreviewCanvas swig_types[31] 
2498 #define SWIGTYPE_p_p_wxPreviewControlBar swig_types[32] 
2499 #define SWIGTYPE_p_p_wxPreviewFrame swig_types[33] 
2500 #define SWIGTYPE_p_p_wxProgressDialog swig_types[34] 
2501 #define SWIGTYPE_p_p_wxPyHScrolledWindow swig_types[35] 
2502 #define SWIGTYPE_p_p_wxPyHVScrolledWindow swig_types[36] 
2503 #define SWIGTYPE_p_p_wxPyHtmlListBox swig_types[37] 
2504 #define SWIGTYPE_p_p_wxPyPanel swig_types[38] 
2505 #define SWIGTYPE_p_p_wxPyPopupTransientWindow swig_types[39] 
2506 #define SWIGTYPE_p_p_wxPyPreviewControlBar swig_types[40] 
2507 #define SWIGTYPE_p_p_wxPyPreviewFrame swig_types[41] 
2508 #define SWIGTYPE_p_p_wxPyScrolledWindow swig_types[42] 
2509 #define SWIGTYPE_p_p_wxPyVListBox swig_types[43] 
2510 #define SWIGTYPE_p_p_wxPyVScrolledWindow swig_types[44] 
2511 #define SWIGTYPE_p_p_wxPyWindow swig_types[45] 
2512 #define SWIGTYPE_p_p_wxSashLayoutWindow swig_types[46] 
2513 #define SWIGTYPE_p_p_wxSashWindow swig_types[47] 
2514 #define SWIGTYPE_p_p_wxScrolledWindow swig_types[48] 
2515 #define SWIGTYPE_p_p_wxSimpleHtmlListBox swig_types[49] 
2516 #define SWIGTYPE_p_p_wxSingleChoiceDialog swig_types[50] 
2517 #define SWIGTYPE_p_p_wxSplashScreen swig_types[51] 
2518 #define SWIGTYPE_p_p_wxSplashScreenWindow swig_types[52] 
2519 #define SWIGTYPE_p_p_wxSplitterWindow swig_types[53] 
2520 #define SWIGTYPE_p_p_wxStatusBar swig_types[54] 
2521 #define SWIGTYPE_p_p_wxTextEntryDialog swig_types[55] 
2522 #define SWIGTYPE_p_p_wxTipWindow swig_types[56] 
2523 #define SWIGTYPE_p_p_wxTopLevelWindow swig_types[57] 
2524 #define SWIGTYPE_p_p_wxWindow swig_types[58] 
2525 #define SWIGTYPE_p_unsigned_char swig_types[59] 
2526 #define SWIGTYPE_p_unsigned_int swig_types[60] 
2527 #define SWIGTYPE_p_unsigned_long swig_types[61] 
2528 #define SWIGTYPE_p_wxANIHandler swig_types[62] 
2529 #define SWIGTYPE_p_wxAcceleratorTable swig_types[63] 
2530 #define SWIGTYPE_p_wxActivateEvent swig_types[64] 
2531 #define SWIGTYPE_p_wxAuiDefaultDockArt swig_types[65] 
2532 #define SWIGTYPE_p_wxAuiDefaultTabArt swig_types[66] 
2533 #define SWIGTYPE_p_wxAuiDockArt swig_types[67] 
2534 #define SWIGTYPE_p_wxAuiDockInfo swig_types[68] 
2535 #define SWIGTYPE_p_wxAuiDockUIPart swig_types[69] 
2536 #define SWIGTYPE_p_wxAuiFloatingFrame swig_types[70] 
2537 #define SWIGTYPE_p_wxAuiMDIChildFrame swig_types[71] 
2538 #define SWIGTYPE_p_wxAuiMDIClientWindow swig_types[72] 
2539 #define SWIGTYPE_p_wxAuiMDIParentFrame swig_types[73] 
2540 #define SWIGTYPE_p_wxAuiManager swig_types[74] 
2541 #define SWIGTYPE_p_wxAuiManagerEvent swig_types[75] 
2542 #define SWIGTYPE_p_wxAuiNotebook swig_types[76] 
2543 #define SWIGTYPE_p_wxAuiNotebookEvent swig_types[77] 
2544 #define SWIGTYPE_p_wxAuiNotebookPage swig_types[78] 
2545 #define SWIGTYPE_p_wxAuiNotebookPageArray swig_types[79] 
2546 #define SWIGTYPE_p_wxAuiPaneButton swig_types[80] 
2547 #define SWIGTYPE_p_wxAuiPaneButtonArray swig_types[81] 
2548 #define SWIGTYPE_p_wxAuiPaneInfo swig_types[82] 
2549 #define SWIGTYPE_p_wxAuiPaneInfoPtrArray swig_types[83] 
2550 #define SWIGTYPE_p_wxAuiSimpleTabArt swig_types[84] 
2551 #define SWIGTYPE_p_wxAuiTabArt swig_types[85] 
2552 #define SWIGTYPE_p_wxAuiTabContainer swig_types[86] 
2553 #define SWIGTYPE_p_wxAuiTabContainerButton swig_types[87] 
2554 #define SWIGTYPE_p_wxAuiTabCtrl swig_types[88] 
2555 #define SWIGTYPE_p_wxBMPHandler swig_types[89] 
2556 #define SWIGTYPE_p_wxBitmap swig_types[90] 
2557 #define SWIGTYPE_p_wxBoxSizer swig_types[91] 
2558 #define SWIGTYPE_p_wxCURHandler swig_types[92] 
2559 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[93] 
2560 #define SWIGTYPE_p_wxChildFocusEvent swig_types[94] 
2561 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[95] 
2562 #define SWIGTYPE_p_wxCloseEvent swig_types[96] 
2563 #define SWIGTYPE_p_wxColour swig_types[97] 
2564 #define SWIGTYPE_p_wxColourData swig_types[98] 
2565 #define SWIGTYPE_p_wxColourDialog swig_types[99] 
2566 #define SWIGTYPE_p_wxCommandEvent swig_types[100] 
2567 #define SWIGTYPE_p_wxContextMenuEvent swig_types[101] 
2568 #define SWIGTYPE_p_wxControl swig_types[102] 
2569 #define SWIGTYPE_p_wxControlWithItems swig_types[103] 
2570 #define SWIGTYPE_p_wxDC swig_types[104] 
2571 #define SWIGTYPE_p_wxDateEvent swig_types[105] 
2572 #define SWIGTYPE_p_wxDialog swig_types[106] 
2573 #define SWIGTYPE_p_wxDirDialog swig_types[107] 
2574 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[108] 
2575 #define SWIGTYPE_p_wxDropFilesEvent swig_types[109] 
2576 #define SWIGTYPE_p_wxDuplexMode swig_types[110] 
2577 #define SWIGTYPE_p_wxEraseEvent swig_types[111] 
2578 #define SWIGTYPE_p_wxEvent swig_types[112] 
2579 #define SWIGTYPE_p_wxEventBlocker swig_types[113] 
2580 #define SWIGTYPE_p_wxEvtHandler swig_types[114] 
2581 #define SWIGTYPE_p_wxFSFile swig_types[115] 
2582 #define SWIGTYPE_p_wxFileDialog swig_types[116] 
2583 #define SWIGTYPE_p_wxFileSystem swig_types[117] 
2584 #define SWIGTYPE_p_wxFindDialogEvent swig_types[118] 
2585 #define SWIGTYPE_p_wxFindReplaceData swig_types[119] 
2586 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[120] 
2587 #define SWIGTYPE_p_wxFlexGridSizer swig_types[121] 
2588 #define SWIGTYPE_p_wxFocusEvent swig_types[122] 
2589 #define SWIGTYPE_p_wxFont swig_types[123] 
2590 #define SWIGTYPE_p_wxFontData swig_types[124] 
2591 #define SWIGTYPE_p_wxFontDialog swig_types[125] 
2592 #define SWIGTYPE_p_wxFrame swig_types[126] 
2593 #define SWIGTYPE_p_wxGBSizerItem swig_types[127] 
2594 #define SWIGTYPE_p_wxGIFHandler swig_types[128] 
2595 #define SWIGTYPE_p_wxGridBagSizer swig_types[129] 
2596 #define SWIGTYPE_p_wxGridSizer swig_types[130] 
2597 #define SWIGTYPE_p_wxICOHandler swig_types[131] 
2598 #define SWIGTYPE_p_wxIcon swig_types[132] 
2599 #define SWIGTYPE_p_wxIconBundle swig_types[133] 
2600 #define SWIGTYPE_p_wxIconizeEvent swig_types[134] 
2601 #define SWIGTYPE_p_wxIdleEvent swig_types[135] 
2602 #define SWIGTYPE_p_wxImage swig_types[136] 
2603 #define SWIGTYPE_p_wxImageHandler swig_types[137] 
2604 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[138] 
2605 #define SWIGTYPE_p_wxInitDialogEvent swig_types[139] 
2606 #define SWIGTYPE_p_wxJPEGHandler swig_types[140] 
2607 #define SWIGTYPE_p_wxKeyEvent swig_types[141] 
2608 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[142] 
2609 #define SWIGTYPE_p_wxLayoutConstraints swig_types[143] 
2610 #define SWIGTYPE_p_wxMDIChildFrame swig_types[144] 
2611 #define SWIGTYPE_p_wxMDIClientWindow swig_types[145] 
2612 #define SWIGTYPE_p_wxMDIParentFrame swig_types[146] 
2613 #define SWIGTYPE_p_wxMaximizeEvent swig_types[147] 
2614 #define SWIGTYPE_p_wxMenu swig_types[148] 
2615 #define SWIGTYPE_p_wxMenuBar swig_types[149] 
2616 #define SWIGTYPE_p_wxMenuEvent swig_types[150] 
2617 #define SWIGTYPE_p_wxMenuItem swig_types[151] 
2618 #define SWIGTYPE_p_wxMessageDialog swig_types[152] 
2619 #define SWIGTYPE_p_wxMiniFrame swig_types[153] 
2620 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[154] 
2621 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[155] 
2622 #define SWIGTYPE_p_wxMouseEvent swig_types[156] 
2623 #define SWIGTYPE_p_wxMoveEvent swig_types[157] 
2624 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[158] 
2625 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[159] 
2626 #define SWIGTYPE_p_wxNcPaintEvent swig_types[160] 
2627 #define SWIGTYPE_p_wxNotifyEvent swig_types[161] 
2628 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[162] 
2629 #define SWIGTYPE_p_wxObject swig_types[163] 
2630 #define SWIGTYPE_p_wxPCXHandler swig_types[164] 
2631 #define SWIGTYPE_p_wxPNGHandler swig_types[165] 
2632 #define SWIGTYPE_p_wxPNMHandler swig_types[166] 
2633 #define SWIGTYPE_p_wxPageSetupDialog swig_types[167] 
2634 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[168] 
2635 #define SWIGTYPE_p_wxPaintEvent swig_types[169] 
2636 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[170] 
2637 #define SWIGTYPE_p_wxPanel swig_types[171] 
2638 #define SWIGTYPE_p_wxPaperSize swig_types[172] 
2639 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[173] 
2640 #define SWIGTYPE_p_wxPoint swig_types[174] 
2641 #define SWIGTYPE_p_wxPopupWindow swig_types[175] 
2642 #define SWIGTYPE_p_wxPreviewCanvas swig_types[176] 
2643 #define SWIGTYPE_p_wxPreviewControlBar swig_types[177] 
2644 #define SWIGTYPE_p_wxPreviewFrame swig_types[178] 
2645 #define SWIGTYPE_p_wxPrintData swig_types[179] 
2646 #define SWIGTYPE_p_wxPrintDialog swig_types[180] 
2647 #define SWIGTYPE_p_wxPrintDialogData swig_types[181] 
2648 #define SWIGTYPE_p_wxPrintPreview swig_types[182] 
2649 #define SWIGTYPE_p_wxPrinter swig_types[183] 
2650 #define SWIGTYPE_p_wxProgressDialog swig_types[184] 
2651 #define SWIGTYPE_p_wxPyApp swig_types[185] 
2652 #define SWIGTYPE_p_wxPyAuiDockArt swig_types[186] 
2653 #define SWIGTYPE_p_wxPyAuiTabArt swig_types[187] 
2654 #define SWIGTYPE_p_wxPyCommandEvent swig_types[188] 
2655 #define SWIGTYPE_p_wxPyEvent swig_types[189] 
2656 #define SWIGTYPE_p_wxPyHScrolledWindow swig_types[190] 
2657 #define SWIGTYPE_p_wxPyHVScrolledWindow swig_types[191] 
2658 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[192] 
2659 #define SWIGTYPE_p_wxPyImageHandler swig_types[193] 
2660 #define SWIGTYPE_p_wxPyPanel swig_types[194] 
2661 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[195] 
2662 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[196] 
2663 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[197] 
2664 #define SWIGTYPE_p_wxPyPrintPreview swig_types[198] 
2665 #define SWIGTYPE_p_wxPyPrintout swig_types[199] 
2666 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[200] 
2667 #define SWIGTYPE_p_wxPySizer swig_types[201] 
2668 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[202] 
2669 #define SWIGTYPE_p_wxPyVListBox swig_types[203] 
2670 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[204] 
2671 #define SWIGTYPE_p_wxPyValidator swig_types[205] 
2672 #define SWIGTYPE_p_wxPyWindow swig_types[206] 
2673 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[207] 
2674 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[208] 
2675 #define SWIGTYPE_p_wxRect swig_types[209] 
2676 #define SWIGTYPE_p_wxSashEvent swig_types[210] 
2677 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[211] 
2678 #define SWIGTYPE_p_wxSashWindow swig_types[212] 
2679 #define SWIGTYPE_p_wxScrollEvent swig_types[213] 
2680 #define SWIGTYPE_p_wxScrollWinEvent swig_types[214] 
2681 #define SWIGTYPE_p_wxScrolledWindow swig_types[215] 
2682 #define SWIGTYPE_p_wxSetCursorEvent swig_types[216] 
2683 #define SWIGTYPE_p_wxShowEvent swig_types[217] 
2684 #define SWIGTYPE_p_wxSimpleHtmlListBox swig_types[218] 
2685 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[219] 
2686 #define SWIGTYPE_p_wxSize swig_types[220] 
2687 #define SWIGTYPE_p_wxSizeEvent swig_types[221] 
2688 #define SWIGTYPE_p_wxSizer swig_types[222] 
2689 #define SWIGTYPE_p_wxSizerItem swig_types[223] 
2690 #define SWIGTYPE_p_wxSplashScreen swig_types[224] 
2691 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[225] 
2692 #define SWIGTYPE_p_wxSplitterEvent swig_types[226] 
2693 #define SWIGTYPE_p_wxSplitterWindow swig_types[227] 
2694 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[228] 
2695 #define SWIGTYPE_p_wxStatusBar swig_types[229] 
2696 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[230] 
2697 #define SWIGTYPE_p_wxString swig_types[231] 
2698 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[232] 
2699 #define SWIGTYPE_p_wxTGAHandler swig_types[233] 
2700 #define SWIGTYPE_p_wxTIFFHandler swig_types[234] 
2701 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[235] 
2702 #define SWIGTYPE_p_wxTextEntryDialog swig_types[236] 
2703 #define SWIGTYPE_p_wxTipWindow swig_types[237] 
2704 #define SWIGTYPE_p_wxTopLevelWindow swig_types[238] 
2705 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[239] 
2706 #define SWIGTYPE_p_wxValidator swig_types[240] 
2707 #define SWIGTYPE_p_wxWindow swig_types[241] 
2708 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[242] 
2709 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[243] 
2710 #define SWIGTYPE_p_wxXPMHandler swig_types[244] 
2711 static swig_type_info 
*swig_types
[246]; 
2712 static swig_module_info swig_module 
= {swig_types
, 245, 0, 0, 0, 0}; 
2713 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) 
2714 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) 
2716 /* -------- TYPES TABLE (END) -------- */ 
2718 #if (PY_VERSION_HEX <= 0x02000000) 
2719 # if !defined(SWIG_PYTHON_CLASSIC) 
2720 #  error "This python version requires to use swig with the '-classic' option" 
2723 #if (PY_VERSION_HEX <= 0x02020000) 
2724 # error "This python version requires to use swig with the '-nomodern' option" 
2726 #if (PY_VERSION_HEX <= 0x02020000) 
2727 # error "This python version requires to use swig with the '-nomodernargs' option" 
2730 # error "This python version requires to use swig with the '-nofastunpack' option" 
2733 /*----------------------------------------------- 
2735   ------------------------------------------------*/ 
2736 #define SWIG_init    init_aui 
2738 #define SWIG_name    "_aui" 
2740 #define SWIGVERSION 0x010329  
2743 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))  
2744 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))  
2747 #include <stdexcept> 
2751   class PyObject_ptr 
{ 
2756     PyObject_ptr() :_obj(0) 
2760     PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
) 
2765     PyObject_ptr(PyObject 
*obj
, bool initial_ref 
= true) :_obj(obj
) 
2767       if (initial_ref
) Py_XINCREF(_obj
); 
2770     PyObject_ptr 
& operator=(const PyObject_ptr
& item
)  
2772       Py_XINCREF(item
._obj
); 
2783     operator PyObject 
*() const 
2788     PyObject 
*operator->() const 
2797   struct PyObject_var 
: PyObject_ptr 
{ 
2798     PyObject_var(PyObject
* obj 
= 0) : PyObject_ptr(obj
, false) { } 
2800     PyObject_var 
& operator = (PyObject
* obj
) 
2810 #include "wx/wxPython/wxPython.h" 
2811 #include "wx/wxPython/pyclasses.h" 
2812 #include <wx/aui/aui.h> 
2815   #define SWIG_From_long   PyInt_FromLong  
2818 SWIGINTERNINLINE PyObject 
* 
2819 SWIG_From_int  (int value
) 
2821   return SWIG_From_long  (value
); 
2827 # define LLONG_MIN      LONG_LONG_MIN 
2830 # define LLONG_MAX      LONG_LONG_MAX 
2833 # define ULLONG_MAX     ULONG_LONG_MAX 
2838 SWIG_AsVal_long (PyObject
* obj
, long* val
) 
2840     if (PyNumber_Check(obj
)) { 
2841         if (val
) *val 
= PyInt_AsLong(obj
); 
2844     return SWIG_TypeError
; 
2849 SWIG_AsVal_int (PyObject 
* obj
, int *val
) 
2852   int res 
= SWIG_AsVal_long (obj
, &v
); 
2853   if (SWIG_IsOK(res
)) { 
2854     if ((v 
< INT_MIN 
|| v 
> INT_MAX
)) { 
2855       return SWIG_OverflowError
; 
2857       if (val
) *val 
= static_cast< int >(v
); 
2865 SWIG_AsVal_bool (PyObject 
*obj
, bool *val
) 
2867   if (obj 
== Py_True
) { 
2868     if (val
) *val 
= true; 
2870   } else if (obj 
== Py_False
) { 
2871     if (val
) *val 
= false; 
2875     int res 
= SWIG_AddCast(SWIG_AsVal_long (obj
, val 
? &v 
: 0)); 
2876     if (SWIG_IsOK(res
) && val
) *val 
= v 
? true : false; 
2883 SWIG_AsVal_double (PyObject 
*obj
, double* val
) 
2885     if (PyNumber_Check(obj
)) { 
2886         if (val
) *val 
= PyFloat_AsDouble(obj
); 
2889     return SWIG_TypeError
; 
2892 SWIGINTERN 
void delete_wxAuiDockInfo(wxAuiDockInfo 
*self
){} 
2893 SWIGINTERN 
void delete_wxAuiDockUIPart(wxAuiDockUIPart 
*self
){} 
2894 SWIGINTERN 
void delete_wxAuiPaneButton(wxAuiPaneButton 
*self
){} 
2897 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
) 
2900     if (SWIG_AsVal_long(obj
, &v
) && v 
< 0) { 
2901         return SWIG_TypeError
; 
2904         *val 
= (unsigned long)v
; 
2909 SWIGINTERNINLINE 
int 
2910 SWIG_AsVal_size_t (PyObject 
* obj
, size_t *val
) 
2913   int res 
= SWIG_AsVal_unsigned_SS_long (obj
, val 
? &v 
: 0); 
2914   if (SWIG_IsOK(res
) && val
) *val 
= static_cast< size_t >(v
); 
2919 SWIGINTERNINLINE PyObject
*  
2920 SWIG_From_unsigned_SS_long  (unsigned long value
) 
2922   return (value 
> LONG_MAX
) ? 
2923     PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));  
2927 SWIGINTERNINLINE PyObject 
* 
2928 SWIG_From_size_t  (size_t value
) 
2930   return SWIG_From_unsigned_SS_long  (static_cast< unsigned long >(value
)); 
2933 SWIGINTERN wxAuiNotebook 
*wxAuiMDIParentFrame__GetNotebook(wxAuiMDIParentFrame 
const *self
){ 
2934         return self
->GetNotebook(); 
2936 SWIGINTERN wxAuiMDIChildFrame 
*wxAuiMDIParentFrame__GetActiveChild(wxAuiMDIParentFrame 
const *self
){ 
2937         return self
->GetActiveChild(); 
2939 SWIGINTERN wxAuiMDIClientWindow 
*wxAuiMDIParentFrame__GetClientWindow(wxAuiMDIParentFrame 
const *self
){ 
2940         return self
->GetClientWindow(); 
2943 // A wxDocArt class that knows how to forward virtuals to Python methods 
2944 class wxPyAuiDockArt 
:  public wxAuiDefaultDockArt
 
2947     wxPyAuiDockArt() : wxAuiDefaultDockArt() {} 
2949     DEC_PYCALLBACK_INT_INT(GetMetric
); 
2950     DEC_PYCALLBACK_VOID_INTINT(SetMetric
); 
2951     DEC_PYCALLBACK__INTFONT(SetFont
); 
2952     DEC_PYCALLBACK_FONT_INT(GetFont
); 
2953     DEC_PYCALLBACK_COLOUR_INT(GetColour
); 
2954     DEC_PYCALLBACK__INTCOLOUR(SetColour
); 
2956     virtual void DrawSash(wxDC
& dc
, 
2962         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
2963         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) { 
2964             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
2965             PyObject
* owin 
= wxPyMake_wxObject(window
, false); 
2966             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
2967             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)", 
2968                                                          odc
, owin
, orientation
, orect
)); 
2973         wxPyEndBlockThreads(blocked
); 
2975             wxAuiDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
); 
2978     virtual void DrawBackground(wxDC
& dc
, 
2984         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
2985         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) { 
2986             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
2987             PyObject
* owin 
= wxPyMake_wxObject(window
, false); 
2988             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
2989             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)", 
2990                                                          odc
, owin
, orientation
, orect
)); 
2995         wxPyEndBlockThreads(blocked
); 
2997             wxAuiDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
); 
3000     virtual void DrawCaption(wxDC
& dc
, 
3002                           const wxString
& text
, 
3004                           wxAuiPaneInfo
& pane
) 
3007         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3008         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) { 
3009             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3010             PyObject
* owin 
= wxPyMake_wxObject(window
, false); 
3011             PyObject
* otext 
= wx2PyString(text
); 
3012             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
3013             PyObject
* opane 
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0); 
3014             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)", 
3015                                                          odc
, owin
, otext
, orect
, opane
)); 
3022         wxPyEndBlockThreads(blocked
); 
3024             wxAuiDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
); 
3027     virtual void DrawGripper(wxDC
& dc
, 
3030                           wxAuiPaneInfo
& pane
) 
3033         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3034         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) { 
3035             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3036             PyObject
* owin 
= wxPyMake_wxObject(window
, false); 
3037             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
3038             PyObject
* opane 
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0); 
3039             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
)); 
3044         wxPyEndBlockThreads(blocked
); 
3046             wxAuiDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
); 
3049     virtual void DrawBorder(wxDC
& dc
, 
3052                           wxAuiPaneInfo
& pane
) 
3055         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3056         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) { 
3057             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3058             PyObject
* owin 
= wxPyMake_wxObject(window
, false); 
3059             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
3060             PyObject
* opane 
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0); 
3061             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
)); 
3067         wxPyEndBlockThreads(blocked
); 
3069             wxAuiDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
); 
3072     virtual void DrawPaneButton(wxDC
& dc
, 
3077                           wxAuiPaneInfo
& pane
) 
3080         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3081         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) { 
3082             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3083             PyObject
* owin 
= wxPyMake_wxObject(window
, false); 
3084             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
3085             PyObject
* opane 
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0); 
3086             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)", 
3087                                                          odc
, owin
, button
, button_state
, 
3094         wxPyEndBlockThreads(blocked
); 
3096             wxAuiDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
); 
3103 IMP_PYCALLBACK_INT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetMetric
); 
3104 IMP_PYCALLBACK_VOID_INTINT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetMetric
); 
3105 IMP_PYCALLBACK__INTFONT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetFont
); 
3106 IMP_PYCALLBACK_FONT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetFont
); 
3107 IMP_PYCALLBACK_COLOUR_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetColour
); 
3108 IMP_PYCALLBACK__INTCOLOUR(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetColour
); 
3112 // A wxTabArt class that knows how to forward virtuals to Python methods 
3113 class wxPyAuiTabArt 
:  public wxAuiDefaultTabArt
 
3116     wxPyAuiTabArt() : wxAuiDefaultTabArt() {} 
3119     virtual void DrawBackground( wxDC
& dc
, 
3121                                  const wxRect
& rect 
) 
3124         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3125         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) { 
3126             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3127             PyObject
* ownd 
= wxPyMake_wxObject(wnd
, false); 
3128             PyObject
* orect 
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0); 
3129             wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, ownd
, orect
)); 
3134         wxPyEndBlockThreads(blocked
); 
3136             wxAuiDefaultTabArt::DrawBackground(dc
, wnd
, rect
); 
3139     virtual void DrawTab( wxDC
& dc
, 
3141                           const wxAuiNotebookPage
& pane
, 
3142                           const wxRect
& in_rect
, 
3143                           int close_button_state
, 
3144                           wxRect
* out_tab_rect
, 
3145                           wxRect
* out_button_rect
, 
3149         const char* errmsg 
= "DrawTab should return a sequence containing (tab_rect, button_rect, x_extent)"; 
3150         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3151         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawTab"))) { 
3152             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3153             PyObject
* ownd 
= wxPyMake_wxObject(wnd
, false); 
3154             PyObject
* opane 
= wxPyConstructObject((void*)&pane
, wxT("wxAuiNotebookPage"), 0); 
3155             PyObject
* orect 
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0); 
3157             ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue( 
3159                                              odc
, ownd
, orect
, opane
, 
3160                                              close_button_state
)); 
3162                 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 3) { 
3163                     PyObject
* o1 
= PySequence_GetItem(ro
, 0); 
3164                     PyObject
* o2 
= PySequence_GetItem(ro
, 1); 
3165                     PyObject
* o3 
= PySequence_GetItem(ro
, 2); 
3166                     if (!wxRect_helper(o1
, &out_tab_rect
))  
3167                         PyErr_SetString(PyExc_TypeError
, errmsg
); 
3168                     else if (!wxRect_helper(o2
, &out_button_rect
))  
3169                         PyErr_SetString(PyExc_TypeError
, errmsg
); 
3170                     else if (!PyInt_Check(o3
))  
3171                         PyErr_SetString(PyExc_TypeError
, errmsg
); 
3173                         *x_extent 
= PyInt_AsLong(o3
); 
3180                     PyErr_SetString(PyExc_TypeError
, errmsg
); 
3190         wxPyEndBlockThreads(blocked
); 
3192             wxAuiDefaultTabArt::DrawTab(dc
, wnd
, pane
, in_rect
, close_button_state
, out_tab_rect
, out_button_rect
, x_extent
); 
3196     virtual void DrawButton( wxDC
& dc
, 
3198                              const wxRect
& in_rect
, 
3205         const char* errmsg 
= "DrawButton should return a wxRect"; 
3206         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3207         if ((found 
= wxPyCBH_findCallback(m_myInst
, "DrawButton"))) { 
3208             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3209             PyObject
* ownd 
= wxPyMake_wxObject(wnd
, false); 
3210             PyObject
* orect 
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0); 
3212             ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOOiiiO)", odc
, ownd
, orect
, 
3213                                                                  bitmap_id
, button_state
, orientation
)); 
3215                 if (!wxRect_helper(ro
, &out_rect
))  
3216                     PyErr_SetString(PyExc_TypeError
, errmsg
); 
3224         wxPyEndBlockThreads(blocked
); 
3226             wxAuiDefaultTabArt::DrawButton(dc
, wnd
, in_rect
, bitmap_id
, button_state
, orientation
, out_rect
); 
3230     virtual wxSize 
GetTabSize( wxDC
& dc
, 
3232                                const wxString
& caption
, 
3233                                const wxBitmap
& bitmap
, 
3235                                int  close_button_state
, 
3239         wxSize rv
, *prv 
= &rv
; 
3240         const char* errmsg 
= "GetTabSize should return a sequence containing (size, x_extent)"; 
3241         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
3242         if ((found 
= wxPyCBH_findCallback(m_myInst
, "GetTabSize"))) { 
3243             PyObject
* odc 
= wxPyMake_wxObject(&dc
, false); 
3244             PyObject
* ownd 
= wxPyMake_wxObject(wnd
, false); 
3245             PyObject
* otext 
= wx2PyString(caption
); 
3246             PyObject
* obmp 
= wxPyMake_wxObject((wxObject
*)&bitmap
, false); 
3248             ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue( 
3249                                              "(OOOOii)", odc
, ownd
, otext
, obmp
, (int)active
, close_button_state
)); 
3251                 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) { 
3252                     PyObject
* o1 
= PySequence_GetItem(ro
, 0); 
3253                     PyObject
* o2 
= PySequence_GetItem(ro
, 1); 
3254                     if (!wxSize_helper(o1
, &prv
))  
3255                         PyErr_SetString(PyExc_TypeError
, errmsg
); 
3256                     else if (!PyInt_Check(o2
))  
3257                         PyErr_SetString(PyExc_TypeError
, errmsg
); 
3259                         *x_extent 
= PyInt_AsLong(o2
); 
3265                     PyErr_SetString(PyExc_TypeError
, errmsg
); 
3275         wxPyEndBlockThreads(blocked
); 
3277             rv 
= wxAuiDefaultTabArt::GetTabSize(dc
, wnd
, caption
, bitmap
, active
, close_button_state
, x_extent
); 
3282 //     virtual int ShowDropDown( 
3284 //                          const wxAuiNotebookPageArray& items, 
3287 //     virtual int GetIndentSize(); 
3289 //     virtual int GetBestTabCtrlSize(wxWindow* wnd, 
3290 //                                    const wxAuiNotebookPageArray& pages,  
3291 //                                    const wxSize& required_bmp_size);       
3292 //     virtual wxAuiTabArt* Clone(); 
3293 //     virtual void SetFlags(unsigned int flags); 
3294 //     virtual void SetSizingInfo(const wxSize& tab_ctrl_size, 
3295 //                                size_t tab_count); 
3296 //     virtual int GetIndentSize(); 
3300     DEC_PYCALLBACK__FONT(SetNormalFont
); 
3301     DEC_PYCALLBACK__FONT(SetSelectedFont
); 
3302     DEC_PYCALLBACK__FONT(SetMeasuringFont
); 
3308 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetNormalFont
); 
3309 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetSelectedFont
); 
3310 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetMeasuringFont
); 
3315 SWIGINTERN 
int AuiNullDockInfo_set(PyObject 
*_val
) { 
3318     int res 
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiDockInfo
,  0  | 0); 
3319     if (!SWIG_IsOK(res
)) { 
3320       SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'"); 
3323       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'"); 
3325       wxAuiDockInfo 
* temp
; 
3326       temp  
= reinterpret_cast< wxAuiDockInfo 
* >(argp
); 
3327       wxAuiNullDockInfo 
= *temp
; 
3328       if (SWIG_IsNewObj(res
)) delete temp
; 
3337 SWIGINTERN PyObject 
*AuiNullDockInfo_get(void) { 
3338   PyObject 
*pyobj 
= 0; 
3340   pyobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullDockInfo
), SWIGTYPE_p_wxAuiDockInfo
,  0 ); 
3345 SWIGINTERN 
int AuiNullPaneInfo_set(PyObject 
*_val
) { 
3348     int res 
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
3349     if (!SWIG_IsOK(res
)) { 
3350       SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'"); 
3353       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'"); 
3355       wxAuiPaneInfo 
* temp
; 
3356       temp  
= reinterpret_cast< wxAuiPaneInfo 
* >(argp
); 
3357       wxAuiNullPaneInfo 
= *temp
; 
3358       if (SWIG_IsNewObj(res
)) delete temp
; 
3367 SWIGINTERN PyObject 
*AuiNullPaneInfo_get(void) { 
3368   PyObject 
*pyobj 
= 0; 
3370   pyobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullPaneInfo
), SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
3375 SWIGINTERN PyObject 
*_wrap_new_AuiPaneInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3376   PyObject 
*resultobj 
= 0; 
3377   wxAuiPaneInfo 
*result 
= 0 ; 
3379   if (!SWIG_Python_UnpackTuple(args
,"new_AuiPaneInfo",0,0,0)) SWIG_fail
; 
3381     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3382     result 
= (wxAuiPaneInfo 
*)new wxAuiPaneInfo(); 
3383     wxPyEndAllowThreads(__tstate
); 
3384     if (PyErr_Occurred()) SWIG_fail
; 
3386   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_NEW 
|  0 ); 
3393 SWIGINTERN PyObject 
*_wrap_delete_AuiPaneInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3394   PyObject 
*resultobj 
= 0; 
3395   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3398   PyObject 
*swig_obj
[1] ; 
3400   if (!args
) SWIG_fail
; 
3402   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN 
|  0 ); 
3403   if (!SWIG_IsOK(res1
)) { 
3404     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneInfo" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
3406   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3408     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3411     wxPyEndAllowThreads(__tstate
); 
3412     if (PyErr_Occurred()) SWIG_fail
; 
3414   resultobj 
= SWIG_Py_Void(); 
3421 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_SafeSet(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3422   PyObject 
*resultobj 
= 0; 
3423   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3424   wxAuiPaneInfo arg2 
; 
3429   PyObject 
* obj0 
= 0 ; 
3430   PyObject 
* obj1 
= 0 ; 
3431   char *  kwnames
[] = { 
3432     (char *) "self",(char *) "source", NULL 
 
3435   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3436   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3437   if (!SWIG_IsOK(res1
)) { 
3438     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
3440   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3442     res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
3443     if (!SWIG_IsOK(res2
)) { 
3444       SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");  
3447       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'"); 
3449       wxAuiPaneInfo 
* temp 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
3451       if (SWIG_IsNewObj(res2
)) delete temp
; 
3455     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3456     (arg1
)->SafeSet(arg2
); 
3457     wxPyEndAllowThreads(__tstate
); 
3458     if (PyErr_Occurred()) SWIG_fail
; 
3460   resultobj 
= SWIG_Py_Void(); 
3467 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsOk(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3468   PyObject 
*resultobj 
= 0; 
3469   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3473   PyObject 
*swig_obj
[1] ; 
3475   if (!args
) SWIG_fail
; 
3477   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3478   if (!SWIG_IsOK(res1
)) { 
3479     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3481   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3483     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3484     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsOk(); 
3485     wxPyEndAllowThreads(__tstate
); 
3486     if (PyErr_Occurred()) SWIG_fail
; 
3489     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3497 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsFixed(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3498   PyObject 
*resultobj 
= 0; 
3499   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3503   PyObject 
*swig_obj
[1] ; 
3505   if (!args
) SWIG_fail
; 
3507   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3508   if (!SWIG_IsOK(res1
)) { 
3509     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3511   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3513     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3514     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsFixed(); 
3515     wxPyEndAllowThreads(__tstate
); 
3516     if (PyErr_Occurred()) SWIG_fail
; 
3519     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3527 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsResizable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3528   PyObject 
*resultobj 
= 0; 
3529   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3533   PyObject 
*swig_obj
[1] ; 
3535   if (!args
) SWIG_fail
; 
3537   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3538   if (!SWIG_IsOK(res1
)) { 
3539     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3541   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3543     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3544     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsResizable(); 
3545     wxPyEndAllowThreads(__tstate
); 
3546     if (PyErr_Occurred()) SWIG_fail
; 
3549     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3557 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsShown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3558   PyObject 
*resultobj 
= 0; 
3559   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3563   PyObject 
*swig_obj
[1] ; 
3565   if (!args
) SWIG_fail
; 
3567   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3568   if (!SWIG_IsOK(res1
)) { 
3569     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsShown" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3571   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3573     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3574     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsShown(); 
3575     wxPyEndAllowThreads(__tstate
); 
3576     if (PyErr_Occurred()) SWIG_fail
; 
3579     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3587 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsFloating(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3588   PyObject 
*resultobj 
= 0; 
3589   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3593   PyObject 
*swig_obj
[1] ; 
3595   if (!args
) SWIG_fail
; 
3597   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3598   if (!SWIG_IsOK(res1
)) { 
3599     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3601   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3603     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3604     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsFloating(); 
3605     wxPyEndAllowThreads(__tstate
); 
3606     if (PyErr_Occurred()) SWIG_fail
; 
3609     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3617 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsDocked(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3618   PyObject 
*resultobj 
= 0; 
3619   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3623   PyObject 
*swig_obj
[1] ; 
3625   if (!args
) SWIG_fail
; 
3627   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3628   if (!SWIG_IsOK(res1
)) { 
3629     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3631   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3633     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3634     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsDocked(); 
3635     wxPyEndAllowThreads(__tstate
); 
3636     if (PyErr_Occurred()) SWIG_fail
; 
3639     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3647 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsToolbar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3648   PyObject 
*resultobj 
= 0; 
3649   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3653   PyObject 
*swig_obj
[1] ; 
3655   if (!args
) SWIG_fail
; 
3657   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3658   if (!SWIG_IsOK(res1
)) { 
3659     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3661   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3663     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3664     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsToolbar(); 
3665     wxPyEndAllowThreads(__tstate
); 
3666     if (PyErr_Occurred()) SWIG_fail
; 
3669     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3677 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsTopDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3678   PyObject 
*resultobj 
= 0; 
3679   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3683   PyObject 
*swig_obj
[1] ; 
3685   if (!args
) SWIG_fail
; 
3687   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3688   if (!SWIG_IsOK(res1
)) { 
3689     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3691   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3693     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3694     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsTopDockable(); 
3695     wxPyEndAllowThreads(__tstate
); 
3696     if (PyErr_Occurred()) SWIG_fail
; 
3699     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3707 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsBottomDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3708   PyObject 
*resultobj 
= 0; 
3709   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3713   PyObject 
*swig_obj
[1] ; 
3715   if (!args
) SWIG_fail
; 
3717   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3718   if (!SWIG_IsOK(res1
)) { 
3719     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3721   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3723     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3724     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsBottomDockable(); 
3725     wxPyEndAllowThreads(__tstate
); 
3726     if (PyErr_Occurred()) SWIG_fail
; 
3729     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3737 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsLeftDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3738   PyObject 
*resultobj 
= 0; 
3739   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3743   PyObject 
*swig_obj
[1] ; 
3745   if (!args
) SWIG_fail
; 
3747   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3748   if (!SWIG_IsOK(res1
)) { 
3749     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3751   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3753     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3754     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsLeftDockable(); 
3755     wxPyEndAllowThreads(__tstate
); 
3756     if (PyErr_Occurred()) SWIG_fail
; 
3759     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3767 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsRightDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3768   PyObject 
*resultobj 
= 0; 
3769   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3773   PyObject 
*swig_obj
[1] ; 
3775   if (!args
) SWIG_fail
; 
3777   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3778   if (!SWIG_IsOK(res1
)) { 
3779     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3781   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3783     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3784     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsRightDockable(); 
3785     wxPyEndAllowThreads(__tstate
); 
3786     if (PyErr_Occurred()) SWIG_fail
; 
3789     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3797 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsFloatable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3798   PyObject 
*resultobj 
= 0; 
3799   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3803   PyObject 
*swig_obj
[1] ; 
3805   if (!args
) SWIG_fail
; 
3807   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3808   if (!SWIG_IsOK(res1
)) { 
3809     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3811   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3813     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3814     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsFloatable(); 
3815     wxPyEndAllowThreads(__tstate
); 
3816     if (PyErr_Occurred()) SWIG_fail
; 
3819     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3827 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsMovable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3828   PyObject 
*resultobj 
= 0; 
3829   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3833   PyObject 
*swig_obj
[1] ; 
3835   if (!args
) SWIG_fail
; 
3837   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3838   if (!SWIG_IsOK(res1
)) { 
3839     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3841   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3843     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3844     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsMovable(); 
3845     wxPyEndAllowThreads(__tstate
); 
3846     if (PyErr_Occurred()) SWIG_fail
; 
3849     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3857 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsDestroyOnClose(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3858   PyObject 
*resultobj 
= 0; 
3859   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3863   PyObject 
*swig_obj
[1] ; 
3865   if (!args
) SWIG_fail
; 
3867   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3868   if (!SWIG_IsOK(res1
)) { 
3869     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3871   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3873     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3874     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsDestroyOnClose(); 
3875     wxPyEndAllowThreads(__tstate
); 
3876     if (PyErr_Occurred()) SWIG_fail
; 
3879     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3887 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_IsMaximized(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3888   PyObject 
*resultobj 
= 0; 
3889   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3893   PyObject 
*swig_obj
[1] ; 
3895   if (!args
) SWIG_fail
; 
3897   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3898   if (!SWIG_IsOK(res1
)) { 
3899     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMaximized" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3901   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3903     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3904     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->IsMaximized(); 
3905     wxPyEndAllowThreads(__tstate
); 
3906     if (PyErr_Occurred()) SWIG_fail
; 
3909     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3917 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasCaption(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3918   PyObject 
*resultobj 
= 0; 
3919   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3923   PyObject 
*swig_obj
[1] ; 
3925   if (!args
) SWIG_fail
; 
3927   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3928   if (!SWIG_IsOK(res1
)) { 
3929     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3931   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3933     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3934     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasCaption(); 
3935     wxPyEndAllowThreads(__tstate
); 
3936     if (PyErr_Occurred()) SWIG_fail
; 
3939     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3947 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasGripper(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3948   PyObject 
*resultobj 
= 0; 
3949   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3953   PyObject 
*swig_obj
[1] ; 
3955   if (!args
) SWIG_fail
; 
3957   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3958   if (!SWIG_IsOK(res1
)) { 
3959     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3961   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3963     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3964     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasGripper(); 
3965     wxPyEndAllowThreads(__tstate
); 
3966     if (PyErr_Occurred()) SWIG_fail
; 
3969     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3977 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasBorder(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3978   PyObject 
*resultobj 
= 0; 
3979   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
3983   PyObject 
*swig_obj
[1] ; 
3985   if (!args
) SWIG_fail
; 
3987   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
3988   if (!SWIG_IsOK(res1
)) { 
3989     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
3991   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
3993     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3994     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasBorder(); 
3995     wxPyEndAllowThreads(__tstate
); 
3996     if (PyErr_Occurred()) SWIG_fail
; 
3999     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4007 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasCloseButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4008   PyObject 
*resultobj 
= 0; 
4009   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4013   PyObject 
*swig_obj
[1] ; 
4015   if (!args
) SWIG_fail
; 
4017   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4018   if (!SWIG_IsOK(res1
)) { 
4019     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
4021   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4023     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4024     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasCloseButton(); 
4025     wxPyEndAllowThreads(__tstate
); 
4026     if (PyErr_Occurred()) SWIG_fail
; 
4029     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4037 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasMaximizeButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4038   PyObject 
*resultobj 
= 0; 
4039   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4043   PyObject 
*swig_obj
[1] ; 
4045   if (!args
) SWIG_fail
; 
4047   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4048   if (!SWIG_IsOK(res1
)) { 
4049     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
4051   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4053     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4054     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasMaximizeButton(); 
4055     wxPyEndAllowThreads(__tstate
); 
4056     if (PyErr_Occurred()) SWIG_fail
; 
4059     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4067 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasMinimizeButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4068   PyObject 
*resultobj 
= 0; 
4069   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4073   PyObject 
*swig_obj
[1] ; 
4075   if (!args
) SWIG_fail
; 
4077   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4078   if (!SWIG_IsOK(res1
)) { 
4079     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
4081   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4083     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4084     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasMinimizeButton(); 
4085     wxPyEndAllowThreads(__tstate
); 
4086     if (PyErr_Occurred()) SWIG_fail
; 
4089     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4097 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasPinButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4098   PyObject 
*resultobj 
= 0; 
4099   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4103   PyObject 
*swig_obj
[1] ; 
4105   if (!args
) SWIG_fail
; 
4107   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4108   if (!SWIG_IsOK(res1
)) { 
4109     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
4111   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4113     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4114     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasPinButton(); 
4115     wxPyEndAllowThreads(__tstate
); 
4116     if (PyErr_Occurred()) SWIG_fail
; 
4119     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4127 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasGripperTop(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4128   PyObject 
*resultobj 
= 0; 
4129   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4133   PyObject 
*swig_obj
[1] ; 
4135   if (!args
) SWIG_fail
; 
4137   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4138   if (!SWIG_IsOK(res1
)) { 
4139     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
4141   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4143     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4144     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasGripperTop(); 
4145     wxPyEndAllowThreads(__tstate
); 
4146     if (PyErr_Occurred()) SWIG_fail
; 
4149     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4157 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Window(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4158   PyObject 
*resultobj 
= 0; 
4159   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4160   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
4161   wxAuiPaneInfo 
*result 
= 0 ; 
4166   PyObject 
* obj0 
= 0 ; 
4167   PyObject 
* obj1 
= 0 ; 
4168   char *  kwnames
[] = { 
4169     (char *) "self",(char *) "w", NULL 
 
4172   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4173   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4174   if (!SWIG_IsOK(res1
)) { 
4175     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Window" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4177   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4178   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
4179   if (!SWIG_IsOK(res2
)) { 
4180     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");  
4182   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
4184     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4186       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Window(arg2
); 
4187       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4189     wxPyEndAllowThreads(__tstate
); 
4190     if (PyErr_Occurred()) SWIG_fail
; 
4193     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4201 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Name(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4202   PyObject 
*resultobj 
= 0; 
4203   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4204   wxString 
*arg2 
= 0 ; 
4205   wxAuiPaneInfo 
*result 
= 0 ; 
4208   bool temp2 
= false ; 
4209   PyObject 
* obj0 
= 0 ; 
4210   PyObject 
* obj1 
= 0 ; 
4211   char *  kwnames
[] = { 
4212     (char *) "self",(char *) "n", NULL 
 
4215   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4216   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4217   if (!SWIG_IsOK(res1
)) { 
4218     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Name" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4220   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4222     arg2 
= wxString_in_helper(obj1
); 
4223     if (arg2 
== NULL
) SWIG_fail
; 
4227     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4229       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Name((wxString 
const &)*arg2
); 
4230       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4232     wxPyEndAllowThreads(__tstate
); 
4233     if (PyErr_Occurred()) SWIG_fail
; 
4236     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4252 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Caption(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4253   PyObject 
*resultobj 
= 0; 
4254   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4255   wxString 
*arg2 
= 0 ; 
4256   wxAuiPaneInfo 
*result 
= 0 ; 
4259   bool temp2 
= false ; 
4260   PyObject 
* obj0 
= 0 ; 
4261   PyObject 
* obj1 
= 0 ; 
4262   char *  kwnames
[] = { 
4263     (char *) "self",(char *) "c", NULL 
 
4266   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4267   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4268   if (!SWIG_IsOK(res1
)) { 
4269     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Caption" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4271   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4273     arg2 
= wxString_in_helper(obj1
); 
4274     if (arg2 
== NULL
) SWIG_fail
; 
4278     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4280       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Caption((wxString 
const &)*arg2
); 
4281       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4283     wxPyEndAllowThreads(__tstate
); 
4284     if (PyErr_Occurred()) SWIG_fail
; 
4287     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4303 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Left(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4304   PyObject 
*resultobj 
= 0; 
4305   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4306   wxAuiPaneInfo 
*result 
= 0 ; 
4309   PyObject 
*swig_obj
[1] ; 
4311   if (!args
) SWIG_fail
; 
4313   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4314   if (!SWIG_IsOK(res1
)) { 
4315     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Left" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4317   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4319     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4321       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Left(); 
4322       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4324     wxPyEndAllowThreads(__tstate
); 
4325     if (PyErr_Occurred()) SWIG_fail
; 
4328     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4336 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Right(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4337   PyObject 
*resultobj 
= 0; 
4338   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4339   wxAuiPaneInfo 
*result 
= 0 ; 
4342   PyObject 
*swig_obj
[1] ; 
4344   if (!args
) SWIG_fail
; 
4346   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4347   if (!SWIG_IsOK(res1
)) { 
4348     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Right" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4350   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4352     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4354       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Right(); 
4355       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4357     wxPyEndAllowThreads(__tstate
); 
4358     if (PyErr_Occurred()) SWIG_fail
; 
4361     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4369 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Top(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4370   PyObject 
*resultobj 
= 0; 
4371   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4372   wxAuiPaneInfo 
*result 
= 0 ; 
4375   PyObject 
*swig_obj
[1] ; 
4377   if (!args
) SWIG_fail
; 
4379   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4380   if (!SWIG_IsOK(res1
)) { 
4381     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Top" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4383   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4385     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4387       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Top(); 
4388       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4390     wxPyEndAllowThreads(__tstate
); 
4391     if (PyErr_Occurred()) SWIG_fail
; 
4394     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4402 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Bottom(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4403   PyObject 
*resultobj 
= 0; 
4404   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4405   wxAuiPaneInfo 
*result 
= 0 ; 
4408   PyObject 
*swig_obj
[1] ; 
4410   if (!args
) SWIG_fail
; 
4412   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4413   if (!SWIG_IsOK(res1
)) { 
4414     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Bottom" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4416   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4418     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4420       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Bottom(); 
4421       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4423     wxPyEndAllowThreads(__tstate
); 
4424     if (PyErr_Occurred()) SWIG_fail
; 
4427     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4435 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Center(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4436   PyObject 
*resultobj 
= 0; 
4437   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4438   wxAuiPaneInfo 
*result 
= 0 ; 
4441   PyObject 
*swig_obj
[1] ; 
4443   if (!args
) SWIG_fail
; 
4445   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4446   if (!SWIG_IsOK(res1
)) { 
4447     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Center" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4449   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4451     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4453       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Center(); 
4454       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4456     wxPyEndAllowThreads(__tstate
); 
4457     if (PyErr_Occurred()) SWIG_fail
; 
4460     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4468 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Centre(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4469   PyObject 
*resultobj 
= 0; 
4470   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4471   wxAuiPaneInfo 
*result 
= 0 ; 
4474   PyObject 
*swig_obj
[1] ; 
4476   if (!args
) SWIG_fail
; 
4478   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4479   if (!SWIG_IsOK(res1
)) { 
4480     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Centre" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4482   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4484     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4486       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Centre(); 
4487       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4489     wxPyEndAllowThreads(__tstate
); 
4490     if (PyErr_Occurred()) SWIG_fail
; 
4493     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4501 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Direction(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4502   PyObject 
*resultobj 
= 0; 
4503   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4505   wxAuiPaneInfo 
*result 
= 0 ; 
4510   PyObject 
* obj0 
= 0 ; 
4511   PyObject 
* obj1 
= 0 ; 
4512   char *  kwnames
[] = { 
4513     (char *) "self",(char *) "direction", NULL 
 
4516   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4517   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4518   if (!SWIG_IsOK(res1
)) { 
4519     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4521   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4522   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4523   if (!SWIG_IsOK(ecode2
)) { 
4524     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "2"" of type '" "int""'"); 
4526   arg2 
= static_cast< int >(val2
); 
4528     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4530       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Direction(arg2
); 
4531       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4533     wxPyEndAllowThreads(__tstate
); 
4534     if (PyErr_Occurred()) SWIG_fail
; 
4537     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4545 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Layer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4546   PyObject 
*resultobj 
= 0; 
4547   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4549   wxAuiPaneInfo 
*result 
= 0 ; 
4554   PyObject 
* obj0 
= 0 ; 
4555   PyObject 
* obj1 
= 0 ; 
4556   char *  kwnames
[] = { 
4557     (char *) "self",(char *) "layer", NULL 
 
4560   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4561   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4562   if (!SWIG_IsOK(res1
)) { 
4563     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4565   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4566   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4567   if (!SWIG_IsOK(ecode2
)) { 
4568     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "2"" of type '" "int""'"); 
4570   arg2 
= static_cast< int >(val2
); 
4572     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4574       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Layer(arg2
); 
4575       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4577     wxPyEndAllowThreads(__tstate
); 
4578     if (PyErr_Occurred()) SWIG_fail
; 
4581     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4589 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Row(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4590   PyObject 
*resultobj 
= 0; 
4591   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4593   wxAuiPaneInfo 
*result 
= 0 ; 
4598   PyObject 
* obj0 
= 0 ; 
4599   PyObject 
* obj1 
= 0 ; 
4600   char *  kwnames
[] = { 
4601     (char *) "self",(char *) "row", NULL 
 
4604   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4605   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4606   if (!SWIG_IsOK(res1
)) { 
4607     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Row" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4609   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4610   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4611   if (!SWIG_IsOK(ecode2
)) { 
4612     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Row" "', expected argument " "2"" of type '" "int""'"); 
4614   arg2 
= static_cast< int >(val2
); 
4616     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4618       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Row(arg2
); 
4619       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4621     wxPyEndAllowThreads(__tstate
); 
4622     if (PyErr_Occurred()) SWIG_fail
; 
4625     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4633 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Position(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4634   PyObject 
*resultobj 
= 0; 
4635   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4637   wxAuiPaneInfo 
*result 
= 0 ; 
4642   PyObject 
* obj0 
= 0 ; 
4643   PyObject 
* obj1 
= 0 ; 
4644   char *  kwnames
[] = { 
4645     (char *) "self",(char *) "pos", NULL 
 
4648   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4649   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4650   if (!SWIG_IsOK(res1
)) { 
4651     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Position" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4653   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4654   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4655   if (!SWIG_IsOK(ecode2
)) { 
4656     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Position" "', expected argument " "2"" of type '" "int""'"); 
4658   arg2 
= static_cast< int >(val2
); 
4660     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4662       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Position(arg2
); 
4663       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4665     wxPyEndAllowThreads(__tstate
); 
4666     if (PyErr_Occurred()) SWIG_fail
; 
4669     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4677 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_BestSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4678   PyObject 
*resultobj 
= 0; 
4679   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4681   wxAuiPaneInfo 
*result 
= 0 ; 
4685   PyObject 
* obj0 
= 0 ; 
4686   PyObject 
* obj1 
= 0 ; 
4687   char *  kwnames
[] = { 
4688     (char *) "self",(char *) "size", NULL 
 
4691   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4692   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4693   if (!SWIG_IsOK(res1
)) { 
4694     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BestSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4696   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4699     if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
4702     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4704       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->BestSize((wxSize 
const &)*arg2
); 
4705       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4707     wxPyEndAllowThreads(__tstate
); 
4708     if (PyErr_Occurred()) SWIG_fail
; 
4711     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4719 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_MinSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4720   PyObject 
*resultobj 
= 0; 
4721   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4723   wxAuiPaneInfo 
*result 
= 0 ; 
4727   PyObject 
* obj0 
= 0 ; 
4728   PyObject 
* obj1 
= 0 ; 
4729   char *  kwnames
[] = { 
4730     (char *) "self",(char *) "size", NULL 
 
4733   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4734   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4735   if (!SWIG_IsOK(res1
)) { 
4736     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4738   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4741     if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
4744     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4746       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->MinSize((wxSize 
const &)*arg2
); 
4747       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4749     wxPyEndAllowThreads(__tstate
); 
4750     if (PyErr_Occurred()) SWIG_fail
; 
4753     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4761 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_MaxSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4762   PyObject 
*resultobj 
= 0; 
4763   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4765   wxAuiPaneInfo 
*result 
= 0 ; 
4769   PyObject 
* obj0 
= 0 ; 
4770   PyObject 
* obj1 
= 0 ; 
4771   char *  kwnames
[] = { 
4772     (char *) "self",(char *) "size", NULL 
 
4775   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4776   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4777   if (!SWIG_IsOK(res1
)) { 
4778     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4780   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4783     if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
4786     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4788       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->MaxSize((wxSize 
const &)*arg2
); 
4789       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4791     wxPyEndAllowThreads(__tstate
); 
4792     if (PyErr_Occurred()) SWIG_fail
; 
4795     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4803 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_FloatingPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4804   PyObject 
*resultobj 
= 0; 
4805   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4807   wxAuiPaneInfo 
*result 
= 0 ; 
4811   PyObject 
* obj0 
= 0 ; 
4812   PyObject 
* obj1 
= 0 ; 
4813   char *  kwnames
[] = { 
4814     (char *) "self",(char *) "pos", NULL 
 
4817   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4818   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4819   if (!SWIG_IsOK(res1
)) { 
4820     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4822   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4825     if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4828     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4830       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->FloatingPosition((wxPoint 
const &)*arg2
); 
4831       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4833     wxPyEndAllowThreads(__tstate
); 
4834     if (PyErr_Occurred()) SWIG_fail
; 
4837     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4845 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_FloatingSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4846   PyObject 
*resultobj 
= 0; 
4847   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4849   wxAuiPaneInfo 
*result 
= 0 ; 
4853   PyObject 
* obj0 
= 0 ; 
4854   PyObject 
* obj1 
= 0 ; 
4855   char *  kwnames
[] = { 
4856     (char *) "self",(char *) "size", NULL 
 
4859   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4860   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4861   if (!SWIG_IsOK(res1
)) { 
4862     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4864   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4867     if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
4870     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4872       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->FloatingSize((wxSize 
const &)*arg2
); 
4873       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4875     wxPyEndAllowThreads(__tstate
); 
4876     if (PyErr_Occurred()) SWIG_fail
; 
4879     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4887 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Fixed(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4888   PyObject 
*resultobj 
= 0; 
4889   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4890   wxAuiPaneInfo 
*result 
= 0 ; 
4893   PyObject 
*swig_obj
[1] ; 
4895   if (!args
) SWIG_fail
; 
4897   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4898   if (!SWIG_IsOK(res1
)) { 
4899     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Fixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4901   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4903     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4905       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Fixed(); 
4906       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4908     wxPyEndAllowThreads(__tstate
); 
4909     if (PyErr_Occurred()) SWIG_fail
; 
4912     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4920 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Resizable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4921   PyObject 
*resultobj 
= 0; 
4922   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4923   bool arg2 
= (bool) true ; 
4924   wxAuiPaneInfo 
*result 
= 0 ; 
4929   PyObject 
* obj0 
= 0 ; 
4930   PyObject 
* obj1 
= 0 ; 
4931   char *  kwnames
[] = { 
4932     (char *) "self",(char *) "resizable", NULL 
 
4935   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4936   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4937   if (!SWIG_IsOK(res1
)) { 
4938     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4940   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4942     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
4943     if (!SWIG_IsOK(ecode2
)) { 
4944       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'"); 
4946     arg2 
= static_cast< bool >(val2
); 
4949     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4951       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Resizable(arg2
); 
4952       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4954     wxPyEndAllowThreads(__tstate
); 
4955     if (PyErr_Occurred()) SWIG_fail
; 
4958     resultobj 
= obj0
; Py_INCREF(resultobj
);  
4966 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Dock(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4967   PyObject 
*resultobj 
= 0; 
4968   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
4969   wxAuiPaneInfo 
*result 
= 0 ; 
4972   PyObject 
*swig_obj
[1] ; 
4974   if (!args
) SWIG_fail
; 
4976   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
4977   if (!SWIG_IsOK(res1
)) { 
4978     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dock" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
4980   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
4982     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4984       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Dock(); 
4985       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
4987     wxPyEndAllowThreads(__tstate
); 
4988     if (PyErr_Occurred()) SWIG_fail
; 
4991     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
4999 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Float(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5000   PyObject 
*resultobj 
= 0; 
5001   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5002   wxAuiPaneInfo 
*result 
= 0 ; 
5005   PyObject 
*swig_obj
[1] ; 
5007   if (!args
) SWIG_fail
; 
5009   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5010   if (!SWIG_IsOK(res1
)) { 
5011     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Float" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5013   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5015     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5017       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Float(); 
5018       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5020     wxPyEndAllowThreads(__tstate
); 
5021     if (PyErr_Occurred()) SWIG_fail
; 
5024     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
5032 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Hide(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5033   PyObject 
*resultobj 
= 0; 
5034   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5035   wxAuiPaneInfo 
*result 
= 0 ; 
5038   PyObject 
*swig_obj
[1] ; 
5040   if (!args
) SWIG_fail
; 
5042   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5043   if (!SWIG_IsOK(res1
)) { 
5044     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Hide" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5046   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5048     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5050       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Hide(); 
5051       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5053     wxPyEndAllowThreads(__tstate
); 
5054     if (PyErr_Occurred()) SWIG_fail
; 
5057     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
5065 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Show(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5066   PyObject 
*resultobj 
= 0; 
5067   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5068   bool arg2 
= (bool) true ; 
5069   wxAuiPaneInfo 
*result 
= 0 ; 
5074   PyObject 
* obj0 
= 0 ; 
5075   PyObject 
* obj1 
= 0 ; 
5076   char *  kwnames
[] = { 
5077     (char *) "self",(char *) "show", NULL 
 
5080   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5081   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5082   if (!SWIG_IsOK(res1
)) { 
5083     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Show" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5085   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5087     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5088     if (!SWIG_IsOK(ecode2
)) { 
5089       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Show" "', expected argument " "2"" of type '" "bool""'"); 
5091     arg2 
= static_cast< bool >(val2
); 
5094     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5096       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Show(arg2
); 
5097       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5099     wxPyEndAllowThreads(__tstate
); 
5100     if (PyErr_Occurred()) SWIG_fail
; 
5103     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5111 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_CaptionVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5112   PyObject 
*resultobj 
= 0; 
5113   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5114   bool arg2 
= (bool) true ; 
5115   wxAuiPaneInfo 
*result 
= 0 ; 
5120   PyObject 
* obj0 
= 0 ; 
5121   PyObject 
* obj1 
= 0 ; 
5122   char *  kwnames
[] = { 
5123     (char *) "self",(char *) "visible", NULL 
 
5126   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5127   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5128   if (!SWIG_IsOK(res1
)) { 
5129     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5131   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5133     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5134     if (!SWIG_IsOK(ecode2
)) { 
5135       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'"); 
5137     arg2 
= static_cast< bool >(val2
); 
5140     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5142       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->CaptionVisible(arg2
); 
5143       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5145     wxPyEndAllowThreads(__tstate
); 
5146     if (PyErr_Occurred()) SWIG_fail
; 
5149     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5157 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Maximize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5158   PyObject 
*resultobj 
= 0; 
5159   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5160   wxAuiPaneInfo 
*result 
= 0 ; 
5163   PyObject 
*swig_obj
[1] ; 
5165   if (!args
) SWIG_fail
; 
5167   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5168   if (!SWIG_IsOK(res1
)) { 
5169     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Maximize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5171   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5173     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5175       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Maximize(); 
5176       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5178     wxPyEndAllowThreads(__tstate
); 
5179     if (PyErr_Occurred()) SWIG_fail
; 
5182     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
5190 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Restore(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5191   PyObject 
*resultobj 
= 0; 
5192   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5193   wxAuiPaneInfo 
*result 
= 0 ; 
5196   PyObject 
*swig_obj
[1] ; 
5198   if (!args
) SWIG_fail
; 
5200   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5201   if (!SWIG_IsOK(res1
)) { 
5202     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Restore" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5204   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5206     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5208       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Restore(); 
5209       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5211     wxPyEndAllowThreads(__tstate
); 
5212     if (PyErr_Occurred()) SWIG_fail
; 
5215     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
5223 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_PaneBorder(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5224   PyObject 
*resultobj 
= 0; 
5225   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5226   bool arg2 
= (bool) true ; 
5227   wxAuiPaneInfo 
*result 
= 0 ; 
5232   PyObject 
* obj0 
= 0 ; 
5233   PyObject 
* obj1 
= 0 ; 
5234   char *  kwnames
[] = { 
5235     (char *) "self",(char *) "visible", NULL 
 
5238   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5239   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5240   if (!SWIG_IsOK(res1
)) { 
5241     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5243   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5245     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5246     if (!SWIG_IsOK(ecode2
)) { 
5247       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'"); 
5249     arg2 
= static_cast< bool >(val2
); 
5252     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5254       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->PaneBorder(arg2
); 
5255       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5257     wxPyEndAllowThreads(__tstate
); 
5258     if (PyErr_Occurred()) SWIG_fail
; 
5261     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5269 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Gripper(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5270   PyObject 
*resultobj 
= 0; 
5271   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5272   bool arg2 
= (bool) true ; 
5273   wxAuiPaneInfo 
*result 
= 0 ; 
5278   PyObject 
* obj0 
= 0 ; 
5279   PyObject 
* obj1 
= 0 ; 
5280   char *  kwnames
[] = { 
5281     (char *) "self",(char *) "visible", NULL 
 
5284   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5285   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5286   if (!SWIG_IsOK(res1
)) { 
5287     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5289   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5291     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5292     if (!SWIG_IsOK(ecode2
)) { 
5293       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'"); 
5295     arg2 
= static_cast< bool >(val2
); 
5298     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5300       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Gripper(arg2
); 
5301       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5303     wxPyEndAllowThreads(__tstate
); 
5304     if (PyErr_Occurred()) SWIG_fail
; 
5307     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5315 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_GripperTop(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5316   PyObject 
*resultobj 
= 0; 
5317   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5318   bool arg2 
= (bool) true ; 
5319   wxAuiPaneInfo 
*result 
= 0 ; 
5324   PyObject 
* obj0 
= 0 ; 
5325   PyObject 
* obj1 
= 0 ; 
5326   char *  kwnames
[] = { 
5327     (char *) "self",(char *) "attop", NULL 
 
5330   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5331   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5332   if (!SWIG_IsOK(res1
)) { 
5333     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5335   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5337     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5338     if (!SWIG_IsOK(ecode2
)) { 
5339       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'"); 
5341     arg2 
= static_cast< bool >(val2
); 
5344     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5346       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->GripperTop(arg2
); 
5347       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5349     wxPyEndAllowThreads(__tstate
); 
5350     if (PyErr_Occurred()) SWIG_fail
; 
5353     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5361 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_CloseButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5362   PyObject 
*resultobj 
= 0; 
5363   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5364   bool arg2 
= (bool) true ; 
5365   wxAuiPaneInfo 
*result 
= 0 ; 
5370   PyObject 
* obj0 
= 0 ; 
5371   PyObject 
* obj1 
= 0 ; 
5372   char *  kwnames
[] = { 
5373     (char *) "self",(char *) "visible", NULL 
 
5376   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5377   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5378   if (!SWIG_IsOK(res1
)) { 
5379     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5381   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5383     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5384     if (!SWIG_IsOK(ecode2
)) { 
5385       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'"); 
5387     arg2 
= static_cast< bool >(val2
); 
5390     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5392       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->CloseButton(arg2
); 
5393       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5395     wxPyEndAllowThreads(__tstate
); 
5396     if (PyErr_Occurred()) SWIG_fail
; 
5399     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5407 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_MaximizeButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5408   PyObject 
*resultobj 
= 0; 
5409   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5410   bool arg2 
= (bool) true ; 
5411   wxAuiPaneInfo 
*result 
= 0 ; 
5416   PyObject 
* obj0 
= 0 ; 
5417   PyObject 
* obj1 
= 0 ; 
5418   char *  kwnames
[] = { 
5419     (char *) "self",(char *) "visible", NULL 
 
5422   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5423   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5424   if (!SWIG_IsOK(res1
)) { 
5425     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5427   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5429     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5430     if (!SWIG_IsOK(ecode2
)) { 
5431       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'"); 
5433     arg2 
= static_cast< bool >(val2
); 
5436     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5438       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->MaximizeButton(arg2
); 
5439       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5441     wxPyEndAllowThreads(__tstate
); 
5442     if (PyErr_Occurred()) SWIG_fail
; 
5445     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5453 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_MinimizeButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5454   PyObject 
*resultobj 
= 0; 
5455   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5456   bool arg2 
= (bool) true ; 
5457   wxAuiPaneInfo 
*result 
= 0 ; 
5462   PyObject 
* obj0 
= 0 ; 
5463   PyObject 
* obj1 
= 0 ; 
5464   char *  kwnames
[] = { 
5465     (char *) "self",(char *) "visible", NULL 
 
5468   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5469   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5470   if (!SWIG_IsOK(res1
)) { 
5471     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5473   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5475     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5476     if (!SWIG_IsOK(ecode2
)) { 
5477       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'"); 
5479     arg2 
= static_cast< bool >(val2
); 
5482     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5484       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->MinimizeButton(arg2
); 
5485       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5487     wxPyEndAllowThreads(__tstate
); 
5488     if (PyErr_Occurred()) SWIG_fail
; 
5491     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5499 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_PinButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5500   PyObject 
*resultobj 
= 0; 
5501   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5502   bool arg2 
= (bool) true ; 
5503   wxAuiPaneInfo 
*result 
= 0 ; 
5508   PyObject 
* obj0 
= 0 ; 
5509   PyObject 
* obj1 
= 0 ; 
5510   char *  kwnames
[] = { 
5511     (char *) "self",(char *) "visible", NULL 
 
5514   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5515   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5516   if (!SWIG_IsOK(res1
)) { 
5517     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5519   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5521     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5522     if (!SWIG_IsOK(ecode2
)) { 
5523       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'"); 
5525     arg2 
= static_cast< bool >(val2
); 
5528     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5530       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->PinButton(arg2
); 
5531       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5533     wxPyEndAllowThreads(__tstate
); 
5534     if (PyErr_Occurred()) SWIG_fail
; 
5537     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5545 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_DestroyOnClose(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5546   PyObject 
*resultobj 
= 0; 
5547   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5548   bool arg2 
= (bool) true ; 
5549   wxAuiPaneInfo 
*result 
= 0 ; 
5554   PyObject 
* obj0 
= 0 ; 
5555   PyObject 
* obj1 
= 0 ; 
5556   char *  kwnames
[] = { 
5557     (char *) "self",(char *) "b", NULL 
 
5560   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5561   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5562   if (!SWIG_IsOK(res1
)) { 
5563     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5565   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5567     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5568     if (!SWIG_IsOK(ecode2
)) { 
5569       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'"); 
5571     arg2 
= static_cast< bool >(val2
); 
5574     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5576       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->DestroyOnClose(arg2
); 
5577       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5579     wxPyEndAllowThreads(__tstate
); 
5580     if (PyErr_Occurred()) SWIG_fail
; 
5583     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5591 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_TopDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5592   PyObject 
*resultobj 
= 0; 
5593   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5594   bool arg2 
= (bool) true ; 
5595   wxAuiPaneInfo 
*result 
= 0 ; 
5600   PyObject 
* obj0 
= 0 ; 
5601   PyObject 
* obj1 
= 0 ; 
5602   char *  kwnames
[] = { 
5603     (char *) "self",(char *) "b", NULL 
 
5606   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5607   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5608   if (!SWIG_IsOK(res1
)) { 
5609     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5611   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5613     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5614     if (!SWIG_IsOK(ecode2
)) { 
5615       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'"); 
5617     arg2 
= static_cast< bool >(val2
); 
5620     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5622       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->TopDockable(arg2
); 
5623       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5625     wxPyEndAllowThreads(__tstate
); 
5626     if (PyErr_Occurred()) SWIG_fail
; 
5629     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5637 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_BottomDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5638   PyObject 
*resultobj 
= 0; 
5639   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5640   bool arg2 
= (bool) true ; 
5641   wxAuiPaneInfo 
*result 
= 0 ; 
5646   PyObject 
* obj0 
= 0 ; 
5647   PyObject 
* obj1 
= 0 ; 
5648   char *  kwnames
[] = { 
5649     (char *) "self",(char *) "b", NULL 
 
5652   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5653   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5654   if (!SWIG_IsOK(res1
)) { 
5655     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5657   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5659     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5660     if (!SWIG_IsOK(ecode2
)) { 
5661       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'"); 
5663     arg2 
= static_cast< bool >(val2
); 
5666     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5668       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->BottomDockable(arg2
); 
5669       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5671     wxPyEndAllowThreads(__tstate
); 
5672     if (PyErr_Occurred()) SWIG_fail
; 
5675     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5683 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_LeftDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5684   PyObject 
*resultobj 
= 0; 
5685   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5686   bool arg2 
= (bool) true ; 
5687   wxAuiPaneInfo 
*result 
= 0 ; 
5692   PyObject 
* obj0 
= 0 ; 
5693   PyObject 
* obj1 
= 0 ; 
5694   char *  kwnames
[] = { 
5695     (char *) "self",(char *) "b", NULL 
 
5698   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5699   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5700   if (!SWIG_IsOK(res1
)) { 
5701     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5703   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5705     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5706     if (!SWIG_IsOK(ecode2
)) { 
5707       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'"); 
5709     arg2 
= static_cast< bool >(val2
); 
5712     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5714       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->LeftDockable(arg2
); 
5715       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5717     wxPyEndAllowThreads(__tstate
); 
5718     if (PyErr_Occurred()) SWIG_fail
; 
5721     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5729 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_RightDockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5730   PyObject 
*resultobj 
= 0; 
5731   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5732   bool arg2 
= (bool) true ; 
5733   wxAuiPaneInfo 
*result 
= 0 ; 
5738   PyObject 
* obj0 
= 0 ; 
5739   PyObject 
* obj1 
= 0 ; 
5740   char *  kwnames
[] = { 
5741     (char *) "self",(char *) "b", NULL 
 
5744   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5745   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5746   if (!SWIG_IsOK(res1
)) { 
5747     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5749   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5751     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5752     if (!SWIG_IsOK(ecode2
)) { 
5753       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'"); 
5755     arg2 
= static_cast< bool >(val2
); 
5758     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5760       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->RightDockable(arg2
); 
5761       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5763     wxPyEndAllowThreads(__tstate
); 
5764     if (PyErr_Occurred()) SWIG_fail
; 
5767     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5775 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Floatable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5776   PyObject 
*resultobj 
= 0; 
5777   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5778   bool arg2 
= (bool) true ; 
5779   wxAuiPaneInfo 
*result 
= 0 ; 
5784   PyObject 
* obj0 
= 0 ; 
5785   PyObject 
* obj1 
= 0 ; 
5786   char *  kwnames
[] = { 
5787     (char *) "self",(char *) "b", NULL 
 
5790   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5791   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5792   if (!SWIG_IsOK(res1
)) { 
5793     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5795   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5797     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5798     if (!SWIG_IsOK(ecode2
)) { 
5799       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'"); 
5801     arg2 
= static_cast< bool >(val2
); 
5804     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5806       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Floatable(arg2
); 
5807       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5809     wxPyEndAllowThreads(__tstate
); 
5810     if (PyErr_Occurred()) SWIG_fail
; 
5813     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5821 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Movable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5822   PyObject 
*resultobj 
= 0; 
5823   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5824   bool arg2 
= (bool) true ; 
5825   wxAuiPaneInfo 
*result 
= 0 ; 
5830   PyObject 
* obj0 
= 0 ; 
5831   PyObject 
* obj1 
= 0 ; 
5832   char *  kwnames
[] = { 
5833     (char *) "self",(char *) "b", NULL 
 
5836   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5837   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5838   if (!SWIG_IsOK(res1
)) { 
5839     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5841   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5843     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5844     if (!SWIG_IsOK(ecode2
)) { 
5845       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'"); 
5847     arg2 
= static_cast< bool >(val2
); 
5850     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5852       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Movable(arg2
); 
5853       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5855     wxPyEndAllowThreads(__tstate
); 
5856     if (PyErr_Occurred()) SWIG_fail
; 
5859     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5867 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_Dockable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5868   PyObject 
*resultobj 
= 0; 
5869   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5870   bool arg2 
= (bool) true ; 
5871   wxAuiPaneInfo 
*result 
= 0 ; 
5876   PyObject 
* obj0 
= 0 ; 
5877   PyObject 
* obj1 
= 0 ; 
5878   char *  kwnames
[] = { 
5879     (char *) "self",(char *) "b", NULL 
 
5882   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5883   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5884   if (!SWIG_IsOK(res1
)) { 
5885     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5887   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5889     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5890     if (!SWIG_IsOK(ecode2
)) { 
5891       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'"); 
5893     arg2 
= static_cast< bool >(val2
); 
5896     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5898       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->Dockable(arg2
); 
5899       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5901     wxPyEndAllowThreads(__tstate
); 
5902     if (PyErr_Occurred()) SWIG_fail
; 
5905     resultobj 
= obj0
; Py_INCREF(resultobj
);  
5913 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_DefaultPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5914   PyObject 
*resultobj 
= 0; 
5915   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5916   wxAuiPaneInfo 
*result 
= 0 ; 
5919   PyObject 
*swig_obj
[1] ; 
5921   if (!args
) SWIG_fail
; 
5923   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5924   if (!SWIG_IsOK(res1
)) { 
5925     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5927   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5929     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5931       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->DefaultPane(); 
5932       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5934     wxPyEndAllowThreads(__tstate
); 
5935     if (PyErr_Occurred()) SWIG_fail
; 
5938     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
5946 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_CentrePane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5947   PyObject 
*resultobj 
= 0; 
5948   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5949   wxAuiPaneInfo 
*result 
= 0 ; 
5952   PyObject 
*swig_obj
[1] ; 
5954   if (!args
) SWIG_fail
; 
5956   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5957   if (!SWIG_IsOK(res1
)) { 
5958     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5960   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5962     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5964       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->CentrePane(); 
5965       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
5967     wxPyEndAllowThreads(__tstate
); 
5968     if (PyErr_Occurred()) SWIG_fail
; 
5971     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
5979 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_CenterPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5980   PyObject 
*resultobj 
= 0; 
5981   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
5982   wxAuiPaneInfo 
*result 
= 0 ; 
5985   PyObject 
*swig_obj
[1] ; 
5987   if (!args
) SWIG_fail
; 
5989   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
5990   if (!SWIG_IsOK(res1
)) { 
5991     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
5993   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
5995     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5997       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->CenterPane(); 
5998       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
6000     wxPyEndAllowThreads(__tstate
); 
6001     if (PyErr_Occurred()) SWIG_fail
; 
6004     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
6012 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_ToolbarPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6013   PyObject 
*resultobj 
= 0; 
6014   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6015   wxAuiPaneInfo 
*result 
= 0 ; 
6018   PyObject 
*swig_obj
[1] ; 
6020   if (!args
) SWIG_fail
; 
6022   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6023   if (!SWIG_IsOK(res1
)) { 
6024     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6026   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6028     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6030       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->ToolbarPane(); 
6031       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
6033     wxPyEndAllowThreads(__tstate
); 
6034     if (PyErr_Occurred()) SWIG_fail
; 
6037     resultobj 
= swig_obj
[0]; Py_INCREF(resultobj
);  
6045 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_SetFlag(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6046   PyObject 
*resultobj 
= 0; 
6047   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6050   wxAuiPaneInfo 
*result 
= 0 ; 
6057   PyObject 
* obj0 
= 0 ; 
6058   PyObject 
* obj1 
= 0 ; 
6059   PyObject 
* obj2 
= 0 ; 
6060   char *  kwnames
[] = { 
6061     (char *) "self",(char *) "flag",(char *) "option_state", NULL 
 
6064   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiPaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6065   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6066   if (!SWIG_IsOK(res1
)) { 
6067     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6069   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6070   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6071   if (!SWIG_IsOK(ecode2
)) { 
6072     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'"); 
6074   arg2 
= static_cast< int >(val2
); 
6075   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
6076   if (!SWIG_IsOK(ecode3
)) { 
6077     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'"); 
6079   arg3 
= static_cast< bool >(val3
); 
6081     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6083       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->SetFlag(arg2
,arg3
); 
6084       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
6086     wxPyEndAllowThreads(__tstate
); 
6087     if (PyErr_Occurred()) SWIG_fail
; 
6090     resultobj 
= obj0
; Py_INCREF(resultobj
);  
6098 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_HasFlag(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6099   PyObject 
*resultobj 
= 0; 
6100   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6107   PyObject 
* obj0 
= 0 ; 
6108   PyObject 
* obj1 
= 0 ; 
6109   char *  kwnames
[] = { 
6110     (char *) "self",(char *) "flag", NULL 
 
6113   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6114   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6115   if (!SWIG_IsOK(res1
)) { 
6116     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");  
6118   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6119   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6120   if (!SWIG_IsOK(ecode2
)) { 
6121     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'"); 
6123   arg2 
= static_cast< int >(val2
); 
6125     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6126     result 
= (bool)((wxAuiPaneInfo 
const *)arg1
)->HasFlag(arg2
); 
6127     wxPyEndAllowThreads(__tstate
); 
6128     if (PyErr_Occurred()) SWIG_fail
; 
6131     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6139 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_name_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6140   PyObject 
*resultobj 
= 0; 
6141   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6142   wxString 
*arg2 
= (wxString 
*) 0 ; 
6145   bool temp2 
= false ; 
6146   PyObject 
*swig_obj
[2] ; 
6148   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
; 
6149   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6150   if (!SWIG_IsOK(res1
)) { 
6151     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6153   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6155     arg2 
= wxString_in_helper(swig_obj
[1]); 
6156     if (arg2 
== NULL
) SWIG_fail
; 
6159   if (arg1
) (arg1
)->name 
= *arg2
; 
6161   resultobj 
= SWIG_Py_Void(); 
6176 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_name_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6177   PyObject 
*resultobj 
= 0; 
6178   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6179   wxString 
*result 
= 0 ; 
6182   PyObject 
*swig_obj
[1] ; 
6184   if (!args
) SWIG_fail
; 
6186   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6187   if (!SWIG_IsOK(res1
)) { 
6188     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6190   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6191   result 
= (wxString 
*)& ((arg1
)->name
); 
6194     resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
6196     resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
6205 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_caption_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6206   PyObject 
*resultobj 
= 0; 
6207   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6208   wxString 
*arg2 
= (wxString 
*) 0 ; 
6211   bool temp2 
= false ; 
6212   PyObject 
*swig_obj
[2] ; 
6214   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
; 
6215   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6216   if (!SWIG_IsOK(res1
)) { 
6217     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6219   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6221     arg2 
= wxString_in_helper(swig_obj
[1]); 
6222     if (arg2 
== NULL
) SWIG_fail
; 
6225   if (arg1
) (arg1
)->caption 
= *arg2
; 
6227   resultobj 
= SWIG_Py_Void(); 
6242 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_caption_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6243   PyObject 
*resultobj 
= 0; 
6244   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6245   wxString 
*result 
= 0 ; 
6248   PyObject 
*swig_obj
[1] ; 
6250   if (!args
) SWIG_fail
; 
6252   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6253   if (!SWIG_IsOK(res1
)) { 
6254     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6256   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6257   result 
= (wxString 
*)& ((arg1
)->caption
); 
6260     resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
6262     resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
6271 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_window_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6272   PyObject 
*resultobj 
= 0; 
6273   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6274   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
6279   PyObject 
*swig_obj
[2] ; 
6281   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
; 
6282   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6283   if (!SWIG_IsOK(res1
)) { 
6284     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6286   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6287   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN 
|  0 ); 
6288   if (!SWIG_IsOK(res2
)) { 
6289     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");  
6291   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
6292   if (arg1
) (arg1
)->window 
= arg2
; 
6294   resultobj 
= SWIG_Py_Void(); 
6301 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_window_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6302   PyObject 
*resultobj 
= 0; 
6303   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6304   wxWindow 
*result 
= 0 ; 
6307   PyObject 
*swig_obj
[1] ; 
6309   if (!args
) SWIG_fail
; 
6311   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6312   if (!SWIG_IsOK(res1
)) { 
6313     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6315   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6316   result 
= (wxWindow 
*) ((arg1
)->window
); 
6318     resultobj 
= wxPyMake_wxObject(result
, 0);  
6326 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_frame_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6327   PyObject 
*resultobj 
= 0; 
6328   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6329   wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
6334   PyObject 
*swig_obj
[2] ; 
6336   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
; 
6337   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6338   if (!SWIG_IsOK(res1
)) { 
6339     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6341   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6342   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN 
|  0 ); 
6343   if (!SWIG_IsOK(res2
)) { 
6344     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");  
6346   arg2 
= reinterpret_cast< wxFrame 
* >(argp2
); 
6347   if (arg1
) (arg1
)->frame 
= arg2
; 
6349   resultobj 
= SWIG_Py_Void(); 
6356 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_frame_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6357   PyObject 
*resultobj 
= 0; 
6358   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6359   wxFrame 
*result 
= 0 ; 
6362   PyObject 
*swig_obj
[1] ; 
6364   if (!args
) SWIG_fail
; 
6366   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6367   if (!SWIG_IsOK(res1
)) { 
6368     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6370   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6371   result 
= (wxFrame 
*) ((arg1
)->frame
); 
6373     resultobj 
= wxPyMake_wxObject(result
, 0);  
6381 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_state_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6382   PyObject 
*resultobj 
= 0; 
6383   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6389   PyObject 
*swig_obj
[2] ; 
6391   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
; 
6392   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6393   if (!SWIG_IsOK(res1
)) { 
6394     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6396   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6397   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
6398   if (!SWIG_IsOK(ecode2
)) { 
6399     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "2"" of type '" "int""'"); 
6401   arg2 
= static_cast< int >(val2
); 
6402   if (arg1
) (arg1
)->state 
= arg2
; 
6404   resultobj 
= SWIG_Py_Void(); 
6411 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_state_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6412   PyObject 
*resultobj 
= 0; 
6413   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6417   PyObject 
*swig_obj
[1] ; 
6419   if (!args
) SWIG_fail
; 
6421   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6422   if (!SWIG_IsOK(res1
)) { 
6423     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6425   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6426   result 
= (int) ((arg1
)->state
); 
6427   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6434 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_direction_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6435   PyObject 
*resultobj 
= 0; 
6436   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6442   PyObject 
*swig_obj
[2] ; 
6444   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
; 
6445   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6446   if (!SWIG_IsOK(res1
)) { 
6447     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6449   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6450   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
6451   if (!SWIG_IsOK(ecode2
)) { 
6452     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'"); 
6454   arg2 
= static_cast< int >(val2
); 
6455   if (arg1
) (arg1
)->dock_direction 
= arg2
; 
6457   resultobj 
= SWIG_Py_Void(); 
6464 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_direction_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6465   PyObject 
*resultobj 
= 0; 
6466   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6470   PyObject 
*swig_obj
[1] ; 
6472   if (!args
) SWIG_fail
; 
6474   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6475   if (!SWIG_IsOK(res1
)) { 
6476     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6478   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6479   result 
= (int) ((arg1
)->dock_direction
); 
6480   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6487 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_layer_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6488   PyObject 
*resultobj 
= 0; 
6489   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6495   PyObject 
*swig_obj
[2] ; 
6497   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
; 
6498   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6499   if (!SWIG_IsOK(res1
)) { 
6500     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6502   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6503   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
6504   if (!SWIG_IsOK(ecode2
)) { 
6505     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'"); 
6507   arg2 
= static_cast< int >(val2
); 
6508   if (arg1
) (arg1
)->dock_layer 
= arg2
; 
6510   resultobj 
= SWIG_Py_Void(); 
6517 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_layer_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6518   PyObject 
*resultobj 
= 0; 
6519   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6523   PyObject 
*swig_obj
[1] ; 
6525   if (!args
) SWIG_fail
; 
6527   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6528   if (!SWIG_IsOK(res1
)) { 
6529     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6531   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6532   result 
= (int) ((arg1
)->dock_layer
); 
6533   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6540 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_row_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6541   PyObject 
*resultobj 
= 0; 
6542   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6548   PyObject 
*swig_obj
[2] ; 
6550   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
; 
6551   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6552   if (!SWIG_IsOK(res1
)) { 
6553     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6555   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6556   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
6557   if (!SWIG_IsOK(ecode2
)) { 
6558     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'"); 
6560   arg2 
= static_cast< int >(val2
); 
6561   if (arg1
) (arg1
)->dock_row 
= arg2
; 
6563   resultobj 
= SWIG_Py_Void(); 
6570 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_row_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6571   PyObject 
*resultobj 
= 0; 
6572   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6576   PyObject 
*swig_obj
[1] ; 
6578   if (!args
) SWIG_fail
; 
6580   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6581   if (!SWIG_IsOK(res1
)) { 
6582     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6584   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6585   result 
= (int) ((arg1
)->dock_row
); 
6586   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6593 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_pos_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6594   PyObject 
*resultobj 
= 0; 
6595   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6601   PyObject 
*swig_obj
[2] ; 
6603   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
; 
6604   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6605   if (!SWIG_IsOK(res1
)) { 
6606     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6608   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6609   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
6610   if (!SWIG_IsOK(ecode2
)) { 
6611     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'"); 
6613   arg2 
= static_cast< int >(val2
); 
6614   if (arg1
) (arg1
)->dock_pos 
= arg2
; 
6616   resultobj 
= SWIG_Py_Void(); 
6623 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_pos_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6624   PyObject 
*resultobj 
= 0; 
6625   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6629   PyObject 
*swig_obj
[1] ; 
6631   if (!args
) SWIG_fail
; 
6633   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6634   if (!SWIG_IsOK(res1
)) { 
6635     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6637   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6638   result 
= (int) ((arg1
)->dock_pos
); 
6639   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6646 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_best_size_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6647   PyObject 
*resultobj 
= 0; 
6648   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6649   wxSize 
*arg2 
= (wxSize 
*) 0 ; 
6654   PyObject 
*swig_obj
[2] ; 
6656   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
; 
6657   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6658   if (!SWIG_IsOK(res1
)) { 
6659     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6661   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6662   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 |  0 ); 
6663   if (!SWIG_IsOK(res2
)) { 
6664     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");  
6666   arg2 
= reinterpret_cast< wxSize 
* >(argp2
); 
6667   if (arg1
) (arg1
)->best_size 
= *arg2
; 
6669   resultobj 
= SWIG_Py_Void(); 
6676 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_best_size_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6677   PyObject 
*resultobj 
= 0; 
6678   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6679   wxSize 
*result 
= 0 ; 
6682   PyObject 
*swig_obj
[1] ; 
6684   if (!args
) SWIG_fail
; 
6686   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6687   if (!SWIG_IsOK(res1
)) { 
6688     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6690   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6691   result 
= (wxSize 
*)& ((arg1
)->best_size
); 
6692   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 |  0 ); 
6699 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_min_size_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6700   PyObject 
*resultobj 
= 0; 
6701   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6702   wxSize 
*arg2 
= (wxSize 
*) 0 ; 
6707   PyObject 
*swig_obj
[2] ; 
6709   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
; 
6710   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6711   if (!SWIG_IsOK(res1
)) { 
6712     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6714   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6715   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 |  0 ); 
6716   if (!SWIG_IsOK(res2
)) { 
6717     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");  
6719   arg2 
= reinterpret_cast< wxSize 
* >(argp2
); 
6720   if (arg1
) (arg1
)->min_size 
= *arg2
; 
6722   resultobj 
= SWIG_Py_Void(); 
6729 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_min_size_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6730   PyObject 
*resultobj 
= 0; 
6731   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6732   wxSize 
*result 
= 0 ; 
6735   PyObject 
*swig_obj
[1] ; 
6737   if (!args
) SWIG_fail
; 
6739   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6740   if (!SWIG_IsOK(res1
)) { 
6741     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6743   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6744   result 
= (wxSize 
*)& ((arg1
)->min_size
); 
6745   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 |  0 ); 
6752 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_max_size_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6753   PyObject 
*resultobj 
= 0; 
6754   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6755   wxSize 
*arg2 
= (wxSize 
*) 0 ; 
6760   PyObject 
*swig_obj
[2] ; 
6762   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
; 
6763   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6764   if (!SWIG_IsOK(res1
)) { 
6765     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6767   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6768   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 |  0 ); 
6769   if (!SWIG_IsOK(res2
)) { 
6770     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");  
6772   arg2 
= reinterpret_cast< wxSize 
* >(argp2
); 
6773   if (arg1
) (arg1
)->max_size 
= *arg2
; 
6775   resultobj 
= SWIG_Py_Void(); 
6782 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_max_size_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6783   PyObject 
*resultobj 
= 0; 
6784   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6785   wxSize 
*result 
= 0 ; 
6788   PyObject 
*swig_obj
[1] ; 
6790   if (!args
) SWIG_fail
; 
6792   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6793   if (!SWIG_IsOK(res1
)) { 
6794     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6796   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6797   result 
= (wxSize 
*)& ((arg1
)->max_size
); 
6798   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 |  0 ); 
6805 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_floating_pos_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6806   PyObject 
*resultobj 
= 0; 
6807   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6808   wxPoint 
*arg2 
= (wxPoint 
*) 0 ; 
6813   PyObject 
*swig_obj
[2] ; 
6815   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
; 
6816   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6817   if (!SWIG_IsOK(res1
)) { 
6818     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6820   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6821   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 |  0 ); 
6822   if (!SWIG_IsOK(res2
)) { 
6823     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");  
6825   arg2 
= reinterpret_cast< wxPoint 
* >(argp2
); 
6826   if (arg1
) (arg1
)->floating_pos 
= *arg2
; 
6828   resultobj 
= SWIG_Py_Void(); 
6835 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_floating_pos_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6836   PyObject 
*resultobj 
= 0; 
6837   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6838   wxPoint 
*result 
= 0 ; 
6841   PyObject 
*swig_obj
[1] ; 
6843   if (!args
) SWIG_fail
; 
6845   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6846   if (!SWIG_IsOK(res1
)) { 
6847     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6849   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6850   result 
= (wxPoint 
*)& ((arg1
)->floating_pos
); 
6851   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 |  0 ); 
6858 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_floating_size_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6859   PyObject 
*resultobj 
= 0; 
6860   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6861   wxSize 
*arg2 
= (wxSize 
*) 0 ; 
6866   PyObject 
*swig_obj
[2] ; 
6868   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
; 
6869   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6870   if (!SWIG_IsOK(res1
)) { 
6871     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6873   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6874   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 |  0 ); 
6875   if (!SWIG_IsOK(res2
)) { 
6876     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");  
6878   arg2 
= reinterpret_cast< wxSize 
* >(argp2
); 
6879   if (arg1
) (arg1
)->floating_size 
= *arg2
; 
6881   resultobj 
= SWIG_Py_Void(); 
6888 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_floating_size_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6889   PyObject 
*resultobj 
= 0; 
6890   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6891   wxSize 
*result 
= 0 ; 
6894   PyObject 
*swig_obj
[1] ; 
6896   if (!args
) SWIG_fail
; 
6898   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6899   if (!SWIG_IsOK(res1
)) { 
6900     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6902   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6903   result 
= (wxSize 
*)& ((arg1
)->floating_size
); 
6904   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 |  0 ); 
6911 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_proportion_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6912   PyObject 
*resultobj 
= 0; 
6913   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6919   PyObject 
*swig_obj
[2] ; 
6921   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
; 
6922   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6923   if (!SWIG_IsOK(res1
)) { 
6924     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6926   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6927   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
6928   if (!SWIG_IsOK(ecode2
)) { 
6929     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'"); 
6931   arg2 
= static_cast< int >(val2
); 
6932   if (arg1
) (arg1
)->dock_proportion 
= arg2
; 
6934   resultobj 
= SWIG_Py_Void(); 
6941 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_dock_proportion_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6942   PyObject 
*resultobj 
= 0; 
6943   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6947   PyObject 
*swig_obj
[1] ; 
6949   if (!args
) SWIG_fail
; 
6951   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6952   if (!SWIG_IsOK(res1
)) { 
6953     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6955   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6956   result 
= (int) ((arg1
)->dock_proportion
); 
6957   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6964 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_buttons_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6965   PyObject 
*resultobj 
= 0; 
6966   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
6967   wxAuiPaneButtonArray arg2 
; 
6972   PyObject 
*swig_obj
[2] ; 
6974   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
; 
6975   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
6976   if (!SWIG_IsOK(res1
)) { 
6977     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
6979   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
6981     res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneButtonArray
,  0  | 0); 
6982     if (!SWIG_IsOK(res2
)) { 
6983       SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");  
6986       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'"); 
6988       wxAuiPaneButtonArray 
* temp 
= reinterpret_cast< wxAuiPaneButtonArray 
* >(argp2
); 
6990       if (SWIG_IsNewObj(res2
)) delete temp
; 
6993   if (arg1
) (arg1
)->buttons 
= arg2
; 
6995   resultobj 
= SWIG_Py_Void(); 
7002 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_buttons_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7003   PyObject 
*resultobj 
= 0; 
7004   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
7005   wxAuiPaneButtonArray result
; 
7008   PyObject 
*swig_obj
[1] ; 
7010   if (!args
) SWIG_fail
; 
7012   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
7013   if (!SWIG_IsOK(res1
)) { 
7014     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
7016   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
7017   result 
=  ((arg1
)->buttons
); 
7018   resultobj 
= SWIG_NewPointerObj((new wxAuiPaneButtonArray(static_cast< const wxAuiPaneButtonArray
& >(result
))), SWIGTYPE_p_wxAuiPaneButtonArray
, SWIG_POINTER_OWN 
|  0 ); 
7025 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_rect_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7026   PyObject 
*resultobj 
= 0; 
7027   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
7028   wxRect 
*arg2 
= (wxRect 
*) 0 ; 
7033   PyObject 
*swig_obj
[2] ; 
7035   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
; 
7036   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
7037   if (!SWIG_IsOK(res1
)) { 
7038     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
7040   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
7041   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
7042   if (!SWIG_IsOK(res2
)) { 
7043     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");  
7045   arg2 
= reinterpret_cast< wxRect 
* >(argp2
); 
7046   if (arg1
) (arg1
)->rect 
= *arg2
; 
7048   resultobj 
= SWIG_Py_Void(); 
7055 SWIGINTERN PyObject 
*_wrap_AuiPaneInfo_rect_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7056   PyObject 
*resultobj 
= 0; 
7057   wxAuiPaneInfo 
*arg1 
= (wxAuiPaneInfo 
*) 0 ; 
7058   wxRect 
*result 
= 0 ; 
7061   PyObject 
*swig_obj
[1] ; 
7063   if (!args
) SWIG_fail
; 
7065   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
7066   if (!SWIG_IsOK(res1
)) { 
7067     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");  
7069   arg1 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp1
); 
7070   result 
= (wxRect 
*)& ((arg1
)->rect
); 
7071   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 |  0 ); 
7078 SWIGINTERN PyObject 
*AuiPaneInfo_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7080   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
7081   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneInfo
, SWIG_NewClientData(obj
)); 
7082   return SWIG_Py_Void(); 
7085 SWIGINTERN PyObject 
*AuiPaneInfo_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7086   return SWIG_Python_InitShadowInstance(args
); 
7089 SWIGINTERN PyObject 
*_wrap_new_AuiManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7090   PyObject 
*resultobj 
= 0; 
7091   wxWindow 
*arg1 
= (wxWindow 
*) NULL 
; 
7092   int arg2 
= (int) wxAUI_MGR_DEFAULT 
; 
7093   wxAuiManager 
*result 
= 0 ; 
7098   PyObject 
* obj0 
= 0 ; 
7099   PyObject 
* obj1 
= 0 ; 
7100   char *  kwnames
[] = { 
7101     (char *) "managed_wnd",(char *) "flags", NULL 
 
7104   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7106     res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7107     if (!SWIG_IsOK(res1
)) { 
7108       SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiManager" "', expected argument " "1"" of type '" "wxWindow *""'");  
7110     arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
7113     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7114     if (!SWIG_IsOK(ecode2
)) { 
7115       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiManager" "', expected argument " "2"" of type '" "int""'"); 
7117     arg2 
= static_cast< int >(val2
); 
7120     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7121     result 
= (wxAuiManager 
*)new wxAuiManager(arg1
,arg2
); 
7122     wxPyEndAllowThreads(__tstate
); 
7123     if (PyErr_Occurred()) SWIG_fail
; 
7125   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_NEW 
|  0 ); 
7132 SWIGINTERN PyObject 
*_wrap_delete_AuiManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7133   PyObject 
*resultobj 
= 0; 
7134   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7137   PyObject 
*swig_obj
[1] ; 
7139   if (!args
) SWIG_fail
; 
7141   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN 
|  0 ); 
7142   if (!SWIG_IsOK(res1
)) { 
7143     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiManager" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7145   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7147     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7150     wxPyEndAllowThreads(__tstate
); 
7151     if (PyErr_Occurred()) SWIG_fail
; 
7153   resultobj 
= SWIG_Py_Void(); 
7160 SWIGINTERN PyObject 
*_wrap_AuiManager_UnInit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7161   PyObject 
*resultobj 
= 0; 
7162   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7165   PyObject 
*swig_obj
[1] ; 
7167   if (!args
) SWIG_fail
; 
7169   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7170   if (!SWIG_IsOK(res1
)) { 
7171     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_UnInit" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7173   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7175     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7177     wxPyEndAllowThreads(__tstate
); 
7178     if (PyErr_Occurred()) SWIG_fail
; 
7180   resultobj 
= SWIG_Py_Void(); 
7187 SWIGINTERN PyObject 
*_wrap_AuiManager_SetFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7188   PyObject 
*resultobj 
= 0; 
7189   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7195   PyObject 
* obj0 
= 0 ; 
7196   PyObject 
* obj1 
= 0 ; 
7197   char *  kwnames
[] = { 
7198     (char *) "self",(char *) "flags", NULL 
 
7201   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7202   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7203   if (!SWIG_IsOK(res1
)) { 
7204     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetFlags" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7206   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7207   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7208   if (!SWIG_IsOK(ecode2
)) { 
7209     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetFlags" "', expected argument " "2"" of type '" "int""'"); 
7211   arg2 
= static_cast< int >(val2
); 
7213     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7214     (arg1
)->SetFlags(arg2
); 
7215     wxPyEndAllowThreads(__tstate
); 
7216     if (PyErr_Occurred()) SWIG_fail
; 
7218   resultobj 
= SWIG_Py_Void(); 
7225 SWIGINTERN PyObject 
*_wrap_AuiManager_GetFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7226   PyObject 
*resultobj 
= 0; 
7227   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7231   PyObject 
*swig_obj
[1] ; 
7233   if (!args
) SWIG_fail
; 
7235   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7236   if (!SWIG_IsOK(res1
)) { 
7237     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetFlags" "', expected argument " "1"" of type '" "wxAuiManager const *""'");  
7239   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7241     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7242     result 
= (int)((wxAuiManager 
const *)arg1
)->GetFlags(); 
7243     wxPyEndAllowThreads(__tstate
); 
7244     if (PyErr_Occurred()) SWIG_fail
; 
7246   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
7253 SWIGINTERN PyObject 
*_wrap_AuiManager_SetManagedWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7254   PyObject 
*resultobj 
= 0; 
7255   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7256   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7261   PyObject 
* obj0 
= 0 ; 
7262   PyObject 
* obj1 
= 0 ; 
7263   char *  kwnames
[] = { 
7264     (char *) "self",(char *) "managed_wnd", NULL 
 
7267   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7268   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7269   if (!SWIG_IsOK(res1
)) { 
7270     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7272   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7273   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7274   if (!SWIG_IsOK(res2
)) { 
7275     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");  
7277   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7279     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7280     (arg1
)->SetManagedWindow(arg2
); 
7281     wxPyEndAllowThreads(__tstate
); 
7282     if (PyErr_Occurred()) SWIG_fail
; 
7284   resultobj 
= SWIG_Py_Void(); 
7291 SWIGINTERN PyObject 
*_wrap_AuiManager_GetManagedWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7292   PyObject 
*resultobj 
= 0; 
7293   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7294   wxWindow 
*result 
= 0 ; 
7297   PyObject 
*swig_obj
[1] ; 
7299   if (!args
) SWIG_fail
; 
7301   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7302   if (!SWIG_IsOK(res1
)) { 
7303     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager const *""'");  
7305   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7307     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7308     result 
= (wxWindow 
*)((wxAuiManager 
const *)arg1
)->GetManagedWindow(); 
7309     wxPyEndAllowThreads(__tstate
); 
7310     if (PyErr_Occurred()) SWIG_fail
; 
7313     resultobj 
= wxPyMake_wxObject(result
, 0);  
7321 SWIGINTERN PyObject 
*_wrap_AuiManager_GetManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7322   PyObject 
*resultobj 
= 0; 
7323   wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7324   wxAuiManager 
*result 
= 0 ; 
7327   PyObject 
* obj0 
= 0 ; 
7328   char *  kwnames
[] = { 
7329     (char *) "window", NULL 
 
7332   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:AuiManager_GetManager",kwnames
,&obj0
)) SWIG_fail
; 
7333   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7334   if (!SWIG_IsOK(res1
)) { 
7335     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManager" "', expected argument " "1"" of type '" "wxWindow *""'");  
7337   arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
7339     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7340     result 
= (wxAuiManager 
*)wxAuiManager::GetManager(arg1
); 
7341     wxPyEndAllowThreads(__tstate
); 
7342     if (PyErr_Occurred()) SWIG_fail
; 
7344   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7351 SWIGINTERN PyObject 
*_wrap_AuiManager_SetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7352   PyObject 
*resultobj 
= 0; 
7353   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7354   wxAuiDockArt 
*arg2 
= (wxAuiDockArt 
*) 0 ; 
7358   PyObject 
* obj0 
= 0 ; 
7359   PyObject 
* obj1 
= 0 ; 
7360   char *  kwnames
[] = { 
7361     (char *) "self",(char *) "art_provider", NULL 
 
7364   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7365   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7366   if (!SWIG_IsOK(res1
)) { 
7367     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7369   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7370   res2 
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN 
|  0 ); 
7371   if (!SWIG_IsOK(res2
)) { 
7372     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiDockArt *""'"); 
7375     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7376     (arg1
)->SetArtProvider(arg2
); 
7377     wxPyEndAllowThreads(__tstate
); 
7378     if (PyErr_Occurred()) SWIG_fail
; 
7380   resultobj 
= SWIG_Py_Void(); 
7387 SWIGINTERN PyObject 
*_wrap_AuiManager_GetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7388   PyObject 
*resultobj 
= 0; 
7389   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7390   wxAuiDockArt 
*result 
= 0 ; 
7393   PyObject 
*swig_obj
[1] ; 
7395   if (!args
) SWIG_fail
; 
7397   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7398   if (!SWIG_IsOK(res1
)) { 
7399     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager const *""'");  
7401   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7403     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7404     result 
= (wxAuiDockArt 
*)((wxAuiManager 
const *)arg1
)->GetArtProvider(); 
7405     wxPyEndAllowThreads(__tstate
); 
7406     if (PyErr_Occurred()) SWIG_fail
; 
7408   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
7415 SWIGINTERN PyObject 
*_wrap_AuiManager__GetPaneByWidget(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7416   PyObject 
*resultobj 
= 0; 
7417   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7418   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7419   wxAuiPaneInfo 
*result 
= 0 ; 
7424   PyObject 
* obj0 
= 0 ; 
7425   PyObject 
* obj1 
= 0 ; 
7426   char *  kwnames
[] = { 
7427     (char *) "self",(char *) "window", NULL 
 
7430   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7431   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7432   if (!SWIG_IsOK(res1
)) { 
7433     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7435   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7436   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7437   if (!SWIG_IsOK(res2
)) { 
7438     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");  
7440   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7442     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7444       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->GetPane(arg2
); 
7445       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
7447     wxPyEndAllowThreads(__tstate
); 
7448     if (PyErr_Occurred()) SWIG_fail
; 
7450   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
7457 SWIGINTERN PyObject 
*_wrap_AuiManager__GetPaneByName(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7458   PyObject 
*resultobj 
= 0; 
7459   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7460   wxString 
*arg2 
= 0 ; 
7461   wxAuiPaneInfo 
*result 
= 0 ; 
7464   bool temp2 
= false ; 
7465   PyObject 
* obj0 
= 0 ; 
7466   PyObject 
* obj1 
= 0 ; 
7467   char *  kwnames
[] = { 
7468     (char *) "self",(char *) "name", NULL 
 
7471   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7472   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7473   if (!SWIG_IsOK(res1
)) { 
7474     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByName" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7476   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7478     arg2 
= wxString_in_helper(obj1
); 
7479     if (arg2 
== NULL
) SWIG_fail
; 
7483     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7485       wxAuiPaneInfo 
&_result_ref 
= (arg1
)->GetPane((wxString 
const &)*arg2
); 
7486       result 
= (wxAuiPaneInfo 
*) &_result_ref
; 
7488     wxPyEndAllowThreads(__tstate
); 
7489     if (PyErr_Occurred()) SWIG_fail
; 
7491   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
7506 SWIGINTERN PyObject 
*_wrap_AuiManager_GetAllPanes(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7507   PyObject 
*resultobj 
= 0; 
7508   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7509   wxAuiPaneInfoArray 
*result 
= 0 ; 
7512   PyObject 
*swig_obj
[1] ; 
7514   if (!args
) SWIG_fail
; 
7516   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7517   if (!SWIG_IsOK(res1
)) { 
7518     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetAllPanes" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7520   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7522     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7524       wxAuiPaneInfoArray 
&_result_ref 
= (arg1
)->GetAllPanes(); 
7525       result 
= (wxAuiPaneInfoArray 
*) &_result_ref
; 
7527     wxPyEndAllowThreads(__tstate
); 
7528     if (PyErr_Occurred()) SWIG_fail
; 
7531     resultobj 
= PyList_New(0); 
7532     for (size_t i
=0; i 
< result
->GetCount(); i
++) { 
7533       PyObject
* pane_obj 
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxAuiPaneInfo
, 0); 
7534       PyList_Append(resultobj
, pane_obj
); 
7543 SWIGINTERN PyObject 
*_wrap_AuiManager__AddPane1(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7544   PyObject 
*resultobj 
= 0; 
7545   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7546   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7547   wxAuiPaneInfo 
*arg3 
= 0 ; 
7555   PyObject 
* obj0 
= 0 ; 
7556   PyObject 
* obj1 
= 0 ; 
7557   PyObject 
* obj2 
= 0 ; 
7558   char *  kwnames
[] = { 
7559     (char *) "self",(char *) "window",(char *) "pane_info", NULL 
 
7562   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
7563   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7564   if (!SWIG_IsOK(res1
)) { 
7565     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane1" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7567   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7568   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7569   if (!SWIG_IsOK(res2
)) { 
7570     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");  
7572   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7573   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
7574   if (!SWIG_IsOK(res3
)) { 
7575     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
7578     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
7580   arg3 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp3
); 
7582     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7583     result 
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo 
const &)*arg3
); 
7584     wxPyEndAllowThreads(__tstate
); 
7585     if (PyErr_Occurred()) SWIG_fail
; 
7588     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7596 SWIGINTERN PyObject 
*_wrap_AuiManager_AddPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7597   PyObject 
*resultobj 
= 0; 
7598   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7599   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7600   wxAuiPaneInfo 
*arg3 
= 0 ; 
7610   PyObject 
* obj0 
= 0 ; 
7611   PyObject 
* obj1 
= 0 ; 
7612   PyObject 
* obj2 
= 0 ; 
7613   PyObject 
* obj3 
= 0 ; 
7614   char *  kwnames
[] = { 
7615     (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL 
 
7618   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_AddPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
7619   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7620   if (!SWIG_IsOK(res1
)) { 
7621     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_AddPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7623   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7624   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7625   if (!SWIG_IsOK(res2
)) { 
7626     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_AddPane" "', expected argument " "2"" of type '" "wxWindow *""'");  
7628   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7629   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
7630   if (!SWIG_IsOK(res3
)) { 
7631     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
7634     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
7636   arg3 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp3
); 
7639     if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
7642     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7643     result 
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo 
const &)*arg3
,(wxPoint 
const &)*arg4
); 
7644     wxPyEndAllowThreads(__tstate
); 
7645     if (PyErr_Occurred()) SWIG_fail
; 
7648     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7656 SWIGINTERN PyObject 
*_wrap_AuiManager__AddPane2(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7657   PyObject 
*resultobj 
= 0; 
7658   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7659   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7660   int arg3 
= (int) wxLEFT 
; 
7661   wxString 
const &arg4_defvalue 
= wxEmptyString 
; 
7662   wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
7670   bool temp4 
= false ; 
7671   PyObject 
* obj0 
= 0 ; 
7672   PyObject 
* obj1 
= 0 ; 
7673   PyObject 
* obj2 
= 0 ; 
7674   PyObject 
* obj3 
= 0 ; 
7675   char *  kwnames
[] = { 
7676     (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL 
 
7679   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:AuiManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
7680   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7681   if (!SWIG_IsOK(res1
)) { 
7682     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane2" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7684   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7685   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7686   if (!SWIG_IsOK(res2
)) { 
7687     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");  
7689   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7691     ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
7692     if (!SWIG_IsOK(ecode3
)) { 
7693       SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager__AddPane2" "', expected argument " "3"" of type '" "int""'"); 
7695     arg3 
= static_cast< int >(val3
); 
7699       arg4 
= wxString_in_helper(obj3
); 
7700       if (arg4 
== NULL
) SWIG_fail
; 
7705     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7706     result 
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString 
const &)*arg4
); 
7707     wxPyEndAllowThreads(__tstate
); 
7708     if (PyErr_Occurred()) SWIG_fail
; 
7711     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7727 SWIGINTERN PyObject 
*_wrap_AuiManager_InsertPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7728   PyObject 
*resultobj 
= 0; 
7729   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7730   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7731   wxAuiPaneInfo 
*arg3 
= 0 ; 
7732   int arg4 
= (int) wxAUI_INSERT_PANE 
; 
7742   PyObject 
* obj0 
= 0 ; 
7743   PyObject 
* obj1 
= 0 ; 
7744   PyObject 
* obj2 
= 0 ; 
7745   PyObject 
* obj3 
= 0 ; 
7746   char *  kwnames
[] = { 
7747     (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL 
 
7750   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:AuiManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
7751   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7752   if (!SWIG_IsOK(res1
)) { 
7753     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_InsertPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7755   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7756   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7757   if (!SWIG_IsOK(res2
)) { 
7758     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");  
7760   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7761   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
7762   if (!SWIG_IsOK(res3
)) { 
7763     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
7766     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
7768   arg3 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp3
); 
7770     ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
7771     if (!SWIG_IsOK(ecode4
)) { 
7772       SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiManager_InsertPane" "', expected argument " "4"" of type '" "int""'"); 
7774     arg4 
= static_cast< int >(val4
); 
7777     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7778     result 
= (bool)(arg1
)->InsertPane(arg2
,(wxAuiPaneInfo 
const &)*arg3
,arg4
); 
7779     wxPyEndAllowThreads(__tstate
); 
7780     if (PyErr_Occurred()) SWIG_fail
; 
7783     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7791 SWIGINTERN PyObject 
*_wrap_AuiManager_DetachPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7792   PyObject 
*resultobj 
= 0; 
7793   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7794   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7800   PyObject 
* obj0 
= 0 ; 
7801   PyObject 
* obj1 
= 0 ; 
7802   char *  kwnames
[] = { 
7803     (char *) "self",(char *) "window", NULL 
 
7806   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7807   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7808   if (!SWIG_IsOK(res1
)) { 
7809     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DetachPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7811   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7812   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
7813   if (!SWIG_IsOK(res2
)) { 
7814     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");  
7816   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
7818     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7819     result 
= (bool)(arg1
)->DetachPane(arg2
); 
7820     wxPyEndAllowThreads(__tstate
); 
7821     if (PyErr_Occurred()) SWIG_fail
; 
7824     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7832 SWIGINTERN PyObject 
*_wrap_AuiManager_Update(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7833   PyObject 
*resultobj 
= 0; 
7834   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7837   PyObject 
*swig_obj
[1] ; 
7839   if (!args
) SWIG_fail
; 
7841   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7842   if (!SWIG_IsOK(res1
)) { 
7843     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_Update" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7845   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7847     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7849     wxPyEndAllowThreads(__tstate
); 
7850     if (PyErr_Occurred()) SWIG_fail
; 
7852   resultobj 
= SWIG_Py_Void(); 
7859 SWIGINTERN PyObject 
*_wrap_AuiManager_SavePaneInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7860   PyObject 
*resultobj 
= 0; 
7861   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7862   wxAuiPaneInfo 
*arg2 
= 0 ; 
7868   PyObject 
* obj0 
= 0 ; 
7869   PyObject 
* obj1 
= 0 ; 
7870   char *  kwnames
[] = { 
7871     (char *) "self",(char *) "pane", NULL 
 
7874   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7875   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7876   if (!SWIG_IsOK(res1
)) { 
7877     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7879   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7880   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
7881   if (!SWIG_IsOK(res2
)) { 
7882     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
7885     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
7887   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
7889     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7890     result 
= (arg1
)->SavePaneInfo(*arg2
); 
7891     wxPyEndAllowThreads(__tstate
); 
7892     if (PyErr_Occurred()) SWIG_fail
; 
7896     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7898     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7907 SWIGINTERN PyObject 
*_wrap_AuiManager_LoadPaneInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7908   PyObject 
*resultobj 
= 0; 
7909   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7911   wxAuiPaneInfo 
*arg3 
= 0 ; 
7916   PyObject 
* obj0 
= 0 ; 
7917   PyObject 
* obj1 
= 0 ; 
7918   PyObject 
* obj2 
= 0 ; 
7919   char *  kwnames
[] = { 
7920     (char *) "self",(char *) "pane_part",(char *) "pane", NULL 
 
7923   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
7924   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7925   if (!SWIG_IsOK(res1
)) { 
7926     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7928   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7930     wxString
* sptr 
= wxString_in_helper(obj1
); 
7931     if (sptr 
== NULL
) SWIG_fail
; 
7935   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
7936   if (!SWIG_IsOK(res3
)) { 
7937     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");  
7940     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");  
7942   arg3 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp3
); 
7944     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7945     (arg1
)->LoadPaneInfo(arg2
,*arg3
); 
7946     wxPyEndAllowThreads(__tstate
); 
7947     if (PyErr_Occurred()) SWIG_fail
; 
7949   resultobj 
= SWIG_Py_Void(); 
7956 SWIGINTERN PyObject 
*_wrap_AuiManager_SavePerspective(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7957   PyObject 
*resultobj 
= 0; 
7958   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7962   PyObject 
*swig_obj
[1] ; 
7964   if (!args
) SWIG_fail
; 
7966   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
7967   if (!SWIG_IsOK(res1
)) { 
7968     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
7970   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
7972     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7973     result 
= (arg1
)->SavePerspective(); 
7974     wxPyEndAllowThreads(__tstate
); 
7975     if (PyErr_Occurred()) SWIG_fail
; 
7979     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7981     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7990 SWIGINTERN PyObject 
*_wrap_AuiManager_LoadPerspective(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7991   PyObject 
*resultobj 
= 0; 
7992   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
7993   wxString 
*arg2 
= 0 ; 
7994   bool arg3 
= (bool) true ; 
7998   bool temp2 
= false ; 
8001   PyObject 
* obj0 
= 0 ; 
8002   PyObject 
* obj1 
= 0 ; 
8003   PyObject 
* obj2 
= 0 ; 
8004   char *  kwnames
[] = { 
8005     (char *) "self",(char *) "perspective",(char *) "update", NULL 
 
8008   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
8009   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8010   if (!SWIG_IsOK(res1
)) { 
8011     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8013   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8015     arg2 
= wxString_in_helper(obj1
); 
8016     if (arg2 
== NULL
) SWIG_fail
; 
8020     ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
8021     if (!SWIG_IsOK(ecode3
)) { 
8022       SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'"); 
8024     arg3 
= static_cast< bool >(val3
); 
8027     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8028     result 
= (bool)(arg1
)->LoadPerspective((wxString 
const &)*arg2
,arg3
); 
8029     wxPyEndAllowThreads(__tstate
); 
8030     if (PyErr_Occurred()) SWIG_fail
; 
8033     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8049 SWIGINTERN PyObject 
*_wrap_AuiManager_SetDockSizeConstraint(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8050   PyObject 
*resultobj 
= 0; 
8051   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8060   PyObject 
* obj0 
= 0 ; 
8061   PyObject 
* obj1 
= 0 ; 
8062   PyObject 
* obj2 
= 0 ; 
8063   char *  kwnames
[] = { 
8064     (char *) "self",(char *) "width_pct",(char *) "height_pct", NULL 
 
8067   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_SetDockSizeConstraint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
8068   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8069   if (!SWIG_IsOK(res1
)) { 
8070     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8072   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8073   ecode2 
= SWIG_AsVal_double(obj1
, &val2
); 
8074   if (!SWIG_IsOK(ecode2
)) { 
8075     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "2"" of type '" "double""'"); 
8077   arg2 
= static_cast< double >(val2
); 
8078   ecode3 
= SWIG_AsVal_double(obj2
, &val3
); 
8079   if (!SWIG_IsOK(ecode3
)) { 
8080     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "3"" of type '" "double""'"); 
8082   arg3 
= static_cast< double >(val3
); 
8084     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8085     (arg1
)->SetDockSizeConstraint(arg2
,arg3
); 
8086     wxPyEndAllowThreads(__tstate
); 
8087     if (PyErr_Occurred()) SWIG_fail
; 
8089   resultobj 
= SWIG_Py_Void(); 
8096 SWIGINTERN PyObject 
*_wrap_AuiManager_GetDockSizeConstraint(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8097   PyObject 
*resultobj 
= 0; 
8098   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8099   double *arg2 
= (double *) 0 ; 
8100   double *arg3 
= (double *) 0 ; 
8107   PyObject 
* obj0 
= 0 ; 
8108   PyObject 
* obj1 
= 0 ; 
8109   PyObject 
* obj2 
= 0 ; 
8110   char *  kwnames
[] = { 
8111     (char *) "self",(char *) "width_pct",(char *) "height_pct", NULL 
 
8114   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_GetDockSizeConstraint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
8115   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8116   if (!SWIG_IsOK(res1
)) { 
8117     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "1"" of type '" "wxAuiManager const *""'");  
8119   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8120   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_double
, 0 |  0 ); 
8121   if (!SWIG_IsOK(res2
)) { 
8122     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "2"" of type '" "double *""'");  
8124   arg2 
= reinterpret_cast< double * >(argp2
); 
8125   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_double
, 0 |  0 ); 
8126   if (!SWIG_IsOK(res3
)) { 
8127     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "3"" of type '" "double *""'");  
8129   arg3 
= reinterpret_cast< double * >(argp3
); 
8131     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8132     ((wxAuiManager 
const *)arg1
)->GetDockSizeConstraint(arg2
,arg3
); 
8133     wxPyEndAllowThreads(__tstate
); 
8134     if (PyErr_Occurred()) SWIG_fail
; 
8136   resultobj 
= SWIG_Py_Void(); 
8143 SWIGINTERN PyObject 
*_wrap_AuiManager_ClosePane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8144   PyObject 
*resultobj 
= 0; 
8145   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8146   wxAuiPaneInfo 
*arg2 
= 0 ; 
8151   PyObject 
* obj0 
= 0 ; 
8152   PyObject 
* obj1 
= 0 ; 
8153   char *  kwnames
[] = { 
8154     (char *) "self",(char *) "pane_info", NULL 
 
8157   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ClosePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8158   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8159   if (!SWIG_IsOK(res1
)) { 
8160     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ClosePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8162   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8163   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
8164   if (!SWIG_IsOK(res2
)) { 
8165     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
8168     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
8170   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
8172     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8173     (arg1
)->ClosePane(*arg2
); 
8174     wxPyEndAllowThreads(__tstate
); 
8175     if (PyErr_Occurred()) SWIG_fail
; 
8177   resultobj 
= SWIG_Py_Void(); 
8184 SWIGINTERN PyObject 
*_wrap_AuiManager_MaximizePane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8185   PyObject 
*resultobj 
= 0; 
8186   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8187   wxAuiPaneInfo 
*arg2 
= 0 ; 
8192   PyObject 
* obj0 
= 0 ; 
8193   PyObject 
* obj1 
= 0 ; 
8194   char *  kwnames
[] = { 
8195     (char *) "self",(char *) "pane_info", NULL 
 
8198   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_MaximizePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8199   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8200   if (!SWIG_IsOK(res1
)) { 
8201     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_MaximizePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8203   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8204   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
8205   if (!SWIG_IsOK(res2
)) { 
8206     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
8209     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
8211   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
8213     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8214     (arg1
)->MaximizePane(*arg2
); 
8215     wxPyEndAllowThreads(__tstate
); 
8216     if (PyErr_Occurred()) SWIG_fail
; 
8218   resultobj 
= SWIG_Py_Void(); 
8225 SWIGINTERN PyObject 
*_wrap_AuiManager_RestorePane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8226   PyObject 
*resultobj 
= 0; 
8227   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8228   wxAuiPaneInfo 
*arg2 
= 0 ; 
8233   PyObject 
* obj0 
= 0 ; 
8234   PyObject 
* obj1 
= 0 ; 
8235   char *  kwnames
[] = { 
8236     (char *) "self",(char *) "pane_info", NULL 
 
8239   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_RestorePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8240   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8241   if (!SWIG_IsOK(res1
)) { 
8242     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestorePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8244   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8245   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
8246   if (!SWIG_IsOK(res2
)) { 
8247     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
8250     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");  
8252   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
8254     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8255     (arg1
)->RestorePane(*arg2
); 
8256     wxPyEndAllowThreads(__tstate
); 
8257     if (PyErr_Occurred()) SWIG_fail
; 
8259   resultobj 
= SWIG_Py_Void(); 
8266 SWIGINTERN PyObject 
*_wrap_AuiManager_RestoreMaximizedPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8267   PyObject 
*resultobj 
= 0; 
8268   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8271   PyObject 
*swig_obj
[1] ; 
8273   if (!args
) SWIG_fail
; 
8275   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8276   if (!SWIG_IsOK(res1
)) { 
8277     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestoreMaximizedPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8279   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8281     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8282     (arg1
)->RestoreMaximizedPane(); 
8283     wxPyEndAllowThreads(__tstate
); 
8284     if (PyErr_Occurred()) SWIG_fail
; 
8286   resultobj 
= SWIG_Py_Void(); 
8293 SWIGINTERN PyObject 
*_wrap_AuiManager_CreateFloatingFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8294   PyObject 
*resultobj 
= 0; 
8295   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8296   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
8297   wxAuiPaneInfo 
*arg3 
= 0 ; 
8298   wxAuiFloatingFrame 
*result 
= 0 ; 
8305   PyObject 
* obj0 
= 0 ; 
8306   PyObject 
* obj1 
= 0 ; 
8307   PyObject 
* obj2 
= 0 ; 
8308   char *  kwnames
[] = { 
8309     (char *) "self",(char *) "parent",(char *) "p", NULL 
 
8312   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_CreateFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
8313   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8314   if (!SWIG_IsOK(res1
)) { 
8315     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8317   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8318   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
8319   if (!SWIG_IsOK(res2
)) { 
8320     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "2"" of type '" "wxWindow *""'");  
8322   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
8323   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
8324   if (!SWIG_IsOK(res3
)) { 
8325     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
8328     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
8330   arg3 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp3
); 
8332     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8333     result 
= (wxAuiFloatingFrame 
*)(arg1
)->CreateFloatingFrame(arg2
,(wxAuiPaneInfo 
const &)*arg3
); 
8334     wxPyEndAllowThreads(__tstate
); 
8335     if (PyErr_Occurred()) SWIG_fail
; 
8337   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, 0 |  0 ); 
8344 SWIGINTERN PyObject 
*_wrap_AuiManager_StartPaneDrag(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8345   PyObject 
*resultobj 
= 0; 
8346   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8347   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
8354   PyObject 
* obj0 
= 0 ; 
8355   PyObject 
* obj1 
= 0 ; 
8356   PyObject 
* obj2 
= 0 ; 
8357   char *  kwnames
[] = { 
8358     (char *) "self",(char *) "pane_window",(char *) "offset", NULL 
 
8361   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_StartPaneDrag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
8362   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8363   if (!SWIG_IsOK(res1
)) { 
8364     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_StartPaneDrag" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8366   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8367   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
8368   if (!SWIG_IsOK(res2
)) { 
8369     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_StartPaneDrag" "', expected argument " "2"" of type '" "wxWindow *""'");  
8371   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
8374     if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
8377     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8378     (arg1
)->StartPaneDrag(arg2
,(wxPoint 
const &)*arg3
); 
8379     wxPyEndAllowThreads(__tstate
); 
8380     if (PyErr_Occurred()) SWIG_fail
; 
8382   resultobj 
= SWIG_Py_Void(); 
8389 SWIGINTERN PyObject 
*_wrap_AuiManager_CalculateHintRect(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8390   PyObject 
*resultobj 
= 0; 
8391   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8392   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
8402   PyObject 
* obj0 
= 0 ; 
8403   PyObject 
* obj1 
= 0 ; 
8404   PyObject 
* obj2 
= 0 ; 
8405   PyObject 
* obj3 
= 0 ; 
8406   char *  kwnames
[] = { 
8407     (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL 
 
8410   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_CalculateHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
8411   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8412   if (!SWIG_IsOK(res1
)) { 
8413     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8415   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8416   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
8417   if (!SWIG_IsOK(res2
)) { 
8418     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");  
8420   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
8423     if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
8427     if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
8430     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8431     result 
= (arg1
)->CalculateHintRect(arg2
,(wxPoint 
const &)*arg3
,(wxPoint 
const &)*arg4
); 
8432     wxPyEndAllowThreads(__tstate
); 
8433     if (PyErr_Occurred()) SWIG_fail
; 
8435   resultobj 
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN 
|  0 ); 
8442 SWIGINTERN PyObject 
*_wrap_AuiManager_DrawHintRect(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8443   PyObject 
*resultobj 
= 0; 
8444   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8445   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
8454   PyObject 
* obj0 
= 0 ; 
8455   PyObject 
* obj1 
= 0 ; 
8456   PyObject 
* obj2 
= 0 ; 
8457   PyObject 
* obj3 
= 0 ; 
8458   char *  kwnames
[] = { 
8459     (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL 
 
8462   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
8463   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8464   if (!SWIG_IsOK(res1
)) { 
8465     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8467   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8468   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
8469   if (!SWIG_IsOK(res2
)) { 
8470     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");  
8472   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
8475     if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
8479     if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
8482     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8483     (arg1
)->DrawHintRect(arg2
,(wxPoint 
const &)*arg3
,(wxPoint 
const &)*arg4
); 
8484     wxPyEndAllowThreads(__tstate
); 
8485     if (PyErr_Occurred()) SWIG_fail
; 
8487   resultobj 
= SWIG_Py_Void(); 
8494 SWIGINTERN PyObject 
*_wrap_AuiManager_ShowHint(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8495   PyObject 
*resultobj 
= 0; 
8496   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8501   PyObject 
* obj0 
= 0 ; 
8502   PyObject 
* obj1 
= 0 ; 
8503   char *  kwnames
[] = { 
8504     (char *) "self",(char *) "rect", NULL 
 
8507   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8508   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8509   if (!SWIG_IsOK(res1
)) { 
8510     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ShowHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8512   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8515     if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
; 
8518     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8519     (arg1
)->ShowHint((wxRect 
const &)*arg2
); 
8520     wxPyEndAllowThreads(__tstate
); 
8521     if (PyErr_Occurred()) SWIG_fail
; 
8523   resultobj 
= SWIG_Py_Void(); 
8530 SWIGINTERN PyObject 
*_wrap_AuiManager_HideHint(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8531   PyObject 
*resultobj 
= 0; 
8532   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8535   PyObject 
*swig_obj
[1] ; 
8537   if (!args
) SWIG_fail
; 
8539   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8540   if (!SWIG_IsOK(res1
)) { 
8541     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_HideHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8543   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8545     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8547     wxPyEndAllowThreads(__tstate
); 
8548     if (PyErr_Occurred()) SWIG_fail
; 
8550   resultobj 
= SWIG_Py_Void(); 
8557 SWIGINTERN PyObject 
*_wrap_AuiManager_OnRender(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8558   PyObject 
*resultobj 
= 0; 
8559   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8560   wxAuiManagerEvent 
*arg2 
= 0 ; 
8565   PyObject 
* obj0 
= 0 ; 
8566   PyObject 
* obj1 
= 0 ; 
8567   char *  kwnames
[] = { 
8568     (char *) "self",(char *) "evt", NULL 
 
8571   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8572   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8573   if (!SWIG_IsOK(res1
)) { 
8574     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnRender" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8576   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8577   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
,  0 ); 
8578   if (!SWIG_IsOK(res2
)) { 
8579     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");  
8582     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");  
8584   arg2 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp2
); 
8586     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8587     (arg1
)->OnRender(*arg2
); 
8588     wxPyEndAllowThreads(__tstate
); 
8589     if (PyErr_Occurred()) SWIG_fail
; 
8591   resultobj 
= SWIG_Py_Void(); 
8598 SWIGINTERN PyObject 
*_wrap_AuiManager_OnPaneButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8599   PyObject 
*resultobj 
= 0; 
8600   wxAuiManager 
*arg1 
= (wxAuiManager 
*) 0 ; 
8601   wxAuiManagerEvent 
*arg2 
= 0 ; 
8606   PyObject 
* obj0 
= 0 ; 
8607   PyObject 
* obj1 
= 0 ; 
8608   char *  kwnames
[] = { 
8609     (char *) "self",(char *) "evt", NULL 
 
8612   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8613   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8614   if (!SWIG_IsOK(res1
)) { 
8615     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "1"" of type '" "wxAuiManager *""'");  
8617   arg1 
= reinterpret_cast< wxAuiManager 
* >(argp1
); 
8618   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
,  0 ); 
8619   if (!SWIG_IsOK(res2
)) { 
8620     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");  
8623     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");  
8625   arg2 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp2
); 
8627     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8628     (arg1
)->OnPaneButton(*arg2
); 
8629     wxPyEndAllowThreads(__tstate
); 
8630     if (PyErr_Occurred()) SWIG_fail
; 
8632   resultobj 
= SWIG_Py_Void(); 
8639 SWIGINTERN PyObject 
*AuiManager_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8641   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
8642   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManager
, SWIG_NewClientData(obj
)); 
8643   return SWIG_Py_Void(); 
8646 SWIGINTERN PyObject 
*AuiManager_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8647   return SWIG_Python_InitShadowInstance(args
); 
8650 SWIGINTERN PyObject 
*_wrap_new_AuiManagerEvent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8651   PyObject 
*resultobj 
= 0; 
8652   wxEventType arg1 
= (wxEventType
) wxEVT_NULL 
; 
8653   wxAuiManagerEvent 
*result 
= 0 ; 
8656   PyObject 
* obj0 
= 0 ; 
8657   char *  kwnames
[] = { 
8658     (char *) "type", NULL 
 
8661   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_AuiManagerEvent",kwnames
,&obj0
)) SWIG_fail
; 
8663     ecode1 
= SWIG_AsVal_int(obj0
, &val1
); 
8664     if (!SWIG_IsOK(ecode1
)) { 
8665       SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'"); 
8667     arg1 
= static_cast< wxEventType 
>(val1
); 
8670     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8671     result 
= (wxAuiManagerEvent 
*)new wxAuiManagerEvent(arg1
); 
8672     wxPyEndAllowThreads(__tstate
); 
8673     if (PyErr_Occurred()) SWIG_fail
; 
8675   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManagerEvent
, SWIG_POINTER_NEW 
|  0 ); 
8682 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_Clone(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8683   PyObject 
*resultobj 
= 0; 
8684   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8685   wxEvent 
*result 
= 0 ; 
8688   PyObject 
*swig_obj
[1] ; 
8690   if (!args
) SWIG_fail
; 
8692   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8693   if (!SWIG_IsOK(res1
)) { 
8694     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Clone" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
8696   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8698     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8699     result 
= (wxEvent 
*)((wxAuiManagerEvent 
const *)arg1
)->Clone(); 
8700     wxPyEndAllowThreads(__tstate
); 
8701     if (PyErr_Occurred()) SWIG_fail
; 
8703   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 |  0 ); 
8710 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_SetManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8711   PyObject 
*resultobj 
= 0; 
8712   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8713   wxAuiManager 
*arg2 
= (wxAuiManager 
*) 0 ; 
8718   PyObject 
* obj0 
= 0 ; 
8719   PyObject 
* obj1 
= 0 ; 
8720   char *  kwnames
[] = { 
8721     (char *) "self",(char *) "mgr", NULL 
 
8724   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8725   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8726   if (!SWIG_IsOK(res1
)) { 
8727     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
8729   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8730   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8731   if (!SWIG_IsOK(res2
)) { 
8732     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "2"" of type '" "wxAuiManager *""'");  
8734   arg2 
= reinterpret_cast< wxAuiManager 
* >(argp2
); 
8736     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8737     (arg1
)->SetManager(arg2
); 
8738     wxPyEndAllowThreads(__tstate
); 
8739     if (PyErr_Occurred()) SWIG_fail
; 
8741   resultobj 
= SWIG_Py_Void(); 
8748 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_SetPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8749   PyObject 
*resultobj 
= 0; 
8750   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8751   wxAuiPaneInfo 
*arg2 
= (wxAuiPaneInfo 
*) 0 ; 
8756   PyObject 
* obj0 
= 0 ; 
8757   PyObject 
* obj1 
= 0 ; 
8758   char *  kwnames
[] = { 
8759     (char *) "self",(char *) "p", NULL 
 
8762   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8763   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8764   if (!SWIG_IsOK(res1
)) { 
8765     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
8767   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8768   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
8769   if (!SWIG_IsOK(res2
)) { 
8770     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");  
8772   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
8774     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8775     (arg1
)->SetPane(arg2
); 
8776     wxPyEndAllowThreads(__tstate
); 
8777     if (PyErr_Occurred()) SWIG_fail
; 
8779   resultobj 
= SWIG_Py_Void(); 
8786 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_SetButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8787   PyObject 
*resultobj 
= 0; 
8788   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8794   PyObject 
* obj0 
= 0 ; 
8795   PyObject 
* obj1 
= 0 ; 
8796   char *  kwnames
[] = { 
8797     (char *) "self",(char *) "b", NULL 
 
8800   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8801   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8802   if (!SWIG_IsOK(res1
)) { 
8803     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
8805   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8806   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8807   if (!SWIG_IsOK(ecode2
)) { 
8808     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'"); 
8810   arg2 
= static_cast< int >(val2
); 
8812     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8813     (arg1
)->SetButton(arg2
); 
8814     wxPyEndAllowThreads(__tstate
); 
8815     if (PyErr_Occurred()) SWIG_fail
; 
8817   resultobj 
= SWIG_Py_Void(); 
8824 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_SetDC(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8825   PyObject 
*resultobj 
= 0; 
8826   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8827   wxDC 
*arg2 
= (wxDC 
*) 0 ; 
8832   PyObject 
* obj0 
= 0 ; 
8833   PyObject 
* obj1 
= 0 ; 
8834   char *  kwnames
[] = { 
8835     (char *) "self",(char *) "pdc", NULL 
 
8838   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8839   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8840   if (!SWIG_IsOK(res1
)) { 
8841     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
8843   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8844   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 |  0 ); 
8845   if (!SWIG_IsOK(res2
)) { 
8846     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");  
8848   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
8850     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8851     (arg1
)->SetDC(arg2
); 
8852     wxPyEndAllowThreads(__tstate
); 
8853     if (PyErr_Occurred()) SWIG_fail
; 
8855   resultobj 
= SWIG_Py_Void(); 
8862 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_GetManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8863   PyObject 
*resultobj 
= 0; 
8864   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8865   wxAuiManager 
*result 
= 0 ; 
8868   PyObject 
*swig_obj
[1] ; 
8870   if (!args
) SWIG_fail
; 
8872   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8873   if (!SWIG_IsOK(res1
)) { 
8874     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
8876   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8878     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8879     result 
= (wxAuiManager 
*)((wxAuiManagerEvent 
const *)arg1
)->GetManager(); 
8880     wxPyEndAllowThreads(__tstate
); 
8881     if (PyErr_Occurred()) SWIG_fail
; 
8883   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
8890 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_GetPane(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8891   PyObject 
*resultobj 
= 0; 
8892   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8893   wxAuiPaneInfo 
*result 
= 0 ; 
8896   PyObject 
*swig_obj
[1] ; 
8898   if (!args
) SWIG_fail
; 
8900   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8901   if (!SWIG_IsOK(res1
)) { 
8902     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
8904   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8906     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8907     result 
= (wxAuiPaneInfo 
*)((wxAuiManagerEvent 
const *)arg1
)->GetPane(); 
8908     wxPyEndAllowThreads(__tstate
); 
8909     if (PyErr_Occurred()) SWIG_fail
; 
8911   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
8918 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_GetButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8919   PyObject 
*resultobj 
= 0; 
8920   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8924   PyObject 
*swig_obj
[1] ; 
8926   if (!args
) SWIG_fail
; 
8928   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8929   if (!SWIG_IsOK(res1
)) { 
8930     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
8932   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8934     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8935     result 
= (int)((wxAuiManagerEvent 
const *)arg1
)->GetButton(); 
8936     wxPyEndAllowThreads(__tstate
); 
8937     if (PyErr_Occurred()) SWIG_fail
; 
8939   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8946 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_GetDC(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8947   PyObject 
*resultobj 
= 0; 
8948   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8952   PyObject 
*swig_obj
[1] ; 
8954   if (!args
) SWIG_fail
; 
8956   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8957   if (!SWIG_IsOK(res1
)) { 
8958     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
8960   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8962     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8963     result 
= (wxDC 
*)((wxAuiManagerEvent 
const *)arg1
)->GetDC(); 
8964     wxPyEndAllowThreads(__tstate
); 
8965     if (PyErr_Occurred()) SWIG_fail
; 
8968     resultobj 
= wxPyMake_wxObject(result
, (bool)0);  
8976 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_Veto(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8977   PyObject 
*resultobj 
= 0; 
8978   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
8979   bool arg2 
= (bool) true ; 
8984   PyObject 
* obj0 
= 0 ; 
8985   PyObject 
* obj1 
= 0 ; 
8986   char *  kwnames
[] = { 
8987     (char *) "self",(char *) "veto", NULL 
 
8990   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8991   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
8992   if (!SWIG_IsOK(res1
)) { 
8993     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
8995   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
8997     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
8998     if (!SWIG_IsOK(ecode2
)) { 
8999       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'"); 
9001     arg2 
= static_cast< bool >(val2
); 
9004     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9006     wxPyEndAllowThreads(__tstate
); 
9007     if (PyErr_Occurred()) SWIG_fail
; 
9009   resultobj 
= SWIG_Py_Void(); 
9016 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_GetVeto(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9017   PyObject 
*resultobj 
= 0; 
9018   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9022   PyObject 
*swig_obj
[1] ; 
9024   if (!args
) SWIG_fail
; 
9026   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9027   if (!SWIG_IsOK(res1
)) { 
9028     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
9030   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9032     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9033     result 
= (bool)((wxAuiManagerEvent 
const *)arg1
)->GetVeto(); 
9034     wxPyEndAllowThreads(__tstate
); 
9035     if (PyErr_Occurred()) SWIG_fail
; 
9038     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9046 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_SetCanVeto(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9047   PyObject 
*resultobj 
= 0; 
9048   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9054   PyObject 
* obj0 
= 0 ; 
9055   PyObject 
* obj1 
= 0 ; 
9056   char *  kwnames
[] = { 
9057     (char *) "self",(char *) "can_veto", NULL 
 
9060   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9061   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9062   if (!SWIG_IsOK(res1
)) { 
9063     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9065   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9066   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
9067   if (!SWIG_IsOK(ecode2
)) { 
9068     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'"); 
9070   arg2 
= static_cast< bool >(val2
); 
9072     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9073     (arg1
)->SetCanVeto(arg2
); 
9074     wxPyEndAllowThreads(__tstate
); 
9075     if (PyErr_Occurred()) SWIG_fail
; 
9077   resultobj 
= SWIG_Py_Void(); 
9084 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_CanVeto(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9085   PyObject 
*resultobj 
= 0; 
9086   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9090   PyObject 
*swig_obj
[1] ; 
9092   if (!args
) SWIG_fail
; 
9094   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9095   if (!SWIG_IsOK(res1
)) { 
9096     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");  
9098   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9100     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9101     result 
= (bool)((wxAuiManagerEvent 
const *)arg1
)->CanVeto(); 
9102     wxPyEndAllowThreads(__tstate
); 
9103     if (PyErr_Occurred()) SWIG_fail
; 
9106     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9114 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_manager_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9115   PyObject 
*resultobj 
= 0; 
9116   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9117   wxAuiManager 
*arg2 
= (wxAuiManager 
*) 0 ; 
9122   PyObject 
*swig_obj
[2] ; 
9124   if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_manager_set",2,2,swig_obj
)) SWIG_fail
; 
9125   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9126   if (!SWIG_IsOK(res1
)) { 
9127     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9129   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9130   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN 
|  0 ); 
9131   if (!SWIG_IsOK(res2
)) { 
9132     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "2"" of type '" "wxAuiManager *""'");  
9134   arg2 
= reinterpret_cast< wxAuiManager 
* >(argp2
); 
9135   if (arg1
) (arg1
)->manager 
= arg2
; 
9137   resultobj 
= SWIG_Py_Void(); 
9144 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_manager_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9145   PyObject 
*resultobj 
= 0; 
9146   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9147   wxAuiManager 
*result 
= 0 ; 
9150   PyObject 
*swig_obj
[1] ; 
9152   if (!args
) SWIG_fail
; 
9154   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9155   if (!SWIG_IsOK(res1
)) { 
9156     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9158   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9159   result 
= (wxAuiManager 
*) ((arg1
)->manager
); 
9160   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
9167 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_pane_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9168   PyObject 
*resultobj 
= 0; 
9169   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9170   wxAuiPaneInfo 
*arg2 
= (wxAuiPaneInfo 
*) 0 ; 
9175   PyObject 
*swig_obj
[2] ; 
9177   if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
; 
9178   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9179   if (!SWIG_IsOK(res1
)) { 
9180     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9182   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9183   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN 
|  0 ); 
9184   if (!SWIG_IsOK(res2
)) { 
9185     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");  
9187   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
9188   if (arg1
) (arg1
)->pane 
= arg2
; 
9190   resultobj 
= SWIG_Py_Void(); 
9197 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_pane_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9198   PyObject 
*resultobj 
= 0; 
9199   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9200   wxAuiPaneInfo 
*result 
= 0 ; 
9203   PyObject 
*swig_obj
[1] ; 
9205   if (!args
) SWIG_fail
; 
9207   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9208   if (!SWIG_IsOK(res1
)) { 
9209     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9211   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9212   result 
= (wxAuiPaneInfo 
*) ((arg1
)->pane
); 
9213   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
9220 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_button_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9221   PyObject 
*resultobj 
= 0; 
9222   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9228   PyObject 
*swig_obj
[2] ; 
9230   if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
; 
9231   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9232   if (!SWIG_IsOK(res1
)) { 
9233     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9235   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9236   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
9237   if (!SWIG_IsOK(ecode2
)) { 
9238     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'"); 
9240   arg2 
= static_cast< int >(val2
); 
9241   if (arg1
) (arg1
)->button 
= arg2
; 
9243   resultobj 
= SWIG_Py_Void(); 
9250 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_button_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9251   PyObject 
*resultobj 
= 0; 
9252   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9256   PyObject 
*swig_obj
[1] ; 
9258   if (!args
) SWIG_fail
; 
9260   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9261   if (!SWIG_IsOK(res1
)) { 
9262     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9264   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9265   result 
= (int) ((arg1
)->button
); 
9266   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9273 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_veto_flag_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9274   PyObject 
*resultobj 
= 0; 
9275   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9281   PyObject 
*swig_obj
[2] ; 
9283   if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
; 
9284   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9285   if (!SWIG_IsOK(res1
)) { 
9286     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9288   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9289   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
9290   if (!SWIG_IsOK(ecode2
)) { 
9291     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'"); 
9293   arg2 
= static_cast< bool >(val2
); 
9294   if (arg1
) (arg1
)->veto_flag 
= arg2
; 
9296   resultobj 
= SWIG_Py_Void(); 
9303 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_veto_flag_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9304   PyObject 
*resultobj 
= 0; 
9305   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9309   PyObject 
*swig_obj
[1] ; 
9311   if (!args
) SWIG_fail
; 
9313   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9314   if (!SWIG_IsOK(res1
)) { 
9315     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9317   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9318   result 
= (bool) ((arg1
)->veto_flag
); 
9320     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9328 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_canveto_flag_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9329   PyObject 
*resultobj 
= 0; 
9330   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9336   PyObject 
*swig_obj
[2] ; 
9338   if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
; 
9339   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9340   if (!SWIG_IsOK(res1
)) { 
9341     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9343   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9344   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
9345   if (!SWIG_IsOK(ecode2
)) { 
9346     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'"); 
9348   arg2 
= static_cast< bool >(val2
); 
9349   if (arg1
) (arg1
)->canveto_flag 
= arg2
; 
9351   resultobj 
= SWIG_Py_Void(); 
9358 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_canveto_flag_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9359   PyObject 
*resultobj 
= 0; 
9360   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9364   PyObject 
*swig_obj
[1] ; 
9366   if (!args
) SWIG_fail
; 
9368   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9369   if (!SWIG_IsOK(res1
)) { 
9370     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9372   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9373   result 
= (bool) ((arg1
)->canveto_flag
); 
9375     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9383 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_dc_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9384   PyObject 
*resultobj 
= 0; 
9385   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9386   wxDC 
*arg2 
= (wxDC 
*) 0 ; 
9391   PyObject 
*swig_obj
[2] ; 
9393   if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
; 
9394   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9395   if (!SWIG_IsOK(res1
)) { 
9396     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9398   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9399   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN 
|  0 ); 
9400   if (!SWIG_IsOK(res2
)) { 
9401     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");  
9403   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
9404   if (arg1
) (arg1
)->dc 
= arg2
; 
9406   resultobj 
= SWIG_Py_Void(); 
9413 SWIGINTERN PyObject 
*_wrap_AuiManagerEvent_dc_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9414   PyObject 
*resultobj 
= 0; 
9415   wxAuiManagerEvent 
*arg1 
= (wxAuiManagerEvent 
*) 0 ; 
9419   PyObject 
*swig_obj
[1] ; 
9421   if (!args
) SWIG_fail
; 
9423   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 |  0 ); 
9424   if (!SWIG_IsOK(res1
)) { 
9425     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");  
9427   arg1 
= reinterpret_cast< wxAuiManagerEvent 
* >(argp1
); 
9428   result 
= (wxDC 
*) ((arg1
)->dc
); 
9430     resultobj 
= wxPyMake_wxObject(result
, (bool)0);  
9438 SWIGINTERN PyObject 
*AuiManagerEvent_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9440   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
9441   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManagerEvent
, SWIG_NewClientData(obj
)); 
9442   return SWIG_Py_Void(); 
9445 SWIGINTERN PyObject 
*AuiManagerEvent_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9446   return SWIG_Python_InitShadowInstance(args
); 
9449 SWIGINTERN PyObject 
*_wrap_new_AuiDockInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9450   PyObject 
*resultobj 
= 0; 
9451   wxAuiDockInfo 
*result 
= 0 ; 
9453   if (!SWIG_Python_UnpackTuple(args
,"new_AuiDockInfo",0,0,0)) SWIG_fail
; 
9455     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9456     result 
= (wxAuiDockInfo 
*)new wxAuiDockInfo(); 
9457     wxPyEndAllowThreads(__tstate
); 
9458     if (PyErr_Occurred()) SWIG_fail
; 
9460   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_NEW 
|  0 ); 
9467 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_IsOk(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9468   PyObject 
*resultobj 
= 0; 
9469   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9473   PyObject 
*swig_obj
[1] ; 
9475   if (!args
) SWIG_fail
; 
9477   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9478   if (!SWIG_IsOK(res1
)) { 
9479     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");  
9481   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9483     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9484     result 
= (bool)((wxAuiDockInfo 
const *)arg1
)->IsOk(); 
9485     wxPyEndAllowThreads(__tstate
); 
9486     if (PyErr_Occurred()) SWIG_fail
; 
9489     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9497 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_IsHorizontal(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9498   PyObject 
*resultobj 
= 0; 
9499   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9503   PyObject 
*swig_obj
[1] ; 
9505   if (!args
) SWIG_fail
; 
9507   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9508   if (!SWIG_IsOK(res1
)) { 
9509     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");  
9511   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9513     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9514     result 
= (bool)((wxAuiDockInfo 
const *)arg1
)->IsHorizontal(); 
9515     wxPyEndAllowThreads(__tstate
); 
9516     if (PyErr_Occurred()) SWIG_fail
; 
9519     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9527 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_IsVertical(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9528   PyObject 
*resultobj 
= 0; 
9529   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9533   PyObject 
*swig_obj
[1] ; 
9535   if (!args
) SWIG_fail
; 
9537   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9538   if (!SWIG_IsOK(res1
)) { 
9539     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsVertical" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");  
9541   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9543     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9544     result 
= (bool)((wxAuiDockInfo 
const *)arg1
)->IsVertical(); 
9545     wxPyEndAllowThreads(__tstate
); 
9546     if (PyErr_Occurred()) SWIG_fail
; 
9549     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9557 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_panes_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9558   PyObject 
*resultobj 
= 0; 
9559   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9560   wxAuiPaneInfoPtrArray arg2 
; 
9565   PyObject 
*swig_obj
[2] ; 
9567   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
; 
9568   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9569   if (!SWIG_IsOK(res1
)) { 
9570     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9572   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9574     res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneInfoPtrArray
,  0  | 0); 
9575     if (!SWIG_IsOK(res2
)) { 
9576       SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");  
9579       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'"); 
9581       wxAuiPaneInfoPtrArray 
* temp 
= reinterpret_cast< wxAuiPaneInfoPtrArray 
* >(argp2
); 
9583       if (SWIG_IsNewObj(res2
)) delete temp
; 
9586   if (arg1
) (arg1
)->panes 
= arg2
; 
9588   resultobj 
= SWIG_Py_Void(); 
9595 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_panes_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9596   PyObject 
*resultobj 
= 0; 
9597   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9598   wxAuiPaneInfoPtrArray result
; 
9601   PyObject 
*swig_obj
[1] ; 
9603   if (!args
) SWIG_fail
; 
9605   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9606   if (!SWIG_IsOK(res1
)) { 
9607     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9609   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9610   result 
=  ((arg1
)->panes
); 
9611   resultobj 
= SWIG_NewPointerObj((new wxAuiPaneInfoPtrArray(static_cast< const wxAuiPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxAuiPaneInfoPtrArray
, SWIG_POINTER_OWN 
|  0 ); 
9618 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_rect_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9619   PyObject 
*resultobj 
= 0; 
9620   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9621   wxRect 
*arg2 
= (wxRect 
*) 0 ; 
9626   PyObject 
*swig_obj
[2] ; 
9628   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
; 
9629   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9630   if (!SWIG_IsOK(res1
)) { 
9631     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9633   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9634   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
9635   if (!SWIG_IsOK(res2
)) { 
9636     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");  
9638   arg2 
= reinterpret_cast< wxRect 
* >(argp2
); 
9639   if (arg1
) (arg1
)->rect 
= *arg2
; 
9641   resultobj 
= SWIG_Py_Void(); 
9648 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_rect_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9649   PyObject 
*resultobj 
= 0; 
9650   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9651   wxRect 
*result 
= 0 ; 
9654   PyObject 
*swig_obj
[1] ; 
9656   if (!args
) SWIG_fail
; 
9658   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9659   if (!SWIG_IsOK(res1
)) { 
9660     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9662   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9663   result 
= (wxRect 
*)& ((arg1
)->rect
); 
9664   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 |  0 ); 
9671 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_dock_direction_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9672   PyObject 
*resultobj 
= 0; 
9673   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9679   PyObject 
*swig_obj
[2] ; 
9681   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
; 
9682   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9683   if (!SWIG_IsOK(res1
)) { 
9684     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9686   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9687   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
9688   if (!SWIG_IsOK(ecode2
)) { 
9689     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'"); 
9691   arg2 
= static_cast< int >(val2
); 
9692   if (arg1
) (arg1
)->dock_direction 
= arg2
; 
9694   resultobj 
= SWIG_Py_Void(); 
9701 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_dock_direction_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9702   PyObject 
*resultobj 
= 0; 
9703   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9707   PyObject 
*swig_obj
[1] ; 
9709   if (!args
) SWIG_fail
; 
9711   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9712   if (!SWIG_IsOK(res1
)) { 
9713     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9715   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9716   result 
= (int) ((arg1
)->dock_direction
); 
9717   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9724 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_dock_layer_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9725   PyObject 
*resultobj 
= 0; 
9726   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9732   PyObject 
*swig_obj
[2] ; 
9734   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
; 
9735   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9736   if (!SWIG_IsOK(res1
)) { 
9737     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9739   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9740   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
9741   if (!SWIG_IsOK(ecode2
)) { 
9742     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'"); 
9744   arg2 
= static_cast< int >(val2
); 
9745   if (arg1
) (arg1
)->dock_layer 
= arg2
; 
9747   resultobj 
= SWIG_Py_Void(); 
9754 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_dock_layer_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9755   PyObject 
*resultobj 
= 0; 
9756   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9760   PyObject 
*swig_obj
[1] ; 
9762   if (!args
) SWIG_fail
; 
9764   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9765   if (!SWIG_IsOK(res1
)) { 
9766     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9768   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9769   result 
= (int) ((arg1
)->dock_layer
); 
9770   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9777 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_dock_row_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9778   PyObject 
*resultobj 
= 0; 
9779   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9785   PyObject 
*swig_obj
[2] ; 
9787   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
; 
9788   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9789   if (!SWIG_IsOK(res1
)) { 
9790     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9792   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9793   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
9794   if (!SWIG_IsOK(ecode2
)) { 
9795     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'"); 
9797   arg2 
= static_cast< int >(val2
); 
9798   if (arg1
) (arg1
)->dock_row 
= arg2
; 
9800   resultobj 
= SWIG_Py_Void(); 
9807 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_dock_row_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9808   PyObject 
*resultobj 
= 0; 
9809   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9813   PyObject 
*swig_obj
[1] ; 
9815   if (!args
) SWIG_fail
; 
9817   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9818   if (!SWIG_IsOK(res1
)) { 
9819     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9821   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9822   result 
= (int) ((arg1
)->dock_row
); 
9823   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9830 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_size_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9831   PyObject 
*resultobj 
= 0; 
9832   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9838   PyObject 
*swig_obj
[2] ; 
9840   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_size_set",2,2,swig_obj
)) SWIG_fail
; 
9841   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9842   if (!SWIG_IsOK(res1
)) { 
9843     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9845   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9846   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
9847   if (!SWIG_IsOK(ecode2
)) { 
9848     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_size_set" "', expected argument " "2"" of type '" "int""'"); 
9850   arg2 
= static_cast< int >(val2
); 
9851   if (arg1
) (arg1
)->size 
= arg2
; 
9853   resultobj 
= SWIG_Py_Void(); 
9860 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_size_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9861   PyObject 
*resultobj 
= 0; 
9862   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9866   PyObject 
*swig_obj
[1] ; 
9868   if (!args
) SWIG_fail
; 
9870   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9871   if (!SWIG_IsOK(res1
)) { 
9872     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9874   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9875   result 
= (int) ((arg1
)->size
); 
9876   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9883 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_min_size_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9884   PyObject 
*resultobj 
= 0; 
9885   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9891   PyObject 
*swig_obj
[2] ; 
9893   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
; 
9894   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9895   if (!SWIG_IsOK(res1
)) { 
9896     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9898   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9899   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
9900   if (!SWIG_IsOK(ecode2
)) { 
9901     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'"); 
9903   arg2 
= static_cast< int >(val2
); 
9904   if (arg1
) (arg1
)->min_size 
= arg2
; 
9906   resultobj 
= SWIG_Py_Void(); 
9913 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_min_size_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9914   PyObject 
*resultobj 
= 0; 
9915   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9919   PyObject 
*swig_obj
[1] ; 
9921   if (!args
) SWIG_fail
; 
9923   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9924   if (!SWIG_IsOK(res1
)) { 
9925     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9927   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9928   result 
= (int) ((arg1
)->min_size
); 
9929   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9936 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_resizable_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9937   PyObject 
*resultobj 
= 0; 
9938   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9944   PyObject 
*swig_obj
[2] ; 
9946   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
; 
9947   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9948   if (!SWIG_IsOK(res1
)) { 
9949     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9951   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9952   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
9953   if (!SWIG_IsOK(ecode2
)) { 
9954     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'"); 
9956   arg2 
= static_cast< bool >(val2
); 
9957   if (arg1
) (arg1
)->resizable 
= arg2
; 
9959   resultobj 
= SWIG_Py_Void(); 
9966 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_resizable_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9967   PyObject 
*resultobj 
= 0; 
9968   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9972   PyObject 
*swig_obj
[1] ; 
9974   if (!args
) SWIG_fail
; 
9976   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
9977   if (!SWIG_IsOK(res1
)) { 
9978     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
9980   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
9981   result 
= (bool) ((arg1
)->resizable
); 
9983     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9991 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_toolbar_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9992   PyObject 
*resultobj 
= 0; 
9993   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
9999   PyObject 
*swig_obj
[2] ; 
10001   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
; 
10002   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10003   if (!SWIG_IsOK(res1
)) { 
10004     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10006   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10007   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
10008   if (!SWIG_IsOK(ecode2
)) { 
10009     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'"); 
10011   arg2 
= static_cast< bool >(val2
); 
10012   if (arg1
) (arg1
)->toolbar 
= arg2
; 
10014   resultobj 
= SWIG_Py_Void(); 
10021 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_toolbar_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10022   PyObject 
*resultobj 
= 0; 
10023   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
10027   PyObject 
*swig_obj
[1] ; 
10029   if (!args
) SWIG_fail
; 
10030   swig_obj
[0] = args
; 
10031   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10032   if (!SWIG_IsOK(res1
)) { 
10033     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10035   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10036   result 
= (bool) ((arg1
)->toolbar
); 
10038     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10046 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_fixed_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10047   PyObject 
*resultobj 
= 0; 
10048   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
10054   PyObject 
*swig_obj
[2] ; 
10056   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
; 
10057   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10058   if (!SWIG_IsOK(res1
)) { 
10059     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10061   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10062   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
10063   if (!SWIG_IsOK(ecode2
)) { 
10064     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'"); 
10066   arg2 
= static_cast< bool >(val2
); 
10067   if (arg1
) (arg1
)->fixed 
= arg2
; 
10069   resultobj 
= SWIG_Py_Void(); 
10076 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_fixed_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10077   PyObject 
*resultobj 
= 0; 
10078   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
10082   PyObject 
*swig_obj
[1] ; 
10084   if (!args
) SWIG_fail
; 
10085   swig_obj
[0] = args
; 
10086   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10087   if (!SWIG_IsOK(res1
)) { 
10088     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10090   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10091   result 
= (bool) ((arg1
)->fixed
); 
10093     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10101 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_reserved1_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10102   PyObject 
*resultobj 
= 0; 
10103   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
10109   PyObject 
*swig_obj
[2] ; 
10111   if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_reserved1_set",2,2,swig_obj
)) SWIG_fail
; 
10112   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10113   if (!SWIG_IsOK(res1
)) { 
10114     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_reserved1_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10116   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10117   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
10118   if (!SWIG_IsOK(ecode2
)) { 
10119     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_reserved1_set" "', expected argument " "2"" of type '" "bool""'"); 
10121   arg2 
= static_cast< bool >(val2
); 
10122   if (arg1
) (arg1
)->reserved1 
= arg2
; 
10124   resultobj 
= SWIG_Py_Void(); 
10131 SWIGINTERN PyObject 
*_wrap_AuiDockInfo_reserved1_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10132   PyObject 
*resultobj 
= 0; 
10133   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
10137   PyObject 
*swig_obj
[1] ; 
10139   if (!args
) SWIG_fail
; 
10140   swig_obj
[0] = args
; 
10141   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10142   if (!SWIG_IsOK(res1
)) { 
10143     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_reserved1_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10145   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10146   result 
= (bool) ((arg1
)->reserved1
); 
10148     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10156 SWIGINTERN PyObject 
*_wrap_delete_AuiDockInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10157   PyObject 
*resultobj 
= 0; 
10158   wxAuiDockInfo 
*arg1 
= (wxAuiDockInfo 
*) 0 ; 
10161   PyObject 
*swig_obj
[1] ; 
10163   if (!args
) SWIG_fail
; 
10164   swig_obj
[0] = args
; 
10165   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN 
|  0 ); 
10166   if (!SWIG_IsOK(res1
)) { 
10167     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockInfo" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");  
10169   arg1 
= reinterpret_cast< wxAuiDockInfo 
* >(argp1
); 
10171     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10172     delete_wxAuiDockInfo(arg1
); 
10174     wxPyEndAllowThreads(__tstate
); 
10175     if (PyErr_Occurred()) SWIG_fail
; 
10177   resultobj 
= SWIG_Py_Void(); 
10184 SWIGINTERN PyObject 
*AuiDockInfo_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10186   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
10187   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockInfo
, SWIG_NewClientData(obj
)); 
10188   return SWIG_Py_Void(); 
10191 SWIGINTERN PyObject 
*AuiDockInfo_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10192   return SWIG_Python_InitShadowInstance(args
); 
10195 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_type_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10196   PyObject 
*resultobj 
= 0; 
10197   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10203   PyObject 
*swig_obj
[2] ; 
10205   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
; 
10206   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10207   if (!SWIG_IsOK(res1
)) { 
10208     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10210   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10211   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
10212   if (!SWIG_IsOK(ecode2
)) { 
10213     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "2"" of type '" "int""'"); 
10215   arg2 
= static_cast< int >(val2
); 
10216   if (arg1
) (arg1
)->type 
= arg2
; 
10218   resultobj 
= SWIG_Py_Void(); 
10225 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_type_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10226   PyObject 
*resultobj 
= 0; 
10227   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10231   PyObject 
*swig_obj
[1] ; 
10233   if (!args
) SWIG_fail
; 
10234   swig_obj
[0] = args
; 
10235   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10236   if (!SWIG_IsOK(res1
)) { 
10237     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10239   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10240   result 
= (int) ((arg1
)->type
); 
10241   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10248 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_orientation_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10249   PyObject 
*resultobj 
= 0; 
10250   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10256   PyObject 
*swig_obj
[2] ; 
10258   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
; 
10259   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10260   if (!SWIG_IsOK(res1
)) { 
10261     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10263   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10264   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
10265   if (!SWIG_IsOK(ecode2
)) { 
10266     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'"); 
10268   arg2 
= static_cast< int >(val2
); 
10269   if (arg1
) (arg1
)->orientation 
= arg2
; 
10271   resultobj 
= SWIG_Py_Void(); 
10278 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_orientation_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10279   PyObject 
*resultobj 
= 0; 
10280   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10284   PyObject 
*swig_obj
[1] ; 
10286   if (!args
) SWIG_fail
; 
10287   swig_obj
[0] = args
; 
10288   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10289   if (!SWIG_IsOK(res1
)) { 
10290     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10292   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10293   result 
= (int) ((arg1
)->orientation
); 
10294   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10301 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_dock_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10302   PyObject 
*resultobj 
= 0; 
10303   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10304   wxAuiDockInfo 
*arg2 
= (wxAuiDockInfo 
*) 0 ; 
10309   PyObject 
*swig_obj
[2] ; 
10311   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
; 
10312   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10313   if (!SWIG_IsOK(res1
)) { 
10314     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10316   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10317   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN 
|  0 ); 
10318   if (!SWIG_IsOK(res2
)) { 
10319     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "2"" of type '" "wxAuiDockInfo *""'");  
10321   arg2 
= reinterpret_cast< wxAuiDockInfo 
* >(argp2
); 
10322   if (arg1
) (arg1
)->dock 
= arg2
; 
10324   resultobj 
= SWIG_Py_Void(); 
10331 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_dock_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10332   PyObject 
*resultobj 
= 0; 
10333   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10334   wxAuiDockInfo 
*result 
= 0 ; 
10337   PyObject 
*swig_obj
[1] ; 
10339   if (!args
) SWIG_fail
; 
10340   swig_obj
[0] = args
; 
10341   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10342   if (!SWIG_IsOK(res1
)) { 
10343     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10345   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10346   result 
= (wxAuiDockInfo 
*) ((arg1
)->dock
); 
10347   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, 0 |  0 ); 
10354 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_pane_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10355   PyObject 
*resultobj 
= 0; 
10356   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10357   wxAuiPaneInfo 
*arg2 
= (wxAuiPaneInfo 
*) 0 ; 
10362   PyObject 
*swig_obj
[2] ; 
10364   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
; 
10365   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10366   if (!SWIG_IsOK(res1
)) { 
10367     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10369   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10370   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN 
|  0 ); 
10371   if (!SWIG_IsOK(res2
)) { 
10372     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");  
10374   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
10375   if (arg1
) (arg1
)->pane 
= arg2
; 
10377   resultobj 
= SWIG_Py_Void(); 
10384 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_pane_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10385   PyObject 
*resultobj 
= 0; 
10386   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10387   wxAuiPaneInfo 
*result 
= 0 ; 
10390   PyObject 
*swig_obj
[1] ; 
10392   if (!args
) SWIG_fail
; 
10393   swig_obj
[0] = args
; 
10394   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10395   if (!SWIG_IsOK(res1
)) { 
10396     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10398   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10399   result 
= (wxAuiPaneInfo 
*) ((arg1
)->pane
); 
10400   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 |  0 ); 
10407 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_button_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10408   PyObject 
*resultobj 
= 0; 
10409   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10410   wxAuiPaneButton 
*arg2 
= (wxAuiPaneButton 
*) 0 ; 
10415   PyObject 
*swig_obj
[2] ; 
10417   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
; 
10418   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10419   if (!SWIG_IsOK(res1
)) { 
10420     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10422   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10423   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN 
|  0 ); 
10424   if (!SWIG_IsOK(res2
)) { 
10425     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "2"" of type '" "wxAuiPaneButton *""'");  
10427   arg2 
= reinterpret_cast< wxAuiPaneButton 
* >(argp2
); 
10428   if (arg1
) (arg1
)->button 
= arg2
; 
10430   resultobj 
= SWIG_Py_Void(); 
10437 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_button_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10438   PyObject 
*resultobj 
= 0; 
10439   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10440   wxAuiPaneButton 
*result 
= 0 ; 
10443   PyObject 
*swig_obj
[1] ; 
10445   if (!args
) SWIG_fail
; 
10446   swig_obj
[0] = args
; 
10447   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10448   if (!SWIG_IsOK(res1
)) { 
10449     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10451   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10452   result 
= (wxAuiPaneButton 
*) ((arg1
)->button
); 
10453   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneButton
, 0 |  0 ); 
10460 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_cont_sizer_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10461   PyObject 
*resultobj 
= 0; 
10462   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10463   wxSizer 
*arg2 
= (wxSizer 
*) 0 ; 
10468   PyObject 
*swig_obj
[2] ; 
10470   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
; 
10471   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10472   if (!SWIG_IsOK(res1
)) { 
10473     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10475   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10476   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN 
|  0 ); 
10477   if (!SWIG_IsOK(res2
)) { 
10478     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");  
10480   arg2 
= reinterpret_cast< wxSizer 
* >(argp2
); 
10481   if (arg1
) (arg1
)->cont_sizer 
= arg2
; 
10483   resultobj 
= SWIG_Py_Void(); 
10490 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_cont_sizer_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10491   PyObject 
*resultobj 
= 0; 
10492   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10493   wxSizer 
*result 
= 0 ; 
10496   PyObject 
*swig_obj
[1] ; 
10498   if (!args
) SWIG_fail
; 
10499   swig_obj
[0] = args
; 
10500   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10501   if (!SWIG_IsOK(res1
)) { 
10502     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10504   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10505   result 
= (wxSizer 
*) ((arg1
)->cont_sizer
); 
10507     resultobj 
= wxPyMake_wxObject(result
, (bool)0);  
10515 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_sizer_item_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10516   PyObject 
*resultobj 
= 0; 
10517   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10518   wxSizerItem 
*arg2 
= (wxSizerItem 
*) 0 ; 
10523   PyObject 
*swig_obj
[2] ; 
10525   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
; 
10526   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10527   if (!SWIG_IsOK(res1
)) { 
10528     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10530   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10531   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN 
|  0 ); 
10532   if (!SWIG_IsOK(res2
)) { 
10533     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");  
10535   arg2 
= reinterpret_cast< wxSizerItem 
* >(argp2
); 
10536   if (arg1
) (arg1
)->sizer_item 
= arg2
; 
10538   resultobj 
= SWIG_Py_Void(); 
10545 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_sizer_item_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10546   PyObject 
*resultobj 
= 0; 
10547   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10548   wxSizerItem 
*result 
= 0 ; 
10551   PyObject 
*swig_obj
[1] ; 
10553   if (!args
) SWIG_fail
; 
10554   swig_obj
[0] = args
; 
10555   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10556   if (!SWIG_IsOK(res1
)) { 
10557     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10559   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10560   result 
= (wxSizerItem 
*) ((arg1
)->sizer_item
); 
10561   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 |  0 ); 
10568 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_rect_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10569   PyObject 
*resultobj 
= 0; 
10570   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10571   wxRect 
*arg2 
= (wxRect 
*) 0 ; 
10576   PyObject 
*swig_obj
[2] ; 
10578   if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
; 
10579   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10580   if (!SWIG_IsOK(res1
)) { 
10581     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10583   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10584   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
10585   if (!SWIG_IsOK(res2
)) { 
10586     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");  
10588   arg2 
= reinterpret_cast< wxRect 
* >(argp2
); 
10589   if (arg1
) (arg1
)->rect 
= *arg2
; 
10591   resultobj 
= SWIG_Py_Void(); 
10598 SWIGINTERN PyObject 
*_wrap_AuiDockUIPart_rect_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10599   PyObject 
*resultobj 
= 0; 
10600   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10601   wxRect 
*result 
= 0 ; 
10604   PyObject 
*swig_obj
[1] ; 
10606   if (!args
) SWIG_fail
; 
10607   swig_obj
[0] = args
; 
10608   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 |  0 ); 
10609   if (!SWIG_IsOK(res1
)) { 
10610     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10612   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10613   result 
= (wxRect 
*)& ((arg1
)->rect
); 
10614   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 |  0 ); 
10621 SWIGINTERN PyObject 
*_wrap_delete_AuiDockUIPart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10622   PyObject 
*resultobj 
= 0; 
10623   wxAuiDockUIPart 
*arg1 
= (wxAuiDockUIPart 
*) 0 ; 
10626   PyObject 
*swig_obj
[1] ; 
10628   if (!args
) SWIG_fail
; 
10629   swig_obj
[0] = args
; 
10630   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, SWIG_POINTER_DISOWN 
|  0 ); 
10631   if (!SWIG_IsOK(res1
)) { 
10632     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockUIPart" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");  
10634   arg1 
= reinterpret_cast< wxAuiDockUIPart 
* >(argp1
); 
10636     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10637     delete_wxAuiDockUIPart(arg1
); 
10639     wxPyEndAllowThreads(__tstate
); 
10640     if (PyErr_Occurred()) SWIG_fail
; 
10642   resultobj 
= SWIG_Py_Void(); 
10649 SWIGINTERN PyObject 
*AuiDockUIPart_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10651   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
10652   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockUIPart
, SWIG_NewClientData(obj
)); 
10653   return SWIG_Py_Void(); 
10656 SWIGINTERN PyObject 
*_wrap_AuiPaneButton_button_id_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10657   PyObject 
*resultobj 
= 0; 
10658   wxAuiPaneButton 
*arg1 
= (wxAuiPaneButton 
*) 0 ; 
10664   PyObject 
*swig_obj
[2] ; 
10666   if (!SWIG_Python_UnpackTuple(args
,"AuiPaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
; 
10667   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 |  0 ); 
10668   if (!SWIG_IsOK(res1
)) { 
10669     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");  
10671   arg1 
= reinterpret_cast< wxAuiPaneButton 
* >(argp1
); 
10672   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
10673   if (!SWIG_IsOK(ecode2
)) { 
10674     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'"); 
10676   arg2 
= static_cast< int >(val2
); 
10677   if (arg1
) (arg1
)->button_id 
= arg2
; 
10679   resultobj 
= SWIG_Py_Void(); 
10686 SWIGINTERN PyObject 
*_wrap_AuiPaneButton_button_id_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10687   PyObject 
*resultobj 
= 0; 
10688   wxAuiPaneButton 
*arg1 
= (wxAuiPaneButton 
*) 0 ; 
10692   PyObject 
*swig_obj
[1] ; 
10694   if (!args
) SWIG_fail
; 
10695   swig_obj
[0] = args
; 
10696   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 |  0 ); 
10697   if (!SWIG_IsOK(res1
)) { 
10698     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_get" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");  
10700   arg1 
= reinterpret_cast< wxAuiPaneButton 
* >(argp1
); 
10701   result 
= (int) ((arg1
)->button_id
); 
10702   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10709 SWIGINTERN PyObject 
*_wrap_delete_AuiPaneButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10710   PyObject 
*resultobj 
= 0; 
10711   wxAuiPaneButton 
*arg1 
= (wxAuiPaneButton 
*) 0 ; 
10714   PyObject 
*swig_obj
[1] ; 
10716   if (!args
) SWIG_fail
; 
10717   swig_obj
[0] = args
; 
10718   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN 
|  0 ); 
10719   if (!SWIG_IsOK(res1
)) { 
10720     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneButton" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");  
10722   arg1 
= reinterpret_cast< wxAuiPaneButton 
* >(argp1
); 
10724     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10725     delete_wxAuiPaneButton(arg1
); 
10727     wxPyEndAllowThreads(__tstate
); 
10728     if (PyErr_Occurred()) SWIG_fail
; 
10730   resultobj 
= SWIG_Py_Void(); 
10737 SWIGINTERN PyObject 
*AuiPaneButton_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10739   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
10740   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneButton
, SWIG_NewClientData(obj
)); 
10741   return SWIG_Py_Void(); 
10744 SWIGINTERN PyObject 
*_wrap_delete_AuiDockArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10745   PyObject 
*resultobj 
= 0; 
10746   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10749   PyObject 
*swig_obj
[1] ; 
10751   if (!args
) SWIG_fail
; 
10752   swig_obj
[0] = args
; 
10753   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN 
|  0 ); 
10754   if (!SWIG_IsOK(res1
)) { 
10755     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockArt" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
10757   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
10759     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10762     wxPyEndAllowThreads(__tstate
); 
10763     if (PyErr_Occurred()) SWIG_fail
; 
10765   resultobj 
= SWIG_Py_Void(); 
10772 SWIGINTERN PyObject 
*_wrap_AuiDockArt_GetMetric(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10773   PyObject 
*resultobj 
= 0; 
10774   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10781   PyObject 
* obj0 
= 0 ; 
10782   PyObject 
* obj1 
= 0 ; 
10783   char *  kwnames
[] = { 
10784     (char *) "self",(char *) "id", NULL 
 
10787   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10788   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
10789   if (!SWIG_IsOK(res1
)) { 
10790     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
10792   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
10793   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10794   if (!SWIG_IsOK(ecode2
)) { 
10795     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "2"" of type '" "int""'"); 
10797   arg2 
= static_cast< int >(val2
); 
10799     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10800     result 
= (int)(arg1
)->GetMetric(arg2
); 
10801     wxPyEndAllowThreads(__tstate
); 
10802     if (PyErr_Occurred()) SWIG_fail
; 
10804   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10811 SWIGINTERN PyObject 
*_wrap_AuiDockArt_SetMetric(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10812   PyObject 
*resultobj 
= 0; 
10813   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10822   PyObject 
* obj0 
= 0 ; 
10823   PyObject 
* obj1 
= 0 ; 
10824   PyObject 
* obj2 
= 0 ; 
10825   char *  kwnames
[] = { 
10826     (char *) "self",(char *) "id",(char *) "new_val", NULL 
 
10829   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
10830   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
10831   if (!SWIG_IsOK(res1
)) { 
10832     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
10834   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
10835   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10836   if (!SWIG_IsOK(ecode2
)) { 
10837     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "2"" of type '" "int""'"); 
10839   arg2 
= static_cast< int >(val2
); 
10840   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
10841   if (!SWIG_IsOK(ecode3
)) { 
10842     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "3"" of type '" "int""'"); 
10844   arg3 
= static_cast< int >(val3
); 
10846     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10847     (arg1
)->SetMetric(arg2
,arg3
); 
10848     wxPyEndAllowThreads(__tstate
); 
10849     if (PyErr_Occurred()) SWIG_fail
; 
10851   resultobj 
= SWIG_Py_Void(); 
10858 SWIGINTERN PyObject 
*_wrap_AuiDockArt_SetFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10859   PyObject 
*resultobj 
= 0; 
10860   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10869   PyObject 
* obj0 
= 0 ; 
10870   PyObject 
* obj1 
= 0 ; 
10871   PyObject 
* obj2 
= 0 ; 
10872   char *  kwnames
[] = { 
10873     (char *) "self",(char *) "id",(char *) "font", NULL 
 
10876   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
10877   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
10878   if (!SWIG_IsOK(res1
)) { 
10879     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
10881   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
10882   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10883   if (!SWIG_IsOK(ecode2
)) { 
10884     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetFont" "', expected argument " "2"" of type '" "int""'"); 
10886   arg2 
= static_cast< int >(val2
); 
10887   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
,  0  | 0); 
10888   if (!SWIG_IsOK(res3
)) { 
10889     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");  
10892     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");  
10894   arg3 
= reinterpret_cast< wxFont 
* >(argp3
); 
10896     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10897     (arg1
)->SetFont(arg2
,(wxFont 
const &)*arg3
); 
10898     wxPyEndAllowThreads(__tstate
); 
10899     if (PyErr_Occurred()) SWIG_fail
; 
10901   resultobj 
= SWIG_Py_Void(); 
10908 SWIGINTERN PyObject 
*_wrap_AuiDockArt_GetFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10909   PyObject 
*resultobj 
= 0; 
10910   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10917   PyObject 
* obj0 
= 0 ; 
10918   PyObject 
* obj1 
= 0 ; 
10919   char *  kwnames
[] = { 
10920     (char *) "self",(char *) "id", NULL 
 
10923   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10924   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
10925   if (!SWIG_IsOK(res1
)) { 
10926     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
10928   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
10929   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10930   if (!SWIG_IsOK(ecode2
)) { 
10931     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetFont" "', expected argument " "2"" of type '" "int""'"); 
10933   arg2 
= static_cast< int >(val2
); 
10935     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10936     result 
= (arg1
)->GetFont(arg2
); 
10937     wxPyEndAllowThreads(__tstate
); 
10938     if (PyErr_Occurred()) SWIG_fail
; 
10940   resultobj 
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN 
|  0 ); 
10947 SWIGINTERN PyObject 
*_wrap_AuiDockArt_GetColour(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10948   PyObject 
*resultobj 
= 0; 
10949   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10956   PyObject 
* obj0 
= 0 ; 
10957   PyObject 
* obj1 
= 0 ; 
10958   char *  kwnames
[] = { 
10959     (char *) "self",(char *) "id", NULL 
 
10962   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10963   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
10964   if (!SWIG_IsOK(res1
)) { 
10965     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
10967   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
10968   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10969   if (!SWIG_IsOK(ecode2
)) { 
10970     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColour" "', expected argument " "2"" of type '" "int""'"); 
10972   arg2 
= static_cast< int >(val2
); 
10974     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10975     result 
= (arg1
)->GetColour(arg2
); 
10976     wxPyEndAllowThreads(__tstate
); 
10977     if (PyErr_Occurred()) SWIG_fail
; 
10979   resultobj 
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN 
|  0 ); 
10986 SWIGINTERN PyObject 
*_wrap_AuiDockArt_SetColour(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10987   PyObject 
*resultobj 
= 0; 
10988   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
10990   wxColour 
*arg3 
= 0 ; 
10996   PyObject 
* obj0 
= 0 ; 
10997   PyObject 
* obj1 
= 0 ; 
10998   PyObject 
* obj2 
= 0 ; 
10999   char *  kwnames
[] = { 
11000     (char *) "self",(char *) "id",(char *) "colour", NULL 
 
11003   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11004   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11005   if (!SWIG_IsOK(res1
)) { 
11006     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11008   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11009   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11010   if (!SWIG_IsOK(ecode2
)) { 
11011     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColour" "', expected argument " "2"" of type '" "int""'"); 
11013   arg2 
= static_cast< int >(val2
); 
11016     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
11019     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11020     (arg1
)->SetColour(arg2
,(wxColour 
const &)*arg3
); 
11021     wxPyEndAllowThreads(__tstate
); 
11022     if (PyErr_Occurred()) SWIG_fail
; 
11024   resultobj 
= SWIG_Py_Void(); 
11031 SWIGINTERN PyObject 
*_wrap_AuiDockArt_GetColor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11032   PyObject 
*resultobj 
= 0; 
11033   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11040   PyObject 
* obj0 
= 0 ; 
11041   PyObject 
* obj1 
= 0 ; 
11042   char *  kwnames
[] = { 
11043     (char *) "self",(char *) "id", NULL 
 
11046   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11047   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11048   if (!SWIG_IsOK(res1
)) { 
11049     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11051   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11052   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11053   if (!SWIG_IsOK(ecode2
)) { 
11054     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColor" "', expected argument " "2"" of type '" "int""'"); 
11056   arg2 
= static_cast< int >(val2
); 
11058     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11059     result 
= (arg1
)->GetColor(arg2
); 
11060     wxPyEndAllowThreads(__tstate
); 
11061     if (PyErr_Occurred()) SWIG_fail
; 
11063   resultobj 
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN 
|  0 ); 
11070 SWIGINTERN PyObject 
*_wrap_AuiDockArt_SetColor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11071   PyObject 
*resultobj 
= 0; 
11072   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11074   wxColour 
*arg3 
= 0 ; 
11080   PyObject 
* obj0 
= 0 ; 
11081   PyObject 
* obj1 
= 0 ; 
11082   PyObject 
* obj2 
= 0 ; 
11083   char *  kwnames
[] = { 
11084     (char *) "self",(char *) "id",(char *) "color", NULL 
 
11087   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11088   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11089   if (!SWIG_IsOK(res1
)) { 
11090     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11092   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11093   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11094   if (!SWIG_IsOK(ecode2
)) { 
11095     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColor" "', expected argument " "2"" of type '" "int""'"); 
11097   arg2 
= static_cast< int >(val2
); 
11100     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
11103     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11104     (arg1
)->SetColor(arg2
,(wxColour 
const &)*arg3
); 
11105     wxPyEndAllowThreads(__tstate
); 
11106     if (PyErr_Occurred()) SWIG_fail
; 
11108   resultobj 
= SWIG_Py_Void(); 
11115 SWIGINTERN PyObject 
*_wrap_AuiDockArt_DrawSash(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11116   PyObject 
*resultobj 
= 0; 
11117   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11119   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
11131   PyObject 
* obj0 
= 0 ; 
11132   PyObject 
* obj1 
= 0 ; 
11133   PyObject 
* obj2 
= 0 ; 
11134   PyObject 
* obj3 
= 0 ; 
11135   PyObject 
* obj4 
= 0 ; 
11136   char *  kwnames
[] = { 
11137     (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL 
 
11140   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
11141   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11142   if (!SWIG_IsOK(res1
)) { 
11143     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11145   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11146   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
11147   if (!SWIG_IsOK(res2
)) { 
11148     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");  
11151     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");  
11153   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
11154   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11155   if (!SWIG_IsOK(res3
)) { 
11156     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");  
11158   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
11159   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
11160   if (!SWIG_IsOK(ecode4
)) { 
11161     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "4"" of type '" "int""'"); 
11163   arg4 
= static_cast< int >(val4
); 
11166     if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
; 
11169     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11170     (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect 
const &)*arg5
); 
11171     wxPyEndAllowThreads(__tstate
); 
11172     if (PyErr_Occurred()) SWIG_fail
; 
11174   resultobj 
= SWIG_Py_Void(); 
11181 SWIGINTERN PyObject 
*_wrap_AuiDockArt_DrawBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11182   PyObject 
*resultobj 
= 0; 
11183   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11185   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
11197   PyObject 
* obj0 
= 0 ; 
11198   PyObject 
* obj1 
= 0 ; 
11199   PyObject 
* obj2 
= 0 ; 
11200   PyObject 
* obj3 
= 0 ; 
11201   PyObject 
* obj4 
= 0 ; 
11202   char *  kwnames
[] = { 
11203     (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL 
 
11206   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
11207   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11208   if (!SWIG_IsOK(res1
)) { 
11209     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11211   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11212   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
11213   if (!SWIG_IsOK(res2
)) { 
11214     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");  
11217     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");  
11219   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
11220   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11221   if (!SWIG_IsOK(res3
)) { 
11222     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");  
11224   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
11225   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
11226   if (!SWIG_IsOK(ecode4
)) { 
11227     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'"); 
11229   arg4 
= static_cast< int >(val4
); 
11232     if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
; 
11235     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11236     (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect 
const &)*arg5
); 
11237     wxPyEndAllowThreads(__tstate
); 
11238     if (PyErr_Occurred()) SWIG_fail
; 
11240   resultobj 
= SWIG_Py_Void(); 
11247 SWIGINTERN PyObject 
*_wrap_AuiDockArt_DrawCaption(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11248   PyObject 
*resultobj 
= 0; 
11249   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11251   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
11252   wxString 
*arg4 
= 0 ; 
11254   wxAuiPaneInfo 
*arg6 
= 0 ; 
11261   bool temp4 
= false ; 
11265   PyObject 
* obj0 
= 0 ; 
11266   PyObject 
* obj1 
= 0 ; 
11267   PyObject 
* obj2 
= 0 ; 
11268   PyObject 
* obj3 
= 0 ; 
11269   PyObject 
* obj4 
= 0 ; 
11270   PyObject 
* obj5 
= 0 ; 
11271   char *  kwnames
[] = { 
11272     (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL 
 
11275   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:AuiDockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
; 
11276   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11277   if (!SWIG_IsOK(res1
)) { 
11278     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11280   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11281   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
11282   if (!SWIG_IsOK(res2
)) { 
11283     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");  
11286     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");  
11288   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
11289   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11290   if (!SWIG_IsOK(res3
)) { 
11291     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");  
11293   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
11295     arg4 
= wxString_in_helper(obj3
); 
11296     if (arg4 
== NULL
) SWIG_fail
; 
11301     if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
; 
11303   res6 
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
11304   if (!SWIG_IsOK(res6
)) { 
11305     SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");  
11308     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");  
11310   arg6 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp6
); 
11312     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11313     (arg1
)->DrawCaption(*arg2
,arg3
,(wxString 
const &)*arg4
,(wxRect 
const &)*arg5
,*arg6
); 
11314     wxPyEndAllowThreads(__tstate
); 
11315     if (PyErr_Occurred()) SWIG_fail
; 
11317   resultobj 
= SWIG_Py_Void(); 
11332 SWIGINTERN PyObject 
*_wrap_AuiDockArt_DrawGripper(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11333   PyObject 
*resultobj 
= 0; 
11334   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11336   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
11338   wxAuiPaneInfo 
*arg5 
= 0 ; 
11348   PyObject 
* obj0 
= 0 ; 
11349   PyObject 
* obj1 
= 0 ; 
11350   PyObject 
* obj2 
= 0 ; 
11351   PyObject 
* obj3 
= 0 ; 
11352   PyObject 
* obj4 
= 0 ; 
11353   char *  kwnames
[] = { 
11354     (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL 
 
11357   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
11358   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11359   if (!SWIG_IsOK(res1
)) { 
11360     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11362   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11363   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
11364   if (!SWIG_IsOK(res2
)) { 
11365     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");  
11368     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");  
11370   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
11371   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11372   if (!SWIG_IsOK(res3
)) { 
11373     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");  
11375   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
11378     if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
; 
11380   res5 
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
11381   if (!SWIG_IsOK(res5
)) { 
11382     SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");  
11385     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");  
11387   arg5 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp5
); 
11389     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11390     (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect 
const &)*arg4
,*arg5
); 
11391     wxPyEndAllowThreads(__tstate
); 
11392     if (PyErr_Occurred()) SWIG_fail
; 
11394   resultobj 
= SWIG_Py_Void(); 
11401 SWIGINTERN PyObject 
*_wrap_AuiDockArt_DrawBorder(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11402   PyObject 
*resultobj 
= 0; 
11403   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11405   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
11407   wxAuiPaneInfo 
*arg5 
= 0 ; 
11417   PyObject 
* obj0 
= 0 ; 
11418   PyObject 
* obj1 
= 0 ; 
11419   PyObject 
* obj2 
= 0 ; 
11420   PyObject 
* obj3 
= 0 ; 
11421   PyObject 
* obj4 
= 0 ; 
11422   char *  kwnames
[] = { 
11423     (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL 
 
11426   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
11427   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11428   if (!SWIG_IsOK(res1
)) { 
11429     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11431   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11432   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
11433   if (!SWIG_IsOK(res2
)) { 
11434     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");  
11437     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");  
11439   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
11440   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11441   if (!SWIG_IsOK(res3
)) { 
11442     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");  
11444   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
11447     if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
; 
11449   res5 
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
11450   if (!SWIG_IsOK(res5
)) { 
11451     SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");  
11454     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");  
11456   arg5 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp5
); 
11458     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11459     (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect 
const &)*arg4
,*arg5
); 
11460     wxPyEndAllowThreads(__tstate
); 
11461     if (PyErr_Occurred()) SWIG_fail
; 
11463   resultobj 
= SWIG_Py_Void(); 
11470 SWIGINTERN PyObject 
*_wrap_AuiDockArt_DrawPaneButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11471   PyObject 
*resultobj 
= 0; 
11472   wxAuiDockArt 
*arg1 
= (wxAuiDockArt 
*) 0 ; 
11474   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
11478   wxAuiPaneInfo 
*arg7 
= 0 ; 
11492   PyObject 
* obj0 
= 0 ; 
11493   PyObject 
* obj1 
= 0 ; 
11494   PyObject 
* obj2 
= 0 ; 
11495   PyObject 
* obj3 
= 0 ; 
11496   PyObject 
* obj4 
= 0 ; 
11497   PyObject 
* obj5 
= 0 ; 
11498   PyObject 
* obj6 
= 0 ; 
11499   char *  kwnames
[] = { 
11500     (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL 
 
11503   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:AuiDockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
; 
11504   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 |  0 ); 
11505   if (!SWIG_IsOK(res1
)) { 
11506     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");  
11508   arg1 
= reinterpret_cast< wxAuiDockArt 
* >(argp1
); 
11509   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
11510   if (!SWIG_IsOK(res2
)) { 
11511     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");  
11514     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");  
11516   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
11517   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11518   if (!SWIG_IsOK(res3
)) { 
11519     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");  
11521   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
11522   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
11523   if (!SWIG_IsOK(ecode4
)) { 
11524     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'"); 
11526   arg4 
= static_cast< int >(val4
); 
11527   ecode5 
= SWIG_AsVal_int(obj4
, &val5
); 
11528   if (!SWIG_IsOK(ecode5
)) { 
11529     SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'"); 
11531   arg5 
= static_cast< int >(val5
); 
11534     if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
; 
11536   res7 
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxAuiPaneInfo
,  0 ); 
11537   if (!SWIG_IsOK(res7
)) { 
11538     SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");  
11541     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");  
11543   arg7 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp7
); 
11545     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11546     (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect 
const &)*arg6
,*arg7
); 
11547     wxPyEndAllowThreads(__tstate
); 
11548     if (PyErr_Occurred()) SWIG_fail
; 
11550   resultobj 
= SWIG_Py_Void(); 
11557 SWIGINTERN PyObject 
*AuiDockArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11559   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
11560   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockArt
, SWIG_NewClientData(obj
)); 
11561   return SWIG_Py_Void(); 
11564 SWIGINTERN PyObject 
*_wrap_new_AuiDefaultDockArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11565   PyObject 
*resultobj 
= 0; 
11566   wxAuiDefaultDockArt 
*result 
= 0 ; 
11568   if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultDockArt",0,0,0)) SWIG_fail
; 
11570     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11571     result 
= (wxAuiDefaultDockArt 
*)new wxAuiDefaultDockArt(); 
11572     wxPyEndAllowThreads(__tstate
); 
11573     if (PyErr_Occurred()) SWIG_fail
; 
11575   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_POINTER_NEW 
|  0 ); 
11582 SWIGINTERN PyObject 
*AuiDefaultDockArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11584   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
11585   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_NewClientData(obj
)); 
11586   return SWIG_Py_Void(); 
11589 SWIGINTERN PyObject 
*AuiDefaultDockArt_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11590   return SWIG_Python_InitShadowInstance(args
); 
11593 SWIGINTERN PyObject 
*_wrap_new_AuiFloatingFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11594   PyObject 
*resultobj 
= 0; 
11595   wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
11596   wxAuiManager 
*arg2 
= (wxAuiManager 
*) 0 ; 
11597   wxAuiPaneInfo 
*arg3 
= 0 ; 
11598   int arg4 
= (int) wxID_ANY 
; 
11599   long arg5 
= (long) wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|wxFRAME_NO_TASKBAR
|wxFRAME_FLOAT_ON_PARENT
|wxCLIP_CHILDREN 
; 
11600   wxAuiFloatingFrame 
*result 
= 0 ; 
11611   PyObject 
* obj0 
= 0 ; 
11612   PyObject 
* obj1 
= 0 ; 
11613   PyObject 
* obj2 
= 0 ; 
11614   PyObject 
* obj3 
= 0 ; 
11615   PyObject 
* obj4 
= 0 ; 
11616   char *  kwnames
[] = { 
11617     (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id",(char *) "style", NULL 
 
11620   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:new_AuiFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
11621   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
11622   if (!SWIG_IsOK(res1
)) { 
11623     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxWindow *""'");  
11625   arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
11626   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
11627   if (!SWIG_IsOK(res2
)) { 
11628     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_AuiFloatingFrame" "', expected argument " "2"" of type '" "wxAuiManager *""'");  
11630   arg2 
= reinterpret_cast< wxAuiManager 
* >(argp2
); 
11631   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
11632   if (!SWIG_IsOK(res3
)) { 
11633     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
11636     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");  
11638   arg3 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp3
); 
11640     ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
11641     if (!SWIG_IsOK(ecode4
)) { 
11642       SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_AuiFloatingFrame" "', expected argument " "4"" of type '" "int""'"); 
11644     arg4 
= static_cast< int >(val4
); 
11647     ecode5 
= SWIG_AsVal_long(obj4
, &val5
); 
11648     if (!SWIG_IsOK(ecode5
)) { 
11649       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiFloatingFrame" "', expected argument " "5"" of type '" "long""'"); 
11651     arg5 
= static_cast< long >(val5
); 
11654     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11655     result 
= (wxAuiFloatingFrame 
*)new wxAuiFloatingFrame(arg1
,arg2
,(wxAuiPaneInfo 
const &)*arg3
,arg4
,arg5
); 
11656     wxPyEndAllowThreads(__tstate
); 
11657     if (PyErr_Occurred()) SWIG_fail
; 
11659   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_NEW 
|  0 ); 
11666 SWIGINTERN PyObject 
*_wrap_delete_AuiFloatingFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11667   PyObject 
*resultobj 
= 0; 
11668   wxAuiFloatingFrame 
*arg1 
= (wxAuiFloatingFrame 
*) 0 ; 
11671   PyObject 
*swig_obj
[1] ; 
11673   if (!args
) SWIG_fail
; 
11674   swig_obj
[0] = args
; 
11675   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_DISOWN 
|  0 ); 
11676   if (!SWIG_IsOK(res1
)) { 
11677     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");  
11679   arg1 
= reinterpret_cast< wxAuiFloatingFrame 
* >(argp1
); 
11681     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11684     wxPyEndAllowThreads(__tstate
); 
11685     if (PyErr_Occurred()) SWIG_fail
; 
11687   resultobj 
= SWIG_Py_Void(); 
11694 SWIGINTERN PyObject 
*_wrap_AuiFloatingFrame_SetPaneWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11695   PyObject 
*resultobj 
= 0; 
11696   wxAuiFloatingFrame 
*arg1 
= (wxAuiFloatingFrame 
*) 0 ; 
11697   wxAuiPaneInfo 
*arg2 
= 0 ; 
11702   PyObject 
* obj0 
= 0 ; 
11703   PyObject 
* obj1 
= 0 ; 
11704   char *  kwnames
[] = { 
11705     (char *) "self",(char *) "pane", NULL 
 
11708   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiFloatingFrame_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11709   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 |  0 ); 
11710   if (!SWIG_IsOK(res1
)) { 
11711     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");  
11713   arg1 
= reinterpret_cast< wxAuiFloatingFrame 
* >(argp1
); 
11714   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
,  0  | 0); 
11715   if (!SWIG_IsOK(res2
)) { 
11716     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");  
11719     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");  
11721   arg2 
= reinterpret_cast< wxAuiPaneInfo 
* >(argp2
); 
11723     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11724     (arg1
)->SetPaneWindow((wxAuiPaneInfo 
const &)*arg2
); 
11725     wxPyEndAllowThreads(__tstate
); 
11726     if (PyErr_Occurred()) SWIG_fail
; 
11728   resultobj 
= SWIG_Py_Void(); 
11735 SWIGINTERN PyObject 
*_wrap_AuiFloatingFrame_GetOwnerManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11736   PyObject 
*resultobj 
= 0; 
11737   wxAuiFloatingFrame 
*arg1 
= (wxAuiFloatingFrame 
*) 0 ; 
11738   wxAuiManager 
*result 
= 0 ; 
11741   PyObject 
*swig_obj
[1] ; 
11743   if (!args
) SWIG_fail
; 
11744   swig_obj
[0] = args
; 
11745   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 |  0 ); 
11746   if (!SWIG_IsOK(res1
)) { 
11747     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_GetOwnerManager" "', expected argument " "1"" of type '" "wxAuiFloatingFrame const *""'");  
11749   arg1 
= reinterpret_cast< wxAuiFloatingFrame 
* >(argp1
); 
11751     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11752     result 
= (wxAuiManager 
*)((wxAuiFloatingFrame 
const *)arg1
)->GetOwnerManager(); 
11753     wxPyEndAllowThreads(__tstate
); 
11754     if (PyErr_Occurred()) SWIG_fail
; 
11756   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
11763 SWIGINTERN PyObject 
*AuiFloatingFrame_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11765   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
11766   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_NewClientData(obj
)); 
11767   return SWIG_Py_Void(); 
11770 SWIGINTERN PyObject 
*AuiFloatingFrame_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11771   return SWIG_Python_InitShadowInstance(args
); 
11774 SWIGINTERN PyObject 
*_wrap_new_AuiNotebookEvent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11775   PyObject 
*resultobj 
= 0; 
11776   wxEventType arg1 
= (wxEventType
) wxEVT_NULL 
; 
11777   int arg2 
= (int) 0 ; 
11778   wxAuiNotebookEvent 
*result 
= 0 ; 
11783   PyObject 
* obj0 
= 0 ; 
11784   PyObject 
* obj1 
= 0 ; 
11785   char *  kwnames
[] = { 
11786     (char *) "command_type",(char *) "win_id", NULL 
 
11789   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11791     ecode1 
= SWIG_AsVal_int(obj0
, &val1
); 
11792     if (!SWIG_IsOK(ecode1
)) { 
11793       SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'"); 
11795     arg1 
= static_cast< wxEventType 
>(val1
); 
11798     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11799     if (!SWIG_IsOK(ecode2
)) { 
11800       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'"); 
11802     arg2 
= static_cast< int >(val2
); 
11805     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11806     result 
= (wxAuiNotebookEvent 
*)new wxAuiNotebookEvent(arg1
,arg2
); 
11807     wxPyEndAllowThreads(__tstate
); 
11808     if (PyErr_Occurred()) SWIG_fail
; 
11810   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW 
|  0 ); 
11817 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_SetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11818   PyObject 
*resultobj 
= 0; 
11819   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
11825   PyObject 
* obj0 
= 0 ; 
11826   PyObject 
* obj1 
= 0 ; 
11827   char *  kwnames
[] = { 
11828     (char *) "self",(char *) "s", NULL 
 
11831   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11832   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
11833   if (!SWIG_IsOK(res1
)) { 
11834     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
11836   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
11837   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11838   if (!SWIG_IsOK(ecode2
)) { 
11839     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'"); 
11841   arg2 
= static_cast< int >(val2
); 
11843     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11844     (arg1
)->SetSelection(arg2
); 
11845     wxPyEndAllowThreads(__tstate
); 
11846     if (PyErr_Occurred()) SWIG_fail
; 
11848   resultobj 
= SWIG_Py_Void(); 
11855 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_GetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11856   PyObject 
*resultobj 
= 0; 
11857   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
11861   PyObject 
*swig_obj
[1] ; 
11863   if (!args
) SWIG_fail
; 
11864   swig_obj
[0] = args
; 
11865   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
11866   if (!SWIG_IsOK(res1
)) { 
11867     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");  
11869   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
11871     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11872     result 
= (int)((wxAuiNotebookEvent 
const *)arg1
)->GetSelection(); 
11873     wxPyEndAllowThreads(__tstate
); 
11874     if (PyErr_Occurred()) SWIG_fail
; 
11876   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11883 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11884   PyObject 
*resultobj 
= 0; 
11885   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
11891   PyObject 
* obj0 
= 0 ; 
11892   PyObject 
* obj1 
= 0 ; 
11893   char *  kwnames
[] = { 
11894     (char *) "self",(char *) "s", NULL 
 
11897   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11898   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
11899   if (!SWIG_IsOK(res1
)) { 
11900     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
11902   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
11903   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11904   if (!SWIG_IsOK(ecode2
)) { 
11905     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'"); 
11907   arg2 
= static_cast< int >(val2
); 
11909     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11910     (arg1
)->SetOldSelection(arg2
); 
11911     wxPyEndAllowThreads(__tstate
); 
11912     if (PyErr_Occurred()) SWIG_fail
; 
11914   resultobj 
= SWIG_Py_Void(); 
11921 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11922   PyObject 
*resultobj 
= 0; 
11923   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
11927   PyObject 
*swig_obj
[1] ; 
11929   if (!args
) SWIG_fail
; 
11930   swig_obj
[0] = args
; 
11931   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
11932   if (!SWIG_IsOK(res1
)) { 
11933     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");  
11935   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
11937     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11938     result 
= (int)((wxAuiNotebookEvent 
const *)arg1
)->GetOldSelection(); 
11939     wxPyEndAllowThreads(__tstate
); 
11940     if (PyErr_Occurred()) SWIG_fail
; 
11942   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11949 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_SetDragSource(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11950   PyObject 
*resultobj 
= 0; 
11951   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
11952   wxAuiNotebook 
*arg2 
= (wxAuiNotebook 
*) 0 ; 
11957   PyObject 
* obj0 
= 0 ; 
11958   PyObject 
* obj1 
= 0 ; 
11959   char *  kwnames
[] = { 
11960     (char *) "self",(char *) "s", NULL 
 
11963   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetDragSource",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11964   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
11965   if (!SWIG_IsOK(res1
)) { 
11966     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
11968   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
11969   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
11970   if (!SWIG_IsOK(res2
)) { 
11971     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");  
11973   arg2 
= reinterpret_cast< wxAuiNotebook 
* >(argp2
); 
11975     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11976     (arg1
)->SetDragSource(arg2
); 
11977     wxPyEndAllowThreads(__tstate
); 
11978     if (PyErr_Occurred()) SWIG_fail
; 
11980   resultobj 
= SWIG_Py_Void(); 
11987 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_GetDragSource(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11988   PyObject 
*resultobj 
= 0; 
11989   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
11990   wxAuiNotebook 
*result 
= 0 ; 
11993   PyObject 
*swig_obj
[1] ; 
11995   if (!args
) SWIG_fail
; 
11996   swig_obj
[0] = args
; 
11997   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
11998   if (!SWIG_IsOK(res1
)) { 
11999     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");  
12001   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12003     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12004     result 
= (wxAuiNotebook 
*)((wxAuiNotebookEvent 
const *)arg1
)->GetDragSource(); 
12005     wxPyEndAllowThreads(__tstate
); 
12006     if (PyErr_Occurred()) SWIG_fail
; 
12008   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
12015 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_old_selection_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12016   PyObject 
*resultobj 
= 0; 
12017   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
12023   PyObject 
*swig_obj
[2] ; 
12025   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
; 
12026   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
12027   if (!SWIG_IsOK(res1
)) { 
12028     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
12030   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12031   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
12032   if (!SWIG_IsOK(ecode2
)) { 
12033     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'"); 
12035   arg2 
= static_cast< int >(val2
); 
12036   if (arg1
) (arg1
)->old_selection 
= arg2
; 
12038   resultobj 
= SWIG_Py_Void(); 
12045 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_old_selection_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12046   PyObject 
*resultobj 
= 0; 
12047   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
12051   PyObject 
*swig_obj
[1] ; 
12053   if (!args
) SWIG_fail
; 
12054   swig_obj
[0] = args
; 
12055   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
12056   if (!SWIG_IsOK(res1
)) { 
12057     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
12059   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12060   result 
= (int) ((arg1
)->old_selection
); 
12061   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12068 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_selection_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12069   PyObject 
*resultobj 
= 0; 
12070   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
12076   PyObject 
*swig_obj
[2] ; 
12078   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
; 
12079   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
12080   if (!SWIG_IsOK(res1
)) { 
12081     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
12083   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12084   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
12085   if (!SWIG_IsOK(ecode2
)) { 
12086     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'"); 
12088   arg2 
= static_cast< int >(val2
); 
12089   if (arg1
) (arg1
)->selection 
= arg2
; 
12091   resultobj 
= SWIG_Py_Void(); 
12098 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_selection_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12099   PyObject 
*resultobj 
= 0; 
12100   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
12104   PyObject 
*swig_obj
[1] ; 
12106   if (!args
) SWIG_fail
; 
12107   swig_obj
[0] = args
; 
12108   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
12109   if (!SWIG_IsOK(res1
)) { 
12110     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
12112   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12113   result 
= (int) ((arg1
)->selection
); 
12114   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12121 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_drag_source_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12122   PyObject 
*resultobj 
= 0; 
12123   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
12124   wxAuiNotebook 
*arg2 
= (wxAuiNotebook 
*) 0 ; 
12129   PyObject 
*swig_obj
[2] ; 
12131   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_drag_source_set",2,2,swig_obj
)) SWIG_fail
; 
12132   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
12133   if (!SWIG_IsOK(res1
)) { 
12134     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
12136   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12137   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN 
|  0 ); 
12138   if (!SWIG_IsOK(res2
)) { 
12139     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");  
12141   arg2 
= reinterpret_cast< wxAuiNotebook 
* >(argp2
); 
12142   if (arg1
) (arg1
)->drag_source 
= arg2
; 
12144   resultobj 
= SWIG_Py_Void(); 
12151 SWIGINTERN PyObject 
*_wrap_AuiNotebookEvent_drag_source_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12152   PyObject 
*resultobj 
= 0; 
12153   wxAuiNotebookEvent 
*arg1 
= (wxAuiNotebookEvent 
*) 0 ; 
12154   wxAuiNotebook 
*result 
= 0 ; 
12157   PyObject 
*swig_obj
[1] ; 
12159   if (!args
) SWIG_fail
; 
12160   swig_obj
[0] = args
; 
12161   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 |  0 ); 
12162   if (!SWIG_IsOK(res1
)) { 
12163     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");  
12165   arg1 
= reinterpret_cast< wxAuiNotebookEvent 
* >(argp1
); 
12166   result 
= (wxAuiNotebook 
*) ((arg1
)->drag_source
); 
12167   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
12174 SWIGINTERN PyObject 
*AuiNotebookEvent_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12176   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
12177   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
)); 
12178   return SWIG_Py_Void(); 
12181 SWIGINTERN PyObject 
*AuiNotebookEvent_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12182   return SWIG_Python_InitShadowInstance(args
); 
12185 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_window_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12186   PyObject 
*resultobj 
= 0; 
12187   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12188   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
12193   PyObject 
*swig_obj
[2] ; 
12195   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
; 
12196   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12197   if (!SWIG_IsOK(res1
)) { 
12198     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12200   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12201   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN 
|  0 ); 
12202   if (!SWIG_IsOK(res2
)) { 
12203     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");  
12205   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
12206   if (arg1
) (arg1
)->window 
= arg2
; 
12208   resultobj 
= SWIG_Py_Void(); 
12215 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_window_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12216   PyObject 
*resultobj 
= 0; 
12217   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12218   wxWindow 
*result 
= 0 ; 
12221   PyObject 
*swig_obj
[1] ; 
12223   if (!args
) SWIG_fail
; 
12224   swig_obj
[0] = args
; 
12225   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12226   if (!SWIG_IsOK(res1
)) { 
12227     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12229   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12230   result 
= (wxWindow 
*) ((arg1
)->window
); 
12232     resultobj 
= wxPyMake_wxObject(result
, 0);  
12240 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_caption_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12241   PyObject 
*resultobj 
= 0; 
12242   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12243   wxString 
*arg2 
= (wxString 
*) 0 ; 
12246   bool temp2 
= false ; 
12247   PyObject 
*swig_obj
[2] ; 
12249   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
; 
12250   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12251   if (!SWIG_IsOK(res1
)) { 
12252     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12254   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12256     arg2 
= wxString_in_helper(swig_obj
[1]); 
12257     if (arg2 
== NULL
) SWIG_fail
; 
12260   if (arg1
) (arg1
)->caption 
= *arg2
; 
12262   resultobj 
= SWIG_Py_Void(); 
12277 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_caption_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12278   PyObject 
*resultobj 
= 0; 
12279   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12280   wxString 
*result 
= 0 ; 
12283   PyObject 
*swig_obj
[1] ; 
12285   if (!args
) SWIG_fail
; 
12286   swig_obj
[0] = args
; 
12287   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12288   if (!SWIG_IsOK(res1
)) { 
12289     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12291   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12292   result 
= (wxString 
*)& ((arg1
)->caption
); 
12295     resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
12297     resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
12306 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_bitmap_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12307   PyObject 
*resultobj 
= 0; 
12308   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12309   wxBitmap 
*arg2 
= (wxBitmap 
*) 0 ; 
12314   PyObject 
*swig_obj
[2] ; 
12316   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
; 
12317   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12318   if (!SWIG_IsOK(res1
)) { 
12319     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12321   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12322   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 |  0 ); 
12323   if (!SWIG_IsOK(res2
)) { 
12324     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");  
12326   arg2 
= reinterpret_cast< wxBitmap 
* >(argp2
); 
12327   if (arg1
) (arg1
)->bitmap 
= *arg2
; 
12329   resultobj 
= SWIG_Py_Void(); 
12336 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_bitmap_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12337   PyObject 
*resultobj 
= 0; 
12338   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12339   wxBitmap 
*result 
= 0 ; 
12342   PyObject 
*swig_obj
[1] ; 
12344   if (!args
) SWIG_fail
; 
12345   swig_obj
[0] = args
; 
12346   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12347   if (!SWIG_IsOK(res1
)) { 
12348     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12350   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12351   result 
= (wxBitmap 
*)& ((arg1
)->bitmap
); 
12352   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 |  0 ); 
12359 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_rect_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12360   PyObject 
*resultobj 
= 0; 
12361   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12362   wxRect 
*arg2 
= (wxRect 
*) 0 ; 
12367   PyObject 
*swig_obj
[2] ; 
12369   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
; 
12370   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12371   if (!SWIG_IsOK(res1
)) { 
12372     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12374   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12375   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
12376   if (!SWIG_IsOK(res2
)) { 
12377     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");  
12379   arg2 
= reinterpret_cast< wxRect 
* >(argp2
); 
12380   if (arg1
) (arg1
)->rect 
= *arg2
; 
12382   resultobj 
= SWIG_Py_Void(); 
12389 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_rect_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12390   PyObject 
*resultobj 
= 0; 
12391   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12392   wxRect 
*result 
= 0 ; 
12395   PyObject 
*swig_obj
[1] ; 
12397   if (!args
) SWIG_fail
; 
12398   swig_obj
[0] = args
; 
12399   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12400   if (!SWIG_IsOK(res1
)) { 
12401     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12403   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12404   result 
= (wxRect 
*)& ((arg1
)->rect
); 
12405   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 |  0 ); 
12412 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_active_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12413   PyObject 
*resultobj 
= 0; 
12414   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12420   PyObject 
*swig_obj
[2] ; 
12422   if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
; 
12423   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12424   if (!SWIG_IsOK(res1
)) { 
12425     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12427   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12428   ecode2 
= SWIG_AsVal_bool(swig_obj
[1], &val2
); 
12429   if (!SWIG_IsOK(ecode2
)) { 
12430     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'"); 
12432   arg2 
= static_cast< bool >(val2
); 
12433   if (arg1
) (arg1
)->active 
= arg2
; 
12435   resultobj 
= SWIG_Py_Void(); 
12442 SWIGINTERN PyObject 
*_wrap_AuiNotebookPage_active_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12443   PyObject 
*resultobj 
= 0; 
12444   wxAuiNotebookPage 
*arg1 
= (wxAuiNotebookPage 
*) 0 ; 
12448   PyObject 
*swig_obj
[1] ; 
12450   if (!args
) SWIG_fail
; 
12451   swig_obj
[0] = args
; 
12452   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
12453   if (!SWIG_IsOK(res1
)) { 
12454     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");  
12456   arg1 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp1
); 
12457   result 
= (bool) ((arg1
)->active
); 
12459     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12467 SWIGINTERN PyObject 
*AuiNotebookPage_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12469   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
12470   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
)); 
12471   return SWIG_Py_Void(); 
12474 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_id_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12475   PyObject 
*resultobj 
= 0; 
12476   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12482   PyObject 
*swig_obj
[2] ; 
12484   if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
; 
12485   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12486   if (!SWIG_IsOK(res1
)) { 
12487     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12489   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12490   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
12491   if (!SWIG_IsOK(ecode2
)) { 
12492     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'"); 
12494   arg2 
= static_cast< int >(val2
); 
12495   if (arg1
) (arg1
)->id 
= arg2
; 
12497   resultobj 
= SWIG_Py_Void(); 
12504 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_id_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12505   PyObject 
*resultobj 
= 0; 
12506   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12510   PyObject 
*swig_obj
[1] ; 
12512   if (!args
) SWIG_fail
; 
12513   swig_obj
[0] = args
; 
12514   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12515   if (!SWIG_IsOK(res1
)) { 
12516     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12518   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12519   result 
= (int) ((arg1
)->id
); 
12520   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12527 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_cur_state_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12528   PyObject 
*resultobj 
= 0; 
12529   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12535   PyObject 
*swig_obj
[2] ; 
12537   if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
; 
12538   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12539   if (!SWIG_IsOK(res1
)) { 
12540     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12542   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12543   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
12544   if (!SWIG_IsOK(ecode2
)) { 
12545     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'"); 
12547   arg2 
= static_cast< int >(val2
); 
12548   if (arg1
) (arg1
)->cur_state 
= arg2
; 
12550   resultobj 
= SWIG_Py_Void(); 
12557 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_cur_state_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12558   PyObject 
*resultobj 
= 0; 
12559   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12563   PyObject 
*swig_obj
[1] ; 
12565   if (!args
) SWIG_fail
; 
12566   swig_obj
[0] = args
; 
12567   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12568   if (!SWIG_IsOK(res1
)) { 
12569     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12571   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12572   result 
= (int) ((arg1
)->cur_state
); 
12573   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12580 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_location_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12581   PyObject 
*resultobj 
= 0; 
12582   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12588   PyObject 
*swig_obj
[2] ; 
12590   if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_location_set",2,2,swig_obj
)) SWIG_fail
; 
12591   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12592   if (!SWIG_IsOK(res1
)) { 
12593     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12595   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12596   ecode2 
= SWIG_AsVal_int(swig_obj
[1], &val2
); 
12597   if (!SWIG_IsOK(ecode2
)) { 
12598     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "2"" of type '" "int""'"); 
12600   arg2 
= static_cast< int >(val2
); 
12601   if (arg1
) (arg1
)->location 
= arg2
; 
12603   resultobj 
= SWIG_Py_Void(); 
12610 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_location_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12611   PyObject 
*resultobj 
= 0; 
12612   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12616   PyObject 
*swig_obj
[1] ; 
12618   if (!args
) SWIG_fail
; 
12619   swig_obj
[0] = args
; 
12620   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12621   if (!SWIG_IsOK(res1
)) { 
12622     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12624   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12625   result 
= (int) ((arg1
)->location
); 
12626   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12633 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_bitmap_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12634   PyObject 
*resultobj 
= 0; 
12635   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12636   wxBitmap 
*arg2 
= (wxBitmap 
*) 0 ; 
12641   PyObject 
*swig_obj
[2] ; 
12643   if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
; 
12644   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12645   if (!SWIG_IsOK(res1
)) { 
12646     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12648   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12649   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 |  0 ); 
12650   if (!SWIG_IsOK(res2
)) { 
12651     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");  
12653   arg2 
= reinterpret_cast< wxBitmap 
* >(argp2
); 
12654   if (arg1
) (arg1
)->bitmap 
= *arg2
; 
12656   resultobj 
= SWIG_Py_Void(); 
12663 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_bitmap_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12664   PyObject 
*resultobj 
= 0; 
12665   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12666   wxBitmap 
*result 
= 0 ; 
12669   PyObject 
*swig_obj
[1] ; 
12671   if (!args
) SWIG_fail
; 
12672   swig_obj
[0] = args
; 
12673   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12674   if (!SWIG_IsOK(res1
)) { 
12675     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12677   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12678   result 
= (wxBitmap 
*)& ((arg1
)->bitmap
); 
12679   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 |  0 ); 
12686 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_dis_bitmap_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12687   PyObject 
*resultobj 
= 0; 
12688   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12689   wxBitmap 
*arg2 
= (wxBitmap 
*) 0 ; 
12694   PyObject 
*swig_obj
[2] ; 
12696   if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_dis_bitmap_set",2,2,swig_obj
)) SWIG_fail
; 
12697   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12698   if (!SWIG_IsOK(res1
)) { 
12699     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12701   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12702   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 |  0 ); 
12703   if (!SWIG_IsOK(res2
)) { 
12704     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");  
12706   arg2 
= reinterpret_cast< wxBitmap 
* >(argp2
); 
12707   if (arg1
) (arg1
)->dis_bitmap 
= *arg2
; 
12709   resultobj 
= SWIG_Py_Void(); 
12716 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_dis_bitmap_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12717   PyObject 
*resultobj 
= 0; 
12718   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12719   wxBitmap 
*result 
= 0 ; 
12722   PyObject 
*swig_obj
[1] ; 
12724   if (!args
) SWIG_fail
; 
12725   swig_obj
[0] = args
; 
12726   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12727   if (!SWIG_IsOK(res1
)) { 
12728     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12730   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12731   result 
= (wxBitmap 
*)& ((arg1
)->dis_bitmap
); 
12732   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 |  0 ); 
12739 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_rect_set(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12740   PyObject 
*resultobj 
= 0; 
12741   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12742   wxRect 
*arg2 
= (wxRect 
*) 0 ; 
12747   PyObject 
*swig_obj
[2] ; 
12749   if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
; 
12750   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12751   if (!SWIG_IsOK(res1
)) { 
12752     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12754   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12755   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
12756   if (!SWIG_IsOK(res2
)) { 
12757     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");  
12759   arg2 
= reinterpret_cast< wxRect 
* >(argp2
); 
12760   if (arg1
) (arg1
)->rect 
= *arg2
; 
12762   resultobj 
= SWIG_Py_Void(); 
12769 SWIGINTERN PyObject 
*_wrap_AuiTabContainerButton_rect_get(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12770   PyObject 
*resultobj 
= 0; 
12771   wxAuiTabContainerButton 
*arg1 
= (wxAuiTabContainerButton 
*) 0 ; 
12772   wxRect 
*result 
= 0 ; 
12775   PyObject 
*swig_obj
[1] ; 
12777   if (!args
) SWIG_fail
; 
12778   swig_obj
[0] = args
; 
12779   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 |  0 ); 
12780   if (!SWIG_IsOK(res1
)) { 
12781     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");  
12783   arg1 
= reinterpret_cast< wxAuiTabContainerButton 
* >(argp1
); 
12784   result 
= (wxRect 
*)& ((arg1
)->rect
); 
12785   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 |  0 ); 
12792 SWIGINTERN PyObject 
*AuiTabContainerButton_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12794   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
12795   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
)); 
12796   return SWIG_Py_Void(); 
12799 SWIGINTERN PyObject 
*_wrap_delete_AuiTabArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12800   PyObject 
*resultobj 
= 0; 
12801   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
12804   PyObject 
*swig_obj
[1] ; 
12806   if (!args
) SWIG_fail
; 
12807   swig_obj
[0] = args
; 
12808   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, SWIG_POINTER_DISOWN 
|  0 ); 
12809   if (!SWIG_IsOK(res1
)) { 
12810     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabArt" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
12812   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
12814     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12817     wxPyEndAllowThreads(__tstate
); 
12818     if (PyErr_Occurred()) SWIG_fail
; 
12820   resultobj 
= SWIG_Py_Void(); 
12827 SWIGINTERN PyObject 
*_wrap_AuiTabArt_Clone(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12828   PyObject 
*resultobj 
= 0; 
12829   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
12830   wxAuiTabArt 
*result 
= 0 ; 
12833   PyObject 
*swig_obj
[1] ; 
12835   if (!args
) SWIG_fail
; 
12836   swig_obj
[0] = args
; 
12837   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
12838   if (!SWIG_IsOK(res1
)) { 
12839     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_Clone" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
12841   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
12843     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12844     result 
= (wxAuiTabArt 
*)(arg1
)->Clone(); 
12845     wxPyEndAllowThreads(__tstate
); 
12846     if (PyErr_Occurred()) SWIG_fail
; 
12848   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
12855 SWIGINTERN PyObject 
*_wrap_AuiTabArt_SetFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12856   PyObject 
*resultobj 
= 0; 
12857   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
12863   PyObject 
* obj0 
= 0 ; 
12864   PyObject 
* obj1 
= 0 ; 
12865   char *  kwnames
[] = { 
12866     (char *) "self",(char *) "flags", NULL 
 
12869   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12870   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
12871   if (!SWIG_IsOK(res1
)) { 
12872     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
12874   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
12875   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12876   if (!SWIG_IsOK(ecode2
)) { 
12877     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "2"" of type '" "int""'"); 
12879   arg2 
= static_cast< int >(val2
); 
12881     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12882     (arg1
)->SetFlags(arg2
); 
12883     wxPyEndAllowThreads(__tstate
); 
12884     if (PyErr_Occurred()) SWIG_fail
; 
12886   resultobj 
= SWIG_Py_Void(); 
12893 SWIGINTERN PyObject 
*_wrap_AuiTabArt_SetSizingInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12894   PyObject 
*resultobj 
= 0; 
12895   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
12903   PyObject 
* obj0 
= 0 ; 
12904   PyObject 
* obj1 
= 0 ; 
12905   PyObject 
* obj2 
= 0 ; 
12906   char *  kwnames
[] = { 
12907     (char *) "self",(char *) "tab_ctrl_size",(char *) "tab_count", NULL 
 
12910   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabArt_SetSizingInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
12911   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
12912   if (!SWIG_IsOK(res1
)) { 
12913     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
12915   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
12918     if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
12920   ecode3 
= SWIG_AsVal_size_t(obj2
, &val3
); 
12921   if (!SWIG_IsOK(ecode3
)) { 
12922     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "3"" of type '" "size_t""'"); 
12924   arg3 
= static_cast< size_t >(val3
); 
12926     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12927     (arg1
)->SetSizingInfo((wxSize 
const &)*arg2
,arg3
); 
12928     wxPyEndAllowThreads(__tstate
); 
12929     if (PyErr_Occurred()) SWIG_fail
; 
12931   resultobj 
= SWIG_Py_Void(); 
12938 SWIGINTERN PyObject 
*_wrap_AuiTabArt_SetNormalFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12939   PyObject 
*resultobj 
= 0; 
12940   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
12946   PyObject 
* obj0 
= 0 ; 
12947   PyObject 
* obj1 
= 0 ; 
12948   char *  kwnames
[] = { 
12949     (char *) "self",(char *) "font", NULL 
 
12952   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12953   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
12954   if (!SWIG_IsOK(res1
)) { 
12955     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
12957   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
12958   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
,  0  | 0); 
12959   if (!SWIG_IsOK(res2
)) { 
12960     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
12963     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
12965   arg2 
= reinterpret_cast< wxFont 
* >(argp2
); 
12967     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12968     (arg1
)->SetNormalFont((wxFont 
const &)*arg2
); 
12969     wxPyEndAllowThreads(__tstate
); 
12970     if (PyErr_Occurred()) SWIG_fail
; 
12972   resultobj 
= SWIG_Py_Void(); 
12979 SWIGINTERN PyObject 
*_wrap_AuiTabArt_SetSelectedFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12980   PyObject 
*resultobj 
= 0; 
12981   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
12987   PyObject 
* obj0 
= 0 ; 
12988   PyObject 
* obj1 
= 0 ; 
12989   char *  kwnames
[] = { 
12990     (char *) "self",(char *) "font", NULL 
 
12993   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12994   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
12995   if (!SWIG_IsOK(res1
)) { 
12996     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
12998   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
12999   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
,  0  | 0); 
13000   if (!SWIG_IsOK(res2
)) { 
13001     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
13004     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
13006   arg2 
= reinterpret_cast< wxFont 
* >(argp2
); 
13008     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13009     (arg1
)->SetSelectedFont((wxFont 
const &)*arg2
); 
13010     wxPyEndAllowThreads(__tstate
); 
13011     if (PyErr_Occurred()) SWIG_fail
; 
13013   resultobj 
= SWIG_Py_Void(); 
13020 SWIGINTERN PyObject 
*_wrap_AuiTabArt_SetMeasuringFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13021   PyObject 
*resultobj 
= 0; 
13022   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13028   PyObject 
* obj0 
= 0 ; 
13029   PyObject 
* obj1 
= 0 ; 
13030   char *  kwnames
[] = { 
13031     (char *) "self",(char *) "font", NULL 
 
13034   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
13035   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13036   if (!SWIG_IsOK(res1
)) { 
13037     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13039   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13040   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
,  0  | 0); 
13041   if (!SWIG_IsOK(res2
)) { 
13042     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
13045     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
13047   arg2 
= reinterpret_cast< wxFont 
* >(argp2
); 
13049     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13050     (arg1
)->SetMeasuringFont((wxFont 
const &)*arg2
); 
13051     wxPyEndAllowThreads(__tstate
); 
13052     if (PyErr_Occurred()) SWIG_fail
; 
13054   resultobj 
= SWIG_Py_Void(); 
13061 SWIGINTERN PyObject 
*_wrap_AuiTabArt_DrawBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13062   PyObject 
*resultobj 
= 0; 
13063   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13065   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
13074   PyObject 
* obj0 
= 0 ; 
13075   PyObject 
* obj1 
= 0 ; 
13076   PyObject 
* obj2 
= 0 ; 
13077   PyObject 
* obj3 
= 0 ; 
13078   char *  kwnames
[] = { 
13079     (char *) "self",(char *) "dc",(char *) "wnd",(char *) "rect", NULL 
 
13082   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
13083   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13084   if (!SWIG_IsOK(res1
)) { 
13085     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13087   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13088   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
13089   if (!SWIG_IsOK(res2
)) { 
13090     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");  
13093     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");  
13095   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
13096   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13097   if (!SWIG_IsOK(res3
)) { 
13098     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");  
13100   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
13103     if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
; 
13106     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13107     (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect 
const &)*arg4
); 
13108     wxPyEndAllowThreads(__tstate
); 
13109     if (PyErr_Occurred()) SWIG_fail
; 
13111   resultobj 
= SWIG_Py_Void(); 
13118 SWIGINTERN PyObject 
*_wrap_AuiTabArt_DrawTab(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13119   PyObject 
*resultobj 
= 0; 
13120   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13122   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
13123   wxAuiNotebookPage 
*arg4 
= 0 ; 
13126   wxRect 
*arg7 
= (wxRect 
*) 0 ; 
13127   wxRect 
*arg8 
= (wxRect 
*) 0 ; 
13128   int *arg9 
= (int *) 0 ; 
13146   PyObject 
* obj0 
= 0 ; 
13147   PyObject 
* obj1 
= 0 ; 
13148   PyObject 
* obj2 
= 0 ; 
13149   PyObject 
* obj3 
= 0 ; 
13150   PyObject 
* obj4 
= 0 ; 
13151   PyObject 
* obj5 
= 0 ; 
13152   PyObject 
* obj6 
= 0 ; 
13153   PyObject 
* obj7 
= 0 ; 
13154   PyObject 
* obj8 
= 0 ; 
13155   char *  kwnames
[] = { 
13156     (char *) "self",(char *) "dc",(char *) "wnd",(char *) "pane",(char *) "in_rect",(char *) "close_button_state",(char *) "out_tab_rect",(char *) "out_button_rect",(char *) "x_extent", NULL 
 
13159   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOO:AuiTabArt_DrawTab",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
; 
13160   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13161   if (!SWIG_IsOK(res1
)) { 
13162     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13164   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13165   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
13166   if (!SWIG_IsOK(res2
)) { 
13167     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");  
13170     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");  
13172   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
13173   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13174   if (!SWIG_IsOK(res3
)) { 
13175     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "3"" of type '" "wxWindow *""'");  
13177   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
13178   res4 
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxAuiNotebookPage
,  0  | 0); 
13179   if (!SWIG_IsOK(res4
)) { 
13180     SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "4"" of type '" "wxAuiNotebookPage const &""'");  
13183     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "4"" of type '" "wxAuiNotebookPage const &""'");  
13185   arg4 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp4
); 
13188     if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
; 
13190   ecode6 
= SWIG_AsVal_int(obj5
, &val6
); 
13191   if (!SWIG_IsOK(ecode6
)) { 
13192     SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "int""'"); 
13194   arg6 
= static_cast< int >(val6
); 
13195   res7 
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
13196   if (!SWIG_IsOK(res7
)) { 
13197     SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "7"" of type '" "wxRect *""'");  
13199   arg7 
= reinterpret_cast< wxRect 
* >(argp7
); 
13200   res8 
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
13201   if (!SWIG_IsOK(res8
)) { 
13202     SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "8"" of type '" "wxRect *""'");  
13204   arg8 
= reinterpret_cast< wxRect 
* >(argp8
); 
13205   res9 
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_int
, 0 |  0 ); 
13206   if (!SWIG_IsOK(res9
)) { 
13207     SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "9"" of type '" "int *""'");  
13209   arg9 
= reinterpret_cast< int * >(argp9
); 
13211     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13212     (arg1
)->DrawTab(*arg2
,arg3
,(wxAuiNotebookPage 
const &)*arg4
,(wxRect 
const &)*arg5
,arg6
,arg7
,arg8
,arg9
); 
13213     wxPyEndAllowThreads(__tstate
); 
13214     if (PyErr_Occurred()) SWIG_fail
; 
13216   resultobj 
= SWIG_Py_Void(); 
13223 SWIGINTERN PyObject 
*_wrap_AuiTabArt_DrawButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13224   PyObject 
*resultobj 
= 0; 
13225   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13227   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
13232   wxRect 
*arg8 
= (wxRect 
*) 0 ; 
13248   PyObject 
* obj0 
= 0 ; 
13249   PyObject 
* obj1 
= 0 ; 
13250   PyObject 
* obj2 
= 0 ; 
13251   PyObject 
* obj3 
= 0 ; 
13252   PyObject 
* obj4 
= 0 ; 
13253   PyObject 
* obj5 
= 0 ; 
13254   PyObject 
* obj6 
= 0 ; 
13255   PyObject 
* obj7 
= 0 ; 
13256   char *  kwnames
[] = { 
13257     (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "bitmap_id",(char *) "button_state",(char *) "orientation",(char *) "out_rect", NULL 
 
13260   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:AuiTabArt_DrawButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
; 
13261   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13262   if (!SWIG_IsOK(res1
)) { 
13263     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13265   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13266   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
13267   if (!SWIG_IsOK(res2
)) { 
13268     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");  
13271     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");  
13273   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
13274   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13275   if (!SWIG_IsOK(res3
)) { 
13276     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "3"" of type '" "wxWindow *""'");  
13278   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
13281     if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
; 
13283   ecode5 
= SWIG_AsVal_int(obj4
, &val5
); 
13284   if (!SWIG_IsOK(ecode5
)) { 
13285     SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "5"" of type '" "int""'"); 
13287   arg5 
= static_cast< int >(val5
); 
13288   ecode6 
= SWIG_AsVal_int(obj5
, &val6
); 
13289   if (!SWIG_IsOK(ecode6
)) { 
13290     SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "6"" of type '" "int""'"); 
13292   arg6 
= static_cast< int >(val6
); 
13293   ecode7 
= SWIG_AsVal_int(obj6
, &val7
); 
13294   if (!SWIG_IsOK(ecode7
)) { 
13295     SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "7"" of type '" "int""'"); 
13297   arg7 
= static_cast< int >(val7
); 
13298   res8 
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_wxRect
, 0 |  0 ); 
13299   if (!SWIG_IsOK(res8
)) { 
13300     SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxRect *""'");  
13302   arg8 
= reinterpret_cast< wxRect 
* >(argp8
); 
13304     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13305     (arg1
)->DrawButton(*arg2
,arg3
,(wxRect 
const &)*arg4
,arg5
,arg6
,arg7
,arg8
); 
13306     wxPyEndAllowThreads(__tstate
); 
13307     if (PyErr_Occurred()) SWIG_fail
; 
13309   resultobj 
= SWIG_Py_Void(); 
13316 SWIGINTERN PyObject 
*_wrap_AuiTabArt_GetTabSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13317   PyObject 
*resultobj 
= 0; 
13318   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13320   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
13321   wxString 
*arg4 
= 0 ; 
13322   wxBitmap 
*arg5 
= 0 ; 
13325   int *arg8 
= (int *) 0 ; 
13333   bool temp4 
= false ; 
13342   PyObject 
* obj0 
= 0 ; 
13343   PyObject 
* obj1 
= 0 ; 
13344   PyObject 
* obj2 
= 0 ; 
13345   PyObject 
* obj3 
= 0 ; 
13346   PyObject 
* obj4 
= 0 ; 
13347   PyObject 
* obj5 
= 0 ; 
13348   PyObject 
* obj6 
= 0 ; 
13349   PyObject 
* obj7 
= 0 ; 
13350   char *  kwnames
[] = { 
13351     (char *) "self",(char *) "dc",(char *) "wnd",(char *) "caption",(char *) "bitmap",(char *) "active",(char *) "close_button_state",(char *) "x_extent", NULL 
 
13354   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:AuiTabArt_GetTabSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
; 
13355   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13356   if (!SWIG_IsOK(res1
)) { 
13357     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13359   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13360   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
,  0 ); 
13361   if (!SWIG_IsOK(res2
)) { 
13362     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");  
13365     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");  
13367   arg2 
= reinterpret_cast< wxDC 
* >(argp2
); 
13368   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13369   if (!SWIG_IsOK(res3
)) { 
13370     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "3"" of type '" "wxWindow *""'");  
13372   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
13374     arg4 
= wxString_in_helper(obj3
); 
13375     if (arg4 
== NULL
) SWIG_fail
; 
13378   res5 
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
13379   if (!SWIG_IsOK(res5
)) { 
13380     SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");  
13383     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");  
13385   arg5 
= reinterpret_cast< wxBitmap 
* >(argp5
); 
13386   ecode6 
= SWIG_AsVal_bool(obj5
, &val6
); 
13387   if (!SWIG_IsOK(ecode6
)) { 
13388     SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "6"" of type '" "bool""'"); 
13390   arg6 
= static_cast< bool >(val6
); 
13391   ecode7 
= SWIG_AsVal_int(obj6
, &val7
); 
13392   if (!SWIG_IsOK(ecode7
)) { 
13393     SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "7"" of type '" "int""'"); 
13395   arg7 
= static_cast< int >(val7
); 
13396   res8 
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_int
, 0 |  0 ); 
13397   if (!SWIG_IsOK(res8
)) { 
13398     SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "8"" of type '" "int *""'");  
13400   arg8 
= reinterpret_cast< int * >(argp8
); 
13402     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13403     result 
= (arg1
)->GetTabSize(*arg2
,arg3
,(wxString 
const &)*arg4
,(wxBitmap 
const &)*arg5
,arg6
,arg7
,arg8
); 
13404     wxPyEndAllowThreads(__tstate
); 
13405     if (PyErr_Occurred()) SWIG_fail
; 
13407   resultobj 
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN 
|  0 ); 
13422 SWIGINTERN PyObject 
*_wrap_AuiTabArt_ShowDropDown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13423   PyObject 
*resultobj 
= 0; 
13424   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13425   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
13426   wxAuiNotebookPageArray 
*arg3 
= 0 ; 
13437   PyObject 
* obj0 
= 0 ; 
13438   PyObject 
* obj1 
= 0 ; 
13439   PyObject 
* obj2 
= 0 ; 
13440   PyObject 
* obj3 
= 0 ; 
13441   char *  kwnames
[] = { 
13442     (char *) "self",(char *) "wnd",(char *) "items",(char *) "active_idx", NULL 
 
13445   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_ShowDropDown",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
13446   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13447   if (!SWIG_IsOK(res1
)) { 
13448     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13450   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13451   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13452   if (!SWIG_IsOK(res2
)) { 
13453     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "2"" of type '" "wxWindow *""'");  
13455   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
13456   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPageArray
,  0  | 0); 
13457   if (!SWIG_IsOK(res3
)) { 
13458     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");  
13461     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");  
13463   arg3 
= reinterpret_cast< wxAuiNotebookPageArray 
* >(argp3
); 
13464   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
13465   if (!SWIG_IsOK(ecode4
)) { 
13466     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "4"" of type '" "int""'"); 
13468   arg4 
= static_cast< int >(val4
); 
13470     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13471     result 
= (int)(arg1
)->ShowDropDown(arg2
,(wxAuiNotebookPageArray 
const &)*arg3
,arg4
); 
13472     wxPyEndAllowThreads(__tstate
); 
13473     if (PyErr_Occurred()) SWIG_fail
; 
13475   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
13482 SWIGINTERN PyObject 
*_wrap_AuiTabArt_GetIndentSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13483   PyObject 
*resultobj 
= 0; 
13484   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13488   PyObject 
*swig_obj
[1] ; 
13490   if (!args
) SWIG_fail
; 
13491   swig_obj
[0] = args
; 
13492   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13493   if (!SWIG_IsOK(res1
)) { 
13494     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetIndentSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13496   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13498     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13499     result 
= (int)(arg1
)->GetIndentSize(); 
13500     wxPyEndAllowThreads(__tstate
); 
13501     if (PyErr_Occurred()) SWIG_fail
; 
13503   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
13510 SWIGINTERN PyObject 
*_wrap_AuiTabArt_GetBestTabCtrlSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13511   PyObject 
*resultobj 
= 0; 
13512   wxAuiTabArt 
*arg1 
= (wxAuiTabArt 
*) 0 ; 
13513   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
13514   wxAuiNotebookPageArray 
*arg3 
= 0 ; 
13524   PyObject 
* obj0 
= 0 ; 
13525   PyObject 
* obj1 
= 0 ; 
13526   PyObject 
* obj2 
= 0 ; 
13527   PyObject 
* obj3 
= 0 ; 
13528   char *  kwnames
[] = { 
13529     (char *) "self",(char *) "wnd",(char *) "pages",(char *) "required_bmp_size", NULL 
 
13532   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_GetBestTabCtrlSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
13533   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13534   if (!SWIG_IsOK(res1
)) { 
13535     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");  
13537   arg1 
= reinterpret_cast< wxAuiTabArt 
* >(argp1
); 
13538   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13539   if (!SWIG_IsOK(res2
)) { 
13540     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "2"" of type '" "wxWindow *""'");  
13542   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
13543   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPageArray
,  0  | 0); 
13544   if (!SWIG_IsOK(res3
)) { 
13545     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");  
13548     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");  
13550   arg3 
= reinterpret_cast< wxAuiNotebookPageArray 
* >(argp3
); 
13553     if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
13556     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13557     result 
= (int)(arg1
)->GetBestTabCtrlSize(arg2
,(wxAuiNotebookPageArray 
const &)*arg3
,(wxSize 
const &)*arg4
); 
13558     wxPyEndAllowThreads(__tstate
); 
13559     if (PyErr_Occurred()) SWIG_fail
; 
13561   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
13568 SWIGINTERN PyObject 
*AuiTabArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13570   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
13571   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabArt
, SWIG_NewClientData(obj
)); 
13572   return SWIG_Py_Void(); 
13575 SWIGINTERN PyObject 
*_wrap_new_AuiDefaultTabArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13576   PyObject 
*resultobj 
= 0; 
13577   wxAuiDefaultTabArt 
*result 
= 0 ; 
13579   if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultTabArt",0,0,0)) SWIG_fail
; 
13581     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13582     result 
= (wxAuiDefaultTabArt 
*)new wxAuiDefaultTabArt(); 
13583     wxPyEndAllowThreads(__tstate
); 
13584     if (PyErr_Occurred()) SWIG_fail
; 
13586   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_NEW 
|  0 ); 
13593 SWIGINTERN PyObject 
*_wrap_delete_AuiDefaultTabArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13594   PyObject 
*resultobj 
= 0; 
13595   wxAuiDefaultTabArt 
*arg1 
= (wxAuiDefaultTabArt 
*) 0 ; 
13598   PyObject 
*swig_obj
[1] ; 
13600   if (!args
) SWIG_fail
; 
13601   swig_obj
[0] = args
; 
13602   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_DISOWN 
|  0 ); 
13603   if (!SWIG_IsOK(res1
)) { 
13604     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDefaultTabArt" "', expected argument " "1"" of type '" "wxAuiDefaultTabArt *""'");  
13606   arg1 
= reinterpret_cast< wxAuiDefaultTabArt 
* >(argp1
); 
13608     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13611     wxPyEndAllowThreads(__tstate
); 
13612     if (PyErr_Occurred()) SWIG_fail
; 
13614   resultobj 
= SWIG_Py_Void(); 
13621 SWIGINTERN PyObject 
*AuiDefaultTabArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13623   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
13624   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_NewClientData(obj
)); 
13625   return SWIG_Py_Void(); 
13628 SWIGINTERN PyObject 
*AuiDefaultTabArt_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13629   return SWIG_Python_InitShadowInstance(args
); 
13632 SWIGINTERN PyObject 
*_wrap_new_AuiSimpleTabArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13633   PyObject 
*resultobj 
= 0; 
13634   wxAuiSimpleTabArt 
*result 
= 0 ; 
13636   if (!SWIG_Python_UnpackTuple(args
,"new_AuiSimpleTabArt",0,0,0)) SWIG_fail
; 
13638     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13639     result 
= (wxAuiSimpleTabArt 
*)new wxAuiSimpleTabArt(); 
13640     wxPyEndAllowThreads(__tstate
); 
13641     if (PyErr_Occurred()) SWIG_fail
; 
13643   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_NEW 
|  0 ); 
13650 SWIGINTERN PyObject 
*_wrap_delete_AuiSimpleTabArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13651   PyObject 
*resultobj 
= 0; 
13652   wxAuiSimpleTabArt 
*arg1 
= (wxAuiSimpleTabArt 
*) 0 ; 
13655   PyObject 
*swig_obj
[1] ; 
13657   if (!args
) SWIG_fail
; 
13658   swig_obj
[0] = args
; 
13659   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_DISOWN 
|  0 ); 
13660   if (!SWIG_IsOK(res1
)) { 
13661     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiSimpleTabArt" "', expected argument " "1"" of type '" "wxAuiSimpleTabArt *""'");  
13663   arg1 
= reinterpret_cast< wxAuiSimpleTabArt 
* >(argp1
); 
13665     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13668     wxPyEndAllowThreads(__tstate
); 
13669     if (PyErr_Occurred()) SWIG_fail
; 
13671   resultobj 
= SWIG_Py_Void(); 
13678 SWIGINTERN PyObject 
*AuiSimpleTabArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13680   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
13681   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_NewClientData(obj
)); 
13682   return SWIG_Py_Void(); 
13685 SWIGINTERN PyObject 
*AuiSimpleTabArt_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13686   return SWIG_Python_InitShadowInstance(args
); 
13689 SWIGINTERN PyObject 
*_wrap_new_AuiTabContainer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13690   PyObject 
*resultobj 
= 0; 
13691   wxAuiTabContainer 
*result 
= 0 ; 
13693   if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
; 
13695     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13696     result 
= (wxAuiTabContainer 
*)new wxAuiTabContainer(); 
13697     wxPyEndAllowThreads(__tstate
); 
13698     if (PyErr_Occurred()) SWIG_fail
; 
13700   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW 
|  0 ); 
13707 SWIGINTERN PyObject 
*_wrap_delete_AuiTabContainer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13708   PyObject 
*resultobj 
= 0; 
13709   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13712   PyObject 
*swig_obj
[1] ; 
13714   if (!args
) SWIG_fail
; 
13715   swig_obj
[0] = args
; 
13716   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN 
|  0 ); 
13717   if (!SWIG_IsOK(res1
)) { 
13718     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
13720   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13722     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13725     wxPyEndAllowThreads(__tstate
); 
13726     if (PyErr_Occurred()) SWIG_fail
; 
13728   resultobj 
= SWIG_Py_Void(); 
13735 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13736   PyObject 
*resultobj 
= 0; 
13737   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13738   wxAuiTabArt 
*arg2 
= (wxAuiTabArt 
*) 0 ; 
13743   PyObject 
* obj0 
= 0 ; 
13744   PyObject 
* obj1 
= 0 ; 
13745   char *  kwnames
[] = { 
13746     (char *) "self",(char *) "art", NULL 
 
13749   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
13750   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
13751   if (!SWIG_IsOK(res1
)) { 
13752     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
13754   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13755   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13756   if (!SWIG_IsOK(res2
)) { 
13757     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");  
13759   arg2 
= reinterpret_cast< wxAuiTabArt 
* >(argp2
); 
13761     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13762     (arg1
)->SetArtProvider(arg2
); 
13763     wxPyEndAllowThreads(__tstate
); 
13764     if (PyErr_Occurred()) SWIG_fail
; 
13766   resultobj 
= SWIG_Py_Void(); 
13773 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13774   PyObject 
*resultobj 
= 0; 
13775   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13776   wxAuiTabArt 
*result 
= 0 ; 
13779   PyObject 
*swig_obj
[1] ; 
13781   if (!args
) SWIG_fail
; 
13782   swig_obj
[0] = args
; 
13783   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
13784   if (!SWIG_IsOK(res1
)) { 
13785     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
13787   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13789     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13790     result 
= (wxAuiTabArt 
*)((wxAuiTabContainer 
const *)arg1
)->GetArtProvider(); 
13791     wxPyEndAllowThreads(__tstate
); 
13792     if (PyErr_Occurred()) SWIG_fail
; 
13794   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
13801 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13802   PyObject 
*resultobj 
= 0; 
13803   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13809   PyObject 
* obj0 
= 0 ; 
13810   PyObject 
* obj1 
= 0 ; 
13811   char *  kwnames
[] = { 
13812     (char *) "self",(char *) "flags", NULL 
 
13815   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
13816   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
13817   if (!SWIG_IsOK(res1
)) { 
13818     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
13820   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13821   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
13822   if (!SWIG_IsOK(ecode2
)) { 
13823     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "2"" of type '" "int""'"); 
13825   arg2 
= static_cast< int >(val2
); 
13827     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13828     (arg1
)->SetFlags(arg2
); 
13829     wxPyEndAllowThreads(__tstate
); 
13830     if (PyErr_Occurred()) SWIG_fail
; 
13832   resultobj 
= SWIG_Py_Void(); 
13839 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13840   PyObject 
*resultobj 
= 0; 
13841   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13845   PyObject 
*swig_obj
[1] ; 
13847   if (!args
) SWIG_fail
; 
13848   swig_obj
[0] = args
; 
13849   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
13850   if (!SWIG_IsOK(res1
)) { 
13851     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
13853   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13855     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13856     result 
= (int)((wxAuiTabContainer 
const *)arg1
)->GetFlags(); 
13857     wxPyEndAllowThreads(__tstate
); 
13858     if (PyErr_Occurred()) SWIG_fail
; 
13860   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
13867 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_AddPage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13868   PyObject 
*resultobj 
= 0; 
13869   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13870   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
13871   wxAuiNotebookPage 
*arg3 
= 0 ; 
13879   PyObject 
* obj0 
= 0 ; 
13880   PyObject 
* obj1 
= 0 ; 
13881   PyObject 
* obj2 
= 0 ; 
13882   char *  kwnames
[] = { 
13883     (char *) "self",(char *) "page",(char *) "info", NULL 
 
13886   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
13887   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
13888   if (!SWIG_IsOK(res1
)) { 
13889     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
13891   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13892   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13893   if (!SWIG_IsOK(res2
)) { 
13894     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");  
13896   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
13897   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
,  0  | 0); 
13898   if (!SWIG_IsOK(res3
)) { 
13899     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");  
13902     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");  
13904   arg3 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp3
); 
13906     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13907     result 
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage 
const &)*arg3
); 
13908     wxPyEndAllowThreads(__tstate
); 
13909     if (PyErr_Occurred()) SWIG_fail
; 
13912     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13920 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_InsertPage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13921   PyObject 
*resultobj 
= 0; 
13922   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13923   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
13924   wxAuiNotebookPage 
*arg3 
= 0 ; 
13935   PyObject 
* obj0 
= 0 ; 
13936   PyObject 
* obj1 
= 0 ; 
13937   PyObject 
* obj2 
= 0 ; 
13938   PyObject 
* obj3 
= 0 ; 
13939   char *  kwnames
[] = { 
13940     (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL 
 
13943   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
13944   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
13945   if (!SWIG_IsOK(res1
)) { 
13946     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
13948   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
13949   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
13950   if (!SWIG_IsOK(res2
)) { 
13951     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");  
13953   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
13954   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
,  0  | 0); 
13955   if (!SWIG_IsOK(res3
)) { 
13956     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");  
13959     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");  
13961   arg3 
= reinterpret_cast< wxAuiNotebookPage 
* >(argp3
); 
13962   ecode4 
= SWIG_AsVal_size_t(obj3
, &val4
); 
13963   if (!SWIG_IsOK(ecode4
)) { 
13964     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'"); 
13966   arg4 
= static_cast< size_t >(val4
); 
13968     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13969     result 
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage 
const &)*arg3
,arg4
); 
13970     wxPyEndAllowThreads(__tstate
); 
13971     if (PyErr_Occurred()) SWIG_fail
; 
13974     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13982 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_MovePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
13983   PyObject 
*resultobj 
= 0; 
13984   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
13985   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
13994   PyObject 
* obj0 
= 0 ; 
13995   PyObject 
* obj1 
= 0 ; 
13996   PyObject 
* obj2 
= 0 ; 
13997   char *  kwnames
[] = { 
13998     (char *) "self",(char *) "page",(char *) "new_idx", NULL 
 
14001   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_MovePage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
14002   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14003   if (!SWIG_IsOK(res1
)) { 
14004     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14006   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14007   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
14008   if (!SWIG_IsOK(res2
)) { 
14009     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "2"" of type '" "wxWindow *""'");  
14011   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
14012   ecode3 
= SWIG_AsVal_size_t(obj2
, &val3
); 
14013   if (!SWIG_IsOK(ecode3
)) { 
14014     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "3"" of type '" "size_t""'"); 
14016   arg3 
= static_cast< size_t >(val3
); 
14018     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14019     result 
= (bool)(arg1
)->MovePage(arg2
,arg3
); 
14020     wxPyEndAllowThreads(__tstate
); 
14021     if (PyErr_Occurred()) SWIG_fail
; 
14024     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14032 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_RemovePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14033   PyObject 
*resultobj 
= 0; 
14034   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14035   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
14041   PyObject 
* obj0 
= 0 ; 
14042   PyObject 
* obj1 
= 0 ; 
14043   char *  kwnames
[] = { 
14044     (char *) "self",(char *) "page", NULL 
 
14047   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14048   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14049   if (!SWIG_IsOK(res1
)) { 
14050     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14052   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14053   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
14054   if (!SWIG_IsOK(res2
)) { 
14055     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");  
14057   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
14059     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14060     result 
= (bool)(arg1
)->RemovePage(arg2
); 
14061     wxPyEndAllowThreads(__tstate
); 
14062     if (PyErr_Occurred()) SWIG_fail
; 
14065     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14073 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject 
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject 
**swig_obj
) { 
14074   PyObject 
*resultobj 
= 0; 
14075   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14076   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
14083   if ((nobjs 
< 2) || (nobjs 
> 2)) SWIG_fail
; 
14084   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14085   if (!SWIG_IsOK(res1
)) { 
14086     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14088   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14089   res2 
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
14090   if (!SWIG_IsOK(res2
)) { 
14091     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");  
14093   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
14095     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14096     result 
= (bool)(arg1
)->SetActivePage(arg2
); 
14097     wxPyEndAllowThreads(__tstate
); 
14098     if (PyErr_Occurred()) SWIG_fail
; 
14101     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14109 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject 
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject 
**swig_obj
) { 
14110   PyObject 
*resultobj 
= 0; 
14111   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14119   if ((nobjs 
< 2) || (nobjs 
> 2)) SWIG_fail
; 
14120   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14121   if (!SWIG_IsOK(res1
)) { 
14122     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14124   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14125   ecode2 
= SWIG_AsVal_size_t(swig_obj
[1], &val2
); 
14126   if (!SWIG_IsOK(ecode2
)) { 
14127     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'"); 
14129   arg2 
= static_cast< size_t >(val2
); 
14131     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14132     result 
= (bool)(arg1
)->SetActivePage(arg2
); 
14133     wxPyEndAllowThreads(__tstate
); 
14134     if (PyErr_Occurred()) SWIG_fail
; 
14137     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14145 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetActivePage(PyObject 
*self
, PyObject 
*args
) { 
14149   if (!(argc 
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
; 
14155       int res 
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0); 
14156       _v 
= SWIG_CheckState(res
); 
14158     if (!_v
) goto check_1
; 
14159     return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
); 
14164     return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
); 
14168   SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'"); 
14173 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetNoneActive(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14174   PyObject 
*resultobj 
= 0; 
14175   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14178   PyObject 
*swig_obj
[1] ; 
14180   if (!args
) SWIG_fail
; 
14181   swig_obj
[0] = args
; 
14182   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14183   if (!SWIG_IsOK(res1
)) { 
14184     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14186   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14188     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14189     (arg1
)->SetNoneActive(); 
14190     wxPyEndAllowThreads(__tstate
); 
14191     if (PyErr_Occurred()) SWIG_fail
; 
14193   resultobj 
= SWIG_Py_Void(); 
14200 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetActivePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14201   PyObject 
*resultobj 
= 0; 
14202   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14206   PyObject 
*swig_obj
[1] ; 
14208   if (!args
) SWIG_fail
; 
14209   swig_obj
[0] = args
; 
14210   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14211   if (!SWIG_IsOK(res1
)) { 
14212     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14214   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14216     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14217     result 
= (int)((wxAuiTabContainer 
const *)arg1
)->GetActivePage(); 
14218     wxPyEndAllowThreads(__tstate
); 
14219     if (PyErr_Occurred()) SWIG_fail
; 
14221   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
14228 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_TabHitTest(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14229   PyObject 
*resultobj 
= 0; 
14230   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14233   wxWindow 
**arg4 
= (wxWindow 
**) 0 ; 
14243   PyObject 
* obj0 
= 0 ; 
14244   PyObject 
* obj1 
= 0 ; 
14245   PyObject 
* obj2 
= 0 ; 
14246   PyObject 
* obj3 
= 0 ; 
14247   char *  kwnames
[] = { 
14248     (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL 
 
14251   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
14252   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14253   if (!SWIG_IsOK(res1
)) { 
14254     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14256   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14257   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14258   if (!SWIG_IsOK(ecode2
)) { 
14259     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'"); 
14261   arg2 
= static_cast< int >(val2
); 
14262   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
14263   if (!SWIG_IsOK(ecode3
)) { 
14264     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'"); 
14266   arg3 
= static_cast< int >(val3
); 
14267   res4 
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 |  0 ); 
14268   if (!SWIG_IsOK(res4
)) { 
14269     SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");  
14271   arg4 
= reinterpret_cast< wxWindow 
** >(argp4
); 
14273     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14274     result 
= (bool)((wxAuiTabContainer 
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
); 
14275     wxPyEndAllowThreads(__tstate
); 
14276     if (PyErr_Occurred()) SWIG_fail
; 
14279     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14287 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_ButtonHitTest(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14288   PyObject 
*resultobj 
= 0; 
14289   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14292   wxAuiTabContainerButton 
**arg4 
= (wxAuiTabContainerButton 
**) 0 ; 
14302   PyObject 
* obj0 
= 0 ; 
14303   PyObject 
* obj1 
= 0 ; 
14304   PyObject 
* obj2 
= 0 ; 
14305   PyObject 
* obj3 
= 0 ; 
14306   char *  kwnames
[] = { 
14307     (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL 
 
14310   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
14311   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14312   if (!SWIG_IsOK(res1
)) { 
14313     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14315   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14316   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14317   if (!SWIG_IsOK(ecode2
)) { 
14318     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'"); 
14320   arg2 
= static_cast< int >(val2
); 
14321   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
14322   if (!SWIG_IsOK(ecode3
)) { 
14323     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'"); 
14325   arg3 
= static_cast< int >(val3
); 
14326   res4 
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 |  0 ); 
14327   if (!SWIG_IsOK(res4
)) { 
14328     SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");  
14330   arg4 
= reinterpret_cast< wxAuiTabContainerButton 
** >(argp4
); 
14332     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14333     result 
= (bool)((wxAuiTabContainer 
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
); 
14334     wxPyEndAllowThreads(__tstate
); 
14335     if (PyErr_Occurred()) SWIG_fail
; 
14338     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14346 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14347   PyObject 
*resultobj 
= 0; 
14348   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14350   wxWindow 
*result 
= 0 ; 
14355   PyObject 
* obj0 
= 0 ; 
14356   PyObject 
* obj1 
= 0 ; 
14357   char *  kwnames
[] = { 
14358     (char *) "self",(char *) "idx", NULL 
 
14361   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14362   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14363   if (!SWIG_IsOK(res1
)) { 
14364     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14366   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14367   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
14368   if (!SWIG_IsOK(ecode2
)) { 
14369     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'"); 
14371   arg2 
= static_cast< size_t >(val2
); 
14373     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14374     result 
= (wxWindow 
*)((wxAuiTabContainer 
const *)arg1
)->GetWindowFromIdx(arg2
); 
14375     wxPyEndAllowThreads(__tstate
); 
14376     if (PyErr_Occurred()) SWIG_fail
; 
14379     resultobj 
= wxPyMake_wxObject(result
, 0);  
14387 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14388   PyObject 
*resultobj 
= 0; 
14389   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14390   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
14396   PyObject 
* obj0 
= 0 ; 
14397   PyObject 
* obj1 
= 0 ; 
14398   char *  kwnames
[] = { 
14399     (char *) "self",(char *) "page", NULL 
 
14402   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14403   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14404   if (!SWIG_IsOK(res1
)) { 
14405     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14407   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14408   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
14409   if (!SWIG_IsOK(res2
)) { 
14410     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");  
14412   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
14414     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14415     result 
= (int)((wxAuiTabContainer 
const *)arg1
)->GetIdxFromWindow(arg2
); 
14416     wxPyEndAllowThreads(__tstate
); 
14417     if (PyErr_Occurred()) SWIG_fail
; 
14419   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
14426 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetPageCount(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14427   PyObject 
*resultobj 
= 0; 
14428   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14432   PyObject 
*swig_obj
[1] ; 
14434   if (!args
) SWIG_fail
; 
14435   swig_obj
[0] = args
; 
14436   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14437   if (!SWIG_IsOK(res1
)) { 
14438     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14440   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14442     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14443     result 
= (size_t)((wxAuiTabContainer 
const *)arg1
)->GetPageCount(); 
14444     wxPyEndAllowThreads(__tstate
); 
14445     if (PyErr_Occurred()) SWIG_fail
; 
14447   resultobj 
= SWIG_From_size_t(static_cast< size_t >(result
)); 
14454 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetPage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14455   PyObject 
*resultobj 
= 0; 
14456   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14458   wxAuiNotebookPage 
*result 
= 0 ; 
14463   PyObject 
* obj0 
= 0 ; 
14464   PyObject 
* obj1 
= 0 ; 
14465   char *  kwnames
[] = { 
14466     (char *) "self",(char *) "idx", NULL 
 
14469   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14470   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14471   if (!SWIG_IsOK(res1
)) { 
14472     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14474   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14475   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
14476   if (!SWIG_IsOK(ecode2
)) { 
14477     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'"); 
14479   arg2 
= static_cast< size_t >(val2
); 
14481     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14483       wxAuiNotebookPage 
&_result_ref 
= (arg1
)->GetPage(arg2
); 
14484       result 
= (wxAuiNotebookPage 
*) &_result_ref
; 
14486     wxPyEndAllowThreads(__tstate
); 
14487     if (PyErr_Occurred()) SWIG_fail
; 
14489   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 |  0 ); 
14496 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetPages(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14497   PyObject 
*resultobj 
= 0; 
14498   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14499   wxAuiNotebookPageArray 
*result 
= 0 ; 
14502   PyObject 
*swig_obj
[1] ; 
14504   if (!args
) SWIG_fail
; 
14505   swig_obj
[0] = args
; 
14506   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14507   if (!SWIG_IsOK(res1
)) { 
14508     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14510   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14512     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14514       wxAuiNotebookPageArray 
&_result_ref 
= (arg1
)->GetPages(); 
14515       result 
= (wxAuiNotebookPageArray 
*) &_result_ref
; 
14517     wxPyEndAllowThreads(__tstate
); 
14518     if (PyErr_Occurred()) SWIG_fail
; 
14520   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 |  0 ); 
14527 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetNormalFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14528   PyObject 
*resultobj 
= 0; 
14529   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14535   PyObject 
* obj0 
= 0 ; 
14536   PyObject 
* obj1 
= 0 ; 
14537   char *  kwnames
[] = { 
14538     (char *) "self",(char *) "normal_font", NULL 
 
14541   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14542   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14543   if (!SWIG_IsOK(res1
)) { 
14544     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14546   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14547   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
,  0  | 0); 
14548   if (!SWIG_IsOK(res2
)) { 
14549     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
14552     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
14554   arg2 
= reinterpret_cast< wxFont 
* >(argp2
); 
14556     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14557     (arg1
)->SetNormalFont((wxFont 
const &)*arg2
); 
14558     wxPyEndAllowThreads(__tstate
); 
14559     if (PyErr_Occurred()) SWIG_fail
; 
14561   resultobj 
= SWIG_Py_Void(); 
14568 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetSelectedFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14569   PyObject 
*resultobj 
= 0; 
14570   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14576   PyObject 
* obj0 
= 0 ; 
14577   PyObject 
* obj1 
= 0 ; 
14578   char *  kwnames
[] = { 
14579     (char *) "self",(char *) "selected_font", NULL 
 
14582   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14583   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14584   if (!SWIG_IsOK(res1
)) { 
14585     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14587   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14588   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
,  0  | 0); 
14589   if (!SWIG_IsOK(res2
)) { 
14590     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
14593     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
14595   arg2 
= reinterpret_cast< wxFont 
* >(argp2
); 
14597     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14598     (arg1
)->SetSelectedFont((wxFont 
const &)*arg2
); 
14599     wxPyEndAllowThreads(__tstate
); 
14600     if (PyErr_Occurred()) SWIG_fail
; 
14602   resultobj 
= SWIG_Py_Void(); 
14609 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14610   PyObject 
*resultobj 
= 0; 
14611   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14617   PyObject 
* obj0 
= 0 ; 
14618   PyObject 
* obj1 
= 0 ; 
14619   char *  kwnames
[] = { 
14620     (char *) "self",(char *) "measuring_font", NULL 
 
14623   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14624   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14625   if (!SWIG_IsOK(res1
)) { 
14626     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14628   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14629   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
,  0  | 0); 
14630   if (!SWIG_IsOK(res2
)) { 
14631     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
14634     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");  
14636   arg2 
= reinterpret_cast< wxFont 
* >(argp2
); 
14638     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14639     (arg1
)->SetMeasuringFont((wxFont 
const &)*arg2
); 
14640     wxPyEndAllowThreads(__tstate
); 
14641     if (PyErr_Occurred()) SWIG_fail
; 
14643   resultobj 
= SWIG_Py_Void(); 
14650 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_DoShowHide(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14651   PyObject 
*resultobj 
= 0; 
14652   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14655   PyObject 
*swig_obj
[1] ; 
14657   if (!args
) SWIG_fail
; 
14658   swig_obj
[0] = args
; 
14659   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14660   if (!SWIG_IsOK(res1
)) { 
14661     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14663   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14665     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14666     (arg1
)->DoShowHide(); 
14667     wxPyEndAllowThreads(__tstate
); 
14668     if (PyErr_Occurred()) SWIG_fail
; 
14670   resultobj 
= SWIG_Py_Void(); 
14677 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetRect(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14678   PyObject 
*resultobj 
= 0; 
14679   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14684   PyObject 
* obj0 
= 0 ; 
14685   PyObject 
* obj1 
= 0 ; 
14686   char *  kwnames
[] = { 
14687     (char *) "self",(char *) "rect", NULL 
 
14690   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14691   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14692   if (!SWIG_IsOK(res1
)) { 
14693     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14695   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14698     if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
; 
14701     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14702     (arg1
)->SetRect((wxRect 
const &)*arg2
); 
14703     wxPyEndAllowThreads(__tstate
); 
14704     if (PyErr_Occurred()) SWIG_fail
; 
14706   resultobj 
= SWIG_Py_Void(); 
14713 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_RemoveButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14714   PyObject 
*resultobj 
= 0; 
14715   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14721   PyObject 
* obj0 
= 0 ; 
14722   PyObject 
* obj1 
= 0 ; 
14723   char *  kwnames
[] = { 
14724     (char *) "self",(char *) "id", NULL 
 
14727   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemoveButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14728   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14729   if (!SWIG_IsOK(res1
)) { 
14730     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14732   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14733   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14734   if (!SWIG_IsOK(ecode2
)) { 
14735     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "2"" of type '" "int""'"); 
14737   arg2 
= static_cast< int >(val2
); 
14739     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14740     (arg1
)->RemoveButton(arg2
); 
14741     wxPyEndAllowThreads(__tstate
); 
14742     if (PyErr_Occurred()) SWIG_fail
; 
14744   resultobj 
= SWIG_Py_Void(); 
14751 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_AddButton(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14752   PyObject 
*resultobj 
= 0; 
14753   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14756   wxBitmap 
const &arg4_defvalue 
= wxNullBitmap 
; 
14757   wxBitmap 
*arg4 
= (wxBitmap 
*) &arg4_defvalue 
; 
14758   wxBitmap 
const &arg5_defvalue 
= wxNullBitmap 
; 
14759   wxBitmap 
*arg5 
= (wxBitmap 
*) &arg5_defvalue 
; 
14770   PyObject 
* obj0 
= 0 ; 
14771   PyObject 
* obj1 
= 0 ; 
14772   PyObject 
* obj2 
= 0 ; 
14773   PyObject 
* obj3 
= 0 ; 
14774   PyObject 
* obj4 
= 0 ; 
14775   char *  kwnames
[] = { 
14776     (char *) "self",(char *) "id",(char *) "location",(char *) "normal_bitmap",(char *) "disabled_bitmap", NULL 
 
14779   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
14780   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14781   if (!SWIG_IsOK(res1
)) { 
14782     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14784   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14785   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14786   if (!SWIG_IsOK(ecode2
)) { 
14787     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'"); 
14789   arg2 
= static_cast< int >(val2
); 
14790   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
14791   if (!SWIG_IsOK(ecode3
)) { 
14792     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "int""'"); 
14794   arg3 
= static_cast< int >(val3
); 
14796     res4 
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
14797     if (!SWIG_IsOK(res4
)) { 
14798       SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");  
14801       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");  
14803     arg4 
= reinterpret_cast< wxBitmap 
* >(argp4
); 
14806     res5 
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
14807     if (!SWIG_IsOK(res5
)) { 
14808       SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");  
14811       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");  
14813     arg5 
= reinterpret_cast< wxBitmap 
* >(argp5
); 
14816     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14817     (arg1
)->AddButton(arg2
,arg3
,(wxBitmap 
const &)*arg4
,(wxBitmap 
const &)*arg5
); 
14818     wxPyEndAllowThreads(__tstate
); 
14819     if (PyErr_Occurred()) SWIG_fail
; 
14821   resultobj 
= SWIG_Py_Void(); 
14828 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_GetTabOffset(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14829   PyObject 
*resultobj 
= 0; 
14830   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14834   PyObject 
*swig_obj
[1] ; 
14836   if (!args
) SWIG_fail
; 
14837   swig_obj
[0] = args
; 
14838   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14839   if (!SWIG_IsOK(res1
)) { 
14840     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");  
14842   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14844     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14845     result 
= (size_t)((wxAuiTabContainer 
const *)arg1
)->GetTabOffset(); 
14846     wxPyEndAllowThreads(__tstate
); 
14847     if (PyErr_Occurred()) SWIG_fail
; 
14849   resultobj 
= SWIG_From_size_t(static_cast< size_t >(result
)); 
14856 SWIGINTERN PyObject 
*_wrap_AuiTabContainer_SetTabOffset(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14857   PyObject 
*resultobj 
= 0; 
14858   wxAuiTabContainer 
*arg1 
= (wxAuiTabContainer 
*) 0 ; 
14864   PyObject 
* obj0 
= 0 ; 
14865   PyObject 
* obj1 
= 0 ; 
14866   char *  kwnames
[] = { 
14867     (char *) "self",(char *) "offset", NULL 
 
14870   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetTabOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14871   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 |  0 ); 
14872   if (!SWIG_IsOK(res1
)) { 
14873     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");  
14875   arg1 
= reinterpret_cast< wxAuiTabContainer 
* >(argp1
); 
14876   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
14877   if (!SWIG_IsOK(ecode2
)) { 
14878     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "2"" of type '" "size_t""'"); 
14880   arg2 
= static_cast< size_t >(val2
); 
14882     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14883     (arg1
)->SetTabOffset(arg2
); 
14884     wxPyEndAllowThreads(__tstate
); 
14885     if (PyErr_Occurred()) SWIG_fail
; 
14887   resultobj 
= SWIG_Py_Void(); 
14894 SWIGINTERN PyObject 
*AuiTabContainer_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14896   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
14897   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
)); 
14898   return SWIG_Py_Void(); 
14901 SWIGINTERN PyObject 
*AuiTabContainer_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14902   return SWIG_Python_InitShadowInstance(args
); 
14905 SWIGINTERN PyObject 
*_wrap_new_AuiTabCtrl(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14906   PyObject 
*resultobj 
= 0; 
14907   wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
14908   int arg2 
= (int) wxID_ANY 
; 
14909   wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
14910   wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
14911   wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
14912   wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
14913   long arg5 
= (long) 0 ; 
14914   wxAuiTabCtrl 
*result 
= 0 ; 
14923   PyObject 
* obj0 
= 0 ; 
14924   PyObject 
* obj1 
= 0 ; 
14925   PyObject 
* obj2 
= 0 ; 
14926   PyObject 
* obj3 
= 0 ; 
14927   PyObject 
* obj4 
= 0 ; 
14928   char *  kwnames
[] = { 
14929     (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL 
 
14932   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
14933   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
14934   if (!SWIG_IsOK(res1
)) { 
14935     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");  
14937   arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
14939     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14940     if (!SWIG_IsOK(ecode2
)) { 
14941       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'"); 
14943     arg2 
= static_cast< int >(val2
); 
14948       if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
14954       if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
14958     ecode5 
= SWIG_AsVal_long(obj4
, &val5
); 
14959     if (!SWIG_IsOK(ecode5
)) { 
14960       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'"); 
14962     arg5 
= static_cast< long >(val5
); 
14965     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14966     result 
= (wxAuiTabCtrl 
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
); 
14967     wxPyEndAllowThreads(__tstate
); 
14968     if (PyErr_Occurred()) SWIG_fail
; 
14970   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW 
|  0 ); 
14977 SWIGINTERN PyObject 
*_wrap_delete_AuiTabCtrl(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14978   PyObject 
*resultobj 
= 0; 
14979   wxAuiTabCtrl 
*arg1 
= (wxAuiTabCtrl 
*) 0 ; 
14982   PyObject 
*swig_obj
[1] ; 
14984   if (!args
) SWIG_fail
; 
14985   swig_obj
[0] = args
; 
14986   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_DISOWN 
|  0 ); 
14987   if (!SWIG_IsOK(res1
)) { 
14988     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabCtrl" "', expected argument " "1"" of type '" "wxAuiTabCtrl *""'");  
14990   arg1 
= reinterpret_cast< wxAuiTabCtrl 
* >(argp1
); 
14992     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14995     wxPyEndAllowThreads(__tstate
); 
14996     if (PyErr_Occurred()) SWIG_fail
; 
14998   resultobj 
= SWIG_Py_Void(); 
15005 SWIGINTERN PyObject 
*AuiTabCtrl_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15007   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
15008   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
)); 
15009   return SWIG_Py_Void(); 
15012 SWIGINTERN PyObject 
*AuiTabCtrl_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15013   return SWIG_Python_InitShadowInstance(args
); 
15016 SWIGINTERN PyObject 
*_wrap_new_PreAuiNotebook(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15017   PyObject 
*resultobj 
= 0; 
15018   wxAuiNotebook 
*result 
= 0 ; 
15020   if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiNotebook",0,0,0)) SWIG_fail
; 
15022     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15023     result 
= (wxAuiNotebook 
*)new wxAuiNotebook(); 
15024     wxPyEndAllowThreads(__tstate
); 
15025     if (PyErr_Occurred()) SWIG_fail
; 
15027   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_OWN 
|  0 ); 
15034 SWIGINTERN PyObject 
*_wrap_new_AuiNotebook(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15035   PyObject 
*resultobj 
= 0; 
15036   wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
15037   int arg2 
= (int) wxID_ANY 
; 
15038   wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
15039   wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
15040   wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
15041   wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
15042   long arg5 
= (long) wxAUI_NB_DEFAULT_STYLE 
; 
15043   wxAuiNotebook 
*result 
= 0 ; 
15052   PyObject 
* obj0 
= 0 ; 
15053   PyObject 
* obj1 
= 0 ; 
15054   PyObject 
* obj2 
= 0 ; 
15055   PyObject 
* obj3 
= 0 ; 
15056   PyObject 
* obj4 
= 0 ; 
15057   char *  kwnames
[] = { 
15058     (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL 
 
15061   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
15062   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
15063   if (!SWIG_IsOK(res1
)) { 
15064     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");  
15066   arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
15068     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15069     if (!SWIG_IsOK(ecode2
)) { 
15070       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebook" "', expected argument " "2"" of type '" "int""'"); 
15072     arg2 
= static_cast< int >(val2
); 
15077       if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
15083       if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
15087     ecode5 
= SWIG_AsVal_long(obj4
, &val5
); 
15088     if (!SWIG_IsOK(ecode5
)) { 
15089       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiNotebook" "', expected argument " "5"" of type '" "long""'"); 
15091     arg5 
= static_cast< long >(val5
); 
15094     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15095     result 
= (wxAuiNotebook 
*)new wxAuiNotebook(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
); 
15096     wxPyEndAllowThreads(__tstate
); 
15097     if (PyErr_Occurred()) SWIG_fail
; 
15099   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_NEW 
|  0 ); 
15106 SWIGINTERN PyObject 
*_wrap_delete_AuiNotebook(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15107   PyObject 
*resultobj 
= 0; 
15108   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15111   PyObject 
*swig_obj
[1] ; 
15113   if (!args
) SWIG_fail
; 
15114   swig_obj
[0] = args
; 
15115   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN 
|  0 ); 
15116   if (!SWIG_IsOK(res1
)) { 
15117     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiNotebook" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15119   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15121     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15124     wxPyEndAllowThreads(__tstate
); 
15125     if (PyErr_Occurred()) SWIG_fail
; 
15127   resultobj 
= SWIG_Py_Void(); 
15134 SWIGINTERN PyObject 
*_wrap_AuiNotebook_Create(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15135   PyObject 
*resultobj 
= 0; 
15136   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15137   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
15138   int arg3 
= (int) wxID_ANY 
; 
15139   wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
15140   wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
15141   wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
15142   wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
15143   long arg6 
= (long) 0 ; 
15155   PyObject 
* obj0 
= 0 ; 
15156   PyObject 
* obj1 
= 0 ; 
15157   PyObject 
* obj2 
= 0 ; 
15158   PyObject 
* obj3 
= 0 ; 
15159   PyObject 
* obj4 
= 0 ; 
15160   PyObject 
* obj5 
= 0 ; 
15161   char *  kwnames
[] = { 
15162     (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL 
 
15165   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
; 
15166   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15167   if (!SWIG_IsOK(res1
)) { 
15168     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15170   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15171   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
15172   if (!SWIG_IsOK(res2
)) { 
15173     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");  
15175   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
15177     ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
15178     if (!SWIG_IsOK(ecode3
)) { 
15179       SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Create" "', expected argument " "3"" of type '" "int""'"); 
15181     arg3 
= static_cast< int >(val3
); 
15186       if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
15192       if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
15196     ecode6 
= SWIG_AsVal_long(obj5
, &val6
); 
15197     if (!SWIG_IsOK(ecode6
)) { 
15198       SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiNotebook_Create" "', expected argument " "6"" of type '" "long""'"); 
15200     arg6 
= static_cast< long >(val6
); 
15203     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15204     result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
); 
15205     wxPyEndAllowThreads(__tstate
); 
15206     if (PyErr_Occurred()) SWIG_fail
; 
15209     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15217 SWIGINTERN PyObject 
*_wrap_AuiNotebook_SetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15218   PyObject 
*resultobj 
= 0; 
15219   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15220   wxAuiTabArt 
*arg2 
= (wxAuiTabArt 
*) 0 ; 
15225   PyObject 
* obj0 
= 0 ; 
15226   PyObject 
* obj1 
= 0 ; 
15227   char *  kwnames
[] = { 
15228     (char *) "self",(char *) "art", NULL 
 
15231   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15232   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15233   if (!SWIG_IsOK(res1
)) { 
15234     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15236   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15237   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
15238   if (!SWIG_IsOK(res2
)) { 
15239     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");  
15241   arg2 
= reinterpret_cast< wxAuiTabArt 
* >(argp2
); 
15243     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15244     (arg1
)->SetArtProvider(arg2
); 
15245     wxPyEndAllowThreads(__tstate
); 
15246     if (PyErr_Occurred()) SWIG_fail
; 
15248   resultobj 
= SWIG_Py_Void(); 
15255 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15256   PyObject 
*resultobj 
= 0; 
15257   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15258   wxAuiTabArt 
*result 
= 0 ; 
15261   PyObject 
*swig_obj
[1] ; 
15263   if (!args
) SWIG_fail
; 
15264   swig_obj
[0] = args
; 
15265   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15266   if (!SWIG_IsOK(res1
)) { 
15267     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15269   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15271     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15272     result 
= (wxAuiTabArt 
*)((wxAuiNotebook 
const *)arg1
)->GetArtProvider(); 
15273     wxPyEndAllowThreads(__tstate
); 
15274     if (PyErr_Occurred()) SWIG_fail
; 
15276   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
15283 SWIGINTERN PyObject 
*_wrap_AuiNotebook_SetUniformBitmapSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15284   PyObject 
*resultobj 
= 0; 
15285   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15290   PyObject 
* obj0 
= 0 ; 
15291   PyObject 
* obj1 
= 0 ; 
15292   char *  kwnames
[] = { 
15293     (char *) "self",(char *) "size", NULL 
 
15296   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetUniformBitmapSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15297   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15298   if (!SWIG_IsOK(res1
)) { 
15299     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetUniformBitmapSize" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15301   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15304     if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
15307     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15308     (arg1
)->SetUniformBitmapSize((wxSize 
const &)*arg2
); 
15309     wxPyEndAllowThreads(__tstate
); 
15310     if (PyErr_Occurred()) SWIG_fail
; 
15312   resultobj 
= SWIG_Py_Void(); 
15319 SWIGINTERN PyObject 
*_wrap_AuiNotebook_SetTabCtrlHeight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15320   PyObject 
*resultobj 
= 0; 
15321   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15327   PyObject 
* obj0 
= 0 ; 
15328   PyObject 
* obj1 
= 0 ; 
15329   char *  kwnames
[] = { 
15330     (char *) "self",(char *) "height", NULL 
 
15333   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetTabCtrlHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15334   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15335   if (!SWIG_IsOK(res1
)) { 
15336     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15338   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15339   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15340   if (!SWIG_IsOK(ecode2
)) { 
15341     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "2"" of type '" "int""'"); 
15343   arg2 
= static_cast< int >(val2
); 
15345     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15346     (arg1
)->SetTabCtrlHeight(arg2
); 
15347     wxPyEndAllowThreads(__tstate
); 
15348     if (PyErr_Occurred()) SWIG_fail
; 
15350   resultobj 
= SWIG_Py_Void(); 
15357 SWIGINTERN PyObject 
*_wrap_AuiNotebook_AddPage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15358   PyObject 
*resultobj 
= 0; 
15359   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15360   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
15361   wxString 
*arg3 
= 0 ; 
15362   bool arg4 
= (bool) false ; 
15363   wxBitmap 
const &arg5_defvalue 
= wxNullBitmap 
; 
15364   wxBitmap 
*arg5 
= (wxBitmap 
*) &arg5_defvalue 
; 
15370   bool temp3 
= false ; 
15375   PyObject 
* obj0 
= 0 ; 
15376   PyObject 
* obj1 
= 0 ; 
15377   PyObject 
* obj2 
= 0 ; 
15378   PyObject 
* obj3 
= 0 ; 
15379   PyObject 
* obj4 
= 0 ; 
15380   char *  kwnames
[] = { 
15381     (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL 
 
15384   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
15385   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15386   if (!SWIG_IsOK(res1
)) { 
15387     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15389   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15390   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
15391   if (!SWIG_IsOK(res2
)) { 
15392     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");  
15394   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
15396     arg3 
= wxString_in_helper(obj2
); 
15397     if (arg3 
== NULL
) SWIG_fail
; 
15401     ecode4 
= SWIG_AsVal_bool(obj3
, &val4
); 
15402     if (!SWIG_IsOK(ecode4
)) { 
15403       SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'"); 
15405     arg4 
= static_cast< bool >(val4
); 
15408     res5 
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
15409     if (!SWIG_IsOK(res5
)) { 
15410       SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");  
15413       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");  
15415     arg5 
= reinterpret_cast< wxBitmap 
* >(argp5
); 
15418     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15419     result 
= (bool)(arg1
)->AddPage(arg2
,(wxString 
const &)*arg3
,arg4
,(wxBitmap 
const &)*arg5
); 
15420     wxPyEndAllowThreads(__tstate
); 
15421     if (PyErr_Occurred()) SWIG_fail
; 
15424     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15440 SWIGINTERN PyObject 
*_wrap_AuiNotebook_InsertPage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15441   PyObject 
*resultobj 
= 0; 
15442   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15444   wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
15445   wxString 
*arg4 
= 0 ; 
15446   bool arg5 
= (bool) false ; 
15447   wxBitmap 
const &arg6_defvalue 
= wxNullBitmap 
; 
15448   wxBitmap 
*arg6 
= (wxBitmap 
*) &arg6_defvalue 
; 
15456   bool temp4 
= false ; 
15461   PyObject 
* obj0 
= 0 ; 
15462   PyObject 
* obj1 
= 0 ; 
15463   PyObject 
* obj2 
= 0 ; 
15464   PyObject 
* obj3 
= 0 ; 
15465   PyObject 
* obj4 
= 0 ; 
15466   PyObject 
* obj5 
= 0 ; 
15467   char *  kwnames
[] = { 
15468     (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL 
 
15471   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
; 
15472   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15473   if (!SWIG_IsOK(res1
)) { 
15474     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15476   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15477   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15478   if (!SWIG_IsOK(ecode2
)) { 
15479     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'"); 
15481   arg2 
= static_cast< size_t >(val2
); 
15482   res3 
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
15483   if (!SWIG_IsOK(res3
)) { 
15484     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");  
15486   arg3 
= reinterpret_cast< wxWindow 
* >(argp3
); 
15488     arg4 
= wxString_in_helper(obj3
); 
15489     if (arg4 
== NULL
) SWIG_fail
; 
15493     ecode5 
= SWIG_AsVal_bool(obj4
, &val5
); 
15494     if (!SWIG_IsOK(ecode5
)) { 
15495       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'"); 
15497     arg5 
= static_cast< bool >(val5
); 
15500     res6 
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
15501     if (!SWIG_IsOK(res6
)) { 
15502       SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");  
15505       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");  
15507     arg6 
= reinterpret_cast< wxBitmap 
* >(argp6
); 
15510     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15511     result 
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString 
const &)*arg4
,arg5
,(wxBitmap 
const &)*arg6
); 
15512     wxPyEndAllowThreads(__tstate
); 
15513     if (PyErr_Occurred()) SWIG_fail
; 
15516     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15532 SWIGINTERN PyObject 
*_wrap_AuiNotebook_DeletePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15533   PyObject 
*resultobj 
= 0; 
15534   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15541   PyObject 
* obj0 
= 0 ; 
15542   PyObject 
* obj1 
= 0 ; 
15543   char *  kwnames
[] = { 
15544     (char *) "self",(char *) "page", NULL 
 
15547   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15548   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15549   if (!SWIG_IsOK(res1
)) { 
15550     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15552   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15553   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15554   if (!SWIG_IsOK(ecode2
)) { 
15555     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'"); 
15557   arg2 
= static_cast< size_t >(val2
); 
15559     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15560     result 
= (bool)(arg1
)->DeletePage(arg2
); 
15561     wxPyEndAllowThreads(__tstate
); 
15562     if (PyErr_Occurred()) SWIG_fail
; 
15565     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15573 SWIGINTERN PyObject 
*_wrap_AuiNotebook_RemovePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15574   PyObject 
*resultobj 
= 0; 
15575   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15582   PyObject 
* obj0 
= 0 ; 
15583   PyObject 
* obj1 
= 0 ; 
15584   char *  kwnames
[] = { 
15585     (char *) "self",(char *) "page", NULL 
 
15588   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15589   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15590   if (!SWIG_IsOK(res1
)) { 
15591     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15593   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15594   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15595   if (!SWIG_IsOK(ecode2
)) { 
15596     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'"); 
15598   arg2 
= static_cast< size_t >(val2
); 
15600     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15601     result 
= (bool)(arg1
)->RemovePage(arg2
); 
15602     wxPyEndAllowThreads(__tstate
); 
15603     if (PyErr_Occurred()) SWIG_fail
; 
15606     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15614 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetPageCount(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15615   PyObject 
*resultobj 
= 0; 
15616   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15620   PyObject 
*swig_obj
[1] ; 
15622   if (!args
) SWIG_fail
; 
15623   swig_obj
[0] = args
; 
15624   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15625   if (!SWIG_IsOK(res1
)) { 
15626     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15628   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15630     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15631     result 
= (size_t)((wxAuiNotebook 
const *)arg1
)->GetPageCount(); 
15632     wxPyEndAllowThreads(__tstate
); 
15633     if (PyErr_Occurred()) SWIG_fail
; 
15635   resultobj 
= SWIG_From_size_t(static_cast< size_t >(result
)); 
15642 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetPage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15643   PyObject 
*resultobj 
= 0; 
15644   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15646   wxWindow 
*result 
= 0 ; 
15651   PyObject 
* obj0 
= 0 ; 
15652   PyObject 
* obj1 
= 0 ; 
15653   char *  kwnames
[] = { 
15654     (char *) "self",(char *) "page_idx", NULL 
 
15657   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15658   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15659   if (!SWIG_IsOK(res1
)) { 
15660     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15662   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15663   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15664   if (!SWIG_IsOK(ecode2
)) { 
15665     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'"); 
15667   arg2 
= static_cast< size_t >(val2
); 
15669     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15670     result 
= (wxWindow 
*)((wxAuiNotebook 
const *)arg1
)->GetPage(arg2
); 
15671     wxPyEndAllowThreads(__tstate
); 
15672     if (PyErr_Occurred()) SWIG_fail
; 
15675     resultobj 
= wxPyMake_wxObject(result
, 0);  
15683 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetPageIndex(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15684   PyObject 
*resultobj 
= 0; 
15685   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15686   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
15692   PyObject 
* obj0 
= 0 ; 
15693   PyObject 
* obj1 
= 0 ; 
15694   char *  kwnames
[] = { 
15695     (char *) "self",(char *) "page_wnd", NULL 
 
15698   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15699   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15700   if (!SWIG_IsOK(res1
)) { 
15701     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15703   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15704   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
15705   if (!SWIG_IsOK(res2
)) { 
15706     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "2"" of type '" "wxWindow *""'");  
15708   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
15710     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15711     result 
= (int)((wxAuiNotebook 
const *)arg1
)->GetPageIndex(arg2
); 
15712     wxPyEndAllowThreads(__tstate
); 
15713     if (PyErr_Occurred()) SWIG_fail
; 
15715   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15722 SWIGINTERN PyObject 
*_wrap_AuiNotebook_SetPageText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15723   PyObject 
*resultobj 
= 0; 
15724   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15726   wxString 
*arg3 
= 0 ; 
15732   bool temp3 
= false ; 
15733   PyObject 
* obj0 
= 0 ; 
15734   PyObject 
* obj1 
= 0 ; 
15735   PyObject 
* obj2 
= 0 ; 
15736   char *  kwnames
[] = { 
15737     (char *) "self",(char *) "page",(char *) "text", NULL 
 
15740   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
15741   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15742   if (!SWIG_IsOK(res1
)) { 
15743     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15745   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15746   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15747   if (!SWIG_IsOK(ecode2
)) { 
15748     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'"); 
15750   arg2 
= static_cast< size_t >(val2
); 
15752     arg3 
= wxString_in_helper(obj2
); 
15753     if (arg3 
== NULL
) SWIG_fail
; 
15757     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15758     result 
= (bool)(arg1
)->SetPageText(arg2
,(wxString 
const &)*arg3
); 
15759     wxPyEndAllowThreads(__tstate
); 
15760     if (PyErr_Occurred()) SWIG_fail
; 
15763     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15779 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetPageText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15780   PyObject 
*resultobj 
= 0; 
15781   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15788   PyObject 
* obj0 
= 0 ; 
15789   PyObject 
* obj1 
= 0 ; 
15790   char *  kwnames
[] = { 
15791     (char *) "self",(char *) "page_idx", NULL 
 
15794   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15795   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15796   if (!SWIG_IsOK(res1
)) { 
15797     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15799   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15800   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15801   if (!SWIG_IsOK(ecode2
)) { 
15802     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPageText" "', expected argument " "2"" of type '" "size_t""'"); 
15804   arg2 
= static_cast< size_t >(val2
); 
15806     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15807     result 
= ((wxAuiNotebook 
const *)arg1
)->GetPageText(arg2
); 
15808     wxPyEndAllowThreads(__tstate
); 
15809     if (PyErr_Occurred()) SWIG_fail
; 
15813     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
15815     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
15824 SWIGINTERN PyObject 
*_wrap_AuiNotebook_SetPageBitmap(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15825   PyObject 
*resultobj 
= 0; 
15826   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15828   wxBitmap 
*arg3 
= 0 ; 
15836   PyObject 
* obj0 
= 0 ; 
15837   PyObject 
* obj1 
= 0 ; 
15838   PyObject 
* obj2 
= 0 ; 
15839   char *  kwnames
[] = { 
15840     (char *) "self",(char *) "page",(char *) "bitmap", NULL 
 
15843   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
15844   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15845   if (!SWIG_IsOK(res1
)) { 
15846     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15848   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15849   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15850   if (!SWIG_IsOK(ecode2
)) { 
15851     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "2"" of type '" "size_t""'"); 
15853   arg2 
= static_cast< size_t >(val2
); 
15854   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
15855   if (!SWIG_IsOK(res3
)) { 
15856     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");  
15859     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");  
15861   arg3 
= reinterpret_cast< wxBitmap 
* >(argp3
); 
15863     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15864     result 
= (bool)(arg1
)->SetPageBitmap(arg2
,(wxBitmap 
const &)*arg3
); 
15865     wxPyEndAllowThreads(__tstate
); 
15866     if (PyErr_Occurred()) SWIG_fail
; 
15869     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15877 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetPageBitmap(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15878   PyObject 
*resultobj 
= 0; 
15879   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15886   PyObject 
* obj0 
= 0 ; 
15887   PyObject 
* obj1 
= 0 ; 
15888   char *  kwnames
[] = { 
15889     (char *) "self",(char *) "page_idx", NULL 
 
15892   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15893   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15894   if (!SWIG_IsOK(res1
)) { 
15895     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageBitmap" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15897   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15898   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15899   if (!SWIG_IsOK(ecode2
)) { 
15900     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPageBitmap" "', expected argument " "2"" of type '" "size_t""'"); 
15902   arg2 
= static_cast< size_t >(val2
); 
15904     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15905     result 
= ((wxAuiNotebook 
const *)arg1
)->GetPageBitmap(arg2
); 
15906     wxPyEndAllowThreads(__tstate
); 
15907     if (PyErr_Occurred()) SWIG_fail
; 
15909   resultobj 
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN 
|  0 ); 
15916 SWIGINTERN PyObject 
*_wrap_AuiNotebook_SetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15917   PyObject 
*resultobj 
= 0; 
15918   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15925   PyObject 
* obj0 
= 0 ; 
15926   PyObject 
* obj1 
= 0 ; 
15927   char *  kwnames
[] = { 
15928     (char *) "self",(char *) "new_page", NULL 
 
15931   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15932   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15933   if (!SWIG_IsOK(res1
)) { 
15934     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
15936   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15937   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
15938   if (!SWIG_IsOK(ecode2
)) { 
15939     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'"); 
15941   arg2 
= static_cast< size_t >(val2
); 
15943     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15944     result 
= (size_t)(arg1
)->SetSelection(arg2
); 
15945     wxPyEndAllowThreads(__tstate
); 
15946     if (PyErr_Occurred()) SWIG_fail
; 
15948   resultobj 
= SWIG_From_size_t(static_cast< size_t >(result
)); 
15955 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15956   PyObject 
*resultobj 
= 0; 
15957   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15961   PyObject 
*swig_obj
[1] ; 
15963   if (!args
) SWIG_fail
; 
15964   swig_obj
[0] = args
; 
15965   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
15966   if (!SWIG_IsOK(res1
)) { 
15967     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
15969   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
15971     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15972     result 
= (int)((wxAuiNotebook 
const *)arg1
)->GetSelection(); 
15973     wxPyEndAllowThreads(__tstate
); 
15974     if (PyErr_Occurred()) SWIG_fail
; 
15976   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15983 SWIGINTERN PyObject 
*_wrap_AuiNotebook_Split(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15984   PyObject 
*resultobj 
= 0; 
15985   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
15994   PyObject 
* obj0 
= 0 ; 
15995   PyObject 
* obj1 
= 0 ; 
15996   PyObject 
* obj2 
= 0 ; 
15997   char *  kwnames
[] = { 
15998     (char *) "self",(char *) "page",(char *) "direction", NULL 
 
16001   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_Split",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16002   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
16003   if (!SWIG_IsOK(res1
)) { 
16004     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Split" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");  
16006   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
16007   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
16008   if (!SWIG_IsOK(ecode2
)) { 
16009     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_Split" "', expected argument " "2"" of type '" "size_t""'"); 
16011   arg2 
= static_cast< size_t >(val2
); 
16012   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
16013   if (!SWIG_IsOK(ecode3
)) { 
16014     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Split" "', expected argument " "3"" of type '" "int""'"); 
16016   arg3 
= static_cast< int >(val3
); 
16018     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16019     (arg1
)->Split(arg2
,arg3
); 
16020     wxPyEndAllowThreads(__tstate
); 
16021     if (PyErr_Occurred()) SWIG_fail
; 
16023   resultobj 
= SWIG_Py_Void(); 
16030 SWIGINTERN PyObject 
*_wrap_AuiNotebook_GetAuiManager(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16031   PyObject 
*resultobj 
= 0; 
16032   wxAuiNotebook 
*arg1 
= (wxAuiNotebook 
*) 0 ; 
16033   wxAuiManager 
*result 
= 0 ; 
16036   PyObject 
*swig_obj
[1] ; 
16038   if (!args
) SWIG_fail
; 
16039   swig_obj
[0] = args
; 
16040   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 |  0 ); 
16041   if (!SWIG_IsOK(res1
)) { 
16042     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetAuiManager" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");  
16044   arg1 
= reinterpret_cast< wxAuiNotebook 
* >(argp1
); 
16046     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16048       wxAuiManager 
const &_result_ref 
= ((wxAuiNotebook 
const *)arg1
)->GetAuiManager(); 
16049       result 
= (wxAuiManager 
*) &_result_ref
; 
16051     wxPyEndAllowThreads(__tstate
); 
16052     if (PyErr_Occurred()) SWIG_fail
; 
16054   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 |  0 ); 
16061 SWIGINTERN PyObject 
*AuiNotebook_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16063   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
16064   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebook
, SWIG_NewClientData(obj
)); 
16065   return SWIG_Py_Void(); 
16068 SWIGINTERN PyObject 
*AuiNotebook_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16069   return SWIG_Python_InitShadowInstance(args
); 
16072 SWIGINTERN PyObject 
*_wrap_new_PreAuiMDIParentFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16073   PyObject 
*resultobj 
= 0; 
16074   wxAuiMDIParentFrame 
*result 
= 0 ; 
16076   if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMDIParentFrame",0,0,0)) SWIG_fail
; 
16078     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16079     result 
= (wxAuiMDIParentFrame 
*)new wxAuiMDIParentFrame(); 
16080     wxPyEndAllowThreads(__tstate
); 
16081     if (PyErr_Occurred()) SWIG_fail
; 
16083   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIParentFrame
, SWIG_POINTER_OWN 
|  0 ); 
16090 SWIGINTERN PyObject 
*_wrap_new_AuiMDIParentFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16091   PyObject 
*resultobj 
= 0; 
16092   wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
16094   wxString 
*arg3 
= 0 ; 
16095   wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
16096   wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
16097   wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
16098   wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
16099   long arg6 
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL 
; 
16100   wxString 
const &arg7_defvalue 
= wxFrameNameStr 
; 
16101   wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
16102   wxAuiMDIParentFrame 
*result 
= 0 ; 
16107   bool temp3 
= false ; 
16112   bool temp7 
= false ; 
16113   PyObject 
* obj0 
= 0 ; 
16114   PyObject 
* obj1 
= 0 ; 
16115   PyObject 
* obj2 
= 0 ; 
16116   PyObject 
* obj3 
= 0 ; 
16117   PyObject 
* obj4 
= 0 ; 
16118   PyObject 
* obj5 
= 0 ; 
16119   PyObject 
* obj6 
= 0 ; 
16120   char *  kwnames
[] = { 
16121     (char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
16124   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_AuiMDIParentFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
; 
16125   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
16126   if (!SWIG_IsOK(res1
)) { 
16127     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMDIParentFrame" "', expected argument " "1"" of type '" "wxWindow *""'");  
16129   arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
16130   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16131   if (!SWIG_IsOK(ecode2
)) { 
16132     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMDIParentFrame" "', expected argument " "2"" of type '" "int""'"); 
16134   arg2 
= static_cast< int >(val2
); 
16136     arg3 
= wxString_in_helper(obj2
); 
16137     if (arg3 
== NULL
) SWIG_fail
; 
16143       if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
16149       if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
16153     ecode6 
= SWIG_AsVal_long(obj5
, &val6
); 
16154     if (!SWIG_IsOK(ecode6
)) { 
16155       SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_AuiMDIParentFrame" "', expected argument " "6"" of type '" "long""'"); 
16157     arg6 
= static_cast< long >(val6
); 
16161       arg7 
= wxString_in_helper(obj6
); 
16162       if (arg7 
== NULL
) SWIG_fail
; 
16167     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16168     result 
= (wxAuiMDIParentFrame 
*)new wxAuiMDIParentFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
16169     wxPyEndAllowThreads(__tstate
); 
16170     if (PyErr_Occurred()) SWIG_fail
; 
16172   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIParentFrame
, SWIG_POINTER_NEW 
|  0 ); 
16195 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_Create(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16196   PyObject 
*resultobj 
= 0; 
16197   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16198   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
16200   wxString 
*arg4 
= 0 ; 
16201   wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
16202   wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
16203   wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
16204   wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
16205   long arg7 
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL 
; 
16206   wxString 
const &arg8_defvalue 
= wxFrameNameStr 
; 
16207   wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
16215   bool temp4 
= false ; 
16220   bool temp8 
= false ; 
16221   PyObject 
* obj0 
= 0 ; 
16222   PyObject 
* obj1 
= 0 ; 
16223   PyObject 
* obj2 
= 0 ; 
16224   PyObject 
* obj3 
= 0 ; 
16225   PyObject 
* obj4 
= 0 ; 
16226   PyObject 
* obj5 
= 0 ; 
16227   PyObject 
* obj6 
= 0 ; 
16228   PyObject 
* obj7 
= 0 ; 
16229   char *  kwnames
[] = { 
16230     (char *) "self",(char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
16233   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:AuiMDIParentFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
; 
16234   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16235   if (!SWIG_IsOK(res1
)) { 
16236     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16238   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16239   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
16240   if (!SWIG_IsOK(res2
)) { 
16241     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");  
16243   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
16244   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
16245   if (!SWIG_IsOK(ecode3
)) { 
16246     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "3"" of type '" "int""'"); 
16248   arg3 
= static_cast< int >(val3
); 
16250     arg4 
= wxString_in_helper(obj3
); 
16251     if (arg4 
== NULL
) SWIG_fail
; 
16257       if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
16263       if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
16267     ecode7 
= SWIG_AsVal_long(obj6
, &val7
); 
16268     if (!SWIG_IsOK(ecode7
)) { 
16269       SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "7"" of type '" "long""'"); 
16271     arg7 
= static_cast< long >(val7
); 
16275       arg8 
= wxString_in_helper(obj7
); 
16276       if (arg8 
== NULL
) SWIG_fail
; 
16281     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16282     result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
16283     wxPyEndAllowThreads(__tstate
); 
16284     if (PyErr_Occurred()) SWIG_fail
; 
16287     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
16311 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_SetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16312   PyObject 
*resultobj 
= 0; 
16313   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16314   wxAuiTabArt 
*arg2 
= (wxAuiTabArt 
*) 0 ; 
16319   PyObject 
* obj0 
= 0 ; 
16320   PyObject 
* obj1 
= 0 ; 
16321   char *  kwnames
[] = { 
16322     (char *) "self",(char *) "provider", NULL 
 
16325   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16326   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16327   if (!SWIG_IsOK(res1
)) { 
16328     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16330   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16331   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
16332   if (!SWIG_IsOK(res2
)) { 
16333     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");  
16335   arg2 
= reinterpret_cast< wxAuiTabArt 
* >(argp2
); 
16337     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16338     (arg1
)->SetArtProvider(arg2
); 
16339     wxPyEndAllowThreads(__tstate
); 
16340     if (PyErr_Occurred()) SWIG_fail
; 
16342   resultobj 
= SWIG_Py_Void(); 
16349 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_GetArtProvider(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16350   PyObject 
*resultobj 
= 0; 
16351   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16352   wxAuiTabArt 
*result 
= 0 ; 
16355   PyObject 
*swig_obj
[1] ; 
16357   if (!args
) SWIG_fail
; 
16358   swig_obj
[0] = args
; 
16359   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16360   if (!SWIG_IsOK(res1
)) { 
16361     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16363   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16365     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16366     result 
= (wxAuiTabArt 
*)(arg1
)->GetArtProvider(); 
16367     wxPyEndAllowThreads(__tstate
); 
16368     if (PyErr_Occurred()) SWIG_fail
; 
16370   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 |  0 ); 
16377 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_GetWindowMenu(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16378   PyObject 
*resultobj 
= 0; 
16379   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16380   wxMenu 
*result 
= 0 ; 
16383   PyObject 
*swig_obj
[1] ; 
16385   if (!args
) SWIG_fail
; 
16386   swig_obj
[0] = args
; 
16387   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16388   if (!SWIG_IsOK(res1
)) { 
16389     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetWindowMenu" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");  
16391   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16393     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16394     result 
= (wxMenu 
*)((wxAuiMDIParentFrame 
const *)arg1
)->GetWindowMenu(); 
16395     wxPyEndAllowThreads(__tstate
); 
16396     if (PyErr_Occurred()) SWIG_fail
; 
16399     resultobj 
= wxPyMake_wxObject(result
, 0);  
16407 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_SetWindowMenu(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16408   PyObject 
*resultobj 
= 0; 
16409   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16410   wxMenu 
*arg2 
= (wxMenu 
*) 0 ; 
16415   PyObject 
* obj0 
= 0 ; 
16416   PyObject 
* obj1 
= 0 ; 
16417   char *  kwnames
[] = { 
16418     (char *) "self",(char *) "pMenu", NULL 
 
16421   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetWindowMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16422   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16423   if (!SWIG_IsOK(res1
)) { 
16424     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetWindowMenu" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16426   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16427   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 |  0 ); 
16428   if (!SWIG_IsOK(res2
)) { 
16429     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetWindowMenu" "', expected argument " "2"" of type '" "wxMenu *""'");  
16431   arg2 
= reinterpret_cast< wxMenu 
* >(argp2
); 
16433     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16434     (arg1
)->SetWindowMenu(arg2
); 
16435     wxPyEndAllowThreads(__tstate
); 
16436     if (PyErr_Occurred()) SWIG_fail
; 
16438   resultobj 
= SWIG_Py_Void(); 
16445 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_SetChildMenuBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16446   PyObject 
*resultobj 
= 0; 
16447   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16448   wxAuiMDIChildFrame 
*arg2 
= (wxAuiMDIChildFrame 
*) 0 ; 
16453   PyObject 
* obj0 
= 0 ; 
16454   PyObject 
* obj1 
= 0 ; 
16455   char *  kwnames
[] = { 
16456     (char *) "self",(char *) "pChild", NULL 
 
16459   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetChildMenuBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16460   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16461   if (!SWIG_IsOK(res1
)) { 
16462     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetChildMenuBar" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16464   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16465   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
16466   if (!SWIG_IsOK(res2
)) { 
16467     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetChildMenuBar" "', expected argument " "2"" of type '" "wxAuiMDIChildFrame *""'");  
16469   arg2 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp2
); 
16471     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16472     (arg1
)->SetChildMenuBar(arg2
); 
16473     wxPyEndAllowThreads(__tstate
); 
16474     if (PyErr_Occurred()) SWIG_fail
; 
16476   resultobj 
= SWIG_Py_Void(); 
16483 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_ProcessEvent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16484   PyObject 
*resultobj 
= 0; 
16485   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16486   wxEvent 
*arg2 
= 0 ; 
16492   PyObject 
* obj0 
= 0 ; 
16493   PyObject 
* obj1 
= 0 ; 
16494   char *  kwnames
[] = { 
16495     (char *) "self",(char *) "event", NULL 
 
16498   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_ProcessEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16499   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16500   if (!SWIG_IsOK(res1
)) { 
16501     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ProcessEvent" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16503   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16504   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxEvent
,  0 ); 
16505   if (!SWIG_IsOK(res2
)) { 
16506     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_ProcessEvent" "', expected argument " "2"" of type '" "wxEvent &""'");  
16509     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIParentFrame_ProcessEvent" "', expected argument " "2"" of type '" "wxEvent &""'");  
16511   arg2 
= reinterpret_cast< wxEvent 
* >(argp2
); 
16513     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16514     result 
= (bool)(arg1
)->ProcessEvent(*arg2
); 
16515     wxPyEndAllowThreads(__tstate
); 
16516     if (PyErr_Occurred()) SWIG_fail
; 
16519     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
16527 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_SetActiveChild(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16528   PyObject 
*resultobj 
= 0; 
16529   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16530   wxAuiMDIChildFrame 
*arg2 
= (wxAuiMDIChildFrame 
*) 0 ; 
16535   PyObject 
* obj0 
= 0 ; 
16536   PyObject 
* obj1 
= 0 ; 
16537   char *  kwnames
[] = { 
16538     (char *) "self",(char *) "pChildFrame", NULL 
 
16541   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetActiveChild",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16542   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16543   if (!SWIG_IsOK(res1
)) { 
16544     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetActiveChild" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16546   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16547   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
16548   if (!SWIG_IsOK(res2
)) { 
16549     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetActiveChild" "', expected argument " "2"" of type '" "wxAuiMDIChildFrame *""'");  
16551   arg2 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp2
); 
16553     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16554     (arg1
)->SetActiveChild(arg2
); 
16555     wxPyEndAllowThreads(__tstate
); 
16556     if (PyErr_Occurred()) SWIG_fail
; 
16558   resultobj 
= SWIG_Py_Void(); 
16565 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_OnCreateClient(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16566   PyObject 
*resultobj 
= 0; 
16567   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16568   wxAuiMDIClientWindow 
*result 
= 0 ; 
16571   PyObject 
*swig_obj
[1] ; 
16573   if (!args
) SWIG_fail
; 
16574   swig_obj
[0] = args
; 
16575   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16576   if (!SWIG_IsOK(res1
)) { 
16577     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_OnCreateClient" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16579   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16581     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16582     result 
= (wxAuiMDIClientWindow 
*)(arg1
)->OnCreateClient(); 
16583     wxPyEndAllowThreads(__tstate
); 
16584     if (PyErr_Occurred()) SWIG_fail
; 
16586   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIClientWindow
, 0 |  0 ); 
16593 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_Cascade(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16594   PyObject 
*resultobj 
= 0; 
16595   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16598   PyObject 
*swig_obj
[1] ; 
16600   if (!args
) SWIG_fail
; 
16601   swig_obj
[0] = args
; 
16602   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16603   if (!SWIG_IsOK(res1
)) { 
16604     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_Cascade" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16606   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16608     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16610     wxPyEndAllowThreads(__tstate
); 
16611     if (PyErr_Occurred()) SWIG_fail
; 
16613   resultobj 
= SWIG_Py_Void(); 
16620 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_Tile(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16621   PyObject 
*resultobj 
= 0; 
16622   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16623   wxOrientation arg2 
= (wxOrientation
) wxHORIZONTAL 
; 
16628   PyObject 
* obj0 
= 0 ; 
16629   PyObject 
* obj1 
= 0 ; 
16630   char *  kwnames
[] = { 
16631     (char *) "self",(char *) "orient", NULL 
 
16634   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiMDIParentFrame_Tile",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16635   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16636   if (!SWIG_IsOK(res1
)) { 
16637     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_Tile" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16639   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16641     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16642     if (!SWIG_IsOK(ecode2
)) { 
16643       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIParentFrame_Tile" "', expected argument " "2"" of type '" "wxOrientation""'"); 
16645     arg2 
= static_cast< wxOrientation 
>(val2
); 
16648     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16649     (arg1
)->Tile(arg2
); 
16650     wxPyEndAllowThreads(__tstate
); 
16651     if (PyErr_Occurred()) SWIG_fail
; 
16653   resultobj 
= SWIG_Py_Void(); 
16660 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_ArrangeIcons(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16661   PyObject 
*resultobj 
= 0; 
16662   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16665   PyObject 
*swig_obj
[1] ; 
16667   if (!args
) SWIG_fail
; 
16668   swig_obj
[0] = args
; 
16669   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16670   if (!SWIG_IsOK(res1
)) { 
16671     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ArrangeIcons" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16673   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16675     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16676     (arg1
)->ArrangeIcons(); 
16677     wxPyEndAllowThreads(__tstate
); 
16678     if (PyErr_Occurred()) SWIG_fail
; 
16680   resultobj 
= SWIG_Py_Void(); 
16687 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_ActivateNext(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16688   PyObject 
*resultobj 
= 0; 
16689   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16692   PyObject 
*swig_obj
[1] ; 
16694   if (!args
) SWIG_fail
; 
16695   swig_obj
[0] = args
; 
16696   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16697   if (!SWIG_IsOK(res1
)) { 
16698     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ActivateNext" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16700   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16702     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16703     (arg1
)->ActivateNext(); 
16704     wxPyEndAllowThreads(__tstate
); 
16705     if (PyErr_Occurred()) SWIG_fail
; 
16707   resultobj 
= SWIG_Py_Void(); 
16714 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_ActivatePrevious(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16715   PyObject 
*resultobj 
= 0; 
16716   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16719   PyObject 
*swig_obj
[1] ; 
16721   if (!args
) SWIG_fail
; 
16722   swig_obj
[0] = args
; 
16723   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16724   if (!SWIG_IsOK(res1
)) { 
16725     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ActivatePrevious" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16727   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16729     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16730     (arg1
)->ActivatePrevious(); 
16731     wxPyEndAllowThreads(__tstate
); 
16732     if (PyErr_Occurred()) SWIG_fail
; 
16734   resultobj 
= SWIG_Py_Void(); 
16741 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_GetNotebook(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16742   PyObject 
*resultobj 
= 0; 
16743   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16744   wxAuiNotebook 
*result 
= 0 ; 
16747   PyObject 
*swig_obj
[1] ; 
16749   if (!args
) SWIG_fail
; 
16750   swig_obj
[0] = args
; 
16751   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16752   if (!SWIG_IsOK(res1
)) { 
16753     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetNotebook" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");  
16755   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16757     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16758     result 
= (wxAuiNotebook 
*)wxAuiMDIParentFrame__GetNotebook((wxAuiMDIParentFrame 
const *)arg1
); 
16759     wxPyEndAllowThreads(__tstate
); 
16760     if (PyErr_Occurred()) SWIG_fail
; 
16763     resultobj 
= wxPyMake_wxObject(result
, 0);  
16771 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_GetActiveChild(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16772   PyObject 
*resultobj 
= 0; 
16773   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16774   wxAuiMDIChildFrame 
*result 
= 0 ; 
16777   PyObject 
*swig_obj
[1] ; 
16779   if (!args
) SWIG_fail
; 
16780   swig_obj
[0] = args
; 
16781   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16782   if (!SWIG_IsOK(res1
)) { 
16783     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetActiveChild" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");  
16785   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16787     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16788     result 
= (wxAuiMDIChildFrame 
*)wxAuiMDIParentFrame__GetActiveChild((wxAuiMDIParentFrame 
const *)arg1
); 
16789     wxPyEndAllowThreads(__tstate
); 
16790     if (PyErr_Occurred()) SWIG_fail
; 
16793     resultobj 
= wxPyMake_wxObject(result
, 0);  
16801 SWIGINTERN PyObject 
*_wrap_AuiMDIParentFrame_GetClientWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16802   PyObject 
*resultobj 
= 0; 
16803   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16804   wxAuiMDIClientWindow 
*result 
= 0 ; 
16807   PyObject 
*swig_obj
[1] ; 
16809   if (!args
) SWIG_fail
; 
16810   swig_obj
[0] = args
; 
16811   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16812   if (!SWIG_IsOK(res1
)) { 
16813     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetClientWindow" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");  
16815   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16817     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16818     result 
= (wxAuiMDIClientWindow 
*)wxAuiMDIParentFrame__GetClientWindow((wxAuiMDIParentFrame 
const *)arg1
); 
16819     wxPyEndAllowThreads(__tstate
); 
16820     if (PyErr_Occurred()) SWIG_fail
; 
16823     resultobj 
= wxPyMake_wxObject(result
, 0);  
16831 SWIGINTERN PyObject 
*AuiMDIParentFrame_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16833   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
16834   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMDIParentFrame
, SWIG_NewClientData(obj
)); 
16835   return SWIG_Py_Void(); 
16838 SWIGINTERN PyObject 
*AuiMDIParentFrame_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16839   return SWIG_Python_InitShadowInstance(args
); 
16842 SWIGINTERN PyObject 
*_wrap_new_PreAuiMDIChildFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16843   PyObject 
*resultobj 
= 0; 
16844   wxAuiMDIChildFrame 
*result 
= 0 ; 
16846   if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMDIChildFrame",0,0,0)) SWIG_fail
; 
16848     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16849     result 
= (wxAuiMDIChildFrame 
*)new wxAuiMDIChildFrame(); 
16850     wxPyEndAllowThreads(__tstate
); 
16851     if (PyErr_Occurred()) SWIG_fail
; 
16853   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIChildFrame
, SWIG_POINTER_OWN 
|  0 ); 
16860 SWIGINTERN PyObject 
*_wrap_new_AuiMDIChildFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16861   PyObject 
*resultobj 
= 0; 
16862   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
16864   wxString 
*arg3 
= 0 ; 
16865   wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
16866   wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
16867   wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
16868   wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
16869   long arg6 
= (long) wxDEFAULT_FRAME_STYLE 
; 
16870   wxString 
const &arg7_defvalue 
= wxFrameNameStr 
; 
16871   wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
16872   wxAuiMDIChildFrame 
*result 
= 0 ; 
16877   bool temp3 
= false ; 
16882   bool temp7 
= false ; 
16883   PyObject 
* obj0 
= 0 ; 
16884   PyObject 
* obj1 
= 0 ; 
16885   PyObject 
* obj2 
= 0 ; 
16886   PyObject 
* obj3 
= 0 ; 
16887   PyObject 
* obj4 
= 0 ; 
16888   PyObject 
* obj5 
= 0 ; 
16889   PyObject 
* obj6 
= 0 ; 
16890   char *  kwnames
[] = { 
16891     (char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
16894   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_AuiMDIChildFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
; 
16895   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
16896   if (!SWIG_IsOK(res1
)) { 
16897     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMDIChildFrame" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
16899   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
16900   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16901   if (!SWIG_IsOK(ecode2
)) { 
16902     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMDIChildFrame" "', expected argument " "2"" of type '" "int""'"); 
16904   arg2 
= static_cast< int >(val2
); 
16906     arg3 
= wxString_in_helper(obj2
); 
16907     if (arg3 
== NULL
) SWIG_fail
; 
16913       if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
16919       if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
16923     ecode6 
= SWIG_AsVal_long(obj5
, &val6
); 
16924     if (!SWIG_IsOK(ecode6
)) { 
16925       SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_AuiMDIChildFrame" "', expected argument " "6"" of type '" "long""'"); 
16927     arg6 
= static_cast< long >(val6
); 
16931       arg7 
= wxString_in_helper(obj6
); 
16932       if (arg7 
== NULL
) SWIG_fail
; 
16937     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16938     result 
= (wxAuiMDIChildFrame 
*)new wxAuiMDIChildFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
16939     wxPyEndAllowThreads(__tstate
); 
16940     if (PyErr_Occurred()) SWIG_fail
; 
16942   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIChildFrame
, SWIG_POINTER_NEW 
|  0 ); 
16965 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_Create(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16966   PyObject 
*resultobj 
= 0; 
16967   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
16968   wxAuiMDIParentFrame 
*arg2 
= (wxAuiMDIParentFrame 
*) 0 ; 
16970   wxString 
*arg4 
= 0 ; 
16971   wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
16972   wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
16973   wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
16974   wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
16975   long arg7 
= (long) wxDEFAULT_FRAME_STYLE 
; 
16976   wxString 
const &arg8_defvalue 
= wxFrameNameStr 
; 
16977   wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
16985   bool temp4 
= false ; 
16990   bool temp8 
= false ; 
16991   PyObject 
* obj0 
= 0 ; 
16992   PyObject 
* obj1 
= 0 ; 
16993   PyObject 
* obj2 
= 0 ; 
16994   PyObject 
* obj3 
= 0 ; 
16995   PyObject 
* obj4 
= 0 ; 
16996   PyObject 
* obj5 
= 0 ; 
16997   PyObject 
* obj6 
= 0 ; 
16998   PyObject 
* obj7 
= 0 ; 
16999   char *  kwnames
[] = { 
17000     (char *) "self",(char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
17003   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:AuiMDIChildFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
; 
17004   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17005   if (!SWIG_IsOK(res1
)) { 
17006     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17008   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17009   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
17010   if (!SWIG_IsOK(res2
)) { 
17011     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "2"" of type '" "wxAuiMDIParentFrame *""'");  
17013   arg2 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp2
); 
17014   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
17015   if (!SWIG_IsOK(ecode3
)) { 
17016     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "3"" of type '" "int""'"); 
17018   arg3 
= static_cast< int >(val3
); 
17020     arg4 
= wxString_in_helper(obj3
); 
17021     if (arg4 
== NULL
) SWIG_fail
; 
17027       if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
17033       if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
17037     ecode7 
= SWIG_AsVal_long(obj6
, &val7
); 
17038     if (!SWIG_IsOK(ecode7
)) { 
17039       SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "7"" of type '" "long""'"); 
17041     arg7 
= static_cast< long >(val7
); 
17045       arg8 
= wxString_in_helper(obj7
); 
17046       if (arg8 
== NULL
) SWIG_fail
; 
17051     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17052     result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
17053     wxPyEndAllowThreads(__tstate
); 
17054     if (PyErr_Occurred()) SWIG_fail
; 
17057     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17081 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_SetMenuBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17082   PyObject 
*resultobj 
= 0; 
17083   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17084   wxMenuBar 
*arg2 
= (wxMenuBar 
*) 0 ; 
17089   PyObject 
* obj0 
= 0 ; 
17090   PyObject 
* obj1 
= 0 ; 
17091   char *  kwnames
[] = { 
17092     (char *) "self",(char *) "menu_bar", NULL 
 
17095   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetMenuBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17096   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17097   if (!SWIG_IsOK(res1
)) { 
17098     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetMenuBar" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17100   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17101   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenuBar
, 0 |  0 ); 
17102   if (!SWIG_IsOK(res2
)) { 
17103     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetMenuBar" "', expected argument " "2"" of type '" "wxMenuBar *""'");  
17105   arg2 
= reinterpret_cast< wxMenuBar 
* >(argp2
); 
17107     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17108     (arg1
)->SetMenuBar(arg2
); 
17109     wxPyEndAllowThreads(__tstate
); 
17110     if (PyErr_Occurred()) SWIG_fail
; 
17112   resultobj 
= SWIG_Py_Void(); 
17119 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_GetMenuBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17120   PyObject 
*resultobj 
= 0; 
17121   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17122   wxMenuBar 
*result 
= 0 ; 
17125   PyObject 
*swig_obj
[1] ; 
17127   if (!args
) SWIG_fail
; 
17128   swig_obj
[0] = args
; 
17129   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17130   if (!SWIG_IsOK(res1
)) { 
17131     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetMenuBar" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17133   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17135     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17136     result 
= (wxMenuBar 
*)((wxAuiMDIChildFrame 
const *)arg1
)->GetMenuBar(); 
17137     wxPyEndAllowThreads(__tstate
); 
17138     if (PyErr_Occurred()) SWIG_fail
; 
17141     resultobj 
= wxPyMake_wxObject(result
, 0);  
17149 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_SetTitle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17150   PyObject 
*resultobj 
= 0; 
17151   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17152   wxString 
*arg2 
= 0 ; 
17155   bool temp2 
= false ; 
17156   PyObject 
* obj0 
= 0 ; 
17157   PyObject 
* obj1 
= 0 ; 
17158   char *  kwnames
[] = { 
17159     (char *) "self",(char *) "title", NULL 
 
17162   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetTitle",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17163   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17164   if (!SWIG_IsOK(res1
)) { 
17165     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetTitle" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17167   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17169     arg2 
= wxString_in_helper(obj1
); 
17170     if (arg2 
== NULL
) SWIG_fail
; 
17174     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17175     (arg1
)->SetTitle((wxString 
const &)*arg2
); 
17176     wxPyEndAllowThreads(__tstate
); 
17177     if (PyErr_Occurred()) SWIG_fail
; 
17179   resultobj 
= SWIG_Py_Void(); 
17194 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_GetTitle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17195   PyObject 
*resultobj 
= 0; 
17196   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17200   PyObject 
*swig_obj
[1] ; 
17202   if (!args
) SWIG_fail
; 
17203   swig_obj
[0] = args
; 
17204   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17205   if (!SWIG_IsOK(res1
)) { 
17206     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetTitle" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17208   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17210     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17211     result 
= ((wxAuiMDIChildFrame 
const *)arg1
)->GetTitle(); 
17212     wxPyEndAllowThreads(__tstate
); 
17213     if (PyErr_Occurred()) SWIG_fail
; 
17217     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
17219     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
17228 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_SetIcons(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17229   PyObject 
*resultobj 
= 0; 
17230   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17231   wxIconBundle 
*arg2 
= 0 ; 
17236   PyObject 
* obj0 
= 0 ; 
17237   PyObject 
* obj1 
= 0 ; 
17238   char *  kwnames
[] = { 
17239     (char *) "self",(char *) "icons", NULL 
 
17242   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetIcons",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17243   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17244   if (!SWIG_IsOK(res1
)) { 
17245     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetIcons" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17247   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17248   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIconBundle
,  0  | 0); 
17249   if (!SWIG_IsOK(res2
)) { 
17250     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");  
17253     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");  
17255   arg2 
= reinterpret_cast< wxIconBundle 
* >(argp2
); 
17257     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17258     (arg1
)->SetIcons((wxIconBundle 
const &)*arg2
); 
17259     wxPyEndAllowThreads(__tstate
); 
17260     if (PyErr_Occurred()) SWIG_fail
; 
17262   resultobj 
= SWIG_Py_Void(); 
17269 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_GetIcons(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17270   PyObject 
*resultobj 
= 0; 
17271   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17272   wxIconBundle 
*result 
= 0 ; 
17275   PyObject 
*swig_obj
[1] ; 
17277   if (!args
) SWIG_fail
; 
17278   swig_obj
[0] = args
; 
17279   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17280   if (!SWIG_IsOK(res1
)) { 
17281     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetIcons" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17283   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17285     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17287       wxIconBundle 
const &_result_ref 
= ((wxAuiMDIChildFrame 
const *)arg1
)->GetIcons(); 
17288       result 
= (wxIconBundle 
*) &_result_ref
; 
17290     wxPyEndAllowThreads(__tstate
); 
17291     if (PyErr_Occurred()) SWIG_fail
; 
17293   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIconBundle
, 0 |  0 ); 
17300 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_SetIcon(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17301   PyObject 
*resultobj 
= 0; 
17302   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17308   PyObject 
* obj0 
= 0 ; 
17309   PyObject 
* obj1 
= 0 ; 
17310   char *  kwnames
[] = { 
17311     (char *) "self",(char *) "icon", NULL 
 
17314   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17315   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17316   if (!SWIG_IsOK(res1
)) { 
17317     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetIcon" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17319   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17320   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
,  0  | 0); 
17321   if (!SWIG_IsOK(res2
)) { 
17322     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");  
17325     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");  
17327   arg2 
= reinterpret_cast< wxIcon 
* >(argp2
); 
17329     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17330     (arg1
)->SetIcon((wxIcon 
const &)*arg2
); 
17331     wxPyEndAllowThreads(__tstate
); 
17332     if (PyErr_Occurred()) SWIG_fail
; 
17334   resultobj 
= SWIG_Py_Void(); 
17341 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_GetIcon(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17342   PyObject 
*resultobj 
= 0; 
17343   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17344   wxIcon 
*result 
= 0 ; 
17347   PyObject 
*swig_obj
[1] ; 
17349   if (!args
) SWIG_fail
; 
17350   swig_obj
[0] = args
; 
17351   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17352   if (!SWIG_IsOK(res1
)) { 
17353     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetIcon" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17355   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17357     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17359       wxIcon 
const &_result_ref 
= ((wxAuiMDIChildFrame 
const *)arg1
)->GetIcon(); 
17360       result 
= (wxIcon 
*) &_result_ref
; 
17362     wxPyEndAllowThreads(__tstate
); 
17363     if (PyErr_Occurred()) SWIG_fail
; 
17366     wxIcon
* resultptr 
= new wxIcon(*result
); 
17367     resultobj 
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxIcon
, 1); 
17375 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_Activate(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17376   PyObject 
*resultobj 
= 0; 
17377   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17380   PyObject 
*swig_obj
[1] ; 
17382   if (!args
) SWIG_fail
; 
17383   swig_obj
[0] = args
; 
17384   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17385   if (!SWIG_IsOK(res1
)) { 
17386     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Activate" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17388   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17390     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17391     (arg1
)->Activate(); 
17392     wxPyEndAllowThreads(__tstate
); 
17393     if (PyErr_Occurred()) SWIG_fail
; 
17395   resultobj 
= SWIG_Py_Void(); 
17402 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_DoSetSizeHints(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17403   PyObject 
*resultobj 
= 0; 
17404   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17407   int arg4 
= (int) wxDefaultCoord 
; 
17408   int arg5 
= (int) wxDefaultCoord 
; 
17409   int arg6 
= (int) wxDefaultCoord 
; 
17410   int arg7 
= (int) wxDefaultCoord 
; 
17425   PyObject 
* obj0 
= 0 ; 
17426   PyObject 
* obj1 
= 0 ; 
17427   PyObject 
* obj2 
= 0 ; 
17428   PyObject 
* obj3 
= 0 ; 
17429   PyObject 
* obj4 
= 0 ; 
17430   PyObject 
* obj5 
= 0 ; 
17431   PyObject 
* obj6 
= 0 ; 
17432   char *  kwnames
[] = { 
17433     (char *) "self",(char *) "minW",(char *) "minH",(char *) "maxW",(char *) "maxH",(char *) "incW",(char *) "incH", NULL 
 
17436   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:AuiMDIChildFrame_DoSetSizeHints",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
; 
17437   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17438   if (!SWIG_IsOK(res1
)) { 
17439     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17441   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17442   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17443   if (!SWIG_IsOK(ecode2
)) { 
17444     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "2"" of type '" "int""'"); 
17446   arg2 
= static_cast< int >(val2
); 
17447   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
17448   if (!SWIG_IsOK(ecode3
)) { 
17449     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "3"" of type '" "int""'"); 
17451   arg3 
= static_cast< int >(val3
); 
17453     ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
17454     if (!SWIG_IsOK(ecode4
)) { 
17455       SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "4"" of type '" "int""'"); 
17457     arg4 
= static_cast< int >(val4
); 
17460     ecode5 
= SWIG_AsVal_int(obj4
, &val5
); 
17461     if (!SWIG_IsOK(ecode5
)) { 
17462       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "5"" of type '" "int""'"); 
17464     arg5 
= static_cast< int >(val5
); 
17467     ecode6 
= SWIG_AsVal_int(obj5
, &val6
); 
17468     if (!SWIG_IsOK(ecode6
)) { 
17469       SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "6"" of type '" "int""'"); 
17471     arg6 
= static_cast< int >(val6
); 
17474     ecode7 
= SWIG_AsVal_int(obj6
, &val7
); 
17475     if (!SWIG_IsOK(ecode7
)) { 
17476       SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "7"" of type '" "int""'"); 
17478     arg7 
= static_cast< int >(val7
); 
17481     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17482     (arg1
)->DoSetSizeHints(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
); 
17483     wxPyEndAllowThreads(__tstate
); 
17484     if (PyErr_Occurred()) SWIG_fail
; 
17486   resultobj 
= SWIG_Py_Void(); 
17493 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_Maximize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17494   PyObject 
*resultobj 
= 0; 
17495   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17496   bool arg2 
= (bool) true ; 
17501   PyObject 
* obj0 
= 0 ; 
17502   PyObject 
* obj1 
= 0 ; 
17503   char *  kwnames
[] = { 
17504     (char *) "self",(char *) "maximize", NULL 
 
17507   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiMDIChildFrame_Maximize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17508   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17509   if (!SWIG_IsOK(res1
)) { 
17510     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Maximize" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17512   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17514     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
17515     if (!SWIG_IsOK(ecode2
)) { 
17516       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_Maximize" "', expected argument " "2"" of type '" "bool""'"); 
17518     arg2 
= static_cast< bool >(val2
); 
17521     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17522     (arg1
)->Maximize(arg2
); 
17523     wxPyEndAllowThreads(__tstate
); 
17524     if (PyErr_Occurred()) SWIG_fail
; 
17526   resultobj 
= SWIG_Py_Void(); 
17533 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_Restore(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17534   PyObject 
*resultobj 
= 0; 
17535   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17538   PyObject 
*swig_obj
[1] ; 
17540   if (!args
) SWIG_fail
; 
17541   swig_obj
[0] = args
; 
17542   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17543   if (!SWIG_IsOK(res1
)) { 
17544     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Restore" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17546   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17548     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17550     wxPyEndAllowThreads(__tstate
); 
17551     if (PyErr_Occurred()) SWIG_fail
; 
17553   resultobj 
= SWIG_Py_Void(); 
17560 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_Iconize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17561   PyObject 
*resultobj 
= 0; 
17562   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17563   bool arg2 
= (bool) true ; 
17568   PyObject 
* obj0 
= 0 ; 
17569   PyObject 
* obj1 
= 0 ; 
17570   char *  kwnames
[] = { 
17571     (char *) "self",(char *) "iconize", NULL 
 
17574   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiMDIChildFrame_Iconize",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17575   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17576   if (!SWIG_IsOK(res1
)) { 
17577     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Iconize" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17579   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17581     ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
17582     if (!SWIG_IsOK(ecode2
)) { 
17583       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_Iconize" "', expected argument " "2"" of type '" "bool""'"); 
17585     arg2 
= static_cast< bool >(val2
); 
17588     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17589     (arg1
)->Iconize(arg2
); 
17590     wxPyEndAllowThreads(__tstate
); 
17591     if (PyErr_Occurred()) SWIG_fail
; 
17593   resultobj 
= SWIG_Py_Void(); 
17600 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_IsMaximized(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17601   PyObject 
*resultobj 
= 0; 
17602   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17606   PyObject 
*swig_obj
[1] ; 
17608   if (!args
) SWIG_fail
; 
17609   swig_obj
[0] = args
; 
17610   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17611   if (!SWIG_IsOK(res1
)) { 
17612     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_IsMaximized" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17614   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17616     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17617     result 
= (bool)((wxAuiMDIChildFrame 
const *)arg1
)->IsMaximized(); 
17618     wxPyEndAllowThreads(__tstate
); 
17619     if (PyErr_Occurred()) SWIG_fail
; 
17622     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17630 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_IsIconized(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17631   PyObject 
*resultobj 
= 0; 
17632   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17636   PyObject 
*swig_obj
[1] ; 
17638   if (!args
) SWIG_fail
; 
17639   swig_obj
[0] = args
; 
17640   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17641   if (!SWIG_IsOK(res1
)) { 
17642     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_IsIconized" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17644   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17646     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17647     result 
= (bool)((wxAuiMDIChildFrame 
const *)arg1
)->IsIconized(); 
17648     wxPyEndAllowThreads(__tstate
); 
17649     if (PyErr_Occurred()) SWIG_fail
; 
17652     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17660 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_ShowFullScreen(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17661   PyObject 
*resultobj 
= 0; 
17662   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17672   PyObject 
* obj0 
= 0 ; 
17673   PyObject 
* obj1 
= 0 ; 
17674   PyObject 
* obj2 
= 0 ; 
17675   char *  kwnames
[] = { 
17676     (char *) "self",(char *) "show",(char *) "style", NULL 
 
17679   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiMDIChildFrame_ShowFullScreen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
17680   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17681   if (!SWIG_IsOK(res1
)) { 
17682     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_ShowFullScreen" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17684   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17685   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
17686   if (!SWIG_IsOK(ecode2
)) { 
17687     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_ShowFullScreen" "', expected argument " "2"" of type '" "bool""'"); 
17689   arg2 
= static_cast< bool >(val2
); 
17690   ecode3 
= SWIG_AsVal_long(obj2
, &val3
); 
17691   if (!SWIG_IsOK(ecode3
)) { 
17692     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIChildFrame_ShowFullScreen" "', expected argument " "3"" of type '" "long""'"); 
17694   arg3 
= static_cast< long >(val3
); 
17696     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17697     result 
= (bool)(arg1
)->ShowFullScreen(arg2
,arg3
); 
17698     wxPyEndAllowThreads(__tstate
); 
17699     if (PyErr_Occurred()) SWIG_fail
; 
17702     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17710 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_IsFullScreen(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17711   PyObject 
*resultobj 
= 0; 
17712   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17716   PyObject 
*swig_obj
[1] ; 
17718   if (!args
) SWIG_fail
; 
17719   swig_obj
[0] = args
; 
17720   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17721   if (!SWIG_IsOK(res1
)) { 
17722     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_IsFullScreen" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17724   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17726     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17727     result 
= (bool)((wxAuiMDIChildFrame 
const *)arg1
)->IsFullScreen(); 
17728     wxPyEndAllowThreads(__tstate
); 
17729     if (PyErr_Occurred()) SWIG_fail
; 
17732     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17740 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_OnMenuHighlight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17741   PyObject 
*resultobj 
= 0; 
17742   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17743   wxMenuEvent 
*arg2 
= 0 ; 
17748   PyObject 
* obj0 
= 0 ; 
17749   PyObject 
* obj1 
= 0 ; 
17750   char *  kwnames
[] = { 
17751     (char *) "self",(char *) "evt", NULL 
 
17754   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_OnMenuHighlight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17755   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17756   if (!SWIG_IsOK(res1
)) { 
17757     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_OnMenuHighlight" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17759   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17760   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxMenuEvent
,  0 ); 
17761   if (!SWIG_IsOK(res2
)) { 
17762     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_OnMenuHighlight" "', expected argument " "2"" of type '" "wxMenuEvent &""'");  
17765     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_OnMenuHighlight" "', expected argument " "2"" of type '" "wxMenuEvent &""'");  
17767   arg2 
= reinterpret_cast< wxMenuEvent 
* >(argp2
); 
17769     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17770     (arg1
)->OnMenuHighlight(*arg2
); 
17771     wxPyEndAllowThreads(__tstate
); 
17772     if (PyErr_Occurred()) SWIG_fail
; 
17774   resultobj 
= SWIG_Py_Void(); 
17781 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_OnActivate(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17782   PyObject 
*resultobj 
= 0; 
17783   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17784   wxActivateEvent 
*arg2 
= 0 ; 
17789   PyObject 
* obj0 
= 0 ; 
17790   PyObject 
* obj1 
= 0 ; 
17791   char *  kwnames
[] = { 
17792     (char *) "self",(char *) "evt", NULL 
 
17795   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_OnActivate",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17796   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17797   if (!SWIG_IsOK(res1
)) { 
17798     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_OnActivate" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17800   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17801   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxActivateEvent
,  0 ); 
17802   if (!SWIG_IsOK(res2
)) { 
17803     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_OnActivate" "', expected argument " "2"" of type '" "wxActivateEvent &""'");  
17806     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_OnActivate" "', expected argument " "2"" of type '" "wxActivateEvent &""'");  
17808   arg2 
= reinterpret_cast< wxActivateEvent 
* >(argp2
); 
17810     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17811     (arg1
)->OnActivate(*arg2
); 
17812     wxPyEndAllowThreads(__tstate
); 
17813     if (PyErr_Occurred()) SWIG_fail
; 
17815   resultobj 
= SWIG_Py_Void(); 
17822 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_OnCloseWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17823   PyObject 
*resultobj 
= 0; 
17824   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17825   wxCloseEvent 
*arg2 
= 0 ; 
17830   PyObject 
* obj0 
= 0 ; 
17831   PyObject 
* obj1 
= 0 ; 
17832   char *  kwnames
[] = { 
17833     (char *) "self",(char *) "evt", NULL 
 
17836   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_OnCloseWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17837   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17838   if (!SWIG_IsOK(res1
)) { 
17839     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_OnCloseWindow" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17841   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17842   res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxCloseEvent
,  0 ); 
17843   if (!SWIG_IsOK(res2
)) { 
17844     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_OnCloseWindow" "', expected argument " "2"" of type '" "wxCloseEvent &""'");  
17847     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_OnCloseWindow" "', expected argument " "2"" of type '" "wxCloseEvent &""'");  
17849   arg2 
= reinterpret_cast< wxCloseEvent 
* >(argp2
); 
17851     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17852     (arg1
)->OnCloseWindow(*arg2
); 
17853     wxPyEndAllowThreads(__tstate
); 
17854     if (PyErr_Occurred()) SWIG_fail
; 
17856   resultobj 
= SWIG_Py_Void(); 
17863 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_SetMDIParentFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17864   PyObject 
*resultobj 
= 0; 
17865   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17866   wxAuiMDIParentFrame 
*arg2 
= (wxAuiMDIParentFrame 
*) 0 ; 
17871   PyObject 
* obj0 
= 0 ; 
17872   PyObject 
* obj1 
= 0 ; 
17873   char *  kwnames
[] = { 
17874     (char *) "self",(char *) "parent", NULL 
 
17877   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetMDIParentFrame",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17878   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17879   if (!SWIG_IsOK(res1
)) { 
17880     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetMDIParentFrame" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17882   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17883   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
17884   if (!SWIG_IsOK(res2
)) { 
17885     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetMDIParentFrame" "', expected argument " "2"" of type '" "wxAuiMDIParentFrame *""'");  
17887   arg2 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp2
); 
17889     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17890     (arg1
)->SetMDIParentFrame(arg2
); 
17891     wxPyEndAllowThreads(__tstate
); 
17892     if (PyErr_Occurred()) SWIG_fail
; 
17894   resultobj 
= SWIG_Py_Void(); 
17901 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_GetMDIParentFrame(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17902   PyObject 
*resultobj 
= 0; 
17903   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17904   wxAuiMDIParentFrame 
*result 
= 0 ; 
17907   PyObject 
*swig_obj
[1] ; 
17909   if (!args
) SWIG_fail
; 
17910   swig_obj
[0] = args
; 
17911   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17912   if (!SWIG_IsOK(res1
)) { 
17913     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetMDIParentFrame" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");  
17915   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17917     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17918     result 
= (wxAuiMDIParentFrame 
*)((wxAuiMDIChildFrame 
const *)arg1
)->GetMDIParentFrame(); 
17919     wxPyEndAllowThreads(__tstate
); 
17920     if (PyErr_Occurred()) SWIG_fail
; 
17922   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
17929 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_ApplyMDIChildFrameRect(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17930   PyObject 
*resultobj 
= 0; 
17931   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17934   PyObject 
*swig_obj
[1] ; 
17936   if (!args
) SWIG_fail
; 
17937   swig_obj
[0] = args
; 
17938   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17939   if (!SWIG_IsOK(res1
)) { 
17940     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_ApplyMDIChildFrameRect" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17942   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17944     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17945     (arg1
)->ApplyMDIChildFrameRect(); 
17946     wxPyEndAllowThreads(__tstate
); 
17947     if (PyErr_Occurred()) SWIG_fail
; 
17949   resultobj 
= SWIG_Py_Void(); 
17956 SWIGINTERN PyObject 
*_wrap_AuiMDIChildFrame_DoShow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17957   PyObject 
*resultobj 
= 0; 
17958   wxAuiMDIChildFrame 
*arg1 
= (wxAuiMDIChildFrame 
*) 0 ; 
17964   PyObject 
* obj0 
= 0 ; 
17965   PyObject 
* obj1 
= 0 ; 
17966   char *  kwnames
[] = { 
17967     (char *) "self",(char *) "show", NULL 
 
17970   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_DoShow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17971   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 |  0 ); 
17972   if (!SWIG_IsOK(res1
)) { 
17973     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_DoShow" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");  
17975   arg1 
= reinterpret_cast< wxAuiMDIChildFrame 
* >(argp1
); 
17976   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
17977   if (!SWIG_IsOK(ecode2
)) { 
17978     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_DoShow" "', expected argument " "2"" of type '" "bool""'"); 
17980   arg2 
= static_cast< bool >(val2
); 
17982     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17983     (arg1
)->DoShow(arg2
); 
17984     wxPyEndAllowThreads(__tstate
); 
17985     if (PyErr_Occurred()) SWIG_fail
; 
17987   resultobj 
= SWIG_Py_Void(); 
17994 SWIGINTERN PyObject 
*AuiMDIChildFrame_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17996   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
17997   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMDIChildFrame
, SWIG_NewClientData(obj
)); 
17998   return SWIG_Py_Void(); 
18001 SWIGINTERN PyObject 
*AuiMDIChildFrame_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18002   return SWIG_Python_InitShadowInstance(args
); 
18005 SWIGINTERN PyObject 
*_wrap_new_PreAuiMDIClientWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18006   PyObject 
*resultobj 
= 0; 
18007   wxAuiMDIClientWindow 
*result 
= 0 ; 
18009   if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMDIClientWindow",0,0,0)) SWIG_fail
; 
18011     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18012     result 
= (wxAuiMDIClientWindow 
*)new wxAuiMDIClientWindow(); 
18013     wxPyEndAllowThreads(__tstate
); 
18014     if (PyErr_Occurred()) SWIG_fail
; 
18016   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIClientWindow
, SWIG_POINTER_OWN 
|  0 ); 
18023 SWIGINTERN PyObject 
*_wrap_new_AuiMDIClientWindow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18024   PyObject 
*resultobj 
= 0; 
18025   wxAuiMDIParentFrame 
*arg1 
= (wxAuiMDIParentFrame 
*) 0 ; 
18026   long arg2 
= (long) 0 ; 
18027   wxAuiMDIClientWindow 
*result 
= 0 ; 
18032   PyObject 
* obj0 
= 0 ; 
18033   PyObject 
* obj1 
= 0 ; 
18034   char *  kwnames
[] = { 
18035     (char *) "parent",(char *) "style", NULL 
 
18038   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_AuiMDIClientWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18039   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
18040   if (!SWIG_IsOK(res1
)) { 
18041     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMDIClientWindow" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");  
18043   arg1 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp1
); 
18045     ecode2 
= SWIG_AsVal_long(obj1
, &val2
); 
18046     if (!SWIG_IsOK(ecode2
)) { 
18047       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMDIClientWindow" "', expected argument " "2"" of type '" "long""'"); 
18049     arg2 
= static_cast< long >(val2
); 
18052     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18053     result 
= (wxAuiMDIClientWindow 
*)new wxAuiMDIClientWindow(arg1
,arg2
); 
18054     wxPyEndAllowThreads(__tstate
); 
18055     if (PyErr_Occurred()) SWIG_fail
; 
18057   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIClientWindow
, SWIG_POINTER_NEW 
|  0 ); 
18064 SWIGINTERN PyObject 
*_wrap_AuiMDIClientWindow_CreateClient(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18065   PyObject 
*resultobj 
= 0; 
18066   wxAuiMDIClientWindow 
*arg1 
= (wxAuiMDIClientWindow 
*) 0 ; 
18067   wxAuiMDIParentFrame 
*arg2 
= (wxAuiMDIParentFrame 
*) 0 ; 
18068   long arg3 
= (long) wxVSCROLL
|wxHSCROLL 
; 
18076   PyObject 
* obj0 
= 0 ; 
18077   PyObject 
* obj1 
= 0 ; 
18078   PyObject 
* obj2 
= 0 ; 
18079   char *  kwnames
[] = { 
18080     (char *) "self",(char *) "parent",(char *) "style", NULL 
 
18083   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiMDIClientWindow_CreateClient",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18084   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIClientWindow
, 0 |  0 ); 
18085   if (!SWIG_IsOK(res1
)) { 
18086     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIClientWindow_CreateClient" "', expected argument " "1"" of type '" "wxAuiMDIClientWindow *""'");  
18088   arg1 
= reinterpret_cast< wxAuiMDIClientWindow 
* >(argp1
); 
18089   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 |  0 ); 
18090   if (!SWIG_IsOK(res2
)) { 
18091     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIClientWindow_CreateClient" "', expected argument " "2"" of type '" "wxAuiMDIParentFrame *""'");  
18093   arg2 
= reinterpret_cast< wxAuiMDIParentFrame 
* >(argp2
); 
18095     ecode3 
= SWIG_AsVal_long(obj2
, &val3
); 
18096     if (!SWIG_IsOK(ecode3
)) { 
18097       SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIClientWindow_CreateClient" "', expected argument " "3"" of type '" "long""'"); 
18099     arg3 
= static_cast< long >(val3
); 
18102     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18103     result 
= (bool)(arg1
)->CreateClient(arg2
,arg3
); 
18104     wxPyEndAllowThreads(__tstate
); 
18105     if (PyErr_Occurred()) SWIG_fail
; 
18108     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18116 SWIGINTERN PyObject 
*_wrap_AuiMDIClientWindow_SetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18117   PyObject 
*resultobj 
= 0; 
18118   wxAuiMDIClientWindow 
*arg1 
= (wxAuiMDIClientWindow 
*) 0 ; 
18125   PyObject 
* obj0 
= 0 ; 
18126   PyObject 
* obj1 
= 0 ; 
18127   char *  kwnames
[] = { 
18128     (char *) "self",(char *) "page", NULL 
 
18131   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIClientWindow_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18132   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIClientWindow
, 0 |  0 ); 
18133   if (!SWIG_IsOK(res1
)) { 
18134     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIClientWindow_SetSelection" "', expected argument " "1"" of type '" "wxAuiMDIClientWindow *""'");  
18136   arg1 
= reinterpret_cast< wxAuiMDIClientWindow 
* >(argp1
); 
18137   ecode2 
= SWIG_AsVal_size_t(obj1
, &val2
); 
18138   if (!SWIG_IsOK(ecode2
)) { 
18139     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIClientWindow_SetSelection" "', expected argument " "2"" of type '" "size_t""'"); 
18141   arg2 
= static_cast< size_t >(val2
); 
18143     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18144     result 
= (int)(arg1
)->SetSelection(arg2
); 
18145     wxPyEndAllowThreads(__tstate
); 
18146     if (PyErr_Occurred()) SWIG_fail
; 
18148   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
18155 SWIGINTERN PyObject 
*AuiMDIClientWindow_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18157   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
18158   SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMDIClientWindow
, SWIG_NewClientData(obj
)); 
18159   return SWIG_Py_Void(); 
18162 SWIGINTERN PyObject 
*AuiMDIClientWindow_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18163   return SWIG_Python_InitShadowInstance(args
); 
18166 SWIGINTERN PyObject 
*_wrap_new_PyAuiDockArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18167   PyObject 
*resultobj 
= 0; 
18168   wxPyAuiDockArt 
*result 
= 0 ; 
18170   if (!SWIG_Python_UnpackTuple(args
,"new_PyAuiDockArt",0,0,0)) SWIG_fail
; 
18172     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18173     result 
= (wxPyAuiDockArt 
*)new wxPyAuiDockArt(); 
18174     wxPyEndAllowThreads(__tstate
); 
18175     if (PyErr_Occurred()) SWIG_fail
; 
18177   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyAuiDockArt
, SWIG_POINTER_NEW 
|  0 ); 
18184 SWIGINTERN PyObject 
*_wrap_PyAuiDockArt__setCallbackInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18185   PyObject 
*resultobj 
= 0; 
18186   wxPyAuiDockArt 
*arg1 
= (wxPyAuiDockArt 
*) 0 ; 
18187   PyObject 
*arg2 
= (PyObject 
*) 0 ; 
18188   PyObject 
*arg3 
= (PyObject 
*) 0 ; 
18191   PyObject 
* obj0 
= 0 ; 
18192   PyObject 
* obj1 
= 0 ; 
18193   PyObject 
* obj2 
= 0 ; 
18194   char *  kwnames
[] = { 
18195     (char *) "self",(char *) "self",(char *) "_class", NULL 
 
18198   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyAuiDockArt__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18199   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyAuiDockArt
, 0 |  0 ); 
18200   if (!SWIG_IsOK(res1
)) { 
18201     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyAuiDockArt__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyAuiDockArt *""'");  
18203   arg1 
= reinterpret_cast< wxPyAuiDockArt 
* >(argp1
); 
18207     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18208     (arg1
)->_setCallbackInfo(arg2
,arg3
); 
18209     wxPyEndAllowThreads(__tstate
); 
18210     if (PyErr_Occurred()) SWIG_fail
; 
18212   resultobj 
= SWIG_Py_Void(); 
18219 SWIGINTERN PyObject 
*PyAuiDockArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18221   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
18222   SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiDockArt
, SWIG_NewClientData(obj
)); 
18223   return SWIG_Py_Void(); 
18226 SWIGINTERN PyObject 
*PyAuiDockArt_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18227   return SWIG_Python_InitShadowInstance(args
); 
18230 SWIGINTERN PyObject 
*_wrap_new_PyAuiTabArt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18231   PyObject 
*resultobj 
= 0; 
18232   wxPyAuiTabArt 
*result 
= 0 ; 
18234   if (!SWIG_Python_UnpackTuple(args
,"new_PyAuiTabArt",0,0,0)) SWIG_fail
; 
18236     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18237     result 
= (wxPyAuiTabArt 
*)new wxPyAuiTabArt(); 
18238     wxPyEndAllowThreads(__tstate
); 
18239     if (PyErr_Occurred()) SWIG_fail
; 
18241   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyAuiTabArt
, SWIG_POINTER_NEW 
|  0 ); 
18248 SWIGINTERN PyObject 
*_wrap_PyAuiTabArt__setCallbackInfo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18249   PyObject 
*resultobj 
= 0; 
18250   wxPyAuiTabArt 
*arg1 
= (wxPyAuiTabArt 
*) 0 ; 
18251   PyObject 
*arg2 
= (PyObject 
*) 0 ; 
18252   PyObject 
*arg3 
= (PyObject 
*) 0 ; 
18255   PyObject 
* obj0 
= 0 ; 
18256   PyObject 
* obj1 
= 0 ; 
18257   PyObject 
* obj2 
= 0 ; 
18258   char *  kwnames
[] = { 
18259     (char *) "self",(char *) "self",(char *) "_class", NULL 
 
18262   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyAuiTabArt__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18263   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyAuiTabArt
, 0 |  0 ); 
18264   if (!SWIG_IsOK(res1
)) { 
18265     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyAuiTabArt__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyAuiTabArt *""'");  
18267   arg1 
= reinterpret_cast< wxPyAuiTabArt 
* >(argp1
); 
18271     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18272     (arg1
)->_setCallbackInfo(arg2
,arg3
); 
18273     wxPyEndAllowThreads(__tstate
); 
18274     if (PyErr_Occurred()) SWIG_fail
; 
18276   resultobj 
= SWIG_Py_Void(); 
18283 SWIGINTERN PyObject 
*PyAuiTabArt_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18285   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
18286   SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiTabArt
, SWIG_NewClientData(obj
)); 
18287   return SWIG_Py_Void(); 
18290 SWIGINTERN PyObject 
*PyAuiTabArt_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18291   return SWIG_Python_InitShadowInstance(args
); 
18294 static PyMethodDef SwigMethods
[] = { 
18295          { (char *)"new_AuiPaneInfo", (PyCFunction
)_wrap_new_AuiPaneInfo
, METH_NOARGS
, NULL
}, 
18296          { (char *)"delete_AuiPaneInfo", (PyCFunction
)_wrap_delete_AuiPaneInfo
, METH_O
, NULL
}, 
18297          { (char *)"AuiPaneInfo_SafeSet", (PyCFunction
) _wrap_AuiPaneInfo_SafeSet
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18298          { (char *)"AuiPaneInfo_IsOk", (PyCFunction
)_wrap_AuiPaneInfo_IsOk
, METH_O
, NULL
}, 
18299          { (char *)"AuiPaneInfo_IsFixed", (PyCFunction
)_wrap_AuiPaneInfo_IsFixed
, METH_O
, NULL
}, 
18300          { (char *)"AuiPaneInfo_IsResizable", (PyCFunction
)_wrap_AuiPaneInfo_IsResizable
, METH_O
, NULL
}, 
18301          { (char *)"AuiPaneInfo_IsShown", (PyCFunction
)_wrap_AuiPaneInfo_IsShown
, METH_O
, NULL
}, 
18302          { (char *)"AuiPaneInfo_IsFloating", (PyCFunction
)_wrap_AuiPaneInfo_IsFloating
, METH_O
, NULL
}, 
18303          { (char *)"AuiPaneInfo_IsDocked", (PyCFunction
)_wrap_AuiPaneInfo_IsDocked
, METH_O
, NULL
}, 
18304          { (char *)"AuiPaneInfo_IsToolbar", (PyCFunction
)_wrap_AuiPaneInfo_IsToolbar
, METH_O
, NULL
}, 
18305          { (char *)"AuiPaneInfo_IsTopDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsTopDockable
, METH_O
, NULL
}, 
18306          { (char *)"AuiPaneInfo_IsBottomDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsBottomDockable
, METH_O
, NULL
}, 
18307          { (char *)"AuiPaneInfo_IsLeftDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsLeftDockable
, METH_O
, NULL
}, 
18308          { (char *)"AuiPaneInfo_IsRightDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsRightDockable
, METH_O
, NULL
}, 
18309          { (char *)"AuiPaneInfo_IsFloatable", (PyCFunction
)_wrap_AuiPaneInfo_IsFloatable
, METH_O
, NULL
}, 
18310          { (char *)"AuiPaneInfo_IsMovable", (PyCFunction
)_wrap_AuiPaneInfo_IsMovable
, METH_O
, NULL
}, 
18311          { (char *)"AuiPaneInfo_IsDestroyOnClose", (PyCFunction
)_wrap_AuiPaneInfo_IsDestroyOnClose
, METH_O
, NULL
}, 
18312          { (char *)"AuiPaneInfo_IsMaximized", (PyCFunction
)_wrap_AuiPaneInfo_IsMaximized
, METH_O
, NULL
}, 
18313          { (char *)"AuiPaneInfo_HasCaption", (PyCFunction
)_wrap_AuiPaneInfo_HasCaption
, METH_O
, NULL
}, 
18314          { (char *)"AuiPaneInfo_HasGripper", (PyCFunction
)_wrap_AuiPaneInfo_HasGripper
, METH_O
, NULL
}, 
18315          { (char *)"AuiPaneInfo_HasBorder", (PyCFunction
)_wrap_AuiPaneInfo_HasBorder
, METH_O
, NULL
}, 
18316          { (char *)"AuiPaneInfo_HasCloseButton", (PyCFunction
)_wrap_AuiPaneInfo_HasCloseButton
, METH_O
, NULL
}, 
18317          { (char *)"AuiPaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMaximizeButton
, METH_O
, NULL
}, 
18318          { (char *)"AuiPaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMinimizeButton
, METH_O
, NULL
}, 
18319          { (char *)"AuiPaneInfo_HasPinButton", (PyCFunction
)_wrap_AuiPaneInfo_HasPinButton
, METH_O
, NULL
}, 
18320          { (char *)"AuiPaneInfo_HasGripperTop", (PyCFunction
)_wrap_AuiPaneInfo_HasGripperTop
, METH_O
, NULL
}, 
18321          { (char *)"AuiPaneInfo_Window", (PyCFunction
) _wrap_AuiPaneInfo_Window
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18322          { (char *)"AuiPaneInfo_Name", (PyCFunction
) _wrap_AuiPaneInfo_Name
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18323          { (char *)"AuiPaneInfo_Caption", (PyCFunction
) _wrap_AuiPaneInfo_Caption
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18324          { (char *)"AuiPaneInfo_Left", (PyCFunction
)_wrap_AuiPaneInfo_Left
, METH_O
, NULL
}, 
18325          { (char *)"AuiPaneInfo_Right", (PyCFunction
)_wrap_AuiPaneInfo_Right
, METH_O
, NULL
}, 
18326          { (char *)"AuiPaneInfo_Top", (PyCFunction
)_wrap_AuiPaneInfo_Top
, METH_O
, NULL
}, 
18327          { (char *)"AuiPaneInfo_Bottom", (PyCFunction
)_wrap_AuiPaneInfo_Bottom
, METH_O
, NULL
}, 
18328          { (char *)"AuiPaneInfo_Center", (PyCFunction
)_wrap_AuiPaneInfo_Center
, METH_O
, NULL
}, 
18329          { (char *)"AuiPaneInfo_Centre", (PyCFunction
)_wrap_AuiPaneInfo_Centre
, METH_O
, NULL
}, 
18330          { (char *)"AuiPaneInfo_Direction", (PyCFunction
) _wrap_AuiPaneInfo_Direction
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18331          { (char *)"AuiPaneInfo_Layer", (PyCFunction
) _wrap_AuiPaneInfo_Layer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18332          { (char *)"AuiPaneInfo_Row", (PyCFunction
) _wrap_AuiPaneInfo_Row
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18333          { (char *)"AuiPaneInfo_Position", (PyCFunction
) _wrap_AuiPaneInfo_Position
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18334          { (char *)"AuiPaneInfo_BestSize", (PyCFunction
) _wrap_AuiPaneInfo_BestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18335          { (char *)"AuiPaneInfo_MinSize", (PyCFunction
) _wrap_AuiPaneInfo_MinSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18336          { (char *)"AuiPaneInfo_MaxSize", (PyCFunction
) _wrap_AuiPaneInfo_MaxSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18337          { (char *)"AuiPaneInfo_FloatingPosition", (PyCFunction
) _wrap_AuiPaneInfo_FloatingPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18338          { (char *)"AuiPaneInfo_FloatingSize", (PyCFunction
) _wrap_AuiPaneInfo_FloatingSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18339          { (char *)"AuiPaneInfo_Fixed", (PyCFunction
)_wrap_AuiPaneInfo_Fixed
, METH_O
, NULL
}, 
18340          { (char *)"AuiPaneInfo_Resizable", (PyCFunction
) _wrap_AuiPaneInfo_Resizable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18341          { (char *)"AuiPaneInfo_Dock", (PyCFunction
)_wrap_AuiPaneInfo_Dock
, METH_O
, NULL
}, 
18342          { (char *)"AuiPaneInfo_Float", (PyCFunction
)_wrap_AuiPaneInfo_Float
, METH_O
, NULL
}, 
18343          { (char *)"AuiPaneInfo_Hide", (PyCFunction
)_wrap_AuiPaneInfo_Hide
, METH_O
, NULL
}, 
18344          { (char *)"AuiPaneInfo_Show", (PyCFunction
) _wrap_AuiPaneInfo_Show
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18345          { (char *)"AuiPaneInfo_CaptionVisible", (PyCFunction
) _wrap_AuiPaneInfo_CaptionVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18346          { (char *)"AuiPaneInfo_Maximize", (PyCFunction
)_wrap_AuiPaneInfo_Maximize
, METH_O
, NULL
}, 
18347          { (char *)"AuiPaneInfo_Restore", (PyCFunction
)_wrap_AuiPaneInfo_Restore
, METH_O
, NULL
}, 
18348          { (char *)"AuiPaneInfo_PaneBorder", (PyCFunction
) _wrap_AuiPaneInfo_PaneBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18349          { (char *)"AuiPaneInfo_Gripper", (PyCFunction
) _wrap_AuiPaneInfo_Gripper
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18350          { (char *)"AuiPaneInfo_GripperTop", (PyCFunction
) _wrap_AuiPaneInfo_GripperTop
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18351          { (char *)"AuiPaneInfo_CloseButton", (PyCFunction
) _wrap_AuiPaneInfo_CloseButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18352          { (char *)"AuiPaneInfo_MaximizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MaximizeButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18353          { (char *)"AuiPaneInfo_MinimizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MinimizeButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18354          { (char *)"AuiPaneInfo_PinButton", (PyCFunction
) _wrap_AuiPaneInfo_PinButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18355          { (char *)"AuiPaneInfo_DestroyOnClose", (PyCFunction
) _wrap_AuiPaneInfo_DestroyOnClose
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18356          { (char *)"AuiPaneInfo_TopDockable", (PyCFunction
) _wrap_AuiPaneInfo_TopDockable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18357          { (char *)"AuiPaneInfo_BottomDockable", (PyCFunction
) _wrap_AuiPaneInfo_BottomDockable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18358          { (char *)"AuiPaneInfo_LeftDockable", (PyCFunction
) _wrap_AuiPaneInfo_LeftDockable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18359          { (char *)"AuiPaneInfo_RightDockable", (PyCFunction
) _wrap_AuiPaneInfo_RightDockable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18360          { (char *)"AuiPaneInfo_Floatable", (PyCFunction
) _wrap_AuiPaneInfo_Floatable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18361          { (char *)"AuiPaneInfo_Movable", (PyCFunction
) _wrap_AuiPaneInfo_Movable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18362          { (char *)"AuiPaneInfo_Dockable", (PyCFunction
) _wrap_AuiPaneInfo_Dockable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18363          { (char *)"AuiPaneInfo_DefaultPane", (PyCFunction
)_wrap_AuiPaneInfo_DefaultPane
, METH_O
, NULL
}, 
18364          { (char *)"AuiPaneInfo_CentrePane", (PyCFunction
)_wrap_AuiPaneInfo_CentrePane
, METH_O
, NULL
}, 
18365          { (char *)"AuiPaneInfo_CenterPane", (PyCFunction
)_wrap_AuiPaneInfo_CenterPane
, METH_O
, NULL
}, 
18366          { (char *)"AuiPaneInfo_ToolbarPane", (PyCFunction
)_wrap_AuiPaneInfo_ToolbarPane
, METH_O
, NULL
}, 
18367          { (char *)"AuiPaneInfo_SetFlag", (PyCFunction
) _wrap_AuiPaneInfo_SetFlag
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18368          { (char *)"AuiPaneInfo_HasFlag", (PyCFunction
) _wrap_AuiPaneInfo_HasFlag
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18369          { (char *)"AuiPaneInfo_name_set", _wrap_AuiPaneInfo_name_set
, METH_VARARGS
, NULL
}, 
18370          { (char *)"AuiPaneInfo_name_get", (PyCFunction
)_wrap_AuiPaneInfo_name_get
, METH_O
, NULL
}, 
18371          { (char *)"AuiPaneInfo_caption_set", _wrap_AuiPaneInfo_caption_set
, METH_VARARGS
, NULL
}, 
18372          { (char *)"AuiPaneInfo_caption_get", (PyCFunction
)_wrap_AuiPaneInfo_caption_get
, METH_O
, NULL
}, 
18373          { (char *)"AuiPaneInfo_window_set", _wrap_AuiPaneInfo_window_set
, METH_VARARGS
, NULL
}, 
18374          { (char *)"AuiPaneInfo_window_get", (PyCFunction
)_wrap_AuiPaneInfo_window_get
, METH_O
, NULL
}, 
18375          { (char *)"AuiPaneInfo_frame_set", _wrap_AuiPaneInfo_frame_set
, METH_VARARGS
, NULL
}, 
18376          { (char *)"AuiPaneInfo_frame_get", (PyCFunction
)_wrap_AuiPaneInfo_frame_get
, METH_O
, NULL
}, 
18377          { (char *)"AuiPaneInfo_state_set", _wrap_AuiPaneInfo_state_set
, METH_VARARGS
, NULL
}, 
18378          { (char *)"AuiPaneInfo_state_get", (PyCFunction
)_wrap_AuiPaneInfo_state_get
, METH_O
, NULL
}, 
18379          { (char *)"AuiPaneInfo_dock_direction_set", _wrap_AuiPaneInfo_dock_direction_set
, METH_VARARGS
, NULL
}, 
18380          { (char *)"AuiPaneInfo_dock_direction_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_direction_get
, METH_O
, NULL
}, 
18381          { (char *)"AuiPaneInfo_dock_layer_set", _wrap_AuiPaneInfo_dock_layer_set
, METH_VARARGS
, NULL
}, 
18382          { (char *)"AuiPaneInfo_dock_layer_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_layer_get
, METH_O
, NULL
}, 
18383          { (char *)"AuiPaneInfo_dock_row_set", _wrap_AuiPaneInfo_dock_row_set
, METH_VARARGS
, NULL
}, 
18384          { (char *)"AuiPaneInfo_dock_row_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_row_get
, METH_O
, NULL
}, 
18385          { (char *)"AuiPaneInfo_dock_pos_set", _wrap_AuiPaneInfo_dock_pos_set
, METH_VARARGS
, NULL
}, 
18386          { (char *)"AuiPaneInfo_dock_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_pos_get
, METH_O
, NULL
}, 
18387          { (char *)"AuiPaneInfo_best_size_set", _wrap_AuiPaneInfo_best_size_set
, METH_VARARGS
, NULL
}, 
18388          { (char *)"AuiPaneInfo_best_size_get", (PyCFunction
)_wrap_AuiPaneInfo_best_size_get
, METH_O
, NULL
}, 
18389          { (char *)"AuiPaneInfo_min_size_set", _wrap_AuiPaneInfo_min_size_set
, METH_VARARGS
, NULL
}, 
18390          { (char *)"AuiPaneInfo_min_size_get", (PyCFunction
)_wrap_AuiPaneInfo_min_size_get
, METH_O
, NULL
}, 
18391          { (char *)"AuiPaneInfo_max_size_set", _wrap_AuiPaneInfo_max_size_set
, METH_VARARGS
, NULL
}, 
18392          { (char *)"AuiPaneInfo_max_size_get", (PyCFunction
)_wrap_AuiPaneInfo_max_size_get
, METH_O
, NULL
}, 
18393          { (char *)"AuiPaneInfo_floating_pos_set", _wrap_AuiPaneInfo_floating_pos_set
, METH_VARARGS
, NULL
}, 
18394          { (char *)"AuiPaneInfo_floating_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_pos_get
, METH_O
, NULL
}, 
18395          { (char *)"AuiPaneInfo_floating_size_set", _wrap_AuiPaneInfo_floating_size_set
, METH_VARARGS
, NULL
}, 
18396          { (char *)"AuiPaneInfo_floating_size_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_size_get
, METH_O
, NULL
}, 
18397          { (char *)"AuiPaneInfo_dock_proportion_set", _wrap_AuiPaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
}, 
18398          { (char *)"AuiPaneInfo_dock_proportion_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_proportion_get
, METH_O
, NULL
}, 
18399          { (char *)"AuiPaneInfo_buttons_set", _wrap_AuiPaneInfo_buttons_set
, METH_VARARGS
, NULL
}, 
18400          { (char *)"AuiPaneInfo_buttons_get", (PyCFunction
)_wrap_AuiPaneInfo_buttons_get
, METH_O
, NULL
}, 
18401          { (char *)"AuiPaneInfo_rect_set", _wrap_AuiPaneInfo_rect_set
, METH_VARARGS
, NULL
}, 
18402          { (char *)"AuiPaneInfo_rect_get", (PyCFunction
)_wrap_AuiPaneInfo_rect_get
, METH_O
, NULL
}, 
18403          { (char *)"AuiPaneInfo_swigregister", AuiPaneInfo_swigregister
, METH_VARARGS
, NULL
}, 
18404          { (char *)"AuiPaneInfo_swiginit", AuiPaneInfo_swiginit
, METH_VARARGS
, NULL
}, 
18405          { (char *)"new_AuiManager", (PyCFunction
) _wrap_new_AuiManager
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18406          { (char *)"delete_AuiManager", (PyCFunction
)_wrap_delete_AuiManager
, METH_O
, NULL
}, 
18407          { (char *)"AuiManager_UnInit", (PyCFunction
)_wrap_AuiManager_UnInit
, METH_O
, NULL
}, 
18408          { (char *)"AuiManager_SetFlags", (PyCFunction
) _wrap_AuiManager_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18409          { (char *)"AuiManager_GetFlags", (PyCFunction
)_wrap_AuiManager_GetFlags
, METH_O
, NULL
}, 
18410          { (char *)"AuiManager_SetManagedWindow", (PyCFunction
) _wrap_AuiManager_SetManagedWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18411          { (char *)"AuiManager_GetManagedWindow", (PyCFunction
)_wrap_AuiManager_GetManagedWindow
, METH_O
, NULL
}, 
18412          { (char *)"AuiManager_GetManager", (PyCFunction
) _wrap_AuiManager_GetManager
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18413          { (char *)"AuiManager_SetArtProvider", (PyCFunction
) _wrap_AuiManager_SetArtProvider
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18414          { (char *)"AuiManager_GetArtProvider", (PyCFunction
)_wrap_AuiManager_GetArtProvider
, METH_O
, NULL
}, 
18415          { (char *)"AuiManager__GetPaneByWidget", (PyCFunction
) _wrap_AuiManager__GetPaneByWidget
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18416          { (char *)"AuiManager__GetPaneByName", (PyCFunction
) _wrap_AuiManager__GetPaneByName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18417          { (char *)"AuiManager_GetAllPanes", (PyCFunction
)_wrap_AuiManager_GetAllPanes
, METH_O
, NULL
}, 
18418          { (char *)"AuiManager__AddPane1", (PyCFunction
) _wrap_AuiManager__AddPane1
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18419          { (char *)"AuiManager_AddPane", (PyCFunction
) _wrap_AuiManager_AddPane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18420          { (char *)"AuiManager__AddPane2", (PyCFunction
) _wrap_AuiManager__AddPane2
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18421          { (char *)"AuiManager_InsertPane", (PyCFunction
) _wrap_AuiManager_InsertPane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18422          { (char *)"AuiManager_DetachPane", (PyCFunction
) _wrap_AuiManager_DetachPane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18423          { (char *)"AuiManager_Update", (PyCFunction
)_wrap_AuiManager_Update
, METH_O
, NULL
}, 
18424          { (char *)"AuiManager_SavePaneInfo", (PyCFunction
) _wrap_AuiManager_SavePaneInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18425          { (char *)"AuiManager_LoadPaneInfo", (PyCFunction
) _wrap_AuiManager_LoadPaneInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18426          { (char *)"AuiManager_SavePerspective", (PyCFunction
)_wrap_AuiManager_SavePerspective
, METH_O
, NULL
}, 
18427          { (char *)"AuiManager_LoadPerspective", (PyCFunction
) _wrap_AuiManager_LoadPerspective
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18428          { (char *)"AuiManager_SetDockSizeConstraint", (PyCFunction
) _wrap_AuiManager_SetDockSizeConstraint
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18429          { (char *)"AuiManager_GetDockSizeConstraint", (PyCFunction
) _wrap_AuiManager_GetDockSizeConstraint
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18430          { (char *)"AuiManager_ClosePane", (PyCFunction
) _wrap_AuiManager_ClosePane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18431          { (char *)"AuiManager_MaximizePane", (PyCFunction
) _wrap_AuiManager_MaximizePane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18432          { (char *)"AuiManager_RestorePane", (PyCFunction
) _wrap_AuiManager_RestorePane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18433          { (char *)"AuiManager_RestoreMaximizedPane", (PyCFunction
)_wrap_AuiManager_RestoreMaximizedPane
, METH_O
, NULL
}, 
18434          { (char *)"AuiManager_CreateFloatingFrame", (PyCFunction
) _wrap_AuiManager_CreateFloatingFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18435          { (char *)"AuiManager_StartPaneDrag", (PyCFunction
) _wrap_AuiManager_StartPaneDrag
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18436          { (char *)"AuiManager_CalculateHintRect", (PyCFunction
) _wrap_AuiManager_CalculateHintRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18437          { (char *)"AuiManager_DrawHintRect", (PyCFunction
) _wrap_AuiManager_DrawHintRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18438          { (char *)"AuiManager_ShowHint", (PyCFunction
) _wrap_AuiManager_ShowHint
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18439          { (char *)"AuiManager_HideHint", (PyCFunction
)_wrap_AuiManager_HideHint
, METH_O
, NULL
}, 
18440          { (char *)"AuiManager_OnRender", (PyCFunction
) _wrap_AuiManager_OnRender
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18441          { (char *)"AuiManager_OnPaneButton", (PyCFunction
) _wrap_AuiManager_OnPaneButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18442          { (char *)"AuiManager_swigregister", AuiManager_swigregister
, METH_VARARGS
, NULL
}, 
18443          { (char *)"AuiManager_swiginit", AuiManager_swiginit
, METH_VARARGS
, NULL
}, 
18444          { (char *)"new_AuiManagerEvent", (PyCFunction
) _wrap_new_AuiManagerEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18445          { (char *)"AuiManagerEvent_Clone", (PyCFunction
)_wrap_AuiManagerEvent_Clone
, METH_O
, NULL
}, 
18446          { (char *)"AuiManagerEvent_SetManager", (PyCFunction
) _wrap_AuiManagerEvent_SetManager
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18447          { (char *)"AuiManagerEvent_SetPane", (PyCFunction
) _wrap_AuiManagerEvent_SetPane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18448          { (char *)"AuiManagerEvent_SetButton", (PyCFunction
) _wrap_AuiManagerEvent_SetButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18449          { (char *)"AuiManagerEvent_SetDC", (PyCFunction
) _wrap_AuiManagerEvent_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18450          { (char *)"AuiManagerEvent_GetManager", (PyCFunction
)_wrap_AuiManagerEvent_GetManager
, METH_O
, NULL
}, 
18451          { (char *)"AuiManagerEvent_GetPane", (PyCFunction
)_wrap_AuiManagerEvent_GetPane
, METH_O
, NULL
}, 
18452          { (char *)"AuiManagerEvent_GetButton", (PyCFunction
)_wrap_AuiManagerEvent_GetButton
, METH_O
, NULL
}, 
18453          { (char *)"AuiManagerEvent_GetDC", (PyCFunction
)_wrap_AuiManagerEvent_GetDC
, METH_O
, NULL
}, 
18454          { (char *)"AuiManagerEvent_Veto", (PyCFunction
) _wrap_AuiManagerEvent_Veto
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18455          { (char *)"AuiManagerEvent_GetVeto", (PyCFunction
)_wrap_AuiManagerEvent_GetVeto
, METH_O
, NULL
}, 
18456          { (char *)"AuiManagerEvent_SetCanVeto", (PyCFunction
) _wrap_AuiManagerEvent_SetCanVeto
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18457          { (char *)"AuiManagerEvent_CanVeto", (PyCFunction
)_wrap_AuiManagerEvent_CanVeto
, METH_O
, NULL
}, 
18458          { (char *)"AuiManagerEvent_manager_set", _wrap_AuiManagerEvent_manager_set
, METH_VARARGS
, NULL
}, 
18459          { (char *)"AuiManagerEvent_manager_get", (PyCFunction
)_wrap_AuiManagerEvent_manager_get
, METH_O
, NULL
}, 
18460          { (char *)"AuiManagerEvent_pane_set", _wrap_AuiManagerEvent_pane_set
, METH_VARARGS
, NULL
}, 
18461          { (char *)"AuiManagerEvent_pane_get", (PyCFunction
)_wrap_AuiManagerEvent_pane_get
, METH_O
, NULL
}, 
18462          { (char *)"AuiManagerEvent_button_set", _wrap_AuiManagerEvent_button_set
, METH_VARARGS
, NULL
}, 
18463          { (char *)"AuiManagerEvent_button_get", (PyCFunction
)_wrap_AuiManagerEvent_button_get
, METH_O
, NULL
}, 
18464          { (char *)"AuiManagerEvent_veto_flag_set", _wrap_AuiManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
}, 
18465          { (char *)"AuiManagerEvent_veto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_veto_flag_get
, METH_O
, NULL
}, 
18466          { (char *)"AuiManagerEvent_canveto_flag_set", _wrap_AuiManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
}, 
18467          { (char *)"AuiManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_canveto_flag_get
, METH_O
, NULL
}, 
18468          { (char *)"AuiManagerEvent_dc_set", _wrap_AuiManagerEvent_dc_set
, METH_VARARGS
, NULL
}, 
18469          { (char *)"AuiManagerEvent_dc_get", (PyCFunction
)_wrap_AuiManagerEvent_dc_get
, METH_O
, NULL
}, 
18470          { (char *)"AuiManagerEvent_swigregister", AuiManagerEvent_swigregister
, METH_VARARGS
, NULL
}, 
18471          { (char *)"AuiManagerEvent_swiginit", AuiManagerEvent_swiginit
, METH_VARARGS
, NULL
}, 
18472          { (char *)"new_AuiDockInfo", (PyCFunction
)_wrap_new_AuiDockInfo
, METH_NOARGS
, NULL
}, 
18473          { (char *)"AuiDockInfo_IsOk", (PyCFunction
)_wrap_AuiDockInfo_IsOk
, METH_O
, NULL
}, 
18474          { (char *)"AuiDockInfo_IsHorizontal", (PyCFunction
)_wrap_AuiDockInfo_IsHorizontal
, METH_O
, NULL
}, 
18475          { (char *)"AuiDockInfo_IsVertical", (PyCFunction
)_wrap_AuiDockInfo_IsVertical
, METH_O
, NULL
}, 
18476          { (char *)"AuiDockInfo_panes_set", _wrap_AuiDockInfo_panes_set
, METH_VARARGS
, NULL
}, 
18477          { (char *)"AuiDockInfo_panes_get", (PyCFunction
)_wrap_AuiDockInfo_panes_get
, METH_O
, NULL
}, 
18478          { (char *)"AuiDockInfo_rect_set", _wrap_AuiDockInfo_rect_set
, METH_VARARGS
, NULL
}, 
18479          { (char *)"AuiDockInfo_rect_get", (PyCFunction
)_wrap_AuiDockInfo_rect_get
, METH_O
, NULL
}, 
18480          { (char *)"AuiDockInfo_dock_direction_set", _wrap_AuiDockInfo_dock_direction_set
, METH_VARARGS
, NULL
}, 
18481          { (char *)"AuiDockInfo_dock_direction_get", (PyCFunction
)_wrap_AuiDockInfo_dock_direction_get
, METH_O
, NULL
}, 
18482          { (char *)"AuiDockInfo_dock_layer_set", _wrap_AuiDockInfo_dock_layer_set
, METH_VARARGS
, NULL
}, 
18483          { (char *)"AuiDockInfo_dock_layer_get", (PyCFunction
)_wrap_AuiDockInfo_dock_layer_get
, METH_O
, NULL
}, 
18484          { (char *)"AuiDockInfo_dock_row_set", _wrap_AuiDockInfo_dock_row_set
, METH_VARARGS
, NULL
}, 
18485          { (char *)"AuiDockInfo_dock_row_get", (PyCFunction
)_wrap_AuiDockInfo_dock_row_get
, METH_O
, NULL
}, 
18486          { (char *)"AuiDockInfo_size_set", _wrap_AuiDockInfo_size_set
, METH_VARARGS
, NULL
}, 
18487          { (char *)"AuiDockInfo_size_get", (PyCFunction
)_wrap_AuiDockInfo_size_get
, METH_O
, NULL
}, 
18488          { (char *)"AuiDockInfo_min_size_set", _wrap_AuiDockInfo_min_size_set
, METH_VARARGS
, NULL
}, 
18489          { (char *)"AuiDockInfo_min_size_get", (PyCFunction
)_wrap_AuiDockInfo_min_size_get
, METH_O
, NULL
}, 
18490          { (char *)"AuiDockInfo_resizable_set", _wrap_AuiDockInfo_resizable_set
, METH_VARARGS
, NULL
}, 
18491          { (char *)"AuiDockInfo_resizable_get", (PyCFunction
)_wrap_AuiDockInfo_resizable_get
, METH_O
, NULL
}, 
18492          { (char *)"AuiDockInfo_toolbar_set", _wrap_AuiDockInfo_toolbar_set
, METH_VARARGS
, NULL
}, 
18493          { (char *)"AuiDockInfo_toolbar_get", (PyCFunction
)_wrap_AuiDockInfo_toolbar_get
, METH_O
, NULL
}, 
18494          { (char *)"AuiDockInfo_fixed_set", _wrap_AuiDockInfo_fixed_set
, METH_VARARGS
, NULL
}, 
18495          { (char *)"AuiDockInfo_fixed_get", (PyCFunction
)_wrap_AuiDockInfo_fixed_get
, METH_O
, NULL
}, 
18496          { (char *)"AuiDockInfo_reserved1_set", _wrap_AuiDockInfo_reserved1_set
, METH_VARARGS
, NULL
}, 
18497          { (char *)"AuiDockInfo_reserved1_get", (PyCFunction
)_wrap_AuiDockInfo_reserved1_get
, METH_O
, NULL
}, 
18498          { (char *)"delete_AuiDockInfo", (PyCFunction
)_wrap_delete_AuiDockInfo
, METH_O
, NULL
}, 
18499          { (char *)"AuiDockInfo_swigregister", AuiDockInfo_swigregister
, METH_VARARGS
, NULL
}, 
18500          { (char *)"AuiDockInfo_swiginit", AuiDockInfo_swiginit
, METH_VARARGS
, NULL
}, 
18501          { (char *)"AuiDockUIPart_type_set", _wrap_AuiDockUIPart_type_set
, METH_VARARGS
, NULL
}, 
18502          { (char *)"AuiDockUIPart_type_get", (PyCFunction
)_wrap_AuiDockUIPart_type_get
, METH_O
, NULL
}, 
18503          { (char *)"AuiDockUIPart_orientation_set", _wrap_AuiDockUIPart_orientation_set
, METH_VARARGS
, NULL
}, 
18504          { (char *)"AuiDockUIPart_orientation_get", (PyCFunction
)_wrap_AuiDockUIPart_orientation_get
, METH_O
, NULL
}, 
18505          { (char *)"AuiDockUIPart_dock_set", _wrap_AuiDockUIPart_dock_set
, METH_VARARGS
, NULL
}, 
18506          { (char *)"AuiDockUIPart_dock_get", (PyCFunction
)_wrap_AuiDockUIPart_dock_get
, METH_O
, NULL
}, 
18507          { (char *)"AuiDockUIPart_pane_set", _wrap_AuiDockUIPart_pane_set
, METH_VARARGS
, NULL
}, 
18508          { (char *)"AuiDockUIPart_pane_get", (PyCFunction
)_wrap_AuiDockUIPart_pane_get
, METH_O
, NULL
}, 
18509          { (char *)"AuiDockUIPart_button_set", _wrap_AuiDockUIPart_button_set
, METH_VARARGS
, NULL
}, 
18510          { (char *)"AuiDockUIPart_button_get", (PyCFunction
)_wrap_AuiDockUIPart_button_get
, METH_O
, NULL
}, 
18511          { (char *)"AuiDockUIPart_cont_sizer_set", _wrap_AuiDockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
}, 
18512          { (char *)"AuiDockUIPart_cont_sizer_get", (PyCFunction
)_wrap_AuiDockUIPart_cont_sizer_get
, METH_O
, NULL
}, 
18513          { (char *)"AuiDockUIPart_sizer_item_set", _wrap_AuiDockUIPart_sizer_item_set
, METH_VARARGS
, NULL
}, 
18514          { (char *)"AuiDockUIPart_sizer_item_get", (PyCFunction
)_wrap_AuiDockUIPart_sizer_item_get
, METH_O
, NULL
}, 
18515          { (char *)"AuiDockUIPart_rect_set", _wrap_AuiDockUIPart_rect_set
, METH_VARARGS
, NULL
}, 
18516          { (char *)"AuiDockUIPart_rect_get", (PyCFunction
)_wrap_AuiDockUIPart_rect_get
, METH_O
, NULL
}, 
18517          { (char *)"delete_AuiDockUIPart", (PyCFunction
)_wrap_delete_AuiDockUIPart
, METH_O
, NULL
}, 
18518          { (char *)"AuiDockUIPart_swigregister", AuiDockUIPart_swigregister
, METH_VARARGS
, NULL
}, 
18519          { (char *)"AuiPaneButton_button_id_set", _wrap_AuiPaneButton_button_id_set
, METH_VARARGS
, NULL
}, 
18520          { (char *)"AuiPaneButton_button_id_get", (PyCFunction
)_wrap_AuiPaneButton_button_id_get
, METH_O
, NULL
}, 
18521          { (char *)"delete_AuiPaneButton", (PyCFunction
)_wrap_delete_AuiPaneButton
, METH_O
, NULL
}, 
18522          { (char *)"AuiPaneButton_swigregister", AuiPaneButton_swigregister
, METH_VARARGS
, NULL
}, 
18523          { (char *)"delete_AuiDockArt", (PyCFunction
)_wrap_delete_AuiDockArt
, METH_O
, NULL
}, 
18524          { (char *)"AuiDockArt_GetMetric", (PyCFunction
) _wrap_AuiDockArt_GetMetric
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18525          { (char *)"AuiDockArt_SetMetric", (PyCFunction
) _wrap_AuiDockArt_SetMetric
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18526          { (char *)"AuiDockArt_SetFont", (PyCFunction
) _wrap_AuiDockArt_SetFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18527          { (char *)"AuiDockArt_GetFont", (PyCFunction
) _wrap_AuiDockArt_GetFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18528          { (char *)"AuiDockArt_GetColour", (PyCFunction
) _wrap_AuiDockArt_GetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18529          { (char *)"AuiDockArt_SetColour", (PyCFunction
) _wrap_AuiDockArt_SetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18530          { (char *)"AuiDockArt_GetColor", (PyCFunction
) _wrap_AuiDockArt_GetColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18531          { (char *)"AuiDockArt_SetColor", (PyCFunction
) _wrap_AuiDockArt_SetColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18532          { (char *)"AuiDockArt_DrawSash", (PyCFunction
) _wrap_AuiDockArt_DrawSash
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18533          { (char *)"AuiDockArt_DrawBackground", (PyCFunction
) _wrap_AuiDockArt_DrawBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18534          { (char *)"AuiDockArt_DrawCaption", (PyCFunction
) _wrap_AuiDockArt_DrawCaption
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18535          { (char *)"AuiDockArt_DrawGripper", (PyCFunction
) _wrap_AuiDockArt_DrawGripper
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18536          { (char *)"AuiDockArt_DrawBorder", (PyCFunction
) _wrap_AuiDockArt_DrawBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18537          { (char *)"AuiDockArt_DrawPaneButton", (PyCFunction
) _wrap_AuiDockArt_DrawPaneButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18538          { (char *)"AuiDockArt_swigregister", AuiDockArt_swigregister
, METH_VARARGS
, NULL
}, 
18539          { (char *)"new_AuiDefaultDockArt", (PyCFunction
)_wrap_new_AuiDefaultDockArt
, METH_NOARGS
, NULL
}, 
18540          { (char *)"AuiDefaultDockArt_swigregister", AuiDefaultDockArt_swigregister
, METH_VARARGS
, NULL
}, 
18541          { (char *)"AuiDefaultDockArt_swiginit", AuiDefaultDockArt_swiginit
, METH_VARARGS
, NULL
}, 
18542          { (char *)"new_AuiFloatingFrame", (PyCFunction
) _wrap_new_AuiFloatingFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18543          { (char *)"delete_AuiFloatingFrame", (PyCFunction
)_wrap_delete_AuiFloatingFrame
, METH_O
, NULL
}, 
18544          { (char *)"AuiFloatingFrame_SetPaneWindow", (PyCFunction
) _wrap_AuiFloatingFrame_SetPaneWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18545          { (char *)"AuiFloatingFrame_GetOwnerManager", (PyCFunction
)_wrap_AuiFloatingFrame_GetOwnerManager
, METH_O
, NULL
}, 
18546          { (char *)"AuiFloatingFrame_swigregister", AuiFloatingFrame_swigregister
, METH_VARARGS
, NULL
}, 
18547          { (char *)"AuiFloatingFrame_swiginit", AuiFloatingFrame_swiginit
, METH_VARARGS
, NULL
}, 
18548          { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18549          { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18550          { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
}, 
18551          { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18552          { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
}, 
18553          { (char *)"AuiNotebookEvent_SetDragSource", (PyCFunction
) _wrap_AuiNotebookEvent_SetDragSource
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18554          { (char *)"AuiNotebookEvent_GetDragSource", (PyCFunction
)_wrap_AuiNotebookEvent_GetDragSource
, METH_O
, NULL
}, 
18555          { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
}, 
18556          { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
}, 
18557          { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
}, 
18558          { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
}, 
18559          { (char *)"AuiNotebookEvent_drag_source_set", _wrap_AuiNotebookEvent_drag_source_set
, METH_VARARGS
, NULL
}, 
18560          { (char *)"AuiNotebookEvent_drag_source_get", (PyCFunction
)_wrap_AuiNotebookEvent_drag_source_get
, METH_O
, NULL
}, 
18561          { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
}, 
18562          { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
}, 
18563          { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
}, 
18564          { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
}, 
18565          { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
}, 
18566          { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
}, 
18567          { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
}, 
18568          { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
}, 
18569          { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
}, 
18570          { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
}, 
18571          { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
}, 
18572          { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
}, 
18573          { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
}, 
18574          { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
}, 
18575          { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
}, 
18576          { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
}, 
18577          { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
}, 
18578          { (char *)"AuiTabContainerButton_location_set", _wrap_AuiTabContainerButton_location_set
, METH_VARARGS
, NULL
}, 
18579          { (char *)"AuiTabContainerButton_location_get", (PyCFunction
)_wrap_AuiTabContainerButton_location_get
, METH_O
, NULL
}, 
18580          { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
}, 
18581          { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
}, 
18582          { (char *)"AuiTabContainerButton_dis_bitmap_set", _wrap_AuiTabContainerButton_dis_bitmap_set
, METH_VARARGS
, NULL
}, 
18583          { (char *)"AuiTabContainerButton_dis_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_dis_bitmap_get
, METH_O
, NULL
}, 
18584          { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
}, 
18585          { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
}, 
18586          { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
}, 
18587          { (char *)"delete_AuiTabArt", (PyCFunction
)_wrap_delete_AuiTabArt
, METH_O
, NULL
}, 
18588          { (char *)"AuiTabArt_Clone", (PyCFunction
)_wrap_AuiTabArt_Clone
, METH_O
, NULL
}, 
18589          { (char *)"AuiTabArt_SetFlags", (PyCFunction
) _wrap_AuiTabArt_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18590          { (char *)"AuiTabArt_SetSizingInfo", (PyCFunction
) _wrap_AuiTabArt_SetSizingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18591          { (char *)"AuiTabArt_SetNormalFont", (PyCFunction
) _wrap_AuiTabArt_SetNormalFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18592          { (char *)"AuiTabArt_SetSelectedFont", (PyCFunction
) _wrap_AuiTabArt_SetSelectedFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18593          { (char *)"AuiTabArt_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabArt_SetMeasuringFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18594          { (char *)"AuiTabArt_DrawBackground", (PyCFunction
) _wrap_AuiTabArt_DrawBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18595          { (char *)"AuiTabArt_DrawTab", (PyCFunction
) _wrap_AuiTabArt_DrawTab
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18596          { (char *)"AuiTabArt_DrawButton", (PyCFunction
) _wrap_AuiTabArt_DrawButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18597          { (char *)"AuiTabArt_GetTabSize", (PyCFunction
) _wrap_AuiTabArt_GetTabSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18598          { (char *)"AuiTabArt_ShowDropDown", (PyCFunction
) _wrap_AuiTabArt_ShowDropDown
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18599          { (char *)"AuiTabArt_GetIndentSize", (PyCFunction
)_wrap_AuiTabArt_GetIndentSize
, METH_O
, NULL
}, 
18600          { (char *)"AuiTabArt_GetBestTabCtrlSize", (PyCFunction
) _wrap_AuiTabArt_GetBestTabCtrlSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18601          { (char *)"AuiTabArt_swigregister", AuiTabArt_swigregister
, METH_VARARGS
, NULL
}, 
18602          { (char *)"new_AuiDefaultTabArt", (PyCFunction
)_wrap_new_AuiDefaultTabArt
, METH_NOARGS
, NULL
}, 
18603          { (char *)"delete_AuiDefaultTabArt", (PyCFunction
)_wrap_delete_AuiDefaultTabArt
, METH_O
, NULL
}, 
18604          { (char *)"AuiDefaultTabArt_swigregister", AuiDefaultTabArt_swigregister
, METH_VARARGS
, NULL
}, 
18605          { (char *)"AuiDefaultTabArt_swiginit", AuiDefaultTabArt_swiginit
, METH_VARARGS
, NULL
}, 
18606          { (char *)"new_AuiSimpleTabArt", (PyCFunction
)_wrap_new_AuiSimpleTabArt
, METH_NOARGS
, NULL
}, 
18607          { (char *)"delete_AuiSimpleTabArt", (PyCFunction
)_wrap_delete_AuiSimpleTabArt
, METH_O
, NULL
}, 
18608          { (char *)"AuiSimpleTabArt_swigregister", AuiSimpleTabArt_swigregister
, METH_VARARGS
, NULL
}, 
18609          { (char *)"AuiSimpleTabArt_swiginit", AuiSimpleTabArt_swiginit
, METH_VARARGS
, NULL
}, 
18610          { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
}, 
18611          { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
}, 
18612          { (char *)"AuiTabContainer_SetArtProvider", (PyCFunction
) _wrap_AuiTabContainer_SetArtProvider
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18613          { (char *)"AuiTabContainer_GetArtProvider", (PyCFunction
)_wrap_AuiTabContainer_GetArtProvider
, METH_O
, NULL
}, 
18614          { (char *)"AuiTabContainer_SetFlags", (PyCFunction
) _wrap_AuiTabContainer_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18615          { (char *)"AuiTabContainer_GetFlags", (PyCFunction
)_wrap_AuiTabContainer_GetFlags
, METH_O
, NULL
}, 
18616          { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18617          { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18618          { (char *)"AuiTabContainer_MovePage", (PyCFunction
) _wrap_AuiTabContainer_MovePage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18619          { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18620          { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
}, 
18621          { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
}, 
18622          { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
}, 
18623          { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18624          { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18625          { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18626          { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18627          { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
}, 
18628          { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18629          { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
}, 
18630          { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18631          { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18632          { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18633          { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
}, 
18634          { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18635          { (char *)"AuiTabContainer_RemoveButton", (PyCFunction
) _wrap_AuiTabContainer_RemoveButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18636          { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18637          { (char *)"AuiTabContainer_GetTabOffset", (PyCFunction
)_wrap_AuiTabContainer_GetTabOffset
, METH_O
, NULL
}, 
18638          { (char *)"AuiTabContainer_SetTabOffset", (PyCFunction
) _wrap_AuiTabContainer_SetTabOffset
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18639          { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
}, 
18640          { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
}, 
18641          { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18642          { (char *)"delete_AuiTabCtrl", (PyCFunction
)_wrap_delete_AuiTabCtrl
, METH_O
, NULL
}, 
18643          { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
}, 
18644          { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
}, 
18645          { (char *)"new_PreAuiNotebook", (PyCFunction
)_wrap_new_PreAuiNotebook
, METH_NOARGS
, NULL
}, 
18646          { (char *)"new_AuiNotebook", (PyCFunction
) _wrap_new_AuiNotebook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18647          { (char *)"delete_AuiNotebook", (PyCFunction
)_wrap_delete_AuiNotebook
, METH_O
, NULL
}, 
18648          { (char *)"AuiNotebook_Create", (PyCFunction
) _wrap_AuiNotebook_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18649          { (char *)"AuiNotebook_SetArtProvider", (PyCFunction
) _wrap_AuiNotebook_SetArtProvider
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18650          { (char *)"AuiNotebook_GetArtProvider", (PyCFunction
)_wrap_AuiNotebook_GetArtProvider
, METH_O
, NULL
}, 
18651          { (char *)"AuiNotebook_SetUniformBitmapSize", (PyCFunction
) _wrap_AuiNotebook_SetUniformBitmapSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18652          { (char *)"AuiNotebook_SetTabCtrlHeight", (PyCFunction
) _wrap_AuiNotebook_SetTabCtrlHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18653          { (char *)"AuiNotebook_AddPage", (PyCFunction
) _wrap_AuiNotebook_AddPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18654          { (char *)"AuiNotebook_InsertPage", (PyCFunction
) _wrap_AuiNotebook_InsertPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18655          { (char *)"AuiNotebook_DeletePage", (PyCFunction
) _wrap_AuiNotebook_DeletePage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18656          { (char *)"AuiNotebook_RemovePage", (PyCFunction
) _wrap_AuiNotebook_RemovePage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18657          { (char *)"AuiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiNotebook_GetPageCount
, METH_O
, NULL
}, 
18658          { (char *)"AuiNotebook_GetPage", (PyCFunction
) _wrap_AuiNotebook_GetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18659          { (char *)"AuiNotebook_GetPageIndex", (PyCFunction
) _wrap_AuiNotebook_GetPageIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18660          { (char *)"AuiNotebook_SetPageText", (PyCFunction
) _wrap_AuiNotebook_SetPageText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18661          { (char *)"AuiNotebook_GetPageText", (PyCFunction
) _wrap_AuiNotebook_GetPageText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18662          { (char *)"AuiNotebook_SetPageBitmap", (PyCFunction
) _wrap_AuiNotebook_SetPageBitmap
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18663          { (char *)"AuiNotebook_GetPageBitmap", (PyCFunction
) _wrap_AuiNotebook_GetPageBitmap
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18664          { (char *)"AuiNotebook_SetSelection", (PyCFunction
) _wrap_AuiNotebook_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18665          { (char *)"AuiNotebook_GetSelection", (PyCFunction
)_wrap_AuiNotebook_GetSelection
, METH_O
, NULL
}, 
18666          { (char *)"AuiNotebook_Split", (PyCFunction
) _wrap_AuiNotebook_Split
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18667          { (char *)"AuiNotebook_GetAuiManager", (PyCFunction
)_wrap_AuiNotebook_GetAuiManager
, METH_O
, NULL
}, 
18668          { (char *)"AuiNotebook_swigregister", AuiNotebook_swigregister
, METH_VARARGS
, NULL
}, 
18669          { (char *)"AuiNotebook_swiginit", AuiNotebook_swiginit
, METH_VARARGS
, NULL
}, 
18670          { (char *)"new_PreAuiMDIParentFrame", (PyCFunction
)_wrap_new_PreAuiMDIParentFrame
, METH_NOARGS
, NULL
}, 
18671          { (char *)"new_AuiMDIParentFrame", (PyCFunction
) _wrap_new_AuiMDIParentFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18672          { (char *)"AuiMDIParentFrame_Create", (PyCFunction
) _wrap_AuiMDIParentFrame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18673          { (char *)"AuiMDIParentFrame_SetArtProvider", (PyCFunction
) _wrap_AuiMDIParentFrame_SetArtProvider
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18674          { (char *)"AuiMDIParentFrame_GetArtProvider", (PyCFunction
)_wrap_AuiMDIParentFrame_GetArtProvider
, METH_O
, NULL
}, 
18675          { (char *)"AuiMDIParentFrame_GetWindowMenu", (PyCFunction
)_wrap_AuiMDIParentFrame_GetWindowMenu
, METH_O
, NULL
}, 
18676          { (char *)"AuiMDIParentFrame_SetWindowMenu", (PyCFunction
) _wrap_AuiMDIParentFrame_SetWindowMenu
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18677          { (char *)"AuiMDIParentFrame_SetChildMenuBar", (PyCFunction
) _wrap_AuiMDIParentFrame_SetChildMenuBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18678          { (char *)"AuiMDIParentFrame_ProcessEvent", (PyCFunction
) _wrap_AuiMDIParentFrame_ProcessEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18679          { (char *)"AuiMDIParentFrame_SetActiveChild", (PyCFunction
) _wrap_AuiMDIParentFrame_SetActiveChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18680          { (char *)"AuiMDIParentFrame_OnCreateClient", (PyCFunction
)_wrap_AuiMDIParentFrame_OnCreateClient
, METH_O
, NULL
}, 
18681          { (char *)"AuiMDIParentFrame_Cascade", (PyCFunction
)_wrap_AuiMDIParentFrame_Cascade
, METH_O
, NULL
}, 
18682          { (char *)"AuiMDIParentFrame_Tile", (PyCFunction
) _wrap_AuiMDIParentFrame_Tile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18683          { (char *)"AuiMDIParentFrame_ArrangeIcons", (PyCFunction
)_wrap_AuiMDIParentFrame_ArrangeIcons
, METH_O
, NULL
}, 
18684          { (char *)"AuiMDIParentFrame_ActivateNext", (PyCFunction
)_wrap_AuiMDIParentFrame_ActivateNext
, METH_O
, NULL
}, 
18685          { (char *)"AuiMDIParentFrame_ActivatePrevious", (PyCFunction
)_wrap_AuiMDIParentFrame_ActivatePrevious
, METH_O
, NULL
}, 
18686          { (char *)"AuiMDIParentFrame_GetNotebook", (PyCFunction
)_wrap_AuiMDIParentFrame_GetNotebook
, METH_O
, NULL
}, 
18687          { (char *)"AuiMDIParentFrame_GetActiveChild", (PyCFunction
)_wrap_AuiMDIParentFrame_GetActiveChild
, METH_O
, NULL
}, 
18688          { (char *)"AuiMDIParentFrame_GetClientWindow", (PyCFunction
)_wrap_AuiMDIParentFrame_GetClientWindow
, METH_O
, NULL
}, 
18689          { (char *)"AuiMDIParentFrame_swigregister", AuiMDIParentFrame_swigregister
, METH_VARARGS
, NULL
}, 
18690          { (char *)"AuiMDIParentFrame_swiginit", AuiMDIParentFrame_swiginit
, METH_VARARGS
, NULL
}, 
18691          { (char *)"new_PreAuiMDIChildFrame", (PyCFunction
)_wrap_new_PreAuiMDIChildFrame
, METH_NOARGS
, NULL
}, 
18692          { (char *)"new_AuiMDIChildFrame", (PyCFunction
) _wrap_new_AuiMDIChildFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18693          { (char *)"AuiMDIChildFrame_Create", (PyCFunction
) _wrap_AuiMDIChildFrame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18694          { (char *)"AuiMDIChildFrame_SetMenuBar", (PyCFunction
) _wrap_AuiMDIChildFrame_SetMenuBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18695          { (char *)"AuiMDIChildFrame_GetMenuBar", (PyCFunction
)_wrap_AuiMDIChildFrame_GetMenuBar
, METH_O
, NULL
}, 
18696          { (char *)"AuiMDIChildFrame_SetTitle", (PyCFunction
) _wrap_AuiMDIChildFrame_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18697          { (char *)"AuiMDIChildFrame_GetTitle", (PyCFunction
)_wrap_AuiMDIChildFrame_GetTitle
, METH_O
, NULL
}, 
18698          { (char *)"AuiMDIChildFrame_SetIcons", (PyCFunction
) _wrap_AuiMDIChildFrame_SetIcons
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18699          { (char *)"AuiMDIChildFrame_GetIcons", (PyCFunction
)_wrap_AuiMDIChildFrame_GetIcons
, METH_O
, NULL
}, 
18700          { (char *)"AuiMDIChildFrame_SetIcon", (PyCFunction
) _wrap_AuiMDIChildFrame_SetIcon
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18701          { (char *)"AuiMDIChildFrame_GetIcon", (PyCFunction
)_wrap_AuiMDIChildFrame_GetIcon
, METH_O
, NULL
}, 
18702          { (char *)"AuiMDIChildFrame_Activate", (PyCFunction
)_wrap_AuiMDIChildFrame_Activate
, METH_O
, NULL
}, 
18703          { (char *)"AuiMDIChildFrame_DoSetSizeHints", (PyCFunction
) _wrap_AuiMDIChildFrame_DoSetSizeHints
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18704          { (char *)"AuiMDIChildFrame_Maximize", (PyCFunction
) _wrap_AuiMDIChildFrame_Maximize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18705          { (char *)"AuiMDIChildFrame_Restore", (PyCFunction
)_wrap_AuiMDIChildFrame_Restore
, METH_O
, NULL
}, 
18706          { (char *)"AuiMDIChildFrame_Iconize", (PyCFunction
) _wrap_AuiMDIChildFrame_Iconize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18707          { (char *)"AuiMDIChildFrame_IsMaximized", (PyCFunction
)_wrap_AuiMDIChildFrame_IsMaximized
, METH_O
, NULL
}, 
18708          { (char *)"AuiMDIChildFrame_IsIconized", (PyCFunction
)_wrap_AuiMDIChildFrame_IsIconized
, METH_O
, NULL
}, 
18709          { (char *)"AuiMDIChildFrame_ShowFullScreen", (PyCFunction
) _wrap_AuiMDIChildFrame_ShowFullScreen
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18710          { (char *)"AuiMDIChildFrame_IsFullScreen", (PyCFunction
)_wrap_AuiMDIChildFrame_IsFullScreen
, METH_O
, NULL
}, 
18711          { (char *)"AuiMDIChildFrame_OnMenuHighlight", (PyCFunction
) _wrap_AuiMDIChildFrame_OnMenuHighlight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18712          { (char *)"AuiMDIChildFrame_OnActivate", (PyCFunction
) _wrap_AuiMDIChildFrame_OnActivate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18713          { (char *)"AuiMDIChildFrame_OnCloseWindow", (PyCFunction
) _wrap_AuiMDIChildFrame_OnCloseWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18714          { (char *)"AuiMDIChildFrame_SetMDIParentFrame", (PyCFunction
) _wrap_AuiMDIChildFrame_SetMDIParentFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18715          { (char *)"AuiMDIChildFrame_GetMDIParentFrame", (PyCFunction
)_wrap_AuiMDIChildFrame_GetMDIParentFrame
, METH_O
, NULL
}, 
18716          { (char *)"AuiMDIChildFrame_ApplyMDIChildFrameRect", (PyCFunction
)_wrap_AuiMDIChildFrame_ApplyMDIChildFrameRect
, METH_O
, NULL
}, 
18717          { (char *)"AuiMDIChildFrame_DoShow", (PyCFunction
) _wrap_AuiMDIChildFrame_DoShow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18718          { (char *)"AuiMDIChildFrame_swigregister", AuiMDIChildFrame_swigregister
, METH_VARARGS
, NULL
}, 
18719          { (char *)"AuiMDIChildFrame_swiginit", AuiMDIChildFrame_swiginit
, METH_VARARGS
, NULL
}, 
18720          { (char *)"new_PreAuiMDIClientWindow", (PyCFunction
)_wrap_new_PreAuiMDIClientWindow
, METH_NOARGS
, NULL
}, 
18721          { (char *)"new_AuiMDIClientWindow", (PyCFunction
) _wrap_new_AuiMDIClientWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18722          { (char *)"AuiMDIClientWindow_CreateClient", (PyCFunction
) _wrap_AuiMDIClientWindow_CreateClient
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18723          { (char *)"AuiMDIClientWindow_SetSelection", (PyCFunction
) _wrap_AuiMDIClientWindow_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18724          { (char *)"AuiMDIClientWindow_swigregister", AuiMDIClientWindow_swigregister
, METH_VARARGS
, NULL
}, 
18725          { (char *)"AuiMDIClientWindow_swiginit", AuiMDIClientWindow_swiginit
, METH_VARARGS
, NULL
}, 
18726          { (char *)"new_PyAuiDockArt", (PyCFunction
)_wrap_new_PyAuiDockArt
, METH_NOARGS
, NULL
}, 
18727          { (char *)"PyAuiDockArt__setCallbackInfo", (PyCFunction
) _wrap_PyAuiDockArt__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18728          { (char *)"PyAuiDockArt_swigregister", PyAuiDockArt_swigregister
, METH_VARARGS
, NULL
}, 
18729          { (char *)"PyAuiDockArt_swiginit", PyAuiDockArt_swiginit
, METH_VARARGS
, NULL
}, 
18730          { (char *)"new_PyAuiTabArt", (PyCFunction
)_wrap_new_PyAuiTabArt
, METH_NOARGS
, NULL
}, 
18731          { (char *)"PyAuiTabArt__setCallbackInfo", (PyCFunction
) _wrap_PyAuiTabArt__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
18732          { (char *)"PyAuiTabArt_swigregister", PyAuiTabArt_swigregister
, METH_VARARGS
, NULL
}, 
18733          { (char *)"PyAuiTabArt_swiginit", PyAuiTabArt_swiginit
, METH_VARARGS
, NULL
}, 
18734          { NULL
, NULL
, 0, NULL 
} 
18738 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ 
18740 static void *_p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt(void *x
) { 
18741     return (void *)((wxAuiDefaultTabArt 
*)  ((wxPyAuiTabArt 
*) x
)); 
18743 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) { 
18744     return (void *)((wxSizerItem 
*)  ((wxGBSizerItem 
*) x
)); 
18746 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) { 
18747     return (void *)((wxSizer 
*)  ((wxBoxSizer 
*) x
)); 
18749 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) { 
18750     return (void *)((wxSizer 
*) (wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
18752 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) { 
18753     return (void *)((wxSizer 
*) (wxBoxSizer 
*) ((wxStdDialogButtonSizer 
*) x
)); 
18755 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) { 
18756     return (void *)((wxSizer 
*) (wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
18758 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) { 
18759     return (void *)((wxSizer 
*)  ((wxGridSizer 
*) x
)); 
18761 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) { 
18762     return (void *)((wxSizer 
*) (wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
18764 static void *_p_wxPySizerTo_p_wxSizer(void *x
) { 
18765     return (void *)((wxSizer 
*)  ((wxPySizer 
*) x
)); 
18767 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) { 
18768     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
18770 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) { 
18771     return (void *)((wxEvent 
*)  ((wxMenuEvent 
*) x
)); 
18773 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) { 
18774     return (void *)((wxEvent 
*)  ((wxCloseEvent 
*) x
)); 
18776 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) { 
18777     return (void *)((wxEvent 
*)  ((wxMouseEvent 
*) x
)); 
18779 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) { 
18780     return (void *)((wxEvent 
*)  ((wxEraseEvent 
*) x
)); 
18782 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) { 
18783     return (void *)((wxEvent 
*)  ((wxSetCursorEvent 
*) x
)); 
18785 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) { 
18786     return (void *)((wxEvent 
*) (wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
18788 static void *_p_wxAuiManagerEventTo_p_wxEvent(void *x
) { 
18789     return (void *)((wxEvent 
*)  ((wxAuiManagerEvent 
*) x
)); 
18791 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) { 
18792     return (void *)((wxEvent 
*)  ((wxInitDialogEvent 
*) x
)); 
18794 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) { 
18795     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
18797 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) { 
18798     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
18800 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) { 
18801     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
18803 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) { 
18804     return (void *)((wxEvent 
*)  ((wxMouseCaptureLostEvent 
*) x
)); 
18806 static void *_p_wxPyEventTo_p_wxEvent(void *x
) { 
18807     return (void *)((wxEvent 
*)  ((wxPyEvent 
*) x
)); 
18809 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) { 
18810     return (void *)((wxEvent 
*)  ((wxCalculateLayoutEvent 
*) x
)); 
18812 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) { 
18813     return (void *)((wxEvent 
*) (wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxAuiNotebookEvent 
*) x
)); 
18815 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) { 
18816     return (void *)((wxEvent 
*)  ((wxIdleEvent 
*) x
)); 
18818 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) { 
18819     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
18821 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) { 
18822     return (void *)((wxEvent 
*)  ((wxQueryNewPaletteEvent 
*) x
)); 
18824 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) { 
18825     return (void *)((wxEvent 
*)  ((wxMaximizeEvent 
*) x
)); 
18827 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) { 
18828     return (void *)((wxEvent 
*)  ((wxIconizeEvent 
*) x
)); 
18830 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) { 
18831     return (void *)((wxEvent 
*)  ((wxActivateEvent 
*) x
)); 
18833 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) { 
18834     return (void *)((wxEvent 
*)  ((wxSizeEvent 
*) x
)); 
18836 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) { 
18837     return (void *)((wxEvent 
*)  ((wxMoveEvent 
*) x
)); 
18839 static void *_p_wxDateEventTo_p_wxEvent(void *x
) { 
18840     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
18842 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) { 
18843     return (void *)((wxEvent 
*)  ((wxPaintEvent 
*) x
)); 
18845 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) { 
18846     return (void *)((wxEvent 
*)  ((wxNcPaintEvent 
*) x
)); 
18848 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) { 
18849     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxClipboardTextEvent 
*) x
)); 
18851 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) { 
18852     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
18854 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) { 
18855     return (void *)((wxEvent 
*)  ((wxPaletteChangedEvent 
*) x
)); 
18857 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) { 
18858     return (void *)((wxEvent 
*)  ((wxDisplayChangedEvent 
*) x
)); 
18860 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) { 
18861     return (void *)((wxEvent 
*)  ((wxMouseCaptureChangedEvent 
*) x
)); 
18863 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) { 
18864     return (void *)((wxEvent 
*)  ((wxSysColourChangedEvent 
*) x
)); 
18866 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) { 
18867     return (void *)((wxEvent 
*)  ((wxDropFilesEvent 
*) x
)); 
18869 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) { 
18870     return (void *)((wxEvent 
*)  ((wxFocusEvent 
*) x
)); 
18872 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) { 
18873     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
18875 static void *_p_wxSashEventTo_p_wxEvent(void *x
) { 
18876     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
18878 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) { 
18879     return (void *)((wxEvent 
*)  ((wxQueryLayoutInfoEvent 
*) x
)); 
18881 static void *_p_wxShowEventTo_p_wxEvent(void *x
) { 
18882     return (void *)((wxEvent 
*)  ((wxShowEvent 
*) x
)); 
18884 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) { 
18885     return (void *)((wxEvent 
*)  ((wxCommandEvent 
*) x
)); 
18887 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) { 
18888     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
18890 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) { 
18891     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
18893 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) { 
18894     return (void *)((wxEvent 
*)  ((wxNavigationKeyEvent 
*) x
)); 
18896 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) { 
18897     return (void *)((wxEvent 
*)  ((wxKeyEvent 
*) x
)); 
18899 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) { 
18900     return (void *)((wxEvent 
*)  ((wxScrollWinEvent 
*) x
)); 
18902 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) { 
18903     return (void *)((wxEvent 
*)  ((wxTaskBarIconEvent 
*) x
)); 
18905 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) { 
18906     return (void *)((wxAuiTabContainer 
*)  ((wxAuiTabCtrl 
*) x
)); 
18908 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) { 
18909     return (void *)((wxControl 
*)  ((wxControlWithItems 
*) x
)); 
18911 static void *_p_wxAuiMDIClientWindowTo_p_wxControl(void *x
) { 
18912     return (void *)((wxControl 
*) (wxAuiNotebook 
*) ((wxAuiMDIClientWindow 
*) x
)); 
18914 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) { 
18915     return (void *)((wxControl 
*)  ((wxAuiTabCtrl 
*) x
)); 
18917 static void *_p_wxAuiNotebookTo_p_wxControl(void *x
) { 
18918     return (void *)((wxControl 
*)  ((wxAuiNotebook 
*) x
)); 
18920 static void *_p_wxAuiMDIClientWindowTo_p_wxAuiNotebook(void *x
) { 
18921     return (void *)((wxAuiNotebook 
*)  ((wxAuiMDIClientWindow 
*) x
)); 
18923 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) { 
18924     return (void *)((wxNotifyEvent 
*)  ((wxSplitterEvent 
*) x
)); 
18926 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) { 
18927     return (void *)((wxNotifyEvent 
*)  ((wxAuiNotebookEvent 
*) x
)); 
18929 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) { 
18930     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
18932 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) { 
18933     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
18935 static void *_p_wxEventBlockerTo_p_wxEvtHandler(void *x
) { 
18936     return (void *)((wxEvtHandler 
*)  ((wxEventBlocker 
*) x
)); 
18938 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) { 
18939     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
18941 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) { 
18942     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMenuBar 
*) x
)); 
18944 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) { 
18945     return (void *)((wxEvtHandler 
*)  ((wxValidator 
*) x
)); 
18947 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) { 
18948     return (void *)((wxEvtHandler 
*) (wxValidator 
*) ((wxPyValidator 
*) x
)); 
18950 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) { 
18951     return (void *)((wxEvtHandler 
*)  ((wxMenu 
*) x
)); 
18953 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) { 
18954     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
18956 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) { 
18957     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
18959 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) { 
18960     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
18962 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) { 
18963     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
18965 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) { 
18966     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
18968 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) { 
18969     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxNumberEntryDialog 
*) x
)); 
18971 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) { 
18972     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
18974 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) { 
18975     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
18977 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) { 
18978     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
18980 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) { 
18981     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPanel 
*) x
)); 
18983 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) { 
18984     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxStatusBar 
*) x
)); 
18986 static void *_p_wxPyHVScrolledWindowTo_p_wxEvtHandler(void *x
) { 
18987     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyHVScrolledWindow 
*) x
)); 
18989 static void *_p_wxPyHScrolledWindowTo_p_wxEvtHandler(void *x
) { 
18990     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyHScrolledWindow 
*) x
)); 
18992 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) { 
18993     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
18995 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) { 
18996     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
18998 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) { 
18999     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
19001 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) { 
19002     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPopupWindow 
*) x
)); 
19004 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) { 
19005     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
19007 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) { 
19008     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSashWindow 
*) x
)); 
19010 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) { 
19011     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
19013 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) { 
19014     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
19016 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) { 
19017     return (void *)((wxEvtHandler 
*)  ((wxWindow 
*) x
)); 
19019 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) { 
19020     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
19022 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) { 
19023     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
19025 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) { 
19026     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
19028 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) { 
19029     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
19031 static void *_p_wxAuiMDIClientWindowTo_p_wxEvtHandler(void *x
) { 
19032     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*)(wxAuiNotebook 
*) ((wxAuiMDIClientWindow 
*) x
)); 
19034 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) { 
19035     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxControl 
*) x
)); 
19037 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) { 
19038     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
19040 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) { 
19041     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
19043 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) { 
19044     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
19046 static void *_p_wxAuiMDIChildFrameTo_p_wxEvtHandler(void *x
) { 
19047     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxAuiMDIChildFrame 
*) x
)); 
19049 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) { 
19050     return (void *)((wxEvtHandler 
*)  ((wxPyApp 
*) x
)); 
19052 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) { 
19053     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
19055 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) { 
19056     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPyWindow 
*) x
)); 
19058 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) { 
19059     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
19061 static void *_p_wxSimpleHtmlListBoxTo_p_wxEvtHandler(void *x
) { 
19062     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*)(wxPyHtmlListBox 
*) ((wxSimpleHtmlListBox 
*) x
)); 
19064 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) { 
19065     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
19067 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) { 
19068     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
19070 static void *_p_wxAuiNotebookTo_p_wxEvtHandler(void *x
) { 
19071     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxAuiNotebook 
*) x
)); 
19073 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
19074     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
19076 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
19077     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
19079 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) { 
19080     return (void *)((wxEvtHandler 
*)  ((wxPyTaskBarIcon 
*) x
)); 
19082 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) { 
19083     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxAuiTabCtrl 
*) x
)); 
19085 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) { 
19086     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
19088 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) { 
19089     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
19091 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) { 
19092     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
19094 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) { 
19095     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
19097 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) { 
19098     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
19100 static void *_p_wxAuiFloatingFrameTo_p_wxEvtHandler(void *x
) { 
19101     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxMiniFrame 
*) ((wxAuiFloatingFrame 
*) x
)); 
19103 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) { 
19104     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
19106 static void *_p_wxAuiMDIParentFrameTo_p_wxEvtHandler(void *x
) { 
19107     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxAuiMDIParentFrame 
*) x
)); 
19109 static void *_p_wxAuiManagerTo_p_wxEvtHandler(void *x
) { 
19110     return (void *)((wxEvtHandler 
*)  ((wxAuiManager 
*) x
)); 
19112 static void *_p_wxAuiFloatingFrameTo_p_wxMiniFrame(void *x
) { 
19113     return (void *)((wxMiniFrame 
*)  ((wxAuiFloatingFrame 
*) x
)); 
19115 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) { 
19116     return (void *)((wxFrame 
*)  ((wxMDIChildFrame 
*) x
)); 
19118 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) { 
19119     return (void *)((wxFrame 
*)  ((wxProgressDialog 
*) x
)); 
19121 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) { 
19122     return (void *)((wxFrame 
*)  ((wxPreviewFrame 
*) x
)); 
19124 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) { 
19125     return (void *)((wxFrame 
*) (wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
19127 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) { 
19128     return (void *)((wxFrame 
*)  ((wxMiniFrame 
*) x
)); 
19130 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) { 
19131     return (void *)((wxFrame 
*)  ((wxSplashScreen 
*) x
)); 
19133 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) { 
19134     return (void *)((wxFrame 
*)  ((wxMDIParentFrame 
*) x
)); 
19136 static void *_p_wxAuiMDIParentFrameTo_p_wxFrame(void *x
) { 
19137     return (void *)((wxFrame 
*)  ((wxAuiMDIParentFrame 
*) x
)); 
19139 static void *_p_wxAuiFloatingFrameTo_p_wxFrame(void *x
) { 
19140     return (void *)((wxFrame 
*) (wxMiniFrame 
*) ((wxAuiFloatingFrame 
*) x
)); 
19142 static void *_p_wxAuiDefaultTabArtTo_p_wxAuiTabArt(void *x
) { 
19143     return (void *)((wxAuiTabArt 
*)  ((wxAuiDefaultTabArt 
*) x
)); 
19145 static void *_p_wxAuiSimpleTabArtTo_p_wxAuiTabArt(void *x
) { 
19146     return (void *)((wxAuiTabArt 
*)  ((wxAuiSimpleTabArt 
*) x
)); 
19148 static void *_p_wxPyAuiTabArtTo_p_wxAuiTabArt(void *x
) { 
19149     return (void *)((wxAuiTabArt 
*) (wxAuiDefaultTabArt 
*) ((wxPyAuiTabArt 
*) x
)); 
19151 static void *_p_wxAuiDefaultDockArtTo_p_wxAuiDockArt(void *x
) { 
19152     return (void *)((wxAuiDockArt 
*)  ((wxAuiDefaultDockArt 
*) x
)); 
19154 static void *_p_wxPyAuiDockArtTo_p_wxAuiDockArt(void *x
) { 
19155     return (void *)((wxAuiDockArt 
*) (wxAuiDefaultDockArt 
*) ((wxPyAuiDockArt 
*) x
)); 
19157 static void *_p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt(void *x
) { 
19158     return (void *)((wxAuiDefaultDockArt 
*)  ((wxPyAuiDockArt 
*) x
)); 
19160 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) { 
19161     return (void *)((wxObject 
*)  ((wxLayoutConstraints 
*) x
)); 
19163 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) { 
19164     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryLayoutInfoEvent 
*) x
)); 
19166 static void *_p_wxEventBlockerTo_p_wxObject(void *x
) { 
19167     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxEventBlocker 
*) x
)); 
19169 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) { 
19170     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
19172 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) { 
19173     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
19175 static void *_p_wxSizerItemTo_p_wxObject(void *x
) { 
19176     return (void *)((wxObject 
*)  ((wxSizerItem 
*) x
)); 
19178 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) { 
19179     return (void *)((wxObject 
*) (wxSizerItem 
*) ((wxGBSizerItem 
*) x
)); 
19181 static void *_p_wxScrollEventTo_p_wxObject(void *x
) { 
19182     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
19184 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) { 
19185     return (void *)((wxObject 
*)  ((wxIndividualLayoutConstraint 
*) x
)); 
19187 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) { 
19188     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
19190 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) { 
19191     return (void *)((wxObject 
*) (wxSizer 
*) ((wxBoxSizer 
*) x
)); 
19193 static void *_p_wxSizerTo_p_wxObject(void *x
) { 
19194     return (void *)((wxObject 
*)  ((wxSizer 
*) x
)); 
19196 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) { 
19197     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
19199 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) { 
19200     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
19202 static void *_p_wxPyPanelTo_p_wxObject(void *x
) { 
19203     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
19205 static void *_p_wxEventTo_p_wxObject(void *x
) { 
19206     return (void *)((wxObject 
*)  ((wxEvent 
*) x
)); 
19208 static void *_p_wxFontDataTo_p_wxObject(void *x
) { 
19209     return (void *)((wxObject 
*)  ((wxFontData 
*) x
)); 
19211 static void *_p_wxPrintDataTo_p_wxObject(void *x
) { 
19212     return (void *)((wxObject 
*)  ((wxPrintData 
*) x
)); 
19214 static void *_p_wxGridSizerTo_p_wxObject(void *x
) { 
19215     return (void *)((wxObject 
*) (wxSizer 
*) ((wxGridSizer 
*) x
)); 
19217 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) { 
19218     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
19220 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) { 
19221     return (void *)((wxObject 
*) (wxEvent 
*) ((wxInitDialogEvent 
*) x
)); 
19223 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) { 
19224     return (void *)((wxObject 
*)  ((wxLayoutAlgorithm 
*) x
)); 
19226 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) { 
19227     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyTaskBarIcon 
*) x
)); 
19229 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) { 
19230     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
19232 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) { 
19233     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxAuiTabCtrl 
*) x
)); 
19235 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) { 
19236     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxClipboardTextEvent 
*) x
)); 
19238 static void *_p_wxPaintEventTo_p_wxObject(void *x
) { 
19239     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaintEvent 
*) x
)); 
19241 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) { 
19242     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNcPaintEvent 
*) x
)); 
19244 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) { 
19245     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaletteChangedEvent 
*) x
)); 
19247 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) { 
19248     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDisplayChangedEvent 
*) x
)); 
19250 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) { 
19251     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureChangedEvent 
*) x
)); 
19253 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) { 
19254     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSysColourChangedEvent 
*) x
)); 
19256 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) { 
19257     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
19259 static void *_p_wxControlTo_p_wxObject(void *x
) { 
19260     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxControl 
*) x
)); 
19262 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) { 
19263     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSetCursorEvent 
*) x
)); 
19265 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) { 
19266     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
19268 static void *_p_wxAuiManagerEventTo_p_wxObject(void *x
) { 
19269     return (void *)((wxObject 
*) (wxEvent 
*) ((wxAuiManagerEvent 
*) x
)); 
19271 static void *_p_wxFSFileTo_p_wxObject(void *x
) { 
19272     return (void *)((wxObject 
*)  ((wxFSFile 
*) x
)); 
19274 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) { 
19275     return (void *)((wxObject 
*)  ((wxFindReplaceData 
*) x
)); 
19277 static void *_p_wxAuiFloatingFrameTo_p_wxObject(void *x
) { 
19278     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxMiniFrame 
*) ((wxAuiFloatingFrame 
*) x
)); 
19280 static void *_p_wxPySizerTo_p_wxObject(void *x
) { 
19281     return (void *)((wxObject 
*) (wxSizer 
*) ((wxPySizer 
*) x
)); 
19283 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) { 
19284     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
19286 static void *_p_wxAuiNotebookTo_p_wxObject(void *x
) { 
19287     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxAuiNotebook 
*) x
)); 
19289 static void *_p_wxAuiMDIChildFrameTo_p_wxObject(void *x
) { 
19290     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxAuiMDIChildFrame 
*) x
)); 
19292 static void *_p_wxColourDataTo_p_wxObject(void *x
) { 
19293     return (void *)((wxObject 
*)  ((wxColourData 
*) x
)); 
19295 static void *_p_wxPyEventTo_p_wxObject(void *x
) { 
19296     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPyEvent 
*) x
)); 
19298 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) { 
19299     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
19301 static void *_p_wxPyWindowTo_p_wxObject(void *x
) { 
19302     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPyWindow 
*) x
)); 
19304 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) { 
19305     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
19307 static void *_p_wxFileDialogTo_p_wxObject(void *x
) { 
19308     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
19310 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) { 
19311     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
19313 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) { 
19314     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
19316 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) { 
19317     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
19319 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) { 
19320     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
19322 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) { 
19323     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxNumberEntryDialog 
*) x
)); 
19325 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) { 
19326     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
19328 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) { 
19329     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
19331 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) { 
19332     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
19334 static void *_p_wxShowEventTo_p_wxObject(void *x
) { 
19335     return (void *)((wxObject 
*) (wxEvent 
*) ((wxShowEvent 
*) x
)); 
19337 static void *_p_wxPrinterTo_p_wxObject(void *x
) { 
19338     return (void *)((wxObject 
*)  ((wxPrinter 
*) x
)); 
19340 static void *_p_wxMenuItemTo_p_wxObject(void *x
) { 
19341     return (void *)((wxObject 
*)  ((wxMenuItem 
*) x
)); 
19343 static void *_p_wxDateEventTo_p_wxObject(void *x
) { 
19344     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
19346 static void *_p_wxIdleEventTo_p_wxObject(void *x
) { 
19347     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIdleEvent 
*) x
)); 
19349 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) { 
19350     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
19352 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) { 
19353     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryNewPaletteEvent 
*) x
)); 
19355 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) { 
19356     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMaximizeEvent 
*) x
)); 
19358 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) { 
19359     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIconizeEvent 
*) x
)); 
19361 static void *_p_wxSizeEventTo_p_wxObject(void *x
) { 
19362     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSizeEvent 
*) x
)); 
19364 static void *_p_wxMoveEventTo_p_wxObject(void *x
) { 
19365     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMoveEvent 
*) x
)); 
19367 static void *_p_wxActivateEventTo_p_wxObject(void *x
) { 
19368     return (void *)((wxObject 
*) (wxEvent 
*) ((wxActivateEvent 
*) x
)); 
19370 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) { 
19371     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNMHandler 
*) x
)); 
19373 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) { 
19374     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxJPEGHandler 
*) x
)); 
19376 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) { 
19377     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPCXHandler 
*) x
)); 
19379 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) { 
19380     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxGIFHandler 
*) x
)); 
19382 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) { 
19383     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNGHandler 
*) x
)); 
19385 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) { 
19386     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*)(wxCURHandler 
*) ((wxANIHandler 
*) x
)); 
19388 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) { 
19389     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*) ((wxCURHandler 
*) x
)); 
19391 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) { 
19392     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*) ((wxICOHandler 
*) x
)); 
19394 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) { 
19395     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxBMPHandler 
*) x
)); 
19397 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) { 
19398     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPyImageHandler 
*) x
)); 
19400 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) { 
19401     return (void *)((wxObject 
*)  ((wxImageHandler 
*) x
)); 
19403 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) { 
19404     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxXPMHandler 
*) x
)); 
19406 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) { 
19407     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTIFFHandler 
*) x
)); 
19409 static void *_p_wxTGAHandlerTo_p_wxObject(void *x
) { 
19410     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTGAHandler 
*) x
)); 
19412 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) { 
19413     return (void *)((wxObject 
*)  ((wxEvtHandler 
*) x
)); 
19415 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) { 
19416     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureLostEvent 
*) x
)); 
19418 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) { 
19419     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCalculateLayoutEvent 
*) x
)); 
19421 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) { 
19422     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
19424 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) { 
19425     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
19427 static void *_p_wxSimpleHtmlListBoxTo_p_wxObject(void *x
) { 
19428     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*)(wxPyHtmlListBox 
*) ((wxSimpleHtmlListBox 
*) x
)); 
19430 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) { 
19431     return (void *)((wxObject 
*)  ((wxAcceleratorTable 
*) x
)); 
19433 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) { 
19434     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStdDialogButtonSizer 
*) x
)); 
19436 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) { 
19437     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
19439 static void *_p_wxImageTo_p_wxObject(void *x
) { 
19440     return (void *)((wxObject 
*)  ((wxImage 
*) x
)); 
19442 static void *_p_wxFrameTo_p_wxObject(void *x
) { 
19443     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
19445 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) { 
19446     return (void *)((wxObject 
*)  ((wxPyPrintout 
*) x
)); 
19448 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) { 
19449     return (void *)((wxObject 
*) (wxEvent 
*) ((wxScrollWinEvent 
*) x
)); 
19451 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) { 
19452     return (void *)((wxObject 
*) (wxEvent 
*) ((wxTaskBarIconEvent 
*) x
)); 
19454 static void *_p_wxStatusBarTo_p_wxObject(void *x
) { 
19455     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxStatusBar 
*) x
)); 
19457 static void *_p_wxAuiManagerTo_p_wxObject(void *x
) { 
19458     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxAuiManager 
*) x
)); 
19460 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) { 
19461     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
19463 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) { 
19464     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxAuiNotebookEvent 
*) x
)); 
19466 static void *_p_wxAuiMDIParentFrameTo_p_wxObject(void *x
) { 
19467     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxAuiMDIParentFrame 
*) x
)); 
19469 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) { 
19470     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
19472 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) { 
19473     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNavigationKeyEvent 
*) x
)); 
19475 static void *_p_wxKeyEventTo_p_wxObject(void *x
) { 
19476     return (void *)((wxObject 
*) (wxEvent 
*) ((wxKeyEvent 
*) x
)); 
19478 static void *_p_wxWindowTo_p_wxObject(void *x
) { 
19479     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxWindow 
*) x
)); 
19481 static void *_p_wxMenuTo_p_wxObject(void *x
) { 
19482     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxMenu 
*) x
)); 
19484 static void *_p_wxMenuBarTo_p_wxObject(void *x
) { 
19485     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMenuBar 
*) x
)); 
19487 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) { 
19488     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
19490 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) { 
19491     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
19493 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) { 
19494     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
19496 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) { 
19497     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
19499 static void *_p_wxSashWindowTo_p_wxObject(void *x
) { 
19500     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSashWindow 
*) x
)); 
19502 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) { 
19503     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
19505 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) { 
19506     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPopupWindow 
*) x
)); 
19508 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) { 
19509     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
19511 static void *_p_wxTipWindowTo_p_wxObject(void *x
) { 
19512     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
19514 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) { 
19515     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
19517 static void *_p_wxPyHScrolledWindowTo_p_wxObject(void *x
) { 
19518     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyHScrolledWindow 
*) x
)); 
19520 static void *_p_wxPyHVScrolledWindowTo_p_wxObject(void *x
) { 
19521     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyHVScrolledWindow 
*) x
)); 
19523 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) { 
19524     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
19526 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) { 
19527     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
19529 static void *_p_wxAuiMDIClientWindowTo_p_wxObject(void *x
) { 
19530     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*)(wxAuiNotebook 
*) ((wxAuiMDIClientWindow 
*) x
)); 
19532 static void *_p_wxSashEventTo_p_wxObject(void *x
) { 
19533     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
19535 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) { 
19536     return (void *)((wxObject 
*)  ((wxPrintPreview 
*) x
)); 
19538 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) { 
19539     return (void *)((wxObject 
*) (wxPrintPreview 
*) ((wxPyPrintPreview 
*) x
)); 
19541 static void *_p_wxPanelTo_p_wxObject(void *x
) { 
19542     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPanel 
*) x
)); 
19544 static void *_p_wxDialogTo_p_wxObject(void *x
) { 
19545     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
19547 static void *_p_wxColourDialogTo_p_wxObject(void *x
) { 
19548     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
19550 static void *_p_wxDirDialogTo_p_wxObject(void *x
) { 
19551     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
19553 static void *_p_wxFontDialogTo_p_wxObject(void *x
) { 
19554     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
19556 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) { 
19557     return (void *)((wxObject 
*)  ((wxPageSetupDialog 
*) x
)); 
19559 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) { 
19560     return (void *)((wxObject 
*)  ((wxPrintDialog 
*) x
)); 
19562 static void *_p_wxFileSystemTo_p_wxObject(void *x
) { 
19563     return (void *)((wxObject 
*)  ((wxFileSystem 
*) x
)); 
19565 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) { 
19566     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
19568 static void *_p_wxMenuEventTo_p_wxObject(void *x
) { 
19569     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMenuEvent 
*) x
)); 
19571 static void *_p_wxPyAppTo_p_wxObject(void *x
) { 
19572     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyApp 
*) x
)); 
19574 static void *_p_wxCloseEventTo_p_wxObject(void *x
) { 
19575     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCloseEvent 
*) x
)); 
19577 static void *_p_wxMouseEventTo_p_wxObject(void *x
) { 
19578     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseEvent 
*) x
)); 
19580 static void *_p_wxEraseEventTo_p_wxObject(void *x
) { 
19581     return (void *)((wxObject 
*) (wxEvent 
*) ((wxEraseEvent 
*) x
)); 
19583 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) { 
19584     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
19586 static void *_p_wxCommandEventTo_p_wxObject(void *x
) { 
19587     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCommandEvent 
*) x
)); 
19589 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) { 
19590     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
19592 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) { 
19593     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
19595 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) { 
19596     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDropFilesEvent 
*) x
)); 
19598 static void *_p_wxFocusEventTo_p_wxObject(void *x
) { 
19599     return (void *)((wxObject 
*) (wxEvent 
*) ((wxFocusEvent 
*) x
)); 
19601 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) { 
19602     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
19604 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) { 
19605     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
19607 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) { 
19608     return (void *)((wxObject 
*)  ((wxPageSetupDialogData 
*) x
)); 
19610 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) { 
19611     return (void *)((wxObject 
*)  ((wxPrintDialogData 
*) x
)); 
19613 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) { 
19614     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxValidator 
*) ((wxPyValidator 
*) x
)); 
19616 static void *_p_wxValidatorTo_p_wxObject(void *x
) { 
19617     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxValidator 
*) x
)); 
19619 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) { 
19620     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
**) x
)); 
19622 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) { 
19623     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
**) x
)); 
19625 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) { 
19626     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxPyPanel 
**) x
)); 
19628 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) { 
19629     return (void *)((wxWindow 
**)  ((wxMenuBar 
**) x
)); 
19631 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) { 
19632     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
**) x
)); 
19634 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) { 
19635     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxNumberEntryDialog 
**) x
)); 
19637 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) { 
19638     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
**) x
)); 
19640 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) { 
19641     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
**) x
)); 
19643 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) { 
19644     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
**) x
)); 
19646 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) { 
19647     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
**) x
)); 
19649 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) { 
19650     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
**) x
)); 
19652 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) { 
19653     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
**) x
)); 
19655 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) { 
19656     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
**) x
)); 
19658 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) { 
19659     return (void *)((wxWindow 
**)  ((wxPanel 
**) x
)); 
19661 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) { 
19662     return (void *)((wxWindow 
**)  ((wxStatusBar 
**) x
)); 
19664 static void *_p_p_wxPyHVScrolledWindowTo_p_p_wxWindow(void *x
) { 
19665     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxPyHVScrolledWindow 
**) x
)); 
19667 static void *_p_p_wxPyHScrolledWindowTo_p_p_wxWindow(void *x
) { 
19668     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxPyHScrolledWindow 
**) x
)); 
19670 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) { 
19671     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxPyVScrolledWindow 
**) x
)); 
19673 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) { 
19674     return (void *)((wxWindow 
**) (wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
**) x
)); 
19676 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) { 
19677     return (void *)((wxWindow 
**) (wxPopupWindow 
*) ((wxPyPopupTransientWindow 
**) x
)); 
19679 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) { 
19680     return (void *)((wxWindow 
**)  ((wxPopupWindow 
**) x
)); 
19682 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) { 
19683     return (void *)((wxWindow 
**) (wxSashWindow 
*) ((wxSashLayoutWindow 
**) x
)); 
19685 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) { 
19686     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxScrolledWindow 
**) x
)); 
19688 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) { 
19689     return (void *)((wxWindow 
**)  ((wxTopLevelWindow 
**) x
)); 
19691 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) { 
19692     return (void *)((wxWindow 
**)  ((wxSplashScreenWindow 
**) x
)); 
19694 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) { 
19695     return (void *)((wxWindow 
**)  ((wxSplitterWindow 
**) x
)); 
19697 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) { 
19698     return (void *)((wxWindow 
**)  ((wxSashWindow 
**) x
)); 
19700 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) { 
19701     return (void *)((wxWindow 
**)  ((wxMDIClientWindow 
**) x
)); 
19703 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) { 
19704     return (void *)((wxWindow 
**) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
**) x
)); 
19706 static void *_p_p_wxAuiMDIClientWindowTo_p_p_wxWindow(void *x
) { 
19707     return (void *)((wxWindow 
**) (wxControl 
*)(wxAuiNotebook 
*) ((wxAuiMDIClientWindow 
**) x
)); 
19709 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) { 
19710     return (void *)((wxWindow 
**)  ((wxControl 
**) x
)); 
19712 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) { 
19713     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
**) x
)); 
19715 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) { 
19716     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
**) x
)); 
19718 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) { 
19719     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
**) x
)); 
19721 static void *_p_p_wxAuiMDIChildFrameTo_p_p_wxWindow(void *x
) { 
19722     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxAuiMDIChildFrame 
**) x
)); 
19724 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) { 
19725     return (void *)((wxWindow 
**) (wxControl 
*) ((wxControlWithItems 
**) x
)); 
19727 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) { 
19728     return (void *)((wxWindow 
**)  ((wxPyWindow 
**) x
)); 
19730 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) { 
19731     return (void *)((wxWindow 
**) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
**) x
)); 
19733 static void *_p_p_wxSimpleHtmlListBoxTo_p_p_wxWindow(void *x
) { 
19734     return (void *)((wxWindow 
**) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*)(wxPyHtmlListBox 
*) ((wxSimpleHtmlListBox 
**) x
)); 
19736 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) { 
19737     return (void *)((wxWindow 
**) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
**) x
)); 
19739 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) { 
19740     return (void *)((wxWindow 
**) (wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
**) x
)); 
19742 static void *_p_p_wxAuiNotebookTo_p_p_wxWindow(void *x
) { 
19743     return (void *)((wxWindow 
**) (wxControl 
*) ((wxAuiNotebook 
**) x
)); 
19745 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) { 
19746     return (void *)((wxWindow 
**) (wxPanel 
*) ((wxPreviewControlBar 
**) x
)); 
19748 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) { 
19749     return (void *)((wxWindow 
**) (wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
**) x
)); 
19751 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) { 
19752     return (void *)((wxWindow 
**) (wxControl 
*) ((wxAuiTabCtrl 
**) x
)); 
19754 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) { 
19755     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*) ((wxFrame 
**) x
)); 
19757 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) { 
19758     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
**) x
)); 
19760 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) { 
19761     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
**) x
)); 
19763 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) { 
19764     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
**) x
)); 
19766 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) { 
19767     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*) ((wxDialog 
**) x
)); 
19769 static void *_p_p_wxAuiFloatingFrameTo_p_p_wxWindow(void *x
) { 
19770     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*)(wxMiniFrame 
*) ((wxAuiFloatingFrame 
**) x
)); 
19772 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) { 
19773     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
**) x
)); 
19775 static void *_p_p_wxAuiMDIParentFrameTo_p_p_wxWindow(void *x
) { 
19776     return (void *)((wxWindow 
**) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxAuiMDIParentFrame 
**) x
)); 
19778 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) { 
19779     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
19781 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) { 
19782     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
19784 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) { 
19785     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyPanel 
*) x
)); 
19787 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) { 
19788     return (void *)((wxWindow 
*)  ((wxMenuBar 
*) x
)); 
19790 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) { 
19791     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
19793 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) { 
19794     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxNumberEntryDialog 
*) x
)); 
19796 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) { 
19797     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
19799 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) { 
19800     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
19802 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) { 
19803     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
19805 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) { 
19806     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
19808 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) { 
19809     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
19811 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) { 
19812     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
19814 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) { 
19815     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
19817 static void *_p_wxPanelTo_p_wxWindow(void *x
) { 
19818     return (void *)((wxWindow 
*)  ((wxPanel 
*) x
)); 
19820 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) { 
19821     return (void *)((wxWindow 
*)  ((wxStatusBar 
*) x
)); 
19823 static void *_p_wxPyHVScrolledWindowTo_p_wxWindow(void *x
) { 
19824     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyHVScrolledWindow 
*) x
)); 
19826 static void *_p_wxPyHScrolledWindowTo_p_wxWindow(void *x
) { 
19827     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyHScrolledWindow 
*) x
)); 
19829 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) { 
19830     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
19832 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) { 
19833     return (void *)((wxWindow 
*) (wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
19835 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) { 
19836     return (void *)((wxWindow 
*) (wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
19838 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) { 
19839     return (void *)((wxWindow 
*)  ((wxPopupWindow 
*) x
)); 
19841 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) { 
19842     return (void *)((wxWindow 
*) (wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
19844 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) { 
19845     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
19847 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) { 
19848     return (void *)((wxWindow 
*)  ((wxTopLevelWindow 
*) x
)); 
19850 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) { 
19851     return (void *)((wxWindow 
*)  ((wxSplashScreenWindow 
*) x
)); 
19853 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) { 
19854     return (void *)((wxWindow 
*)  ((wxSplitterWindow 
*) x
)); 
19856 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) { 
19857     return (void *)((wxWindow 
*)  ((wxSashWindow 
*) x
)); 
19859 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) { 
19860     return (void *)((wxWindow 
*)  ((wxMDIClientWindow 
*) x
)); 
19862 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) { 
19863     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
19865 static void *_p_wxAuiMDIClientWindowTo_p_wxWindow(void *x
) { 
19866     return (void *)((wxWindow 
*) (wxControl 
*)(wxAuiNotebook 
*) ((wxAuiMDIClientWindow 
*) x
)); 
19868 static void *_p_wxControlTo_p_wxWindow(void *x
) { 
19869     return (void *)((wxWindow 
*)  ((wxControl 
*) x
)); 
19871 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) { 
19872     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
19874 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) { 
19875     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
19877 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) { 
19878     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
19880 static void *_p_wxAuiMDIChildFrameTo_p_wxWindow(void *x
) { 
19881     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxAuiMDIChildFrame 
*) x
)); 
19883 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) { 
19884     return (void *)((wxWindow 
*) (wxControl 
*) ((wxControlWithItems 
*) x
)); 
19886 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) { 
19887     return (void *)((wxWindow 
*)  ((wxPyWindow 
*) x
)); 
19889 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) { 
19890     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
19892 static void *_p_wxSimpleHtmlListBoxTo_p_wxWindow(void *x
) { 
19893     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*)(wxPyHtmlListBox 
*) ((wxSimpleHtmlListBox 
*) x
)); 
19895 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) { 
19896     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
19898 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) { 
19899     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
19901 static void *_p_wxAuiNotebookTo_p_wxWindow(void *x
) { 
19902     return (void *)((wxWindow 
*) (wxControl 
*) ((wxAuiNotebook 
*) x
)); 
19904 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) { 
19905     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
19907 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) { 
19908     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
19910 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) { 
19911     return (void *)((wxWindow 
*) (wxControl 
*) ((wxAuiTabCtrl 
*) x
)); 
19913 static void *_p_wxFrameTo_p_wxWindow(void *x
) { 
19914     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
19916 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) { 
19917     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
19919 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) { 
19920     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
19922 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) { 
19923     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
19925 static void *_p_wxDialogTo_p_wxWindow(void *x
) { 
19926     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
19928 static void *_p_wxAuiFloatingFrameTo_p_wxWindow(void *x
) { 
19929     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*)(wxMiniFrame 
*) ((wxAuiFloatingFrame 
*) x
)); 
19931 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) { 
19932     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
19934 static void *_p_wxAuiMDIParentFrameTo_p_wxWindow(void *x
) { 
19935     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxAuiMDIParentFrame 
*) x
)); 
19937 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) { 
19938     return (void *)((wxTopLevelWindow 
*)  ((wxFrame 
*) x
)); 
19940 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) { 
19941     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMiniFrame 
*) x
)); 
19943 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) { 
19944     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFontDialog 
*) x
)); 
19946 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) { 
19947     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxDirDialog 
*) x
)); 
19949 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) { 
19950     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxColourDialog 
*) x
)); 
19952 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) { 
19953     return (void *)((wxTopLevelWindow 
*)  ((wxDialog 
*) x
)); 
19955 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) { 
19956     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxSplashScreen 
*) x
)); 
19958 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) { 
19959     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
19961 static void *_p_wxAuiMDIParentFrameTo_p_wxTopLevelWindow(void *x
) { 
19962     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxAuiMDIParentFrame 
*) x
)); 
19964 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) { 
19965     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
19967 static void *_p_wxAuiFloatingFrameTo_p_wxTopLevelWindow(void *x
) { 
19968     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*)(wxMiniFrame 
*) ((wxAuiFloatingFrame 
*) x
)); 
19970 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) { 
19971     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMessageDialog 
*) x
)); 
19973 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
19974     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxNumberEntryDialog 
*) x
)); 
19976 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
19977     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
19979 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
19980     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
19982 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
19983     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
19985 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
19986     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
19988 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) { 
19989     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFileDialog 
*) x
)); 
19991 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) { 
19992     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxProgressDialog 
*) x
)); 
19994 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) { 
19995     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
19997 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
19998     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
20000 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
20001     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
20003 static void *_p_wxAuiMDIChildFrameTo_p_wxPanel(void *x
) { 
20004     return (void *)((wxPanel 
*)  ((wxAuiMDIChildFrame 
*) x
)); 
20006 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) { 
20007     return (void *)((wxPanel 
*)  ((wxScrolledWindow 
*) x
)); 
20009 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) { 
20010     return (void *)((wxPanel 
*)  ((wxPyVScrolledWindow 
*) x
)); 
20012 static void *_p_wxPyHScrolledWindowTo_p_wxPanel(void *x
) { 
20013     return (void *)((wxPanel 
*)  ((wxPyHScrolledWindow 
*) x
)); 
20015 static void *_p_wxPyHVScrolledWindowTo_p_wxPanel(void *x
) { 
20016     return (void *)((wxPanel 
*)  ((wxPyHVScrolledWindow 
*) x
)); 
20018 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) { 
20019     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
20021 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) { 
20022     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
20024 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) { 
20025     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
20027 static void *_p_wxSimpleHtmlListBoxTo_p_wxPanel(void *x
) { 
20028     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*)(wxPyVListBox 
*)(wxPyHtmlListBox 
*) ((wxSimpleHtmlListBox 
*) x
)); 
20030 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) { 
20031     return (void *)((wxPanel 
*)  ((wxPyPanel 
*) x
)); 
20033 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) { 
20034     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
20036 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) { 
20037     return (void *)((wxPanel 
*)  ((wxPreviewControlBar 
*) x
)); 
20039 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) { 
20040     return (void *)((wxPanel 
*) (wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
20042 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) { 
20043     return (void *)((wxCommandEvent 
*)  ((wxSashEvent 
*) x
)); 
20045 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) { 
20046     return (void *)((wxCommandEvent 
*)  ((wxWindowDestroyEvent 
*) x
)); 
20048 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) { 
20049     return (void *)((wxCommandEvent 
*) (wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
20051 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) { 
20052     return (void *)((wxCommandEvent 
*)  ((wxClipboardTextEvent 
*) x
)); 
20054 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) { 
20055     return (void *)((wxCommandEvent 
*)  ((wxScrollEvent 
*) x
)); 
20057 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) { 
20058     return (void *)((wxCommandEvent 
*)  ((wxPyCommandEvent 
*) x
)); 
20060 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) { 
20061     return (void *)((wxCommandEvent 
*)  ((wxContextMenuEvent 
*) x
)); 
20063 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) { 
20064     return (void *)((wxCommandEvent 
*)  ((wxChildFocusEvent 
*) x
)); 
20066 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) { 
20067     return (void *)((wxCommandEvent 
*) (wxNotifyEvent 
*) ((wxAuiNotebookEvent 
*) x
)); 
20069 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) { 
20070     return (void *)((wxCommandEvent 
*)  ((wxDateEvent 
*) x
)); 
20072 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) { 
20073     return (void *)((wxCommandEvent 
*)  ((wxWindowCreateEvent 
*) x
)); 
20075 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) { 
20076     return (void *)((wxCommandEvent 
*)  ((wxNotifyEvent 
*) x
)); 
20078 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) { 
20079     return (void *)((wxCommandEvent 
*)  ((wxFindDialogEvent 
*) x
)); 
20081 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) { 
20082     return (void *)((wxCommandEvent 
*)  ((wxUpdateUIEvent 
*) x
)); 
20084 static swig_type_info _swigt__p_char 
= {"_p_char", "char *", 0, 0, (void*)0, 0}; 
20085 static swig_type_info _swigt__p_double 
= {"_p_double", "double *", 0, 0, (void*)0, 0}; 
20086 static swig_type_info _swigt__p_form_ops_t 
= {"_p_form_ops_t", "enum form_ops_t *|form_ops_t *", 0, 0, (void*)0, 0}; 
20087 static swig_type_info _swigt__p_int 
= {"_p_int", "int *", 0, 0, (void*)0, 0}; 
20088 static swig_type_info _swigt__p_p_wxAuiTabContainerButton 
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0}; 
20089 static swig_type_info _swigt__p_p_wxWindow 
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0}; 
20090 static swig_type_info _swigt__p_p_wxSplashScreen 
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0}; 
20091 static swig_type_info _swigt__p_p_wxMiniFrame 
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0}; 
20092 static swig_type_info _swigt__p_p_wxPyPanel 
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0}; 
20093 static swig_type_info _swigt__p_p_wxMenuBar 
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0}; 
20094 static swig_type_info _swigt__p_p_wxMessageDialog 
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0}; 
20095 static swig_type_info _swigt__p_p_wxNumberEntryDialog 
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0}; 
20096 static swig_type_info _swigt__p_p_wxPasswordEntryDialog 
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0}; 
20097 static swig_type_info _swigt__p_p_wxTextEntryDialog 
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0}; 
20098 static swig_type_info _swigt__p_p_wxSingleChoiceDialog 
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0}; 
20099 static swig_type_info _swigt__p_p_wxMultiChoiceDialog 
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0}; 
20100 static swig_type_info _swigt__p_p_wxFileDialog 
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0}; 
20101 static swig_type_info _swigt__p_p_wxProgressDialog 
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0}; 
20102 static swig_type_info _swigt__p_p_wxFindReplaceDialog 
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0}; 
20103 static swig_type_info _swigt__p_p_wxPanel 
= {"_p_p_wxPanel", 0, 0, 0, 0, 0}; 
20104 static swig_type_info _swigt__p_p_wxStatusBar 
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0}; 
20105 static swig_type_info _swigt__p_p_wxPyHVScrolledWindow 
= {"_p_p_wxPyHVScrolledWindow", 0, 0, 0, 0, 0}; 
20106 static swig_type_info _swigt__p_p_wxPyHScrolledWindow 
= {"_p_p_wxPyHScrolledWindow", 0, 0, 0, 0, 0}; 
20107 static swig_type_info _swigt__p_p_wxPyVScrolledWindow 
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0}; 
20108 static swig_type_info _swigt__p_p_wxTipWindow 
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0}; 
20109 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow 
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0}; 
20110 static swig_type_info _swigt__p_p_wxPopupWindow 
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0}; 
20111 static swig_type_info _swigt__p_p_wxSashLayoutWindow 
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0}; 
20112 static swig_type_info _swigt__p_p_wxScrolledWindow 
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0}; 
20113 static swig_type_info _swigt__p_p_wxTopLevelWindow 
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0}; 
20114 static swig_type_info _swigt__p_p_wxSplashScreenWindow 
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0}; 
20115 static swig_type_info _swigt__p_p_wxSplitterWindow 
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0}; 
20116 static swig_type_info _swigt__p_p_wxSashWindow 
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0}; 
20117 static swig_type_info _swigt__p_p_wxMDIClientWindow 
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0}; 
20118 static swig_type_info _swigt__p_p_wxPyScrolledWindow 
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0}; 
20119 static swig_type_info _swigt__p_p_wxAuiMDIClientWindow 
= {"_p_p_wxAuiMDIClientWindow", 0, 0, 0, 0, 0}; 
20120 static swig_type_info _swigt__p_p_wxPreviewFrame 
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0}; 
20121 static swig_type_info _swigt__p_p_wxPyPreviewFrame 
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0}; 
20122 static swig_type_info _swigt__p_p_wxControl 
= {"_p_p_wxControl", 0, 0, 0, 0, 0}; 
20123 static swig_type_info _swigt__p_p_wxMDIChildFrame 
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0}; 
20124 static swig_type_info _swigt__p_p_wxAuiMDIChildFrame 
= {"_p_p_wxAuiMDIChildFrame", 0, 0, 0, 0, 0}; 
20125 static swig_type_info _swigt__p_p_wxControlWithItems 
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0}; 
20126 static swig_type_info _swigt__p_p_wxPyWindow 
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0}; 
20127 static swig_type_info _swigt__p_p_wxPreviewCanvas 
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0}; 
20128 static swig_type_info _swigt__p_p_wxSimpleHtmlListBox 
= {"_p_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0}; 
20129 static swig_type_info _swigt__p_p_wxPyHtmlListBox 
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0}; 
20130 static swig_type_info _swigt__p_p_wxPyVListBox 
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0}; 
20131 static swig_type_info _swigt__p_p_wxAuiNotebook 
= {"_p_p_wxAuiNotebook", 0, 0, 0, 0, 0}; 
20132 static swig_type_info _swigt__p_p_wxPreviewControlBar 
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0}; 
20133 static swig_type_info _swigt__p_p_wxPyPreviewControlBar 
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0}; 
20134 static swig_type_info _swigt__p_p_wxAuiTabCtrl 
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0}; 
20135 static swig_type_info _swigt__p_p_wxFrame 
= {"_p_p_wxFrame", 0, 0, 0, 0, 0}; 
20136 static swig_type_info _swigt__p_p_wxFontDialog 
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0}; 
20137 static swig_type_info _swigt__p_p_wxDirDialog 
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0}; 
20138 static swig_type_info _swigt__p_p_wxColourDialog 
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0}; 
20139 static swig_type_info _swigt__p_p_wxDialog 
= {"_p_p_wxDialog", 0, 0, 0, 0, 0}; 
20140 static swig_type_info _swigt__p_p_wxAuiFloatingFrame 
= {"_p_p_wxAuiFloatingFrame", 0, 0, 0, 0, 0}; 
20141 static swig_type_info _swigt__p_p_wxMDIParentFrame 
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0}; 
20142 static swig_type_info _swigt__p_p_wxAuiMDIParentFrame 
= {"_p_p_wxAuiMDIParentFrame", 0, 0, 0, 0, 0}; 
20143 static swig_type_info _swigt__p_unsigned_char 
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0}; 
20144 static swig_type_info _swigt__p_unsigned_int 
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0}; 
20145 static swig_type_info _swigt__p_unsigned_long 
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0}; 
20146 static swig_type_info _swigt__p_wxActivateEvent 
= {"_p_wxActivateEvent", "wxActivateEvent *", 0, 0, (void*)0, 0}; 
20147 static swig_type_info _swigt__p_wxAuiDefaultDockArt 
= {"_p_wxAuiDefaultDockArt", "wxAuiDefaultDockArt *", 0, 0, (void*)0, 0}; 
20148 static swig_type_info _swigt__p_wxAuiDefaultTabArt 
= {"_p_wxAuiDefaultTabArt", "wxAuiDefaultTabArt *", 0, 0, (void*)0, 0}; 
20149 static swig_type_info _swigt__p_wxAuiDockArt 
= {"_p_wxAuiDockArt", "wxAuiDockArt *", 0, 0, (void*)0, 0}; 
20150 static swig_type_info _swigt__p_wxAuiDockInfo 
= {"_p_wxAuiDockInfo", "wxAuiDockInfo *", 0, 0, (void*)0, 0}; 
20151 static swig_type_info _swigt__p_wxAuiDockUIPart 
= {"_p_wxAuiDockUIPart", "wxAuiDockUIPart *", 0, 0, (void*)0, 0}; 
20152 static swig_type_info _swigt__p_wxAuiFloatingFrame 
= {"_p_wxAuiFloatingFrame", "wxAuiFloatingFrame *", 0, 0, (void*)0, 0}; 
20153 static swig_type_info _swigt__p_wxAuiMDIChildFrame 
= {"_p_wxAuiMDIChildFrame", "wxAuiMDIChildFrame *", 0, 0, (void*)0, 0}; 
20154 static swig_type_info _swigt__p_wxAuiMDIClientWindow 
= {"_p_wxAuiMDIClientWindow", "wxAuiMDIClientWindow *", 0, 0, (void*)0, 0}; 
20155 static swig_type_info _swigt__p_wxAuiMDIParentFrame 
= {"_p_wxAuiMDIParentFrame", "wxAuiMDIParentFrame *", 0, 0, (void*)0, 0}; 
20156 static swig_type_info _swigt__p_wxAuiManager 
= {"_p_wxAuiManager", "wxAuiManager *", 0, 0, (void*)0, 0}; 
20157 static swig_type_info _swigt__p_wxAuiManagerEvent 
= {"_p_wxAuiManagerEvent", "wxAuiManagerEvent *", 0, 0, (void*)0, 0}; 
20158 static swig_type_info _swigt__p_wxAuiNotebook 
= {"_p_wxAuiNotebook", "wxAuiNotebook *", 0, 0, (void*)0, 0}; 
20159 static swig_type_info _swigt__p_wxAuiNotebookEvent 
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0}; 
20160 static swig_type_info _swigt__p_wxAuiNotebookPage 
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0}; 
20161 static swig_type_info _swigt__p_wxAuiNotebookPageArray 
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0}; 
20162 static swig_type_info _swigt__p_wxAuiPaneButton 
= {"_p_wxAuiPaneButton", "wxAuiPaneButton *", 0, 0, (void*)0, 0}; 
20163 static swig_type_info _swigt__p_wxAuiPaneButtonArray 
= {"_p_wxAuiPaneButtonArray", "wxAuiPaneButtonArray *", 0, 0, (void*)0, 0}; 
20164 static swig_type_info _swigt__p_wxAuiPaneInfo 
= {"_p_wxAuiPaneInfo", "wxAuiPaneInfo *", 0, 0, (void*)0, 0}; 
20165 static swig_type_info _swigt__p_wxAuiPaneInfoPtrArray 
= {"_p_wxAuiPaneInfoPtrArray", "wxAuiPaneInfoPtrArray *", 0, 0, (void*)0, 0}; 
20166 static swig_type_info _swigt__p_wxAuiSimpleTabArt 
= {"_p_wxAuiSimpleTabArt", "wxAuiSimpleTabArt *", 0, 0, (void*)0, 0}; 
20167 static swig_type_info _swigt__p_wxAuiTabArt 
= {"_p_wxAuiTabArt", "wxAuiTabArt *", 0, 0, (void*)0, 0}; 
20168 static swig_type_info _swigt__p_wxAuiTabContainer 
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0}; 
20169 static swig_type_info _swigt__p_wxAuiTabContainerButton 
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0}; 
20170 static swig_type_info _swigt__p_wxAuiTabCtrl 
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0}; 
20171 static swig_type_info _swigt__p_wxBitmap 
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0}; 
20172 static swig_type_info _swigt__p_wxCloseEvent 
= {"_p_wxCloseEvent", "wxCloseEvent *", 0, 0, (void*)0, 0}; 
20173 static swig_type_info _swigt__p_wxColour 
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0}; 
20174 static swig_type_info _swigt__p_wxCommandEvent 
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0}; 
20175 static swig_type_info _swigt__p_wxSashEvent 
= {"_p_wxSashEvent", 0, 0, 0, 0, 0}; 
20176 static swig_type_info _swigt__p_wxWindowDestroyEvent 
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0}; 
20177 static swig_type_info _swigt__p_wxSplitterEvent 
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0}; 
20178 static swig_type_info _swigt__p_wxClipboardTextEvent 
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0}; 
20179 static swig_type_info _swigt__p_wxScrollEvent 
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0}; 
20180 static swig_type_info _swigt__p_wxPyCommandEvent 
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0}; 
20181 static swig_type_info _swigt__p_wxContextMenuEvent 
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0}; 
20182 static swig_type_info _swigt__p_wxChildFocusEvent 
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0}; 
20183 static swig_type_info _swigt__p_wxDateEvent 
= {"_p_wxDateEvent", 0, 0, 0, 0, 0}; 
20184 static swig_type_info _swigt__p_wxWindowCreateEvent 
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0}; 
20185 static swig_type_info _swigt__p_wxFindDialogEvent 
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0}; 
20186 static swig_type_info _swigt__p_wxUpdateUIEvent 
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0}; 
20187 static swig_type_info _swigt__p_wxControl 
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0}; 
20188 static swig_type_info _swigt__p_wxControlWithItems 
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0}; 
20189 static swig_type_info _swigt__p_wxDC 
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0}; 
20190 static swig_type_info _swigt__p_wxDuplexMode 
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0}; 
20191 static swig_type_info _swigt__p_wxEvent 
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0}; 
20192 static swig_type_info _swigt__p_wxMouseEvent 
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0}; 
20193 static swig_type_info _swigt__p_wxEraseEvent 
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0}; 
20194 static swig_type_info _swigt__p_wxSetCursorEvent 
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0}; 
20195 static swig_type_info _swigt__p_wxInitDialogEvent 
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0}; 
20196 static swig_type_info _swigt__p_wxPyEvent 
= {"_p_wxPyEvent", 0, 0, 0, 0, 0}; 
20197 static swig_type_info _swigt__p_wxMouseCaptureLostEvent 
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0}; 
20198 static swig_type_info _swigt__p_wxCalculateLayoutEvent 
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0}; 
20199 static swig_type_info _swigt__p_wxIdleEvent 
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0}; 
20200 static swig_type_info _swigt__p_wxQueryNewPaletteEvent 
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0}; 
20201 static swig_type_info _swigt__p_wxMaximizeEvent 
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0}; 
20202 static swig_type_info _swigt__p_wxIconizeEvent 
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0}; 
20203 static swig_type_info _swigt__p_wxSizeEvent 
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0}; 
20204 static swig_type_info _swigt__p_wxMoveEvent 
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0}; 
20205 static swig_type_info _swigt__p_wxPaintEvent 
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0}; 
20206 static swig_type_info _swigt__p_wxNcPaintEvent 
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0}; 
20207 static swig_type_info _swigt__p_wxPaletteChangedEvent 
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0}; 
20208 static swig_type_info _swigt__p_wxDisplayChangedEvent 
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0}; 
20209 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent 
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0}; 
20210 static swig_type_info _swigt__p_wxSysColourChangedEvent 
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0}; 
20211 static swig_type_info _swigt__p_wxDropFilesEvent 
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0}; 
20212 static swig_type_info _swigt__p_wxFocusEvent 
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0}; 
20213 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent 
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0}; 
20214 static swig_type_info _swigt__p_wxShowEvent 
= {"_p_wxShowEvent", 0, 0, 0, 0, 0}; 
20215 static swig_type_info _swigt__p_wxNavigationKeyEvent 
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0}; 
20216 static swig_type_info _swigt__p_wxKeyEvent 
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0}; 
20217 static swig_type_info _swigt__p_wxScrollWinEvent 
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0}; 
20218 static swig_type_info _swigt__p_wxTaskBarIconEvent 
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0}; 
20219 static swig_type_info _swigt__p_wxEvtHandler 
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0}; 
20220 static swig_type_info _swigt__p_wxSplashScreen 
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0}; 
20221 static swig_type_info _swigt__p_wxPyPanel 
= {"_p_wxPyPanel", 0, 0, 0, 0, 0}; 
20222 static swig_type_info _swigt__p_wxEventBlocker 
= {"_p_wxEventBlocker", 0, 0, 0, 0, 0}; 
20223 static swig_type_info _swigt__p_wxValidator 
= {"_p_wxValidator", 0, 0, 0, 0, 0}; 
20224 static swig_type_info _swigt__p_wxPyValidator 
= {"_p_wxPyValidator", 0, 0, 0, 0, 0}; 
20225 static swig_type_info _swigt__p_wxPasswordEntryDialog 
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0}; 
20226 static swig_type_info _swigt__p_wxTextEntryDialog 
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0}; 
20227 static swig_type_info _swigt__p_wxSingleChoiceDialog 
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0}; 
20228 static swig_type_info _swigt__p_wxMultiChoiceDialog 
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0}; 
20229 static swig_type_info _swigt__p_wxFindReplaceDialog 
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0}; 
20230 static swig_type_info _swigt__p_wxProgressDialog 
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0}; 
20231 static swig_type_info _swigt__p_wxMessageDialog 
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0}; 
20232 static swig_type_info _swigt__p_wxNumberEntryDialog 
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0}; 
20233 static swig_type_info _swigt__p_wxFileDialog 
= {"_p_wxFileDialog", 0, 0, 0, 0, 0}; 
20234 static swig_type_info _swigt__p_wxStatusBar 
= {"_p_wxStatusBar", 0, 0, 0, 0, 0}; 
20235 static swig_type_info _swigt__p_wxMDIClientWindow 
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0}; 
20236 static swig_type_info _swigt__p_wxScrolledWindow 
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0}; 
20237 static swig_type_info _swigt__p_wxPyVScrolledWindow 
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0}; 
20238 static swig_type_info _swigt__p_wxPyHScrolledWindow 
= {"_p_wxPyHScrolledWindow", 0, 0, 0, 0, 0}; 
20239 static swig_type_info _swigt__p_wxPyHVScrolledWindow 
= {"_p_wxPyHVScrolledWindow", 0, 0, 0, 0, 0}; 
20240 static swig_type_info _swigt__p_wxPyScrolledWindow 
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0}; 
20241 static swig_type_info _swigt__p_wxSashWindow 
= {"_p_wxSashWindow", 0, 0, 0, 0, 0}; 
20242 static swig_type_info _swigt__p_wxSplitterWindow 
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0}; 
20243 static swig_type_info _swigt__p_wxSplashScreenWindow 
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0}; 
20244 static swig_type_info _swigt__p_wxSashLayoutWindow 
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0}; 
20245 static swig_type_info _swigt__p_wxPopupWindow 
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0}; 
20246 static swig_type_info _swigt__p_wxPyPopupTransientWindow 
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0}; 
20247 static swig_type_info _swigt__p_wxTipWindow 
= {"_p_wxTipWindow", 0, 0, 0, 0, 0}; 
20248 static swig_type_info _swigt__p_wxPreviewFrame 
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0}; 
20249 static swig_type_info _swigt__p_wxPyPreviewFrame 
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0}; 
20250 static swig_type_info _swigt__p_wxMDIChildFrame 
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0}; 
20251 static swig_type_info _swigt__p_wxPyApp 
= {"_p_wxPyApp", 0, 0, 0, 0, 0}; 
20252 static swig_type_info _swigt__p_wxPreviewCanvas 
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0}; 
20253 static swig_type_info _swigt__p_wxPyWindow 
= {"_p_wxPyWindow", 0, 0, 0, 0, 0}; 
20254 static swig_type_info _swigt__p_wxPyVListBox 
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0}; 
20255 static swig_type_info _swigt__p_wxPyHtmlListBox 
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0}; 
20256 static swig_type_info _swigt__p_wxSimpleHtmlListBox 
= {"_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0}; 
20257 static swig_type_info _swigt__p_wxPreviewControlBar 
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0}; 
20258 static swig_type_info _swigt__p_wxPyPreviewControlBar 
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0}; 
20259 static swig_type_info _swigt__p_wxPyTaskBarIcon 
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0}; 
20260 static swig_type_info _swigt__p_wxDialog 
= {"_p_wxDialog", 0, 0, 0, 0, 0}; 
20261 static swig_type_info _swigt__p_wxColourDialog 
= {"_p_wxColourDialog", 0, 0, 0, 0, 0}; 
20262 static swig_type_info _swigt__p_wxDirDialog 
= {"_p_wxDirDialog", 0, 0, 0, 0, 0}; 
20263 static swig_type_info _swigt__p_wxFontDialog 
= {"_p_wxFontDialog", 0, 0, 0, 0, 0}; 
20264 static swig_type_info _swigt__p_wxMDIParentFrame 
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0}; 
20265 static swig_type_info _swigt__p_wxFont 
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0}; 
20266 static swig_type_info _swigt__p_wxFrame 
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0}; 
20267 static swig_type_info _swigt__p_wxIcon 
= {"_p_wxIcon", "wxIcon *", 0, 0, (void*)0, 0}; 
20268 static swig_type_info _swigt__p_wxIconBundle 
= {"_p_wxIconBundle", "wxIconBundle *", 0, 0, (void*)0, 0}; 
20269 static swig_type_info _swigt__p_wxMenu 
= {"_p_wxMenu", "wxMenu *", 0, 0, (void*)0, 0}; 
20270 static swig_type_info _swigt__p_wxMenuBar 
= {"_p_wxMenuBar", "wxMenuBar *", 0, 0, (void*)0, 0}; 
20271 static swig_type_info _swigt__p_wxMenuEvent 
= {"_p_wxMenuEvent", "wxMenuEvent *", 0, 0, (void*)0, 0}; 
20272 static swig_type_info _swigt__p_wxMiniFrame 
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0}; 
20273 static swig_type_info _swigt__p_wxNotifyEvent 
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0}; 
20274 static swig_type_info _swigt__p_wxObject 
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0}; 
20275 static swig_type_info _swigt__p_wxLayoutConstraints 
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0}; 
20276 static swig_type_info _swigt__p_wxGBSizerItem 
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0}; 
20277 static swig_type_info _swigt__p_wxIndividualLayoutConstraint 
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0}; 
20278 static swig_type_info _swigt__p_wxStaticBoxSizer 
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0}; 
20279 static swig_type_info _swigt__p_wxBoxSizer 
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0}; 
20280 static swig_type_info _swigt__p_wxGridBagSizer 
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0}; 
20281 static swig_type_info _swigt__p_wxFontData 
= {"_p_wxFontData", 0, 0, 0, 0, 0}; 
20282 static swig_type_info _swigt__p_wxPrintData 
= {"_p_wxPrintData", 0, 0, 0, 0, 0}; 
20283 static swig_type_info _swigt__p_wxGridSizer 
= {"_p_wxGridSizer", 0, 0, 0, 0, 0}; 
20284 static swig_type_info _swigt__p_wxFlexGridSizer 
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0}; 
20285 static swig_type_info _swigt__p_wxLayoutAlgorithm 
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0}; 
20286 static swig_type_info _swigt__p_wxFSFile 
= {"_p_wxFSFile", 0, 0, 0, 0, 0}; 
20287 static swig_type_info _swigt__p_wxFindReplaceData 
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0}; 
20288 static swig_type_info _swigt__p_wxPySizer 
= {"_p_wxPySizer", 0, 0, 0, 0, 0}; 
20289 static swig_type_info _swigt__p_wxColourData 
= {"_p_wxColourData", 0, 0, 0, 0, 0}; 
20290 static swig_type_info _swigt__p_wxPrinter 
= {"_p_wxPrinter", 0, 0, 0, 0, 0}; 
20291 static swig_type_info _swigt__p_wxMenuItem 
= {"_p_wxMenuItem", 0, 0, 0, 0, 0}; 
20292 static swig_type_info _swigt__p_wxPCXHandler 
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0}; 
20293 static swig_type_info _swigt__p_wxJPEGHandler 
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0}; 
20294 static swig_type_info _swigt__p_wxPNMHandler 
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0}; 
20295 static swig_type_info _swigt__p_wxGIFHandler 
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0}; 
20296 static swig_type_info _swigt__p_wxPNGHandler 
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0}; 
20297 static swig_type_info _swigt__p_wxANIHandler 
= {"_p_wxANIHandler", 0, 0, 0, 0, 0}; 
20298 static swig_type_info _swigt__p_wxCURHandler 
= {"_p_wxCURHandler", 0, 0, 0, 0, 0}; 
20299 static swig_type_info _swigt__p_wxICOHandler 
= {"_p_wxICOHandler", 0, 0, 0, 0, 0}; 
20300 static swig_type_info _swigt__p_wxBMPHandler 
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0}; 
20301 static swig_type_info _swigt__p_wxPyImageHandler 
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0}; 
20302 static swig_type_info _swigt__p_wxImageHandler 
= {"_p_wxImageHandler", 0, 0, 0, 0, 0}; 
20303 static swig_type_info _swigt__p_wxXPMHandler 
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0}; 
20304 static swig_type_info _swigt__p_wxTIFFHandler 
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0}; 
20305 static swig_type_info _swigt__p_wxTGAHandler 
= {"_p_wxTGAHandler", 0, 0, 0, 0, 0}; 
20306 static swig_type_info _swigt__p_wxStdDialogButtonSizer 
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0}; 
20307 static swig_type_info _swigt__p_wxAcceleratorTable 
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0}; 
20308 static swig_type_info _swigt__p_wxImage 
= {"_p_wxImage", 0, 0, 0, 0, 0}; 
20309 static swig_type_info _swigt__p_wxPyPrintout 
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0}; 
20310 static swig_type_info _swigt__p_wxPrintPreview 
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0}; 
20311 static swig_type_info _swigt__p_wxPyPrintPreview 
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0}; 
20312 static swig_type_info _swigt__p_wxPageSetupDialog 
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0}; 
20313 static swig_type_info _swigt__p_wxPrintDialog 
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0}; 
20314 static swig_type_info _swigt__p_wxFileSystem 
= {"_p_wxFileSystem", 0, 0, 0, 0, 0}; 
20315 static swig_type_info _swigt__p_wxPageSetupDialogData 
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0}; 
20316 static swig_type_info _swigt__p_wxPrintDialogData 
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0}; 
20317 static swig_type_info _swigt__p_wxPanel 
= {"_p_wxPanel", "wxPanel *", 0, 0, (void*)0, 0}; 
20318 static swig_type_info _swigt__p_wxPaperSize 
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0}; 
20319 static swig_type_info _swigt__p_wxPoint 
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0}; 
20320 static swig_type_info _swigt__p_wxPyAuiDockArt 
= {"_p_wxPyAuiDockArt", "wxPyAuiDockArt *", 0, 0, (void*)0, 0}; 
20321 static swig_type_info _swigt__p_wxPyAuiTabArt 
= {"_p_wxPyAuiTabArt", "wxPyAuiTabArt *", 0, 0, (void*)0, 0}; 
20322 static swig_type_info _swigt__p_wxRect 
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0}; 
20323 static swig_type_info _swigt__p_wxSize 
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0}; 
20324 static swig_type_info _swigt__p_wxSizer 
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0}; 
20325 static swig_type_info _swigt__p_wxSizerItem 
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0}; 
20326 static swig_type_info _swigt__p_wxString 
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0}; 
20327 static swig_type_info _swigt__p_wxTopLevelWindow 
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0}; 
20328 static swig_type_info _swigt__p_wxWindow 
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0}; 
20330 static swig_type_info 
*swig_type_initial
[] = { 
20333   &_swigt__p_form_ops_t
, 
20335   &_swigt__p_p_wxAuiFloatingFrame
, 
20336   &_swigt__p_p_wxAuiMDIChildFrame
, 
20337   &_swigt__p_p_wxAuiMDIClientWindow
, 
20338   &_swigt__p_p_wxAuiMDIParentFrame
, 
20339   &_swigt__p_p_wxAuiNotebook
, 
20340   &_swigt__p_p_wxAuiTabContainerButton
, 
20341   &_swigt__p_p_wxAuiTabCtrl
, 
20342   &_swigt__p_p_wxColourDialog
, 
20343   &_swigt__p_p_wxControl
, 
20344   &_swigt__p_p_wxControlWithItems
, 
20345   &_swigt__p_p_wxDialog
, 
20346   &_swigt__p_p_wxDirDialog
, 
20347   &_swigt__p_p_wxFileDialog
, 
20348   &_swigt__p_p_wxFindReplaceDialog
, 
20349   &_swigt__p_p_wxFontDialog
, 
20350   &_swigt__p_p_wxFrame
, 
20351   &_swigt__p_p_wxMDIChildFrame
, 
20352   &_swigt__p_p_wxMDIClientWindow
, 
20353   &_swigt__p_p_wxMDIParentFrame
, 
20354   &_swigt__p_p_wxMenuBar
, 
20355   &_swigt__p_p_wxMessageDialog
, 
20356   &_swigt__p_p_wxMiniFrame
, 
20357   &_swigt__p_p_wxMultiChoiceDialog
, 
20358   &_swigt__p_p_wxNumberEntryDialog
, 
20359   &_swigt__p_p_wxPanel
, 
20360   &_swigt__p_p_wxPasswordEntryDialog
, 
20361   &_swigt__p_p_wxPopupWindow
, 
20362   &_swigt__p_p_wxPreviewCanvas
, 
20363   &_swigt__p_p_wxPreviewControlBar
, 
20364   &_swigt__p_p_wxPreviewFrame
, 
20365   &_swigt__p_p_wxProgressDialog
, 
20366   &_swigt__p_p_wxPyHScrolledWindow
, 
20367   &_swigt__p_p_wxPyHVScrolledWindow
, 
20368   &_swigt__p_p_wxPyHtmlListBox
, 
20369   &_swigt__p_p_wxPyPanel
, 
20370   &_swigt__p_p_wxPyPopupTransientWindow
, 
20371   &_swigt__p_p_wxPyPreviewControlBar
, 
20372   &_swigt__p_p_wxPyPreviewFrame
, 
20373   &_swigt__p_p_wxPyScrolledWindow
, 
20374   &_swigt__p_p_wxPyVListBox
, 
20375   &_swigt__p_p_wxPyVScrolledWindow
, 
20376   &_swigt__p_p_wxPyWindow
, 
20377   &_swigt__p_p_wxSashLayoutWindow
, 
20378   &_swigt__p_p_wxSashWindow
, 
20379   &_swigt__p_p_wxScrolledWindow
, 
20380   &_swigt__p_p_wxSimpleHtmlListBox
, 
20381   &_swigt__p_p_wxSingleChoiceDialog
, 
20382   &_swigt__p_p_wxSplashScreen
, 
20383   &_swigt__p_p_wxSplashScreenWindow
, 
20384   &_swigt__p_p_wxSplitterWindow
, 
20385   &_swigt__p_p_wxStatusBar
, 
20386   &_swigt__p_p_wxTextEntryDialog
, 
20387   &_swigt__p_p_wxTipWindow
, 
20388   &_swigt__p_p_wxTopLevelWindow
, 
20389   &_swigt__p_p_wxWindow
, 
20390   &_swigt__p_unsigned_char
, 
20391   &_swigt__p_unsigned_int
, 
20392   &_swigt__p_unsigned_long
, 
20393   &_swigt__p_wxANIHandler
, 
20394   &_swigt__p_wxAcceleratorTable
, 
20395   &_swigt__p_wxActivateEvent
, 
20396   &_swigt__p_wxAuiDefaultDockArt
, 
20397   &_swigt__p_wxAuiDefaultTabArt
, 
20398   &_swigt__p_wxAuiDockArt
, 
20399   &_swigt__p_wxAuiDockInfo
, 
20400   &_swigt__p_wxAuiDockUIPart
, 
20401   &_swigt__p_wxAuiFloatingFrame
, 
20402   &_swigt__p_wxAuiMDIChildFrame
, 
20403   &_swigt__p_wxAuiMDIClientWindow
, 
20404   &_swigt__p_wxAuiMDIParentFrame
, 
20405   &_swigt__p_wxAuiManager
, 
20406   &_swigt__p_wxAuiManagerEvent
, 
20407   &_swigt__p_wxAuiNotebook
, 
20408   &_swigt__p_wxAuiNotebookEvent
, 
20409   &_swigt__p_wxAuiNotebookPage
, 
20410   &_swigt__p_wxAuiNotebookPageArray
, 
20411   &_swigt__p_wxAuiPaneButton
, 
20412   &_swigt__p_wxAuiPaneButtonArray
, 
20413   &_swigt__p_wxAuiPaneInfo
, 
20414   &_swigt__p_wxAuiPaneInfoPtrArray
, 
20415   &_swigt__p_wxAuiSimpleTabArt
, 
20416   &_swigt__p_wxAuiTabArt
, 
20417   &_swigt__p_wxAuiTabContainer
, 
20418   &_swigt__p_wxAuiTabContainerButton
, 
20419   &_swigt__p_wxAuiTabCtrl
, 
20420   &_swigt__p_wxBMPHandler
, 
20421   &_swigt__p_wxBitmap
, 
20422   &_swigt__p_wxBoxSizer
, 
20423   &_swigt__p_wxCURHandler
, 
20424   &_swigt__p_wxCalculateLayoutEvent
, 
20425   &_swigt__p_wxChildFocusEvent
, 
20426   &_swigt__p_wxClipboardTextEvent
, 
20427   &_swigt__p_wxCloseEvent
, 
20428   &_swigt__p_wxColour
, 
20429   &_swigt__p_wxColourData
, 
20430   &_swigt__p_wxColourDialog
, 
20431   &_swigt__p_wxCommandEvent
, 
20432   &_swigt__p_wxContextMenuEvent
, 
20433   &_swigt__p_wxControl
, 
20434   &_swigt__p_wxControlWithItems
, 
20436   &_swigt__p_wxDateEvent
, 
20437   &_swigt__p_wxDialog
, 
20438   &_swigt__p_wxDirDialog
, 
20439   &_swigt__p_wxDisplayChangedEvent
, 
20440   &_swigt__p_wxDropFilesEvent
, 
20441   &_swigt__p_wxDuplexMode
, 
20442   &_swigt__p_wxEraseEvent
, 
20443   &_swigt__p_wxEvent
, 
20444   &_swigt__p_wxEventBlocker
, 
20445   &_swigt__p_wxEvtHandler
, 
20446   &_swigt__p_wxFSFile
, 
20447   &_swigt__p_wxFileDialog
, 
20448   &_swigt__p_wxFileSystem
, 
20449   &_swigt__p_wxFindDialogEvent
, 
20450   &_swigt__p_wxFindReplaceData
, 
20451   &_swigt__p_wxFindReplaceDialog
, 
20452   &_swigt__p_wxFlexGridSizer
, 
20453   &_swigt__p_wxFocusEvent
, 
20455   &_swigt__p_wxFontData
, 
20456   &_swigt__p_wxFontDialog
, 
20457   &_swigt__p_wxFrame
, 
20458   &_swigt__p_wxGBSizerItem
, 
20459   &_swigt__p_wxGIFHandler
, 
20460   &_swigt__p_wxGridBagSizer
, 
20461   &_swigt__p_wxGridSizer
, 
20462   &_swigt__p_wxICOHandler
, 
20464   &_swigt__p_wxIconBundle
, 
20465   &_swigt__p_wxIconizeEvent
, 
20466   &_swigt__p_wxIdleEvent
, 
20467   &_swigt__p_wxImage
, 
20468   &_swigt__p_wxImageHandler
, 
20469   &_swigt__p_wxIndividualLayoutConstraint
, 
20470   &_swigt__p_wxInitDialogEvent
, 
20471   &_swigt__p_wxJPEGHandler
, 
20472   &_swigt__p_wxKeyEvent
, 
20473   &_swigt__p_wxLayoutAlgorithm
, 
20474   &_swigt__p_wxLayoutConstraints
, 
20475   &_swigt__p_wxMDIChildFrame
, 
20476   &_swigt__p_wxMDIClientWindow
, 
20477   &_swigt__p_wxMDIParentFrame
, 
20478   &_swigt__p_wxMaximizeEvent
, 
20480   &_swigt__p_wxMenuBar
, 
20481   &_swigt__p_wxMenuEvent
, 
20482   &_swigt__p_wxMenuItem
, 
20483   &_swigt__p_wxMessageDialog
, 
20484   &_swigt__p_wxMiniFrame
, 
20485   &_swigt__p_wxMouseCaptureChangedEvent
, 
20486   &_swigt__p_wxMouseCaptureLostEvent
, 
20487   &_swigt__p_wxMouseEvent
, 
20488   &_swigt__p_wxMoveEvent
, 
20489   &_swigt__p_wxMultiChoiceDialog
, 
20490   &_swigt__p_wxNavigationKeyEvent
, 
20491   &_swigt__p_wxNcPaintEvent
, 
20492   &_swigt__p_wxNotifyEvent
, 
20493   &_swigt__p_wxNumberEntryDialog
, 
20494   &_swigt__p_wxObject
, 
20495   &_swigt__p_wxPCXHandler
, 
20496   &_swigt__p_wxPNGHandler
, 
20497   &_swigt__p_wxPNMHandler
, 
20498   &_swigt__p_wxPageSetupDialog
, 
20499   &_swigt__p_wxPageSetupDialogData
, 
20500   &_swigt__p_wxPaintEvent
, 
20501   &_swigt__p_wxPaletteChangedEvent
, 
20502   &_swigt__p_wxPanel
, 
20503   &_swigt__p_wxPaperSize
, 
20504   &_swigt__p_wxPasswordEntryDialog
, 
20505   &_swigt__p_wxPoint
, 
20506   &_swigt__p_wxPopupWindow
, 
20507   &_swigt__p_wxPreviewCanvas
, 
20508   &_swigt__p_wxPreviewControlBar
, 
20509   &_swigt__p_wxPreviewFrame
, 
20510   &_swigt__p_wxPrintData
, 
20511   &_swigt__p_wxPrintDialog
, 
20512   &_swigt__p_wxPrintDialogData
, 
20513   &_swigt__p_wxPrintPreview
, 
20514   &_swigt__p_wxPrinter
, 
20515   &_swigt__p_wxProgressDialog
, 
20516   &_swigt__p_wxPyApp
, 
20517   &_swigt__p_wxPyAuiDockArt
, 
20518   &_swigt__p_wxPyAuiTabArt
, 
20519   &_swigt__p_wxPyCommandEvent
, 
20520   &_swigt__p_wxPyEvent
, 
20521   &_swigt__p_wxPyHScrolledWindow
, 
20522   &_swigt__p_wxPyHVScrolledWindow
, 
20523   &_swigt__p_wxPyHtmlListBox
, 
20524   &_swigt__p_wxPyImageHandler
, 
20525   &_swigt__p_wxPyPanel
, 
20526   &_swigt__p_wxPyPopupTransientWindow
, 
20527   &_swigt__p_wxPyPreviewControlBar
, 
20528   &_swigt__p_wxPyPreviewFrame
, 
20529   &_swigt__p_wxPyPrintPreview
, 
20530   &_swigt__p_wxPyPrintout
, 
20531   &_swigt__p_wxPyScrolledWindow
, 
20532   &_swigt__p_wxPySizer
, 
20533   &_swigt__p_wxPyTaskBarIcon
, 
20534   &_swigt__p_wxPyVListBox
, 
20535   &_swigt__p_wxPyVScrolledWindow
, 
20536   &_swigt__p_wxPyValidator
, 
20537   &_swigt__p_wxPyWindow
, 
20538   &_swigt__p_wxQueryLayoutInfoEvent
, 
20539   &_swigt__p_wxQueryNewPaletteEvent
, 
20541   &_swigt__p_wxSashEvent
, 
20542   &_swigt__p_wxSashLayoutWindow
, 
20543   &_swigt__p_wxSashWindow
, 
20544   &_swigt__p_wxScrollEvent
, 
20545   &_swigt__p_wxScrollWinEvent
, 
20546   &_swigt__p_wxScrolledWindow
, 
20547   &_swigt__p_wxSetCursorEvent
, 
20548   &_swigt__p_wxShowEvent
, 
20549   &_swigt__p_wxSimpleHtmlListBox
, 
20550   &_swigt__p_wxSingleChoiceDialog
, 
20552   &_swigt__p_wxSizeEvent
, 
20553   &_swigt__p_wxSizer
, 
20554   &_swigt__p_wxSizerItem
, 
20555   &_swigt__p_wxSplashScreen
, 
20556   &_swigt__p_wxSplashScreenWindow
, 
20557   &_swigt__p_wxSplitterEvent
, 
20558   &_swigt__p_wxSplitterWindow
, 
20559   &_swigt__p_wxStaticBoxSizer
, 
20560   &_swigt__p_wxStatusBar
, 
20561   &_swigt__p_wxStdDialogButtonSizer
, 
20562   &_swigt__p_wxString
, 
20563   &_swigt__p_wxSysColourChangedEvent
, 
20564   &_swigt__p_wxTGAHandler
, 
20565   &_swigt__p_wxTIFFHandler
, 
20566   &_swigt__p_wxTaskBarIconEvent
, 
20567   &_swigt__p_wxTextEntryDialog
, 
20568   &_swigt__p_wxTipWindow
, 
20569   &_swigt__p_wxTopLevelWindow
, 
20570   &_swigt__p_wxUpdateUIEvent
, 
20571   &_swigt__p_wxValidator
, 
20572   &_swigt__p_wxWindow
, 
20573   &_swigt__p_wxWindowCreateEvent
, 
20574   &_swigt__p_wxWindowDestroyEvent
, 
20575   &_swigt__p_wxXPMHandler
, 
20578 static swig_cast_info _swigc__p_char
[] = {  {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}}; 
20579 static swig_cast_info _swigc__p_double
[] = {  {&_swigt__p_double
, 0, 0, 0},{0, 0, 0, 0}}; 
20580 static swig_cast_info _swigc__p_form_ops_t
[] = {  {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}}; 
20581 static swig_cast_info _swigc__p_int
[] = {  {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}}; 
20582 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = {  {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}}; 
20583 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}}; 
20584 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20585 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}}; 
20586 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20587 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20588 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20589 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20590 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20591 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20592 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20593 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20594 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20595 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20596 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}}; 
20597 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20598 static swig_cast_info _swigc__p_p_wxPyHVScrolledWindow
[] = {{&_swigt__p_p_wxPyHVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20599 static swig_cast_info _swigc__p_p_wxPyHScrolledWindow
[] = {{&_swigt__p_p_wxPyHScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20600 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20601 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20602 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20603 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20604 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20605 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20606 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20607 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20608 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20609 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20610 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20611 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20612 static swig_cast_info _swigc__p_p_wxAuiMDIClientWindow
[] = {{&_swigt__p_p_wxAuiMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20613 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20614 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20615 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}}; 
20616 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20617 static swig_cast_info _swigc__p_p_wxAuiMDIChildFrame
[] = {{&_swigt__p_p_wxAuiMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20618 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}}; 
20619 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20620 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}}; 
20621 static swig_cast_info _swigc__p_p_wxSimpleHtmlListBox
[] = {{&_swigt__p_p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}}; 
20622 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}}; 
20623 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}}; 
20624 static swig_cast_info _swigc__p_p_wxAuiNotebook
[] = {{&_swigt__p_p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}}; 
20625 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20626 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20627 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}}; 
20628 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20629 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20630 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20631 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20632 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20633 static swig_cast_info _swigc__p_p_wxAuiFloatingFrame
[] = {{&_swigt__p_p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20634 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20635 static swig_cast_info _swigc__p_p_wxAuiMDIParentFrame
[] = {{&_swigt__p_p_wxAuiMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20636 static swig_cast_info _swigc__p_p_wxWindow
[] = {  {&_swigt__p_p_wxSplashScreen
, _p_p_wxSplashScreenTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMiniFrame
, _p_p_wxMiniFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyPanel
, _p_p_wxPyPanelTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMenuBar
, _p_p_wxMenuBarTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMessageDialog
, _p_p_wxMessageDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxNumberEntryDialog
, _p_p_wxNumberEntryDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPasswordEntryDialog
, _p_p_wxPasswordEntryDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxTextEntryDialog
, _p_p_wxTextEntryDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxSingleChoiceDialog
, _p_p_wxSingleChoiceDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMultiChoiceDialog
, _p_p_wxMultiChoiceDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxFileDialog
, _p_p_wxFileDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxProgressDialog
, _p_p_wxProgressDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxFindReplaceDialog
, _p_p_wxFindReplaceDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPanel
, _p_p_wxPanelTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxStatusBar
, _p_p_wxStatusBarTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyHVScrolledWindow
, _p_p_wxPyHVScrolledWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyHScrolledWindow
, _p_p_wxPyHScrolledWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyVScrolledWindow
, _p_p_wxPyVScrolledWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxTipWindow
, _p_p_wxTipWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyPopupTransientWindow
, _p_p_wxPyPopupTransientWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPopupWindow
, _p_p_wxPopupWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxSashLayoutWindow
, _p_p_wxSashLayoutWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxScrolledWindow
, _p_p_wxScrolledWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxTopLevelWindow
, _p_p_wxTopLevelWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxSplashScreenWindow
, _p_p_wxSplashScreenWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxSplitterWindow
, _p_p_wxSplitterWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxSashWindow
, _p_p_wxSashWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMDIClientWindow
, _p_p_wxMDIClientWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyScrolledWindow
, _p_p_wxPyScrolledWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxAuiMDIClientWindow
, _p_p_wxAuiMDIClientWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxWindow
, 0, 0, 0},  {&_swigt__p_p_wxPreviewFrame
, _p_p_wxPreviewFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyPreviewFrame
, _p_p_wxPyPreviewFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxControl
, _p_p_wxControlTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMDIChildFrame
, _p_p_wxMDIChildFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxAuiMDIChildFrame
, _p_p_wxAuiMDIChildFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxControlWithItems
, _p_p_wxControlWithItemsTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyWindow
, _p_p_wxPyWindowTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPreviewCanvas
, _p_p_wxPreviewCanvasTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxSimpleHtmlListBox
, _p_p_wxSimpleHtmlListBoxTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyHtmlListBox
, _p_p_wxPyHtmlListBoxTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyVListBox
, _p_p_wxPyVListBoxTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxAuiNotebook
, _p_p_wxAuiNotebookTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPreviewControlBar
, _p_p_wxPreviewControlBarTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxPyPreviewControlBar
, _p_p_wxPyPreviewControlBarTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxAuiTabCtrl
, _p_p_wxAuiTabCtrlTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxFrame
, _p_p_wxFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxFontDialog
, _p_p_wxFontDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxDirDialog
, _p_p_wxDirDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxColourDialog
, _p_p_wxColourDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxDialog
, _p_p_wxDialogTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxAuiFloatingFrame
, _p_p_wxAuiFloatingFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxMDIParentFrame
, _p_p_wxMDIParentFrameTo_p_p_wxWindow
, 0, 0},  {&_swigt__p_p_wxAuiMDIParentFrame
, _p_p_wxAuiMDIParentFrameTo_p_p_wxWindow
, 0, 0},{0, 0, 0, 0}}; 
20637 static swig_cast_info _swigc__p_unsigned_char
[] = {  {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}}; 
20638 static swig_cast_info _swigc__p_unsigned_int
[] = {  {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}}; 
20639 static swig_cast_info _swigc__p_unsigned_long
[] = {  {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}}; 
20640 static swig_cast_info _swigc__p_wxActivateEvent
[] = {  {&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20641 static swig_cast_info _swigc__p_wxAuiDefaultDockArt
[] = {  {&_swigt__p_wxAuiDefaultDockArt
, 0, 0, 0},  {&_swigt__p_wxPyAuiDockArt
, _p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt
, 0, 0},{0, 0, 0, 0}}; 
20642 static swig_cast_info _swigc__p_wxAuiDefaultTabArt
[] = {  {&_swigt__p_wxAuiDefaultTabArt
, 0, 0, 0},  {&_swigt__p_wxPyAuiTabArt
, _p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt
, 0, 0},{0, 0, 0, 0}}; 
20643 static swig_cast_info _swigc__p_wxAuiDockArt
[] = {  {&_swigt__p_wxAuiDockArt
, 0, 0, 0},  {&_swigt__p_wxAuiDefaultDockArt
, _p_wxAuiDefaultDockArtTo_p_wxAuiDockArt
, 0, 0},  {&_swigt__p_wxPyAuiDockArt
, _p_wxPyAuiDockArtTo_p_wxAuiDockArt
, 0, 0},{0, 0, 0, 0}}; 
20644 static swig_cast_info _swigc__p_wxAuiDockInfo
[] = {  {&_swigt__p_wxAuiDockInfo
, 0, 0, 0},{0, 0, 0, 0}}; 
20645 static swig_cast_info _swigc__p_wxAuiDockUIPart
[] = {  {&_swigt__p_wxAuiDockUIPart
, 0, 0, 0},{0, 0, 0, 0}}; 
20646 static swig_cast_info _swigc__p_wxAuiFloatingFrame
[] = {  {&_swigt__p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20647 static swig_cast_info _swigc__p_wxAuiMDIChildFrame
[] = {  {&_swigt__p_wxAuiMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20648 static swig_cast_info _swigc__p_wxAuiMDIClientWindow
[] = {  {&_swigt__p_wxAuiMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20649 static swig_cast_info _swigc__p_wxAuiMDIParentFrame
[] = {  {&_swigt__p_wxAuiMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20650 static swig_cast_info _swigc__p_wxAuiManager
[] = {  {&_swigt__p_wxAuiManager
, 0, 0, 0},{0, 0, 0, 0}}; 
20651 static swig_cast_info _swigc__p_wxAuiManagerEvent
[] = {  {&_swigt__p_wxAuiManagerEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20652 static swig_cast_info _swigc__p_wxAuiNotebook
[] = {  {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxAuiNotebook
, 0, 0},  {&_swigt__p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}}; 
20653 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = {  {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20654 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = {  {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}}; 
20655 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = {  {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}}; 
20656 static swig_cast_info _swigc__p_wxAuiPaneButton
[] = {  {&_swigt__p_wxAuiPaneButton
, 0, 0, 0},{0, 0, 0, 0}}; 
20657 static swig_cast_info _swigc__p_wxAuiPaneButtonArray
[] = {  {&_swigt__p_wxAuiPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}}; 
20658 static swig_cast_info _swigc__p_wxAuiPaneInfo
[] = {  {&_swigt__p_wxAuiPaneInfo
, 0, 0, 0},{0, 0, 0, 0}}; 
20659 static swig_cast_info _swigc__p_wxAuiPaneInfoPtrArray
[] = {  {&_swigt__p_wxAuiPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}}; 
20660 static swig_cast_info _swigc__p_wxAuiSimpleTabArt
[] = {  {&_swigt__p_wxAuiSimpleTabArt
, 0, 0, 0},{0, 0, 0, 0}}; 
20661 static swig_cast_info _swigc__p_wxAuiTabArt
[] = {  {&_swigt__p_wxAuiDefaultTabArt
, _p_wxAuiDefaultTabArtTo_p_wxAuiTabArt
, 0, 0},  {&_swigt__p_wxAuiTabArt
, 0, 0, 0},  {&_swigt__p_wxPyAuiTabArt
, _p_wxPyAuiTabArtTo_p_wxAuiTabArt
, 0, 0},  {&_swigt__p_wxAuiSimpleTabArt
, _p_wxAuiSimpleTabArtTo_p_wxAuiTabArt
, 0, 0},{0, 0, 0, 0}}; 
20662 static swig_cast_info _swigc__p_wxAuiTabContainer
[] = {  {&_swigt__p_wxAuiTabContainer
, 0, 0, 0},  {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxAuiTabContainer
, 0, 0},{0, 0, 0, 0}}; 
20663 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = {  {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}}; 
20664 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = {  {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}}; 
20665 static swig_cast_info _swigc__p_wxBitmap
[] = {  {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}}; 
20666 static swig_cast_info _swigc__p_wxCloseEvent
[] = {  {&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20667 static swig_cast_info _swigc__p_wxColour
[] = {  {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}}; 
20668 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20669 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20670 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20671 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20672 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20673 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20674 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20675 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20676 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20677 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20678 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20679 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20680 static swig_cast_info _swigc__p_wxCommandEvent
[] = {  {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxCommandEvent
, 0, 0, 0},  {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0},{0, 0, 0, 0}}; 
20681 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}}; 
20682 static swig_cast_info _swigc__p_wxControl
[] = {  {&_swigt__p_wxControl
, 0, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxControl
, 0, 0},  {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxControl
, 0, 0},  {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxControl
, 0, 0},  {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxControl
, 0, 0},{0, 0, 0, 0}}; 
20683 static swig_cast_info _swigc__p_wxDC
[] = {  {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}}; 
20684 static swig_cast_info _swigc__p_wxDuplexMode
[] = {  {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}}; 
20685 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20686 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20687 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20688 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20689 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20690 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20691 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20692 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20693 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20694 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20695 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20696 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20697 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20698 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20699 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20700 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20701 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20702 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20703 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20704 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20705 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20706 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20707 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20708 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20709 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20710 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20711 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20712 static swig_cast_info _swigc__p_wxEvent
[] = {  {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxAuiManagerEvent
, _p_wxAuiManagerEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxEvent
, 0, 0, 0},  {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxEvent
, 0, 0},{0, 0, 0, 0}}; 
20713 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}}; 
20714 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}}; 
20715 static swig_cast_info _swigc__p_wxEventBlocker
[] = {{&_swigt__p_wxEventBlocker
, 0, 0, 0},{0, 0, 0, 0}}; 
20716 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}}; 
20717 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}}; 
20718 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20719 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20720 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20721 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20722 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20723 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20724 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20725 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20726 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20727 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20728 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20729 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20730 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20731 static swig_cast_info _swigc__p_wxPyHScrolledWindow
[] = {{&_swigt__p_wxPyHScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20732 static swig_cast_info _swigc__p_wxPyHVScrolledWindow
[] = {{&_swigt__p_wxPyHVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20733 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20734 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20735 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20736 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20737 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20738 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20739 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20740 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20741 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20742 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20743 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20744 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}}; 
20745 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}}; 
20746 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}}; 
20747 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}}; 
20748 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}}; 
20749 static swig_cast_info _swigc__p_wxSimpleHtmlListBox
[] = {{&_swigt__p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}}; 
20750 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20751 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20752 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}}; 
20753 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20754 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20755 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20756 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20757 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}}; 
20758 static swig_cast_info _swigc__p_wxEvtHandler
[] = {  {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxEventBlocker
, _p_wxEventBlockerTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxEvtHandler
, 0, 0, 0},  {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}}; 
20759 static swig_cast_info _swigc__p_wxFont
[] = {  {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}}; 
20760 static swig_cast_info _swigc__p_wxFrame
[] = {  {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxFrame
, 0, 0, 0},  {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxFrame
, 0, 0},  {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxFrame
, 0, 0},{0, 0, 0, 0}}; 
20761 static swig_cast_info _swigc__p_wxIcon
[] = {  {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}}; 
20762 static swig_cast_info _swigc__p_wxIconBundle
[] = {  {&_swigt__p_wxIconBundle
, 0, 0, 0},{0, 0, 0, 0}}; 
20763 static swig_cast_info _swigc__p_wxMenu
[] = {  {&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}}; 
20764 static swig_cast_info _swigc__p_wxMenuBar
[] = {  {&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}}; 
20765 static swig_cast_info _swigc__p_wxMenuEvent
[] = {  {&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20766 static swig_cast_info _swigc__p_wxMiniFrame
[] = {  {&_swigt__p_wxMiniFrame
, 0, 0, 0},  {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxMiniFrame
, 0, 0},{0, 0, 0, 0}}; 
20767 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {  {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxNotifyEvent
, 0, 0},  {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxNotifyEvent
, 0, 0},  {&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
20768 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}}; 
20769 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}}; 
20770 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}}; 
20771 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20772 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20773 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20774 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}}; 
20775 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}}; 
20776 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20777 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20778 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}}; 
20779 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}}; 
20780 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}}; 
20781 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20782 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}}; 
20783 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}}; 
20784 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}}; 
20785 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20786 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20787 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20788 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20789 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20790 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20791 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20792 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20793 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20794 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20795 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20796 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20797 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20798 static swig_cast_info _swigc__p_wxTGAHandler
[] = {{&_swigt__p_wxTGAHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
20799 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
20800 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}}; 
20801 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}}; 
20802 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}}; 
20803 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}}; 
20804 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}}; 
20805 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20806 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}}; 
20807 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}}; 
20808 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}}; 
20809 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}}; 
20810 static swig_cast_info _swigc__p_wxObject
[] = {  {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEventBlocker
, _p_wxEventBlockerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFontData
, _p_wxFontDataTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPrintData
, _p_wxPrintDataTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEvent
, _p_wxEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0},  {&_swigt__p_wxLayoutAlgorithm
, _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0},  {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxObject
, 0, 0},  {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiManagerEvent
, _p_wxAuiManagerEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFindReplaceData
, _p_wxFindReplaceDataTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxColourData
, _p_wxColourDataTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPrinter
, _p_wxPrinterTo_p_wxObject
, 0, 0},  {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTGAHandler
, _p_wxTGAHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyPrintout
, _p_wxPyPrintoutTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxObject
, 0, 0},  {&_swigt__p_wxObject
, 0, 0, 0},  {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPrintPreview
, _p_wxPrintPreviewTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPageSetupDialog
, _p_wxPageSetupDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPrintDialog
, _p_wxPrintDialogTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxObject
, 0, 0},  {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPageSetupDialogData
, _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPrintDialogData
, _p_wxPrintDialogDataTo_p_wxObject
, 0, 0},  {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0},{0, 0, 0, 0}}; 
20811 static swig_cast_info _swigc__p_wxPanel
[] = {  {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxPanel
, 0, 0},  {&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}}; 
20812 static swig_cast_info _swigc__p_wxPaperSize
[] = {  {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}}; 
20813 static swig_cast_info _swigc__p_wxPoint
[] = {  {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}}; 
20814 static swig_cast_info _swigc__p_wxPyAuiDockArt
[] = {  {&_swigt__p_wxPyAuiDockArt
, 0, 0, 0},{0, 0, 0, 0}}; 
20815 static swig_cast_info _swigc__p_wxPyAuiTabArt
[] = {  {&_swigt__p_wxPyAuiTabArt
, 0, 0, 0},{0, 0, 0, 0}}; 
20816 static swig_cast_info _swigc__p_wxRect
[] = {  {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}}; 
20817 static swig_cast_info _swigc__p_wxSize
[] = {  {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}}; 
20818 static swig_cast_info _swigc__p_wxSizer
[] = {  {&_swigt__p_wxSizer
, 0, 0, 0},  {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxSizer
, 0, 0},  {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxSizer
, 0, 0},  {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxSizer
, 0, 0},  {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxSizer
, 0, 0},  {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxSizer
, 0, 0},  {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxSizer
, 0, 0},  {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxSizer
, 0, 0},{0, 0, 0, 0}}; 
20819 static swig_cast_info _swigc__p_wxSizerItem
[] = {  {&_swigt__p_wxSizerItem
, 0, 0, 0},  {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxSizerItem
, 0, 0},{0, 0, 0, 0}}; 
20820 static swig_cast_info _swigc__p_wxString
[] = {  {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}}; 
20821 static swig_cast_info _swigc__p_wxTopLevelWindow
[] = {  {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxTopLevelWindow
, 0, 0, 0},  {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxTopLevelWindow
, 0, 0},  {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxTopLevelWindow
, 0, 0},{0, 0, 0, 0}}; 
20822 static swig_cast_info _swigc__p_wxWindow
[] = {  {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxWindow
, 0, 0, 0},  {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}}; 
20824 static swig_cast_info 
*swig_cast_initial
[] = { 
20827   _swigc__p_form_ops_t
, 
20829   _swigc__p_p_wxAuiFloatingFrame
, 
20830   _swigc__p_p_wxAuiMDIChildFrame
, 
20831   _swigc__p_p_wxAuiMDIClientWindow
, 
20832   _swigc__p_p_wxAuiMDIParentFrame
, 
20833   _swigc__p_p_wxAuiNotebook
, 
20834   _swigc__p_p_wxAuiTabContainerButton
, 
20835   _swigc__p_p_wxAuiTabCtrl
, 
20836   _swigc__p_p_wxColourDialog
, 
20837   _swigc__p_p_wxControl
, 
20838   _swigc__p_p_wxControlWithItems
, 
20839   _swigc__p_p_wxDialog
, 
20840   _swigc__p_p_wxDirDialog
, 
20841   _swigc__p_p_wxFileDialog
, 
20842   _swigc__p_p_wxFindReplaceDialog
, 
20843   _swigc__p_p_wxFontDialog
, 
20844   _swigc__p_p_wxFrame
, 
20845   _swigc__p_p_wxMDIChildFrame
, 
20846   _swigc__p_p_wxMDIClientWindow
, 
20847   _swigc__p_p_wxMDIParentFrame
, 
20848   _swigc__p_p_wxMenuBar
, 
20849   _swigc__p_p_wxMessageDialog
, 
20850   _swigc__p_p_wxMiniFrame
, 
20851   _swigc__p_p_wxMultiChoiceDialog
, 
20852   _swigc__p_p_wxNumberEntryDialog
, 
20853   _swigc__p_p_wxPanel
, 
20854   _swigc__p_p_wxPasswordEntryDialog
, 
20855   _swigc__p_p_wxPopupWindow
, 
20856   _swigc__p_p_wxPreviewCanvas
, 
20857   _swigc__p_p_wxPreviewControlBar
, 
20858   _swigc__p_p_wxPreviewFrame
, 
20859   _swigc__p_p_wxProgressDialog
, 
20860   _swigc__p_p_wxPyHScrolledWindow
, 
20861   _swigc__p_p_wxPyHVScrolledWindow
, 
20862   _swigc__p_p_wxPyHtmlListBox
, 
20863   _swigc__p_p_wxPyPanel
, 
20864   _swigc__p_p_wxPyPopupTransientWindow
, 
20865   _swigc__p_p_wxPyPreviewControlBar
, 
20866   _swigc__p_p_wxPyPreviewFrame
, 
20867   _swigc__p_p_wxPyScrolledWindow
, 
20868   _swigc__p_p_wxPyVListBox
, 
20869   _swigc__p_p_wxPyVScrolledWindow
, 
20870   _swigc__p_p_wxPyWindow
, 
20871   _swigc__p_p_wxSashLayoutWindow
, 
20872   _swigc__p_p_wxSashWindow
, 
20873   _swigc__p_p_wxScrolledWindow
, 
20874   _swigc__p_p_wxSimpleHtmlListBox
, 
20875   _swigc__p_p_wxSingleChoiceDialog
, 
20876   _swigc__p_p_wxSplashScreen
, 
20877   _swigc__p_p_wxSplashScreenWindow
, 
20878   _swigc__p_p_wxSplitterWindow
, 
20879   _swigc__p_p_wxStatusBar
, 
20880   _swigc__p_p_wxTextEntryDialog
, 
20881   _swigc__p_p_wxTipWindow
, 
20882   _swigc__p_p_wxTopLevelWindow
, 
20883   _swigc__p_p_wxWindow
, 
20884   _swigc__p_unsigned_char
, 
20885   _swigc__p_unsigned_int
, 
20886   _swigc__p_unsigned_long
, 
20887   _swigc__p_wxANIHandler
, 
20888   _swigc__p_wxAcceleratorTable
, 
20889   _swigc__p_wxActivateEvent
, 
20890   _swigc__p_wxAuiDefaultDockArt
, 
20891   _swigc__p_wxAuiDefaultTabArt
, 
20892   _swigc__p_wxAuiDockArt
, 
20893   _swigc__p_wxAuiDockInfo
, 
20894   _swigc__p_wxAuiDockUIPart
, 
20895   _swigc__p_wxAuiFloatingFrame
, 
20896   _swigc__p_wxAuiMDIChildFrame
, 
20897   _swigc__p_wxAuiMDIClientWindow
, 
20898   _swigc__p_wxAuiMDIParentFrame
, 
20899   _swigc__p_wxAuiManager
, 
20900   _swigc__p_wxAuiManagerEvent
, 
20901   _swigc__p_wxAuiNotebook
, 
20902   _swigc__p_wxAuiNotebookEvent
, 
20903   _swigc__p_wxAuiNotebookPage
, 
20904   _swigc__p_wxAuiNotebookPageArray
, 
20905   _swigc__p_wxAuiPaneButton
, 
20906   _swigc__p_wxAuiPaneButtonArray
, 
20907   _swigc__p_wxAuiPaneInfo
, 
20908   _swigc__p_wxAuiPaneInfoPtrArray
, 
20909   _swigc__p_wxAuiSimpleTabArt
, 
20910   _swigc__p_wxAuiTabArt
, 
20911   _swigc__p_wxAuiTabContainer
, 
20912   _swigc__p_wxAuiTabContainerButton
, 
20913   _swigc__p_wxAuiTabCtrl
, 
20914   _swigc__p_wxBMPHandler
, 
20915   _swigc__p_wxBitmap
, 
20916   _swigc__p_wxBoxSizer
, 
20917   _swigc__p_wxCURHandler
, 
20918   _swigc__p_wxCalculateLayoutEvent
, 
20919   _swigc__p_wxChildFocusEvent
, 
20920   _swigc__p_wxClipboardTextEvent
, 
20921   _swigc__p_wxCloseEvent
, 
20922   _swigc__p_wxColour
, 
20923   _swigc__p_wxColourData
, 
20924   _swigc__p_wxColourDialog
, 
20925   _swigc__p_wxCommandEvent
, 
20926   _swigc__p_wxContextMenuEvent
, 
20927   _swigc__p_wxControl
, 
20928   _swigc__p_wxControlWithItems
, 
20930   _swigc__p_wxDateEvent
, 
20931   _swigc__p_wxDialog
, 
20932   _swigc__p_wxDirDialog
, 
20933   _swigc__p_wxDisplayChangedEvent
, 
20934   _swigc__p_wxDropFilesEvent
, 
20935   _swigc__p_wxDuplexMode
, 
20936   _swigc__p_wxEraseEvent
, 
20938   _swigc__p_wxEventBlocker
, 
20939   _swigc__p_wxEvtHandler
, 
20940   _swigc__p_wxFSFile
, 
20941   _swigc__p_wxFileDialog
, 
20942   _swigc__p_wxFileSystem
, 
20943   _swigc__p_wxFindDialogEvent
, 
20944   _swigc__p_wxFindReplaceData
, 
20945   _swigc__p_wxFindReplaceDialog
, 
20946   _swigc__p_wxFlexGridSizer
, 
20947   _swigc__p_wxFocusEvent
, 
20949   _swigc__p_wxFontData
, 
20950   _swigc__p_wxFontDialog
, 
20952   _swigc__p_wxGBSizerItem
, 
20953   _swigc__p_wxGIFHandler
, 
20954   _swigc__p_wxGridBagSizer
, 
20955   _swigc__p_wxGridSizer
, 
20956   _swigc__p_wxICOHandler
, 
20958   _swigc__p_wxIconBundle
, 
20959   _swigc__p_wxIconizeEvent
, 
20960   _swigc__p_wxIdleEvent
, 
20962   _swigc__p_wxImageHandler
, 
20963   _swigc__p_wxIndividualLayoutConstraint
, 
20964   _swigc__p_wxInitDialogEvent
, 
20965   _swigc__p_wxJPEGHandler
, 
20966   _swigc__p_wxKeyEvent
, 
20967   _swigc__p_wxLayoutAlgorithm
, 
20968   _swigc__p_wxLayoutConstraints
, 
20969   _swigc__p_wxMDIChildFrame
, 
20970   _swigc__p_wxMDIClientWindow
, 
20971   _swigc__p_wxMDIParentFrame
, 
20972   _swigc__p_wxMaximizeEvent
, 
20974   _swigc__p_wxMenuBar
, 
20975   _swigc__p_wxMenuEvent
, 
20976   _swigc__p_wxMenuItem
, 
20977   _swigc__p_wxMessageDialog
, 
20978   _swigc__p_wxMiniFrame
, 
20979   _swigc__p_wxMouseCaptureChangedEvent
, 
20980   _swigc__p_wxMouseCaptureLostEvent
, 
20981   _swigc__p_wxMouseEvent
, 
20982   _swigc__p_wxMoveEvent
, 
20983   _swigc__p_wxMultiChoiceDialog
, 
20984   _swigc__p_wxNavigationKeyEvent
, 
20985   _swigc__p_wxNcPaintEvent
, 
20986   _swigc__p_wxNotifyEvent
, 
20987   _swigc__p_wxNumberEntryDialog
, 
20988   _swigc__p_wxObject
, 
20989   _swigc__p_wxPCXHandler
, 
20990   _swigc__p_wxPNGHandler
, 
20991   _swigc__p_wxPNMHandler
, 
20992   _swigc__p_wxPageSetupDialog
, 
20993   _swigc__p_wxPageSetupDialogData
, 
20994   _swigc__p_wxPaintEvent
, 
20995   _swigc__p_wxPaletteChangedEvent
, 
20997   _swigc__p_wxPaperSize
, 
20998   _swigc__p_wxPasswordEntryDialog
, 
21000   _swigc__p_wxPopupWindow
, 
21001   _swigc__p_wxPreviewCanvas
, 
21002   _swigc__p_wxPreviewControlBar
, 
21003   _swigc__p_wxPreviewFrame
, 
21004   _swigc__p_wxPrintData
, 
21005   _swigc__p_wxPrintDialog
, 
21006   _swigc__p_wxPrintDialogData
, 
21007   _swigc__p_wxPrintPreview
, 
21008   _swigc__p_wxPrinter
, 
21009   _swigc__p_wxProgressDialog
, 
21011   _swigc__p_wxPyAuiDockArt
, 
21012   _swigc__p_wxPyAuiTabArt
, 
21013   _swigc__p_wxPyCommandEvent
, 
21014   _swigc__p_wxPyEvent
, 
21015   _swigc__p_wxPyHScrolledWindow
, 
21016   _swigc__p_wxPyHVScrolledWindow
, 
21017   _swigc__p_wxPyHtmlListBox
, 
21018   _swigc__p_wxPyImageHandler
, 
21019   _swigc__p_wxPyPanel
, 
21020   _swigc__p_wxPyPopupTransientWindow
, 
21021   _swigc__p_wxPyPreviewControlBar
, 
21022   _swigc__p_wxPyPreviewFrame
, 
21023   _swigc__p_wxPyPrintPreview
, 
21024   _swigc__p_wxPyPrintout
, 
21025   _swigc__p_wxPyScrolledWindow
, 
21026   _swigc__p_wxPySizer
, 
21027   _swigc__p_wxPyTaskBarIcon
, 
21028   _swigc__p_wxPyVListBox
, 
21029   _swigc__p_wxPyVScrolledWindow
, 
21030   _swigc__p_wxPyValidator
, 
21031   _swigc__p_wxPyWindow
, 
21032   _swigc__p_wxQueryLayoutInfoEvent
, 
21033   _swigc__p_wxQueryNewPaletteEvent
, 
21035   _swigc__p_wxSashEvent
, 
21036   _swigc__p_wxSashLayoutWindow
, 
21037   _swigc__p_wxSashWindow
, 
21038   _swigc__p_wxScrollEvent
, 
21039   _swigc__p_wxScrollWinEvent
, 
21040   _swigc__p_wxScrolledWindow
, 
21041   _swigc__p_wxSetCursorEvent
, 
21042   _swigc__p_wxShowEvent
, 
21043   _swigc__p_wxSimpleHtmlListBox
, 
21044   _swigc__p_wxSingleChoiceDialog
, 
21046   _swigc__p_wxSizeEvent
, 
21048   _swigc__p_wxSizerItem
, 
21049   _swigc__p_wxSplashScreen
, 
21050   _swigc__p_wxSplashScreenWindow
, 
21051   _swigc__p_wxSplitterEvent
, 
21052   _swigc__p_wxSplitterWindow
, 
21053   _swigc__p_wxStaticBoxSizer
, 
21054   _swigc__p_wxStatusBar
, 
21055   _swigc__p_wxStdDialogButtonSizer
, 
21056   _swigc__p_wxString
, 
21057   _swigc__p_wxSysColourChangedEvent
, 
21058   _swigc__p_wxTGAHandler
, 
21059   _swigc__p_wxTIFFHandler
, 
21060   _swigc__p_wxTaskBarIconEvent
, 
21061   _swigc__p_wxTextEntryDialog
, 
21062   _swigc__p_wxTipWindow
, 
21063   _swigc__p_wxTopLevelWindow
, 
21064   _swigc__p_wxUpdateUIEvent
, 
21065   _swigc__p_wxValidator
, 
21066   _swigc__p_wxWindow
, 
21067   _swigc__p_wxWindowCreateEvent
, 
21068   _swigc__p_wxWindowDestroyEvent
, 
21069   _swigc__p_wxXPMHandler
, 
21073 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ 
21075 static swig_const_info swig_const_table
[] = { 
21076 {0, 0, 0, 0.0, 0, 0}}; 
21081 /* ----------------------------------------------------------------------------- 
21082  * Type initialization: 
21083  * This problem is tough by the requirement that no dynamic  
21084  * memory is used. Also, since swig_type_info structures store pointers to  
21085  * swig_cast_info structures and swig_cast_info structures store pointers back 
21086  * to swig_type_info structures, we need some lookup code at initialization.  
21087  * The idea is that swig generates all the structures that are needed.  
21088  * The runtime then collects these partially filled structures.  
21089  * The SWIG_InitializeModule function takes these initial arrays out of  
21090  * swig_module, and does all the lookup, filling in the swig_module.types 
21091  * array with the correct data and linking the correct swig_cast_info 
21092  * structures together. 
21094  * The generated swig_type_info structures are assigned staticly to an initial  
21095  * array. We just loop though that array, and handle each type individually. 
21096  * First we lookup if this type has been already loaded, and if so, use the 
21097  * loaded structure instead of the generated one. Then we have to fill in the 
21098  * cast linked list. The cast data is initially stored in something like a 
21099  * two-dimensional array. Each row corresponds to a type (there are the same 
21100  * number of rows as there are in the swig_type_initial array). Each entry in 
21101  * a column is one of the swig_cast_info structures for that type. 
21102  * The cast_initial array is actually an array of arrays, because each row has 
21103  * a variable number of columns. So to actually build the cast linked list, 
21104  * we find the array of casts associated with the type, and loop through it  
21105  * adding the casts to the list. The one last trick we need to do is making 
21106  * sure the type pointer in the swig_cast_info struct is correct. 
21108  * First off, we lookup the cast->type name to see if it is already loaded.  
21109  * There are three cases to handle: 
21110  *  1) If the cast->type has already been loaded AND the type we are adding 
21111  *     casting info to has not been loaded (it is in this module), THEN we 
21112  *     replace the cast->type pointer with the type pointer that has already 
21114  *  2) If BOTH types (the one we are adding casting info to, and the  
21115  *     cast->type) are loaded, THEN the cast info has already been loaded by 
21116  *     the previous module so we just ignore it. 
21117  *  3) Finally, if cast->type has not already been loaded, then we add that 
21118  *     swig_cast_info to the linked list (because the cast->type) pointer will 
21120  * ----------------------------------------------------------------------------- */ 
21130 #define SWIGRUNTIME_DEBUG 
21134 SWIG_InitializeModule(void *clientdata
) { 
21136   swig_module_info 
*module_head
; 
21137   static int init_run 
= 0; 
21139   clientdata 
= clientdata
; 
21141   if (init_run
) return; 
21144   /* Initialize the swig_module */ 
21145   swig_module
.type_initial 
= swig_type_initial
; 
21146   swig_module
.cast_initial 
= swig_cast_initial
; 
21148   /* Try and load any already created modules */ 
21149   module_head 
= SWIG_GetModule(clientdata
); 
21151     swig_module
.next 
= module_head
->next
; 
21152     module_head
->next 
= &swig_module
; 
21154     /* This is the first module loaded */ 
21155     swig_module
.next 
= &swig_module
; 
21156     SWIG_SetModule(clientdata
, &swig_module
); 
21159   /* Now work on filling in swig_module.types */ 
21160 #ifdef SWIGRUNTIME_DEBUG 
21161   printf("SWIG_InitializeModule: size %d\n", swig_module
.size
); 
21163   for (i 
= 0; i 
< swig_module
.size
; ++i
) { 
21164     swig_type_info 
*type 
= 0; 
21165     swig_type_info 
*ret
; 
21166     swig_cast_info 
*cast
; 
21168 #ifdef SWIGRUNTIME_DEBUG 
21169     printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
); 
21172     /* if there is another module already loaded */ 
21173     if (swig_module
.next 
!= &swig_module
) { 
21174       type 
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
); 
21177       /* Overwrite clientdata field */ 
21178 #ifdef SWIGRUNTIME_DEBUG 
21179       printf("SWIG_InitializeModule: found type %s\n", type
->name
); 
21181       if (swig_module
.type_initial
[i
]->clientdata
) { 
21182         type
->clientdata 
= swig_module
.type_initial
[i
]->clientdata
; 
21183 #ifdef SWIGRUNTIME_DEBUG 
21184         printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
); 
21188       type 
= swig_module
.type_initial
[i
]; 
21191     /* Insert casting types */ 
21192     cast 
= swig_module
.cast_initial
[i
]; 
21193     while (cast
->type
) { 
21194       /* Don't need to add information already in the list */ 
21196 #ifdef SWIGRUNTIME_DEBUG 
21197       printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
); 
21199       if (swig_module
.next 
!= &swig_module
) { 
21200         ret 
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
); 
21201 #ifdef SWIGRUNTIME_DEBUG 
21202         if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
); 
21206         if (type 
== swig_module
.type_initial
[i
]) { 
21207 #ifdef SWIGRUNTIME_DEBUG 
21208           printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
); 
21213           /* Check for casting already in the list */ 
21214           swig_cast_info 
*ocast 
= SWIG_TypeCheck(ret
->name
, type
); 
21215 #ifdef SWIGRUNTIME_DEBUG 
21216           if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
); 
21218           if (!ocast
) ret 
= 0; 
21223 #ifdef SWIGRUNTIME_DEBUG 
21224         printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
); 
21227           type
->cast
->prev 
= cast
; 
21228           cast
->next 
= type
->cast
; 
21234     /* Set entry in modules->types array equal to the type */ 
21235     swig_module
.types
[i
] = type
; 
21237   swig_module
.types
[i
] = 0; 
21239 #ifdef SWIGRUNTIME_DEBUG 
21240   printf("**** SWIG_InitializeModule: Cast List ******\n"); 
21241   for (i 
= 0; i 
< swig_module
.size
; ++i
) { 
21243     swig_cast_info 
*cast 
= swig_module
.cast_initial
[i
]; 
21244     printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
); 
21245     while (cast
->type
) { 
21246       printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
); 
21250     printf("---- Total casts: %d\n",j
); 
21252   printf("**** SWIG_InitializeModule: Cast List ******\n"); 
21256 /* This function will propagate the clientdata field of type to 
21257 * any new swig_type_info structures that have been added into the list 
21258 * of equivalent types.  It is like calling 
21259 * SWIG_TypeClientData(type, clientdata) a second time. 
21262 SWIG_PropagateClientData(void) { 
21264   swig_cast_info 
*equiv
; 
21265   static int init_run 
= 0; 
21267   if (init_run
) return; 
21270   for (i 
= 0; i 
< swig_module
.size
; i
++) { 
21271     if (swig_module
.types
[i
]->clientdata
) { 
21272       equiv 
= swig_module
.types
[i
]->cast
; 
21274         if (!equiv
->converter
) { 
21275           if (equiv
->type 
&& !equiv
->type
->clientdata
) 
21276           SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
); 
21278         equiv 
= equiv
->next
; 
21298   /* Python-specific SWIG API */ 
21299 #define SWIG_newvarlink()                             SWIG_Python_newvarlink() 
21300 #define SWIG_addvarlink(p, name, get_attr, set_attr)  SWIG_Python_addvarlink(p, name, get_attr, set_attr) 
21301 #define SWIG_InstallConstants(d, constants)           SWIG_Python_InstallConstants(d, constants) 
21303   /* ----------------------------------------------------------------------------- 
21304    * global variable support code. 
21305    * ----------------------------------------------------------------------------- */ 
21307   typedef struct swig_globalvar 
{ 
21308     char       *name
;                  /* Name of global variable */ 
21309     PyObject 
*(*get_attr
)(void);       /* Return the current value */ 
21310     int       (*set_attr
)(PyObject 
*); /* Set the value */ 
21311     struct swig_globalvar 
*next
; 
21314   typedef struct swig_varlinkobject 
{ 
21316     swig_globalvar 
*vars
; 
21317   } swig_varlinkobject
; 
21319   SWIGINTERN PyObject 
* 
21320   swig_varlink_repr(swig_varlinkobject 
*SWIGUNUSEDPARM(v
)) { 
21321     return PyString_FromString("<Swig global variables>"); 
21324   SWIGINTERN PyObject 
* 
21325   swig_varlink_str(swig_varlinkobject 
*v
) { 
21326     PyObject 
*str 
= PyString_FromString("("); 
21327     swig_globalvar  
*var
; 
21328     for (var 
= v
->vars
; var
; var
=var
->next
) { 
21329       PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
)); 
21330       if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", ")); 
21332     PyString_ConcatAndDel(&str
,PyString_FromString(")")); 
21337   swig_varlink_print(swig_varlinkobject 
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) { 
21338     PyObject 
*str 
= swig_varlink_str(v
); 
21339     fprintf(fp
,"Swig global variables "); 
21340     fprintf(fp
,"%s\n", PyString_AsString(str
)); 
21346   swig_varlink_dealloc(swig_varlinkobject 
*v
) { 
21347     swig_globalvar 
*var 
= v
->vars
; 
21349       swig_globalvar 
*n 
= var
->next
; 
21356   SWIGINTERN PyObject 
* 
21357   swig_varlink_getattr(swig_varlinkobject 
*v
, char *n
) { 
21358     PyObject 
*res 
= NULL
; 
21359     swig_globalvar 
*var 
= v
->vars
; 
21361       if (strcmp(var
->name
,n
) == 0) { 
21362         res 
= (*var
->get_attr
)(); 
21367     if (res 
== NULL 
&& !PyErr_Occurred()) { 
21368       PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
21374   swig_varlink_setattr(swig_varlinkobject 
*v
, char *n
, PyObject 
*p
) { 
21376     swig_globalvar 
*var 
= v
->vars
; 
21378       if (strcmp(var
->name
,n
) == 0) { 
21379         res 
= (*var
->set_attr
)(p
); 
21384     if (res 
== 1 && !PyErr_Occurred()) { 
21385       PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
21390   SWIGINTERN PyTypeObject
* 
21391   swig_varlink_type(void) { 
21392     static char varlink__doc__
[] = "Swig var link object"; 
21393     static PyTypeObject varlink_type
; 
21394     static int type_init 
= 0;   
21396       const PyTypeObject tmp
 
21398         PyObject_HEAD_INIT(NULL
) 
21399         0,                                  /* Number of items in variable part (ob_size) */ 
21400         (char *)"swigvarlink",              /* Type name (tp_name) */ 
21401         sizeof(swig_varlinkobject
),         /* Basic size (tp_basicsize) */ 
21402         0,                                  /* Itemsize (tp_itemsize) */ 
21403         (destructor
) swig_varlink_dealloc
,   /* Deallocator (tp_dealloc) */  
21404         (printfunc
) swig_varlink_print
,     /* Print (tp_print) */ 
21405         (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */ 
21406         (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */ 
21407         0,                                  /* tp_compare */ 
21408         (reprfunc
) swig_varlink_repr
,       /* tp_repr */ 
21409         0,                                  /* tp_as_number */ 
21410         0,                                  /* tp_as_sequence */ 
21411         0,                                  /* tp_as_mapping */ 
21414         (reprfunc
)swig_varlink_str
,        /* tp_str */ 
21415         0,                                  /* tp_getattro */ 
21416         0,                                  /* tp_setattro */ 
21417         0,                                  /* tp_as_buffer */ 
21419         varlink__doc__
,                     /* tp_doc */ 
21420         0,                                  /* tp_traverse */ 
21422         0,                                  /* tp_richcompare */ 
21423         0,                                  /* tp_weaklistoffset */ 
21424 #if PY_VERSION_HEX >= 0x02020000 
21425         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
21427 #if PY_VERSION_HEX >= 0x02030000 
21430 #ifdef COUNT_ALLOCS 
21431         0,0,0,0                             /* tp_alloc -> tp_next */ 
21434       varlink_type 
= tmp
; 
21435       varlink_type
.ob_type 
= &PyType_Type
; 
21438     return &varlink_type
; 
21441   /* Create a variable linking object for use later */ 
21442   SWIGINTERN PyObject 
* 
21443   SWIG_Python_newvarlink(void) { 
21444     swig_varlinkobject 
*result 
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type()); 
21448     return ((PyObject
*) result
); 
21452   SWIG_Python_addvarlink(PyObject 
*p
, char *name
, PyObject 
*(*get_attr
)(void), int (*set_attr
)(PyObject 
*p
)) { 
21453     swig_varlinkobject 
*v 
= (swig_varlinkobject 
*) p
; 
21454     swig_globalvar 
*gv 
= (swig_globalvar 
*) malloc(sizeof(swig_globalvar
)); 
21456       size_t size 
= strlen(name
)+1; 
21457       gv
->name 
= (char *)malloc(size
); 
21459         strncpy(gv
->name
,name
,size
); 
21460         gv
->get_attr 
= get_attr
; 
21461         gv
->set_attr 
= set_attr
; 
21462         gv
->next 
= v
->vars
; 
21468   SWIGINTERN PyObject 
* 
21470     static PyObject 
*_SWIG_globals 
= 0;  
21471     if (!_SWIG_globals
) _SWIG_globals 
= SWIG_newvarlink();   
21472     return _SWIG_globals
; 
21475   /* ----------------------------------------------------------------------------- 
21476    * constants/methods manipulation 
21477    * ----------------------------------------------------------------------------- */ 
21479   /* Install Constants */ 
21481   SWIG_Python_InstallConstants(PyObject 
*d
, swig_const_info constants
[]) { 
21484     for (i 
= 0; constants
[i
].type
; ++i
) { 
21485       switch(constants
[i
].type
) { 
21486       case SWIG_PY_POINTER
: 
21487         obj 
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0); 
21489       case SWIG_PY_BINARY
: 
21490         obj 
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
)); 
21497         PyDict_SetItemString(d
, constants
[i
].name
, obj
); 
21503   /* -----------------------------------------------------------------------------*/ 
21504   /* Fix SwigMethods to carry the callback ptrs when needed */ 
21505   /* -----------------------------------------------------------------------------*/ 
21508   SWIG_Python_FixMethods(PyMethodDef 
*methods
, 
21509     swig_const_info 
*const_table
, 
21510     swig_type_info 
**types
, 
21511     swig_type_info 
**types_initial
) { 
21513     for (i 
= 0; methods
[i
].ml_name
; ++i
) { 
21514       const char *c 
= methods
[i
].ml_doc
; 
21515       if (c 
&& (c 
= strstr(c
, "swig_ptr: "))) { 
21517         swig_const_info 
*ci 
= 0; 
21518         const char *name 
= c 
+ 10; 
21519         for (j 
= 0; const_table
[j
].type
; ++j
) { 
21520           if (strncmp(const_table
[j
].name
, name
,  
21521               strlen(const_table
[j
].name
)) == 0) { 
21522             ci 
= &(const_table
[j
]); 
21527           size_t shift 
= (ci
->ptype
) - types
; 
21528           swig_type_info 
*ty 
= types_initial
[shift
]; 
21529           size_t ldoc 
= (c 
- methods
[i
].ml_doc
); 
21530           size_t lptr 
= strlen(ty
->name
)+2*sizeof(void*)+2; 
21531           char *ndoc 
= (char*)malloc(ldoc 
+ lptr 
+ 10); 
21534             void *ptr 
= (ci
->type 
== SWIG_PY_POINTER
) ? ci
->pvalue 
: 0; 
21536               strncpy(buff
, methods
[i
].ml_doc
, ldoc
); 
21538               strncpy(buff
, "swig_ptr: ", 10); 
21540               SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
); 
21541               methods
[i
].ml_doc 
= ndoc
; 
21553 /* -----------------------------------------------------------------------------* 
21554  *  Partial Init method 
21555  * -----------------------------------------------------------------------------*/ 
21560 SWIGEXPORT 
void SWIG_init(void) { 
21563   /* Fix SwigMethods to carry the callback ptrs when needed */ 
21564   SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
); 
21566   m 
= Py_InitModule((char *) SWIG_name
, SwigMethods
); 
21567   d 
= PyModule_GetDict(m
); 
21569   SWIG_InitializeModule(0); 
21570   SWIG_InstallConstants(d
,swig_const_table
); 
21573   SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
))); 
21574   SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
))); 
21575   SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
))); 
21576   SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
))); 
21577   SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
))); 
21578   SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
))); 
21579   SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
))); 
21580   SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
))); 
21581   SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
))); 
21582   SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
))); 
21583   SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
))); 
21584   SWIG_Python_SetConstant(d
, "AUI_MGR_VENETIAN_BLINDS_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_VENETIAN_BLINDS_HINT
))); 
21585   SWIG_Python_SetConstant(d
, "AUI_MGR_RECTANGLE_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_RECTANGLE_HINT
))); 
21586   SWIG_Python_SetConstant(d
, "AUI_MGR_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_HINT_FADE
))); 
21587   SWIG_Python_SetConstant(d
, "AUI_MGR_NO_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
))); 
21588   SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
))); 
21589   SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_SIZE
))); 
21590   SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_SIZE
))); 
21591   SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_SIZE
))); 
21592   SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BORDER_SIZE
))); 
21593   SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BUTTON_SIZE
))); 
21594   SWIG_Python_SetConstant(d
, "AUI_DOCKART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BACKGROUND_COLOUR
))); 
21595   SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_COLOUR
))); 
21596   SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR
))); 
21597   SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR
))); 
21598   SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR
))); 
21599   SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR
))); 
21600   SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR
))); 
21601   SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR
))); 
21602   SWIG_Python_SetConstant(d
, "AUI_DOCKART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BORDER_COLOUR
))); 
21603   SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_COLOUR
))); 
21604   SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_FONT
))); 
21605   SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRADIENT_TYPE
))); 
21606   SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
))); 
21607   SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
))); 
21608   SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
))); 
21609   SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
))); 
21610   SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
))); 
21611   SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
))); 
21612   SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_DISABLED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_DISABLED
))); 
21613   SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HIDDEN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HIDDEN
))); 
21614   SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_CHECKED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_CHECKED
))); 
21615   SWIG_Python_SetConstant(d
, "AUI_BUTTON_CLOSE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CLOSE
))); 
21616   SWIG_Python_SetConstant(d
, "AUI_BUTTON_MAXIMIZE_RESTORE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MAXIMIZE_RESTORE
))); 
21617   SWIG_Python_SetConstant(d
, "AUI_BUTTON_MINIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MINIMIZE
))); 
21618   SWIG_Python_SetConstant(d
, "AUI_BUTTON_PIN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_PIN
))); 
21619   SWIG_Python_SetConstant(d
, "AUI_BUTTON_OPTIONS",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_OPTIONS
))); 
21620   SWIG_Python_SetConstant(d
, "AUI_BUTTON_WINDOWLIST",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_WINDOWLIST
))); 
21621   SWIG_Python_SetConstant(d
, "AUI_BUTTON_LEFT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_LEFT
))); 
21622   SWIG_Python_SetConstant(d
, "AUI_BUTTON_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_RIGHT
))); 
21623   SWIG_Python_SetConstant(d
, "AUI_BUTTON_UP",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_UP
))); 
21624   SWIG_Python_SetConstant(d
, "AUI_BUTTON_DOWN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_DOWN
))); 
21625   SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM1",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM1
))); 
21626   SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM2",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM2
))); 
21627   SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM3",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM3
))); 
21628   SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
))); 
21629   SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
))); 
21630   SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
))); 
21631   PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals()); 
21632   SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullDockInfo",AuiNullDockInfo_get
, AuiNullDockInfo_set
); 
21633   SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullPaneInfo",AuiNullPaneInfo_get
, AuiNullPaneInfo_set
); 
21634   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloating
))); 
21635   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionHidden
))); 
21636   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionLeftDockable
))); 
21637   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionRightDockable
))); 
21638   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionTopDockable
))); 
21639   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionBottomDockable
))); 
21640   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloatable
))); 
21641   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMovable
))); 
21642   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionResizable
))); 
21643   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionPaneBorder
))); 
21644   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionCaption
))); 
21645   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripper
))); 
21646   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionDestroyOnClose
))); 
21647   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionToolbar
))); 
21648   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionActive
))); 
21649   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripperTop
))); 
21650   SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMaximized",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMaximized
))); 
21651   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonClose
))); 
21652   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMaximize
))); 
21653   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMinimize
))); 
21654   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonPin
))); 
21655   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom1
))); 
21656   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom2
))); 
21657   SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom3
))); 
21658   SWIG_Python_SetConstant(d
, "AuiPaneInfo_savedHiddenState",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::savedHiddenState
))); 
21659   SWIG_Python_SetConstant(d
, "AuiPaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::actionPane
))); 
21660   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeCaption
))); 
21661   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeGripper
))); 
21662   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDock
))); 
21663   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDockSizer
))); 
21664   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePane",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePane
))); 
21665   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneSizer
))); 
21666   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeBackground
))); 
21667   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneBorder
))); 
21668   SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneButton
))); 
21669   PyDict_SetItemString(d
, "wxEVT_AUI_PANE_BUTTON", PyInt_FromLong(wxEVT_AUI_PANE_BUTTON
)); 
21670   PyDict_SetItemString(d
, "wxEVT_AUI_PANE_CLOSE", PyInt_FromLong(wxEVT_AUI_PANE_CLOSE
)); 
21671   PyDict_SetItemString(d
, "wxEVT_AUI_PANE_MAXIMIZE", PyInt_FromLong(wxEVT_AUI_PANE_MAXIMIZE
)); 
21672   PyDict_SetItemString(d
, "wxEVT_AUI_PANE_RESTORE", PyInt_FromLong(wxEVT_AUI_PANE_RESTORE
)); 
21673   PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
)); 
21674   PyDict_SetItemString(d
, "wxEVT_AUI_FIND_MANAGER", PyInt_FromLong(wxEVT_AUI_FIND_MANAGER
)); 
21675   SWIG_Python_SetConstant(d
, "AUI_NB_TOP",SWIG_From_int(static_cast< int >(wxAUI_NB_TOP
))); 
21676   SWIG_Python_SetConstant(d
, "AUI_NB_LEFT",SWIG_From_int(static_cast< int >(wxAUI_NB_LEFT
))); 
21677   SWIG_Python_SetConstant(d
, "AUI_NB_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_NB_RIGHT
))); 
21678   SWIG_Python_SetConstant(d
, "AUI_NB_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_NB_BOTTOM
))); 
21679   SWIG_Python_SetConstant(d
, "AUI_NB_TAB_SPLIT",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_SPLIT
))); 
21680   SWIG_Python_SetConstant(d
, "AUI_NB_TAB_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_MOVE
))); 
21681   SWIG_Python_SetConstant(d
, "AUI_NB_TAB_EXTERNAL_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_EXTERNAL_MOVE
))); 
21682   SWIG_Python_SetConstant(d
, "AUI_NB_TAB_FIXED_WIDTH",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_FIXED_WIDTH
))); 
21683   SWIG_Python_SetConstant(d
, "AUI_NB_SCROLL_BUTTONS",SWIG_From_int(static_cast< int >(wxAUI_NB_SCROLL_BUTTONS
))); 
21684   SWIG_Python_SetConstant(d
, "AUI_NB_WINDOWLIST_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_WINDOWLIST_BUTTON
))); 
21685   SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_BUTTON
))); 
21686   SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ACTIVE_TAB",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ACTIVE_TAB
))); 
21687   SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ALL_TABS",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ALL_TABS
))); 
21688   SWIG_Python_SetConstant(d
, "AUI_NB_DEFAULT_STYLE",SWIG_From_int(static_cast< int >(wxAUI_NB_DEFAULT_STYLE
))); 
21689   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
)); 
21690   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
)); 
21691   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
)); 
21692   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
)); 
21693   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
)); 
21694   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
)); 
21695   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
)); 
21696   PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
));