fxruby 1.6.47-x64-mingw-ucrt → 1.6.48-x64-mingw-ucrt

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +6 -1
  3. data/doap.rdf +1 -1
  4. data/ext/fox16_c/FXRuby.cpp +2 -2
  5. data/ext/fox16_c/core_wrap.cpp +497 -412
  6. data/ext/fox16_c/dc_wrap.cpp +215 -128
  7. data/ext/fox16_c/dialogs_wrap.cpp +1333 -1246
  8. data/ext/fox16_c/extconf.rb +3 -3
  9. data/ext/fox16_c/frames_wrap.cpp +633 -550
  10. data/ext/fox16_c/fx3d_wrap.cpp +1556 -1471
  11. data/ext/fox16_c/iconlist_wrap.cpp +555 -468
  12. data/ext/fox16_c/icons_wrap.cpp +1062 -975
  13. data/ext/fox16_c/image_wrap.cpp +912 -825
  14. data/ext/fox16_c/label_wrap.cpp +744 -657
  15. data/ext/fox16_c/layout_wrap.cpp +564 -477
  16. data/ext/fox16_c/list_wrap.cpp +556 -469
  17. data/ext/fox16_c/markfuncs.cpp +1 -1
  18. data/ext/fox16_c/mdi_wrap.cpp +1453 -1366
  19. data/ext/fox16_c/menu_wrap.cpp +1216 -1129
  20. data/ext/fox16_c/scintilla_wrap.cpp +1034 -943
  21. data/ext/fox16_c/swigruby.h +88 -28
  22. data/ext/fox16_c/table_wrap.cpp +1034 -945
  23. data/ext/fox16_c/text_wrap.cpp +1029 -942
  24. data/ext/fox16_c/treelist_wrap.cpp +1083 -996
  25. data/ext/fox16_c/ui_wrap.cpp +1210 -1123
  26. data/lib/3.1/fox16_c.so +0 -0
  27. data/lib/3.2/fox16_c.so +0 -0
  28. data/lib/3.3/fox16_c.so +0 -0
  29. data/lib/fox16/version.rb +1 -1
  30. data/ports/x64-mingw-ucrt/bin/libFOX-1.6-0.dll +0 -0
  31. data/ports/x64-mingw-ucrt/bin/libfxscintilla-20.dll +0 -0
  32. data/ports/x64-mingw-ucrt/bin/libjpeg-62.dll +0 -0
  33. data/ports/x64-mingw-ucrt/bin/libpng16-16.dll +0 -0
  34. data/ports/x64-mingw-ucrt/bin/libtiff-6.dll +0 -0
  35. data/ports/x64-mingw-ucrt/bin/zlib1.dll +0 -0
  36. data/swig-interfaces/FXFileDialog.i +2 -2
  37. data/swig-interfaces/FXFileSelector.i +1 -1
  38. data/swig-interfaces/FXGLViewer.i +1 -1
  39. data/swig-interfaces/ruby-typemaps.i +1 -1
  40. metadata +2 -2
@@ -1,42 +1,14 @@
1
1
  /* ----------------------------------------------------------------------------
2
- * This file was automatically generated by SWIG (http://www.swig.org).
3
- * Version 4.0.2
2
+ * This file was automatically generated by SWIG (https://www.swig.org).
3
+ * Version 4.2.0
4
4
  *
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.
5
+ * Do not make changes to this file unless you know what you are doing - modify
6
+ * the SWIG interface file instead.
9
7
  * ----------------------------------------------------------------------------- */
10
8
 
11
9
 
12
- #ifndef SWIGRUBY
10
+ #define SWIG_VERSION 0x040200
13
11
  #define SWIGRUBY
14
- #endif
15
-
16
-
17
-
18
- #ifdef __cplusplus
19
- /* SwigValueWrapper is described in swig.swg */
20
- template<typename T> class SwigValueWrapper {
21
- struct SwigMovePointer {
22
- T *ptr;
23
- SwigMovePointer(T *p) : ptr(p) { }
24
- ~SwigMovePointer() { delete ptr; }
25
- SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
26
- } pointer;
27
- SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
28
- SwigValueWrapper(const SwigValueWrapper<T>& rhs);
29
- public:
30
- SwigValueWrapper() : pointer(0) { }
31
- SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }
32
- operator T&() const { return *pointer.ptr; }
33
- T *operator&() { return pointer.ptr; }
34
- };
35
-
36
- template <typename T> T SwigValueInit() {
37
- return T();
38
- }
39
- #endif
40
12
 
41
13
  /* -----------------------------------------------------------------------------
42
14
  * This section contains generic SWIG labels for method/variable
@@ -162,6 +134,12 @@ template <typename T> T SwigValueInit() {
162
134
  # pragma warning disable 592
163
135
  #endif
164
136
 
137
+ #if __cplusplus >=201103L
138
+ # define SWIG_NULLPTR nullptr
139
+ #else
140
+ # define SWIG_NULLPTR NULL
141
+ #endif
142
+
165
143
  /* -----------------------------------------------------------------------------
166
144
  * This section contains generic SWIG labels for method/variable
167
145
  * declarations/attributes, and other compiler dependent labels.
@@ -286,6 +264,12 @@ template <typename T> T SwigValueInit() {
286
264
  # pragma warning disable 592
287
265
  #endif
288
266
 
267
+ #if __cplusplus >=201103L
268
+ # define SWIG_NULLPTR nullptr
269
+ #else
270
+ # define SWIG_NULLPTR NULL
271
+ #endif
272
+
289
273
  /* -----------------------------------------------------------------------------
290
274
  * swigrun.swg
291
275
  *
@@ -332,6 +316,8 @@ template <typename T> T SwigValueInit() {
332
316
  #define SWIG_POINTER_DISOWN 0x1
333
317
  #define SWIG_CAST_NEW_MEMORY 0x2
334
318
  #define SWIG_POINTER_NO_NULL 0x4
319
+ #define SWIG_POINTER_CLEAR 0x8
320
+ #define SWIG_POINTER_RELEASE (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
335
321
 
336
322
  /* Flags for new pointer objects */
337
323
  #define SWIG_POINTER_OWN 0x1
