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
 
@@ -1938,12 +1978,56 @@ static swig_module_info swig_module = {swig_types, 66, 0, 0, 0, 0};
1938
1978
 
1939
1979
 
1940
1980
 
1941
- #define SWIG_RUBY_THREAD_BEGIN_BLOCK
1942
- #define SWIG_RUBY_THREAD_END_BLOCK
1981
+ #ifdef __cplusplus
1982
+ #include <utility>
1983
+ /* SwigValueWrapper is described in swig.swg */
1984
+ template<typename T> class SwigValueWrapper {
1985
+ struct SwigSmartPointer {
1986
+ T *ptr;
1987
+ SwigSmartPointer(T *p) : ptr(p) { }
1988
+ ~SwigSmartPointer() { delete ptr; }
1989
+ SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
1990
+ void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
1991
+ } pointer;
1992
+ SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
1993
+ SwigValueWrapper(const SwigValueWrapper<T>& rhs);
1994
+ public:
1995
+ SwigValueWrapper() : pointer(0) { }
1996
+ SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
1997
+ #if __cplusplus >=201103L
1998
+ SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
1999
+ operator T&&() const { return std::move(*pointer.ptr); }
2000
+ #else
2001
+ operator T&() const { return *pointer.ptr; }
2002
+ #endif
2003
+ T *operator&() const { return pointer.ptr; }
2004
+ static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
2005
+ };
2006
+
2007
+ /*
2008
+ * SwigValueInit() is a generic initialisation solution as the following approach:
2009
+ *
2010
+ * T c_result = T();
2011
+ *
2012
+ * doesn't compile for all types for example:
2013
+ *
2014
+ * unsigned int c_result = unsigned int();
2015
+ */
2016
+ template <typename T> T SwigValueInit() {
2017
+ return T();
2018
+ }
1943
2019
 
2020
+ #if __cplusplus >=201103L
2021
+ # define SWIG_STD_MOVE(OBJ) std::move(OBJ)
2022
+ #else
2023
+ # define SWIG_STD_MOVE(OBJ) OBJ
2024
+ #endif
2025
+
2026
+ #endif
1944
2027
 
1945
- #define SWIGVERSION 0x040002
1946
- #define SWIG_VERSION SWIGVERSION
2028
+
2029
+ #define SWIG_RUBY_THREAD_BEGIN_BLOCK
2030
+ #define SWIG_RUBY_THREAD_END_BLOCK
1947
2031
 
1948
2032
 
1949
2033
  #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
@@ -4168,7 +4252,7 @@ SWIGINTERN VALUE _wrap_FXList_setItem(int nargs, VALUE *args, VALUE self) {
4168
4252
  argv[ii] = args[ii-1];
4169
4253
  }
4170
4254
  if ((argc >= 3) && (argc <= 4)) {
4171
- int _v;
4255
+ int _v = 0;
4172
4256
  void *vptr = 0;
4173
4257
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4174
4258
  _v = SWIG_CheckState(res);
@@ -4195,7 +4279,7 @@ SWIGINTERN VALUE _wrap_FXList_setItem(int nargs, VALUE *args, VALUE self) {
4195
4279
  }
4196
4280
  }
