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
 
@@ -2000,12 +2040,56 @@ static swig_module_info swig_module = {swig_types, 128, 0, 0, 0, 0};
2000
2040
 
2001
2041
 
2002
2042
 
2003
- #define SWIG_RUBY_THREAD_BEGIN_BLOCK
2004
- #define SWIG_RUBY_THREAD_END_BLOCK
2043
+ #ifdef __cplusplus
2044
+ #include <utility>
2045
+ /* SwigValueWrapper is described in swig.swg */
2046
+ template<typename T> class SwigValueWrapper {
2047
+ struct SwigSmartPointer {
2048
+ T *ptr;
2049
+ SwigSmartPointer(T *p) : ptr(p) { }
2050
+ ~SwigSmartPointer() { delete ptr; }
2051
+ SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
2052
+ void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
2053
+ } pointer;
2054
+ SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
2055
+ SwigValueWrapper(const SwigValueWrapper<T>& rhs);
2056
+ public:
2057
+ SwigValueWrapper() : pointer(0) { }
2058
+ SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
2059
+ #if __cplusplus >=201103L
2060
+ SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
2061
+ operator T&&() const { return std::move(*pointer.ptr); }
2062
+ #else
2063
+ operator T&() const { return *pointer.ptr; }
2064
+ #endif
2065
+ T *operator&() const { return pointer.ptr; }
2066
+ static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
2067
+ };
2068
+
2069
+ /*
2070
+ * SwigValueInit() is a generic initialisation solution as the following approach:
2071
+ *
2072
+ * T c_result = T();
2073
+ *
2074
+ * doesn't compile for all types for example:
2075
+ *
2076
+ * unsigned int c_result = unsigned int();
2077
+ */
2078
+ template <typename T> T SwigValueInit() {
2079
+ return T();
2080
+ }
2005
2081
 
2082
+ #if __cplusplus >=201103L
2083
+ # define SWIG_STD_MOVE(OBJ) std::move(OBJ)
2084
+ #else
2085
+ # define SWIG_STD_MOVE(OBJ) OBJ
2086
+ #endif
2087
+
2088
+ #endif
2006
2089
 
2007
- #define SWIGVERSION 0x040002
2008
- #define SWIG_VERSION SWIGVERSION
2090
+
2091
+ #define SWIG_RUBY_THREAD_BEGIN_BLOCK
2092
+ #define SWIG_RUBY_THREAD_END_BLOCK
2009
2093
 
2010
2094
 
2011
2095
  #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
@@ -2262,7 +2346,7 @@ SWIGINTERN VALUE FXFileDialog_getFilenames(FXFileDialog const *self){
2262
2346
  VALUE result = rb_ary_new();
2263
2347
  FXString *filenames = self->getFilenames();
2264
2348
  if (filenames) {
2265
- register FXString *p = filenames;
2349
+ FXString *p = filenames;
2266
2350
  while ((*p) != FXString::null) {
2267
2351
  rb_ary_push(result, to_ruby(*p));
2268
2352
  p++;
@@ -2304,7 +2388,7 @@ SWIGINTERN VALUE FXFileDialog_getOpenFilenames(FXWindow *owner,FXString const &c
2304
2388
  FXString *filenames = FXFileDialog::getOpenFilenames(owner, caption,
2305
2389
  path, patterns, initial);
2306
2390
  if (filenames) {
2307
- register FXString *p = filenames;
2391
+ FXString *p = filenames;
2308
2392
  while ((*p) != FXString::null) {
2309
2393
  rb_ary_push(result, to_ruby(*p));
2310
2394
  p++;
@@ -2815,7 +2899,7 @@ SWIGINTERN VALUE _wrap_new_FXDialogBox(int nargs, VALUE *args, VALUE self) {
2815
2899
  argv[ii] = args[ii];
2816
2900
  }
2817
2901
  if ((argc >= 2) && (argc <= 13)) {
2818
- int _v;
2902
+ int _v = 0;
2819
2903
  void *vptr = 0;
2820
2904
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
2821
2905
  _v = SWIG_CheckState(res);
@@ -2917,7 +3001,7 @@ SWIGINTERN VALUE _wrap_new_FXDialogBox(int nargs, VALUE *args, VALUE self) {
2917
3001
  }
2918
3002
  }
2919
3003
  if ((argc >= 2) && (argc <= 13)) {
2920
- int _v;
3004
+ int _v = 0;
2921
3005
  void *vptr = 0;
2922
3006
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
2923
3007
  _v = SWIG_CheckState(res);
@@ -3836,7 +3920,7 @@ _wrap_FXDialogBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
3836
3920
  FXRegion *arg2 = 0 ;
3837
3921
  void *argp1 = 0 ;
3838
3922
  int res1 = 0 ;
3839
- void *argp2 ;
3923
+ void *argp2 = 0 ;
3840
3924
  int res2 = 0 ;
3841
3925
 
3842
3926
  if ((argc < 1) || (argc > 1)) {
@@ -3932,7 +4016,7 @@ SWIGINTERN VALUE _wrap_FXDialogBox_setShape(int nargs, VALUE *args, VALUE self)
3932
4016
  argv[ii] = args[ii-1];
3933
4017
  }
3934
4018
  if (argc == 2) {
3935
- int _v;
4019
+ int _v = 0;
3936
4020
  void *vptr = 0;
3937
4021
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDialogBox, 0);
3938
4022
  _v = SWIG_CheckState(res);
@@ -3946,7 +4030,7 @@ SWIGINTERN VALUE _wrap_FXDialogBox_setShape(int nargs, VALUE *args, VALUE self)
3946
4030
  }
3947
4031
  }
3948
4032
  if (argc == 2) {
3949
- int _v;
4033
+ int _v = 0;
3950
4034
  void *vptr = 0;
3951
4035
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDialogBox, 0);
3952
4036
  _v = SWIG_CheckState(res);
@@ -3960,7 +4044,7 @@ SWIGINTERN VALUE _wrap_FXDialogBox_setShape(int nargs, VALUE *args, VALUE self)
3960
4044
  }
3961
4045
  }
3962
4046
  if (argc == 2) {
3963
- int _v;
4047
+ int _v = 0;
3964
4048
  void *vptr = 0;
3965
4049
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDialogBox, 0);
3966
4050
  _v = SWIG_CheckState(res);
@@ -4040,7 +4124,7 @@ SWIGINTERN VALUE _wrap_FXDialogBox_show(int nargs, VALUE *args, VALUE self) {
4040
4124
  argv[ii] = args[ii-1];
4041
4125
  }
4042
4126
  if (argc == 1) {
4043
- int _v;
4127
+ int _v = 0;
4044
4128
  void *vptr = 0;
4045
4129
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDialogBox, 0);
4046
4130
  _v = SWIG_CheckState(res);
@@ -4049,7 +4133,7 @@ SWIGINTERN VALUE _wrap_FXDialogBox_show(int nargs, VALUE *args, VALUE self) {
4049
4133
  }
4050
4134
  }
4051
4135
  if (argc == 2) {
4052
- int _v;
4136
+ int _v = 0;
4053
4137
  void *vptr = 0;
4054
4138
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDialogBox, 0);
4055
4139
  _v = SWIG_CheckState(res);
@@ -4352,7 +4436,7 @@ SWIGINTERN VALUE _wrap_new_FXDirDialog(int nargs, VALUE *args, VALUE self) {
4352
4436
  argv[ii] = args[ii];
4353
4437
  }
4354
4438
  if ((argc >= 2) && (argc <= 7)) {
4355
- int _v;
4439
+ int _v = 0;
4356
4440
  void *vptr = 0;
4357
4441
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
4358
4442
  _v = SWIG_CheckState(res);
@@ -4406,7 +4490,7 @@ SWIGINTERN VALUE _wrap_new_FXDirDialog(int nargs, VALUE *args, VALUE self) {
4406
4490
  }
4407
4491
  }
4408
4492
  if ((argc >= 2) && (argc <= 7)) {
4409
- int _v;
4493
+ int _v = 0;
4410
4494
  void *vptr = 0;
4411
4495
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
4412
4496
  _v = SWIG_CheckState(res);
@@ -5548,7 +5632,7 @@ _wrap_FXDirDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
5548
5632
  FXRegion *arg2 = 0 ;
5549
5633
  void *argp1 = 0 ;
5550
5634
  int res1 = 0 ;
5551
- void *argp2 ;
5635
+ void *argp2 = 0 ;
5552
5636
  int res2 = 0 ;
5553
5637
 
5554
5638
  if ((argc < 1) || (argc > 1)) {
@@ -5644,7 +5728,7 @@ SWIGINTERN VALUE _wrap_FXDirDialog_setShape(int nargs, VALUE *args, VALUE self)
5644
5728
  argv[ii] = args[ii-1];
5645
5729
  }
5646
5730
  if (argc == 2) {
5647
- int _v;
5731
+ int _v = 0;
5648
5732
  void *vptr = 0;
5649
5733
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDirDialog, 0);
5650
5734
  _v = SWIG_CheckState(res);
@@ -5658,7 +5742,7 @@ SWIGINTERN VALUE _wrap_FXDirDialog_setShape(int nargs, VALUE *args, VALUE self)
5658
5742
  }
5659
5743
  }
5660
5744
  if (argc == 2) {
5661
- int _v;
5745
+ int _v = 0;
5662
5746
  void *vptr = 0;
5663
5747
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDirDialog, 0);
5664
5748
  _v = SWIG_CheckState(res);
@@ -5672,7 +5756,7 @@ SWIGINTERN VALUE _wrap_FXDirDialog_setShape(int nargs, VALUE *args, VALUE self)
5672
5756
  }
5673
5757
  }
5674
5758
  if (argc == 2) {
5675
- int _v;
5759
+ int _v = 0;
5676
5760
  void *vptr = 0;
5677
5761
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDirDialog, 0);
5678
5762
  _v = SWIG_CheckState(res);
@@ -5752,7 +5836,7 @@ SWIGINTERN VALUE _wrap_FXDirDialog_show(int nargs, VALUE *args, VALUE self) {
5752
5836
  argv[ii] = args[ii-1];
5753
5837
  }
5754
5838
  if (argc == 1) {
5755
- int _v;
5839
+ int _v = 0;
5756
5840
  void *vptr = 0;
5757
5841
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDirDialog, 0);
5758
5842
  _v = SWIG_CheckState(res);
@@ -5761,7 +5845,7 @@ SWIGINTERN VALUE _wrap_FXDirDialog_show(int nargs, VALUE *args, VALUE self) {
5761
5845
  }
5762
5846
  }
5763
5847
  if (argc == 2) {
5764
- int _v;
5848
+ int _v = 0;
5765
5849
  void *vptr = 0;
5766
5850
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDirDialog, 0);
5767
5851
  _v = SWIG_CheckState(res);
@@ -6064,7 +6148,7 @@ SWIGINTERN VALUE _wrap_new_FXFileDialog(int nargs, VALUE *args, VALUE self) {
6064
6148
  argv[ii] = args[ii];
6065
6149
  }
6066
6150
  if ((argc >= 2) && (argc <= 7)) {
6067
- int _v;
6151
+ int _v = 0;
6068
6152
  void *vptr = 0;
6069
6153
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
6070
6154
  _v = SWIG_CheckState(res);
@@ -6118,7 +6202,7 @@ SWIGINTERN VALUE _wrap_new_FXFileDialog(int nargs, VALUE *args, VALUE self) {
6118
6202
  }
6119
6203
  }
6120
6204
  if ((argc >= 2) && (argc <= 7)) {
6121
- int _v;
6205
+ int _v = 0;
6122
6206
  void *vptr = 0;
6123
6207
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
6124
6208
  _v = SWIG_CheckState(res);
@@ -8014,7 +8098,7 @@ _wrap_FXFileDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
8014
8098
  FXRegion *arg2 = 0 ;
8015
8099
  void *argp1 = 0 ;
8016
8100
  int res1 = 0 ;
8017
- void *argp2 ;
8101
+ void *argp2 = 0 ;
8018
8102
  int res2 = 0 ;
8019
8103
 
8020
8104
  if ((argc < 1) || (argc > 1)) {
@@ -8110,7 +8194,7 @@ SWIGINTERN VALUE _wrap_FXFileDialog_setShape(int nargs, VALUE *args, VALUE self)
8110
8194
  argv[ii] = args[ii-1];
8111
8195
  }
8112
8196
  if (argc == 2) {
8113
- int _v;
8197
+ int _v = 0;
8114
8198
  void *vptr = 0;
8115
8199
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFileDialog, 0);
8116
8200
  _v = SWIG_CheckState(res);
@@ -8124,7 +8208,7 @@ SWIGINTERN VALUE _wrap_FXFileDialog_setShape(int nargs, VALUE *args, VALUE self)
8124
8208
  }
8125
8209
  }
8126
8210
  if (argc == 2) {
8127
- int _v;
8211
+ int _v = 0;
8128
8212
  void *vptr = 0;
8129
8213
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFileDialog, 0);
8130
8214
  _v = SWIG_CheckState(res);
@@ -8138,7 +8222,7 @@ SWIGINTERN VALUE _wrap_FXFileDialog_setShape(int nargs, VALUE *args, VALUE self)
8138
8222
  }
8139
8223
  }
8140
8224
  if (argc == 2) {
8141
- int _v;
8225
+ int _v = 0;
8142
8226
  void *vptr = 0;
8143
8227
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFileDialog, 0);
8144
8228
  _v = SWIG_CheckState(res);
@@ -8218,7 +8302,7 @@ SWIGINTERN VALUE _wrap_FXFileDialog_show(int nargs, VALUE *args, VALUE self) {
8218
8302
  argv[ii] = args[ii-1];
8219
8303
  }
8220
8304
  if (argc == 1) {
8221
- int _v;
8305
+ int _v = 0;
8222
8306
  void *vptr = 0;
8223
8307
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFileDialog, 0);
8224
8308
  _v = SWIG_CheckState(res);
@@ -8227,7 +8311,7 @@ SWIGINTERN VALUE _wrap_FXFileDialog_show(int nargs, VALUE *args, VALUE self) {
8227
8311
  }
8228
8312
  }
8229
8313
  if (argc == 2) {
8230
- int _v;
8314
+ int _v = 0;
8231
8315
  void *vptr = 0;
8232
8316
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFileDialog, 0);
8233
8317
  _v = SWIG_CheckState(res);
@@ -9437,7 +9521,7 @@ _wrap_FXColorDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
9437
9521
  FXRegion *arg2 = 0 ;
9438
9522
  void *argp1 = 0 ;
9439
9523
  int res1 = 0 ;
9440
- void *argp2 ;
9524
+ void *argp2 = 0 ;
9441
9525
  int res2 = 0 ;
9442
9526
 
9443
9527
  if ((argc < 1) || (argc > 1)) {
@@ -9533,7 +9617,7 @@ SWIGINTERN VALUE _wrap_FXColorDialog_setShape(int nargs, VALUE *args, VALUE self
9533
9617
  argv[ii] = args[ii-1];
9534
9618
  }
9535
9619
  if (argc == 2) {
9536
- int _v;
9620
+ int _v = 0;
9537
9621
  void *vptr = 0;
9538
9622
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorDialog, 0);
9539
9623
  _v = SWIG_CheckState(res);
@@ -9547,7 +9631,7 @@ SWIGINTERN VALUE _wrap_FXColorDialog_setShape(int nargs, VALUE *args, VALUE self
9547
9631
  }
9548
9632
  }
9549
9633
  if (argc == 2) {
9550
- int _v;
9634
+ int _v = 0;
9551
9635
  void *vptr = 0;
9552
9636
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorDialog, 0);
9553
9637
  _v = SWIG_CheckState(res);
@@ -9561,7 +9645,7 @@ SWIGINTERN VALUE _wrap_FXColorDialog_setShape(int nargs, VALUE *args, VALUE self
9561
9645
  }
9562
9646
  }
9563
9647
  if (argc == 2) {
9564
- int _v;
9648
+ int _v = 0;
9565
9649
  void *vptr = 0;
9566
9650
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorDialog, 0);
9567
9651
  _v = SWIG_CheckState(res);
@@ -9641,7 +9725,7 @@ SWIGINTERN VALUE _wrap_FXColorDialog_show(int nargs, VALUE *args, VALUE self) {
9641
9725
  argv[ii] = args[ii-1];
9642
9726
  }
9643
9727
  if (argc == 1) {
9644
- int _v;
9728
+ int _v = 0;
9645
9729
  void *vptr = 0;
9646
9730
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorDialog, 0);
9647
9731
  _v = SWIG_CheckState(res);
@@ -9650,7 +9734,7 @@ SWIGINTERN VALUE _wrap_FXColorDialog_show(int nargs, VALUE *args, VALUE self) {
9650
9734
  }
9651
9735
  }
9652
9736
  if (argc == 2) {
9653
- int _v;
9737
+ int _v = 0;
9654
9738
  void *vptr = 0;
9655
9739
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorDialog, 0);
9656
9740
  _v = SWIG_CheckState(res);
@@ -9892,7 +9976,7 @@ _wrap_FXFontDialog_setFontSelection(int argc, VALUE *argv, VALUE self) {
9892
9976
  FXFontDesc *arg2 = 0 ;
9893
9977
  void *argp1 = 0 ;
9894
9978
  int res1 = 0 ;
9895
- void *argp2 ;
9979
+ void *argp2 = 0 ;
9896
9980
  int res2 = 0 ;
9897
9981
 
9898
9982
  if ((argc < 1) || (argc > 1)) {
@@ -10753,7 +10837,7 @@ _wrap_FXFontDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
10753
10837
  FXRegion *arg2 = 0 ;
10754
10838
  void *argp1 = 0 ;
10755
10839
  int res1 = 0 ;
10756
- void *argp2 ;
10840
+ void *argp2 = 0 ;
10757
10841
  int res2 = 0 ;
10758
10842
 
10759
10843
  if ((argc < 1) || (argc > 1)) {
@@ -10849,7 +10933,7 @@ SWIGINTERN VALUE _wrap_FXFontDialog_setShape(int nargs, VALUE *args, VALUE self)
10849
10933
  argv[ii] = args[ii-1];
10850
10934
  }
10851
10935
  if (argc == 2) {
10852
- int _v;
10936
+ int _v = 0;
10853
10937
  void *vptr = 0;
10854
10938
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFontDialog, 0);
10855
10939
  _v = SWIG_CheckState(res);
@@ -10863,7 +10947,7 @@ SWIGINTERN VALUE _wrap_FXFontDialog_setShape(int nargs, VALUE *args, VALUE self)
10863
10947
  }
10864
10948
  }