@@ -403,7 +389,7 @@ template <typename T> T SwigValueInit() {
403
389
  SWIG errors code.
404
390
 
405
391
  Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
406
- allows to return the 'cast rank', for example, if you have this
392
+ allows returning the 'cast rank', for example, if you have this
407
393
 
408
394
  int food(double)
409
395
  int fooi(int);
@@ -417,7 +403,13 @@ template <typename T> T SwigValueInit() {
417
403
  */
418
404
 
419
405
  #define SWIG_OK (0)
406
+ /* Runtime errors are < 0 */
420
407
  #define SWIG_ERROR (-1)
408
+ /* Errors in range -1 to -99 are in swigerrors.swg (errors for all languages including those not using the runtime) */
409
+ /* Errors in range -100 to -199 are language specific errors defined in *errors.swg */
410
+ /* Errors < -200 are generic runtime specific errors */
411
+ #define SWIG_ERROR_RELEASE_NOT_OWNED (-200)
412
+
421
413
  #define SWIG_IsOK(r) (r >= 0)
422
414
  #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
423
415
 
@@ -425,14 +417,14 @@ template <typename T> T SwigValueInit() {
425
417
  #define SWIG_CASTRANKLIMIT (1 << 8)
426
418
  /* The NewMask denotes the object was created (using new/malloc) */
427
419
  #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
428
- /* The TmpMask is for in/out typemaps that use temporal objects */
420
+ /* The TmpMask is for in/out typemaps that use temporary objects */
429
421
  #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
430
422
  /* Simple returning values */
431
423
  #define SWIG_BADOBJ (SWIG_ERROR)
432
424
  #define SWIG_OLDOBJ (SWIG_OK)
433
425
  #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
434
426
  #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
435
- /* Check, add and del mask methods */
427
+ /* Check, add and del object mask methods */
436
428
  #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
437
429
  #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
438
430
  #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
@@ -461,6 +453,23 @@ SWIGINTERNINLINE int SWIG_CheckState(int r) {
461
453
  # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
462
454
  #endif
463
455
 
456
+ /* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
457
+ * if you're missing it.
458
+ */
459
+ #if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
460
+ (defined __cplusplus && __cplusplus >= 201103L) || \
461
+ defined SWIG_HAVE_SNPRINTF) && \
462
+ !defined SWIG_NO_SNPRINTF
463
+ # define SWIG_snprintf(O,S,F,A) snprintf(O,S,F,A)
464
+ # define SWIG_snprintf2(O,S,F,A,B) snprintf(O,S,F,A,B)
465
+ #else
466
+ /* Fallback versions ignore the buffer size, but most of our uses either have a
467
+ * fixed maximum possible size or dynamically allocate a buffer that's large
468
+ * enough.
469
+ */
470
+ # define SWIG_snprintf(O,S,F,A) sprintf(O,F,A)
471
+ # define SWIG_snprintf2(O,S,F,A,B) sprintf(O,F,A,B)
472
+ #endif
464
473
 
465
474
  #include <string.h>
466
475
 
@@ -578,7 +587,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
578
587
  Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
579
588
  */
580
589
  SWIGRUNTIME swig_cast_info *
581
- SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {
590
+ SWIG_TypeCheckStruct(const swig_type_info *from, swig_type_info *ty) {
582
591
  if (ty) {
583
592
  swig_cast_info *iter = ty->cast;
584
593
  while (iter) {
@@ -638,9 +647,9 @@ SWIG_TypeName(const swig_type_info *ty) {
638
647
  SWIGRUNTIME const char *
639
648
  SWIG_TypePrettyName(const swig_type_info *type) {
640
649
  /* The "str" field contains the equivalent pretty names of the
641
- type, separated by vertical-bar characters. We choose
642
- to print the last name, as it is often (?) the most
643
- specific. */
650
+ type, separated by vertical-bar characters. Choose the last
651
+ name. It should be the most specific; a fully resolved name
652
+ but not necessarily with default template parameters expanded. */
644
653
  if (!type) return NULL;
645
654
  if (type->str != NULL) {
646
655
  const char *last_name = type->str;
@@ -860,7 +869,7 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
860
869
  }
861
870
  #endif
862
871
 
863
- /* Errors in SWIG */
872
+ /* SWIG Errors applicable to all language modules, values are reserved from -1 to -99 */
864
873
  #define SWIG_UnknownError -1
865
874
  #define SWIG_IOError -2
866
875
  #define SWIG_RuntimeError -3
@@ -876,6 +885,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
876
885
  #define SWIG_NullReferenceError -13
877
886
 
878
887
 
888
+ #if __GNUC__ >= 7
889
+ #pragma GCC diagnostic push
890
+ #if defined(__cplusplus)
891
+ #pragma GCC diagnostic ignored "-Wregister"
892
+ #if __GNUC__ >= 10
893
+ #pragma GCC diagnostic ignored "-Wvolatile"
894
+ #if __GNUC__ >= 11
895
+ #pragma GCC diagnostic ignored "-Wdeprecated-enum-enum-conversion"
896
+ #endif
897
+ #endif
898
+ #endif
899
+ #endif
879
900
 
880
901
  #include <ruby.h>
881
902
 
@@ -891,6 +912,11 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
891
912
  # define RUBY_VOIDP_METHOD_FUNC(func) ((void *(*)(ANYARGS))(func))
892
913
  #endif
893
914
 
915
+ #include <ruby/version.h> /* For RUBY_API_VERSION_CODE */
916
+
917
+ #if __GNUC__ >= 7
918
+ #pragma GCC diagnostic pop
919
+ #endif
894
920
 
895
921
  /* Ruby 1.9.1 has a "memoisation optimisation" when compiling with GCC which
896
922
  * breaks using rb_intern as an lvalue, as SWIG does. We work around this
@@ -992,9 +1018,9 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
992
1018
  /*
993
1019
  * The following macros are used for providing the correct type of a
994
1020
  * function pointer to the Ruby C API.
995
- * Starting with Ruby 2.7 (corresponding to RB_METHOD_DEFINITION_DECL being
996
- * defined) these macros act transparently due to Ruby's moving away from
997
- * ANYARGS and instead employing strict function signatures.
1021
+ *
1022
+ * Starting with Ruby 2.7 these macros act transparently due to Ruby's moving
1023
+ * moving away from ANYARGS and instead employing strict function signatures.
998
1024
  *
999
1025
  * Note: In case of C (not C++) the macros are transparent even before
1000
1026
  * Ruby 2.7 due to the fact that the Ruby C API used function declarators
@@ -1018,7 +1044,7 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
1018
1044
  * SWIG_RUBY_INT_ANYARGS_FUNC(f) is used for the function pointer
1019
1045
  * argument(s) of Ruby C API functions like st_foreach().
1020
1046
  */
1021
- #if defined(__cplusplus) && !defined(RB_METHOD_DEFINITION_DECL)
1047
+ #if defined(__cplusplus) && RUBY_API_VERSION_CODE < 20700
1022
1048
  # define PROTECTFUNC(f) ((VALUE (*)(VALUE)) f)
1023
1049
  # define VALUEFUNC(f) ((VALUE (*)(ANYARGS)) f)
1024
1050
  # define VOIDFUNC(f) ((RUBY_DATA_FUNC) f)
@@ -1171,7 +1197,7 @@ const char* Ruby_Format_TypeError( const char* msg,
1171
1197
  }
1172
1198
 
1173
1199
  str = rb_str_cat2( str, "Expected argument " );
1174
- sprintf( buf, "%d of type ", argn-1 );
1200
+ SWIG_snprintf( buf, sizeof( buf), "%d of type ", argn-1 );
1175
1201
  str = rb_str_cat2( str, buf );
1176
1202
  str = rb_str_cat2( str, type );
1177
1203
  str = rb_str_cat2( str, ", but got " );
@@ -1470,6 +1496,7 @@ static VALUE swig_runtime_data_type_pointer = Qnil;
1470
1496
  /* Global IDs used to keep some internal SWIG stuff */
1471
1497
  static ID swig_arity_id = 0;
1472
1498
  static ID swig_call_id = 0;
1499
+ static ID swig_lowerthan_id = 0;
1473
1500
 
1474
1501
  /*
1475
1502
  If your swig extension is to be run within an embedded ruby and has
@@ -1521,7 +1548,7 @@ SWIG_Ruby_ExceptionType(swig_type_info *desc, VALUE obj) {
1521
1548
  VALUE exceptionClass = getExceptionClass();
1522
1549
  if (rb_obj_is_kind_of(obj, exceptionClass)) {
1523
1550
  return obj;
1524
- } else {
1551
+ } else {
1525
1552
  return rb_exc_new3(rb_eRuntimeError, rb_obj_as_string(obj));
1526
1553
  }
1527
1554
  }
@@ -1534,6 +1561,7 @@ SWIG_Ruby_InitRuntime(void)
1534
1561
  _mSWIG = rb_define_module("SWIG");
1535
1562
  swig_call_id = rb_intern("call");
1536
1563
  swig_arity_id = rb_intern("arity");
1564
+ swig_lowerthan_id = rb_intern("<");
1537
1565
  }
1538
1566
  }
1539
1567
 
@@ -1541,13 +1569,14 @@ SWIG_Ruby_InitRuntime(void)
1541
1569
  SWIGRUNTIME void
1542
1570
  SWIG_Ruby_define_class(swig_type_info *type)
1543
1571
  {
1544
- char *klass_name = (char *) malloc(4 + strlen(type->name) + 1);
1545
- sprintf(klass_name, "TYPE%s", type->name);
1572
+ size_t klass_len = 4 + strlen(type->name) + 1;
1573
+ char *klass_name = (char *) malloc(klass_len);
1574
+ SWIG_snprintf(klass_name, klass_len, "TYPE%s", type->name);
1546
1575
  if (NIL_P(_cSWIG_Pointer)) {
1547
1576
  _cSWIG_Pointer = rb_define_class_under(_mSWIG, "Pointer", rb_cObject);
1548
1577
  rb_undef_method(CLASS_OF(_cSWIG_Pointer), "new");
1549
1578
  }
1550
- rb_define_class_under(_mSWIG, klass_name, _cSWIG_Pointer);
1579
+ rb_undef_alloc_func(rb_define_class_under(_mSWIG, klass_name, _cSWIG_Pointer));
1551
1580
  free((void *) klass_name);
1552
1581
  }
1553
1582
 
@@ -1598,8 +1627,9 @@ SWIG_Ruby_NewPointerObj(void *ptr, swig_type_info *type, int flags)
1598
1627
  SWIG_RubyAddTracking(ptr, obj);
1599
1628
  }
1600
1629
  } else {
1601
- klass_name = (char *) malloc(4 + strlen(type->name) + 1);
1602
- sprintf(klass_name, "TYPE%s", type->name);
1630
+ size_t klass_len = 4 + strlen(type->name) + 1;
1631
+ klass_name = (char *) malloc(klass_len);
1632
+ SWIG_snprintf(klass_name, klass_len, "TYPE%s", type->name);
1603
1633
  klass = rb_const_get(_mSWIG, rb_intern(klass_name));
1604
1634
  free((void *) klass_name);
1605
1635
  obj = Data_Wrap_Struct(klass, 0, 0, ptr);
@@ -1671,6 +1701,11 @@ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags,
1671
1701
  own->own = 0;
1672
1702
  }
1673
1703
 
1704
+ if (((flags & SWIG_POINTER_RELEASE) == SWIG_POINTER_RELEASE)) {
1705
+ if (!RDATA(obj)->dfree)
1706
+ return SWIG_ERROR_RELEASE_NOT_OWNED;
1707
+ }
1708
+
1674
1709
  /* Check to see if the input object is giving up ownership
1675
1710
  of the underlying C struct or C++ object. If so then we
1676
1711
  need to reset the destructor since the Ruby object no
@@ -1682,7 +1717,7 @@ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags,
1682
1717
  swig_class *sklass = (swig_class *) ty->clientdata;
1683
1718
  track = sklass->trackObjects;
1684
1719
  }
1685
-
1720
+
1686
1721
  if (track) {
1687
1722
  /* We are tracking objects for this class. Thus we change the destructor
1688
1723
  * to SWIG_RubyRemoveTracking. This allows us to
@@ -1696,6 +1731,10 @@ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags,
1696
1731
  }
1697
1732
  }
1698
1733
 
1734
+ if (flags & SWIG_POINTER_CLEAR) {
1735
+ DATA_PTR(obj) = 0;
1736
+ }
1737
+
1699
1738
  /* Do type-checking if type info was provided */
1700
1739
  if (ty) {
1701
1740
  if (ty->clientdata) {
@@ -1803,6 +1842,7 @@ SWIG_Ruby_SetModule(swig_module_info *pointer)
1803
1842
  {
1804
1843
  /* register a new class */
1805
1844
  VALUE cl = rb_define_class("SWIG_RUNTIME_DATA", rb_cObject);rb_undef_alloc_func(cl);
1845
+ rb_undef_alloc_func(cl);
1806
1846
  /* create and store the structure pointer to a global variable */
1807
1847
  swig_runtime_data_type_pointer = Data_Wrap_Struct(cl, 0, 0, pointer);
1808
1848
  rb_define_readonly_variable("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, &swig_runtime_data_type_pointer);
@@ -1833,7 +1873,7 @@ int SWIG_Ruby_arity( VALUE proc, int minimal )
1833
1873
  {
1834
1874
  if ( rb_respond_to( proc, swig_arity_id ) )
1835
1875
  {
1836
- VALUE num = rb_funcall( proc, swig_arity_id, 0 );
1876
+ VALUE num = rb_funcall2( proc, swig_arity_id, 0, 0 );
1837
1877
  int arity = NUM2INT(num);
1838
1878
  if ( arity < 0 && (arity+1) < -minimal ) return 1;
1839
1879
  if ( arity == minimal ) return 1;
@@ -1851,7 +1891,7 @@ int SWIG_Ruby_arity( VALUE proc, int minimal )
1851
1891
 
1852
1892
  #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
1853
1893
 
1854
- #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
1894
+ #define SWIG_contract_assert(expr, msg) do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)
1855
1895
 
1856
1896
 
1857
1897
 
@@ -1953,12 +1993,56 @@ static swig_module_info swig_module = {swig_types, 81, 0, 0, 0, 0};
1953
1993
 
1954
1994
 
1955
1995
 
1956
- #define SWIG_RUBY_THREAD_BEGIN_BLOCK
1957
- #define SWIG_RUBY_THREAD_END_BLOCK
1996
+ #ifdef __cplusplus
1997
+ #include <utility>
1998
+ /* SwigValueWrapper is described in swig.swg */
1999
+ template<typename T> class SwigValueWrapper {
2000
+ struct SwigSmartPointer {
2001
+ T *ptr;
2002
+ SwigSmartPointer(T *p) : ptr(p) { }
2003
+ ~SwigSmartPointer() { delete ptr; }
2004
+ SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
2005
+ void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
2006
+ } pointer;
2007
+ SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
2008
+ SwigValueWrapper(const SwigValueWrapper<T>& rhs);
2009
+ public:
2010
+ SwigValueWrapper() : pointer(0) { }
2011
+ SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
2012
+ #if __cplusplus >=201103L
2013
+ SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
2014
+ operator T&&() const { return std::move(*pointer.ptr); }
2015
+ #else
2016
+ operator T&() const { return *pointer.ptr; }
2017
+ #endif
2018
+ T *operator&() const { return pointer.ptr; }
2019
+ static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
2020
+ };
2021
+
2022
+ /*
2023
+ * SwigValueInit() is a generic initialisation solution as the following approach:
2024
+ *
2025
+ * T c_result = T();
2026
+ *
2027
+ * doesn't compile for all types for example:
2028
+ *
2029
+ * unsigned int c_result = unsigned int();
2030
+ */
2031
+ template <typename T> T SwigValueInit() {
2032
+ return T();
2033
+ }
1958
2034
 
2035
+ #if __cplusplus >=201103L
2036
+ # define SWIG_STD_MOVE(OBJ) std::move(OBJ)
2037
+ #else
2038
+ # define SWIG_STD_MOVE(OBJ) OBJ
2039
+ #endif
2040
+
2041
+ #endif
1959
2042
 
1960
- #define SWIGVERSION 0x040002
1961
- #define SWIG_VERSION SWIGVERSION
2043
+
2044
+ #define SWIG_RUBY_THREAD_BEGIN_BLOCK
2045
+ #define SWIG_RUBY_THREAD_END_BLOCK
1962
2046
 
1963
2047
 
1964
2048
  #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
@@ -4105,7 +4189,7 @@ _wrap_FXLabel_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
4105
4189
  FXRegion *arg2 = 0 ;
4106
4190
  void *argp1 = 0 ;
4107
4191
  int res1 = 0 ;
4108
- void *argp2 ;
4192
+ void *argp2 = 0 ;
4109
4193
  int res2 = 0 ;
4110
4194
 
4111
4195
  if ((argc < 1) || (argc > 1)) {
@@ -4201,7 +4285,7 @@ SWIGINTERN VALUE _wrap_FXLabel_setShape(int nargs, VALUE *args, VALUE self) {
4201
4285
  argv[ii] = args[ii-1];
4202
4286
  }
4203
4287
  if (argc == 2) {
4204
- int _v;
4288
+ int _v = 0;
4205
4289
  void *vptr = 0;
4206
4290
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXLabel, 0);
4207
4291
  _v = SWIG_CheckState(res);
@@ -4215,7 +4299,7 @@ SWIGINTERN VALUE _wrap_FXLabel_setShape(int nargs, VALUE *args, VALUE self) {
4215
4299
  }
4216
4300
  }
4217
4301
  if (argc == 2) {
4218
- int _v;
4302
+ int _v = 0;
4219
4303
  void *vptr = 0;
4220
4304
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXLabel, 0);
4221
4305
  _v = SWIG_CheckState(res);
@@ -4229,7 +4313,7 @@ SWIGINTERN VALUE _wrap_FXLabel_setShape(int nargs, VALUE *args, VALUE self) {
4229
4313
  }
4230
4314
  }
4231
4315
  if (argc == 2) {
4232
- int _v;
4316
+ int _v = 0;
4233
4317
  void *vptr = 0;
4234
4318
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXLabel, 0);
4235
4319
  _v = SWIG_CheckState(res);
@@ -5941,7 +6025,7 @@ _wrap_FXButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
5941
6025
  FXRegion *arg2 = 0 ;
5942
6026
  void *argp1 = 0 ;
5943
6027
  int res1 = 0 ;
5944
- void *argp2 ;
6028
+ void *argp2 = 0 ;
5945
6029
  int res2 = 0 ;
5946
6030
 
5947
6031
  if ((argc < 1) || (argc > 1)) {
@@ -6037,7 +6121,7 @@ SWIGINTERN VALUE _wrap_FXButton_setShape(int nargs, VALUE *args, VALUE self) {
6037
6121
  argv[ii] = args[ii-1];
6038
6122
  }
6039
6123
  if (argc == 2) {
6040
- int _v;
6124
+ int _v = 0;
6041
6125
  void *vptr = 0;
6042
6126
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXButton, 0);
6043
6127
  _v = SWIG_CheckState(res);
@@ -6051,7 +6135,7 @@ SWIGINTERN VALUE _wrap_FXButton_setShape(int nargs, VALUE *args, VALUE self) {
6051
6135
  }
6052
6136
  }
6053
6137
  if (argc == 2) {
6054
- int _v;
6138
+ int _v = 0;
6055
6139
  void *vptr = 0;
6056
6140
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXButton, 0);
6057
6141
  _v = SWIG_CheckState(res);
@@ -6065,7 +6149,7 @@ SWIGINTERN VALUE _wrap_FXButton_setShape(int nargs, VALUE *args, VALUE self) {
6065
6149
  }
6066
6150
  }
6067
6151
  if (argc == 2) {
6068
- int _v;
6152
+ int _v = 0;
6069
6153
  void *vptr = 0;
6070
6154
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXButton, 0);
6071
6155
  _v = SWIG_CheckState(res);
@@ -7927,7 +8011,7 @@ _wrap_FXCheckButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
7927
8011
  FXRegion *arg2 = 0 ;
7928
8012
  void *argp1 = 0 ;
7929
8013
  int res1 = 0 ;
7930
- void *argp2 ;
8014
+ void *argp2 = 0 ;
7931
8015
  int res2 = 0 ;
7932
8016
 
7933
8017
  if ((argc < 1) || (argc > 1)) {
@@ -8023,7 +8107,7 @@ SWIGINTERN VALUE _wrap_FXCheckButton_setShape(int nargs, VALUE *args, VALUE self
8023
8107
  argv[ii] = args[ii-1];
8024
8108
  }
8025
8109
  if (argc == 2) {
8026
- int _v;
8110
+ int _v = 0;
8027
8111
  void *vptr = 0;
8028
8112
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXCheckButton, 0);
8029
8113
  _v = SWIG_CheckState(res);
@@ -8037,7 +8121,7 @@ SWIGINTERN VALUE _wrap_FXCheckButton_setShape(int nargs, VALUE *args, VALUE self
8037
8121
  }
8038
8122
  }
8039
8123
  if (argc == 2) {
8040
- int _v;
8124
+ int _v = 0;
8041
8125
  void *vptr = 0;
8042
8126
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXCheckButton, 0);
8043
8127
  _v = SWIG_CheckState(res);
@@ -8051,7 +8135,7 @@ SWIGINTERN VALUE _wrap_FXCheckButton_setShape(int nargs, VALUE *args, VALUE self
8051
8135
  }
8052
8136
  }
8053
8137
  if (argc == 2) {
8054
- int _v;
8138
+ int _v = 0;
8055
8139
  void *vptr = 0;
8056
8140
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXCheckButton, 0);
8057
8141
  _v = SWIG_CheckState(res);
@@ -9880,7 +9964,7 @@ _wrap_FXMenuButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
9880
9964
  FXRegion *arg2 = 0 ;
9881
9965
  void *argp1 = 0 ;
9882
9966
  int res1 = 0 ;
9883
- void *argp2 ;
9967
+ void *argp2 = 0 ;
9884
9968
  int res2 = 0 ;
9885
9969
 
9886
9970
  if ((argc < 1) || (argc > 1)) {
@@ -9976,7 +10060,7 @@ SWIGINTERN VALUE _wrap_FXMenuButton_setShape(int nargs, VALUE *args, VALUE self)
9976
10060
  argv[ii] = args[ii-1];
9977
10061
  }
9978
10062
  if (argc == 2) {
9979
- int _v;
10063
+ int _v = 0;
9980
10064
  void *vptr = 0;
9981
10065
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuButton, 0);
9982
10066
  _v = SWIG_CheckState(res);
@@ -9990,7 +10074,7 @@ SWIGINTERN VALUE _wrap_FXMenuButton_setShape(int nargs, VALUE *args, VALUE self)
9990
10074
  }
9991
10075
  }
9992
10076
  if (argc == 2) {
9993
- int _v;
10077
+ int _v = 0;
9994
10078
  void *vptr = 0;
9995
10079
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuButton, 0);
9996
10080
  _v = SWIG_CheckState(res);
@@ -10004,7 +10088,7 @@ SWIGINTERN VALUE _wrap_FXMenuButton_setShape(int nargs, VALUE *args, VALUE self)
10004
10088
  }
10005
10089
  }
10006
10090
  if (argc == 2) {
10007
- int _v;
10091
+ int _v = 0;
10008
10092
  void *vptr = 0;
10009
10093
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuButton, 0);
10010
10094
  _v = SWIG_CheckState(res);
@@ -11388,7 +11472,7 @@ _wrap_FXOption_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
11388
11472
  FXRegion *arg2 = 0 ;
11389
11473
  void *argp1 = 0 ;
11390
11474
  int res1 = 0 ;
11391
- void *argp2 ;
11475
+ void *argp2 = 0 ;
11392
11476
  int res2 = 0 ;
11393
11477
 
11394
11478
  if ((argc < 1) || (argc > 1)) {
@@ -11484,7 +11568,7 @@ SWIGINTERN VALUE _wrap_FXOption_setShape(int nargs, VALUE *args, VALUE self) {
11484
11568
  argv[ii] = args[ii-1];
11485
11569
  }
11486
11570
  if (argc == 2) {
11487
- int _v;
11571
+ int _v = 0;
11488
11572
  void *vptr = 0;
11489
11573
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXOption, 0);
11490
11574
  _v = SWIG_CheckState(res);
@@ -11498,7 +11582,7 @@ SWIGINTERN VALUE _wrap_FXOption_setShape(int nargs, VALUE *args, VALUE self) {
11498
11582
  }
11499
11583
  }
11500
11584
  if (argc == 2) {
11501
- int _v;
11585
+ int _v = 0;
11502
11586
  void *vptr = 0;
11503
11587
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXOption, 0);
11504
11588
  _v = SWIG_CheckState(res);
@@ -11512,7 +11596,7 @@ SWIGINTERN VALUE _wrap_FXOption_setShape(int nargs, VALUE *args, VALUE self) {
11512
11596
  }
11513
11597
  }
11514
11598
  if (argc == 2) {
11515
- int _v;
11599
+ int _v = 0;
11516
11600
  void *vptr = 0;
11517
11601
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXOption, 0);
11518
11602
  _v = SWIG_CheckState(res);
@@ -13224,7 +13308,7 @@ _wrap_FXOptionMenu_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
13224
13308
  FXRegion *arg2 = 0 ;
13225
13309
  void *argp1 = 0 ;
13226
13310
  int res1 = 0 ;
13227
- void *argp2 ;
13311
+ void *argp2 = 0 ;
13228
13312
  int res2 = 0 ;
13229
13313
 
13230
13314
  if ((argc < 1) || (argc > 1)) {
@@ -13320,7 +13404,7 @@ SWIGINTERN VALUE _wrap_FXOptionMenu_setShape(int nargs, VALUE *args, VALUE self)
13320
13404
  argv[ii] = args[ii-1];
13321
13405
  }
13322
13406
  if (argc == 2) {
13323
- int _v;
13407
+ int _v = 0;
13324
13408
  void *vptr = 0;
13325
13409
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXOptionMenu, 0);
13326
13410
  _v = SWIG_CheckState(res);
@@ -13334,7 +13418,7 @@ SWIGINTERN VALUE _wrap_FXOptionMenu_setShape(int nargs, VALUE *args, VALUE self)
13334
13418
  }
13335
13419
  }
13336
13420
  if (argc == 2) {
13337
- int _v;
13421
+ int _v = 0;
13338
13422
  void *vptr = 0;
13339
13423
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXOptionMenu, 0);
13340
13424
  _v = SWIG_CheckState(res);
@@ -13348,7 +13432,7 @@ SWIGINTERN VALUE _wrap_FXOptionMenu_setShape(int nargs, VALUE *args, VALUE self)
13348
13432
  }
13349
13433
  }
13350
13434
  if (argc == 2) {
13351
- int _v;
13435
+ int _v = 0;
13352
13436
  void *vptr = 0;
13353
13437
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXOptionMenu, 0);
13354
13438
  _v = SWIG_CheckState(res);
@@ -15210,7 +15294,7 @@ _wrap_FXRadioButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
15210
15294
  FXRegion *arg2 = 0 ;
15211
15295
  void *argp1 = 0 ;
15212
15296
  int res1 = 0 ;
15213
- void *argp2 ;
15297
+ void *argp2 = 0 ;
15214
15298
  int res2 = 0 ;
15215
15299
 
15216
15300
  if ((argc < 1) || (argc > 1)) {
@@ -15306,7 +15390,7 @@ SWIGINTERN VALUE _wrap_FXRadioButton_setShape(int nargs, VALUE *args, VALUE self
15306
15390
  argv[ii] = args[ii-1];
15307
15391
  }
15308
15392
  if (argc == 2) {
15309
- int _v;
15393
+ int _v = 0;
15310
15394
  void *vptr = 0;
15311
15395
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRadioButton, 0);
15312
15396
  _v = SWIG_CheckState(res);
@@ -15320,7 +15404,7 @@ SWIGINTERN VALUE _wrap_FXRadioButton_setShape(int nargs, VALUE *args, VALUE self
15320
15404
  }
15321
15405
  }
15322
15406
  if (argc == 2) {
15323
- int _v;
15407
+ int _v = 0;
15324
15408
  void *vptr = 0;
15325
15409
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRadioButton, 0);
15326
15410
  _v = SWIG_CheckState(res);
@@ -15334,7 +15418,7 @@ SWIGINTERN VALUE _wrap_FXRadioButton_setShape(int nargs, VALUE *args, VALUE self
15334
15418
  }
15335
15419
  }
15336
15420
  if (argc == 2) {
15337
- int _v;
15421
+ int _v = 0;
15338
15422
  void *vptr = 0;
15339
15423
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRadioButton, 0);
15340
15424
  _v = SWIG_CheckState(res);
@@ -16688,7 +16772,7 @@ _wrap_FXTabItem_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
16688
16772
  FXRegion *arg2 = 0 ;
16689
16773
  void *argp1 = 0 ;
16690
16774
  int res1 = 0 ;
16691
- void *argp2 ;
16775
+ void *argp2 = 0 ;
16692
16776
  int res2 = 0 ;
16693
16777
 
16694
16778
  if ((argc < 1) || (argc > 1)) {
@@ -16784,7 +16868,7 @@ SWIGINTERN VALUE _wrap_FXTabItem_setShape(int nargs, VALUE *args, VALUE self) {
16784
16868
  argv[ii] = args[ii-1];
16785
16869
  }
16786
16870
  if (argc == 2) {
16787
- int _v;
16871
+ int _v = 0;
16788
16872
  void *vptr = 0;
16789
16873
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTabItem, 0);
16790
16874
  _v = SWIG_CheckState(res);
@@ -16798,7 +16882,7 @@ SWIGINTERN VALUE _wrap_FXTabItem_setShape(int nargs, VALUE *args, VALUE self) {
16798
16882
  }
16799
16883
  }
16800
16884
  if (argc == 2) {
16801
- int _v;
16885
+ int _v = 0;
16802
16886
  void *vptr = 0;
16803
16887
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTabItem, 0);
16804
16888
  _v = SWIG_CheckState(res);
@@ -16812,7 +16896,7 @@ SWIGINTERN VALUE _wrap_FXTabItem_setShape(int nargs, VALUE *args, VALUE self) {
16812
16896
  }
16813
16897
  }
16814
16898
  if (argc == 2) {
16815
- int _v;
16899
+ int _v = 0;
16816
16900
  void *vptr = 0;
16817
16901
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTabItem, 0);
16818
16902
  _v = SWIG_CheckState(res);
@@ -18815,7 +18899,7 @@ _wrap_FXToggleButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
18815
18899
  FXRegion *arg2 = 0 ;
18816
18900
  void *argp1 = 0 ;
18817
18901
  int res1 = 0 ;
18818
- void *argp2 ;
18902
+ void *argp2 = 0 ;
18819
18903
  int res2 = 0 ;
18820
18904
 
18821
18905
  if ((argc < 1) || (argc > 1)) {
@@ -18911,7 +18995,7 @@ SWIGINTERN VALUE _wrap_FXToggleButton_setShape(int nargs, VALUE *args, VALUE sel
18911
18995
  argv[ii] = args[ii-1];
18912
18996
  }
18913
18997
  if (argc == 2) {
18914
- int _v;
18998
+ int _v = 0;
18915
18999
  void *vptr = 0;
18916
19000
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXToggleButton, 0);
18917
19001
  _v = SWIG_CheckState(res);
@@ -18925,7 +19009,7 @@ SWIGINTERN VALUE _wrap_FXToggleButton_setShape(int nargs, VALUE *args, VALUE sel
18925
19009
  }
18926
19010
  }
18927
19011
  if (argc == 2) {
18928
- int _v;
19012
+ int _v = 0;
18929
19013
  void *vptr = 0;
18930
19014
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXToggleButton, 0);
18931
19015
  _v = SWIG_CheckState(res);
@@ -18939,7 +19023,7 @@ SWIGINTERN VALUE _wrap_FXToggleButton_setShape(int nargs, VALUE *args, VALUE sel
18939
19023
  }
18940
19024
  }
