fxruby 1.6.47-x64-mingw32 → 1.6.48-x64-mingw32

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/2.6/fox16_c.so +0 -0
  27. data/lib/2.7/fox16_c.so +0 -0
  28. data/lib/3.0/fox16_c.so +0 -0
  29. data/lib/fox16/version.rb +1 -1
  30. data/ports/x64-mingw32/bin/libFOX-1.6-0.dll +0 -0
  31. data/ports/x64-mingw32/bin/libfxscintilla-20.dll +0 -0
  32. data/ports/x64-mingw32/bin/libjpeg-62.dll +0 -0
  33. data/ports/x64-mingw32/bin/libpng16-16.dll +0 -0
  34. data/ports/x64-mingw32/bin/libtiff-6.dll +0 -0
  35. data/ports/x64-mingw32/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
 
@@ -1944,12 +1984,56 @@ static swig_module_info swig_module = {swig_types, 72, 0, 0, 0, 0};
1944
1984
 
1945
1985
  VALUE mFox;
1946
1986
 
1947
- #define SWIG_RUBY_THREAD_BEGIN_BLOCK
1948
- #define SWIG_RUBY_THREAD_END_BLOCK
1987
+ #ifdef __cplusplus
1988
+ #include <utility>
1989
+ /* SwigValueWrapper is described in swig.swg */
1990
+ template<typename T> class SwigValueWrapper {
1991
+ struct SwigSmartPointer {
1992
+ T *ptr;
1993
+ SwigSmartPointer(T *p) : ptr(p) { }
1994
+ ~SwigSmartPointer() { delete ptr; }
1995
+ SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
1996
+ void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
1997
+ } pointer;
1998
+ SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
1999
+ SwigValueWrapper(const SwigValueWrapper<T>& rhs);
2000
+ public:
2001
+ SwigValueWrapper() : pointer(0) { }
2002
+ SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
2003
+ #if __cplusplus >=201103L
2004
+ SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
2005
+ operator T&&() const { return std::move(*pointer.ptr); }
2006
+ #else
2007
+ operator T&() const { return *pointer.ptr; }
2008
+ #endif
2009
+ T *operator&() const { return pointer.ptr; }
2010
+ static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
2011
+ };
1949
2012
 
2013
+ /*
2014
+ * SwigValueInit() is a generic initialisation solution as the following approach:
2015
+ *
2016
+ * T c_result = T();
2017
+ *
2018
+ * doesn't compile for all types for example:
2019
+ *
2020
+ * unsigned int c_result = unsigned int();
2021
+ */
2022
+ template <typename T> T SwigValueInit() {
2023
+ return T();
2024
+ }
1950
2025
 
1951
- #define SWIGVERSION 0x040002
1952
- #define SWIG_VERSION SWIGVERSION
2026
+ #if __cplusplus >=201103L
2027
+ # define SWIG_STD_MOVE(OBJ) std::move(OBJ)
2028
+ #else
2029
+ # define SWIG_STD_MOVE(OBJ) OBJ
2030
+ #endif
2031
+
2032
+ #endif
2033
+
2034
+
2035
+ #define SWIG_RUBY_THREAD_BEGIN_BLOCK
2036
+ #define SWIG_RUBY_THREAD_END_BLOCK
1953
2037
 
1954
2038
 
1955
2039
  #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
@@ -2138,6 +2222,8 @@ SWIG_AsVal_unsigned_SS_long (VALUE obj, unsigned long *val)
2138
2222
  a[0] = obj;
2139
2223
  a[1] = (VALUE)(&v);
2140
2224
  if (rb_rescue(VALUEFUNC(SWIG_AUX_NUM2ULONG), (VALUE)a, VALUEFUNC(SWIG_ruby_failed), 0) != Qnil) {
2225
+ if (rb_funcall(obj, swig_lowerthan_id, 1, INT2FIX(0)) != Qfalse)
2226
+ return SWIG_OverflowError;
2141
2227
  if (val) *val = v;
2142
2228
  return SWIG_OK;
2143
2229
  }
@@ -2295,10 +2381,6 @@ inline int SWIG_isfinite_func(T x) {
2295
2381
  # define SWIG_isfinite(X) (SWIG_isfinite_func(X))
2296
2382
  # elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
2297
2383
  # define SWIG_isfinite(X) (__builtin_isfinite(X))
2298
- # elif defined(__clang__) && defined(__has_builtin)
2299
- # if __has_builtin(__builtin_isfinite)
2300
- # define SWIG_isfinite(X) (__builtin_isfinite(X))
2301
- # endif
2302
2384
  # elif defined(_MSC_VER)
2303
2385
  # define SWIG_isfinite(X) (_finite(X))
2304
2386
  # elif defined(__sun) && defined(__SVR4)
@@ -4387,7 +4469,7 @@ SWIGINTERN VALUE _wrap_FXStream_swapBytes(int nargs, VALUE *args, VALUE self) {
4387
4469
  argv[ii] = args[ii-1];
4388
4470
  }
4389
4471
  if (argc == 1) {
4390
- int _v;
4472
+ int _v = 0;
4391
4473
  void *vptr = 0;
4392
4474
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStream, 0);
4393
4475
  _v = SWIG_CheckState(res);
@@ -4396,7 +4478,7 @@ SWIGINTERN VALUE _wrap_FXStream_swapBytes(int nargs, VALUE *args, VALUE self) {
4396
4478
  }
4397
4479
  }
4398
4480
  if (argc == 2) {
4399
- int _v;
4481
+ int _v = 0;
4400
4482
  void *vptr = 0;
4401
4483
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStream, 0);
4402
4484
  _v = SWIG_CheckState(res);
@@ -4549,7 +4631,7 @@ _wrap_FXStream_setPosition(int argc, VALUE *argv, VALUE self) {
4549
4631
  }
4550
4632
  arg3 = static_cast< FXWhence >(val3);
4551
4633
  }
4552
- result = (bool)FXStream_position(arg1,arg2,arg3);
4634
+ result = (bool)FXStream_position(arg1,SWIG_STD_MOVE(arg2),arg3);
4553
4635
  vresult = SWIG_From_bool(static_cast< bool >(result));
4554
4636
  return vresult;
4555
4637
  fail:
@@ -4749,7 +4831,7 @@ _wrap_FXFileStream_setPosition(int argc, VALUE *argv, VALUE self) {
4749
4831
  }
4750
4832
  arg3 = static_cast< FXWhence >(val3);
4751
4833
  }
4752
- result = (bool)FXFileStream_position(arg1,arg2,arg3);
4834
+ result = (bool)FXFileStream_position(arg1,SWIG_STD_MOVE(arg2),arg3);
4753
4835
  vresult = SWIG_From_bool(static_cast< bool >(result));
4754
4836
  return vresult;
4755
4837
  fail:
@@ -5028,7 +5110,7 @@ fail:
5028
5110
  SWIGINTERN VALUE
5029
5111
  _wrap_new_FXSize__SWIG_1(int argc, VALUE *argv, VALUE self) {
5030
5112
  FXSize *arg1 = 0 ;
5031
- void *argp1 ;
5113
+ void *argp1 = 0 ;
5032
5114
  int res1 = 0 ;
5033
5115
  FXSize *result = 0 ;
5034
5116
 
@@ -5109,7 +5191,7 @@ SWIGINTERN VALUE _wrap_new_FXSize(int nargs, VALUE *args, VALUE self) {
5109
5191
  return _wrap_new_FXSize__SWIG_0(nargs, args, self);
5110
5192
  }
5111
5193
  if (argc == 1) {
5112
- int _v;
5194
+ int _v = 0;
5113
5195
  void *vptr = 0;
5114
5196
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, SWIG_POINTER_NO_NULL);
5115
5197
  _v = SWIG_CheckState(res);
@@ -5118,7 +5200,7 @@ SWIGINTERN VALUE _wrap_new_FXSize(int nargs, VALUE *args, VALUE self) {
5118
5200
  }
5119
5201
  }
5120
5202
  if (argc == 2) {
5121
- int _v;
5203
+ int _v = 0;
5122
5204
  {
5123
5205
  _v = (TYPE(argv[0]) == T_FIXNUM || TYPE(argv[0]) == T_BIGNUM) ? 1 : 0;
5124
5206
  }
@@ -5188,7 +5270,7 @@ _wrap_FXSize___eq__(int argc, VALUE *argv, VALUE self) {
5188
5270
  FXSize *arg2 = 0 ;
5189
5271
  void *argp1 = 0 ;
5190
5272
  int res1 = 0 ;
5191
- void *argp2 ;
5273
+ void *argp2 = 0 ;
5192
5274
  int res2 = 0 ;
5193
5275
  bool result;
5194
5276
  VALUE vresult = Qnil;
@@ -5242,7 +5324,7 @@ _wrap_FXSize___neg__(int argc, VALUE *argv, VALUE self) {
5242
5324
  }
5243
5325
  arg1 = reinterpret_cast< FXSize * >(argp1);
5244
5326
  result = (arg1)->operator -();
5245
- vresult = SWIG_NewPointerObj((new FXSize(static_cast< const FXSize& >(result))), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5327
+ vresult = SWIG_NewPointerObj((new FXSize(result)), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5246
5328
  return vresult;
5247
5329
  fail:
5248
5330
  return Qnil;
@@ -5347,7 +5429,7 @@ SWIGINTERN VALUE _wrap_FXSize_growN___(int nargs, VALUE *args, VALUE self) {
5347
5429
  argv[ii] = args[ii-1];
5348
5430
  }
5349
5431
  if (argc == 2) {
5350
- int _v;
5432
+ int _v = 0;
5351
5433
  void *vptr = 0;
5352
5434
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, 0);
5353
5435
  _v = SWIG_CheckState(res);
@@ -5361,7 +5443,7 @@ SWIGINTERN VALUE _wrap_FXSize_growN___(int nargs, VALUE *args, VALUE self) {
5361
5443
  }
5362
5444
  }
5363
5445
  if (argc == 3) {
5364
- int _v;
5446
+ int _v = 0;
5365
5447
  void *vptr = 0;
5366
5448
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, 0);
5367
5449
  _v = SWIG_CheckState(res);
@@ -5380,7 +5462,7 @@ SWIGINTERN VALUE _wrap_FXSize_growN___(int nargs, VALUE *args, VALUE self) {
5380
5462
  }
5381
5463
  }
5382
5464
  if (argc == 5) {
5383
- int _v;
5465
+ int _v = 0;
5384
5466
  void *vptr = 0;
5385
5467
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, 0);
5386
5468
  _v = SWIG_CheckState(res);
@@ -5517,7 +5599,7 @@ SWIGINTERN VALUE _wrap_FXSize_shrinkN___(int nargs, VALUE *args, VALUE self) {
5517
5599
  argv[ii] = args[ii-1];
5518
5600
  }
5519
5601
  if (argc == 2) {
5520
- int _v;
5602
+ int _v = 0;
5521
5603
  void *vptr = 0;
5522
5604
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, 0);
5523
5605
  _v = SWIG_CheckState(res);
@@ -5531,7 +5613,7 @@ SWIGINTERN VALUE _wrap_FXSize_shrinkN___(int nargs, VALUE *args, VALUE self) {
5531
5613
  }
5532
5614
  }
5533
5615
  if (argc == 3) {
5534
- int _v;
5616
+ int _v = 0;
5535
5617
  void *vptr = 0;
5536
5618
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, 0);
5537
5619
  _v = SWIG_CheckState(res);
@@ -5550,7 +5632,7 @@ SWIGINTERN VALUE _wrap_FXSize_shrinkN___(int nargs, VALUE *args, VALUE self) {
5550
5632
  }
5551
5633
  }
5552
5634
  if (argc == 5) {
5553
- int _v;
5635
+ int _v = 0;
5554
5636
  void *vptr = 0;
5555
5637
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, 0);
5556
5638
  _v = SWIG_CheckState(res);