10865
10949
  if (argc == 2) {
10866
- int _v;
10950
+ int _v = 0;
10867
10951
  void *vptr = 0;
10868
10952
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFontDialog, 0);
10869
10953
  _v = SWIG_CheckState(res);
@@ -10877,7 +10961,7 @@ SWIGINTERN VALUE _wrap_FXFontDialog_setShape(int nargs, VALUE *args, VALUE self)
10877
10961
  }
10878
10962
  }
10879
10963
  if (argc == 2) {
10880
- int _v;
10964
+ int _v = 0;
10881
10965
  void *vptr = 0;
10882
10966
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFontDialog, 0);
10883
10967
  _v = SWIG_CheckState(res);
@@ -10957,7 +11041,7 @@ SWIGINTERN VALUE _wrap_FXFontDialog_show(int nargs, VALUE *args, VALUE self) {
10957
11041
  argv[ii] = args[ii-1];
10958
11042
  }
10959
11043
  if (argc == 1) {
10960
- int _v;
11044
+ int _v = 0;
10961
11045
  void *vptr = 0;
10962
11046
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFontDialog, 0);
10963
11047
  _v = SWIG_CheckState(res);
@@ -10966,7 +11050,7 @@ SWIGINTERN VALUE _wrap_FXFontDialog_show(int nargs, VALUE *args, VALUE self) {
10966
11050
  }
10967
11051
  }
10968
11052
  if (argc == 2) {
10969
- int _v;
11053
+ int _v = 0;
10970
11054
  void *vptr = 0;
10971
11055
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFontDialog, 0);
10972
11056
  _v = SWIG_CheckState(res);
@@ -12559,7 +12643,7 @@ _wrap_FXReplaceDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
12559
12643
  FXRegion *arg2 = 0 ;
12560
12644
  void *argp1 = 0 ;
12561
12645
  int res1 = 0 ;
12562
- void *argp2 ;
12646
+ void *argp2 = 0 ;
12563
12647
  int res2 = 0 ;
12564
12648
 
12565
12649
  if ((argc < 1) || (argc > 1)) {
@@ -12655,7 +12739,7 @@ SWIGINTERN VALUE _wrap_FXReplaceDialog_setShape(int nargs, VALUE *args, VALUE se
12655
12739
  argv[ii] = args[ii-1];
12656
12740
  }
12657
12741
  if (argc == 2) {
12658
- int _v;
12742
+ int _v = 0;
12659
12743
  void *vptr = 0;
12660
12744
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXReplaceDialog, 0);
12661
12745
  _v = SWIG_CheckState(res);
@@ -12669,7 +12753,7 @@ SWIGINTERN VALUE _wrap_FXReplaceDialog_setShape(int nargs, VALUE *args, VALUE se
12669
12753
  }
12670
12754
  }
12671
12755
  if (argc == 2) {
12672
- int _v;
12756
+ int _v = 0;
12673
12757
  void *vptr = 0;
12674
12758
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXReplaceDialog, 0);
12675
12759
  _v = SWIG_CheckState(res);
@@ -12683,7 +12767,7 @@ SWIGINTERN VALUE _wrap_FXReplaceDialog_setShape(int nargs, VALUE *args, VALUE se
12683
12767
  }
12684
12768
  }
12685
12769
  if (argc == 2) {
12686
- int _v;
12770
+ int _v = 0;
12687
12771
  void *vptr = 0;
12688
12772
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXReplaceDialog, 0);
12689
12773
  _v = SWIG_CheckState(res);
@@ -12763,7 +12847,7 @@ SWIGINTERN VALUE _wrap_FXReplaceDialog_show(int nargs, VALUE *args, VALUE self)
12763
12847
  argv[ii] = args[ii-1];
12764
12848
  }
12765
12849
  if (argc == 1) {
12766
- int _v;
12850
+ int _v = 0;
12767
12851
  void *vptr = 0;
12768
12852
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXReplaceDialog, 0);
12769
12853
  _v = SWIG_CheckState(res);
@@ -12772,7 +12856,7 @@ SWIGINTERN VALUE _wrap_FXReplaceDialog_show(int nargs, VALUE *args, VALUE self)
12772
12856
  }
12773
12857
  }
12774
12858
  if (argc == 2) {
12775
- int _v;
12859
+ int _v = 0;
12776
12860
  void *vptr = 0;
12777
12861
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXReplaceDialog, 0);
12778
12862
  _v = SWIG_CheckState(res);
@@ -13826,7 +13910,7 @@ _wrap_FXSearchDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
13826
13910
  FXRegion *arg2 = 0 ;
13827
13911
  void *argp1 = 0 ;
13828
13912
  int res1 = 0 ;
13829
- void *argp2 ;
13913
+ void *argp2 = 0 ;
13830
13914
  int res2 = 0 ;
13831
13915
 
13832
13916
  if ((argc < 1) || (argc > 1)) {
@@ -13922,7 +14006,7 @@ SWIGINTERN VALUE _wrap_FXSearchDialog_setShape(int nargs, VALUE *args, VALUE sel
13922
14006
  argv[ii] = args[ii-1];
13923
14007
  }
13924
14008
  if (argc == 2) {
13925
- int _v;
14009
+ int _v = 0;
13926
14010
  void *vptr = 0;
13927
14011
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSearchDialog, 0);
13928
14012
  _v = SWIG_CheckState(res);
@@ -13936,7 +14020,7 @@ SWIGINTERN VALUE _wrap_FXSearchDialog_setShape(int nargs, VALUE *args, VALUE sel
13936
14020
  }
13937
14021
  }
13938
14022
  if (argc == 2) {
13939
- int _v;
14023
+ int _v = 0;
13940
14024
  void *vptr = 0;
13941
14025
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSearchDialog, 0);
13942
14026
  _v = SWIG_CheckState(res);
@@ -13950,7 +14034,7 @@ SWIGINTERN VALUE _wrap_FXSearchDialog_setShape(int nargs, VALUE *args, VALUE sel
13950
14034
  }
13951
14035
  }
13952
14036
  if (argc == 2) {
13953
- int _v;
14037
+ int _v = 0;
13954
14038
  void *vptr = 0;
13955
14039
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSearchDialog, 0);
13956
14040
  _v = SWIG_CheckState(res);
@@ -14030,7 +14114,7 @@ SWIGINTERN VALUE _wrap_FXSearchDialog_show(int nargs, VALUE *args, VALUE self) {
14030
14114
  argv[ii] = args[ii-1];
14031
14115
  }
14032
14116
  if (argc == 1) {
14033
- int _v;
14117
+ int _v = 0;
14034
14118
  void *vptr = 0;
14035
14119
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSearchDialog, 0);
14036
14120
  _v = SWIG_CheckState(res);
@@ -14039,7 +14123,7 @@ SWIGINTERN VALUE _wrap_FXSearchDialog_show(int nargs, VALUE *args, VALUE self) {
14039
14123
  }
14040
14124
  }
14041
14125
  if (argc == 2) {
14042
- int _v;
14126
+ int _v = 0;
14043
14127
  void *vptr = 0;
14044
14128
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSearchDialog, 0);
14045
14129
  _v = SWIG_CheckState(res);
@@ -14404,7 +14488,7 @@ SWIGINTERN VALUE _wrap_new_FXInputDialog(int nargs, VALUE *args, VALUE self) {
14404
14488
  argv[ii] = args[ii];
14405
14489
  }
14406
14490
  if ((argc >= 3) && (argc <= 9)) {
14407
- int _v;
14491
+ int _v = 0;
14408
14492
  void *vptr = 0;
14409
14493
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
14410
14494
  _v = SWIG_CheckState(res);
@@ -14471,7 +14555,7 @@ SWIGINTERN VALUE _wrap_new_FXInputDialog(int nargs, VALUE *args, VALUE self) {
14471
14555
  }
14472
14556
  }
14473
14557
  if ((argc >= 3) && (argc <= 9)) {
14474
- int _v;
14558
+ int _v = 0;
14475
14559
  void *vptr = 0;
14476
14560
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
14477
14561
  _v = SWIG_CheckState(res);
@@ -14810,7 +14894,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_getString(int nargs, VALUE *args, VALUE sel
14810
14894
  argv[ii] = args[ii];
14811
14895
  }
14812
14896
  if ((argc >= 4) && (argc <= 5)) {
14813
- int _v;
14897
+ int _v = 0;
14814
14898
  {
14815
14899
  _v = (NIL_P(argv[0]) || TYPE(argv[0]) == T_STRING) ? 1 : 0;
14816
14900
  }
@@ -14842,7 +14926,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_getString(int nargs, VALUE *args, VALUE sel
14842
14926
  }
14843
14927
  }
14844
14928
  if ((argc >= 4) && (argc <= 5)) {
14845
- int _v;
14929
+ int _v = 0;
14846
14930
  {
14847
14931
  _v = (NIL_P(argv[0]) || TYPE(argv[0]) == T_STRING) ? 1 : 0;
14848
14932
  }
@@ -15004,7 +15088,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_getInteger(int nargs, VALUE *args, VALUE se
15004
15088
  argv[ii] = args[ii];
15005
15089
  }
15006
15090
  if ((argc >= 4) && (argc <= 7)) {
15007
- int _v;
15091
+ int _v = 0;
15008
15092
  {
15009
15093
  _v = (TYPE(argv[0]) == T_FIXNUM || TYPE(argv[0]) == T_BIGNUM) ? 1 : 0;
15010
15094
  }
@@ -15052,7 +15136,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_getInteger(int nargs, VALUE *args, VALUE se
15052
15136
  }
15053
15137
  }
15054
15138
  if ((argc >= 4) && (argc <= 7)) {
15055
- int _v;
15139
+ int _v = 0;
15056
15140
  {
15057
15141
  _v = (TYPE(argv[0]) == T_FIXNUM || TYPE(argv[0]) == T_BIGNUM) ? 1 : 0;
15058
15142
  }
@@ -15266,7 +15350,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_getReal(int nargs, VALUE *args, VALUE self)
15266
15350
  argv[ii] = args[ii];
15267
15351
  }
15268
15352
  if ((argc >= 4) && (argc <= 7)) {
15269
- int _v;
15353
+ int _v = 0;
15270
15354
  {
15271
15355
  int res = SWIG_AsVal_double(argv[0], NULL);
15272
15356
  _v = SWIG_CheckState(res);
@@ -15317,7 +15401,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_getReal(int nargs, VALUE *args, VALUE self)
15317
15401
  }
15318
15402
  }
15319
15403
  if ((argc >= 4) && (argc <= 7)) {
15320
- int _v;
15404
+ int _v = 0;
15321
15405
  {
15322
15406
  int res = SWIG_AsVal_double(argv[0], NULL);
15323
15407
  _v = SWIG_CheckState(res);
@@ -16185,7 +16269,7 @@ _wrap_FXInputDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
16185
16269
  FXRegion *arg2 = 0 ;
16186
16270
  void *argp1 = 0 ;
16187
16271
  int res1 = 0 ;
16188
- void *argp2 ;
16272
+ void *argp2 = 0 ;
16189
16273
  int res2 = 0 ;
16190
16274
 
16191
16275
  if ((argc < 1) || (argc > 1)) {
@@ -16281,7 +16365,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_setShape(int nargs, VALUE *args, VALUE self
16281
16365
  argv[ii] = args[ii-1];
16282
16366
  }
16283
16367
  if (argc == 2) {
16284
- int _v;
16368
+ int _v = 0;
16285
16369
  void *vptr = 0;
16286
16370
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXInputDialog, 0);
16287
16371
  _v = SWIG_CheckState(res);
@@ -16295,7 +16379,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_setShape(int nargs, VALUE *args, VALUE self
16295
16379
  }
16296
16380
  }
16297
16381
  if (argc == 2) {
16298
- int _v;
16382
+ int _v = 0;
16299
16383
  void *vptr = 0;
16300
16384
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXInputDialog, 0);
16301
16385
  _v = SWIG_CheckState(res);
@@ -16309,7 +16393,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_setShape(int nargs, VALUE *args, VALUE self
16309
16393
  }
16310
16394
  }
16311
16395
  if (argc == 2) {
16312
- int _v;
16396
+ int _v = 0;
16313
16397
  void *vptr = 0;
16314
16398
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXInputDialog, 0);
16315
16399
  _v = SWIG_CheckState(res);
@@ -16389,7 +16473,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_show(int nargs, VALUE *args, VALUE self) {
16389
16473
  argv[ii] = args[ii-1];
16390
16474
  }
16391
16475
  if (argc == 1) {
16392
- int _v;
16476
+ int _v = 0;
16393
16477
  void *vptr = 0;
16394
16478
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXInputDialog, 0);
16395
16479
  _v = SWIG_CheckState(res);
@@ -16398,7 +16482,7 @@ SWIGINTERN VALUE _wrap_FXInputDialog_show(int nargs, VALUE *args, VALUE self) {
16398
16482
  }
16399
16483
  }
16400
16484
  if (argc == 2) {
16401
- int _v;
16485
+ int _v = 0;
16402
16486
  void *vptr = 0;
16403
16487
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXInputDialog, 0);
16404
16488
  _v = SWIG_CheckState(res);
@@ -17900,7 +17984,7 @@ _wrap_FXPrintDialog_setPrinter(int argc, VALUE *argv, VALUE self) {
17900
17984
  FXPrinter *arg2 = 0 ;
17901
17985
  void *argp1 = 0 ;
17902
17986
  int res1 = 0 ;
17903
- void *argp2 ;
17987
+ void *argp2 = 0 ;
17904
17988
  int res2 = 0 ;
17905
17989
 
17906
17990
  if ((argc < 1) || (argc > 1)) {
@@ -18761,7 +18845,7 @@ _wrap_FXPrintDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
18761
18845
  FXRegion *arg2 = 0 ;
18762
18846
  void *argp1 = 0 ;
18763
18847
  int res1 = 0 ;
18764
- void *argp2 ;
18848
+ void *argp2 = 0 ;
18765
18849
  int res2 = 0 ;
18766
18850
 
18767
18851
  if ((argc < 1) || (argc > 1)) {
@@ -18857,7 +18941,7 @@ SWIGINTERN VALUE _wrap_FXPrintDialog_setShape(int nargs, VALUE *args, VALUE self
18857
18941
  argv[ii] = args[ii-1];
18858
18942
  }
18859
18943
  if (argc == 2) {
18860
- int _v;
18944
+ int _v = 0;
18861
18945
  void *vptr = 0;
18862
18946
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPrintDialog, 0);
18863
18947
  _v = SWIG_CheckState(res);
@@ -18871,7 +18955,7 @@ SWIGINTERN VALUE _wrap_FXPrintDialog_setShape(int nargs, VALUE *args, VALUE self
18871
18955
  }
18872
18956
  }
18873
18957
  if (argc == 2) {
18874
- int _v;
18958
+ int _v = 0;
18875
18959
  void *vptr = 0;
18876
18960
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPrintDialog, 0);
18877
18961
  _v = SWIG_CheckState(res);
@@ -18885,7 +18969,7 @@ SWIGINTERN VALUE _wrap_FXPrintDialog_setShape(int nargs, VALUE *args, VALUE self
18885
18969
  }
18886
18970
  }
18887
18971
  if (argc == 2) {
18888
- int _v;
18972
+ int _v = 0;
18889
18973
  void *vptr = 0;
18890
18974
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPrintDialog, 0);
18891
18975
  _v = SWIG_CheckState(res);
@@ -18965,7 +19049,7 @@ SWIGINTERN VALUE _wrap_FXPrintDialog_show(int nargs, VALUE *args, VALUE self) {
18965
19049
  argv[ii] = args[ii-1];
18966
19050
  }
18967
19051
  if (argc == 1) {
18968
- int _v;
19052
+ int _v = 0;
18969
19053
  void *vptr = 0;
18970
19054
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPrintDialog, 0);
18971
19055
  _v = SWIG_CheckState(res);
@@ -18974,7 +19058,7 @@ SWIGINTERN VALUE _wrap_FXPrintDialog_show(int nargs, VALUE *args, VALUE self) {
18974
19058
  }
18975
19059
  }
18976
19060
  if (argc == 2) {
18977
- int _v;
19061
+ int _v = 0;
18978
19062
  void *vptr = 0;
18979
19063
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPrintDialog, 0);
18980
19064
  _v = SWIG_CheckState(res);
@@ -20504,7 +20588,7 @@ _wrap_FXProgressDialog_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
20504
20588
  FXRegion *arg2 = 0 ;
20505
20589
  void *argp1 = 0 ;
20506
20590
  int res1 = 0 ;
20507
- void *argp2 ;
20591
+ void *argp2 = 0 ;
20508
20592
  int res2 = 0 ;
20509
20593
 
20510
20594
  if ((argc < 1) || (argc > 1)) {
@@ -20600,7 +20684,7 @@ SWIGINTERN VALUE _wrap_FXProgressDialog_setShape(int nargs, VALUE *args, VALUE s
20600
20684
  argv[ii] = args[ii-1];
20601
20685
  }
20602
20686
  if (argc == 2) {
20603
- int _v;
20687
+ int _v = 0;
20604
20688
  void *vptr = 0;
20605
20689
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressDialog, 0);
20606
20690
  _v = SWIG_CheckState(res);
@@ -20614,7 +20698,7 @@ SWIGINTERN VALUE _wrap_FXProgressDialog_setShape(int nargs, VALUE *args, VALUE s
20614
20698
  }
20615
20699
  }
20616
20700
  if (argc == 2) {
20617
- int _v;
20701
+ int _v = 0;
20618
20702
  void *vptr = 0;
20619
20703
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressDialog, 0);
20620
20704
  _v = SWIG_CheckState(res);
@@ -20628,7 +20712,7 @@ SWIGINTERN VALUE _wrap_FXProgressDialog_setShape(int nargs, VALUE *args, VALUE s
20628
20712
  }
20629
20713
  }
20630
20714
  if (argc == 2) {
20631
- int _v;
20715
+ int _v = 0;
20632
20716
  void *vptr = 0;
20633
20717
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressDialog, 0);
20634
20718
  _v = SWIG_CheckState(res);
@@ -20708,7 +20792,7 @@ SWIGINTERN VALUE _wrap_FXProgressDialog_show(int nargs, VALUE *args, VALUE self)
20708
20792
  argv[ii] = args[ii-1];
20709
20793
  }