18941
19025
  if (argc == 2) {
18942
- int _v;
19026
+ int _v = 0;
18943
19027
  void *vptr = 0;
18944
19028
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXToggleButton, 0);
18945
19029
  _v = SWIG_CheckState(res);
@@ -20580,7 +20664,7 @@ _wrap_FXPicker_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
20580
20664
  FXRegion *arg2 = 0 ;
20581
20665
  void *argp1 = 0 ;
20582
20666
  int res1 = 0 ;
20583
- void *argp2 ;
20667
+ void *argp2 = 0 ;
20584
20668
  int res2 = 0 ;
20585
20669
 
20586
20670
  if ((argc < 1) || (argc > 1)) {
@@ -20676,7 +20760,7 @@ SWIGINTERN VALUE _wrap_FXPicker_setShape(int nargs, VALUE *args, VALUE self) {
20676
20760
  argv[ii] = args[ii-1];
20677
20761
  }
20678
20762
  if (argc == 2) {
20679
- int _v;
20763
+ int _v = 0;
20680
20764
  void *vptr = 0;
20681
20765
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPicker, 0);
20682
20766
  _v = SWIG_CheckState(res);
@@ -20690,7 +20774,7 @@ SWIGINTERN VALUE _wrap_FXPicker_setShape(int nargs, VALUE *args, VALUE self) {
20690
20774
  }
20691
20775
  }