@@ -5603,7 +5685,7 @@ _wrap_FXSize___add__(int argc, VALUE *argv, VALUE self) {
5603
5685
  FXSize *arg2 = 0 ;
5604
5686
  void *argp1 = 0 ;
5605
5687
  int res1 = 0 ;
5606
- void *argp2 ;
5688
+ void *argp2 = 0 ;
5607
5689
  int res2 = 0 ;
5608
5690
  FXSize result;
5609
5691
  VALUE vresult = Qnil;
@@ -5625,7 +5707,7 @@ _wrap_FXSize___add__(int argc, VALUE *argv, VALUE self) {
5625
5707
  }
5626
5708
  arg2 = reinterpret_cast< FXSize * >(argp2);
5627
5709
  result = FXSize_operator_Sa_((FXSize const *)arg1,(FXSize const &)*arg2);
5628
- vresult = SWIG_NewPointerObj((new FXSize(static_cast< const FXSize& >(result))), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5710
+ vresult = SWIG_NewPointerObj((new FXSize(result)), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5629
5711
  return vresult;
5630
5712
  fail:
5631
5713
  return Qnil;
@@ -5638,7 +5720,7 @@ fail:
5638
5720
  call-seq:
5639
5721
  -(s) -> FXSize
5640
5722
 
5641
- Substraction operator.
5723
+ Subtraction operator.
5642
5724
  */
5643
5725
  SWIGINTERN VALUE
5644
5726
  _wrap_FXSize___sub__(int argc, VALUE *argv, VALUE self) {
@@ -5646,7 +5728,7 @@ _wrap_FXSize___sub__(int argc, VALUE *argv, VALUE self) {
5646
5728
  FXSize *arg2 = 0 ;
5647
5729
  void *argp1 = 0 ;
5648
5730
  int res1 = 0 ;
5649
- void *argp2 ;
5731
+ void *argp2 = 0 ;
5650
5732
  int res2 = 0 ;
5651
5733
  FXSize result;
5652
5734
  VALUE vresult = Qnil;
@@ -5668,7 +5750,7 @@ _wrap_FXSize___sub__(int argc, VALUE *argv, VALUE self) {
5668
5750
  }
5669
5751
  arg2 = reinterpret_cast< FXSize * >(argp2);
5670
5752
  result = FXSize_operator_Ss_((FXSize const *)arg1,(FXSize const &)*arg2);
5671
- vresult = SWIG_NewPointerObj((new FXSize(static_cast< const FXSize& >(result))), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5753
+ vresult = SWIG_NewPointerObj((new FXSize(result)), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5672
5754
  return vresult;
5673
5755
  fail:
5674
5756
  return Qnil;
@@ -5694,7 +5776,7 @@ _wrap_FXSize___mul__(int argc, VALUE *argv, VALUE self) {
5694
5776
  arg1 = reinterpret_cast< FXSize * >(argp1);
5695
5777
  arg2 = NUM2INT(argv[0]);
5696
5778
  result = FXSize_operator_Sm_((FXSize const *)arg1,arg2);
5697
- vresult = SWIG_NewPointerObj((new FXSize(static_cast< const FXSize& >(result))), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5779
+ vresult = SWIG_NewPointerObj((new FXSize(result)), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5698
5780
  return vresult;
5699
5781
  fail:
5700
5782
  return Qnil;
@@ -5720,7 +5802,7 @@ _wrap_FXSize___div__(int argc, VALUE *argv, VALUE self) {
5720
5802
  arg1 = reinterpret_cast< FXSize * >(argp1);
5721
5803
  arg2 = NUM2INT(argv[0]);
5722
5804
  result = FXSize_operator_Sd_((FXSize const *)arg1,arg2);
5723
- vresult = SWIG_NewPointerObj((new FXSize(static_cast< const FXSize& >(result))), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5805
+ vresult = SWIG_NewPointerObj((new FXSize(result)), SWIGTYPE_p_FXSize, SWIG_POINTER_OWN | 0 );
5724
5806
  return vresult;
5725
5807
  fail:
5726
5808
  return Qnil;
@@ -5826,7 +5908,7 @@ fail:
5826
5908
  SWIGINTERN VALUE
5827
5909
  _wrap_new_FXPoint__SWIG_0(int argc, VALUE *argv, VALUE self) {
5828
5910
  FXSize *arg1 = 0 ;
5829
- void *argp1 ;
5911
+ void *argp1 = 0 ;
5830
5912
  int res1 = 0 ;
5831
5913
  FXPoint *result = 0 ;
5832
5914
 
@@ -5857,7 +5939,7 @@ fail:
5857
5939
  SWIGINTERN VALUE
5858
5940
  _wrap_new_FXPoint__SWIG_1(int argc, VALUE *argv, VALUE self) {
5859
5941
  FXPoint *arg1 = 0 ;
5860
- void *argp1 ;
5942
+ void *argp1 = 0 ;
5861
5943
  int res1 = 0 ;
5862
5944
  FXPoint *result = 0 ;
5863
5945
 
@@ -5939,7 +6021,7 @@ SWIGINTERN VALUE _wrap_new_FXPoint(int nargs, VALUE *args, VALUE self) {
5939
6021
  argv[ii] = args[ii];
5940
6022
  }
5941
6023
  if ((argc >= 0) && (argc <= 2)) {
5942
- int _v;
6024
+ int _v = 0;
5943
6025
  if (argc <= 0) {
5944
6026
  return _wrap_new_FXPoint__SWIG_2(nargs, args, self);
5945
6027
  }
@@ -5959,7 +6041,7 @@ SWIGINTERN VALUE _wrap_new_FXPoint(int nargs, VALUE *args, VALUE self) {
5959
6041
  }
5960
6042
  }
5961
6043
  if (argc == 1) {
5962
- int _v;
6044
+ int _v = 0;
5963
6045
  void *vptr = 0;
5964
6046
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, SWIG_POINTER_NO_NULL);
5965
6047
  _v = SWIG_CheckState(res);
@@ -5968,7 +6050,7 @@ SWIGINTERN VALUE _wrap_new_FXPoint(int nargs, VALUE *args, VALUE self) {
5968
6050
  }
5969
6051
  }
5970
6052
  if (argc == 1) {
5971
- int _v;
6053
+ int _v = 0;
5972
6054
  void *vptr = 0;
5973
6055
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSize, SWIG_POINTER_NO_NULL);
5974
6056
  _v = SWIG_CheckState(res);
@@ -6001,7 +6083,7 @@ _wrap_FXPoint___eq__(int argc, VALUE *argv, VALUE self) {
6001
6083
  FXPoint *arg2 = 0 ;
6002
6084
  void *argp1 = 0 ;
6003
6085
  int res1 = 0 ;
6004
- void *argp2 ;
6086
+ void *argp2 = 0 ;
6005
6087
  int res2 = 0 ;
6006
6088
  bool result;
6007
6089
  VALUE vresult = Qnil;
@@ -6055,7 +6137,7 @@ _wrap_FXPoint___neg__(int argc, VALUE *argv, VALUE self) {
6055
6137
  }
6056
6138
  arg1 = reinterpret_cast< FXPoint * >(argp1);
6057
6139
  result = (arg1)->operator -();
6058
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6140
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6059
6141
  return vresult;
6060
6142
  fail:
6061
6143
  return Qnil;
@@ -6077,7 +6159,7 @@ _wrap_FXPoint___add____SWIG_0(int argc, VALUE *argv, VALUE self) {
6077
6159
  FXPoint *arg2 = 0 ;
6078
6160
  void *argp1 = 0 ;
6079
6161
  int res1 = 0 ;
6080
- void *argp2 ;
6162
+ void *argp2 = 0 ;
6081
6163
  int res2 = 0 ;
6082
6164
  FXPoint result;
6083
6165
  VALUE vresult = Qnil;
@@ -6099,7 +6181,7 @@ _wrap_FXPoint___add____SWIG_0(int argc, VALUE *argv, VALUE self) {
6099
6181
  }
6100
6182
  arg2 = reinterpret_cast< FXPoint * >(argp2);
6101
6183
  result = FXPoint_operator_Sa___SWIG_0((FXPoint const *)arg1,(FXPoint const &)*arg2);
6102
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6184
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6103
6185
  return vresult;
6104
6186
  fail:
6105
6187
  return Qnil;
@@ -6112,7 +6194,7 @@ _wrap_FXPoint___add____SWIG_1(int argc, VALUE *argv, VALUE self) {
6112
6194
  FXSize *arg2 = 0 ;
6113
6195
  void *argp1 = 0 ;
6114
6196
  int res1 = 0 ;
6115
- void *argp2 ;
6197
+ void *argp2 = 0 ;
6116
6198
  int res2 = 0 ;
6117
6199
  FXPoint result;
6118
6200
  VALUE vresult = Qnil;
@@ -6134,7 +6216,7 @@ _wrap_FXPoint___add____SWIG_1(int argc, VALUE *argv, VALUE self) {
6134
6216
  }
6135
6217
  arg2 = reinterpret_cast< FXSize * >(argp2);
6136
6218
  result = FXPoint_operator_Sa___SWIG_1((FXPoint const *)arg1,(FXSize const &)*arg2);
6137
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6219
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6138
6220
  return vresult;
6139
6221
  fail:
6140
6222
  return Qnil;
@@ -6153,7 +6235,7 @@ SWIGINTERN VALUE _wrap_FXPoint___add__(int nargs, VALUE *args, VALUE self) {
6153
6235
  argv[ii] = args[ii-1];
6154
6236
  }
6155
6237
  if (argc == 2) {
6156
- int _v;
6238
+ int _v = 0;
6157
6239
  void *vptr = 0;
6158
6240
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, 0);
6159
6241
  _v = SWIG_CheckState(res);
@@ -6167,7 +6249,7 @@ SWIGINTERN VALUE _wrap_FXPoint___add__(int nargs, VALUE *args, VALUE self) {
6167
6249
  }
6168
6250
  }
6169
6251
  if (argc == 2) {
6170
- int _v;
6252
+ int _v = 0;
6171
6253
  void *vptr = 0;
6172
6254
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, 0);
6173
6255
  _v = SWIG_CheckState(res);
@@ -6197,7 +6279,7 @@ fail:
6197
6279
  -(p) -> FXPoint
6198
6280
  -(s) -> FXPoint
6199
6281
 
6200
- Substraction operator.
6282
+ Subtraction operator.
6201
6283
  */
6202
6284
  SWIGINTERN VALUE
6203
6285
  _wrap_FXPoint___sub____SWIG_0(int argc, VALUE *argv, VALUE self) {
@@ -6205,7 +6287,7 @@ _wrap_FXPoint___sub____SWIG_0(int argc, VALUE *argv, VALUE self) {
6205
6287
  FXPoint *arg2 = 0 ;
6206
6288
  void *argp1 = 0 ;
6207
6289
  int res1 = 0 ;
6208
- void *argp2 ;
6290
+ void *argp2 = 0 ;
6209
6291
  int res2 = 0 ;
6210
6292
  FXPoint result;
6211
6293
  VALUE vresult = Qnil;
@@ -6227,7 +6309,7 @@ _wrap_FXPoint___sub____SWIG_0(int argc, VALUE *argv, VALUE self) {
6227
6309
  }
6228
6310
  arg2 = reinterpret_cast< FXPoint * >(argp2);
6229
6311
  result = FXPoint_operator_Ss___SWIG_0((FXPoint const *)arg1,(FXPoint const &)*arg2);
6230
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6312
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6231
6313
  return vresult;
6232
6314
  fail:
6233
6315
  return Qnil;
@@ -6240,7 +6322,7 @@ _wrap_FXPoint___sub____SWIG_1(int argc, VALUE *argv, VALUE self) {
6240
6322
  FXSize *arg2 = 0 ;
6241
6323
  void *argp1 = 0 ;
6242
6324
  int res1 = 0 ;
6243
- void *argp2 ;
6325
+ void *argp2 = 0 ;
6244
6326
  int res2 = 0 ;
6245
6327
  FXPoint result;
6246
6328
  VALUE vresult = Qnil;
@@ -6262,7 +6344,7 @@ _wrap_FXPoint___sub____SWIG_1(int argc, VALUE *argv, VALUE self) {
6262
6344
  }
6263
6345
  arg2 = reinterpret_cast< FXSize * >(argp2);
6264
6346
  result = FXPoint_operator_Ss___SWIG_1((FXPoint const *)arg1,(FXSize const &)*arg2);
6265
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6347
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6266
6348
  return vresult;
6267
6349
  fail:
6268
6350
  return Qnil;
@@ -6281,7 +6363,7 @@ SWIGINTERN VALUE _wrap_FXPoint___sub__(int nargs, VALUE *args, VALUE self) {
6281
6363
  argv[ii] = args[ii-1];
6282
6364
  }
6283
6365
  if (argc == 2) {
6284
- int _v;
6366
+ int _v = 0;
6285
6367
  void *vptr = 0;
6286
6368
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, 0);
6287
6369
  _v = SWIG_CheckState(res);
@@ -6295,7 +6377,7 @@ SWIGINTERN VALUE _wrap_FXPoint___sub__(int nargs, VALUE *args, VALUE self) {
6295
6377
  }
6296
6378
  }
6297
6379
  if (argc == 2) {
6298
- int _v;
6380
+ int _v = 0;
6299
6381
  void *vptr = 0;
6300
6382
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, 0);
6301
6383
  _v = SWIG_CheckState(res);
@@ -6337,7 +6419,7 @@ _wrap_FXPoint___mul__(int argc, VALUE *argv, VALUE self) {
6337
6419
  arg1 = reinterpret_cast< FXPoint * >(argp1);
6338
6420
  arg2 = NUM2INT(argv[0]);
6339
6421
  result = FXPoint_operator_Sm_((FXPoint const *)arg1,arg2);
6340
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6422
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6341
6423
  return vresult;
6342
6424
  fail:
6343
6425
  return Qnil;
@@ -6363,7 +6445,7 @@ _wrap_FXPoint___div__(int argc, VALUE *argv, VALUE self) {
6363
6445
  arg1 = reinterpret_cast< FXPoint * >(argp1);
6364
6446
  arg2 = NUM2INT(argv[0]);
6365
6447
  result = FXPoint_operator_Sd_((FXPoint const *)arg1,arg2);
6366
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6448
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
6367
6449
  return vresult;
6368
6450
  fail:
6369
6451
  return Qnil;
@@ -6612,9 +6694,9 @@ SWIGINTERN VALUE
6612
6694
  _wrap_new_FXRectangle__SWIG_2(int argc, VALUE *argv, VALUE self) {
6613
6695
  FXPoint *arg1 = 0 ;
6614
6696
  FXSize *arg2 = 0 ;
6615
- void *argp1 ;
6697
+ void *argp1 = 0 ;
6616
6698
  int res1 = 0 ;
6617
- void *argp2 ;
6699
+ void *argp2 = 0 ;
6618
6700
  int res2 = 0 ;
6619
6701
  FXRectangle *result = 0 ;
6620
6702
 
@@ -6669,9 +6751,9 @@ SWIGINTERN VALUE
6669
6751
  _wrap_new_FXRectangle__SWIG_3(int argc, VALUE *argv, VALUE self) {
6670
6752
  FXPoint *arg1 = 0 ;
6671
6753
  FXPoint *arg2 = 0 ;
6672
- void *argp1 ;
6754
+ void *argp1 = 0 ;
6673
6755
  int res1 = 0 ;
6674
- void *argp2 ;
6756
+ void *argp2 = 0 ;
6675
6757
  int res2 = 0 ;
6676
6758
  FXRectangle *result = 0 ;
6677
6759
 
@@ -6721,7 +6803,7 @@ SWIGINTERN VALUE _wrap_new_FXRectangle(int nargs, VALUE *args, VALUE self) {
6721
6803
  return _wrap_new_FXRectangle__SWIG_0(nargs, args, self);
6722
6804
  }
6723
6805
  if (argc == 2) {
6724
- int _v;
6806
+ int _v = 0;
6725
6807
  void *vptr = 0;
6726
6808
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, SWIG_POINTER_NO_NULL);
6727
6809
  _v = SWIG_CheckState(res);
@@ -6735,7 +6817,7 @@ SWIGINTERN VALUE _wrap_new_FXRectangle(int nargs, VALUE *args, VALUE self) {
6735
6817
  }
6736
6818
  }
6737
6819
  if (argc == 2) {
6738
- int _v;
6820
+ int _v = 0;
6739
6821
  void *vptr = 0;
6740
6822
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPoint, SWIG_POINTER_NO_NULL);
6741
6823
  _v = SWIG_CheckState(res);
@@ -6749,7 +6831,7 @@ SWIGINTERN VALUE _wrap_new_FXRectangle(int nargs, VALUE *args, VALUE self) {
6749
6831
  }
6750
6832
  }
6751
6833
  if (argc == 4) {
6752
- int _v;
6834
+ int _v = 0;
6753
6835
  {
6754
6836
  _v = (TYPE(argv[0]) == T_FIXNUM || TYPE(argv[0]) == T_BIGNUM) ? 1 : 0;
6755
6837
  }
@@ -6798,7 +6880,7 @@ _wrap_FXRectangle___eq__(int argc, VALUE *argv, VALUE self) {
6798
6880
  FXRectangle *arg2 = 0 ;
6799
6881
  void *argp1 = 0 ;
6800
6882
  int res1 = 0 ;
6801
- void *argp2 ;
6883
+ void *argp2 = 0 ;
6802
6884
  int res2 = 0 ;
6803
6885
  bool result;
6804
6886
  VALUE vresult = Qnil;
@@ -6833,7 +6915,7 @@ _wrap_FXRectangle_containsq_____SWIG_0(int argc, VALUE *argv, VALUE self) {
6833
6915
  FXPoint *arg2 = 0 ;
6834
6916
  void *argp1 = 0 ;
6835
6917
  int res1 = 0 ;
6836
- void *argp2 ;
6918
+ void *argp2 = 0 ;
6837
6919
  int res2 = 0 ;
6838
6920
  bool result;
6839
6921
  VALUE vresult = Qnil;
@@ -6896,7 +6978,7 @@ _wrap_FXRectangle_containsq_____SWIG_2(int argc, VALUE *argv, VALUE self) {
6896
6978
  FXRectangle *arg2 = 0 ;
6897
6979
  void *argp1 = 0 ;
6898
6980
  int res1 = 0 ;
6899
- void *argp2 ;
6981
+ void *argp2 = 0 ;
6900
6982
  int res2 = 0 ;
6901
6983
  bool result;
6902
6984
  VALUE vresult = Qnil;
@@ -6937,7 +7019,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_containsq___(int nargs, VALUE *args, VALUE se
6937
7019
  argv[ii] = args[ii-1];
6938
7020
  }
6939
7021
  if (argc == 2) {
6940
- int _v;
7022
+ int _v = 0;
6941
7023
  void *vptr = 0;
6942
7024
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
6943
7025
  _v = SWIG_CheckState(res);
@@ -6951,7 +7033,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_containsq___(int nargs, VALUE *args, VALUE se
6951
7033
  }
6952
7034
  }
6953
7035
  if (argc == 2) {
6954
- int _v;
7036
+ int _v = 0;
6955
7037
  void *vptr = 0;
6956
7038
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
6957
7039
  _v = SWIG_CheckState(res);
@@ -6965,7 +7047,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_containsq___(int nargs, VALUE *args, VALUE se
6965
7047
  }
6966
7048
  }
6967
7049
  if (argc == 3) {
6968
- int _v;
7050
+ int _v = 0;
6969
7051
  void *vptr = 0;
6970
7052
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
6971
7053
  _v = SWIG_CheckState(res);
@@ -7000,7 +7082,7 @@ _wrap_FXRectangle_overlapsq___(int argc, VALUE *argv, VALUE self) {
7000
7082
  FXRectangle *arg2 = 0 ;
7001
7083
  void *argp1 = 0 ;
7002
7084
  int res1 = 0 ;
7003
- void *argp2 ;
7085
+ void *argp2 = 0 ;
7004
7086
  int res2 = 0 ;
7005
7087
  bool result;
7006
7088
  VALUE vresult = Qnil;
@@ -7035,7 +7117,7 @@ _wrap_FXRectangle_moveN_____SWIG_0(int argc, VALUE *argv, VALUE self) {
7035
7117
  FXPoint *arg2 = 0 ;
7036
7118
  void *argp1 = 0 ;
7037
7119
  int res1 = 0 ;
7038
- void *argp2 ;
7120
+ void *argp2 = 0 ;
7039
7121
  int res2 = 0 ;
7040
7122
  FXRectangle *result = 0 ;
7041
7123
  VALUE vresult = Qnil;
@@ -7104,7 +7186,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_moveN___(int nargs, VALUE *args, VALUE self)
7104
7186
  argv[ii] = args[ii-1];
7105
7187
  }
7106
7188
  if (argc == 2) {
7107
- int _v;
7189
+ int _v = 0;
7108
7190
  void *vptr = 0;
7109
7191
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7110
7192
  _v = SWIG_CheckState(res);
@@ -7118,7 +7200,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_moveN___(int nargs, VALUE *args, VALUE self)
7118
7200
  }
7119
7201
  }
7120
7202
  if (argc == 3) {
7121
- int _v;
7203
+ int _v = 0;
7122
7204
  void *vptr = 0;
7123
7205
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7124
7206
  _v = SWIG_CheckState(res);
@@ -7244,7 +7326,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_growN___(int nargs, VALUE *args, VALUE self)
7244
7326
  argv[ii] = args[ii-1];
7245
7327
  }
7246
7328
  if (argc == 2) {
7247
- int _v;
7329
+ int _v = 0;
7248
7330
  void *vptr = 0;
7249
7331
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7250
7332
  _v = SWIG_CheckState(res);
@@ -7258,7 +7340,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_growN___(int nargs, VALUE *args, VALUE self)
7258
7340
  }
7259
7341
  }
7260
7342
  if (argc == 3) {
7261
- int _v;
7343
+ int _v = 0;
7262
7344
  void *vptr = 0;
7263
7345
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7264
7346
  _v = SWIG_CheckState(res);
@@ -7277,7 +7359,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_growN___(int nargs, VALUE *args, VALUE self)
7277
7359
  }
7278
7360
  }
7279
7361
  if (argc == 5) {
7280
- int _v;
7362
+ int _v = 0;
7281
7363
  void *vptr = 0;
7282
7364
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7283
7365
  _v = SWIG_CheckState(res);
@@ -7414,7 +7496,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_shrinkN___(int nargs, VALUE *args, VALUE self
7414
7496
  argv[ii] = args[ii-1];
7415
7497
  }
7416
7498
  if (argc == 2) {
7417
- int _v;
7499
+ int _v = 0;
7418
7500
  void *vptr = 0;
7419
7501
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7420
7502
  _v = SWIG_CheckState(res);
@@ -7428,7 +7510,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_shrinkN___(int nargs, VALUE *args, VALUE self
7428
7510
  }
7429
7511
  }
7430
7512
  if (argc == 3) {
7431
- int _v;
7513
+ int _v = 0;
7432
7514
  void *vptr = 0;
7433
7515
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7434
7516
  _v = SWIG_CheckState(res);
@@ -7447,7 +7529,7 @@ SWIGINTERN VALUE _wrap_FXRectangle_shrinkN___(int nargs, VALUE *args, VALUE self
7447
7529
  }
7448
7530
  }
7449
7531
  if (argc == 5) {
7450
- int _v;
7532
+ int _v = 0;
7451
7533
  void *vptr = 0;
7452
7534
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, 0);
7453
7535
  _v = SWIG_CheckState(res);
@@ -7503,7 +7585,7 @@ _wrap_FXRectangle_tl(int argc, VALUE *argv, VALUE self) {
7503
7585
  }
7504
7586
  arg1 = reinterpret_cast< FXRectangle * >(argp1);
7505
7587
  result = ((FXRectangle const *)arg1)->tl();
7506
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7588
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7507
7589
  return vresult;
7508
7590
  fail:
7509
7591
  return Qnil;
@@ -7527,7 +7609,7 @@ _wrap_FXRectangle_tr(int argc, VALUE *argv, VALUE self) {
7527
7609
  }
7528
7610
  arg1 = reinterpret_cast< FXRectangle * >(argp1);
7529
7611
  result = ((FXRectangle const *)arg1)->tr();
7530
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7612
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7531
7613
  return vresult;
7532
7614
  fail:
7533
7615
  return Qnil;
@@ -7551,7 +7633,7 @@ _wrap_FXRectangle_bl(int argc, VALUE *argv, VALUE self) {
7551
7633
  }
7552
7634
  arg1 = reinterpret_cast< FXRectangle * >(argp1);
7553
7635
  result = ((FXRectangle const *)arg1)->bl();
7554
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7636
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7555
7637
  return vresult;
7556
7638
  fail:
7557
7639
  return Qnil;
@@ -7575,7 +7657,7 @@ _wrap_FXRectangle_br(int argc, VALUE *argv, VALUE self) {
7575
7657
  }
7576
7658
  arg1 = reinterpret_cast< FXRectangle * >(argp1);
7577
7659
  result = ((FXRectangle const *)arg1)->br();
7578
- vresult = SWIG_NewPointerObj((new FXPoint(static_cast< const FXPoint& >(result))), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7660
+ vresult = SWIG_NewPointerObj((new FXPoint(result)), SWIGTYPE_p_FXPoint, SWIG_POINTER_OWN | 0 );
7579
7661
  return vresult;
7580
7662
  fail:
7581
7663
  return Qnil;
@@ -7596,7 +7678,7 @@ _wrap_FXRectangle___add__(int argc, VALUE *argv, VALUE self) {
7596
7678
  FXRectangle *arg2 = 0 ;
7597
7679
  void *argp1 = 0 ;
7598
7680
  int res1 = 0 ;
7599
- void *argp2 ;
7681
+ void *argp2 = 0 ;
7600
7682
  int res2 = 0 ;
7601
7683
  FXRectangle result;
7602
7684
  VALUE vresult = Qnil;
@@ -7634,7 +7716,7 @@ _wrap_FXRectangle___mul__(int argc, VALUE *argv, VALUE self) {
7634
7716
  FXRectangle *arg2 = 0 ;
7635
7717
  void *argp1 = 0 ;
7636
7718
  int res1 = 0 ;
7637
- void *argp2 ;
7719
+ void *argp2 = 0 ;
7638
7720
  int res2 = 0 ;
7639
7721
  FXRectangle result;
7640
7722
  VALUE vresult = Qnil;
@@ -7691,7 +7773,7 @@ fail:
7691
7773
  SWIGINTERN VALUE
7692
7774
  _wrap_new_FXRegion__SWIG_1(int argc, VALUE *argv, VALUE self) {
7693
7775
  FXRegion *arg1 = 0 ;
7694
- void *argp1 ;
7776
+ void *argp1 = 0 ;
7695
7777
  int res1 = 0 ;
7696
7778
  FXRegion *result = 0 ;
7697
7779
 
@@ -7722,7 +7804,7 @@ fail:
7722
7804
  SWIGINTERN VALUE
7723
7805
  _wrap_new_FXRegion__SWIG_2(int argc, VALUE *argv, VALUE self) {
7724
7806
  FXRectangle *arg1 = 0 ;
7725
- void *argp1 ;
7807
+ void *argp1 = 0 ;
7726
7808
  int res1 = 0 ;
7727
7809
  FXRegion *result = 0 ;
7728
7810
 
@@ -7855,7 +7937,7 @@ SWIGINTERN VALUE _wrap_new_FXRegion(int nargs, VALUE *args, VALUE self) {
7855
7937
  return _wrap_new_FXRegion__SWIG_0(nargs, args, self);
7856
7938
  }
7857
7939
  if (argc == 1) {
7858
- int _v;
7940
+ int _v = 0;
7859
7941
  void *vptr = 0;
7860
7942
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRegion, SWIG_POINTER_NO_NULL);
7861
7943
  _v = SWIG_CheckState(res);
@@ -7864,7 +7946,7 @@ SWIGINTERN VALUE _wrap_new_FXRegion(int nargs, VALUE *args, VALUE self) {
7864
7946
  }
7865
7947
  }
7866
7948
  if (argc == 1) {
7867
- int _v;
7949
+ int _v = 0;
7868
7950
  void *vptr = 0;
7869
7951
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRectangle, SWIG_POINTER_NO_NULL);
7870
7952
  _v = SWIG_CheckState(res);
@@ -7873,7 +7955,7 @@ SWIGINTERN VALUE _wrap_new_FXRegion(int nargs, VALUE *args, VALUE self) {
7873
7955
  }
7874
7956
  }
7875
7957
  if ((argc >= 1) && (argc <= 2)) {
7876
- int _v;
7958
+ int _v = 0;
7877
7959
  {
7878
7960
  _v = (TYPE(argv[0]) == T_ARRAY) ? 1 : 0;
7879
7961
  }
@@ -7891,7 +7973,7 @@ SWIGINTERN VALUE _wrap_new_FXRegion(int nargs, VALUE *args, VALUE self) {
7891
7973
  }
7892
7974
  }
7893
7975
  if (argc == 4) {
7894
- int _v;
7976
+ int _v = 0;
7895
7977
  {
7896
7978
  _v = (TYPE(argv[0]) == T_FIXNUM || TYPE(argv[0]) == T_BIGNUM) ? 1 : 0;
7897
7979
  }
@@ -8031,7 +8113,7 @@ SWIGINTERN VALUE _wrap_FXRegion_containsq___(int nargs, VALUE *args, VALUE self)
8031
8113
  argv[ii] = args[ii-1];
8032
8114
  }
8033
8115
  if (argc == 3) {
8034
- int _v;
8116
+ int _v = 0;
8035
8117
  void *vptr = 0;
8036
8118
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRegion, 0);
8037
8119
  _v = SWIG_CheckState(res);
@@ -8050,7 +8132,7 @@ SWIGINTERN VALUE _wrap_FXRegion_containsq___(int nargs, VALUE *args, VALUE self)
8050
8132
  }
8051
8133
  }
8052
8134
  if (argc == 5) {
8053
- int _v;
8135
+ int _v = 0;
8054
8136
  void *vptr = 0;
8055
8137
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRegion, 0);
8056
8138
  _v = SWIG_CheckState(res);
@@ -8157,7 +8239,7 @@ _wrap_FXRegion___add__(int argc, VALUE *argv, VALUE self) {
8157
8239
  FXRegion *arg2 = 0 ;
8158
8240
  void *argp1 = 0 ;
8159
8241
  int res1 = 0 ;
8160
- void *argp2 ;
8242
+ void *argp2 = 0 ;
8161
8243
  int res2 = 0 ;
8162
8244
  FXRegion result;
8163
8245
  VALUE vresult = Qnil;
@@ -8195,7 +8277,7 @@ _wrap_FXRegion___mul__(int argc, VALUE *argv, VALUE self) {
8195
8277
  FXRegion *arg2 = 0 ;
8196
8278
  void *argp1 = 0 ;
8197
8279
  int res1 = 0 ;
8198
- void *argp2 ;
8280
+ void *argp2 = 0 ;
8199
8281
  int res2 = 0 ;
8200
8282
  FXRegion result;
8201
8283
  VALUE vresult = Qnil;
@@ -8233,7 +8315,7 @@ fail:
8233
8315
  call-seq:
8234
8316
  -(other) -> FXRegion
8235
8317
 
8236
- Substraction operator.
8318
+ Subtraction operator.
8237
8319
  */
8238
8320
  SWIGINTERN VALUE
8239
8321
  _wrap_FXRegion___sub__(int argc, VALUE *argv, VALUE self) {
@@ -8241,7 +8323,7 @@ _wrap_FXRegion___sub__(int argc, VALUE *argv, VALUE self) {
8241
8323
  FXRegion *arg2 = 0 ;
8242
8324
  void *argp1 = 0 ;
8243
8325
  int res1 = 0 ;
8244
- void *argp2 ;
8326
+ void *argp2 = 0 ;
8245
8327
  int res2 = 0 ;
8246
8328
  FXRegion result;
8247
8329
  VALUE vresult = Qnil;
@@ -8287,7 +8369,7 @@ _wrap_FXRegion___xor__(int argc, VALUE *argv, VALUE self) {
8287
8369
  FXRegion *arg2 = 0 ;
8288
8370
  void *argp1 = 0 ;
8289
8371
  int res1 = 0 ;
8290
- void *argp2 ;
8372
+ void *argp2 = 0 ;
8291
8373
  int res2 = 0 ;
8292
8374
  FXRegion result;
8293
8375
  VALUE vresult = Qnil;
@@ -8333,7 +8415,7 @@ _wrap_FXRegion___eq__(int argc, VALUE *argv, VALUE self) {
8333
8415
  FXRegion *arg2 = 0 ;
8334
8416
  void *argp1 = 0 ;
8335
8417
  int res1 = 0 ;
8336
- void *argp2 ;
8418
+ void *argp2 = 0 ;
8337
8419
  int res2 = 0 ;
8338
8420
  bool result;
8339
8421
  VALUE vresult = Qnil;
@@ -11353,7 +11435,7 @@ SWIGINTERN VALUE _wrap_FXApp_stopModal(int nargs, VALUE *args, VALUE self) {
11353
11435
  argv[ii] = args[ii-1];
11354
11436
  }
11355
11437
  if ((argc >= 1) && (argc <= 2)) {
11356
- int _v;
11438
+ int _v = 0;
11357
11439
  void *vptr = 0;
11358
11440
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
11359
11441
  _v = SWIG_CheckState(res);
@@ -11370,7 +11452,7 @@ SWIGINTERN VALUE _wrap_FXApp_stopModal(int nargs, VALUE *args, VALUE self) {
11370
11452
  }
11371
11453
  }
11372
11454
  if ((argc >= 2) && (argc <= 3)) {
11373
- int _v;
11455
+ int _v = 0;
11374
11456
  void *vptr = 0;
11375
11457
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
11376
11458
  _v = SWIG_CheckState(res);
@@ -15851,7 +15933,7 @@ SWIGINTERN VALUE _wrap_new_FXFileDict(int nargs, VALUE *args, VALUE self) {
15851
15933
  argv[ii] = args[ii];
15852
15934
  }
15853
15935
  if (argc == 1) {
15854
- int _v;
15936
+ int _v = 0;
15855
15937
  void *vptr = 0;
15856
15938
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
15857
15939
  _v = SWIG_CheckState(res);
@@ -15860,7 +15942,7 @@ SWIGINTERN VALUE _wrap_new_FXFileDict(int nargs, VALUE *args, VALUE self) {
15860
15942
  }
15861
15943
  }
15862
15944
  if (argc == 2) {
15863
- int _v;
15945
+ int _v = 0;
15864
15946
  void *vptr = 0;
15865
15947
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
15866
15948
  _v = SWIG_CheckState(res);
@@ -18410,7 +18492,7 @@ SWIGINTERN VALUE _wrap_new_FXRecentFiles(int nargs, VALUE *args, VALUE self) {
18410
18492
  return _wrap_new_FXRecentFiles__SWIG_0(nargs, args, self);
18411
18493
  }
18412
18494
  if (argc == 1) {
18413
- int _v;
18495
+ int _v = 0;
18414
18496
  void *vptr = 0;
18415
18497
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
18416
18498
  _v = SWIG_CheckState(res);
@@ -18419,7 +18501,7 @@ SWIGINTERN VALUE _wrap_new_FXRecentFiles(int nargs, VALUE *args, VALUE self) {
18419
18501
  }
18420
18502
  }
18421
18503
  if ((argc >= 2) && (argc <= 4)) {
18422
- int _v;
18504
+ int _v = 0;
18423
18505
  void *vptr = 0;
18424
18506
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
18425
18507
  _v = SWIG_CheckState(res);
@@ -19313,7 +19395,7 @@ SWIGINTERN VALUE _wrap_new_FXCursor(int nargs, VALUE *args, VALUE self) {
19313
19395
  argv[ii] = args[ii];
19314
19396
  }
19315
19397
  if ((argc >= 1) && (argc <= 2)) {
19316
- int _v;
19398
+ int _v = 0;
19317
19399
  void *vptr = 0;
19318
19400
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
19319
19401
  _v = SWIG_CheckState(res);
@@ -19331,7 +19413,7 @@ SWIGINTERN VALUE _wrap_new_FXCursor(int nargs, VALUE *args, VALUE self) {
19331
19413
  }
19332
19414
  }
19333
19415
  if ((argc >= 2) && (argc <= 6)) {
19334
- int _v;
19416
+ int _v = 0;
19335
19417
  void *vptr = 0;
19336
19418
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
19337
19419
  _v = SWIG_CheckState(res);
@@ -19377,7 +19459,7 @@ SWIGINTERN VALUE _wrap_new_FXCursor(int nargs, VALUE *args, VALUE self) {
19377
19459
  }
19378
19460
  }
19379
19461
  if ((argc >= 3) && (argc <= 7)) {
19380
- int _v;
19462
+ int _v = 0;
19381
19463
  void *vptr = 0;
19382
19464
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
19383
19465
  _v = SWIG_CheckState(res);
@@ -21257,7 +21339,7 @@ fail:
21257
21339
  SWIGINTERN VALUE
21258
21340
  _wrap_FXFontDesc_face_set(int argc, VALUE *argv, VALUE self) {
21259
21341
  FXFontDesc *arg1 = (FXFontDesc *) 0 ;
21260
- FXchar *arg2 ;
21342
+ FXchar *arg2 = (FXchar *) (FXchar *)0 ;
21261
21343
  void *argp1 = 0 ;
21262
21344
  int res1 = 0 ;
21263
21345
  char temp2[116] ;
@@ -21729,7 +21811,7 @@ _wrap_new_FXFont__SWIG_2(int argc, VALUE *argv, VALUE self) {
21729
21811
  FXFontDesc *arg2 = 0 ;
21730
21812
  void *argp1 = 0 ;
21731
21813
  int res1 = 0 ;
21732
- void *argp2 ;
21814
+ void *argp2 = 0 ;
21733
21815
  int res2 = 0 ;
21734
21816
  FXFont *result = 0 ;
21735
21817
 
@@ -21778,7 +21860,7 @@ SWIGINTERN VALUE _wrap_new_FXFont(int nargs, VALUE *args, VALUE self) {
21778
21860
  argv[ii] = args[ii];
21779
21861
  }
21780
21862
  if (argc == 2) {
21781
- int _v;
21863
+ int _v = 0;
21782
21864
  void *vptr = 0;
21783
21865
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21784
21866
  _v = SWIG_CheckState(res);
@@ -21792,7 +21874,7 @@ SWIGINTERN VALUE _wrap_new_FXFont(int nargs, VALUE *args, VALUE self) {
21792
21874
  }
21793
21875
  }
21794
21876
  if (argc == 2) {
21795
- int _v;
21877
+ int _v = 0;
21796
21878
  void *vptr = 0;
21797
21879
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21798
21880
  _v = SWIG_CheckState(res);
@@ -21806,7 +21888,7 @@ SWIGINTERN VALUE _wrap_new_FXFont(int nargs, VALUE *args, VALUE self) {
21806
21888
  }
21807
21889
  }
21808
21890
  if ((argc >= 3) && (argc <= 8)) {
21809
- int _v;
21891
+ int _v = 0;
21810
21892
  void *vptr = 0;
21811
21893
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
21812
21894
  _v = SWIG_CheckState(res);
@@ -22506,7 +22588,7 @@ _wrap_FXFont_setFontDesc(int argc, VALUE *argv, VALUE self) {
22506
22588
  FXFontDesc *arg2 = 0 ;
22507
22589
  void *argp1 = 0 ;
22508
22590
  int res1 = 0 ;
22509
- void *argp2 ;
22591
+ void *argp2 = 0 ;
22510
22592
  int res2 = 0 ;
22511
22593
 
22512
22594
  if ((argc < 1) || (argc > 1)) {
@@ -25290,7 +25372,7 @@ SWIGINTERN VALUE _wrap_new_FXWindow(int nargs, VALUE *args, VALUE self) {
25290
25372
  argv[ii] = args[ii];
25291
25373
  }
25292
25374
  if ((argc >= 1) && (argc <= 6)) {
25293
- int _v;
25375
+ int _v = 0;
25294
25376
  void *vptr = 0;
25295
25377
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
25296
25378
  _v = SWIG_CheckState(res);
@@ -25339,7 +25421,7 @@ SWIGINTERN VALUE _wrap_new_FXWindow(int nargs, VALUE *args, VALUE self) {
25339
25421
  }
25340
25422
  }
25341
25423
  if (argc == 2) {
25342
- int _v;
25424
+ int _v = 0;
25343
25425
  void *vptr = 0;
25344
25426
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
25345
25427
  _v = SWIG_CheckState(res);
@@ -25353,7 +25435,7 @@ SWIGINTERN VALUE _wrap_new_FXWindow(int nargs, VALUE *args, VALUE self) {
25353
25435
  }
25354
25436
  }
25355
25437
  if (argc == 7) {
25356
- int _v;
25438
+ int _v = 0;
25357
25439
  void *vptr = 0;
25358
25440
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
25359
25441
  _v = SWIG_CheckState(res);
@@ -27089,7 +27171,7 @@ SWIGINTERN VALUE _wrap_FXWindow_update(int nargs, VALUE *args, VALUE self) {
27089
27171
  argv[ii] = args[ii-1];
27090
27172
  }
27091
27173
  if (argc == 1) {
27092
- int _v;
27174
+ int _v = 0;
27093
27175
  void *vptr = 0;
27094
27176
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
27095
27177
  _v = SWIG_CheckState(res);
@@ -27098,7 +27180,7 @@ SWIGINTERN VALUE _wrap_FXWindow_update(int nargs, VALUE *args, VALUE self) {
27098
27180
  }
27099
27181
  }
27100
27182
  if (argc == 5) {
27101
- int _v;
27183
+ int _v = 0;
27102
27184
  void *vptr = 0;
27103
27185
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
27104
27186
  _v = SWIG_CheckState(res);
@@ -27198,7 +27280,7 @@ SWIGINTERN VALUE _wrap_FXWindow_repaint(int nargs, VALUE *args, VALUE self) {
27198
27280
  argv[ii] = args[ii-1];
27199
27281
  }
27200
27282
  if (argc == 1) {
27201
- int _v;
27283
+ int _v = 0;
27202
27284
  void *vptr = 0;
27203
27285
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
27204
27286
  _v = SWIG_CheckState(res);
@@ -27207,7 +27289,7 @@ SWIGINTERN VALUE _wrap_FXWindow_repaint(int nargs, VALUE *args, VALUE self) {
27207
27289
  }
27208
27290
  }
27209
27291
  if (argc == 5) {
27210
- int _v;
27292
+ int _v = 0;
27211
27293
  void *vptr = 0;
27212
27294
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
27213
27295
  _v = SWIG_CheckState(res);
@@ -28968,7 +29050,7 @@ _wrap_FXWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
28968
29050
  FXRegion *arg2 = 0 ;
28969
29051
  void *argp1 = 0 ;
28970
29052
  int res1 = 0 ;
28971
- void *argp2 ;
29053
+ void *argp2 = 0 ;
28972
29054
  int res2 = 0 ;
28973
29055
 
28974
29056
  if ((argc < 1) || (argc > 1)) {
@@ -29064,7 +29146,7 @@ SWIGINTERN VALUE _wrap_FXWindow_setShape(int nargs, VALUE *args, VALUE self) {
29064
29146
  argv[ii] = args[ii-1];
29065
29147
  }
29066
29148
  if (argc == 2) {
29067
- int _v;
29149
+ int _v = 0;
29068
29150
  void *vptr = 0;
29069
29151
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
29070
29152
  _v = SWIG_CheckState(res);
@@ -29078,7 +29160,7 @@ SWIGINTERN VALUE _wrap_FXWindow_setShape(int nargs, VALUE *args, VALUE self) {
29078
29160
  }
29079
29161
  }
29080
29162
  if (argc == 2) {
29081
- int _v;
29163
+ int _v = 0;
29082
29164
  void *vptr = 0;
29083
29165
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
29084
29166
  _v = SWIG_CheckState(res);
@@ -29092,7 +29174,7 @@ SWIGINTERN VALUE _wrap_FXWindow_setShape(int nargs, VALUE *args, VALUE self) {
29092
29174
  }
29093
29175
  }
29094
29176
  if (argc == 2) {
29095
- int _v;
29177
+ int _v = 0;
29096
29178
  void *vptr = 0;
29097
29179
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
29098
29180
  _v = SWIG_CheckState(res);
@@ -30514,7 +30596,7 @@ _wrap_FXFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
30514
30596
  FXRegion *arg2 = 0 ;
30515
30597
  void *argp1 = 0 ;
30516
30598
  int res1 = 0 ;
30517
- void *argp2 ;
30599
+ void *argp2 = 0 ;
30518
30600
  int res2 = 0 ;
30519
30601
 
30520
30602
  if ((argc < 1) || (argc > 1)) {
@@ -30610,7 +30692,7 @@ SWIGINTERN VALUE _wrap_FXFrame_setShape(int nargs, VALUE *args, VALUE self) {
30610
30692
  argv[ii] = args[ii-1];
30611
30693
  }
30612
30694
  if (argc == 2) {
30613
- int _v;
30695
+ int _v = 0;
30614
30696
  void *vptr = 0;
30615
30697
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFrame, 0);
30616
30698
  _v = SWIG_CheckState(res);
@@ -30624,7 +30706,7 @@ SWIGINTERN VALUE _wrap_FXFrame_setShape(int nargs, VALUE *args, VALUE self) {
30624
30706
  }
30625
30707
  }
30626
30708
  if (argc == 2) {
30627
- int _v;
30709
+ int _v = 0;
30628
30710
  void *vptr = 0;
30629
30711
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFrame, 0);
30630
30712
  _v = SWIG_CheckState(res);
@@ -30638,7 +30720,7 @@ SWIGINTERN VALUE _wrap_FXFrame_setShape(int nargs, VALUE *args, VALUE self) {
30638
30720
  }
30639
30721
  }
30640
30722
  if (argc == 2) {
30641
- int _v;
30723
+ int _v = 0;
30642
30724
  void *vptr = 0;
30643
30725
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXFrame, 0);
30644
30726
  _v = SWIG_CheckState(res);
@@ -31789,7 +31871,7 @@ _wrap_FXComposite_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
31789
31871
  FXRegion *arg2 = 0 ;
31790
31872
  void *argp1 = 0 ;
31791
31873
  int res1 = 0 ;
31792
- void *argp2 ;
31874
+ void *argp2 = 0 ;
31793
31875
  int res2 = 0 ;
31794
31876
 
31795
31877
  if ((argc < 1) || (argc > 1)) {
@@ -31885,7 +31967,7 @@ SWIGINTERN VALUE _wrap_FXComposite_setShape(int nargs, VALUE *args, VALUE self)
31885
31967
  argv[ii] = args[ii-1];
31886
31968
  }
31887
31969
  if (argc == 2) {
31888
- int _v;
31970
+ int _v = 0;
31889
31971
  void *vptr = 0;
31890
31972
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
31891
31973
  _v = SWIG_CheckState(res);
@@ -31899,7 +31981,7 @@ SWIGINTERN VALUE _wrap_FXComposite_setShape(int nargs, VALUE *args, VALUE self)
31899
31981
  }
31900
31982
  }
31901
31983
  if (argc == 2) {
31902
- int _v;
31984
+ int _v = 0;
31903
31985
  void *vptr = 0;
31904
31986
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
31905
31987
  _v = SWIG_CheckState(res);
@@ -31913,7 +31995,7 @@ SWIGINTERN VALUE _wrap_FXComposite_setShape(int nargs, VALUE *args, VALUE self)
31913
31995
  }
31914
31996
  }
31915
31997
  if (argc == 2) {
31916
- int _v;
31998
+ int _v = 0;
31917
31999
  void *vptr = 0;
31918
32000
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
31919
32001
  _v = SWIG_CheckState(res);
@@ -32824,7 +32906,7 @@ _wrap_FXRootWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
32824
32906
  FXRegion *arg2 = 0 ;
32825
32907
  void *argp1 = 0 ;
32826
32908
  int res1 = 0 ;
32827
- void *argp2 ;
32909
+ void *argp2 = 0 ;
32828
32910
  int res2 = 0 ;
32829
32911
 
32830
32912
  if ((argc < 1) || (argc > 1)) {
@@ -32920,7 +33002,7 @@ SWIGINTERN VALUE _wrap_FXRootWindow_setShape(int nargs, VALUE *args, VALUE self)
32920
33002
  argv[ii] = args[ii-1];
32921
33003
  }
32922
33004
  if (argc == 2) {
32923
- int _v;
33005
+ int _v = 0;
32924
33006
  void *vptr = 0;
32925
33007
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRootWindow, 0);
32926
33008
  _v = SWIG_CheckState(res);
@@ -32934,7 +33016,7 @@ SWIGINTERN VALUE _wrap_FXRootWindow_setShape(int nargs, VALUE *args, VALUE self)
32934
33016
  }
32935
33017
  }
32936
33018
  if (argc == 2) {
32937
- int _v;
33019
+ int _v = 0;
32938
33020
  void *vptr = 0;
32939
33021
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRootWindow, 0);
32940
33022
  _v = SWIG_CheckState(res);
@@ -32948,7 +33030,7 @@ SWIGINTERN VALUE _wrap_FXRootWindow_setShape(int nargs, VALUE *args, VALUE self)
32948
33030
  }
32949
33031
  }
32950
33032
  if (argc == 2) {
32951
- int _v;
33033
+ int _v = 0;
32952
33034
  void *vptr = 0;
32953
33035
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRootWindow, 0);
32954
33036
  _v = SWIG_CheckState(res);
@@ -33323,7 +33405,7 @@ SWIGINTERN VALUE _wrap_new_FXShell(int nargs, VALUE *args, VALUE self) {
33323
33405
  argv[ii] = args[ii];
33324
33406
  }
33325
33407
  if (argc == 6) {
33326
- int _v;
33408
+ int _v = 0;
33327
33409
  void *vptr = 0;
33328
33410
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
33329
33411
  _v = SWIG_CheckState(res);
@@ -33357,7 +33439,7 @@ SWIGINTERN VALUE _wrap_new_FXShell(int nargs, VALUE *args, VALUE self) {
33357
33439
  }
33358
33440
  }
33359
33441
  if (argc == 6) {
33360
- int _v;
33442
+ int _v = 0;
33361
33443
  void *vptr = 0;
33362
33444
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
33363
33445
  _v = SWIG_CheckState(res);
@@ -34208,7 +34290,7 @@ _wrap_FXShell_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
34208
34290
  FXRegion *arg2 = 0 ;
34209
34291
  void *argp1 = 0 ;
34210
34292
  int res1 = 0 ;
34211
- void *argp2 ;
34293
+ void *argp2 = 0 ;
34212
34294
  int res2 = 0 ;
34213
34295
 
34214
34296
  if ((argc < 1) || (argc > 1)) {
@@ -34304,7 +34386,7 @@ SWIGINTERN VALUE _wrap_FXShell_setShape(int nargs, VALUE *args, VALUE self) {
34304
34386
  argv[ii] = args[ii-1];
34305
34387
  }
34306
34388
  if (argc == 2) {
34307
- int _v;
34389
+ int _v = 0;
34308
34390
  void *vptr = 0;
34309
34391
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShell, 0);
34310
34392
  _v = SWIG_CheckState(res);
@@ -34318,7 +34400,7 @@ SWIGINTERN VALUE _wrap_FXShell_setShape(int nargs, VALUE *args, VALUE self) {
34318
34400
  }
34319
34401
  }
34320
34402
  if (argc == 2) {
34321
- int _v;
34403
+ int _v = 0;
34322
34404
  void *vptr = 0;
34323
34405
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShell, 0);
34324
34406
  _v = SWIG_CheckState(res);
@@ -34332,7 +34414,7 @@ SWIGINTERN VALUE _wrap_FXShell_setShape(int nargs, VALUE *args, VALUE self) {
34332
34414
  }
34333
34415
  }
34334
34416
  if (argc == 2) {
34335
- int _v;
34417
+ int _v = 0;
34336
34418
  void *vptr = 0;
34337
34419
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShell, 0);
34338
34420
  _v = SWIG_CheckState(res);
@@ -36337,7 +36419,7 @@ _wrap_FXPopup_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
36337
36419
  FXRegion *arg2 = 0 ;
36338
36420
  void *argp1 = 0 ;
36339
36421
  int res1 = 0 ;
36340
- void *argp2 ;
36422
+ void *argp2 = 0 ;
36341
36423
  int res2 = 0 ;
36342
36424
 
36343
36425
  if ((argc < 1) || (argc > 1)) {
@@ -36433,7 +36515,7 @@ SWIGINTERN VALUE _wrap_FXPopup_setShape(int nargs, VALUE *args, VALUE self) {
36433
36515
  argv[ii] = args[ii-1];
36434
36516
  }
36435
36517
  if (argc == 2) {
36436
- int _v;
36518
+ int _v = 0;
36437
36519
  void *vptr = 0;
36438
36520
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPopup, 0);
36439
36521
  _v = SWIG_CheckState(res);
@@ -36447,7 +36529,7 @@ SWIGINTERN VALUE _wrap_FXPopup_setShape(int nargs, VALUE *args, VALUE self) {
36447
36529
  }
36448
36530
  }
36449
36531
  if (argc == 2) {
36450
- int _v;
36532
+ int _v = 0;
36451
36533
  void *vptr = 0;
36452
36534
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPopup, 0);
36453
36535
  _v = SWIG_CheckState(res);
@@ -36461,7 +36543,7 @@ SWIGINTERN VALUE _wrap_FXPopup_setShape(int nargs, VALUE *args, VALUE self) {
36461
36543
  }
36462
36544
  }
36463
36545
  if (argc == 2) {
36464
- int _v;
36546
+ int _v = 0;
36465
36547
  void *vptr = 0;
36466
36548
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPopup, 0);
36467
36549
  _v = SWIG_CheckState(res);
@@ -37280,7 +37362,7 @@ SWIGINTERN VALUE _wrap_new_FXTopWindow(int nargs, VALUE *args, VALUE self) {
37280
37362
  argv[ii] = args[ii];
37281
37363
  }
37282
37364
  if (argc == 15) {
37283
- int _v;
37365
+ int _v = 0;
37284
37366
  void *vptr = 0;
37285
37367
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
37286
37368
  _v = SWIG_CheckState(res);
@@ -37359,7 +37441,7 @@ SWIGINTERN VALUE _wrap_new_FXTopWindow(int nargs, VALUE *args, VALUE self) {
37359
37441
  }
37360
37442
  }
37361
37443
  if (argc == 15) {
37362
- int _v;
37444
+ int _v = 0;
37363
37445
  void *vptr = 0;
37364
37446
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
37365
37447
  _v = SWIG_CheckState(res);
@@ -38886,7 +38968,7 @@ _wrap_FXTopWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
38886
38968
  FXRegion *arg2 = 0 ;
38887
38969
  void *argp1 = 0 ;
38888
38970
  int res1 = 0 ;
38889
- void *argp2 ;
38971
+ void *argp2 = 0 ;
38890
38972
  int res2 = 0 ;
38891
38973
 
38892
38974
  if ((argc < 1) || (argc > 1)) {
@@ -38982,7 +39064,7 @@ SWIGINTERN VALUE _wrap_FXTopWindow_setShape(int nargs, VALUE *args, VALUE self)
38982
39064
  argv[ii] = args[ii-1];
38983
39065
  }
38984
39066
  if (argc == 2) {
38985
- int _v;
39067
+ int _v = 0;
38986
39068
  void *vptr = 0;
38987
39069
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTopWindow, 0);
38988
39070
  _v = SWIG_CheckState(res);
@@ -38996,7 +39078,7 @@ SWIGINTERN VALUE _wrap_FXTopWindow_setShape(int nargs, VALUE *args, VALUE self)
38996
39078
  }
38997
39079
  }
38998
39080
  if (argc == 2) {
38999
- int _v;
39081
+ int _v = 0;
39000
39082
  void *vptr = 0;
39001
39083
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTopWindow, 0);
39002
39084
  _v = SWIG_CheckState(res);
@@ -39010,7 +39092,7 @@ SWIGINTERN VALUE _wrap_FXTopWindow_setShape(int nargs, VALUE *args, VALUE self)
39010
39092
  }
39011
39093
  }
39012
39094
  if (argc == 2) {
39013
- int _v;
39095
+ int _v = 0;
39014
39096
  void *vptr = 0;
39015
39097
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTopWindow, 0);
39016
39098
  _v = SWIG_CheckState(res);
@@ -39090,7 +39172,7 @@ SWIGINTERN VALUE _wrap_FXTopWindow_show(int nargs, VALUE *args, VALUE self) {
39090
39172
  argv[ii] = args[ii-1];
39091
39173
  }
39092
39174
  if (argc == 1) {
39093
- int _v;
39175
+ int _v = 0;
39094
39176
  void *vptr = 0;
39095
39177
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTopWindow, 0);
39096
39178
  _v = SWIG_CheckState(res);
@@ -39099,7 +39181,7 @@ SWIGINTERN VALUE _wrap_FXTopWindow_show(int nargs, VALUE *args, VALUE self) {
39099
39181
  }
39100
39182
  }
39101
39183
  if (argc == 2) {
39102
- int _v;
39184
+ int _v = 0;
39103
39185
  void *vptr = 0;
39104
39186
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTopWindow, 0);
39105
39187
  _v = SWIG_CheckState(res);
@@ -40159,7 +40241,7 @@ _wrap_FXMainWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
40159
40241
  FXRegion *arg2 = 0 ;
40160
40242
  void *argp1 = 0 ;
40161
40243
  int res1 = 0 ;
40162
- void *argp2 ;
40244
+ void *argp2 = 0 ;
40163
40245
  int res2 = 0 ;
40164
40246
 
40165
40247
  if ((argc < 1) || (argc > 1)) {
@@ -40255,7 +40337,7 @@ SWIGINTERN VALUE _wrap_FXMainWindow_setShape(int nargs, VALUE *args, VALUE self)
40255
40337
  argv[ii] = args[ii-1];
40256
40338
  }
40257
40339
  if (argc == 2) {
40258
- int _v;
40340
+ int _v = 0;
40259
40341
  void *vptr = 0;
40260
40342
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMainWindow, 0);
40261
40343
  _v = SWIG_CheckState(res);
@@ -40269,7 +40351,7 @@ SWIGINTERN VALUE _wrap_FXMainWindow_setShape(int nargs, VALUE *args, VALUE self)
40269
40351
  }
40270
40352
  }
40271
40353
  if (argc == 2) {
40272
- int _v;
40354
+ int _v = 0;
40273
40355
  void *vptr = 0;
40274
40356
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMainWindow, 0);
40275
40357
  _v = SWIG_CheckState(res);
@@ -40283,7 +40365,7 @@ SWIGINTERN VALUE _wrap_FXMainWindow_setShape(int nargs, VALUE *args, VALUE self)
40283
40365
  }
40284
40366
  }
40285
40367
  if (argc == 2) {
40286
- int _v;
40368
+ int _v = 0;
40287
40369
  void *vptr = 0;
40288
40370
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMainWindow, 0);
40289
40371
  _v = SWIG_CheckState(res);
@@ -40363,7 +40445,7 @@ SWIGINTERN VALUE _wrap_FXMainWindow_show(int nargs, VALUE *args, VALUE self) {
40363
40445
  argv[ii] = args[ii-1];
40364
40446
  }
40365
40447
  if (argc == 1) {
40366
- int _v;
40448
+ int _v = 0;
40367
40449
  void *vptr = 0;
40368
40450
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMainWindow, 0);
40369
40451
  _v = SWIG_CheckState(res);
@@ -40372,7 +40454,7 @@ SWIGINTERN VALUE _wrap_FXMainWindow_show(int nargs, VALUE *args, VALUE self) {
40372
40454
  }
40373
40455
  }
40374
40456
  if (argc == 2) {
40375
- int _v;
40457
+ int _v = 0;
40376
40458
  void *vptr = 0;
40377
40459
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMainWindow, 0);
40378
40460
  _v = SWIG_CheckState(res);
@@ -40669,7 +40751,7 @@ SWIGINTERN VALUE _wrap_new_FXSplashWindow(int nargs, VALUE *args, VALUE self) {
40669
40751
  argv[ii] = args[ii];
40670
40752
  }
40671
40753
  if ((argc >= 2) && (argc <= 4)) {
40672
- int _v;
40754
+ int _v = 0;
40673
40755
  void *vptr = 0;
40674
40756
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXApp, 0);
40675
40757
  _v = SWIG_CheckState(res);
@@ -40699,7 +40781,7 @@ SWIGINTERN VALUE _wrap_new_FXSplashWindow(int nargs, VALUE *args, VALUE self) {
40699
40781
  }
40700
40782
  }
40701
40783
  if ((argc >= 2) && (argc <= 4)) {
40702
- int _v;
40784
+ int _v = 0;
40703
40785
  void *vptr = 0;
40704
40786
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXWindow, 0);
40705
40787
  _v = SWIG_CheckState(res);
@@ -41649,7 +41731,7 @@ _wrap_FXSplashWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
41649
41731
  FXRegion *arg2 = 0 ;
41650
41732
  void *argp1 = 0 ;
41651
41733
  int res1 = 0 ;
41652
- void *argp2 ;
41734
+ void *argp2 = 0 ;
41653
41735
  int res2 = 0 ;
41654
41736
 
41655
41737
  if ((argc < 1) || (argc > 1)) {
@@ -41745,7 +41827,7 @@ SWIGINTERN VALUE _wrap_FXSplashWindow_setShape(int nargs, VALUE *args, VALUE sel
41745
41827
  argv[ii] = args[ii-1];
41746
41828
  }
41747
41829
  if (argc == 2) {
41748
- int _v;
41830
+ int _v = 0;
41749
41831
  void *vptr = 0;
41750
41832
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplashWindow, 0);
41751
41833
  _v = SWIG_CheckState(res);
@@ -41759,7 +41841,7 @@ SWIGINTERN VALUE _wrap_FXSplashWindow_setShape(int nargs, VALUE *args, VALUE sel
41759
41841
  }
41760
41842
  }
41761
41843
  if (argc == 2) {
41762
- int _v;
41844
+ int _v = 0;
41763
41845
  void *vptr = 0;
41764
41846
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplashWindow, 0);
41765
41847
  _v = SWIG_CheckState(res);
@@ -41773,7 +41855,7 @@ SWIGINTERN VALUE _wrap_FXSplashWindow_setShape(int nargs, VALUE *args, VALUE sel
41773
41855
  }
41774
41856
  }
41775
41857
  if (argc == 2) {
41776
- int _v;
41858
+ int _v = 0;
41777
41859
  void *vptr = 0;
41778
41860
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplashWindow, 0);
41779
41861
  _v = SWIG_CheckState(res);
@@ -41853,7 +41935,7 @@ SWIGINTERN VALUE _wrap_FXSplashWindow_show(int nargs, VALUE *args, VALUE self) {
41853
41935
  argv[ii] = args[ii-1];
41854
41936
  }
41855
41937
  if (argc == 1) {
41856
- int _v;
41938
+ int _v = 0;
41857
41939
  void *vptr = 0;
41858
41940
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplashWindow, 0);
41859
41941
  _v = SWIG_CheckState(res);
@@ -41862,7 +41944,7 @@ SWIGINTERN VALUE _wrap_FXSplashWindow_show(int nargs, VALUE *args, VALUE self) {
41862
41944
  }
41863
41945
  }
41864
41946
  if (argc == 2) {
41865
- int _v;
41947
+ int _v = 0;
41866
41948
  void *vptr = 0;
41867
41949
  int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplashWindow, 0);
41868
41950
  _v = SWIG_CheckState(res);
@@ -42000,87 +42082,78 @@ fail:
42000
42082
 
42001
42083
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
42002
42084
 
42003
- static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42004
- return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
42005
- }
42006
- static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42007
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
42008
- }
42009
- static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42010
- return (void *)((FXDrawable *) ((FXWindow *) x));
42011
- }
42012
- static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42013
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
42014
- }
42015
- static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42016
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
42017
- }
42018
- static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42019
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
42020
- }
42021
- static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42022
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42085
+ static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42086
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42023
42087
  }
42024
- static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42025
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42088
+ static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42089
+ return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
42026
42090
  }
42027
- static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42028
- return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
42091
+ static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42092
+ return (void *)((FXComposite *) ((FXRootWindow *) x));
42029
42093
  }
42030
42094
  static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42031
42095
  return (void *)((FXComposite *) ((FXShell *) x));
42032
42096
  }
42033
- static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42034
- return (void *)((FXComposite *) ((FXRootWindow *) x));
42035
- }
42036
- static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42037
- return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
42097
+ static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42098
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42038
42099
  }
42039
42100
  static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42040
42101
  return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
42041
42102
  }
42042
- static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42043
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42103
+ static void *_p_FXCURCursorTo_p_FXCursor(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42104
+ return (void *)((FXCursor *) ((FXCURCursor *) x));
42044
42105
  }
42045
- static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42046
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42106
+ static void *_p_FXGIFCursorTo_p_FXCursor(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42107
+ return (void *)((FXCursor *) ((FXGIFCursor *) x));
42047
42108
  }
42048
- static void *_p_FXRegistryTo_p_FXSettings(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42049
- return (void *)((FXSettings *) ((FXRegistry *) x));
42109
+ static void *_p_FXFileDictTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42110
+ return (void *)((FXDict *) ((FXFileDict *) x));
42050
42111
  }
42051
- static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42052
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
42112
+ static void *_p_FXIconDictTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42113
+ return (void *)((FXDict *) ((FXIconDict *) x));
42053
42114
  }
42054
- static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42055
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
42115
+ static void *_p_FXRegistryTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42116
+ return (void *)((FXDict *) (FXSettings *) ((FXRegistry *) x));
42056
42117
  }
42057
- static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42058
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42118
+ static void *_p_FXSettingsTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42119
+ return (void *)((FXDict *) ((FXSettings *) x));
42059
42120
  }
42060
- static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42061
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
42121
+ static void *_p_FXStringDictTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42122
+ return (void *)((FXDict *) ((FXStringDict *) x));
42062
42123
  }
42063
- static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42064
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
42124
+ static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42125
+ return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
42065
42126
  }
42066
- static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42067
- return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
42127
+ static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42128
+ return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
42068
42129
  }
42069
- static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42070
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
42130
+ static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42131
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42071
42132
  }
42072
- static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42073
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42133
+ static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42134
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
42074
42135
  }
42075
- static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42076
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
42136
+ static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42137
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
42077
42138
  }
42078
- static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42079
- return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
42139
+ static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42140
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
42141
+ }
42142
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42143
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42144
+ }
42145
+ static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42146
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
42147
+ }
42148
+ static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42149
+ return (void *)((FXDrawable *) ((FXWindow *) x));
42080
42150
  }