4197
4281
  if ((argc >= 3) && (argc <= 6)) {
4198
- int _v;
4282
+ int _v = 0;
4199
4283
  void *vptr = 0;
4200
4284
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4201
4285
  _v = SWIG_CheckState(res);
@@ -4416,7 +4500,7 @@ SWIGINTERN VALUE _wrap_FXList_insertItem(int nargs, VALUE *args, VALUE self) {
4416
4500
  argv[ii] = args[ii-1];
4417
4501
  }
4418
4502
  if ((argc >= 3) && (argc <= 4)) {
4419
- int _v;
4503
+ int _v = 0;
4420
4504
  void *vptr = 0;
4421
4505
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4422
4506
  _v = SWIG_CheckState(res);
@@ -4443,7 +4527,7 @@ SWIGINTERN VALUE _wrap_FXList_insertItem(int nargs, VALUE *args, VALUE self) {
4443
4527
  }
4444
4528
  }
4445
4529
  if ((argc >= 3) && (argc <= 6)) {
4446
- int _v;
4530
+ int _v = 0;
4447
4531
  void *vptr = 0;
4448
4532
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4449
4533
  _v = SWIG_CheckState(res);
@@ -4588,7 +4672,7 @@ SWIGINTERN VALUE _wrap_FXList_appendItem(int nargs, VALUE *args, VALUE self) {
4588
4672
  argv[ii] = args[ii-1];
4589
4673
  }
4590
4674
  if ((argc >= 2) && (argc <= 3)) {
4591
- int _v;
4675
+ int _v = 0;
4592
4676
  void *vptr = 0;
4593
4677
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4594
4678
  _v = SWIG_CheckState(res);
@@ -4610,7 +4694,7 @@ SWIGINTERN VALUE _wrap_FXList_appendItem(int nargs, VALUE *args, VALUE self) {
4610
4694
  }
4611
4695
  }
4612
4696
  if ((argc >= 2) && (argc <= 5)) {
4613
- int _v;
4697
+ int _v = 0;
4614
4698
  void *vptr = 0;
4615
4699
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4616
4700
  _v = SWIG_CheckState(res);
@@ -4750,7 +4834,7 @@ SWIGINTERN VALUE _wrap_FXList_prependItem(int nargs, VALUE *args, VALUE self) {
4750
4834
  argv[ii] = args[ii-1];
4751
4835
  }
4752
4836
  if ((argc >= 2) && (argc <= 3)) {
4753
- int _v;
4837
+ int _v = 0;
4754
4838
  void *vptr = 0;
4755
4839
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4756
4840
  _v = SWIG_CheckState(res);
@@ -4772,7 +4856,7 @@ SWIGINTERN VALUE _wrap_FXList_prependItem(int nargs, VALUE *args, VALUE self) {
4772
4856
  }
4773
4857
  }
4774
4858
  if ((argc >= 2) && (argc <= 5)) {
4775
- int _v;
4859
+ int _v = 0;
4776
4860
  void *vptr = 0;
4777
4861
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
4778
4862
  _v = SWIG_CheckState(res);
@@ -6721,7 +6805,7 @@ _wrap_FXList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
6721
6805
  FXRegion *arg2 = 0 ;
6722
6806
  void *argp1 = 0 ;
6723
6807
  int res1 = 0 ;
6724
- void *argp2 ;
6808
+ void *argp2 = 0 ;
6725
6809
  int res2 = 0 ;
6726
6810
 
6727
6811
  if ((argc < 1) || (argc > 1)) {
@@ -6817,7 +6901,7 @@ SWIGINTERN VALUE _wrap_FXList_setShape(int nargs, VALUE *args, VALUE self) {
6817
6901
  argv[ii] = args[ii-1];
6818
6902
  }
6819
6903
  if (argc == 2) {
6820
- int _v;
6904
+ int _v = 0;
6821
6905
  void *vptr = 0;
6822
6906
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
6823
6907
  _v = SWIG_CheckState(res);
@@ -6831,7 +6915,7 @@ SWIGINTERN VALUE _wrap_FXList_setShape(int nargs, VALUE *args, VALUE self) {
6831
6915
  }
6832
6916
  }
6833
6917
  if (argc == 2) {
6834
- int _v;
6918
+ int _v = 0;
6835
6919
  void *vptr = 0;
6836
6920
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
6837
6921
  _v = SWIG_CheckState(res);
@@ -6845,7 +6929,7 @@ SWIGINTERN VALUE _wrap_FXList_setShape(int nargs, VALUE *args, VALUE self) {
6845
6929
  }
6846
6930
  }
6847
6931
  if (argc == 2) {
6848
- int _v;
6932
+ int _v = 0;
6849
6933
  void *vptr = 0;
6850
6934
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
6851
6935
  _v = SWIG_CheckState(res);
@@ -7022,7 +7106,7 @@ SWIGINTERN VALUE _wrap_FXList_position(int nargs, VALUE *args, VALUE self) {
7022
7106
  argv[ii] = args[ii-1];
7023
7107
  }
7024
7108
  if (argc == 1) {
7025
- int _v;
7109
+ int _v = 0;
7026
7110
  void *vptr = 0;
7027
7111
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
7028
7112
  _v = SWIG_CheckState(res);
@@ -7031,7 +7115,7 @@ SWIGINTERN VALUE _wrap_FXList_position(int nargs, VALUE *args, VALUE self) {
7031
7115
  }
7032
7116
  }
7033
7117
  if (argc == 5) {
7034
- int _v;
7118
+ int _v = 0;
7035
7119
  void *vptr = 0;
7036
7120
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
7037
7121
  _v = SWIG_CheckState(res);
@@ -7171,7 +7255,7 @@ SWIGINTERN VALUE _wrap_FXList_makeItemVisible(int nargs, VALUE *args, VALUE self
7171
7255
  argv[ii] = args[ii-1];
7172
7256
  }
7173
7257
  if (argc == 2) {
7174
- int _v;
7258
+ int _v = 0;
7175
7259
  void *vptr = 0;
7176
7260
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
7177
7261
  _v = SWIG_CheckState(res);
@@ -7185,7 +7269,7 @@ SWIGINTERN VALUE _wrap_FXList_makeItemVisible(int nargs, VALUE *args, VALUE self
7185
7269
  }
7186
7270
  }
7187
7271
  if (argc == 2) {
7188
- int _v;
7272
+ int _v = 0;
7189
7273
  void *vptr = 0;
7190
7274
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXList, 0);
7191
7275
  _v = SWIG_CheckState(res);
@@ -8996,7 +9080,7 @@ _wrap_FXColorList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
8996
9080
  FXRegion *arg2 = 0 ;
8997
9081
  void *argp1 = 0 ;
8998
9082
  int res1 = 0 ;
8999
- void *argp2 ;
9083
+ void *argp2 = 0 ;
9000
9084
  int res2 = 0 ;
9001
9085
 
9002
9086
  if ((argc < 1) || (argc > 1)) {
@@ -9092,7 +9176,7 @@ SWIGINTERN VALUE _wrap_FXColorList_setShape(int nargs, VALUE *args, VALUE self)
9092
9176
  argv[ii] = args[ii-1];
9093
9177
  }
9094
9178
  if (argc == 2) {
9095
- int _v;
9179
+ int _v = 0;
9096
9180
  void *vptr = 0;
9097
9181
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorList, 0);
9098
9182
  _v = SWIG_CheckState(res);
@@ -9106,7 +9190,7 @@ SWIGINTERN VALUE _wrap_FXColorList_setShape(int nargs, VALUE *args, VALUE self)
9106
9190
  }
9107
9191
  }
9108
9192
  if (argc == 2) {
9109
- int _v;
9193
+ int _v = 0;
9110
9194
  void *vptr = 0;
9111
9195
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorList, 0);
9112
9196
  _v = SWIG_CheckState(res);
@@ -9120,7 +9204,7 @@ SWIGINTERN VALUE _wrap_FXColorList_setShape(int nargs, VALUE *args, VALUE self)
9120
9204
  }
9121
9205
  }
9122
9206
  if (argc == 2) {
9123
- int _v;
9207
+ int _v = 0;
9124
9208
  void *vptr = 0;
9125
9209
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorList, 0);
9126
9210
  _v = SWIG_CheckState(res);
@@ -9297,7 +9381,7 @@ SWIGINTERN VALUE _wrap_FXColorList_position(int nargs, VALUE *args, VALUE self)
9297
9381
  argv[ii] = args[ii-1];
9298
9382
  }
9299
9383
  if (argc == 1) {
9300
- int _v;
9384
+ int _v = 0;
9301
9385
  void *vptr = 0;
9302
9386
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorList, 0);
9303
9387
  _v = SWIG_CheckState(res);
@@ -9306,7 +9390,7 @@ SWIGINTERN VALUE _wrap_FXColorList_position(int nargs, VALUE *args, VALUE self)
9306
9390
  }
9307
9391
  }