20692
20776
  if (argc == 2) {
20693
- int _v;
20777
+ int _v = 0;
20694
20778
  void *vptr = 0;
20695
20779
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPicker, 0);
20696
20780
  _v = SWIG_CheckState(res);
@@ -20704,7 +20788,7 @@ SWIGINTERN VALUE _wrap_FXPicker_setShape(int nargs, VALUE *args, VALUE self) {
20704
20788
  }
20705
20789
  }
20706
20790
  if (argc == 2) {
20707
- int _v;
20791
+ int _v = 0;
20708
20792
  void *vptr = 0;
20709
20793
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPicker, 0);
20710
20794
  _v = SWIG_CheckState(res);
@@ -20752,766 +20836,766 @@ fail:
20752
20836
 
20753
20837
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
20754
20838
 
20755
- static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20756
- return (void *)((FXComposite *) ((FXShell *) x));
20839
+ static void *_p_FXPickerTo_p_FXButton(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20840
+ return (void *)((FXButton *) ((FXPicker *) x));
20757
20841
  }
20758
- static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20759
- return (void *)((FXComposite *) ((FXRootWindow *) x));
20842
+ static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20843
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
20760
20844
  }
20761
20845
  static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20762
20846
  return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
20763
20847
  }
20764
- static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20765
- return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
20848
+ static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20849
+ return (void *)((FXComposite *) ((FXRootWindow *) x));
20766
20850
  }
20767
- static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20768
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
20851
+ static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20852
+ return (void *)((FXComposite *) ((FXShell *) x));
20769
20853
  }
20770
20854
  static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20771
20855
  return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
20772
20856
  }
20773
- static void *_p_FXTriStateButtonTo_p_FXToggleButton(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20774
- return (void *)((FXToggleButton *) ((FXTriStateButton *) x));
20775
- }
20776
- static void *_p_FXOptionTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20777
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXOption *) x));
20857
+ static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20858
+ return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
20778
20859
  }
20779
- static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20780
- return (void *)((FXWindow *) ((FXComposite *) x));
20860
+ static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20861
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
20781
20862
  }
20782
- static void *_p_FXTextFieldTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20783
- return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
20863
+ static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20864
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
20784
20865
  }
20785
- static void *_p_FXMenuButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20786
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXMenuButton *) x));
20866
+ static void *_p_FXButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20867
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
20787
20868
  }
20788
- static void *_p_FXCheckButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20789
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXCheckButton *) x));
20869
+ static void *_p_FXCheckButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20870
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXCheckButton *) x));
20790
20871
  }
20791
- static void *_p_FXArrowButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20792
- return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
20872
+ static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20873
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
20793
20874
  }
20794
- static void *_p_FXRadioButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20795
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXRadioButton *) x));
20875
+ static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20876
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
20796
20877
  }
20797
- static void *_p_FXToggleButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20798
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXToggleButton *) x));
20878
+ static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20879
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
20799
20880
  }
20800
- static void *_p_FXTriStateButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20801
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
20881
+ static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20882
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
20802
20883
  }
20803
- static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20804
- return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
20884
+ static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20885
+ return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
20805
20886
  }
20806
- static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20807
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
20887
+ static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20888
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
20808
20889
  }
20809
- static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20810
- return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
20890
+ static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20891
+ return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
20811
20892
  }
20812
- static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20813
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
20893
+ static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20894
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
20814
20895
  }
20815
- static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20816
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
20896
+ static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20897
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
20817
20898
  }
20818
- static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20819
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
20899
+ static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20900
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
20820
20901
  }
20821
- static void *_p_FXRulerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20822
- return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
20902
+ static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20903
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
20823
20904
  }
20824
- static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20825
- return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
20905
+ static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20906
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
20826
20907
  }
20827
- static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20828
- return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
20908
+ static void *_p_FXLabelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20909
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXLabel *) x));
20829
20910
  }
20830
- static void *_p_FXSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20831
- return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
20911
+ static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20912
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
20832
20913
  }
20833
- static void *_p_FXStatusLineTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20834
- return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
20914
+ static void *_p_FXMenuButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20915
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXMenuButton *) x));
20835
20916
  }
20836
- static void *_p_FXTabItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20837
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXTabItem *) x));
20917
+ static void *_p_FXOptionTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20918
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXOption *) x));
20838
20919
  }
20839
- static void *_p_FXKnobTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20840
- return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
20920
+ static void *_p_FXOptionMenuTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20921
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
20841
20922
  }
20842
- static void *_p_FXGradientBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20843
- return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
20923
+ static void *_p_FXPickerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20924
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
20844
20925
  }
20845
- static void *_p_FXColorWheelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20846
- return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
20926
+ static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20927
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
20847
20928
  }
20848
- static void *_p_FXBitmapFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20849
- return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
20929
+ static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20930
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
20850
20931
  }
20851
- static void *_p_FXImageFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20852
- return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
20932
+ static void *_p_FXRadioButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20933
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXRadioButton *) x));
20853
20934
  }
20854
- static void *_p_FXLabelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20855
- return (void *)((FXWindow *) (FXFrame *) ((FXLabel *) x));
20935
+ static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20936
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
20856
20937
  }
20857
- static void *_p_FXPickerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20858
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
20938
+ static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20939
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
20859
20940
  }
20860
- static void *_p_FXProgressBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20861
- return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
20941
+ static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20942
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
20862
20943
  }
20863
- static void *_p_FXOptionMenuTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20864
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
20944
+ static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20945
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
20865
20946
  }
20866
- static void *_p_FXHeaderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20867
- return (void *)((FXWindow *) (FXFrame *) ((FXHeader *) x));
20947
+ static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20948
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
20868
20949
  }