42081
42151
  static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42082
42152
  return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
42083
42153
  }
42154
+ static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42155
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
42156
+ }
42084
42157
  static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42085
42158
  return (void *)((FXId *) ((FXCursor *) x));
42086
42159
  }
@@ -42090,23 +42163,35 @@ static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42090
42163
  static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42091
42164
  return (void *)((FXId *) ((FXFont *) x));
42092
42165
  }
42093
- static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42094
- return (void *)((FXId *) ((FXVisual *) x));
42166
+ static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42167
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
42095
42168
  }
42096
- static void *_p_FXCURCursorTo_p_FXCursor(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42097
- return (void *)((FXCursor *) ((FXCURCursor *) x));
42169
+ static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42170
+ return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
42098
42171
  }
42099
- static void *_p_FXGIFCursorTo_p_FXCursor(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42100
- return (void *)((FXCursor *) ((FXGIFCursor *) x));
42172
+ static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42173
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42101
42174
  }
42102
- static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42103
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
42175
+ static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42176
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
42104
42177
  }
42105
- static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42106
- return (void *)((FXObject *) ((FXId *) x));
42178
+ static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42179
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
42107
42180
  }
42108
- static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42109
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
42181
+ static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42182
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
42183
+ }
42184
+ static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42185
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42186
+ }
42187
+ static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42188
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
42189
+ }
42190
+ static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42191
+ return (void *)((FXId *) ((FXVisual *) x));
42192
+ }
42193
+ static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42194
+ return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
42110
42195
  }