9308
9392
  if (argc == 5) {
9309
- int _v;
9393
+ int _v = 0;
9310
9394
  void *vptr = 0;
9311
9395
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorList, 0);
9312
9396
  _v = SWIG_CheckState(res);
@@ -9625,558 +9709,558 @@ fail:
9625
9709
 
9626
9710
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
9627
9711
 
9628
- static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9629
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
9630
- }
9631
- static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9632
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
9712
+ static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9713
+ return (void *)((FXComposite *) ((FX4Splitter *) x));
9633
9714
  }
9634
- static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9635
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
9715
+ static void *_p_FXColorListTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9716
+ return (void *)((FXComposite *) (FXScrollArea *)(FXList *) ((FXColorList *) x));
9636
9717
  }
9637
- static void *_p_FXColorListTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9638
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
9718
+ static void *_p_FXDockSiteTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9719
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
9639
9720
  }
9640
- static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9641
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9721
+ static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9722
+ return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
9642
9723
  }
9643
- static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9644
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
9724
+ static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9725
+ return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
9645
9726
  }
9646
- static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9647
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
9727
+ static void *_p_FXListTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9728
+ return (void *)((FXComposite *) (FXScrollArea *) ((FXList *) x));
9648
9729
  }
9649
- static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9650
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9730
+ static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9731
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9651
9732
  }
9652
- static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9653
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
9733
+ static void *_p_FXMatrixTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9734
+ return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
9654
9735
  }
9655
- static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9656
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
9736
+ static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9737
+ return (void *)((FXComposite *) ((FXPacker *) x));
9657
9738
  }
9658
- static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9659
- return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
9739
+ static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9740
+ return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
9660
9741
  }
9661
- static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9662
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
9742
+ static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9743
+ return (void *)((FXComposite *) ((FXRootWindow *) x));
9663
9744
  }
9664
- static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9665
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9745
+ static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9746
+ return (void *)((FXComposite *) ((FXScrollArea *) x));
9666
9747
  }
9667
- static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9668
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
9748
+ static void *_p_FXScrollWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9749
+ return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
9669
9750
  }
9670
- static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9671
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
9751
+ static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9752
+ return (void *)((FXComposite *) ((FXShell *) x));
9672
9753
  }
9673
- static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9674
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
9754
+ static void *_p_FXShutterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9755
+ return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
9675
9756
  }
9676
- static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9677
- return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
9757
+ static void *_p_FXShutterItemTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9758
+ return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9678
9759
  }
9679
- static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9680
- return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
9760
+ static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9761
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9681
9762
  }
9682
- static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9683
- return (void *)((FXId *) ((FXCursor *) x));
9763
+ static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9764
+ return (void *)((FXComposite *) ((FXSplitter *) x));
9684
9765
  }
9685
- static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9686
- return (void *)((FXId *) ((FXDrawable *) x));
9766
+ static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9767
+ return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
9687
9768
  }
9688
- static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9689
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
9769
+ static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9770
+ return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
9690
9771
  }
9691
- static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9692
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
9772
+ static void *_p_FXSwitcherTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9773
+ return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
9693
9774
  }
9694
- static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9695
- return (void *)((FXId *) ((FXFont *) x));
9775
+ static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9776
+ return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
9696
9777
  }
9697
- static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9698
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
9778
+ static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9779
+ return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
9699
9780
  }
9700
- static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9701
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
9781
+ static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9782
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
9702
9783
  }
9703
- static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9704
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
9784
+ static void *_p_FXColorListTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9785
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
9705
9786
  }
9706
- static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9707
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
9787
+ static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9788
+ return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
9708
9789
  }
9709
- static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9710
- return (void *)((FXId *) ((FXVisual *) x));
9790
+ static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9791
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
9711
9792
  }
9712
- static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9713
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
9793
+ static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9794
+ return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
9714
9795
  }
9715
- static void *_p_FXListTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9716
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXList *) x));
9796
+ static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9797
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
9717
9798
  }