20869
- static void *_p_FXColorWellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20870
- return (void *)((FXWindow *) (FXFrame *) ((FXColorWell *) x));
20950
+ static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20951
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
20871
20952
  }
20872
- static void *_p_FXDialTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20873
- return (void *)((FXWindow *) (FXFrame *) ((FXDial *) x));
20953
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20954
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
20874
20955
  }
20875
- static void *_p_FXToolBarTabTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20876
- return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
20956
+ static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20957
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
20877
20958
  }
20878
- static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20879
- return (void *)((FXWindow *) ((FXFrame *) x));
20959
+ static void *_p_FXTabItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20960
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
20880
20961
  }
20881
- static void *_p_FXRealSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20882
- return (void *)((FXWindow *) (FXFrame *) ((FXRealSlider *) x));
20962
+ static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20963
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
20883
20964
  }
20884
- static void *_p_FXSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20885
- return (void *)((FXWindow *) (FXFrame *) ((FXSlider *) x));
20965
+ static void *_p_FXToggleButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20966
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXToggleButton *) x));
20886
20967
  }
20887
- static void *_p_FXButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20888
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXButton *) x));
20968
+ static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20969
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
20889
20970
  }
20890
- static void *_p_FXColorBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20891
- return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
20971
+ static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20972
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
20892
20973
  }
20893
- static void *_p_FXColorRingTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20894
- return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
20974
+ static void *_p_FXTriStateButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20975
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
20895
20976
  }
20896
- static void *_p_FXOptionTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20897
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOption *) x));
20977
+ static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20978
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
20898
20979
  }
20899
- static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20900
- return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
20980
+ static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20981
+ return (void *)((FXDrawable *) ((FXWindow *) x));
20901
20982
  }
20902
- static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20903
- return (void *)((FXObject *) ((FXAccelTable *) x));
20983
+ static void *_p_FXArrowButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20984
+ return (void *)((FXFrame *) ((FXArrowButton *) x));
20904
20985
  }
20905
- static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20906
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
20986
+ static void *_p_FXBitmapFrameTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20987
+ return (void *)((FXFrame *) ((FXBitmapFrame *) x));
20907
20988
  }
20908
- static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20909
- return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
20989
+ static void *_p_FXButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20990
+ return (void *)((FXFrame *) (FXLabel *) ((FXButton *) x));
20910
20991
  }
20911
- static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20912
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
20992
+ static void *_p_FXCheckButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20993
+ return (void *)((FXFrame *) (FXLabel *) ((FXCheckButton *) x));
20913
20994
  }
20914
- static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20915
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
20995
+ static void *_p_FXColorBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20996
+ return (void *)((FXFrame *) ((FXColorBar *) x));
20916
20997
  }
20917
- static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20918
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
20998
+ static void *_p_FXColorRingTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20999
+ return (void *)((FXFrame *) ((FXColorRing *) x));
20919
21000
  }
20920
- static void *_p_FXCheckButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20921
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXCheckButton *) x));
21001
+ static void *_p_FXColorWellTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21002
+ return (void *)((FXFrame *) ((FXColorWell *) x));
20922
21003
  }
20923
- static void *_p_FXMenuButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20924
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXMenuButton *) x));
21004
+ static void *_p_FXColorWheelTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21005
+ return (void *)((FXFrame *) ((FXColorWheel *) x));
20925
21006
  }
20926
- static void *_p_FXRadioButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20927
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXRadioButton *) x));
21007
+ static void *_p_FXDialTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21008
+ return (void *)((FXFrame *) ((FXDial *) x));
20928
21009
  }
20929
- static void *_p_FXToggleButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20930
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXToggleButton *) x));
21010
+ static void *_p_FXGradientBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21011
+ return (void *)((FXFrame *) ((FXGradientBar *) x));
20931
21012
  }
20932
- static void *_p_FXTriStateButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20933
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21013
+ static void *_p_FXHeaderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21014
+ return (void *)((FXFrame *) ((FXHeader *) x));
20934
21015
  }
20935
- static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20936
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
21016
+ static void *_p_FXHorizontalSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21017
+ return (void *)((FXFrame *) (FXSeparator *) ((FXHorizontalSeparator *) x));
20937
21018
  }
20938
- static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20939
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
21019
+ static void *_p_FXImageFrameTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21020
+ return (void *)((FXFrame *) ((FXImageFrame *) x));
20940
21021
  }
20941
- static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20942
- return (void *)((FXObject *) ((FXRecentFiles *) x));
21022
+ static void *_p_FXKnobTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21023
+ return (void *)((FXFrame *) ((FXKnob *) x));
20943
21024
  }
20944
- static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20945
- return (void *)((FXObject *) ((FXDocument *) x));
21025
+ static void *_p_FXLabelTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21026
+ return (void *)((FXFrame *) ((FXLabel *) x));
20946
21027
  }
20947
- static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20948
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
21028
+ static void *_p_FXMenuButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21029
+ return (void *)((FXFrame *) (FXLabel *) ((FXMenuButton *) x));
20949
21030
  }
20950
- static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20951
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
21031
+ static void *_p_FXOptionTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21032
+ return (void *)((FXFrame *) (FXLabel *) ((FXOption *) x));
20952
21033
  }
20953
- static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20954
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
21034
+ static void *_p_FXOptionMenuTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21035
+ return (void *)((FXFrame *) (FXLabel *) ((FXOptionMenu *) x));
20955
21036
  }
20956
- static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20957
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
21037
+ static void *_p_FXPickerTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21038
+ return (void *)((FXFrame *) (FXLabel *)(FXButton *) ((FXPicker *) x));
20958
21039
  }
20959
- static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20960
- return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
21040
+ static void *_p_FXProgressBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21041
+ return (void *)((FXFrame *) ((FXProgressBar *) x));
20961
21042
  }
20962
- static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20963
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
21043
+ static void *_p_FXRadioButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21044
+ return (void *)((FXFrame *) (FXLabel *) ((FXRadioButton *) x));
20964
21045
  }
20965
- static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20966
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
21046
+ static void *_p_FXRealSliderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21047
+ return (void *)((FXFrame *) ((FXRealSlider *) x));
20967
21048
  }
20968
- static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20969
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
21049
+ static void *_p_FXRulerTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21050
+ return (void *)((FXFrame *) ((FXRuler *) x));
20970
21051
  }
20971
- static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20972
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
21052
+ static void *_p_FXSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21053
+ return (void *)((FXFrame *) ((FXSeparator *) x));
20973
21054
  }
20974
- static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20975
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
21055
+ static void *_p_FXSliderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21056
+ return (void *)((FXFrame *) ((FXSlider *) x));
20976
21057
  }
20977
- static void *_p_FXTabItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20978
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
21058
+ static void *_p_FXStatusLineTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21059
+ return (void *)((FXFrame *) ((FXStatusLine *) x));
20979
21060
  }
20980
- static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20981
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
21061
+ static void *_p_FXTabItemTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21062
+ return (void *)((FXFrame *) (FXLabel *) ((FXTabItem *) x));
20982
21063
  }
20983
- static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20984
- return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
21064
+ static void *_p_FXTextFieldTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21065
+ return (void *)((FXFrame *) ((FXTextField *) x));
20985
21066
  }
20986
- static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20987
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
21067
+ static void *_p_FXToggleButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21068
+ return (void *)((FXFrame *) (FXLabel *) ((FXToggleButton *) x));
20988
21069
  }
20989
- static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20990
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
21070
+ static void *_p_FXToolBarTabTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21071
+ return (void *)((FXFrame *) ((FXToolBarTab *) x));
20991
21072
  }
20992
- static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20993
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
21073
+ static void *_p_FXTriStateButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21074
+ return (void *)((FXFrame *) (FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
20994
21075
  }
20995
- static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20996
- return (void *)((FXObject *) (FXId *) ((FXFont *) x));
21076
+ static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21077
+ return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
20997
21078
  }
20998
- static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
20999
- return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
21079
+ static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21080
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
21000
21081
  }
21001
- static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21002
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
21082
+ static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21083
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
21003
21084
  }
21004
- static void *_p_FXLabelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21005
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXLabel *) x));
21085
+ static void *_p_FXButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21086
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
21006
21087
  }
21007
- static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21008
- return (void *)((FXObject *) ((FXDataTarget *) x));
21088
+ static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21089
+ return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
21009
21090
  }
21010
- static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21011
- return (void *)((FXObject *) ((FXDebugTarget *) x));
21091
+ static void *_p_FXCheckButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21092
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXCheckButton *) x));
21012
21093
  }
21013
- static void *_p_FXPickerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21014
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
21094
+ static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21095
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
21015
21096
  }
21016
- static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21017
- return (void *)((FXObject *) ((FXDelegator *) x));
21097
+ static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21098
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
21018
21099
  }
21019
- static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21020
- return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
21100
+ static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21101
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
21021
21102
  }
21022
- static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21023
- return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
21103
+ static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21104
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
21024
21105
  }
21025
- static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21026
- return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
21106
+ static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21107
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
21027
21108
  }
21028
- static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21029
- return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
21109
+ static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21110
+ return (void *)((FXId *) ((FXCursor *) x));
21030
21111
  }
21031
- static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21032
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
21112
+ static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21113
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
21033
21114
  }
21034
- static void *_p_FXOptionMenuTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21035
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
21115
+ static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21116
+ return (void *)((FXId *) ((FXDrawable *) x));
21036
21117
  }
21037
- static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21038
- return (void *)((FXObject *) ((FXTranslator *) x));
21118
+ static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21119
+ return (void *)((FXId *) ((FXFont *) x));
21039
21120
  }
21040
- static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21041
- return (void *)((FXObject *) ((FXDict *) x));
21121
+ static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21122
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
21042
21123
  }
21043
- static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21044
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
21124
+ static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21125
+ return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
21045
21126
  }
21046
- static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21047
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
21127
+ static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21128
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
21048
21129
  }
21049
- static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21050
- return (void *)((FXObject *) ((FXHeaderItem *) x));
21130
+ static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21131
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
21051
21132
  }
21052
- static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21053
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
21133
+ static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21134
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
21054
21135
  }
21055
- static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21056
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
21136
+ static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21137
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
21057
21138
  }
21058
- static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21059
- return (void *)((FXObject *) ((FXId *) x));
21139
+ static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21140
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
21060
21141
  }
21061
- static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21062
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
21142
+ static void *_p_FXLabelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21143
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXLabel *) x));
21063
21144
  }
21064
- static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21065
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
21145
+ static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21146
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
21066
21147
  }
21067
- static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21068
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
21148
+ static void *_p_FXMenuButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21149
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXMenuButton *) x));
21069
21150
  }
21070
- static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21071
- return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
21151
+ static void *_p_FXOptionTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21152
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOption *) x));
21072
21153
  }
21073
- static void *_p_FXButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21074
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
21154
+ static void *_p_FXOptionMenuTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21155
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
21075
21156
  }
21076
- static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21077
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
21157
+ static void *_p_FXPickerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21158
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
21078
21159
  }
21079
- static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21080
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
21160
+ static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21161
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
21081
21162
  }
21082
- static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21083
- return (void *)((FXObject *) ((FXApp *) x));
21163
+ static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21164
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
21084
21165
  }