42111
42196
  static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42112
42197
  return (void *)((FXObject *) ((FXAccelTable *) x));
@@ -42114,110 +42199,110 @@ static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory
42114
42199
  static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42115
42200
  return (void *)((FXObject *) ((FXApp *) x));
42116
42201
  }
42117
- static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42118
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
42119
- }
42120
- static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42121
- return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
42202
+ static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42203
+ return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
42122
42204
  }
42123
42205
  static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42124
42206
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
42125
42207
  }
42126
- static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42127
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
42128
- }
42129
- static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42130
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
42208
+ static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42209
+ return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
42131
42210
  }
42132
- static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42133
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42211
+ static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42212
+ return (void *)((FXObject *) ((FXDataTarget *) x));
42134
42213
  }
42135
- static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42136
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42214
+ static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42215
+ return (void *)((FXObject *) ((FXDebugTarget *) x));
42137
42216
  }
42138
- static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42139
- return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
42217
+ static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42218
+ return (void *)((FXObject *) ((FXDelegator *) x));
42140
42219
  }
42141
42220
  static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42142
42221
  return (void *)((FXObject *) ((FXDict *) x));
42143
42222
  }
42144
- static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42145
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
42223
+ static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42224
+ return (void *)((FXObject *) ((FXDocument *) x));
42146
42225
  }