20710
20794
  if (argc == 1) {
20711
- int _v;
20795
+ int _v = 0;
20712
20796
  void *vptr = 0;
20713
20797
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressDialog, 0);
20714
20798
  _v = SWIG_CheckState(res);
@@ -20717,7 +20801,7 @@ SWIGINTERN VALUE _wrap_FXProgressDialog_show(int nargs, VALUE *args, VALUE self)
20717
20801
  }
20718
20802
  }
20719
20803
  if (argc == 2) {
20720
- int _v;
20804
+ int _v = 0;
20721
20805
  void *vptr = 0;
20722
20806
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressDialog, 0);
20723
20807
  _v = SWIG_CheckState(res);
@@ -21102,7 +21186,7 @@ SWIGINTERN VALUE _wrap_new_FXMessageBox(int nargs, VALUE *args, VALUE self) {
21102
21186
  argv[ii] = args[ii];
21103
21187
  }
21104
21188
  if ((argc >= 3) && (argc <= 7)) {
21105
- int _v;
21189
+ int _v = 0;
21106
21190
  void *vptr = 0;
21107
21191
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
21108
21192
  _v = SWIG_CheckState(res);
@@ -21153,7 +21237,7 @@ SWIGINTERN VALUE _wrap_new_FXMessageBox(int nargs, VALUE *args, VALUE self) {
21153
21237
  }
21154
21238
  }
21155
21239
  if ((argc >= 3) && (argc <= 7)) {
21156
- int _v;
21240
+ int _v = 0;
21157
21241
  void *vptr = 0;
21158
21242
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21159
21243
  _v = SWIG_CheckState(res);
@@ -21320,7 +21404,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_error(int nargs, VALUE *args, VALUE self) {
21320
21404
  argv[ii] = args[ii];
21321
21405
  }
21322
21406
  if (argc == 4) {
21323
- int _v;
21407
+ int _v = 0;
21324
21408
  void *vptr = 0;
21325
21409
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
21326
21410
  _v = SWIG_CheckState(res);
@@ -21349,7 +21433,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_error(int nargs, VALUE *args, VALUE self) {
21349
21433
  }
21350
21434
  }
21351
21435
  if (argc == 4) {
21352
- int _v;
21436
+ int _v = 0;
21353
21437
  void *vptr = 0;
21354
21438
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21355
21439
  _v = SWIG_CheckState(res);
@@ -21494,7 +21578,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_warning(int nargs, VALUE *args, VALUE self)
21494
21578
  argv[ii] = args[ii];
21495
21579
  }
21496
21580
  if (argc == 4) {
21497
- int _v;
21581
+ int _v = 0;
21498
21582
  void *vptr = 0;
21499
21583
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
21500
21584
  _v = SWIG_CheckState(res);
@@ -21523,7 +21607,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_warning(int nargs, VALUE *args, VALUE self)
21523
21607
  }
21524
21608
  }
21525
21609
  if (argc == 4) {
21526
- int _v;
21610
+ int _v = 0;
21527
21611
  void *vptr = 0;
21528
21612
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21529
21613
  _v = SWIG_CheckState(res);
@@ -21668,7 +21752,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_question(int nargs, VALUE *args, VALUE self)
21668
21752
  argv[ii] = args[ii];
21669
21753
  }
21670
21754
  if (argc == 4) {
21671
- int _v;
21755
+ int _v = 0;
21672
21756
  void *vptr = 0;
21673
21757
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
21674
21758
  _v = SWIG_CheckState(res);
@@ -21697,7 +21781,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_question(int nargs, VALUE *args, VALUE self)
21697
21781
  }
21698
21782
  }
21699
21783
  if (argc == 4) {
21700
- int _v;
21784
+ int _v = 0;
21701
21785
  void *vptr = 0;
21702
21786
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21703
21787
  _v = SWIG_CheckState(res);
@@ -21842,7 +21926,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_information(int nargs, VALUE *args, VALUE se
21842
21926
  argv[ii] = args[ii];
21843
21927
  }
21844
21928
  if (argc == 4) {
21845
- int _v;
21929
+ int _v = 0;
21846
21930
  void *vptr = 0;
21847
21931
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
21848
21932
  _v = SWIG_CheckState(res);
@@ -21871,7 +21955,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_information(int nargs, VALUE *args, VALUE se
21871
21955
  }
21872
21956
  }
21873
21957
  if (argc == 4) {
21874
- int _v;
21958
+ int _v = 0;
21875
21959
  void *vptr = 0;
21876
21960
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21877
21961
  _v = SWIG_CheckState(res);
@@ -22717,7 +22801,7 @@ _wrap_FXMessageBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
22717
22801
  FXRegion *arg2 = 0 ;
22718
22802
  void *argp1 = 0 ;
22719
22803
  int res1 = 0 ;
22720
- void *argp2 ;
22804
+ void *argp2 = 0 ;
22721
22805
  int res2 = 0 ;
22722
22806
 
22723
22807
  if ((argc < 1) || (argc > 1)) {
@@ -22813,7 +22897,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_setShape(int nargs, VALUE *args, VALUE self)
22813
22897
  argv[ii] = args[ii-1];
22814
22898
  }
22815
22899
  if (argc == 2) {
22816
- int _v;
22900
+ int _v = 0;
22817
22901
  void *vptr = 0;
22818
22902
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMessageBox, 0);
22819
22903
  _v = SWIG_CheckState(res);
@@ -22827,7 +22911,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_setShape(int nargs, VALUE *args, VALUE self)
22827
22911
  }
22828
22912
  }
22829
22913
  if (argc == 2) {
22830
- int _v;
22914
+ int _v = 0;
22831
22915
  void *vptr = 0;
22832
22916
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMessageBox, 0);
22833
22917
  _v = SWIG_CheckState(res);
@@ -22841,7 +22925,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_setShape(int nargs, VALUE *args, VALUE self)
22841
22925
  }
22842
22926
  }
22843
22927
  if (argc == 2) {
22844
- int _v;
22928
+ int _v = 0;
22845
22929
  void *vptr = 0;
22846
22930
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMessageBox, 0);
22847
22931
  _v = SWIG_CheckState(res);
@@ -22921,7 +23005,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_show(int nargs, VALUE *args, VALUE self) {
22921
23005
  argv[ii] = args[ii-1];
22922
23006
  }
22923
23007
  if (argc == 1) {
22924
- int _v;
23008
+ int _v = 0;
22925
23009
  void *vptr = 0;
22926
23010
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMessageBox, 0);
22927
23011
  _v = SWIG_CheckState(res);
@@ -22930,7 +23014,7 @@ SWIGINTERN VALUE _wrap_FXMessageBox_show(int nargs, VALUE *args, VALUE self) {
22930
23014
  }
22931
23015
  }
22932
23016
  if (argc == 2) {
22933
- int _v;
23017
+ int _v = 0;
22934
23018
  void *vptr = 0;
22935
23019
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMessageBox, 0);
22936
23020
  _v = SWIG_CheckState(res);
@@ -23477,7 +23561,7 @@ SWIGINTERN VALUE _wrap_new_FXWizard(int nargs, VALUE *args, VALUE self) {
23477
23561
  argv[ii] = args[ii];
23478
23562
  }
23479
23563
  if ((argc >= 3) && (argc <= 14)) {
23480
- int _v;
23564
+ int _v = 0;
23481
23565
  void *vptr = 0;
23482
23566
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
23483
23567
  _v = SWIG_CheckState(res);
@@ -23584,7 +23668,7 @@ SWIGINTERN VALUE _wrap_new_FXWizard(int nargs, VALUE *args, VALUE self) {
23584
23668
  }
23585
23669
  }
23586
23670
  if ((argc >= 3) && (argc <= 14)) {
23587
- int _v;
23671
+ int _v = 0;
23588
23672
  void *vptr = 0;
23589
23673
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
23590
23674
  _v = SWIG_CheckState(res);
@@ -24791,7 +24875,7 @@ _wrap_FXWizard_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
24791
24875
  FXRegion *arg2 = 0 ;
24792
24876
  void *argp1 = 0 ;
24793
24877
  int res1 = 0 ;
24794
- void *argp2 ;
24878
+ void *argp2 = 0 ;
24795
24879
  int res2 = 0 ;
24796
24880
 
24797
24881
  if ((argc < 1) || (argc > 1)) {
@@ -24887,7 +24971,7 @@ SWIGINTERN VALUE _wrap_FXWizard_setShape(int nargs, VALUE *args, VALUE self) {
24887
24971
  argv[ii] = args[ii-1];
24888
24972
  }
24889
24973
  if (argc == 2) {
24890
- int _v;
24974
+ int _v = 0;
24891
24975
  void *vptr = 0;
24892
24976
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWizard, 0);
24893
24977
  _v = SWIG_CheckState(res);
@@ -24901,7 +24985,7 @@ SWIGINTERN VALUE _wrap_FXWizard_setShape(int nargs, VALUE *args, VALUE self) {
24901
24985
  }
24902
24986
  }
24903
24987
  if (argc == 2) {
24904
- int _v;
24988
+ int _v = 0;
24905
24989
  void *vptr = 0;
24906
24990
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWizard, 0);
24907
24991
  _v = SWIG_CheckState(res);
@@ -24915,7 +24999,7 @@ SWIGINTERN VALUE _wrap_FXWizard_setShape(int nargs, VALUE *args, VALUE self) {
24915
24999
  }
24916
25000
  }
24917
25001
  if (argc == 2) {
24918
- int _v;
25002
+ int _v = 0;
24919
25003
  void *vptr = 0;
24920
25004
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWizard, 0);
24921
25005
  _v = SWIG_CheckState(res);
@@ -24995,7 +25079,7 @@ SWIGINTERN VALUE _wrap_FXWizard_show(int nargs, VALUE *args, VALUE self) {
24995
25079
  argv[ii] = args[ii-1];
24996
25080
  }
24997
25081
  if (argc == 1) {
24998
- int _v;
25082
+ int _v = 0;
24999
25083
  void *vptr = 0;
25000
25084
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWizard, 0);
25001
25085
  _v = SWIG_CheckState(res);
@@ -25004,7 +25088,7 @@ SWIGINTERN VALUE _wrap_FXWizard_show(int nargs, VALUE *args, VALUE self) {
25004
25088
  }
25005
25089
  }
25006
25090
  if (argc == 2) {
25007
- int _v;
25091
+ int _v = 0;
25008
25092
  void *vptr = 0;
25009
25093
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWizard, 0);
25010
25094
  _v = SWIG_CheckState(res);
@@ -25433,7 +25517,7 @@ SWIGINTERN VALUE _wrap_new_FXChoiceBox(int nargs, VALUE *args, VALUE self) {
25433
25517
  argv[ii] = args[ii];
25434
25518
  }
25435
25519
  if ((argc >= 5) && (argc <= 10)) {
25436
- int _v;
25520
+ int _v = 0;
25437
25521
  void *vptr = 0;
25438
25522
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
25439
25523
  _v = SWIG_CheckState(res);
@@ -25510,7 +25594,7 @@ SWIGINTERN VALUE _wrap_new_FXChoiceBox(int nargs, VALUE *args, VALUE self) {
25510
25594
  }
25511
25595
  }
25512
25596
  if ((argc >= 5) && (argc <= 10)) {
25513
- int _v;
25597
+ int _v = 0;
25514
25598
  void *vptr = 0;
25515
25599
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
25516
25600
  _v = SWIG_CheckState(res);
@@ -25729,7 +25813,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_ask(int nargs, VALUE *args, VALUE self) {
25729
25813
  argv[ii] = args[ii];
25730
25814
  }
25731
25815
  if (argc == 6) {
25732
- int _v;
25816
+ int _v = 0;
25733
25817
  void *vptr = 0;
25734
25818
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
25735
25819
  _v = SWIG_CheckState(res);
@@ -25771,7 +25855,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_ask(int nargs, VALUE *args, VALUE self) {
25771
25855
  }
25772
25856
  }
25773
25857
  if (argc == 6) {
25774
- int _v;
25858
+ int _v = 0;
25775
25859
  void *vptr = 0;
25776
25860
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
25777
25861
  _v = SWIG_CheckState(res);
@@ -26630,7 +26714,7 @@ _wrap_FXChoiceBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
26630
26714
  FXRegion *arg2 = 0 ;
26631
26715
  void *argp1 = 0 ;
26632
26716
  int res1 = 0 ;
26633
- void *argp2 ;
26717
+ void *argp2 = 0 ;
26634
26718
  int res2 = 0 ;
26635
26719
 
26636
26720
  if ((argc < 1) || (argc > 1)) {
@@ -26726,7 +26810,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_setShape(int nargs, VALUE *args, VALUE self)
26726
26810
  argv[ii] = args[ii-1];
26727
26811
  }
26728
26812
  if (argc == 2) {
26729
- int _v;
26813
+ int _v = 0;
26730
26814
  void *vptr = 0;
26731
26815
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXChoiceBox, 0);
26732
26816
  _v = SWIG_CheckState(res);
@@ -26740,7 +26824,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_setShape(int nargs, VALUE *args, VALUE self)
26740
26824
  }
26741
26825
  }
26742
26826
  if (argc == 2) {
26743
- int _v;
26827
+ int _v = 0;
26744
26828
  void *vptr = 0;
26745
26829
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXChoiceBox, 0);
26746
26830
  _v = SWIG_CheckState(res);
@@ -26754,7 +26838,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_setShape(int nargs, VALUE *args, VALUE self)
26754
26838
  }
26755
26839
  }
26756
26840
  if (argc == 2) {
26757
- int _v;
26841
+ int _v = 0;
26758
26842
  void *vptr = 0;
26759
26843
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXChoiceBox, 0);
26760
26844
  _v = SWIG_CheckState(res);
@@ -26834,7 +26918,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_show(int nargs, VALUE *args, VALUE self) {
26834
26918
  argv[ii] = args[ii-1];
26835
26919
  }
26836
26920
  if (argc == 1) {
26837
- int _v;
26921
+ int _v = 0;
26838
26922
  void *vptr = 0;
26839
26923
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXChoiceBox, 0);
26840
26924
  _v = SWIG_CheckState(res);
@@ -26843,7 +26927,7 @@ SWIGINTERN VALUE _wrap_FXChoiceBox_show(int nargs, VALUE *args, VALUE self) {
26843
26927
  }
26844
26928
  }
26845
26929
  if (argc == 2) {
26846
- int _v;
26930
+ int _v = 0;
26847
26931
  void *vptr = 0;
26848
26932
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXChoiceBox, 0);
26849
26933
  _v = SWIG_CheckState(res);
@@ -27009,1139 +27093,1112 @@ fail:
27009
27093
 
27010
27094
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
27011
27095
 
27012
- static void *_p_FXDriveBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27013
- return (void *)((FXComposite *) (FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27014
- }
27015
- static void *_p_FXMessageBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27016
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27017
- }
27018
- static void *_p_FXToolBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27019
- return (void *)((FXComposite *) (FXPacker *)(FXDockBar *) ((FXToolBar *) x));
27096
+ static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27097
+ return (void *)((FXComposite *) ((FX4Splitter *) x));
27020
27098
  }
27021
- static void *_p_FXToolTipTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27022
- return (void *)((FXComposite *) (FXShell *) ((FXToolTip *) x));
27099
+ static void *_p_FXChoiceBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27100
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27023
27101
  }
27024
- static void *_p_FXTabBookTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27025
- return (void *)((FXComposite *) (FXPacker *)(FXTabBar *) ((FXTabBook *) x));
27102
+ static void *_p_FXColorDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27103
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27026
27104
  }
27027
- static void *_p_FXFileDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27028
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27105
+ static void *_p_FXColorSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27106
+ return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
27029
27107
  }
27030
- static void *_p_FXReplaceDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27031
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27108
+ static void *_p_FXComboBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27109
+ return (void *)((FXComposite *) (FXPacker *) ((FXComboBox *) x));
27032
27110
  }
27033
- static void *_p_FXProgressDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27034
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27111
+ static void *_p_FXDialogBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27112
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27035
27113
  }
27036
- static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27037
- return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
27114
+ static void *_p_FXDirBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27115
+ return (void *)((FXComposite *) (FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27038
27116
  }
27039
- static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27040
- return (void *)((FXComposite *) ((FXShell *) x));
27117
+ static void *_p_FXDirDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27118
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27041
27119
  }
27042
- static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27043
- return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
27120
+ static void *_p_FXDirSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27121
+ return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
27044
27122
  }
27045
- static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27046
- return (void *)((FXComposite *) ((FXScrollArea *) x));
27123
+ static void *_p_FXDockBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27124
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockBar *) x));
27047
27125
  }
27048
- static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27049
- return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
27126
+ static void *_p_FXDockSiteTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27127
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
27050
27128
  }