9718
- static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9719
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
9799
+ static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9800
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
9720
9801
  }
9721
- static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9722
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
9802
+ static void *_p_FXListTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9803
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXList *) x));
9723
9804
  }
9724
- static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9725
- return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
9805
+ static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9806
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9726
9807
  }
9727
- static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9728
- return (void *)((FXObject *) ((FXAccelTable *) x));
9808
+ static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9809
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
9729
9810
  }
9730
- static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9731
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
9811
+ static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9812
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
9732
9813
  }
9733
- static void *_p_FXColorItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9734
- return (void *)((FXObject *) (FXListItem *) ((FXColorItem *) x));
9814
+ static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9815
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
9735
9816
  }
9736
- static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9737
- return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
9817
+ static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9818
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
9738
9819
  }
9739
- static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9740
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
9820
+ static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9821
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
9741
9822
  }
9742
- static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9743
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
9823
+ static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9824
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
9744
9825
  }
9745
- static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9746
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
9826
+ static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9827
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
9747
9828
  }
9748
- static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9749
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
9829
+ static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9830
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
9750
9831
  }
9751
- static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9752
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
9832
+ static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9833
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9753
9834
  }
9754
- static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9755
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
9835
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9836
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9756
9837
  }
9757
- static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9758
- return (void *)((FXObject *) ((FXRecentFiles *) x));
9838
+ static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9839
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
9759
9840
  }
9760
- static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9761
- return (void *)((FXObject *) ((FXDocument *) x));
9841
+ static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9842
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
9762
9843
  }
9763
- static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9764
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9844
+ static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9845
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
9765
9846
  }
9766
- static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9767
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9847
+ static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9848
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
9768
9849
  }
9769
- static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9770
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
9850
+ static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9851
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
9771
9852
  }
9772
- static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9773
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
9853
+ static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9854
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
9774
9855
  }
9775
- static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9776
- return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
9856
+ static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9857
+ return (void *)((FXDrawable *) ((FXWindow *) x));
9777
9858
  }
9778
- static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9779
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
9859
+ static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9860
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
9780
9861
  }
9781
- static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9782
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
9862
+ static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9863
+ return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
9783
9864
  }
9784
- static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9785
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
9865
+ static void *_p_FXColorListTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9866
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
9786
9867
  }
9787
- static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9788
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
9868
+ static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9869
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
9789
9870
  }
9790
- static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9791
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
9871
+ static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9872
+ return (void *)((FXId *) ((FXCursor *) x));
9792
9873
  }
9793
- static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9794
- return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
9874
+ static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9875
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
9795
9876
  }
9796
- static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9797
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
9877
+ static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9878
+ return (void *)((FXId *) ((FXDrawable *) x));
9798
9879
  }
9799
- static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9800
- return (void *)((FXObject *) (FXId *) ((FXFont *) x));
9880
+ static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9881
+ return (void *)((FXId *) ((FXFont *) x));
9801
9882
  }
9802
- static void *_p_FXListTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9803
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXList *) x));
9883
+ static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9884
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
9804
9885
  }
9805
- static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9806
- return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
9886
+ static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9887
+ return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
9807
9888
  }
9808
- static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9809
- return (void *)((FXObject *) ((FXDataTarget *) x));
9889
+ static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9890
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
9810
9891
  }
9811
- static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9812
- return (void *)((FXObject *) ((FXDebugTarget *) x));
9892
+ static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9893
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
9813
9894
  }
9814
- static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9815
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
9895
+ static void *_p_FXListTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9896
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXList *) x));
9816
9897
  }
9817
- static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9818
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
9898
+ static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9899
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9819
9900
  }
9820
- static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9821
- return (void *)((FXObject *) ((FXDelegator *) x));
9901
+ static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9902
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
9822
9903
  }
9823
- static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9824
- return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
9904
+ static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9905
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
9825
9906
  }
9826
- static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9827
- return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
9907
+ static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9908
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
9828
9909
  }
9829
- static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9830
- return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
9910
+ static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9911
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
9831
9912
  }
9832
- static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9833
- return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
9913
+ static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9914
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
9834
9915
  }
9835
- static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9836
- return (void *)((FXObject *) ((FXTranslator *) x));
9916
+ static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9917
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
9837
9918
  }
9838
- static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9839
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
9919
+ static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9920
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
9840
9921
  }
9841
- static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9842
- return (void *)((FXObject *) ((FXDict *) x));
9922
+ static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9923
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
9843
9924
  }
9844
- static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9845
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
9925
+ static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9926
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9846
9927
  }
9847
- static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9848
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9928
+ static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9929
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9849
9930
  }
9850
- static void *_p_FXListItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9851
- return (void *)((FXObject *) ((FXListItem *) x));
9931
+ static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9932
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
9852
9933
  }
9853
- static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9854
- return (void *)((FXObject *) ((FXId *) x));
9934
+ static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9935
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
9855
9936
  }
9856
- static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9857
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
9937
+ static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9938
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
9858
9939
  }
9859
- static void *_p_FXColorListTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9860
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
9940
+ static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9941
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
9861
9942
  }
9862
- static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9863
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
9943
+ static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9944
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
9864
9945
  }
9865
- static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9866
- return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
9946
+ static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9947
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
9867
9948
  }