21085
- static void *_p_FXOptionTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21086
- return (void *)((FXLabel *) ((FXOption *) x));
21166
+ static void *_p_FXRadioButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21167
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXRadioButton *) x));
21087
21168
  }
21088
- static void *_p_FXButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21089
- return (void *)((FXLabel *) ((FXButton *) x));
21169
+ static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21170
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
21090
21171
  }
21091
- static void *_p_FXTabItemTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21092
- return (void *)((FXLabel *) ((FXTabItem *) x));
21172
+ static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21173
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
21093
21174
  }
21094
- static void *_p_FXPickerTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21095
- return (void *)((FXLabel *) (FXButton *) ((FXPicker *) x));
21175
+ static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21176
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
21096
21177
  }
21097
- static void *_p_FXCheckButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21098
- return (void *)((FXLabel *) ((FXCheckButton *) x));
21178
+ static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21179
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
21099
21180
  }
21100
- static void *_p_FXMenuButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21101
- return (void *)((FXLabel *) ((FXMenuButton *) x));
21181
+ static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21182
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
21102
21183
  }
21103
- static void *_p_FXRadioButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21104
- return (void *)((FXLabel *) ((FXRadioButton *) x));
21184
+ static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21185
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
21105
21186
  }
21106
- static void *_p_FXToggleButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21107
- return (void *)((FXLabel *) ((FXToggleButton *) x));
21187
+ static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21188
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
21108
21189
  }
21109
- static void *_p_FXTriStateButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21110
- return (void *)((FXLabel *) (FXToggleButton *) ((FXTriStateButton *) x));
21190
+ static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21191
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
21111
21192
  }
21112
- static void *_p_FXOptionMenuTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21113
- return (void *)((FXLabel *) ((FXOptionMenu *) x));
21193
+ static void *_p_FXTabItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21194
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
21114
21195
  }
21115
- static void *_p_FXOptionTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21116
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXOption *) x));
21196
+ static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21197
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
21117
21198
  }
21118
- static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21119
- return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
21199
+ static void *_p_FXToggleButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21200
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXToggleButton *) x));
21120
21201
  }
21121
- static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21122
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
21202
+ static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21203
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
21123
21204
  }
21124
- static void *_p_FXMenuButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21125
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXMenuButton *) x));
21205
+ static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21206
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
21126
21207
  }
21127
- static void *_p_FXCheckButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21128
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXCheckButton *) x));
21208
+ static void *_p_FXTriStateButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21209
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21129
21210
  }
21130
- static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21131
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
21211
+ static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21212
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
21132
21213
  }
21133
- static void *_p_FXRadioButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21134
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXRadioButton *) x));
21214
+ static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21215
+ return (void *)((FXId *) ((FXVisual *) x));
21135
21216
  }
21136
- static void *_p_FXToggleButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21137
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXToggleButton *) x));
21217
+ static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21218
+ return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
21138
21219
  }
21139
- static void *_p_FXTriStateButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21140
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21220
+ static void *_p_FXButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21221
+ return (void *)((FXLabel *) ((FXButton *) x));
21141
21222
  }
21142
- static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21143
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
21223
+ static void *_p_FXCheckButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21224
+ return (void *)((FXLabel *) ((FXCheckButton *) x));
21144
21225
  }
21145
- static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21146
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
21226
+ static void *_p_FXMenuButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21227
+ return (void *)((FXLabel *) ((FXMenuButton *) x));
21147
21228
  }
21148
- static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21149
- return (void *)((FXDrawable *) ((FXWindow *) x));
21229
+ static void *_p_FXOptionTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21230
+ return (void *)((FXLabel *) ((FXOption *) x));
21150
21231
  }
21151
- static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21152
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
21232
+ static void *_p_FXOptionMenuTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21233
+ return (void *)((FXLabel *) ((FXOptionMenu *) x));
21153
21234
  }
21154
- static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21155
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
21235
+ static void *_p_FXPickerTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21236
+ return (void *)((FXLabel *) (FXButton *) ((FXPicker *) x));
21156
21237
  }
21157
- static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21158
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
21238
+ static void *_p_FXRadioButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21239
+ return (void *)((FXLabel *) ((FXRadioButton *) x));
21159
21240
  }
21160
- static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21161
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
21241
+ static void *_p_FXTabItemTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21242
+ return (void *)((FXLabel *) ((FXTabItem *) x));
21162
21243
  }
21163
- static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21164
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
21244
+ static void *_p_FXToggleButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21245
+ return (void *)((FXLabel *) ((FXToggleButton *) x));
21165
21246
  }
21166
- static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21167
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
21247
+ static void *_p_FXTriStateButtonTo_p_FXLabel(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21248
+ return (void *)((FXLabel *) (FXToggleButton *) ((FXTriStateButton *) x));
21168
21249
  }
21169
- static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21170
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
21250
+ static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21251
+ return (void *)((FXObject *) ((FXAccelTable *) x));
21171
21252
  }
21172
- static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21173
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
21253
+ static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21254
+ return (void *)((FXObject *) ((FXApp *) x));
21174
21255
  }
21175
- static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21176
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
21256
+ static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21257
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
21177
21258
  }
21178
- static void *_p_FXTabItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21179
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
21259
+ static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21260
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
21180
21261
  }
21181
- static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21182
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
21262
+ static void *_p_FXButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21263
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
21183
21264
  }
21184
- static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21185
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
21265
+ static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21266
+ return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
21186
21267
  }
21187
- static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21188
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
21268
+ static void *_p_FXCheckButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21269
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXCheckButton *) x));
21189
21270
  }
21190
- static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21191
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
21271
+ static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21272
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
21192
21273
  }
21193
- static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21194
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
21274
+ static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21275
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
21195
21276
  }
21196
- static void *_p_FXLabelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21197
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXLabel *) x));
21277
+ static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21278
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
21198
21279
  }
21199
- static void *_p_FXPickerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21200
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
21280
+ static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21281
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
21201
21282
  }
21202
- static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21203
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
21283
+ static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21284
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
21204
21285
  }
21205
- static void *_p_FXOptionMenuTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21206
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
21286
+ static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21287
+ return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
21207
21288
  }
21208
- static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21209
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
21289
+ static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21290
+ return (void *)((FXObject *) ((FXDataTarget *) x));
21210
21291
  }
21211
- static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21212
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
21292
+ static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21293
+ return (void *)((FXObject *) ((FXDebugTarget *) x));
21213
21294
  }
21214
- static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21215
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
21295
+ static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21296
+ return (void *)((FXObject *) ((FXDelegator *) x));
21216
21297
  }
21217
- static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21218
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
21298
+ static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21299
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
21219
21300
  }
21220
- static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21221
- return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
21301
+ static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21302
+ return (void *)((FXObject *) ((FXDict *) x));
21222
21303
  }
21223
- static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21224
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
21304
+ static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21305
+ return (void *)((FXObject *) ((FXDocument *) x));
21225
21306
  }
21226
- static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21227
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
21307
+ static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21308
+ return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
21228
21309
  }
21229
- static void *_p_FXButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21230
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
21310
+ static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21311
+ return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
21231
21312
  }
21232
- static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21233
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
21313
+ static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21314
+ return (void *)((FXObject *) (FXId *) ((FXFont *) x));
21234
21315
  }
21235
- static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21236
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
21316
+ static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21317
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
21237
21318
  }
21238
- static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21239
- return (void *)((FXStream *) ((FXFileStream *) x));
21319
+ static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21320
+ return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
21240
21321
  }
21241
- static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21242
- return (void *)((FXStream *) ((FXMemoryStream *) x));
21322
+ static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21323
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
21243
21324
  }
21244
- static void *_p_FXOptionTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21245
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOption *) x));
21325
+ static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21326
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
21246
21327
  }
21247
- static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21248
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
21328
+ static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21329
+ return (void *)((FXObject *) ((FXHeaderItem *) x));
21249
21330
  }
21250
- static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21251
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
21331
+ static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21332
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
21252
21333
  }
21253
- static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21254
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
21334
+ static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21335
+ return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
21255
21336
  }
21256
- static void *_p_FXCheckButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21257
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXCheckButton *) x));
21337
+ static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21338
+ return (void *)((FXObject *) ((FXId *) x));
21258
21339
  }
21259
- static void *_p_FXMenuButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21260
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXMenuButton *) x));
21340
+ static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21341
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
21261
21342
  }
21262
- static void *_p_FXRadioButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21263
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXRadioButton *) x));
21343
+ static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21344
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
21264
21345
  }
21265
- static void *_p_FXToggleButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21266
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXToggleButton *) x));
21346
+ static void *_p_FXLabelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21347
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXLabel *) x));
21267
21348
  }
21268
- static void *_p_FXTriStateButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21269
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21349
+ static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21350
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
21270
21351
  }
21271
- static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21272
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
21352
+ static void *_p_FXMenuButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21353
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXMenuButton *) x));
21273
21354
  }
21274
- static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21275
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
21355
+ static void *_p_FXOptionTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21356
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOption *) x));
21276
21357
  }
21277
- static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21278
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
21358
+ static void *_p_FXOptionMenuTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21359
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
21279
21360
  }
21280
- static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21281
- return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
21361
+ static void *_p_FXPickerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21362
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
21282
21363
  }
21283
- static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21284
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
21364
+ static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21365
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
21285
21366
  }
21286
- static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21287
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
21367
+ static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21368
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
21288
21369
  }
21289
- static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21290
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
21370
+ static void *_p_FXRadioButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21371
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXRadioButton *) x));
21291
21372
  }
21292
- static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21293
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
21373
+ static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21374
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
21294
21375
  }
21295
- static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21296
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
21376
+ static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21377
+ return (void *)((FXObject *) ((FXRecentFiles *) x));
21297
21378
  }
21298
- static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21299
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
21379
+ static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21380
+ return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
21300
21381
  }
21301
- static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21302
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
21382
+ static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21383
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
21303
21384
  }
21304
- static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21305
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
21385
+ static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21386
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
21306
21387
  }
21307
- static void *_p_FXTabItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21308
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
21388
+ static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21389
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
21309
21390
  }
21310
- static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21311
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
21391
+ static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21392
+ return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
21312
21393
  }
21313
- static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21314
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
21394
+ static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21395
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
21315
21396
  }
21316
- static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21317
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
21397
+ static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21398
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
21318
21399
  }
21319
- static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21320
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
21400
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21401
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
21321
21402
  }
21322
- static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21323
- return (void *)((FXId *) ((FXFont *) x));
21403
+ static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21404
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
21324
21405
  }
21325
- static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21326
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
21406
+ static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21407
+ return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
21327
21408
  }
21328
- static void *_p_FXLabelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21329
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXLabel *) x));
21409
+ static void *_p_FXTabItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21410
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
21330
21411
  }
21331
- static void *_p_FXPickerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21332
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
21412
+ static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21413
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
21333
21414
  }
21334
- static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21335
- return (void *)((FXId *) ((FXDrawable *) x));
21415
+ static void *_p_FXToggleButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21416
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXToggleButton *) x));
21336
21417
  }
21337
- static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21338
- return (void *)((FXId *) ((FXCursor *) x));
21418
+ static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21419
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
21339
21420
  }
21340
- static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21341
- return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
21421
+ static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21422
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
21342
21423
  }
21343
- static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21344
- return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
21424
+ static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21425
+ return (void *)((FXObject *) ((FXTranslator *) x));
21345
21426
  }