27051
- static void *_p_FXScrollWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27052
- return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
27129
+ static void *_p_FXDriveBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27130
+ return (void *)((FXComposite *) (FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27053
27131
  }
27054
- static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27055
- return (void *)((FXComposite *) ((FXRootWindow *) x));
27132
+ static void *_p_FXFileDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27133
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27056
27134
  }
27057
- static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27058
- return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
27135
+ static void *_p_FXFileSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27136
+ return (void *)((FXComposite *) (FXPacker *) ((FXFileSelector *) x));
27059
27137
  }
27060
- static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27061
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27138
+ static void *_p_FXFontDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27139
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27062
27140
  }
27063
- static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27064
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
27141
+ static void *_p_FXFontSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27142
+ return (void *)((FXComposite *) (FXPacker *) ((FXFontSelector *) x));
27065
27143
  }
27066
- static void *_p_FXComboBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27067
- return (void *)((FXComposite *) (FXPacker *) ((FXComboBox *) x));
27144
+ static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27145
+ return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
27068
27146
  }
27069
27147
  static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27070
27148
  return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
27071
27149
  }
27072
- static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27073
- return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
27150
+ static void *_p_FXImageViewTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27151
+ return (void *)((FXComposite *) (FXScrollArea *) ((FXImageView *) x));
27074
27152
  }
27075
- static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27076
- return (void *)((FXComposite *) ((FX4Splitter *) x));
27153
+ static void *_p_FXInputDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27154
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27077
27155
  }
27078
- static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27079
- return (void *)((FXComposite *) ((FXSplitter *) x));
27156
+ static void *_p_FXListBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27157
+ return (void *)((FXComposite *) (FXPacker *) ((FXListBox *) x));
27080
27158
  }
27081
- static void *_p_FXDialogBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27082
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27159
+ static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27160
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27083
27161
  }
27084
- static void *_p_FXRealSpinnerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27085
- return (void *)((FXComposite *) (FXPacker *) ((FXRealSpinner *) x));
27162
+ static void *_p_FXMatrixTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27163
+ return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
27086
27164
  }
27087
- static void *_p_FXSpinnerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27088
- return (void *)((FXComposite *) (FXPacker *) ((FXSpinner *) x));
27165
+ static void *_p_FXMessageBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27166
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27089
27167
  }
27090
27168
  static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27091
27169
  return (void *)((FXComposite *) ((FXPacker *) x));
27092
27170
  }
27093
- static void *_p_FXDirBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27094
- return (void *)((FXComposite *) (FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27095
- }
27096
- static void *_p_FXSwitcherTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27097
- return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
27098
- }
27099
- static void *_p_FXDirSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27100
- return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
27171
+ static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27172
+ return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
27101
27173
  }
27102
- static void *_p_FXFileSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27103
- return (void *)((FXComposite *) (FXPacker *) ((FXFileSelector *) x));
27174
+ static void *_p_FXPrintDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27175
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27104
27176
  }
27105
- static void *_p_FXColorSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27106
- return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
27177
+ static void *_p_FXProgressDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27178
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27107
27179
  }
27108
- static void *_p_FXFontSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27109
- return (void *)((FXComposite *) (FXPacker *) ((FXFontSelector *) x));
27180
+ static void *_p_FXRealSpinnerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27181
+ return (void *)((FXComposite *) (FXPacker *) ((FXRealSpinner *) x));
27110
27182
  }
27111
- static void *_p_FXShutterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27112
- return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
27183
+ static void *_p_FXReplaceDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27184
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27113
27185
  }
27114
- static void *_p_FXDockSiteTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27115
- return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
27186
+ static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27187
+ return (void *)((FXComposite *) ((FXRootWindow *) x));
27116
27188
  }
27117
27189
  static void *_p_FXRulerViewTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27118
27190
  return (void *)((FXComposite *) (FXScrollArea *) ((FXRulerView *) x));
27119
27191
  }
27120
- static void *_p_FXTreeListBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27121
- return (void *)((FXComposite *) (FXPacker *) ((FXTreeListBox *) x));
27192
+ static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27193
+ return (void *)((FXComposite *) ((FXScrollArea *) x));
27122
27194
  }
27123
- static void *_p_FXListBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27124
- return (void *)((FXComposite *) (FXPacker *) ((FXListBox *) x));
27195
+ static void *_p_FXScrollWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27196
+ return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
27125
27197
  }
27126
- static void *_p_FXMatrixTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27127
- return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
27198
+ static void *_p_FXSearchDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27199
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27200
+ }
27201
+ static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27202
+ return (void *)((FXComposite *) ((FXShell *) x));
27203
+ }
27204
+ static void *_p_FXShutterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27205
+ return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
27128
27206
  }
27129
27207
  static void *_p_FXShutterItemTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27130
27208
  return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
27131
27209
  }
27132
- static void *_p_FXWizardTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27133
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27210
+ static void *_p_FXSpinnerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27211
+ return (void *)((FXComposite *) (FXPacker *) ((FXSpinner *) x));
27134
27212
  }
27135
- static void *_p_FXDockBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27136
- return (void *)((FXComposite *) (FXPacker *) ((FXDockBar *) x));
27213
+ static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27214
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
27137
27215
  }
27138
- static void *_p_FXChoiceBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27139
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27216
+ static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27217
+ return (void *)((FXComposite *) ((FXSplitter *) x));
27140
27218
  }
27141
- static void *_p_FXTabBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27142
- return (void *)((FXComposite *) (FXPacker *) ((FXTabBar *) x));
27219
+ static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27220
+ return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
27143
27221
  }
27144
- static void *_p_FXImageViewTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27145
- return (void *)((FXComposite *) (FXScrollArea *) ((FXImageView *) x));
27222
+ static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27223
+ return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
27146
27224
  }
27147
- static void *_p_FXDirDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27148
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27225
+ static void *_p_FXSwitcherTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27226
+ return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
27149
27227
  }
27150
- static void *_p_FXColorDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27151
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27152
- }
27153
- static void *_p_FXFontDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27154
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27155
- }
27156
- static void *_p_FXSearchDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27157
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27158
- }
27159
- static void *_p_FXInputDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27160
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27228
+ static void *_p_FXTabBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27229
+ return (void *)((FXComposite *) (FXPacker *) ((FXTabBar *) x));
27161
27230
  }
27162
- static void *_p_FXPrintDialogTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27163
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27231
+ static void *_p_FXTabBookTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27232
+ return (void *)((FXComposite *) (FXPacker *)(FXTabBar *) ((FXTabBook *) x));
27164
27233
  }
27165
- static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27166
- return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
27234
+ static void *_p_FXToolBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27235
+ return (void *)((FXComposite *) (FXPacker *)(FXDockBar *) ((FXToolBar *) x));
27167
27236
  }
27168
27237
  static void *_p_FXToolBarShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27169
27238
  return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
27170
27239
  }
27171
- static void *_p_FXSearchDialogTo_p_FXReplaceDialog(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27172
- return (void *)((FXReplaceDialog *) ((FXSearchDialog *) x));
27173
- }
27174
- static void *_p_FXPopupTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27175
- return (void *)((FXShell *) ((FXPopup *) x));
27176
- }
27177
- static void *_p_FXInputDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27178
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27179
- }
27180
- static void *_p_FXSearchDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27181
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27182
- }
27183
- static void *_p_FXFontDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27184
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27185
- }
27186
- static void *_p_FXColorDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27187
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27240
+ static void *_p_FXToolTipTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27241
+ return (void *)((FXComposite *) (FXShell *) ((FXToolTip *) x));
27188
27242
  }
27189
- static void *_p_FXDirDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27190
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27243
+ static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27244
+ return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
27191
27245
  }
27192
- static void *_p_FXPrintDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27193
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27246
+ static void *_p_FXTreeListBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27247
+ return (void *)((FXComposite *) (FXPacker *) ((FXTreeListBox *) x));
27194
27248
  }
27195
- static void *_p_FXMessageBoxTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27196
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27249
+ static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27250
+ return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
27197
27251
  }
27198
- static void *_p_FXToolTipTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27199
- return (void *)((FXShell *) ((FXToolTip *) x));
27252
+ static void *_p_FXWizardTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27253
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27200
27254
  }
27201
- static void *_p_FXSplashWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27202
- return (void *)((FXShell *) (FXTopWindow *) ((FXSplashWindow *) x));
27255
+ static void *_p_FXChoiceBoxTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27256
+ return (void *)((FXDialogBox *) ((FXChoiceBox *) x));
27203
27257
  }
27204
- static void *_p_FXMainWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27205
- return (void *)((FXShell *) (FXTopWindow *) ((FXMainWindow *) x));
27258
+ static void *_p_FXColorDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27259
+ return (void *)((FXDialogBox *) ((FXColorDialog *) x));
27206
27260
  }
27207
- static void *_p_FXTopWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27208
- return (void *)((FXShell *) ((FXTopWindow *) x));
27261
+ static void *_p_FXDirDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27262
+ return (void *)((FXDialogBox *) ((FXDirDialog *) x));
27209
27263
  }
27210
- static void *_p_FXChoiceBoxTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27211
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27264
+ static void *_p_FXFileDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27265
+ return (void *)((FXDialogBox *) ((FXFileDialog *) x));
27212
27266
  }
27213
- static void *_p_FXWizardTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27214
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27267
+ static void *_p_FXFontDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27268
+ return (void *)((FXDialogBox *) ((FXFontDialog *) x));
27215
27269
  }
27216
- static void *_p_FXToolBarShellTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27217
- return (void *)((FXShell *) (FXTopWindow *) ((FXToolBarShell *) x));
27270
+ static void *_p_FXInputDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27271
+ return (void *)((FXDialogBox *) ((FXInputDialog *) x));
27218
27272
  }
27219
- static void *_p_FXReplaceDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27220
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27273
+ static void *_p_FXMessageBoxTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27274
+ return (void *)((FXDialogBox *) ((FXMessageBox *) x));
27221
27275
  }
27222
- static void *_p_FXFileDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27223
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27276
+ static void *_p_FXPrintDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27277
+ return (void *)((FXDialogBox *) ((FXPrintDialog *) x));
27224
27278
  }
27225
- static void *_p_FXProgressDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27226
- return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27279
+ static void *_p_FXProgressDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27280
+ return (void *)((FXDialogBox *) ((FXProgressDialog *) x));
27227
27281
  }
27228
- static void *_p_FXDialogBoxTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27229
- return (void *)((FXShell *) (FXTopWindow *) ((FXDialogBox *) x));
27282
+ static void *_p_FXReplaceDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27283
+ return (void *)((FXDialogBox *) ((FXReplaceDialog *) x));
27230
27284
  }
27231
- static void *_p_FXMessageBoxTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27232
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXMessageBox *) x));
27285
+ static void *_p_FXSearchDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27286
+ return (void *)((FXDialogBox *) (FXReplaceDialog *) ((FXSearchDialog *) x));
27233
27287
  }
27234
- static void *_p_FXPrintDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27235
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXPrintDialog *) x));
27288
+ static void *_p_FXWizardTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27289
+ return (void *)((FXDialogBox *) ((FXWizard *) x));
27236
27290
  }
27237
- static void *_p_FXInputDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27238
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXInputDialog *) x));
27291
+ static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27292
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
27239
27293
  }
27240
- static void *_p_FXSearchDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27241
- return (void *)((FXTopWindow *) (FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27294
+ static void *_p_FX7SegmentTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27295
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
27242
27296
  }
27243
- static void *_p_FXFontDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27244
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXFontDialog *) x));
27297
+ static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27298
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
27245
27299
  }
27246
- static void *_p_FXColorDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27247
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXColorDialog *) x));
27300
+ static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27301
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
27248
27302
  }
27249
- static void *_p_FXDirDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27250
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXDirDialog *) x));
27303
+ static void *_p_FXCanvasTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27304
+ return (void *)((FXDrawable *) (FXWindow *) ((FXCanvas *) x));
27251
27305
  }
27252
- static void *_p_FXSplashWindowTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27253
- return (void *)((FXTopWindow *) ((FXSplashWindow *) x));
27306
+ static void *_p_FXChoiceBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27307
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27254
27308
  }
27255
- static void *_p_FXMainWindowTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27256
- return (void *)((FXTopWindow *) ((FXMainWindow *) x));
27309
+ static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27310
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
27257
27311
  }
27258
- static void *_p_FXChoiceBoxTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27259
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXChoiceBox *) x));
27312
+ static void *_p_FXColorDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27313
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27260
27314
  }
27261
- static void *_p_FXWizardTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27262
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXWizard *) x));
27315
+ static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27316
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
27263
27317
  }
27264
- static void *_p_FXToolBarShellTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27265
- return (void *)((FXTopWindow *) ((FXToolBarShell *) x));
27318
+ static void *_p_FXColorSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27319
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
27266
27320
  }
27267
- static void *_p_FXProgressDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27268
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXProgressDialog *) x));
27321
+ static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27322
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
27269
27323
  }
27270
- static void *_p_FXReplaceDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27271
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXReplaceDialog *) x));
27324
+ static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27325
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
27272
27326
  }
27273
- static void *_p_FXFileDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27274
- return (void *)((FXTopWindow *) (FXDialogBox *) ((FXFileDialog *) x));
27327
+ static void *_p_FXComboBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27328
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
27275
27329
  }
27276
- static void *_p_FXDialogBoxTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27277
- return (void *)((FXTopWindow *) ((FXDialogBox *) x));
27330
+ static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27331
+ return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
27278
27332
  }
27279
- static void *_p_FXGradientBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27280
- return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
27333
+ static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27334
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
27281
27335
  }
27282
- static void *_p_FXShutterItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27283
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
27336
+ static void *_p_FXDialogBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27337
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27284
27338
  }
27285
- static void *_p_FXColorBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27286
- return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
27339
+ static void *_p_FXDirBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27340
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27287
27341
  }
27288
- static void *_p_FXTabBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27289
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTabBar *) x));
27342
+ static void *_p_FXDirDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27343
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27290
27344
  }
27291
- static void *_p_FXSwitcherTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27292
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
27345
+ static void *_p_FXDirSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27346
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
27293
27347
  }
27294
- static void *_p_FXTextFieldTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27295
- return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
27348
+ static void *_p_FXDockBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27349
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
27296
27350
  }
27297
- static void *_p_FXToolBarTabTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27298
- return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
27351
+ static void *_p_FXDockHandlerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27352
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
27299
27353
  }
27300
- static void *_p_FXDriveBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27301
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27354
+ static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27355
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
27302
27356
  }
27303
- static void *_p_FXMatrixTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27304
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
27357
+ static void *_p_FXDockTitleTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27358
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
27305
27359
  }
27306
- static void *_p_FXDialogBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27307
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27360
+ static void *_p_FXDragCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27361
+ return (void *)((FXDrawable *) (FXWindow *) ((FXDragCorner *) x));
27308
27362
  }
27309
- static void *_p_FXScrollCornerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27310
- return (void *)((FXWindow *) ((FXScrollCorner *) x));
27363
+ static void *_p_FXDriveBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27364
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27311
27365
  }
27312
- static void *_p_FXArrowButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27313
- return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
27366
+ static void *_p_FXFileDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27367
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27314
27368
  }
27315
- static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27316
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
27369
+ static void *_p_FXFileSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27370
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
27317
27371
  }
27318
- static void *_p_FXWizardTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27319
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27372
+ static void *_p_FXFontDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27373
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27320
27374
  }
27321
- static void *_p_FXChoiceBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27322
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27375
+ static void *_p_FXFontSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27376
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
27323
27377
  }
27324
- static void *_p_FXHeaderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27325
- return (void *)((FXWindow *) (FXFrame *) ((FXHeader *) x));
27378
+ static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27379
+ return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
27326
27380
  }
27327
- static void *_p_FXSplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27328
- return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
27381
+ static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27382
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
27329
27383
  }
27330
- static void *_p_FX4SplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27331
- return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
27384
+ static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27385
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
27332
27386
  }
27333
- static void *_p_FXSpringTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27334
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
27387
+ static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27388
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
27335
27389
  }
27336
- static void *_p_FXPackerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27337
- return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
27390
+ static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27391
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
27338
27392
  }
27339
- static void *_p_FXTabBookTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27340
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
27393
+ static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27394
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
27341
27395
  }
27342
- static void *_p_FXImageFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27343
- return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
27396
+ static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27397
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
27344
27398
  }
27345
- static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27346
- return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
27399
+ static void *_p_FXImageViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27400
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
27347
27401
  }
27348
- static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27349
- return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
27402
+ static void *_p_FXInputDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27403
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27350
27404
  }
27351
- static void *_p_FXSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27352
- return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
27405
+ static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27406
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
27353
27407
  }
27354
- static void *_p_FXProgressBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27355
- return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
27408
+ static void *_p_FXListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27409
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
27356
27410
  }
27357
- static void *_p_FXShutterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27358
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
27411
+ static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27412
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27359
27413
  }
27360
- static void *_p_FXFileDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27361
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27414
+ static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27415
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
27362
27416
  }
27363
- static void *_p_FXReplaceDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27364
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27417
+ static void *_p_FXMessageBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27418
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27365
27419
  }
27366
- static void *_p_FXProgressDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27367
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27420
+ static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27421
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
27368
27422
  }
27369
- static void *_p_FXToolTipTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27370
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXToolTip *) x));
27423
+ static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27424
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
27371
27425
  }
27372
- static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27373
- return (void *)((FXWindow *) ((FXComposite *) x));
27426
+ static void *_p_FXPrintDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27427
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27374
27428
  }
27375
- static void *_p_FXBitmapFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27376
- return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
27429
+ static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27430
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
27377
27431
  }
27378
- static void *_p_FXRealSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27379
- return (void *)((FXWindow *) (FXFrame *) ((FXRealSlider *) x));
27432
+ static void *_p_FXProgressDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27433
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27380
27434
  }