9868
- static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9869
- return (void *)((FXObject *) ((FXApp *) x));
9949
+ static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9950
+ return (void *)((FXId *) ((FXVisual *) x));
9870
9951
  }
9871
- static void *_p_FXListTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9872
- return (void *)((FXScrollArea *) ((FXList *) x));
9952
+ static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9953
+ return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
9873
9954
  }
9874
- static void *_p_FXScrollWindowTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9875
- return (void *)((FXScrollArea *) ((FXScrollWindow *) x));
9955
+ static void *_p_FXColorListTo_p_FXList(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9956
+ return (void *)((FXList *) ((FXColorList *) x));
9876
9957
  }
9877
- static void *_p_FXColorListTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9878
- return (void *)((FXScrollArea *) (FXList *) ((FXColorList *) x));
9958
+ static void *_p_FXColorItemTo_p_FXListItem(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9959
+ return (void *)((FXListItem *) ((FXColorItem *) x));
9879
9960
  }
9880
- static void *_p_FXDockSiteTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9881
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
9961
+ static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9962
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
9882
9963
  }
9883
- static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9884
- return (void *)((FXWindow *) ((FXFrame *) x));
9964
+ static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9965
+ return (void *)((FXObject *) ((FXAccelTable *) x));
9885
9966
  }
9886
- static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9887
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
9967
+ static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9968
+ return (void *)((FXObject *) ((FXApp *) x));
9888
9969
  }
9889
- static void *_p_FXColorListTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9890
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
9970
+ static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9971
+ return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
9891
9972
  }
9892
- static void *_p_FXShutterItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9893
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9973
+ static void *_p_FXColorItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9974
+ return (void *)((FXObject *) (FXListItem *) ((FXColorItem *) x));
9894
9975
  }
9895
- static void *_p_FXScrollAreaTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9896
- return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
9976
+ static void *_p_FXColorListTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9977
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
9897
9978
  }
9898
- static void *_p_FXStatusBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9899
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
9979
+ static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9980
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
9900
9981
  }
9901
- static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9902
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9982
+ static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9983
+ return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
9903
9984
  }
9904
- static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9905
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9985
+ static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9986
+ return (void *)((FXObject *) ((FXDataTarget *) x));
9906
9987
  }
9907
- static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9908
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
9988
+ static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9989
+ return (void *)((FXObject *) ((FXDebugTarget *) x));
9909
9990
  }
9910
- static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9911
- return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
9991
+ static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9992
+ return (void *)((FXObject *) ((FXDelegator *) x));
9912
9993
  }
9913
- static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9914
- return (void *)((FXWindow *) ((FXComposite *) x));
9994
+ static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9995
+ return (void *)((FXObject *) ((FXDict *) x));
9915
9996
  }
9916
- static void *_p_FXScrollWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9917
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
9997
+ static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9998
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
9918
9999
  }
9919
- static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9920
- return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
10000
+ static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10001
+ return (void *)((FXObject *) ((FXDocument *) x));
9921
10002
  }
9922
- static void *_p_FXGroupBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9923
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
10003
+ static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10004
+ return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
9924
10005
  }
9925
- static void *_p_FXSplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9926
- return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
10006
+ static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10007
+ return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
9927
10008
  }
9928
- static void *_p_FX4SplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9929
- return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
10009
+ static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10010
+ return (void *)((FXObject *) (FXId *) ((FXFont *) x));
9930
10011
  }
9931
- static void *_p_FXPackerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9932
- return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
10012
+ static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10013
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
9933
10014
  }
9934
- static void *_p_FXVerticalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9935
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
10015
+ static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10016
+ return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
9936
10017
  }
9937
- static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9938
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
10018
+ static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10019
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
9939
10020
  }
9940
- static void *_p_FXShutterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9941
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
10021
+ static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10022
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
9942
10023
  }
9943
- static void *_p_FXMatrixTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9944
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
10024
+ static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10025
+ return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
9945
10026
  }
9946
- static void *_p_FXListTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9947
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXList *) x));
10027
+ static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10028
+ return (void *)((FXObject *) ((FXId *) x));
9948
10029
  }
9949
- static void *_p_FXSpringTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9950
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
10030
+ static void *_p_FXListTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10031
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXList *) x));
9951
10032
  }
9952
- static void *_p_FXSwitcherTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9953
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
10033
+ static void *_p_FXListItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10034
+ return (void *)((FXObject *) ((FXListItem *) x));
9954
10035
  }
9955
- static void *_p_FXDockSiteTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9956
- return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
10036
+ static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10037
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
9957
10038
  }
9958
- static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9959
- return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
10039
+ static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10040
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
9960
10041
  }
9961
- static void *_p_FXColorListTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9962
- return (void *)((FXComposite *) (FXScrollArea *)(FXList *) ((FXColorList *) x));
10042
+ static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10043
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
9963
10044
  }
9964
- static void *_p_FXShutterItemTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9965
- return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
10045
+ static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10046
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
9966
10047
  }
9967
- static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9968
- return (void *)((FXComposite *) ((FXScrollArea *) x));
10048
+ static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10049
+ return (void *)((FXObject *) ((FXRecentFiles *) x));
9969
10050
  }
9970
- static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9971
- return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
10051
+ static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10052
+ return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
9972
10053
  }
9973
- static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9974
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
10054
+ static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10055
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
9975
10056
  }
9976
- static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9977
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
10057
+ static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10058
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
9978
10059
  }