42147
- static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42148
- return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
42226
+ static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42227
+ return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
42149
42228
  }
42150
- static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42151
- return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
42229
+ static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42230
+ return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
42152
42231
  }
42153
- static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42154
- return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
42232
+ static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42233
+ return (void *)((FXObject *) (FXId *) ((FXFont *) x));
42155
42234
  }
42156
- static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42157
- return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
42235
+ static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42236
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
42158
42237
  }
42159
42238
  static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42160
42239
  return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
42161
42240
  }
42162
- static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42163
- return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
42241
+ static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42242
+ return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
42164
42243
  }
42165
- static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42166
- return (void *)((FXObject *) ((FXDelegator *) x));
42244
+ static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42245
+ return (void *)((FXObject *) ((FXId *) x));
42167
42246
  }
42168
- static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42169
- return (void *)((FXObject *) (FXId *) ((FXFont *) x));
42247
+ static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42248
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42249
+ }
42250
+ static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42251
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
42252
+ }
42253
+ static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42254
+ return (void *)((FXObject *) ((FXRecentFiles *) x));
42255
+ }
42256
+ static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42257
+ return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
42258
+ }
42259
+ static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42260
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
42170
42261
  }
42171
42262
  static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42172
42263
  return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
42173
42264
  }
42174
- static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42175
- return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
42176
- }
42177
- static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42178
- return (void *)((FXObject *) ((FXDocument *) x));
42265
+ static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42266
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
42179
42267
  }