21346
- static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21347
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
21427
+ static void *_p_FXTriStateButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21428
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21348
21429
  }
21349
- static void *_p_FXOptionMenuTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21350
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
21430
+ static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21431
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
21351
21432
  }
21352
- static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21353
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
21433
+ static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21434
+ return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
21354
21435
  }
21355
- static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21356
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
21436
+ static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21437
+ return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
21357
21438
  }
21358
- static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21359
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
21439
+ static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21440
+ return (void *)((FXStream *) ((FXFileStream *) x));
21360
21441
  }
21361
- static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21362
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
21442
+ static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21443
+ return (void *)((FXStream *) ((FXMemoryStream *) x));
21363
21444
  }
21364
- static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21365
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
21445
+ static void *_p_FXTriStateButtonTo_p_FXToggleButton(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21446
+ return (void *)((FXToggleButton *) ((FXTriStateButton *) x));
21366
21447
  }
21367
- static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21368
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
21448
+ static void *_p_FXArrowButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21449
+ return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
21369
21450
  }
21370
- static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21371
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
21451
+ static void *_p_FXBitmapFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21452
+ return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
21372
21453
  }
21373
- static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21374
- return (void *)((FXId *) ((FXVisual *) x));
21454
+ static void *_p_FXButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21455
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXButton *) x));
21375
21456
  }
21376
- static void *_p_FXButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21377
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
21457
+ static void *_p_FXCheckButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21458
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXCheckButton *) x));
21378
21459
  }
21379
- static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21380
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
21460
+ static void *_p_FXColorBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21461
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
21381
21462
  }
21382
- static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21383
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
21463
+ static void *_p_FXColorRingTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21464
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
21384
21465
  }
21385
- static void *_p_FXToolBarTabTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21386
- return (void *)((FXFrame *) ((FXToolBarTab *) x));
21466
+ static void *_p_FXColorWellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21467
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorWell *) x));
21387
21468
  }
21388
- static void *_p_FXColorRingTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21389
- return (void *)((FXFrame *) ((FXColorRing *) x));
21469
+ static void *_p_FXColorWheelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21470
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
21390
21471
  }
21391
- static void *_p_FXColorBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21392
- return (void *)((FXFrame *) ((FXColorBar *) x));
21472
+ static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21473
+ return (void *)((FXWindow *) ((FXComposite *) x));
21393
21474
  }
21394
- static void *_p_FXBitmapFrameTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21395
- return (void *)((FXFrame *) ((FXBitmapFrame *) x));
21475
+ static void *_p_FXDialTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21476
+ return (void *)((FXWindow *) (FXFrame *) ((FXDial *) x));
21396
21477
  }
21397
- static void *_p_FXPickerTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21398
- return (void *)((FXFrame *) (FXLabel *)(FXButton *) ((FXPicker *) x));
21478
+ static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21479
+ return (void *)((FXWindow *) ((FXFrame *) x));
21399
21480
  }
21400
- static void *_p_FXDialTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21401
- return (void *)((FXFrame *) ((FXDial *) x));
21481
+ static void *_p_FXGradientBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21482
+ return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
21402
21483
  }
21403
- static void *_p_FXRulerTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21404
- return (void *)((FXFrame *) ((FXRuler *) x));
21484
+ static void *_p_FXHeaderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21485
+ return (void *)((FXWindow *) (FXFrame *) ((FXHeader *) x));
21405
21486
  }
21406
- static void *_p_FXArrowButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21407
- return (void *)((FXFrame *) ((FXArrowButton *) x));
21487
+ static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21488
+ return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
21408
21489
  }
21409
- static void *_p_FXLabelTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21410
- return (void *)((FXFrame *) ((FXLabel *) x));
21490
+ static void *_p_FXImageFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21491
+ return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
21411
21492
  }
21412
- static void *_p_FXCheckButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21413
- return (void *)((FXFrame *) (FXLabel *) ((FXCheckButton *) x));
21493
+ static void *_p_FXKnobTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21494
+ return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
21414
21495
  }
21415
- static void *_p_FXMenuButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21416
- return (void *)((FXFrame *) (FXLabel *) ((FXMenuButton *) x));
21496
+ static void *_p_FXLabelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21497
+ return (void *)((FXWindow *) (FXFrame *) ((FXLabel *) x));
21417
21498
  }
21418
- static void *_p_FXRadioButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21419
- return (void *)((FXFrame *) (FXLabel *) ((FXRadioButton *) x));
21499
+ static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21500
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
21420
21501
  }
21421
- static void *_p_FXToggleButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21422
- return (void *)((FXFrame *) (FXLabel *) ((FXToggleButton *) x));
21502
+ static void *_p_FXMenuButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21503
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXMenuButton *) x));
21423
21504
  }
21424
- static void *_p_FXTriStateButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21425
- return (void *)((FXFrame *) (FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21505
+ static void *_p_FXOptionTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21506
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXOption *) x));
21426
21507
  }
21427
- static void *_p_FXColorWheelTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21428
- return (void *)((FXFrame *) ((FXColorWheel *) x));
21508
+ static void *_p_FXOptionMenuTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21509
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
21429
21510
  }
21430
- static void *_p_FXProgressBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21431
- return (void *)((FXFrame *) ((FXProgressBar *) x));
21511
+ static void *_p_FXPickerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21512
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
21432
21513
  }
21433
- static void *_p_FXColorWellTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21434
- return (void *)((FXFrame *) ((FXColorWell *) x));
21514
+ static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21515
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
21435
21516
  }
21436
- static void *_p_FXGradientBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21437
- return (void *)((FXFrame *) ((FXGradientBar *) x));
21517
+ static void *_p_FXProgressBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21518
+ return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
21438
21519
  }
21439
- static void *_p_FXStatusLineTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21440
- return (void *)((FXFrame *) ((FXStatusLine *) x));
21520
+ static void *_p_FXRadioButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21521
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXRadioButton *) x));
21441
21522
  }
21442
- static void *_p_FXHorizontalSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21443
- return (void *)((FXFrame *) (FXSeparator *) ((FXHorizontalSeparator *) x));
21523
+ static void *_p_FXRealSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21524
+ return (void *)((FXWindow *) (FXFrame *) ((FXRealSlider *) x));
21444
21525
  }
21445
- static void *_p_FXSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21446
- return (void *)((FXFrame *) ((FXSeparator *) x));
21526
+ static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21527
+ return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
21447
21528
  }
21448
- static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21449
- return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
21529
+ static void *_p_FXRulerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21530
+ return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
21450
21531
  }
21451
- static void *_p_FXButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21452
- return (void *)((FXFrame *) (FXLabel *) ((FXButton *) x));
21532
+ static void *_p_FXSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21533
+ return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
21453
21534
  }
21454
- static void *_p_FXTextFieldTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21455
- return (void *)((FXFrame *) ((FXTextField *) x));
21535
+ static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21536
+ return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
21456
21537
  }
21457
- static void *_p_FXTabItemTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21458
- return (void *)((FXFrame *) (FXLabel *) ((FXTabItem *) x));
21538
+ static void *_p_FXSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21539
+ return (void *)((FXWindow *) (FXFrame *) ((FXSlider *) x));
21459
21540
  }
21460
- static void *_p_FXHeaderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21461
- return (void *)((FXFrame *) ((FXHeader *) x));
21541
+ static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21542
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
21462
21543
  }
21463
- static void *_p_FXOptionTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21464
- return (void *)((FXFrame *) (FXLabel *) ((FXOption *) x));
21544
+ static void *_p_FXStatusLineTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21545
+ return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
21465
21546
  }
21466
- static void *_p_FXImageFrameTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21467
- return (void *)((FXFrame *) ((FXImageFrame *) x));
21547
+ static void *_p_FXTabItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21548
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXTabItem *) x));
21468
21549
  }
21469
- static void *_p_FXOptionMenuTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21470
- return (void *)((FXFrame *) (FXLabel *) ((FXOptionMenu *) x));
21550
+ static void *_p_FXTextFieldTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21551
+ return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
21471
21552
  }
21472
- static void *_p_FXKnobTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21473
- return (void *)((FXFrame *) ((FXKnob *) x));
21553
+ static void *_p_FXToggleButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21554
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXToggleButton *) x));
21474
21555
  }
21475
- static void *_p_FXSliderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21476
- return (void *)((FXFrame *) ((FXSlider *) x));
21556
+ static void *_p_FXToolBarTabTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21557
+ return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
21477
21558
  }
21478
- static void *_p_FXRealSliderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21479
- return (void *)((FXFrame *) ((FXRealSlider *) x));
21559
+ static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21560
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
21480
21561
  }
21481
- static void *_p_FXPickerTo_p_FXButton(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21482
- return (void *)((FXButton *) ((FXPicker *) x));
21562
+ static void *_p_FXTriStateButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21563
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *)(FXToggleButton *) ((FXTriStateButton *) x));
21564
+ }
21565
+ static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
21566
+ return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
21483
21567
  }
21484
21568
  static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
21485
21569
  static swig_type_info _swigt__p_FXButton = {"_p_FXButton", "FXButton *", 0, 0, (void*)0, 0};
21486
21570
  static swig_type_info _swigt__p_FXCheckButton = {"_p_FXCheckButton", "FXCheckButton *", 0, 0, (void*)0, 0};
21487
21571
  static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", "FXComposite *", 0, 0, (void*)0, 0};
21488
- static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
21489
- static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
21490
- static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
21491
21572
  static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
21573
+ static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
21574
+ static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
21492
21575
  static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
21576
+ static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
21493
21577
  static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
21494
- static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
21495
- static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
21496
21578
  static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", 0, 0, 0, 0, 0};
21497
- static swig_type_info _swigt__p_FXRuler = {"_p_FXRuler", 0, 0, 0, 0, 0};
21498
- static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
21499
- static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
21500
- static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
21501
- static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
21502
- static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
21503
- static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
21504
21579
  static swig_type_info _swigt__p_FXBitmapFrame = {"_p_FXBitmapFrame", 0, 0, 0, 0, 0};
21580
+ static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
21581
+ static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
21582
+ static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
21583
+ static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
21584
+ static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
21585
+ static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
21586
+ static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
21587
+ static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
21505
21588
  static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
21506
21589
  static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
21507
21590
  static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
21508
- static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
21509
- static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
21510
- static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
21511
- static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
21512
21591
  static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
21513
- static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
21514
- static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
21592
+ static swig_type_info _swigt__p_FXRuler = {"_p_FXRuler", 0, 0, 0, 0, 0};
21593
+ static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
21594
+ static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
21595
+ static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
21596
+ static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
21597
+ static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
21598
+ static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
21515
21599
  static swig_type_info _swigt__p_FXFont = {"_p_FXFont", "FXFont *", 0, 0, (void*)0, 0};
21516
21600
  static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", "FXFrame *", 0, 0, (void*)0, 0};
21517
21601
  static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
@@ -21523,21 +21607,21 @@ static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
21523
21607
  static swig_type_info _swigt__p_FXLabel = {"_p_FXLabel", "FXLabel *", 0, 0, (void*)0, 0};
21524
21608
  static swig_type_info _swigt__p_FXMenuButton = {"_p_FXMenuButton", "FXMenuButton *", 0, 0, (void*)0, 0};
21525
21609
  static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
21526
- static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
21527
- static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
21528
21610
  static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