9979
- static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9980
- return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
10060
+ static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10061
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
9981
10062
  }
9982
- static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9983
- return (void *)((FXComposite *) ((FXRootWindow *) x));
10063
+ static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10064
+ return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
9984
10065
  }
9985
- static void *_p_FXScrollWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9986
- return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
10066
+ static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10067
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
9987
10068
  }
9988
- static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9989
- return (void *)((FXComposite *) ((FXShell *) x));
10069
+ static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10070
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
9990
10071
  }
9991
- static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9992
- return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
10072
+ static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10073
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
9993
10074
  }
9994
- static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9995
- return (void *)((FXComposite *) ((FXSplitter *) x));
10075
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10076
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
9996
10077
  }
9997
- static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
9998
- return (void *)((FXComposite *) ((FX4Splitter *) x));
10078
+ static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10079
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
9999
10080
  }
10000
- static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10001
- return (void *)((FXComposite *) ((FXPacker *) x));
10081
+ static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10082
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
10002
10083
  }
10003
- static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10004
- return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
10084
+ static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10085
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
10005
10086
  }
10006
- static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10007
- return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
10087
+ static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10088
+ return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
10008
10089
  }
10009
- static void *_p_FXShutterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10010
- return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
10090
+ static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10091
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
10011
10092
  }
10012
- static void *_p_FXMatrixTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10013
- return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
10093
+ static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10094
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
10014
10095
  }
10015
- static void *_p_FXListTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10016
- return (void *)((FXComposite *) (FXScrollArea *) ((FXList *) x));
10096
+ static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10097
+ return (void *)((FXObject *) ((FXTranslator *) x));
10017
10098
  }
10018
- static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10019
- return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
10099
+ static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10100
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
10020
10101
  }
10021
- static void *_p_FXSwitcherTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10022
- return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
10102
+ static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10103
+ return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
10023
10104
  }
10024
- static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10025
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
10105
+ static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10106
+ return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
10026
10107
  }
10027
- static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10028
- return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
10108
+ static void *_p_FXColorListTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10109
+ return (void *)((FXScrollArea *) (FXList *) ((FXColorList *) x));
10029
10110
  }
10030
- static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10031
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
10111
+ static void *_p_FXListTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10112
+ return (void *)((FXScrollArea *) ((FXList *) x));
10032
10113
  }
10033
- static void *_p_FXColorListTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10034
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
10114
+ static void *_p_FXScrollWindowTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10115
+ return (void *)((FXScrollArea *) ((FXScrollWindow *) x));
10035
10116
  }
10036
- static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10037
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
10117
+ static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10118
+ return (void *)((FXStream *) ((FXFileStream *) x));
10038
10119
  }
10039
- static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10040
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
10120
+ static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10121
+ return (void *)((FXStream *) ((FXMemoryStream *) x));
10041
10122
  }
10042
- static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10043
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
10123
+ static void *_p_FX4SplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10124
+ return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
10044
10125
  }
10045
- static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10046
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
10126
+ static void *_p_FXColorListTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10127
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
10047
10128
  }
10048
- static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10049
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
10129
+ static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10130
+ return (void *)((FXWindow *) ((FXComposite *) x));
10050
10131
  }
10051
- static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10052
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
10132
+ static void *_p_FXDockSiteTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10133
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
10053
10134
  }
10054
- static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10055
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
10135
+ static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10136
+ return (void *)((FXWindow *) ((FXFrame *) x));
10056
10137
  }
10057
- static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10058
- return (void *)((FXDrawable *) ((FXWindow *) x));
10138
+ static void *_p_FXGroupBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10139
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
10059
10140
  }
10060
- static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10061
- return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
10141
+ static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10142
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
10062
10143
  }
10063
- static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10064
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
10144
+ static void *_p_FXListTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10145
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXList *) x));
10065
10146
  }
10066
- static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10067
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
10147
+ static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10148
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
10068
10149
  }
10069
- static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10070
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
10150
+ static void *_p_FXMatrixTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10151
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
10071
10152
  }
10072
- static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10073
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
10153
+ static void *_p_FXPackerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10154
+ return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
10074
10155
  }
10075
- static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10076
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
10156
+ static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10157
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
10077
10158
  }
10078
- static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10079
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
10159
+ static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10160
+ return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
10080
10161
  }
10081
- static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10082
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
10162
+ static void *_p_FXScrollAreaTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10163
+ return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
10083
10164
  }
10084
- static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10085
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
10165
+ static void *_p_FXScrollWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10166
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
10086
10167
  }
10087
- static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10088
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
10168
+ static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10169
+ return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
10089
10170
  }
10090
- static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10091
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
10171
+ static void *_p_FXShutterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10172
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
10092
10173
  }
10093
- static void *_p_FXListTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10094
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXList *) x));
10174
+ static void *_p_FXShutterItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10175
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
10095
10176
  }
10096
- static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10097
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
10177
+ static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10178
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
10098
10179
  }
10099
- static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10100
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
10180
+ static void *_p_FXSplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10181
+ return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
10101
10182
  }
10102
- static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10103
- return (void *)((FXStream *) ((FXFileStream *) x));
10183
+ static void *_p_FXSpringTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10184
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
10104
10185
  }
10105
- static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10106
- return (void *)((FXStream *) ((FXMemoryStream *) x));
10186
+ static void *_p_FXStatusBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10187
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
10107
10188
  }