42180
- static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42181
- return (void *)((FXObject *) ((FXRecentFiles *) x));
42268
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42269
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42182
42270
  }
42183
- static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42184
- return (void *)((FXObject *) ((FXDebugTarget *) x));
42271
+ static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42272
+ return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
42185
42273
  }
42186
- static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42187
- return (void *)((FXObject *) ((FXDataTarget *) x));
42274
+ static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42275
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
42188
42276
  }
42189
42277
  static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42190
42278
  return (void *)((FXObject *) ((FXTranslator *) x));
42191
42279
  }
42192
- static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42193
- return (void *)((FXStream *) ((FXFileStream *) x));
42194
- }
42195
- static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42196
- return (void *)((FXStream *) ((FXMemoryStream *) x));
42280
+ static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42281
+ return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
42197
42282
  }
42198
- static void *_p_p_FXCompositeTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42199
- return (void *)((FXWindow **) ((FXComposite **) x));
42283
+ static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42284
+ return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
42200
42285
  }
42201
- static void *_p_p_FXShellTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42202
- return (void *)((FXWindow **) (FXComposite *) ((FXShell **) x));
42286
+ static void *_p_FXRegistryTo_p_FXSettings(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42287
+ return (void *)((FXSettings *) ((FXRegistry *) x));
42203
42288
  }