21529
- static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
21530
- static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
21531
- static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
21532
- static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
21533
- static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
21534
- static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
21611
+ static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
21535
21612
  static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
21536
21613
  static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
21537
21614
  static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
21538
- static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
21539
- static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
21615
+ static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
21616
+ static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
21617
+ static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
21540
21618
  static swig_type_info _swigt__p_FXHeaderItem = {"_p_FXHeaderItem", 0, 0, 0, 0, 0};
21619
+ static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
21620
+ static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
21621
+ static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
21622
+ static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
21623
+ static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
21624
+ static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
21541
21625
  static swig_type_info _swigt__p_FXOption = {"_p_FXOption", "FXOption *", 0, 0, (void*)0, 0};
21542
21626
  static swig_type_info _swigt__p_FXOptionMenu = {"_p_FXOptionMenu", "FXOptionMenu *", 0, 0, (void*)0, 0};
21543
21627
  static swig_type_info _swigt__p_FXPicker = {"_p_FXPicker", "FXPicker *", 0, 0, (void*)0, 0};
@@ -21552,16 +21636,16 @@ static swig_type_info _swigt__p_FXTabItem = {"_p_FXTabItem", "FXTabItem *", 0, 0
21552
21636
  static swig_type_info _swigt__p_FXToggleButton = {"_p_FXToggleButton", "FXToggleButton *", 0, 0, (void*)0, 0};
21553
21637
  static swig_type_info _swigt__p_FXTriStateButton = {"_p_FXTriStateButton", "FXTriStateButton *", 0, 0, (void*)0, 0};
21554
21638
  static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
21555
- static swig_type_info _swigt__p_char = {"_p_char", "char *|FXchar *", 0, 0, (void*)0, 0};
21556
- static swig_type_info _swigt__p_double = {"_p_double", "double *|FXdouble *", 0, 0, (void*)0, 0};
21557
- static swig_type_info _swigt__p_float = {"_p_float", "float *|FXfloat *", 0, 0, (void*)0, 0};
21558
- static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int *|FXInputHandle *", 0, 0, (void*)0, 0};
21559
- static swig_type_info _swigt__p_long = {"_p_long", "long *|FXTime *", 0, 0, (void*)0, 0};
21560
- static swig_type_info _swigt__p_short = {"_p_short", "short *|FXshort *", 0, 0, (void*)0, 0};
21561
- static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char *|FXbool *", 0, 0, (void*)0, 0};
21562
- static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXwchar *|FXDragType *|unsigned int *|FXuint *|FXColor *|FXSelector *|FXHotKey *", 0, 0, (void*)0, 0};
21563
- static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|FXuval *|FXPixel *", 0, 0, (void*)0, 0};
21564
- static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|FXushort *", 0, 0, (void*)0, 0};
21639
+ static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
21640
+ static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
21641
+ static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
21642
+ static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
21643
+ static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
21644
+ static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
21645
+ static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
21646
+ static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
21647
+ static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
21648
+ static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
21565
21649
 
21566
21650
  static swig_type_info *swig_type_initial[] = {
21567
21651
  &_swigt__p_FXAccelTable,
@@ -21650,60 +21734,60 @@ static swig_type_info *swig_type_initial[] = {
21650
21734
  static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{0, 0, 0, 0}};
21651
21735
  static swig_cast_info _swigc__p_FXButton[] = { {&_swigt__p_FXButton, 0, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXButton, 0, 0},{0, 0, 0, 0}};
21652
21736
  static swig_cast_info _swigc__p_FXCheckButton[] = { {&_swigt__p_FXCheckButton, 0, 0, 0},{0, 0, 0, 0}};
21653
- static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
21654
- static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
21655
- static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
21656
21737
  static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
21738
+ static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
21739
+ static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
21657
21740
  static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
21658
- static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
21659
- static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
21660
- static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
21741
+ static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
21742
+ static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
21661
21743
  static swig_cast_info _swigc__p_FXArrowButton[] = {{&_swigt__p_FXArrowButton, 0, 0, 0},{0, 0, 0, 0}};
21662
- static swig_cast_info _swigc__p_FXRuler[] = {{&_swigt__p_FXRuler, 0, 0, 0},{0, 0, 0, 0}};
21663
- static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
21664
- static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
21665
- static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
21666
- static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
21667
- static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
21668
- static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
21669
21744
  static swig_cast_info _swigc__p_FXBitmapFrame[] = {{&_swigt__p_FXBitmapFrame, 0, 0, 0},{0, 0, 0, 0}};
21745
+ static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
21746
+ static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
21747
+ static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
21748
+ static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
21749
+ static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
21750
+ static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
21751
+ static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
21752
+ static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
21670
21753
  static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
21671
21754
  static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
21672
21755
  static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
21673
- static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
21674
- static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
21675
- static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
21676
- static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
21677
21756
  static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
21678
- static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
21679
- static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
21680
- static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXOption, _p_FXOptionTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
21757
+ static swig_cast_info _swigc__p_FXRuler[] = {{&_swigt__p_FXRuler, 0, 0, 0},{0, 0, 0, 0}};
21758
+ static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
21759
+ static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
21760
+ static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
21761
+ static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
21762
+ static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
21763
+ static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
21764
+ static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
21681
21765
  static swig_cast_info _swigc__p_FXFont[] = { {&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
21682
- static swig_cast_info _swigc__p_FXFrame[] = { {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXFrame, 0, 0}, {&_swigt__p_FXFrame, 0, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXFrame, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXFrame, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXFrame, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXFrame, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXFrame, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXFrame, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXFrame, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXFrame, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXFrame, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXFrame, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXFrame, 0, 0},{0, 0, 0, 0}};
21766
+ static swig_cast_info _swigc__p_FXFrame[] = { {&_swigt__p_FXFrame, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXFrame, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXFrame, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXFrame, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXFrame, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXFrame, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXFrame, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXFrame, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXFrame, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXFrame, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXFrame, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXFrame, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0},{0, 0, 0, 0}};
21683
21767
  static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
21684
21768
  static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
21685
21769
  static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
21686
21770
  static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
21687
21771
  static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
21688
- static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXOption, _p_FXOptionTo_p_FXId, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXId, 0, 0}, {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXId, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXId, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXId, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXId, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXId, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXId, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXId, 0, 0},{0, 0, 0, 0}};
21689
- static swig_cast_info _swigc__p_FXLabel[] = { {&_swigt__p_FXOption, _p_FXOptionTo_p_FXLabel, 0, 0}, {&_swigt__p_FXLabel, 0, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXLabel, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXLabel, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXLabel, 0, 0},{0, 0, 0, 0}};
21772
+ static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXId, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXId, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXId, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXId, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXId, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXId, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXId, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXId, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXId, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXId, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0},{0, 0, 0, 0}};
21773
+ static swig_cast_info _swigc__p_FXLabel[] = { {&_swigt__p_FXLabel, 0, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXLabel, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXLabel, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXLabel, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXLabel, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXLabel, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXLabel, 0, 0},{0, 0, 0, 0}};
21690
21774
  static swig_cast_info _swigc__p_FXMenuButton[] = { {&_swigt__p_FXMenuButton, 0, 0, 0},{0, 0, 0, 0}};
21691
- static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
21692
- static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
21693
21775
  static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
21694
- static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
21695
- static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
21696
- static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
21697
- static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
21698
- static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
21699
- static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
21776
+ static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
21700
21777
  static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
21701
21778
  static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
21702
21779
  static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
21703
- static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
21704
- static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
21780
+ static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
21781
+ static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
21782
+ static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
21705
21783
  static swig_cast_info _swigc__p_FXHeaderItem[] = {{&_swigt__p_FXHeaderItem, 0, 0, 0},{0, 0, 0, 0}};
21706
- static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
21784
+ static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
21785
+ static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
21786
+ static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
21787
+ static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
21788
+ static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
21789
+ static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
21790
+ static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXObject, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXObject, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
21707
21791
  static swig_cast_info _swigc__p_FXOption[] = { {&_swigt__p_FXOption, 0, 0, 0},{0, 0, 0, 0}};
21708
21792
  static swig_cast_info _swigc__p_FXOptionMenu[] = { {&_swigt__p_FXOptionMenu, 0, 0, 0},{0, 0, 0, 0}};
21709
21793
  static swig_cast_info _swigc__p_FXPicker[] = { {&_swigt__p_FXPicker, 0, 0, 0},{0, 0, 0, 0}};
@@ -21712,12 +21796,12 @@ static swig_cast_info _swigc__p_FXRadioButton[] = { {&_swigt__p_FXRadioButton,
21712
21796
  static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
21713
21797
  static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
21714
21798
  static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
21715
- static swig_cast_info _swigc__p_FXStream[] = { {&_swigt__p_FXFileStream, _p_FXFileStreamTo_p_FXStream, 0, 0}, {&_swigt__p_FXMemoryStream, _p_FXMemoryStreamTo_p_FXStream, 0, 0}, {&_swigt__p_FXStream, 0, 0, 0},{0, 0, 0, 0}};
21799
+ static swig_cast_info _swigc__p_FXStream[] = { {&_swigt__p_FXStream, 0, 0, 0}, {&_swigt__p_FXFileStream, _p_FXFileStreamTo_p_FXStream, 0, 0}, {&_swigt__p_FXMemoryStream, _p_FXMemoryStreamTo_p_FXStream, 0, 0},{0, 0, 0, 0}};
21716
21800
  static swig_cast_info _swigc__p_FXTabBar[] = { {&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
21717
21801
  static swig_cast_info _swigc__p_FXTabItem[] = { {&_swigt__p_FXTabItem, 0, 0, 0},{0, 0, 0, 0}};
21718
21802
  static swig_cast_info _swigc__p_FXToggleButton[] = { {&_swigt__p_FXToggleButton, 0, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXToggleButton, 0, 0},{0, 0, 0, 0}};
21719
21803
  static swig_cast_info _swigc__p_FXTriStateButton[] = { {&_swigt__p_FXTriStateButton, 0, 0, 0},{0, 0, 0, 0}};
21720
- static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXOption, _p_FXOptionTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXWindow, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
21804
+ static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXButton, _p_FXButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXCheckButton, _p_FXCheckButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXWindow, 0, 0}, {&_swigt__p_FXLabel, _p_FXLabelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuButton, _p_FXMenuButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXOption, _p_FXOptionTo_p_FXWindow, 0, 0}, {&_swigt__p_FXOptionMenu, _p_FXOptionMenuTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPicker, _p_FXPickerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRadioButton, _p_FXRadioButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabItem, _p_FXTabItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToggleButton, _p_FXToggleButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTriStateButton, _p_FXTriStateButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
21721
21805
  static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
21722
21806
  static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
21723
21807
  static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}};
@@ -21868,9 +21952,12 @@ extern "C" {
21868
21952
  #define SWIGRUNTIME_DEBUG
21869
21953
  #endif
21870
21954
 
21955
+ #ifndef SWIG_INIT_CLIENT_DATA_TYPE
21956
+ #define SWIG_INIT_CLIENT_DATA_TYPE void *
21957
+ #endif
21871
21958
 
21872
21959
  SWIGRUNTIME void
21873
- SWIG_InitializeModule(void *clientdata) {
21960
+ SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
21874
21961
  size_t i;
21875
21962
  swig_module_info *module_head, *iter;
21876
21963
  int init;