27381
- static void *_p_FXSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27382
- return (void *)((FXWindow *) (FXFrame *) ((FXSlider *) x));
27435
+ static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27436
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
27383
27437
  }
27384
- static void *_p_FXDockSiteTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27385
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
27438
+ static void *_p_FXRealSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27439
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
27386
27440
  }
27387
- static void *_p_FXGroupBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27388
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
27441
+ static void *_p_FXReplaceDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27442
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27389
27443
  }
27390
- static void *_p_FXColorRingTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27391
- return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
27444
+ static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27445
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
27392
27446
  }
27393
- static void *_p_FXDockHandlerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27394
- return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
27447
+ static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27448
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
27395
27449
  }
27396
- static void *_p_FXTreeListBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27397
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
27450
+ static void *_p_FXRulerViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27451
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
27398
27452
  }
27399
- static void *_p_FXListBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27400
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
27453
+ static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27454
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
27401
27455
  }
27402
- static void *_p_FXCanvasTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27403
- return (void *)((FXWindow *) ((FXCanvas *) x));
27456
+ static void *_p_FXScrollBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27457
+ return (void *)((FXDrawable *) (FXWindow *) ((FXScrollBar *) x));
27404
27458
  }
27405
- static void *_p_FXColorWheelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27406
- return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
27459
+ static void *_p_FXScrollCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27460
+ return (void *)((FXDrawable *) (FXWindow *) ((FXScrollCorner *) x));
27407
27461
  }
27408
- static void *_p_FXMessageBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27409
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27462
+ static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27463
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
27410
27464
  }
27411
- static void *_p_FXToolBarGripTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27412
- return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
27465
+ static void *_p_FXSearchDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27466
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27413
27467
  }
27414
- static void *_p_FXScrollBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27415
- return (void *)((FXWindow *) ((FXScrollBar *) x));
27468
+ static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27469
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
27416
27470
  }
27417
- static void *_p_FXComboBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27418
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXComboBox *) x));
27471
+ static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27472
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
27419
27473
  }
27420
- static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27421
- return (void *)((FXWindow *) ((FXFrame *) x));
27474
+ static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27475
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
27422
27476
  }
27423
- static void *_p_FX7SegmentTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27424
- return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
27477
+ static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27478
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
27425
27479
  }
27426
- static void *_p_FXDockTitleTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27427
- return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
27480
+ static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27481
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
27428
27482
  }
27429
- static void *_p_FXStatusBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27430
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
27483
+ static void *_p_FXSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27484
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
27431
27485
  }
27432
- static void *_p_FXKnobTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27433
- return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
27486
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27487
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
27434
27488
  }
27435
- static void *_p_FXRulerViewTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27436
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
27489
+ static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27490
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
27437
27491
  }
27438
- static void *_p_FXRealSpinnerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27439
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
27492
+ static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27493
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
27440
27494
  }
27441
- static void *_p_FXSpinnerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27442
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpinner *) x));
27495
+ static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27496
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
27443
27497
  }
27444
- static void *_p_FXStatusLineTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27445
- return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
27498
+ static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27499
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
27446
27500
  }
27447
- static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27448
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
27501
+ static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27502
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
27449
27503
  }
27450
- static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27451
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27504
+ static void *_p_FXTabBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27505
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
27452
27506
  }
27453
- static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27454
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
27507
+ static void *_p_FXTabBookTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27508
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
27455
27509
  }
27456
- static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27457
- return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
27510
+ static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27511
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
27458
27512
  }
27459
- static void *_p_FXScrollWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27460
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
27513
+ static void *_p_FXToolBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27514
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
27461
27515
  }
27462
- static void *_p_FXDockBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27463
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockBar *) x));
27516
+ static void *_p_FXToolBarGripTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27517
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
27464
27518
  }
27465
- static void *_p_FXDirDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27466
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27519
+ static void *_p_FXToolBarShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27520
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
27467
27521
  }
27468
- static void *_p_FXColorDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27469
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27522
+ static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27523
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
27470
27524
  }
27471
- static void *_p_FXFontDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27472
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27525
+ static void *_p_FXToolTipTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27526
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
27473
27527
  }
27474
- static void *_p_FXSearchDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27475
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27528
+ static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27529
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
27476
27530
  }
27477
- static void *_p_FXInputDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27478
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27531
+ static void *_p_FXTreeListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27532
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
27479
27533
  }
27480
- static void *_p_FXPrintDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27481
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27534
+ static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27535
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
27482
27536
  }
27483
- static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27484
- return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
27537
+ static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27538
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
27485
27539
  }
27486
- static void *_p_FXScrollAreaTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27487
- return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
27540
+ static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27541
+ return (void *)((FXDrawable *) ((FXWindow *) x));
27488
27542
  }
27489
- static void *_p_FXColorWellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27490
- return (void *)((FXWindow *) (FXFrame *) ((FXColorWell *) x));
27543
+ static void *_p_FXWizardTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27544
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27491
27545
  }
27492
- static void *_p_FXDragCornerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27493
- return (void *)((FXWindow *) ((FXDragCorner *) x));
27546
+ static void *_p_FXStatusBarTo_p_FXHorizontalFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27547
+ return (void *)((FXHorizontalFrame *) ((FXStatusBar *) x));
27494
27548
  }
27495
- static void *_p_FXRulerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27496
- return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
27549
+ static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27550
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
27497
27551
  }
27498
- static void *_p_FXDialTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27499
- return (void *)((FXWindow *) (FXFrame *) ((FXDial *) x));
27552
+ static void *_p_FX7SegmentTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27553
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
27500
27554
  }
27501
- static void *_p_FXVerticalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27502
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
27555
+ static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27556
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
27503
27557
  }
27504
- static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27505
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
27558
+ static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27559
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
27506
27560
  }
27507
- static void *_p_FXImageViewTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27508
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXImageView *) x));
27561
+ static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27562
+ return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
27509
27563
  }
27510
- static void *_p_FXFontSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27511
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXFontSelector *) x));
27564
+ static void *_p_FXCanvasTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27565
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
27512
27566
  }
27513
- static void *_p_FXColorSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27514
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXColorSelector *) x));
27567
+ static void *_p_FXChoiceBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27568
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27515
27569
  }
27516
- static void *_p_FXFileSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27517
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXFileSelector *) x));
27570
+ static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27571
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
27518
27572
  }
27519
- static void *_p_FXDirSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27520
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDirSelector *) x));
27573
+ static void *_p_FXColorDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27574
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27521
27575
  }
27522
- static void *_p_FXToolBarShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27523
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
27576
+ static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27577
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
27524
27578
  }
27525
- static void *_p_FXToolBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27526
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
27579
+ static void *_p_FXColorSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27580
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
27527
27581
  }
27528
- static void *_p_FXDirBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27529
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27582
+ static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27583
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
27530
27584
  }
27531
- static void *_p_FXStatusBarTo_p_FXHorizontalFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27532
- return (void *)((FXHorizontalFrame *) ((FXStatusBar *) x));
27585
+ static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27586
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
27533
27587
  }
27534
- static void *_p_FXDirDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27535
- return (void *)((FXDialogBox *) ((FXDirDialog *) x));
27588
+ static void *_p_FXComboBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27589
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
27536
27590
  }
27537
- static void *_p_FXColorDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27538
- return (void *)((FXDialogBox *) ((FXColorDialog *) x));
27591
+ static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27592
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
27539
27593
  }
27540
- static void *_p_FXFontDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27541
- return (void *)((FXDialogBox *) ((FXFontDialog *) x));
27594
+ static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27595
+ return (void *)((FXId *) ((FXCursor *) x));
27542
27596
  }
27543
- static void *_p_FXSearchDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27544
- return (void *)((FXDialogBox *) (FXReplaceDialog *) ((FXSearchDialog *) x));
27597
+ static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27598
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
27545
27599
  }
27546
- static void *_p_FXInputDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27547
- return (void *)((FXDialogBox *) ((FXInputDialog *) x));
27600
+ static void *_p_FXDialogBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27601
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27548
27602
  }
27549
- static void *_p_FXPrintDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27550
- return (void *)((FXDialogBox *) ((FXPrintDialog *) x));
27603
+ static void *_p_FXDirBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27604
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27551
27605
  }
27552
- static void *_p_FXMessageBoxTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27553
- return (void *)((FXDialogBox *) ((FXMessageBox *) x));
27606
+ static void *_p_FXDirDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27607
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27554
27608
  }
27555
- static void *_p_FXChoiceBoxTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27556
- return (void *)((FXDialogBox *) ((FXChoiceBox *) x));
27609
+ static void *_p_FXDirSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27610
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
27557
27611
  }
27558
- static void *_p_FXFileDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27559
- return (void *)((FXDialogBox *) ((FXFileDialog *) x));
27612
+ static void *_p_FXDockBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27613
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
27560
27614
  }
27561
- static void *_p_FXReplaceDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27562
- return (void *)((FXDialogBox *) ((FXReplaceDialog *) x));
27615
+ static void *_p_FXDockHandlerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27616
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
27563
27617
  }
27564
- static void *_p_FXProgressDialogTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27565
- return (void *)((FXDialogBox *) ((FXProgressDialog *) x));
27618
+ static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27619
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
27566
27620
  }
27567
- static void *_p_FXWizardTo_p_FXDialogBox(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27568
- return (void *)((FXDialogBox *) ((FXWizard *) x));
27621
+ static void *_p_FXDockTitleTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27622
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
27569
27623
  }
27570
- static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27571
- return (void *)((FXObject *) ((FXDocument *) x));
27624
+ static void *_p_FXDragCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27625
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
27572
27626
  }
27573
- static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27574
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
27627
+ static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27628
+ return (void *)((FXId *) ((FXDrawable *) x));
27575
27629
  }
27576
- static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27577
- return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
27630
+ static void *_p_FXDriveBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27631
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27578
27632
  }
27579
- static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27580
- return (void *)((FXObject *) ((FXHeaderItem *) x));
27633
+ static void *_p_FXFileDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27634
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27581
27635
  }
27582
- static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27583
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
27636
+ static void *_p_FXFileSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27637
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
27584
27638
  }
27585
- static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27586
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
27639
+ static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27640
+ return (void *)((FXId *) ((FXFont *) x));
27587
27641
  }
27588
- static void *_p_FXTabBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27589
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
27642
+ static void *_p_FXFontDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27643
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27590
27644
  }
27591
- static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27592
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
27645
+ static void *_p_FXFontSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27646
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
27593
27647
  }
27594
- static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27595
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
27648
+ static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27649
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
27596
27650
  }
27597
- static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27598
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
27651
+ static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27652
+ return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
27599
27653
  }
27600
- static void *_p_FXDriveBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27601
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27654
+ static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27655
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
27602
27656
  }
27603
- static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27604
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
27657
+ static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27658
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
27605
27659
  }
27606
- static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27607
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
27660
+ static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27661
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
27608
27662
  }
27609
- static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27610
- return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
27663
+ static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27664
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
27611
27665
  }
27612
- static void *_p_FXDialogBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27613
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27666
+ static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27667
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
27614
27668
  }
27615
- static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27616
- return (void *)((FXObject *) ((FXRecentFiles *) x));
27669
+ static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27670
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
27617
27671
  }
27618
- static void *_p_FXScrollCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27619
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
27672
+ static void *_p_FXImageViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27673
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
27620
27674
  }
27621
- static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27622
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
27675
+ static void *_p_FXInputDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27676
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27623
27677
  }
27624
- static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27625
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
27678
+ static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27679
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
27626
27680
  }
27627
- static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27628
- return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
27681
+ static void *_p_FXListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27682
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
27629
27683
  }
27630
- static void *_p_FXWizardTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27631
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27684
+ static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27685
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27632
27686
  }
27633
- static void *_p_FXChoiceBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27634
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27687
+ static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27688
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
27635
27689
  }
27636
- static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27637
- return (void *)((FXObject *) ((FXApp *) x));
27690
+ static void *_p_FXMessageBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27691
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27638
27692
  }
27639
- static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27640
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
27693
+ static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27694
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
27641
27695
  }
27642
- static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27643
- return (void *)((FXObject *) ((FXTranslator *) x));
27696
+ static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27697
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
27644
27698
  }
27645
- static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27646
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
27699
+ static void *_p_FXPrintDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27700
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27647
27701
  }
27648
- static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27649
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
27702
+ static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27703
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
27650
27704
  }
27651
- static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27652
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
27705
+ static void *_p_FXProgressDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27706
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27653
27707
  }
27654
- static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27655
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
27708
+ static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27709
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
27656
27710
  }
27657
- static void *_p_FXTabBookTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27658
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
27711
+ static void *_p_FXRealSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27712
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
27659
27713
  }
27660
- static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27661
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
27714
+ static void *_p_FXReplaceDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27715
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27662
27716
  }
27663
- static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27664
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
27717
+ static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27718
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
27665
27719
  }
27666
- static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27667
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
27720
+ static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27721
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
27668
27722
  }
27669
- static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27670
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
27723
+ static void *_p_FXRulerViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27724
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
27671
27725
  }
27672
- static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27673
- return (void *)((FXObject *) ((FXId *) x));
27726
+ static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27727
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
27674
27728
  }
27675
- static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27676
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
27729
+ static void *_p_FXScrollBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27730
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
27677
27731
  }
27678
- static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27679
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
27732
+ static void *_p_FXScrollCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27733
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
27680
27734
  }
27681
- static void *_p_FXFileDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27682
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27735
+ static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27736
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
27683
27737
  }
27684
- static void *_p_FXReplaceDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27685
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27738
+ static void *_p_FXSearchDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27739
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27686
27740
  }
27687
- static void *_p_FXProgressDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27688
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27741
+ static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27742
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
27689
27743
  }
27690
- static void *_p_FXToolTipTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27691
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
27744
+ static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27745
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
27692
27746
  }
27693
- static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27694
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
27747
+ static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27748
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
27695
27749
  }
27696
- static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27697
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
27750
+ static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27751
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
27698
27752
  }
27699
- static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27700
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
27753
+ static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27754
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
27701
27755
  }
27702
- static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27703
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
27756
+ static void *_p_FXSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27757
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
27704
27758
  }
27705
- static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27706
- return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
27759
+ static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27760
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
27707
27761
  }
27708
- static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27709
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
27762
+ static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27763
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
27710
27764
  }
27711
- static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27712
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
27765
+ static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27766
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
27713
27767
  }
27714
- static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27715
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
27768
+ static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27769
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
27716
27770
  }
27717
- static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27718
- return (void *)((FXObject *) ((FXDebugTarget *) x));
27771
+ static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27772
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
27719
27773
  }
27720
- static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27721
- return (void *)((FXObject *) ((FXDataTarget *) x));
27774
+ static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27775
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
27722
27776
  }
27723
- static void *_p_FXDockHandlerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27724
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
27777
+ static void *_p_FXTabBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27778
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
27725
27779
  }
27726
- static void *_p_FXCanvasTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27727
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
27780
+ static void *_p_FXTabBookTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27781
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
27728
27782
  }
27729
- static void *_p_FXListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27730
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
27783
+ static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27784
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
27731
27785
  }
27732
- static void *_p_FXTreeListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27733
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
27786
+ static void *_p_FXToolBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27787
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
27734
27788
  }
27735
- static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27736
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
27789
+ static void *_p_FXToolBarGripTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27790
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
27737
27791
  }
27738
- static void *_p_FXMessageBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27739
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27792
+ static void *_p_FXToolBarShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27793
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
27740
27794
  }
27741
- static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27742
- return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
27795
+ static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27796
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
27743
27797
  }
27744
- static void *_p_FXScrollBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27745
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
27798
+ static void *_p_FXToolTipTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27799
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
27746
27800
  }
27747
- static void *_p_FXToolBarGripTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27748
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
27801
+ static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27802
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
27749
27803
  }
27750
- static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27751
- return (void *)((FXObject *) (FXId *) ((FXFont *) x));
27804
+ static void *_p_FXTreeListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27805
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
27752
27806
  }
27753
- static void *_p_FXComboBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27754
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
27807
+ static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27808
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
27755
27809
  }
27756
- static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27757
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
27810
+ static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27811
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
27758
27812
  }
27759
- static void *_p_FX7SegmentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27760
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
27813
+ static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27814
+ return (void *)((FXId *) ((FXVisual *) x));
27761
27815
  }
27762
- static void *_p_FXDockTitleTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27763
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
27816
+ static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27817
+ return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
27764
27818
  }
27765
- static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27766
- return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
27819
+ static void *_p_FXWizardTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27820
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27767
27821
  }
27768
- static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27769
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
27822
+ static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27823
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
27770
27824
  }
27771
- static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27772
- return (void *)((FXObject *) ((FXDelegator *) x));
27825
+ static void *_p_FX7SegmentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27826
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
27773
27827
  }
27774
27828
  static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27775
27829
  return (void *)((FXObject *) ((FXAccelTable *) x));
27776
27830
  }
27777
- static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27778
- return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
27831
+ static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27832
+ return (void *)((FXObject *) ((FXApp *) x));
27833
+ }
27834
+ static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27835
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
27836
+ }
27837
+ static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27838
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
27779
27839
  }
27780
27840
  static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27781
27841
  return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
27782
27842
  }
27783
- static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27784
- return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
27843
+ static void *_p_FXCanvasTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27844
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
27785
27845
  }
27786
- static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27787
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
27846
+ static void *_p_FXChoiceBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27847
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27788
27848
  }
27789
- static void *_p_FXRealSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27790
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
27849
+ static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27850
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
27791
27851
  }
27792
- static void *_p_FXSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27793
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
27852
+ static void *_p_FXColorDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27853
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27794
27854
  }
27795
- static void *_p_FXRulerViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27796
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
27855
+ static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27856
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
27797
27857
  }
27798
- static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27799
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
27858
+ static void *_p_FXColorSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27859
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
27800
27860
  }
27801
- static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27802
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
27861
+ static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27862
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
27803
27863
  }