42204
- static void *_p_p_FXRootWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42205
- return (void *)((FXWindow **) (FXComposite *) ((FXRootWindow **) x));
42289
+ static void *_p_FXMainWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42290
+ return (void *)((FXShell *) (FXTopWindow *) ((FXMainWindow *) x));
42206
42291
  }
42207
- static void *_p_p_FXPopupTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42208
- return (void *)((FXWindow **) (FXComposite *)(FXShell *) ((FXPopup **) x));
42292
+ static void *_p_FXPopupTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42293
+ return (void *)((FXShell *) ((FXPopup *) x));
42209
42294
  }
42210
- static void *_p_p_FXTopWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42211
- return (void *)((FXWindow **) (FXComposite *)(FXShell *) ((FXTopWindow **) x));
42295
+ static void *_p_FXSplashWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42296
+ return (void *)((FXShell *) (FXTopWindow *) ((FXSplashWindow *) x));
42212
42297
  }
42213
- static void *_p_p_FXMainWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42214
- return (void *)((FXWindow **) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow **) x));
42298
+ static void *_p_FXTopWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42299
+ return (void *)((FXShell *) ((FXTopWindow *) x));
42215
42300
  }
42216
- static void *_p_p_FXSplashWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42217
- return (void *)((FXWindow **) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow **) x));
42301
+ static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42302
+ return (void *)((FXStream *) ((FXFileStream *) x));
42218
42303
  }
42219
- static void *_p_p_FXFrameTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42220
- return (void *)((FXWindow **) ((FXFrame **) x));
42304
+ static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42305
+ return (void *)((FXStream *) ((FXMemoryStream *) x));
42221
42306
  }
42222
42307
  static void *_p_FXMainWindowTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42223
42308
  return (void *)((FXTopWindow *) ((FXMainWindow *) x));
@@ -42228,53 +42313,50 @@ static void *_p_FXSplashWindowTo_p_FXTopWindow(void *x, int *SWIGUNUSEDPARM(newm
42228
42313
  static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42229
42314
  return (void *)((FXWindow *) ((FXComposite *) x));
42230
42315
  }
42231
- static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42232
- return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
42316
+ static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42317
+ return (void *)((FXWindow *) ((FXFrame *) x));
42233
42318
  }
42234
- static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42235
- return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
42319
+ static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42320
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42236
42321
  }
42237
42322
  static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42238
42323
  return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
42239
42324
  }
42240
- static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42241
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
42325
+ static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42326
+ return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
42242
42327
  }
42243
- static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42244
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
42328
+ static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42329
+ return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
42245
42330
  }
42246
42331
  static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42247
42332
  return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
42248
42333
  }
42249
- static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42250
- return (void *)((FXWindow *) ((FXFrame *) x));
42251
- }
42252
- static void *_p_FXFileDictTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42253
- return (void *)((FXDict *) ((FXFileDict *) x));
42334
+ static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42335
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
42254
42336
  }
42255
- static void *_p_FXIconDictTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42256
- return (void *)((FXDict *) ((FXIconDict *) x));
42337
+ static void *_p_p_FXCompositeTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42338
+ return (void *)((FXWindow **) ((FXComposite **) x));
42257
42339
  }
42258
- static void *_p_FXRegistryTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42259
- return (void *)((FXDict *) (FXSettings *) ((FXRegistry *) x));
42340
+ static void *_p_p_FXFrameTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42341
+ return (void *)((FXWindow **) ((FXFrame **) x));
42260
42342
  }
42261
- static void *_p_FXStringDictTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42262
- return (void *)((FXDict *) ((FXStringDict *) x));
42343
+ static void *_p_p_FXMainWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42344
+ return (void *)((FXWindow **) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow **) x));
42263
42345
  }
42264
- static void *_p_FXSettingsTo_p_FXDict(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42265
- return (void *)((FXDict *) ((FXSettings *) x));
42346
+ static void *_p_p_FXPopupTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42347
+ return (void *)((FXWindow **) (FXComposite *)(FXShell *) ((FXPopup **) x));
42266
42348
  }
42267
- static void *_p_FXPopupTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42268
- return (void *)((FXShell *) ((FXPopup *) x));
42349
+ static void *_p_p_FXRootWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42350
+ return (void *)((FXWindow **) (FXComposite *) ((FXRootWindow **) x));
42269
42351
  }
42270
- static void *_p_FXTopWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42271
- return (void *)((FXShell *) ((FXTopWindow *) x));
42352
+ static void *_p_p_FXShellTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42353
+ return (void *)((FXWindow **) (FXComposite *) ((FXShell **) x));
42272
42354
  }
42273
- static void *_p_FXMainWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42274
- return (void *)((FXShell *) (FXTopWindow *) ((FXMainWindow *) x));
42355
+ static void *_p_p_FXSplashWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42356
+ return (void *)((FXWindow **) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow **) x));
42275
42357
  }
42276
- static void *_p_FXSplashWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42277
- return (void *)((FXShell *) (FXTopWindow *) ((FXSplashWindow *) x));
42358
+ static void *_p_p_FXTopWindowTo_p_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
42359
+ return (void *)((FXWindow **) (FXComposite *)(FXShell *) ((FXTopWindow **) x));
42278
42360
  }
42279
42361
  static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", "FXAccelTable *", 0, 0, (void*)0, 0};
42280
42362
  static swig_type_info _swigt__p_FXApp = {"_p_FXApp", "FXApp *", 0, 0, (void*)0, 0};
@@ -42327,26 +42409,26 @@ static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", "FXTopWindow *"
42327
42409
  static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", "FXTranslator *", 0, 0, (void*)0, 0};
42328
42410
  static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", "FXVisual *", 0, 0, (void*)0, 0};
42329
42411
  static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