10108
- static void *_p_FXColorListTo_p_FXList(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10109
- return (void *)((FXList *) ((FXColorList *) x));
10189
+ static void *_p_FXSwitcherTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10190
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
10110
10191
  }
10111
- static void *_p_FXColorItemTo_p_FXListItem(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10112
- return (void *)((FXListItem *) ((FXColorItem *) x));
10192
+ static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10193
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
10194
+ }
10195
+ static void *_p_FXVerticalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
10196
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
10113
10197
  }
10114
10198
  static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
10115
10199
  static swig_type_info _swigt__p_FXColorItem = {"_p_FXColorItem", "FXColorItem *", 0, 0, (void*)0, 0};
10116
10200
  static swig_type_info _swigt__p_FXColorList = {"_p_FXColorList", "FXColorList *", 0, 0, (void*)0, 0};
10117
10201
  static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", "FXComposite *", 0, 0, (void*)0, 0};
10202
+ static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
10118
10203
  static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", 0, 0, 0, 0, 0};
10119
- static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
10120
- static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
10121
- static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
10122
- static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
10204
+ static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
10205
+ static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", 0, 0, 0, 0, 0};
10123
10206
  static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
10124
- static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
10207
+ static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
10208
+ static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
10209
+ static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
10125
10210
  static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
10126
10211
  static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
10127
10212
  static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
10128
- static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
10129
- static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
10130
- static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
10131
- static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
10132
- static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
10133
- static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", 0, 0, 0, 0, 0};
10134
10213
  static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
10135
- static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
10214
+ static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
10215
+ static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
10216
+ static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
10136
10217
  static swig_type_info _swigt__p_FXSpring = {"_p_FXSpring", 0, 0, 0, 0, 0};
10218
+ static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
10137
10219
  static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", 0, 0, 0, 0, 0};
10220
+ static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
10221
+ static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
10138
10222
  static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
10139
10223
  static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
10140
10224
  static swig_type_info _swigt__p_FXFont = {"_p_FXFont", "FXFont *", 0, 0, (void*)0, 0};
10141
10225
  static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
10142
10226
  static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
10143
- static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
10144
10227
  static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
10145
10228
  static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
10229
+ static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
10146
10230
  static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
10147
10231
  static swig_type_info _swigt__p_FXList = {"_p_FXList", "FXList *", 0, 0, (void*)0, 0};
10148
10232
  static swig_type_info _swigt__p_FXListItem = {"_p_FXListItem", "FXListItem *", 0, 0, (void*)0, 0};
10149
10233
  static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
10150
- static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
10151
- static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
10152
10234
  static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
10153
- static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
10235
+ static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
10236
+ static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
10237
+ static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
10238
+ static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
10239
+ static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
10240
+ static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
10241
+ static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
10154
10242
  static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
10155
10243
  static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
10156
- static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
10244
+ static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
10245
+ static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
10157
10246
  static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
10158
- static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
10159
- static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
10160
- static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
10161
- static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
10162
10247
  static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
10163
- static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
10164
10248
  static swig_type_info _swigt__p_FXRegion = {"_p_FXRegion", "FXRegion *", 0, 0, (void*)0, 0};
10165
10249
  static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", "FXScrollArea *", 0, 0, (void*)0, 0};
10166
10250
  static swig_type_info _swigt__p_FXStream = {"_p_FXStream", "FXStream *", 0, 0, (void*)0, 0};
10167
10251
  static swig_type_info _swigt__p_FXFileStream = {"_p_FXFileStream", 0, 0, 0, 0, 0};
10168
10252
  static swig_type_info _swigt__p_FXMemoryStream = {"_p_FXMemoryStream", 0, 0, 0, 0, 0};
10169
10253
  static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
10170
- static swig_type_info _swigt__p_char = {"_p_char", "char *|FXchar *", 0, 0, (void*)0, 0};
10171
- static swig_type_info _swigt__p_double = {"_p_double", "double *|FXdouble *", 0, 0, (void*)0, 0};
10172
- static swig_type_info _swigt__p_float = {"_p_float", "float *|FXfloat *", 0, 0, (void*)0, 0};
10173
- static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int *|FXInputHandle *", 0, 0, (void*)0, 0};
10174
- static swig_type_info _swigt__p_long = {"_p_long", "long *|FXTime *", 0, 0, (void*)0, 0};
10175
- static swig_type_info _swigt__p_short = {"_p_short", "short *|FXshort *", 0, 0, (void*)0, 0};
10176
- static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char *|FXbool *", 0, 0, (void*)0, 0};
10177
- static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXwchar *|FXDragType *|unsigned int *|FXuint *|FXColor *|FXSelector *|FXHotKey *", 0, 0, (void*)0, 0};
10178
- static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|FXuval *|FXPixel *", 0, 0, (void*)0, 0};
10179
- static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|FXushort *", 0, 0, (void*)0, 0};
10254
+ static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
10255
+ static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
10256
+ static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
10257
+ static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
10258
+ static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
10259
+ static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
10260
+ static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
10261
+ static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
10262
+ static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
10263
+ static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
10180
10264
 