27804
- static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27805
- return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
27864
+ static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27865
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
27806
27866
  }
27807
- static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27808
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
27867
+ static void *_p_FXComboBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27868
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
27809
27869
  }
27810
- static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27811
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
27870
+ static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27871
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
27812
27872
  }
27813
- static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27814
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27873
+ static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27874
+ return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
27815
27875
  }
27816
- static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27817
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
27876
+ static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27877
+ return (void *)((FXObject *) ((FXDataTarget *) x));
27818
27878
  }
27819
- static void *_p_FXDockBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27820
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
27879
+ static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27880
+ return (void *)((FXObject *) ((FXDebugTarget *) x));
27821
27881
  }
27822
- static void *_p_FXDirDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27823
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27882
+ static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27883
+ return (void *)((FXObject *) ((FXDelegator *) x));
27824
27884
  }
27825
- static void *_p_FXColorDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27826
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
27885
+ static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27886
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
27827
27887
  }
27828
- static void *_p_FXFontDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27829
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27888
+ static void *_p_FXDialogBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27889
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27830
27890
  }
27831
- static void *_p_FXSearchDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27832
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27891
+ static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27892
+ return (void *)((FXObject *) ((FXDict *) x));
27833
27893
  }
27834
- static void *_p_FXInputDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27835
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27894
+ static void *_p_FXDirBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27895
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27836
27896
  }
27837
- static void *_p_FXPrintDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27838
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27897
+ static void *_p_FXDirDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27898
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
27839
27899
  }
27840
- static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27841
- return (void *)((FXObject *) ((FXDict *) x));
27900
+ static void *_p_FXDirSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27901
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
27902
+ }
27903
+ static void *_p_FXDockBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27904
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
27905
+ }
27906
+ static void *_p_FXDockHandlerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27907
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
27842
27908
  }
27843
- static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27844
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
27909
+ static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27910
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
27845
27911
  }
27846
- static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27847
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
27912
+ static void *_p_FXDockTitleTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27913
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
27848
27914
  }
27849
- static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27850
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
27915
+ static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27916
+ return (void *)((FXObject *) ((FXDocument *) x));
27851
27917
  }
27852
27918
  static void *_p_FXDragCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27853
27919
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
27854
27920
  }
27855
- static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27856
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
27857
- }
27858
- static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27859
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
27860
- }
27861
- static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27862
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
27921
+ static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27922
+ return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
27863
27923
  }
27864
- static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27865
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
27924
+ static void *_p_FXDriveBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27925
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27866
27926
  }
27867
- static void *_p_FXImageViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27868
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
27927
+ static void *_p_FXFileDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27928
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
27869
27929
  }
27870
- static void *_p_FXDirSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27871
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
27930
+ static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27931
+ return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
27872
27932
  }
27873
27933
  static void *_p_FXFileSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27874
27934
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
27875
27935
  }
27876
- static void *_p_FXColorSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27877
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
27936
+ static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27937
+ return (void *)((FXObject *) (FXId *) ((FXFont *) x));
27938
+ }
27939
+ static void *_p_FXFontDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27940
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
27878
27941
  }
27879
27942
  static void *_p_FXFontSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27880
27943
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
27881
27944
  }
27882
- static void *_p_FXToolBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27883
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
27884
- }
27885
- static void *_p_FXToolBarShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27886
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
27887
- }
27888
- static void *_p_FXDirBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27889
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
27945
+ static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27946
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
27890
27947
  }
27891
- static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27892
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
27948
+ static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27949
+ return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
27893
27950
  }
27894
- static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27895
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
27951
+ static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27952
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
27896
27953
  }
27897
- static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27898
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
27954
+ static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27955
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
27899
27956
  }
27900
- static void *_p_FXTabBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27901
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
27957
+ static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27958
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
27902
27959
  }
27903
- static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27904
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
27960
+ static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27961
+ return (void *)((FXObject *) ((FXHeaderItem *) x));
27905
27962
  }
27906
- static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27907
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
27963
+ static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27964
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
27908
27965
  }
27909
- static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27910
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
27966
+ static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27967
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
27911
27968
  }
27912
- static void *_p_FXDriveBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27913
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
27969
+ static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27970
+ return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
27914
27971
  }
27915
- static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27916
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
27972
+ static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27973
+ return (void *)((FXObject *) ((FXId *) x));
27917
27974
  }
27918
- static void *_p_FXDialogBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27919
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
27975
+ static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27976
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
27920
27977
  }
27921
- static void *_p_FXScrollCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27922
- return (void *)((FXDrawable *) (FXWindow *) ((FXScrollCorner *) x));
27978
+ static void *_p_FXImageViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27979
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
27923
27980
  }
27924
- static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27925
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
27981
+ static void *_p_FXInputDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27982
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
27926
27983
  }
27927
- static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27928
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
27984
+ static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27985
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
27929
27986
  }
27930
- static void *_p_FXWizardTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27931
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
27987
+ static void *_p_FXListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27988
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
27932
27989
  }
27933
- static void *_p_FXChoiceBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27934
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
27990
+ static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27991
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
27935
27992
  }
27936
- static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27937
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
27993
+ static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27994
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
27938
27995
  }
27939
- static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27940
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
27996
+ static void *_p_FXMessageBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27997
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
27941
27998
  }
27942
- static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27943
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
27999
+ static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28000
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
27944
28001
  }
27945
- static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27946
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
28002
+ static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28003
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
27947
28004
  }
27948
- static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27949
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
28005
+ static void *_p_FXPrintDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28006
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
27950
28007
  }
27951
- static void *_p_FXTabBookTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27952
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
28008
+ static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28009
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
27953
28010
  }
27954
- static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27955
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
28011
+ static void *_p_FXProgressDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28012
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
27956
28013
  }
27957
- static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27958
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
28014
+ static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28015
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
27959
28016
  }
27960
- static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27961
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
28017
+ static void *_p_FXRealSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28018
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
27962
28019
  }
27963
- static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27964
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
28020
+ static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28021
+ return (void *)((FXObject *) ((FXRecentFiles *) x));
27965
28022
  }
27966
- static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27967
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
28023
+ static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28024
+ return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
27968
28025
  }
27969
- static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27970
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
28026
+ static void *_p_FXReplaceDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28027
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
27971
28028
  }
27972
- static void *_p_FXFileDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27973
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
28029
+ static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28030
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
27974
28031
  }
27975
- static void *_p_FXReplaceDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27976
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
28032
+ static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28033
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
27977
28034
  }
27978
- static void *_p_FXProgressDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27979
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
28035
+ static void *_p_FXRulerViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28036
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
27980
28037
  }
27981
- static void *_p_FXToolTipTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27982
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
28038
+ static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28039
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
27983
28040
  }
27984
- static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27985
- return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
28041
+ static void *_p_FXScrollBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28042
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
27986
28043
  }
27987
- static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27988
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
28044
+ static void *_p_FXScrollCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28045
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
27989
28046
  }
27990
- static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27991
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
28047
+ static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28048
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
27992
28049
  }
27993
- static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27994
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
28050
+ static void *_p_FXSearchDialogTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28051
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
27995
28052
  }
27996
- static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
27997
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
28053
+ static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28054
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
27998
28055
  }
27999
- static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28000
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
28056
+ static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28057
+ return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
28001
28058
  }
28002
- static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28003
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
28059
+ static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28060
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
28004
28061
  }
28005
- static void *_p_FXDockHandlerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28006
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
28062
+ static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28063
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
28007
28064
  }
28008
- static void *_p_FXTreeListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28009
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
28065
+ static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28066
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
28010
28067
  }
28011
- static void *_p_FXListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28012
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
28068
+ static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28069
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
28013
28070
  }
28014
- static void *_p_FXCanvasTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28015
- return (void *)((FXDrawable *) (FXWindow *) ((FXCanvas *) x));
28071
+ static void *_p_FXSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28072
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
28016
28073
  }
28017
- static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28018
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
28074
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28075
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
28019
28076
  }
28020
- static void *_p_FXMessageBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28021
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
28077
+ static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28078
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
28022
28079
  }
28023
- static void *_p_FXToolBarGripTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28024
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
28080
+ static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28081
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
28025
28082
  }
28026
- static void *_p_FXScrollBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28027
- return (void *)((FXDrawable *) (FXWindow *) ((FXScrollBar *) x));
28083
+ static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28084
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
28028
28085
  }
28029
- static void *_p_FXComboBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28030
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
28086
+ static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28087
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
28031
28088
  }
28032
- static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28033
- return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
28089
+ static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28090
+ return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
28034
28091
  }
28035
- static void *_p_FX7SegmentTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28036
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
28092
+ static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28093
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
28037
28094
  }
28038
- static void *_p_FXDockTitleTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28039
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
28095
+ static void *_p_FXTabBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28096
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
28040
28097
  }
28041
- static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28042
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
28098
+ static void *_p_FXTabBookTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28099
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
28043
28100
  }
28044
- static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28045
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
28101
+ static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28102
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
28046
28103
  }
28047
- static void *_p_FXRulerViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28048
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
28104
+ static void *_p_FXToolBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28105
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
28049
28106
  }
28050
- static void *_p_FXRealSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28051
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
28107
+ static void *_p_FXToolBarGripTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28108
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
28052
28109
  }
28053
- static void *_p_FXSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28054
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
28110
+ static void *_p_FXToolBarShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28111
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
28055
28112
  }
28056
- static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28057
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
28113
+ static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28114
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
28058
28115
  }
28059
- static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28060
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
28116
+ static void *_p_FXToolTipTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28117
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
28061
28118
  }
28062
- static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28063
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
28119
+ static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28120
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
28064
28121
  }
28065
- static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28066
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
28122
+ static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28123
+ return (void *)((FXObject *) ((FXTranslator *) x));
28067
28124
  }
28068
- static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28069
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
28125
+ static void *_p_FXTreeListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28126
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
28070
28127
  }
28071
- static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28072
- return (void *)((FXDrawable *) ((FXWindow *) x));
28128
+ static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28129
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
28073
28130
  }
28074
- static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28075
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
28131
+ static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28132
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
28076
28133
  }
28077
- static void *_p_FXDockBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28078
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
28134
+ static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28135
+ return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
28079
28136
  }
28080
- static void *_p_FXDirDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28081
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
28137
+ static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28138
+ return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
28082
28139
  }
28083
- static void *_p_FXColorDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28084
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
28140
+ static void *_p_FXWizardTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28141
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
28085
28142
  }
28086
- static void *_p_FXFontDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28087
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
28143
+ static void *_p_FXSearchDialogTo_p_FXReplaceDialog(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28144
+ return (void *)((FXReplaceDialog *) ((FXSearchDialog *) x));
28088
28145
  }
28089
- static void *_p_FXSearchDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28090
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
28146
+ static void *_p_FXChoiceBoxTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28147
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
28091
28148
  }
28092
- static void *_p_FXInputDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28093
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
28149
+ static void *_p_FXColorDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28150
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
28094
28151
  }
28095
- static void *_p_FXPrintDialogTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28096
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
28152
+ static void *_p_FXDialogBoxTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28153
+ return (void *)((FXShell *) (FXTopWindow *) ((FXDialogBox *) x));
28097
28154
  }
28098
- static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28099
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
28155
+ static void *_p_FXDirDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28156
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
28100
28157
  }
28101
- static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28102
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
28158
+ static void *_p_FXFileDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28159
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
28103
28160
  }
28104
- static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28105
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
28161
+ static void *_p_FXFontDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28162
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
28106
28163
  }
28107
- static void *_p_FXDragCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28108
- return (void *)((FXDrawable *) (FXWindow *) ((FXDragCorner *) x));
28164
+ static void *_p_FXInputDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28165
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
28109
28166
  }
28110
- static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28111
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
28167
+ static void *_p_FXMainWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28168
+ return (void *)((FXShell *) (FXTopWindow *) ((FXMainWindow *) x));
28112
28169
  }
28113
- static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28114
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
28170
+ static void *_p_FXMessageBoxTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28171
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
28115
28172
  }
28116
- static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28117
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
28173
+ static void *_p_FXPopupTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28174
+ return (void *)((FXShell *) ((FXPopup *) x));
28118
28175
  }
28119
- static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28120
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
28176
+ static void *_p_FXPrintDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28177
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
28121
28178
  }
28122
- static void *_p_FXImageViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28123
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
28179
+ static void *_p_FXProgressDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28180
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
28124
28181
  }
28125
- static void *_p_FXFontSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28126
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
28182
+ static void *_p_FXReplaceDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28183
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
28127
28184
  }
28128
- static void *_p_FXColorSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28129
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
28185
+ static void *_p_FXSearchDialogTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28186
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
28130
28187
  }
28131
- static void *_p_FXFileSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28132
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
28188
+ static void *_p_FXSplashWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28189
+ return (void *)((FXShell *) (FXTopWindow *) ((FXSplashWindow *) x));
28133
28190
  }
28134
- static void *_p_FXDirSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28135
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
28191
+ static void *_p_FXToolBarShellTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28192
+ return (void *)((FXShell *) (FXTopWindow *) ((FXToolBarShell *) x));
28136
28193
  }
28137
- static void *_p_FXToolBarShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28138
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
28194
+ static void *_p_FXToolTipTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28195
+ return (void *)((FXShell *) ((FXToolTip *) x));
28139
28196
  }
28140
- static void *_p_FXToolBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28141
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
28197
+ static void *_p_FXTopWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28198
+ return (void *)((FXShell *) ((FXTopWindow *) x));
28142
28199
  }
28143
- static void *_p_FXDirBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28144
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
28200
+ static void *_p_FXWizardTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28201
+ return (void *)((FXShell *) (FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
28145
28202
  }
28146
28203
  static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28147
28204
  return (void *)((FXStream *) ((FXFileStream *) x));
@@ -28149,278 +28206,305 @@ static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory
28149
28206
  static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28150
28207
  return (void *)((FXStream *) ((FXMemoryStream *) x));
28151
28208
  }
28152
- static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28153
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
28209
+ static void *_p_FXChoiceBoxTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28210
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXChoiceBox *) x));
28154
28211
  }
28155
- static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28156
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
28212
+ static void *_p_FXColorDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28213
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXColorDialog *) x));
28157
28214
  }
28158
- static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28159
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
28215
+ static void *_p_FXDialogBoxTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28216
+ return (void *)((FXTopWindow *) ((FXDialogBox *) x));
28160
28217
  }
28161
- static void *_p_FXTabBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28162
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
28218
+ static void *_p_FXDirDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28219
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXDirDialog *) x));
28163
28220
  }
28164
- static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28165
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
28221
+ static void *_p_FXFileDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28222
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXFileDialog *) x));
28166
28223
  }
28167
- static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28168
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
28224
+ static void *_p_FXFontDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28225
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXFontDialog *) x));
28169
28226
  }
28170
- static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28171
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
28227
+ static void *_p_FXInputDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28228
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXInputDialog *) x));
28172
28229
  }
28173
- static void *_p_FXDriveBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28174
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
28230
+ static void *_p_FXMainWindowTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28231
+ return (void *)((FXTopWindow *) ((FXMainWindow *) x));
28175
28232
  }
28176
- static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28177
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
28233
+ static void *_p_FXMessageBoxTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28234
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXMessageBox *) x));
28178
28235
  }
28179
- static void *_p_FXDialogBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28180
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
28236
+ static void *_p_FXPrintDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28237
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXPrintDialog *) x));
28181
28238
  }
28182
- static void *_p_FXScrollCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28183
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
28239
+ static void *_p_FXProgressDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28240
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXProgressDialog *) x));
28184
28241
  }
28185
- static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28186
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
28242
+ static void *_p_FXReplaceDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28243
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXReplaceDialog *) x));
28187
28244
  }
28188
- static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28189
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
28245
+ static void *_p_FXSearchDialogTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28246
+ return (void *)((FXTopWindow *) (FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
28190
28247
  }
28191
- static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28192
- return (void *)((FXId *) ((FXDrawable *) x));
28248
+ static void *_p_FXSplashWindowTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28249
+ return (void *)((FXTopWindow *) ((FXSplashWindow *) x));
28193
28250
  }
28194
- static void *_p_FXWizardTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28195
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
28251
+ static void *_p_FXToolBarShellTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28252
+ return (void *)((FXTopWindow *) ((FXToolBarShell *) x));
28196
28253
  }
28197
- static void *_p_FXChoiceBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28198
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
28254
+ static void *_p_FXWizardTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28255
+ return (void *)((FXTopWindow *) (FXDialogBox *) ((FXWizard *) x));
28199
28256
  }
28200
- static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28201
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
28257
+ static void *_p_FX4SplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28258
+ return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
28202
28259
  }
28203
- static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28204
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
28260
+ static void *_p_FX7SegmentTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28261
+ return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
28205
28262
  }
28206
- static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28207
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
28263
+ static void *_p_FXArrowButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28264
+ return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
28208
28265
  }
28209
- static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28210
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
28266
+ static void *_p_FXBitmapFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28267
+ return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
28211
28268
  }
28212
- static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28213
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
28269
+ static void *_p_FXCanvasTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28270
+ return (void *)((FXWindow *) ((FXCanvas *) x));
28214
28271
  }
28215
- static void *_p_FXTabBookTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28216
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
28272
+ static void *_p_FXChoiceBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28273
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXChoiceBox *) x));
28217
28274
  }
28218
- static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28219
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
28275
+ static void *_p_FXColorBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28276
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
28220
28277
  }