42330
- static swig_type_info _swigt__p_char = {"_p_char", "char *|FXchar *", 0, 0, (void*)0, 0};
42331
- static swig_type_info _swigt__p_double = {"_p_double", "double *|FXdouble *", 0, 0, (void*)0, 0};
42332
- static swig_type_info _swigt__p_float = {"_p_float", "float *|FXfloat *", 0, 0, (void*)0, 0};
42333
- static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int *|FXInputHandle *", 0, 0, (void*)0, 0};
42334
- static swig_type_info _swigt__p_long = {"_p_long", "long *|FXTime *", 0, 0, (void*)0, 0};
42412
+ static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
42413
+ static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
42414
+ static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
42415
+ static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
42416
+ static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
42335
42417
  static swig_type_info _swigt__p_p_FXWindow = {"_p_p_FXWindow", "FXWindow **", 0, 0, (void*)0, 0};
42336
42418
  static swig_type_info _swigt__p_p_FXComposite = {"_p_p_FXComposite", 0, 0, 0, 0, 0};
42337
- static swig_type_info _swigt__p_p_FXShell = {"_p_p_FXShell", 0, 0, 0, 0, 0};
42338
- static swig_type_info _swigt__p_p_FXRootWindow = {"_p_p_FXRootWindow", 0, 0, 0, 0, 0};
42339
- static swig_type_info _swigt__p_p_FXPopup = {"_p_p_FXPopup", 0, 0, 0, 0, 0};
42340
- static swig_type_info _swigt__p_p_FXTopWindow = {"_p_p_FXTopWindow", 0, 0, 0, 0, 0};
42419
+ static swig_type_info _swigt__p_p_FXFrame = {"_p_p_FXFrame", 0, 0, 0, 0, 0};
42341
42420
  static swig_type_info _swigt__p_p_FXMainWindow = {"_p_p_FXMainWindow", 0, 0, 0, 0, 0};
42421
+ static swig_type_info _swigt__p_p_FXPopup = {"_p_p_FXPopup", 0, 0, 0, 0, 0};
42422
+ static swig_type_info _swigt__p_p_FXRootWindow = {"_p_p_FXRootWindow", 0, 0, 0, 0, 0};
42423
+ static swig_type_info _swigt__p_p_FXShell = {"_p_p_FXShell", 0, 0, 0, 0, 0};
42342
42424
  static swig_type_info _swigt__p_p_FXSplashWindow = {"_p_p_FXSplashWindow", 0, 0, 0, 0, 0};
42343
- static swig_type_info _swigt__p_p_FXFrame = {"_p_p_FXFrame", 0, 0, 0, 0, 0};
42344
- static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **|FXchar **", 0, 0, (void*)0, 0};
42345
- static swig_type_info _swigt__p_short = {"_p_short", "short *|FXshort *", 0, 0, (void*)0, 0};
42346
- static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char *|FXbool *", 0, 0, (void*)0, 0};
42347
- static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXwchar *|FXDragType *|unsigned int *|FXuint *|FXColor *|FXSelector *|FXHotKey *", 0, 0, (void*)0, 0};
42348
- static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|FXuval *|FXPixel *", 0, 0, (void*)0, 0};
42349
- static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|FXushort *", 0, 0, (void*)0, 0};
42425
+ static swig_type_info _swigt__p_p_FXTopWindow = {"_p_p_FXTopWindow", 0, 0, 0, 0, 0};
42426
+ static swig_type_info _swigt__p_p_char = {"_p_p_char", "FXchar **|char **", 0, 0, (void*)0, 0};
42427
+ static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
42428
+ static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
42429
+ static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
42430
+ static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
42431
+ static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
42350
42432
  static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0};
42351
42433
 
42352
42434
  static swig_type_info *swig_type_initial[] = {
@@ -42430,14 +42512,14 @@ static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{
42430
42512
  static swig_cast_info _swigc__p_FXCURCursor[] = { {&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
42431
42513
  static swig_cast_info _swigc__p_FXChore[] = { {&_swigt__p_FXChore, 0, 0, 0},{0, 0, 0, 0}};
42432
42514
  static swig_cast_info _swigc__p_FXComposeContext[] = { {&_swigt__p_FXComposeContext, 0, 0, 0},{0, 0, 0, 0}};
42433
- static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
42515
+ static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
42434
42516
  static swig_cast_info _swigc__p_FXCursor[] = { {&_swigt__p_FXCursor, 0, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXCursor, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXCursor, 0, 0},{0, 0, 0, 0}};
42435
42517
  static swig_cast_info _swigc__p_FXDataTarget[] = { {&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
42436
42518
  static swig_cast_info _swigc__p_FXDebugTarget[] = { {&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
42437
42519
  static swig_cast_info _swigc__p_FXDelegator[] = { {&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
42438
- static swig_cast_info _swigc__p_FXDict[] = { {&_swigt__p_FXDict, 0, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXDict, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXDict, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXDict, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXDict, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXDict, 0, 0},{0, 0, 0, 0}};
42520
+ static swig_cast_info _swigc__p_FXDict[] = { {&_swigt__p_FXDict, 0, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXDict, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXDict, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXDict, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXDict, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXDict, 0, 0},{0, 0, 0, 0}};
42439
42521
  static swig_cast_info _swigc__p_FXDocument[] = { {&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
42440
- static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
42522
+ static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
42441
42523
  static swig_cast_info _swigc__p_FXEvent[] = { {&_swigt__p_FXEvent, 0, 0, 0},{0, 0, 0, 0}};
42442
42524
  static swig_cast_info _swigc__p_FXFileAssoc[] = { {&_swigt__p_FXFileAssoc, 0, 0, 0},{0, 0, 0, 0}};
42443
42525
  static swig_cast_info _swigc__p_FXFileDict[] = { {&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
@@ -42450,11 +42532,11 @@ static swig_cast_info _swigc__p_FXID[] = { {&_swigt__p_FXID, 0, 0, 0},{0, 0, 0,
42450
42532
  static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
42451
42533
  static swig_cast_info _swigc__p_FXIconDict[] = { {&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
42452
42534
  static swig_cast_info _swigc__p_FXIconSource[] = { {&_swigt__p_FXIconSource, 0, 0, 0},{0, 0, 0, 0}};
42453
- static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_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_FXVisual, _p_FXVisualTo_p_FXId, 0, 0},{0, 0, 0, 0}};
42535
+ static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_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_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_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}};
42454
42536
  static swig_cast_info _swigc__p_FXMainWindow[] = { {&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
42455
42537
  static swig_cast_info _swigc__p_FXMemoryStream[] = { {&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
42456
42538
  static swig_cast_info _swigc__p_FXMutex[] = { {&_swigt__p_FXMutex, 0, 0, 0},{0, 0, 0, 0}};
42457
- static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
42539
+ static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_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_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_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_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_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_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}};
42458
42540
  static swig_cast_info _swigc__p_FXPoint[] = { {&_swigt__p_FXPoint, 0, 0, 0},{0, 0, 0, 0}};
42459
42541
  static swig_cast_info _swigc__p_FXPopup[] = { {&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
42460
42542
  static swig_cast_info _swigc__p_FXRecentFiles[] = { {&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
@@ -42462,11 +42544,11 @@ static swig_cast_info _swigc__p_FXRectangle[] = { {&_swigt__p_FXRectangle, 0, 0
42462
42544
  static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
42463
42545
  static swig_cast_info _swigc__p_FXRegistry[] = { {&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
42464
42546
  static swig_cast_info _swigc__p_FXRootWindow[] = { {&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
42465
- static swig_cast_info _swigc__p_FXSettings[] = { {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXSettings, 0, 0}, {&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
42466
- static swig_cast_info _swigc__p_FXShell[] = { {&_swigt__p_FXShell, 0, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXShell, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXShell, 0, 0},{0, 0, 0, 0}};
42547
+ static swig_cast_info _swigc__p_FXSettings[] = { {&_swigt__p_FXSettings, 0, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXSettings, 0, 0},{0, 0, 0, 0}};
42548
+ static swig_cast_info _swigc__p_FXShell[] = { {&_swigt__p_FXShell, 0, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXShell, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXShell, 0, 0},{0, 0, 0, 0}};
42467
42549
  static swig_cast_info _swigc__p_FXSize[] = { {&_swigt__p_FXSize, 0, 0, 0},{0, 0, 0, 0}};
42468
42550
  static swig_cast_info _swigc__p_FXSplashWindow[] = { {&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
42469
- 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}};
42551
+ 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}};
42470
42552
  static swig_cast_info _swigc__p_FXString[] = { {&_swigt__p_FXString, 0, 0, 0},{0, 0, 0, 0}};
42471
42553
  static swig_cast_info _swigc__p_FXStringDict[] = { {&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
42472
42554
  static swig_cast_info _swigc__p_FXTextCodec[] = { {&_swigt__p_FXTextCodec, 0, 0, 0},{0, 0, 0, 0}};
@@ -42474,21 +42556,21 @@ static swig_cast_info _swigc__p_FXTimer[] = { {&_swigt__p_FXTimer, 0, 0, 0},{0,
42474
42556
  static swig_cast_info _swigc__p_FXTopWindow[] = { {&_swigt__p_FXTopWindow, 0, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXTopWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXTopWindow, 0, 0},{0, 0, 0, 0}};
42475
42557
  static swig_cast_info _swigc__p_FXTranslator[] = { {&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
42476
42558
  static swig_cast_info _swigc__p_FXVisual[] = { {&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
42477
- static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
42559
+ static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
42478
42560
  static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
42479
42561
  static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
42480
42562
  static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}};
42481
42563
  static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};
42482
42564
  static swig_cast_info _swigc__p_long[] = { {&_swigt__p_long, 0, 0, 0},{0, 0, 0, 0}};
42483
42565
  static swig_cast_info _swigc__p_p_FXComposite[] = {{&_swigt__p_p_FXComposite, 0, 0, 0},{0, 0, 0, 0}};
42484
- static swig_cast_info _swigc__p_p_FXShell[] = {{&_swigt__p_p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
42485
- static swig_cast_info _swigc__p_p_FXRootWindow[] = {{&_swigt__p_p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
42486
- static swig_cast_info _swigc__p_p_FXPopup[] = {{&_swigt__p_p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
42487
- static swig_cast_info _swigc__p_p_FXTopWindow[] = {{&_swigt__p_p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
42566
+ static swig_cast_info _swigc__p_p_FXFrame[] = {{&_swigt__p_p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
42488
42567
  static swig_cast_info _swigc__p_p_FXMainWindow[] = {{&_swigt__p_p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
42568
+ static swig_cast_info _swigc__p_p_FXPopup[] = {{&_swigt__p_p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
42569
+ static swig_cast_info _swigc__p_p_FXRootWindow[] = {{&_swigt__p_p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
42570
+ static swig_cast_info _swigc__p_p_FXShell[] = {{&_swigt__p_p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
42489
42571
  static swig_cast_info _swigc__p_p_FXSplashWindow[] = {{&_swigt__p_p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
42490
- static swig_cast_info _swigc__p_p_FXFrame[] = {{&_swigt__p_p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
42491
- static swig_cast_info _swigc__p_p_FXWindow[] = { {&_swigt__p_p_FXComposite, _p_p_FXCompositeTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXShell, _p_p_FXShellTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXWindow, 0, 0, 0}, {&_swigt__p_p_FXRootWindow, _p_p_FXRootWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXPopup, _p_p_FXPopupTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXTopWindow, _p_p_FXTopWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXMainWindow, _p_p_FXMainWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXSplashWindow, _p_p_FXSplashWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXFrame, _p_p_FXFrameTo_p_p_FXWindow, 0, 0},{0, 0, 0, 0}};
42572
+ static swig_cast_info _swigc__p_p_FXTopWindow[] = {{&_swigt__p_p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
42573
+ static swig_cast_info _swigc__p_p_FXWindow[] = { {&_swigt__p_p_FXWindow, 0, 0, 0}, {&_swigt__p_p_FXComposite, _p_p_FXCompositeTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXFrame, _p_p_FXFrameTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXMainWindow, _p_p_FXMainWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXPopup, _p_p_FXPopupTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXRootWindow, _p_p_FXRootWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXShell, _p_p_FXShellTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXSplashWindow, _p_p_FXSplashWindowTo_p_p_FXWindow, 0, 0}, {&_swigt__p_p_FXTopWindow, _p_p_FXTopWindowTo_p_p_FXWindow, 0, 0},{0, 0, 0, 0}};
42492
42574
  static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}};
42493
42575
  static swig_cast_info _swigc__p_short[] = { {&_swigt__p_short, 0, 0, 0},{0, 0, 0, 0}};
42494
42576
  static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}};
@@ -42627,9 +42709,12 @@ extern "C" {
42627
42709
  #define SWIGRUNTIME_DEBUG
42628
42710
  #endif
42629
42711
 
42712
+ #ifndef SWIG_INIT_CLIENT_DATA_TYPE
42713
+ #define SWIG_INIT_CLIENT_DATA_TYPE void *
42714
+ #endif
42630
42715
 
42631
42716
  SWIGRUNTIME void
42632
- SWIG_InitializeModule(void *clientdata) {
42717
+ SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
42633
42718
  size_t i;
42634
42719
  swig_module_info *module_head, *iter;
42635
42720
  int init;