10181
10265
  static swig_type_info *swig_type_initial[] = {
10182
10266
  &_swigt__p_FX4Splitter,
@@ -10250,59 +10334,59 @@ static swig_type_info *swig_type_initial[] = {
10250
10334
  static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{0, 0, 0, 0}};
10251
10335
  static swig_cast_info _swigc__p_FXColorItem[] = { {&_swigt__p_FXColorItem, 0, 0, 0},{0, 0, 0, 0}};
10252
10336
  static swig_cast_info _swigc__p_FXColorList[] = { {&_swigt__p_FXColorList, 0, 0, 0},{0, 0, 0, 0}};
10337
+ static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
10253
10338
  static swig_cast_info _swigc__p_FXDockSite[] = {{&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
10254
- static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
10255
- static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
10256
- static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
10257
- static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
10339
+ static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
10340
+ static swig_cast_info _swigc__p_FXHorizontalFrame[] = {{&_swigt__p_FXHorizontalFrame, 0, 0, 0},{0, 0, 0, 0}};
10258
10341
  static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
10259
- static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
10342
+ static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
10343
+ static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
10344
+ static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
10260
10345
  static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
10261
10346
  static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
10262
10347
  static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
10263
- static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
10264
- static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
10265
- static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
10266
- static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
10267
- static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
10268
- static swig_cast_info _swigc__p_FXHorizontalFrame[] = {{&_swigt__p_FXHorizontalFrame, 0, 0, 0},{0, 0, 0, 0}};
10269
10348
  static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
10270
- static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
10349
+ static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
10350
+ static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
10351
+ static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
10271
10352
  static swig_cast_info _swigc__p_FXSpring[] = {{&_swigt__p_FXSpring, 0, 0, 0},{0, 0, 0, 0}};
10353
+ static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
10272
10354
  static swig_cast_info _swigc__p_FXSwitcher[] = {{&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
10273
- static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXComposite, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_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_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
10355
+ static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
10356
+ static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
10357
+ static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXComposite, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_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_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_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
10274
10358
  static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
10275
- static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
10359
+ static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_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_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_FXSwitcher, _p_FXSwitcherTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
10276
10360
  static swig_cast_info _swigc__p_FXFont[] = { {&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
10277
10361
  static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
10278
- static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
10279
10362
  static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
10280
10363
  static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
10364
+ static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
10281
10365
  static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
10282
- static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXId, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXId, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXId, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXId, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXId, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXId, 0, 0},{0, 0, 0, 0}};
10366
+ static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXId, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_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_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_FXSwitcher, _p_FXSwitcherTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0},{0, 0, 0, 0}};
10283
10367
  static swig_cast_info _swigc__p_FXList[] = { {&_swigt__p_FXList, 0, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXList, 0, 0},{0, 0, 0, 0}};
10284
- static swig_cast_info _swigc__p_FXListItem[] = { {&_swigt__p_FXColorItem, _p_FXColorItemTo_p_FXListItem, 0, 0}, {&_swigt__p_FXListItem, 0, 0, 0},{0, 0, 0, 0}};
10285
- static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
10286
- static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
10368
+ static swig_cast_info _swigc__p_FXListItem[] = { {&_swigt__p_FXListItem, 0, 0, 0}, {&_swigt__p_FXColorItem, _p_FXColorItemTo_p_FXListItem, 0, 0},{0, 0, 0, 0}};
10287
10369
  static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
10288
- static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
10370
+ static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
10371
+ static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
10372
+ static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
10373
+ static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
10374
+ static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
10375
+ static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
10376
+ static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
10289
10377
  static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
10290
10378
  static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
10291
- static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
10379
+ static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
10380
+ static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
10292
10381
  static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
10293
- static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
10294
- static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
10295
- static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
10296
- static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
10297
10382
  static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
10298
- static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
10299
- static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorItem, _p_FXColorItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_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_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXListItem, _p_FXListItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
10383
+ static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorItem, _p_FXColorItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_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_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXObject, 0, 0}, {&_swigt__p_FXListItem, _p_FXListItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_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_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_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
10300
10384
  static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
10301
- static swig_cast_info _swigc__p_FXScrollArea[] = { {&_swigt__p_FXList, _p_FXListTo_p_FXScrollArea, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXScrollArea, 0, 0}, {&_swigt__p_FXScrollArea, 0, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXScrollArea, 0, 0},{0, 0, 0, 0}};
10385
+ static swig_cast_info _swigc__p_FXScrollArea[] = { {&_swigt__p_FXScrollArea, 0, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXScrollArea, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXScrollArea, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXScrollArea, 0, 0},{0, 0, 0, 0}};
10302
10386
  static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
10303
10387
  static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
10304
- 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}};
10305
- static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_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_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
10388
+ 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}};
10389
+ static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorList, _p_FXColorListTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXList, _p_FXListTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_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_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_FXSwitcher, _p_FXSwitcherTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
10306
10390
  static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
10307
10391
  static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
10308
10392
  static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}};
@@ -10438,9 +10522,12 @@ extern "C" {
10438
10522
  #define SWIGRUNTIME_DEBUG
10439
10523
  #endif
10440
10524
 
10525
+ #ifndef SWIG_INIT_CLIENT_DATA_TYPE
10526
+ #define SWIG_INIT_CLIENT_DATA_TYPE void *
10527
+ #endif
10441
10528
 
10442
10529
  SWIGRUNTIME void
10443
- SWIG_InitializeModule(void *clientdata) {
10530
+ SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
10444
10531
  size_t i;
10445
10532
  swig_module_info *module_head, *iter;
10446
10533
  int init;