28221
- static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28222
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
28278
+ static void *_p_FXColorDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28279
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
28280
+ }
28281
+ static void *_p_FXColorRingTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28282
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
28283
+ }
28284
+ static void *_p_FXColorSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28285
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXColorSelector *) x));
28286
+ }
28287
+ static void *_p_FXColorWellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28288
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorWell *) x));
28289
+ }
28290
+ static void *_p_FXColorWheelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28291
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
28292
+ }
28293
+ static void *_p_FXComboBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28294
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXComboBox *) x));
28295
+ }
28296
+ static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28297
+ return (void *)((FXWindow *) ((FXComposite *) x));
28298
+ }
28299
+ static void *_p_FXDialTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28300
+ return (void *)((FXWindow *) (FXFrame *) ((FXDial *) x));
28301
+ }
28302
+ static void *_p_FXDialogBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28303
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXDialogBox *) x));
28223
28304
  }
28224
- static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28225
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
28305
+ static void *_p_FXDirBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28306
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
28226
28307
  }
28227
- static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28228
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
28308
+ static void *_p_FXDirDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28309
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
28229
28310
  }
28230
- static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28231
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
28311
+ static void *_p_FXDirSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28312
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDirSelector *) x));
28232
28313
  }
28233
- static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28234
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
28314
+ static void *_p_FXDockBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28315
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockBar *) x));
28235
28316
  }
28236
- static void *_p_FXFileDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28237
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
28317
+ static void *_p_FXDockHandlerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28318
+ return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
28238
28319
  }
28239
- static void *_p_FXReplaceDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28240
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
28320
+ static void *_p_FXDockSiteTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28321
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
28241
28322
  }
28242
- static void *_p_FXProgressDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28243
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
28323
+ static void *_p_FXDockTitleTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28324
+ return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
28244
28325
  }
28245
- static void *_p_FXToolTipTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28246
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
28326
+ static void *_p_FXDragCornerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28327
+ return (void *)((FXWindow *) ((FXDragCorner *) x));
28247
28328
  }
28248
- static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28249
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
28329
+ static void *_p_FXDriveBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28330
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
28250
28331
  }
28251
- static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28252
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
28332
+ static void *_p_FXFileDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28333
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFileDialog *) x));
28253
28334
  }
28254
- static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28255
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
28335
+ static void *_p_FXFileSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28336
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXFileSelector *) x));
28256
28337
  }
28257
- static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28258
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
28338
+ static void *_p_FXFontDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28339
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
28259
28340
  }
28260
- static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28261
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
28341
+ static void *_p_FXFontSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28342
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXFontSelector *) x));
28262
28343
  }
28263
- static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28264
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
28344
+ static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28345
+ return (void *)((FXWindow *) ((FXFrame *) x));
28265
28346
  }
28266
- static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28267
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
28347
+ static void *_p_FXGradientBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28348
+ return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
28268
28349
  }
28269
- static void *_p_FXDockHandlerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28270
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
28350
+ static void *_p_FXGroupBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28351
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
28271
28352
  }
28272
- static void *_p_FXTreeListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28273
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
28353
+ static void *_p_FXHeaderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28354
+ return (void *)((FXWindow *) (FXFrame *) ((FXHeader *) x));
28274
28355
  }
28275
- static void *_p_FXListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28276
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
28356
+ static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28357
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
28277
28358
  }
28278
- static void *_p_FXCanvasTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28279
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
28359
+ static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28360
+ return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
28280
28361
  }
28281
- static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28282
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
28362
+ static void *_p_FXImageFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28363
+ return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
28283
28364
  }
28284
- static void *_p_FXMessageBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28285
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
28365
+ static void *_p_FXImageViewTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28366
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXImageView *) x));
28286
28367
  }
28287
- static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28288
- return (void *)((FXId *) ((FXVisual *) x));
28368
+ static void *_p_FXInputDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28369
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
28289
28370
  }
28290
- static void *_p_FXScrollBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28291
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
28371
+ static void *_p_FXKnobTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28372
+ return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
28292
28373
  }
28293
- static void *_p_FXToolBarGripTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28294
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
28374
+ static void *_p_FXListBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28375
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
28295
28376
  }
28296
- static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28297
- return (void *)((FXId *) ((FXFont *) x));
28377
+ static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28378
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
28298
28379
  }
28299
- static void *_p_FXComboBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28300
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
28380
+ static void *_p_FXMatrixTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28381
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
28301
28382
  }
28302
- static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28303
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
28383
+ static void *_p_FXMessageBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28384
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXMessageBox *) x));
28304
28385
  }
28305
- static void *_p_FX7SegmentTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28306
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
28386
+ static void *_p_FXPackerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28387
+ return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
28307
28388
  }
28308
- static void *_p_FXDockTitleTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28309
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
28389
+ static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28390
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
28310
28391
  }
28311
- static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28312
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
28392
+ static void *_p_FXPrintDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28393
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
28313
28394
  }
28314
- static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28315
- return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
28395
+ static void *_p_FXProgressBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28396
+ return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
28316
28397
  }
28317
- static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28318
- return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
28398
+ static void *_p_FXProgressDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28399
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXProgressDialog *) x));
28319
28400
  }
28320
- static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28321
- return (void *)((FXId *) ((FXCursor *) x));
28401
+ static void *_p_FXRealSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28402
+ return (void *)((FXWindow *) (FXFrame *) ((FXRealSlider *) x));
28322
28403
  }
28323
- static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28324
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
28404
+ static void *_p_FXRealSpinnerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28405
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
28325
28406
  }
28326
- static void *_p_FXRealSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28327
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
28407
+ static void *_p_FXReplaceDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28408
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXReplaceDialog *) x));
28328
28409
  }
28329
- static void *_p_FXSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28330
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
28410
+ static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28411
+ return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
28331
28412
  }
28332
- static void *_p_FXRulerViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28333
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
28413
+ static void *_p_FXRulerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28414
+ return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
28334
28415
  }
28335
- static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28336
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
28416
+ static void *_p_FXRulerViewTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28417
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
28337
28418
  }
28338
- static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28339
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
28419
+ static void *_p_FXScrollAreaTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28420
+ return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
28340
28421
  }
28341
- static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28342
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
28422
+ static void *_p_FXScrollBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28423
+ return (void *)((FXWindow *) ((FXScrollBar *) x));
28343
28424
  }
28344
- static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28345
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
28425
+ static void *_p_FXScrollCornerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28426
+ return (void *)((FXWindow *) ((FXScrollCorner *) x));
28346
28427
  }
28347
- static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28348
- return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
28428
+ static void *_p_FXScrollWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28429
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
28349
28430
  }
28350
- static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28351
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
28431
+ static void *_p_FXSearchDialogTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28432
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
28352
28433
  }
28353
- static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28354
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
28434
+ static void *_p_FXSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28435
+ return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
28355
28436
  }
28356
- static void *_p_FXDockBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28357
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
28437
+ static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28438
+ return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
28358
28439
  }
28359
- static void *_p_FXDirDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28360
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXDirDialog *) x));
28440
+ static void *_p_FXShutterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28441
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
28361
28442
  }
28362
- static void *_p_FXColorDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28363
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXColorDialog *) x));
28443
+ static void *_p_FXShutterItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28444
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
28364
28445
  }
28365
- static void *_p_FXFontDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28366
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXFontDialog *) x));
28446
+ static void *_p_FXSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28447
+ return (void *)((FXWindow *) (FXFrame *) ((FXSlider *) x));
28367
28448
  }
28368
- static void *_p_FXSearchDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28369
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *)(FXReplaceDialog *) ((FXSearchDialog *) x));
28449
+ static void *_p_FXSpinnerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28450
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpinner *) x));
28370
28451
  }
28371
- static void *_p_FXInputDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28372
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXInputDialog *) x));
28452
+ static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28453
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
28373
28454
  }
28374
- static void *_p_FXPrintDialogTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28375
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXPrintDialog *) x));
28455
+ static void *_p_FXSplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28456
+ return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
28376
28457
  }
28377
- static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28378
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
28458
+ static void *_p_FXSpringTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28459
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
28379
28460
  }
28380
- static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28381
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
28461
+ static void *_p_FXStatusBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28462
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
28382
28463
  }
28383
- static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28384
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
28464
+ static void *_p_FXStatusLineTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28465
+ return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
28385
28466
  }
28386
- static void *_p_FXDragCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28387
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
28467
+ static void *_p_FXSwitcherTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28468
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
28388
28469
  }
28389
- static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28390
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
28470
+ static void *_p_FXTabBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28471
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTabBar *) x));
28391
28472
  }
28392
- static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28393
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
28473
+ static void *_p_FXTabBookTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28474
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
28394
28475
  }
28395
- static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28396
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
28476
+ static void *_p_FXTextFieldTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28477
+ return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
28397
28478
  }
28398
- static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28399
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
28479
+ static void *_p_FXToolBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28480
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
28400
28481
  }
28401
- static void *_p_FXImageViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28402
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
28482
+ static void *_p_FXToolBarGripTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28483
+ return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
28403
28484
  }
28404
- static void *_p_FXFontSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28405
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
28485
+ static void *_p_FXToolBarShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28486
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
28406
28487
  }
28407
- static void *_p_FXColorSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28408
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
28488
+ static void *_p_FXToolBarTabTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28489
+ return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
28409
28490
  }
28410
- static void *_p_FXFileSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28411
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
28491
+ static void *_p_FXToolTipTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28492
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXToolTip *) x));
28412
28493
  }
28413
- static void *_p_FXDirSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28414
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
28494
+ static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28495
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
28415
28496
  }
28416
- static void *_p_FXToolBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28417
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
28497
+ static void *_p_FXTreeListBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28498
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
28418
28499
  }
28419
- static void *_p_FXToolBarShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28420
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
28500
+ static void *_p_FXVerticalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28501
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
28421
28502
  }
28422
- static void *_p_FXDirBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28423
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
28503
+ static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28504
+ return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
28505
+ }
28506
+ static void *_p_FXWizardTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
28507
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *)(FXDialogBox *) ((FXWizard *) x));
28424
28508
  }
28425
28509
  static swig_type_info _swigt__p_FXApp = {"_p_FXApp", "FXApp *", 0, 0, (void*)0, 0};
28426
28510
  static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
@@ -28428,104 +28512,104 @@ static swig_type_info _swigt__p_FXButton = {"_p_FXButton", "FXButton *", 0, 0, (
28428
28512
  static swig_type_info _swigt__p_FXChoiceBox = {"_p_FXChoiceBox", "FXChoiceBox *", 0, 0, (void*)0, 0};
28429
28513
  static swig_type_info _swigt__p_FXColorDialog = {"_p_FXColorDialog", "FXColorDialog *", 0, 0, (void*)0, 0};
28430
28514
  static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", "FXComposite *", 0, 0, (void*)0, 0};
28431
- static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
28432
- static swig_type_info _swigt__p_FXToolBar = {"_p_FXToolBar", 0, 0, 0, 0, 0};
28433
- static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
28434
- static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
28435
- static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
28436
- static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
28437
- static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", 0, 0, 0, 0, 0};
28438
- static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
28439
- static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
28440
- static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
28441
- static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
28442
- static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
28443
- static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
28444
- static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
28445
28515
  static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
28446
- static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
28447
- static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
28448
- static swig_type_info _swigt__p_FXRealSpinner = {"_p_FXRealSpinner", 0, 0, 0, 0, 0};
28449
- static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
28450
- static swig_type_info _swigt__p_FXDirBox = {"_p_FXDirBox", 0, 0, 0, 0, 0};
28451
- static swig_type_info _swigt__p_FXFontSelector = {"_p_FXFontSelector", 0, 0, 0, 0, 0};
28452
28516
  static swig_type_info _swigt__p_FXColorSelector = {"_p_FXColorSelector", 0, 0, 0, 0, 0};
28453
- static swig_type_info _swigt__p_FXFileSelector = {"_p_FXFileSelector", 0, 0, 0, 0, 0};
28517
+ static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
28518
+ static swig_type_info _swigt__p_FXDirBox = {"_p_FXDirBox", 0, 0, 0, 0, 0};
28454
28519
  static swig_type_info _swigt__p_FXDirSelector = {"_p_FXDirSelector", 0, 0, 0, 0, 0};
28455
- static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
28520
+ static swig_type_info _swigt__p_FXDockBar = {"_p_FXDockBar", 0, 0, 0, 0, 0};
28456
28521
  static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", 0, 0, 0, 0, 0};
28457
- static swig_type_info _swigt__p_FXRulerView = {"_p_FXRulerView", 0, 0, 0, 0, 0};
28458
- static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
28522
+ static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
28523
+ static swig_type_info _swigt__p_FXFileSelector = {"_p_FXFileSelector", 0, 0, 0, 0, 0};
28524
+ static swig_type_info _swigt__p_FXFontSelector = {"_p_FXFontSelector", 0, 0, 0, 0, 0};
28525
+ static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
28526
+ static swig_type_info _swigt__p_FXImageView = {"_p_FXImageView", 0, 0, 0, 0, 0};
28459
28527
  static swig_type_info _swigt__p_FXListBox = {"_p_FXListBox", 0, 0, 0, 0, 0};
28528
+ static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
28460
28529
  static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
28530
+ static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
28531
+ static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
28532
+ static swig_type_info _swigt__p_FXRealSpinner = {"_p_FXRealSpinner", 0, 0, 0, 0, 0};
28533
+ static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
28534
+ static swig_type_info _swigt__p_FXRulerView = {"_p_FXRulerView", 0, 0, 0, 0, 0};
28535
+ static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", 0, 0, 0, 0, 0};
28536
+ static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
28537
+ static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
28461
28538
  static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
28462
- static swig_type_info _swigt__p_FXDockBar = {"_p_FXDockBar", 0, 0, 0, 0, 0};
28463
- static swig_type_info _swigt__p_FXTabBar = {"_p_FXTabBar", 0, 0, 0, 0, 0};
28464
- static swig_type_info _swigt__p_FXImageView = {"_p_FXImageView", 0, 0, 0, 0, 0};
28539
+ static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
28540
+ static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
28541
+ static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
28465
28542
  static swig_type_info _swigt__p_FXSpring = {"_p_FXSpring", 0, 0, 0, 0, 0};
28543
+ static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
28544
+ static swig_type_info _swigt__p_FXTabBar = {"_p_FXTabBar", 0, 0, 0, 0, 0};
28545
+ static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
28546
+ static swig_type_info _swigt__p_FXToolBar = {"_p_FXToolBar", 0, 0, 0, 0, 0};
28466
28547
  static swig_type_info _swigt__p_FXToolBarShell = {"_p_FXToolBarShell", 0, 0, 0, 0, 0};
28548
+ static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
28549
+ static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
28550
+ static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
28467
28551
  static swig_type_info _swigt__p_FXDialogBox = {"_p_FXDialogBox", "FXDialogBox *", 0, 0, (void*)0, 0};
28468
28552
  static swig_type_info _swigt__p_FXDirDialog = {"_p_FXDirDialog", "FXDirDialog *", 0, 0, (void*)0, 0};
28469
28553
  static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
28470
- static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
28471
- static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
28472
- static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
28473
- static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
28474
- static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
28554
+ static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
28475
28555
  static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", 0, 0, 0, 0, 0};
28476
- static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
28477
- static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
28478
- static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
28479
- static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
28480
- static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
28481
- static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
28482
- static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
28483
28556
  static swig_type_info _swigt__p_FXBitmapFrame = {"_p_FXBitmapFrame", 0, 0, 0, 0, 0};
28484
- static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
28485
- static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
28486
- static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
28487
- static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
28488
28557
  static swig_type_info _swigt__p_FXCanvas = {"_p_FXCanvas", 0, 0, 0, 0, 0};
28558
+ static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
28559
+ static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
28560
+ static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
28489
28561
  static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
28490
28562
  static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
28491
- static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
28492
- static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
28493
- static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
28494
- static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
28563
+ static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
28495
28564
  static swig_type_info _swigt__p_FXDockTitle = {"_p_FXDockTitle", 0, 0, 0, 0, 0};
28496
- static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
28497
- static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
28498
28565
  static swig_type_info _swigt__p_FXDragCorner = {"_p_FXDragCorner", 0, 0, 0, 0, 0};
28566
+ static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
28567
+ static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
28568
+ static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
28569
+ static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
28570
+ static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
28571
+ static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
28572
+ static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
28573
+ static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
28499
28574
  static swig_type_info _swigt__p_FXRuler = {"_p_FXRuler", 0, 0, 0, 0, 0};
28575
+ static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
28576
+ static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
28577
+ static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
28578
+ static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
28579
+ static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
28580
+ static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
28581
+ static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
28582
+ static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
28583
+ static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
28500
28584
  static swig_type_info _swigt__p_FXFileDialog = {"_p_FXFileDialog", "FXFileDialog *", 0, 0, (void*)0, 0};
28501
28585
  static swig_type_info _swigt__p_FXFontDesc = {"_p_FXFontDesc", "FXFontDesc *", 0, 0, (void*)0, 0};
28502
28586
  static swig_type_info _swigt__p_FXFontDialog = {"_p_FXFontDialog", "FXFontDialog *", 0, 0, (void*)0, 0};
28503
28587
  static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", "FXHorizontalFrame *", 0, 0, (void*)0, 0};
28504
28588
  static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
28505
28589
  static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
28506
- static swig_type_info _swigt__p_FXFont = {"_p_FXFont", 0, 0, 0, 0, 0};
28507
- static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
28508
- static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
28509
28590
  static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
28591
+ static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
28592
+ static swig_type_info _swigt__p_FXFont = {"_p_FXFont", 0, 0, 0, 0, 0};
28510
28593
  static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
28594
+ static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
28511
28595
  static swig_type_info _swigt__p_FXImage = {"_p_FXImage", "FXImage *", 0, 0, (void*)0, 0};
28512
28596
  static swig_type_info _swigt__p_FXInputDialog = {"_p_FXInputDialog", "FXInputDialog *", 0, 0, (void*)0, 0};
28513
28597
  static swig_type_info _swigt__p_FXMessageBox = {"_p_FXMessageBox", "FXMessageBox *", 0, 0, (void*)0, 0};
28514
28598
  static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
28599
+ static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
28600
+ static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
28601
+ static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
28602
+ static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
28603
+ static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
28515
28604
  static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
28516
- static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
28605
+ static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
28517
28606
  static swig_type_info _swigt__p_FXHeaderItem = {"_p_FXHeaderItem", 0, 0, 0, 0, 0};
28518
28607
  static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
28519
- static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
28520
28608
  static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
28521
- static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
28522
- static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
28609
+ static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
28523
28610
  static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
28524
- static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
28525
- static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
28526
28611
  static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
28527
- static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
28528
- static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
28612
+ static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
28529
28613
  static swig_type_info _swigt__p_FXPrintDialog = {"_p_FXPrintDialog", "FXPrintDialog *", 0, 0, (void*)0, 0};
28530
28614
  static swig_type_info _swigt__p_FXPrinter = {"_p_FXPrinter", "FXPrinter *", 0, 0, (void*)0, 0};
28531
28615
  static swig_type_info _swigt__p_FXProgressDialog = {"_p_FXProgressDialog", "FXProgressDialog *", 0, 0, (void*)0, 0};
@@ -28540,16 +28624,16 @@ static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", "FXSwitcher *", 0
28540
28624
  static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", "FXTopWindow *", 0, 0, (void*)0, 0};
28541
28625
  static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
28542
28626
  static swig_type_info _swigt__p_FXWizard = {"_p_FXWizard", "FXWizard *", 0, 0, (void*)0, 0};
28543
- static swig_type_info _swigt__p_char = {"_p_char", "char *|FXchar *", 0, 0, (void*)0, 0};
28544
- static swig_type_info _swigt__p_double = {"_p_double", "double *|FXdouble *", 0, 0, (void*)0, 0};
28545
- static swig_type_info _swigt__p_float = {"_p_float", "float *|FXfloat *", 0, 0, (void*)0, 0};
28546
- static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int *|FXInputHandle *", 0, 0, (void*)0, 0};
28547
- static swig_type_info _swigt__p_long = {"_p_long", "long *|FXTime *", 0, 0, (void*)0, 0};
28548
- static swig_type_info _swigt__p_short = {"_p_short", "short *|FXshort *", 0, 0, (void*)0, 0};
28549
- static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char *|FXbool *", 0, 0, (void*)0, 0};
28550
- static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXwchar *|FXDragType *|unsigned int *|FXuint *|FXColor *|FXSelector *|FXHotKey *", 0, 0, (void*)0, 0};
28551
- static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|FXuval *|FXPixel *", 0, 0, (void*)0, 0};
28552
- static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|FXushort *", 0, 0, (void*)0, 0};
28627
+ static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
28628
+ static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
28629
+ static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
28630
+ static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
28631
+ static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
28632
+ static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
28633
+ static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
28634
+ static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
28635
+ static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
28636
+ static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
28553
28637
 
28554
28638
  static swig_type_info *swig_type_initial[] = {
28555
28639
  &_swigt__p_FX4Splitter,
@@ -28687,118 +28771,118 @@ static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{
28687
28771
  static swig_cast_info _swigc__p_FXButton[] = { {&_swigt__p_FXButton, 0, 0, 0},{0, 0, 0, 0}};
28688
28772
  static swig_cast_info _swigc__p_FXChoiceBox[] = { {&_swigt__p_FXChoiceBox, 0, 0, 0},{0, 0, 0, 0}};
28689
28773
  static swig_cast_info _swigc__p_FXColorDialog[] = { {&_swigt__p_FXColorDialog, 0, 0, 0},{0, 0, 0, 0}};
28690
- static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
28691
- static swig_cast_info _swigc__p_FXToolBar[] = {{&_swigt__p_FXToolBar, 0, 0, 0},{0, 0, 0, 0}};
28692
- static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
28693
- static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
28694
- static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
28695
- static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
28696
- static swig_cast_info _swigc__p_FXScrollArea[] = {{&_swigt__p_FXScrollArea, 0, 0, 0},{0, 0, 0, 0}};
28697
- static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
28698
- static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
28699
- static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
28700
- static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
28701
- static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
28702
- static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
28703
- static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
28704
28774
  static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
28705
- static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
28706
- static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
28707
- static swig_cast_info _swigc__p_FXRealSpinner[] = {{&_swigt__p_FXRealSpinner, 0, 0, 0},{0, 0, 0, 0}};
28708
- static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
28709
- static swig_cast_info _swigc__p_FXDirBox[] = {{&_swigt__p_FXDirBox, 0, 0, 0},{0, 0, 0, 0}};
28710
- static swig_cast_info _swigc__p_FXFontSelector[] = {{&_swigt__p_FXFontSelector, 0, 0, 0},{0, 0, 0, 0}};
28711
28775
  static swig_cast_info _swigc__p_FXColorSelector[] = {{&_swigt__p_FXColorSelector, 0, 0, 0},{0, 0, 0, 0}};
28712
- static swig_cast_info _swigc__p_FXFileSelector[] = {{&_swigt__p_FXFileSelector, 0, 0, 0},{0, 0, 0, 0}};
28776
+ static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
28777
+ static swig_cast_info _swigc__p_FXDirBox[] = {{&_swigt__p_FXDirBox, 0, 0, 0},{0, 0, 0, 0}};
28713
28778
  static swig_cast_info _swigc__p_FXDirSelector[] = {{&_swigt__p_FXDirSelector, 0, 0, 0},{0, 0, 0, 0}};
28714
- static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
28779
+ static swig_cast_info _swigc__p_FXDockBar[] = {{&_swigt__p_FXDockBar, 0, 0, 0},{0, 0, 0, 0}};
28715
28780
  static swig_cast_info _swigc__p_FXDockSite[] = {{&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
28716
- static swig_cast_info _swigc__p_FXRulerView[] = {{&_swigt__p_FXRulerView, 0, 0, 0},{0, 0, 0, 0}};
28717
- static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
28781
+ static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
28782
+ static swig_cast_info _swigc__p_FXFileSelector[] = {{&_swigt__p_FXFileSelector, 0, 0, 0},{0, 0, 0, 0}};
28783
+ static swig_cast_info _swigc__p_FXFontSelector[] = {{&_swigt__p_FXFontSelector, 0, 0, 0},{0, 0, 0, 0}};
28784
+ static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
28785
+ static swig_cast_info _swigc__p_FXImageView[] = {{&_swigt__p_FXImageView, 0, 0, 0},{0, 0, 0, 0}};
28718
28786
  static swig_cast_info _swigc__p_FXListBox[] = {{&_swigt__p_FXListBox, 0, 0, 0},{0, 0, 0, 0}};
28787
+ static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
28719
28788
  static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
28789
+ static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
28790
+ static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
28791
+ static swig_cast_info _swigc__p_FXRealSpinner[] = {{&_swigt__p_FXRealSpinner, 0, 0, 0},{0, 0, 0, 0}};
28792
+ static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
28793
+ static swig_cast_info _swigc__p_FXRulerView[] = {{&_swigt__p_FXRulerView, 0, 0, 0},{0, 0, 0, 0}};
28794
+ static swig_cast_info _swigc__p_FXScrollArea[] = {{&_swigt__p_FXScrollArea, 0, 0, 0},{0, 0, 0, 0}};
28795
+ static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
28796
+ static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
28720
28797
  static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
28721
- static swig_cast_info _swigc__p_FXDockBar[] = {{&_swigt__p_FXDockBar, 0, 0, 0},{0, 0, 0, 0}};
28722
- static swig_cast_info _swigc__p_FXTabBar[] = {{&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
28723
- static swig_cast_info _swigc__p_FXImageView[] = {{&_swigt__p_FXImageView, 0, 0, 0},{0, 0, 0, 0}};
28798
+ static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
28799
+ static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
28800
+ static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
28724
28801
  static swig_cast_info _swigc__p_FXSpring[] = {{&_swigt__p_FXSpring, 0, 0, 0},{0, 0, 0, 0}};
28802
+ static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
28803
+ static swig_cast_info _swigc__p_FXTabBar[] = {{&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
28804
+ static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
28805
+ static swig_cast_info _swigc__p_FXToolBar[] = {{&_swigt__p_FXToolBar, 0, 0, 0},{0, 0, 0, 0}};
28725
28806
  static swig_cast_info _swigc__p_FXToolBarShell[] = {{&_swigt__p_FXToolBarShell, 0, 0, 0},{0, 0, 0, 0}};
28726
- static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXComposite, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXComposite, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXComposite, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXComposite, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
28727
- static swig_cast_info _swigc__p_FXDialogBox[] = { {&_swigt__p_FXDialogBox, 0, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXDialogBox, 0, 0},{0, 0, 0, 0}};
28807
+ static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
28808
+ static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
28809
+ static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
28810
+ static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXComposite, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXComposite, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
28811
+ static swig_cast_info _swigc__p_FXDialogBox[] = { {&_swigt__p_FXDialogBox, 0, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXDialogBox, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXDialogBox, 0, 0},{0, 0, 0, 0}};
28728
28812
  static swig_cast_info _swigc__p_FXDirDialog[] = { {&_swigt__p_FXDirDialog, 0, 0, 0},{0, 0, 0, 0}};
28729
- static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
28730
- static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
28731
- static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
28732
- static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
28733
- static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
28813
+ static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
28734
28814
  static swig_cast_info _swigc__p_FXArrowButton[] = {{&_swigt__p_FXArrowButton, 0, 0, 0},{0, 0, 0, 0}};
28735
- static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
28736
- static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
28737
- static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
28738
- static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
28739
- static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
28740
- static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
28741
- static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
28742
28815
  static swig_cast_info _swigc__p_FXBitmapFrame[] = {{&_swigt__p_FXBitmapFrame, 0, 0, 0},{0, 0, 0, 0}};
28743
- static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
28744
- static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
28745
- static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
28746
- static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
28747
28816
  static swig_cast_info _swigc__p_FXCanvas[] = {{&_swigt__p_FXCanvas, 0, 0, 0},{0, 0, 0, 0}};
28817
+ static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
28818
+ static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
28819
+ static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
28748
28820
  static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
28749
28821
  static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
28750
- static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
28751
- static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
28752
- static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
28753
- static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
28822
+ static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
28754
28823
  static swig_cast_info _swigc__p_FXDockTitle[] = {{&_swigt__p_FXDockTitle, 0, 0, 0},{0, 0, 0, 0}};
28755
- static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
28756
- static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
28757
28824
  static swig_cast_info _swigc__p_FXDragCorner[] = {{&_swigt__p_FXDragCorner, 0, 0, 0},{0, 0, 0, 0}};
28825
+ static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
28826
+ static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
28827
+ static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
28828
+ static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
28829
+ static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
28830
+ static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
28831
+ static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
28832
+ static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
28758
28833
  static swig_cast_info _swigc__p_FXRuler[] = {{&_swigt__p_FXRuler, 0, 0, 0},{0, 0, 0, 0}};
28759
- static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
28834
+ static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
28835
+ static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
28836
+ static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
28837
+ static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
28838
+ static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
28839
+ static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
28840
+ static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
28841
+ static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
28842
+ static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
28843
+ static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
28760
28844
  static swig_cast_info _swigc__p_FXFileDialog[] = { {&_swigt__p_FXFileDialog, 0, 0, 0},{0, 0, 0, 0}};
28761
28845
  static swig_cast_info _swigc__p_FXFontDesc[] = { {&_swigt__p_FXFontDesc, 0, 0, 0},{0, 0, 0, 0}};
28762
28846
  static swig_cast_info _swigc__p_FXFontDialog[] = { {&_swigt__p_FXFontDialog, 0, 0, 0},{0, 0, 0, 0}};
28763
28847
  static swig_cast_info _swigc__p_FXHorizontalFrame[] = { {&_swigt__p_FXHorizontalFrame, 0, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXHorizontalFrame, 0, 0},{0, 0, 0, 0}};
28764
28848
  static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
28765
- static swig_cast_info _swigc__p_FXFont[] = {{&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
28766
- static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
28767
- static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
28768
28849
  static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
28850
+ static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
28851
+ static swig_cast_info _swigc__p_FXFont[] = {{&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
28769
28852
  static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
28770
- static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXId, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXId, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXId, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXId, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXId, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXId, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXId, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXId, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXId, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXId, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXId, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXId, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXId, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXId, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXId, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXId, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXId, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXId, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXId, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXId, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXId, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXId, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXId, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXId, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXId, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXId, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXId, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXId, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXId, 0, 0},{0, 0, 0, 0}};
28853
+ static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
28854
+ static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXId, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXId, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXId, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXId, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXId, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXId, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_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_FXDialogBox, _p_FXDialogBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXId, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXId, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXId, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXId, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_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_FXGroupBox, _p_FXGroupBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXId, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXId, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXId, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXId, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXId, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXId, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXId, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXId, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXId, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXId, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXId, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXId, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXId, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_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}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXId, 0, 0},{0, 0, 0, 0}};
28771
28855
  static swig_cast_info _swigc__p_FXImage[] = { {&_swigt__p_FXImage, 0, 0, 0},{0, 0, 0, 0}};
28772
28856
  static swig_cast_info _swigc__p_FXInputDialog[] = { {&_swigt__p_FXInputDialog, 0, 0, 0},{0, 0, 0, 0}};
28773
28857
  static swig_cast_info _swigc__p_FXMessageBox[] = { {&_swigt__p_FXMessageBox, 0, 0, 0},{0, 0, 0, 0}};
28858
+ static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
28859
+ static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
28860
+ static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
28861
+ static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
28862
+ static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
28774
28863
  static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
28775
- static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
28864
+ static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
28776
28865
  static swig_cast_info _swigc__p_FXHeaderItem[] = {{&_swigt__p_FXHeaderItem, 0, 0, 0},{0, 0, 0, 0}};
28777
28866
  static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
28778
- static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
28779
28867
  static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
28780
- static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
28781
- static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
28868
+ static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
28782
28869
  static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
28783
- static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
28784
- static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
28785
28870
  static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
28786
- static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
28787
- static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
28788
- static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXObject, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXObject, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
28871
+ static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
28872
+ static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXObject, 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_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXObject, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_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_FXDialogBox, _p_FXDialogBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_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_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_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_FXImageView, _p_FXImageViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_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_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_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}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
28789
28873
  static swig_cast_info _swigc__p_FXPrintDialog[] = { {&_swigt__p_FXPrintDialog, 0, 0, 0},{0, 0, 0, 0}};
28790
28874
  static swig_cast_info _swigc__p_FXPrinter[] = { {&_swigt__p_FXPrinter, 0, 0, 0},{0, 0, 0, 0}};
28791
28875
  static swig_cast_info _swigc__p_FXProgressDialog[] = { {&_swigt__p_FXProgressDialog, 0, 0, 0},{0, 0, 0, 0}};
28792
28876
  static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
28793
- static swig_cast_info _swigc__p_FXReplaceDialog[] = { {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXReplaceDialog, 0, 0}, {&_swigt__p_FXReplaceDialog, 0, 0, 0},{0, 0, 0, 0}};
28877
+ static swig_cast_info _swigc__p_FXReplaceDialog[] = { {&_swigt__p_FXReplaceDialog, 0, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXReplaceDialog, 0, 0},{0, 0, 0, 0}};
28794
28878
  static swig_cast_info _swigc__p_FXSearchDialog[] = { {&_swigt__p_FXSearchDialog, 0, 0, 0},{0, 0, 0, 0}};
28795
- static swig_cast_info _swigc__p_FXShell[] = { {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXShell, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXShell, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXShell, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXShell, 0, 0}, {&_swigt__p_FXShell, 0, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXShell, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXShell, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXShell, 0, 0},{0, 0, 0, 0}};
28879
+ static swig_cast_info _swigc__p_FXShell[] = { {&_swigt__p_FXShell, 0, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXShell, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXShell, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXShell, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXShell, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXShell, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXShell, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXShell, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXShell, 0, 0},{0, 0, 0, 0}};
28796
28880
  static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
28797
28881
  static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
28798
- 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}};
28882
+ 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}};
28799
28883
  static swig_cast_info _swigc__p_FXSwitcher[] = { {&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
28800
- static swig_cast_info _swigc__p_FXTopWindow[] = { {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXTopWindow, 0, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXTopWindow, 0, 0},{0, 0, 0, 0}};
28801
- static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXWindow, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXWindow, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
28884
+ static swig_cast_info _swigc__p_FXTopWindow[] = { {&_swigt__p_FXTopWindow, 0, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXTopWindow, 0, 0},{0, 0, 0, 0}};
28885
+ static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXWindow, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXWindow, 0, 0}, {&_swigt__p_FXChoiceBox, _p_FXChoiceBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorDialog, _p_FXColorDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDialogBox, _p_FXDialogBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirDialog, _p_FXDirDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFileDialog, _p_FXFileDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFontDialog, _p_FXFontDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXWindow, 0, 0}, {&_swigt__p_FXInputDialog, _p_FXInputDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXWindow, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMessageBox, _p_FXMessageBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPrintDialog, _p_FXPrintDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressDialog, _p_FXProgressDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXReplaceDialog, _p_FXReplaceDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSearchDialog, _p_FXSearchDialogTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXWizard, _p_FXWizardTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
28802
28886
  static swig_cast_info _swigc__p_FXWizard[] = { {&_swigt__p_FXWizard, 0, 0, 0},{0, 0, 0, 0}};
28803
28887
  static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
28804
28888
  static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
@@ -28997,9 +29081,12 @@ extern "C" {
28997
29081
  #define SWIGRUNTIME_DEBUG
28998
29082
  #endif
28999
29083
 
29084
+ #ifndef SWIG_INIT_CLIENT_DATA_TYPE
29085
+ #define SWIG_INIT_CLIENT_DATA_TYPE void *
29086
+ #endif
29000
29087
 
29001
29088
  SWIGRUNTIME void
29002
- SWIG_InitializeModule(void *clientdata) {
29089
+ SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
29003
29090
  size_t i;
29004
29091
  swig_module_info *module_head, *iter;
29005
29092
  int init;