fxruby 1.6.47-x64-mingw-ucrt → 1.6.48-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +6 -1
- data/doap.rdf +1 -1
- data/ext/fox16_c/FXRuby.cpp +2 -2
- data/ext/fox16_c/core_wrap.cpp +497 -412
- data/ext/fox16_c/dc_wrap.cpp +215 -128
- data/ext/fox16_c/dialogs_wrap.cpp +1333 -1246
- data/ext/fox16_c/extconf.rb +3 -3
- data/ext/fox16_c/frames_wrap.cpp +633 -550
- data/ext/fox16_c/fx3d_wrap.cpp +1556 -1471
- data/ext/fox16_c/iconlist_wrap.cpp +555 -468
- data/ext/fox16_c/icons_wrap.cpp +1062 -975
- data/ext/fox16_c/image_wrap.cpp +912 -825
- data/ext/fox16_c/label_wrap.cpp +744 -657
- data/ext/fox16_c/layout_wrap.cpp +564 -477
- data/ext/fox16_c/list_wrap.cpp +556 -469
- data/ext/fox16_c/markfuncs.cpp +1 -1
- data/ext/fox16_c/mdi_wrap.cpp +1453 -1366
- data/ext/fox16_c/menu_wrap.cpp +1216 -1129
- data/ext/fox16_c/scintilla_wrap.cpp +1034 -943
- data/ext/fox16_c/swigruby.h +88 -28
- data/ext/fox16_c/table_wrap.cpp +1034 -945
- data/ext/fox16_c/text_wrap.cpp +1029 -942
- data/ext/fox16_c/treelist_wrap.cpp +1083 -996
- data/ext/fox16_c/ui_wrap.cpp +1210 -1123
- data/lib/3.1/fox16_c.so +0 -0
- data/lib/3.2/fox16_c.so +0 -0
- data/lib/3.3/fox16_c.so +0 -0
- data/lib/fox16/version.rb +1 -1
- data/ports/x64-mingw-ucrt/bin/libFOX-1.6-0.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libfxscintilla-20.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libjpeg-62.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libpng16-16.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libtiff-6.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/zlib1.dll +0 -0
- data/swig-interfaces/FXFileDialog.i +2 -2
- data/swig-interfaces/FXFileSelector.i +1 -1
- data/swig-interfaces/FXGLViewer.i +1 -1
- data/swig-interfaces/ruby-typemaps.i +1 -1
- metadata +2 -2
data/ext/fox16_c/layout_wrap.cpp
CHANGED
@@ -1,42 +1,14 @@
|
|
1
1
|
/* ----------------------------------------------------------------------------
|
2
|
-
* This file was automatically generated by SWIG (
|
3
|
-
* Version 4.0
|
2
|
+
* This file was automatically generated by SWIG (https://www.swig.org).
|
3
|
+
* Version 4.2.0
|
4
4
|
*
|
5
|
-
*
|
6
|
-
*
|
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
|
-
#
|
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
|
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
|
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.
|
642
|
-
|
643
|
-
|
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
|
-
/*
|
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
|
-
*
|
996
|
-
*
|
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) &&
|
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
|
-
|
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
|
-
}
|
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
|
-
|
1545
|
-
|
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
|
-
|
1602
|
-
|
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 =
|
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; }
|
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
|
|
@@ -1939,12 +1979,56 @@ static swig_module_info swig_module = {swig_types, 67, 0, 0, 0, 0};
|
|
1939
1979
|
|
1940
1980
|
|
1941
1981
|
|
1942
|
-
#
|
1943
|
-
#
|
1982
|
+
#ifdef __cplusplus
|
1983
|
+
#include <utility>
|
1984
|
+
/* SwigValueWrapper is described in swig.swg */
|
1985
|
+
template<typename T> class SwigValueWrapper {
|
1986
|
+
struct SwigSmartPointer {
|
1987
|
+
T *ptr;
|
1988
|
+
SwigSmartPointer(T *p) : ptr(p) { }
|
1989
|
+
~SwigSmartPointer() { delete ptr; }
|
1990
|
+
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
1991
|
+
void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
|
1992
|
+
} pointer;
|
1993
|
+
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
1994
|
+
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
1995
|
+
public:
|
1996
|
+
SwigValueWrapper() : pointer(0) { }
|
1997
|
+
SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
|
1998
|
+
#if __cplusplus >=201103L
|
1999
|
+
SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
|
2000
|
+
operator T&&() const { return std::move(*pointer.ptr); }
|
2001
|
+
#else
|
2002
|
+
operator T&() const { return *pointer.ptr; }
|
2003
|
+
#endif
|
2004
|
+
T *operator&() const { return pointer.ptr; }
|
2005
|
+
static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
|
2006
|
+
};
|
2007
|
+
|
2008
|
+
/*
|
2009
|
+
* SwigValueInit() is a generic initialisation solution as the following approach:
|
2010
|
+
*
|
2011
|
+
* T c_result = T();
|
2012
|
+
*
|
2013
|
+
* doesn't compile for all types for example:
|
2014
|
+
*
|
2015
|
+
* unsigned int c_result = unsigned int();
|
2016
|
+
*/
|
2017
|
+
template <typename T> T SwigValueInit() {
|
2018
|
+
return T();
|
2019
|
+
}
|
1944
2020
|
|
2021
|
+
#if __cplusplus >=201103L
|
2022
|
+
# define SWIG_STD_MOVE(OBJ) std::move(OBJ)
|
2023
|
+
#else
|
2024
|
+
# define SWIG_STD_MOVE(OBJ) OBJ
|
2025
|
+
#endif
|
2026
|
+
|
2027
|
+
#endif
|
1945
2028
|
|
1946
|
-
|
1947
|
-
#define
|
2029
|
+
|
2030
|
+
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
2031
|
+
#define SWIG_RUBY_THREAD_END_BLOCK
|
1948
2032
|
|
1949
2033
|
|
1950
2034
|
#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
|
@@ -4029,7 +4113,7 @@ _wrap_FXPacker_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
4029
4113
|
FXRegion *arg2 = 0 ;
|
4030
4114
|
void *argp1 = 0 ;
|
4031
4115
|
int res1 = 0 ;
|
4032
|
-
void *argp2 ;
|
4116
|
+
void *argp2 = 0 ;
|
4033
4117
|
int res2 = 0 ;
|
4034
4118
|
|
4035
4119
|
if ((argc < 1) || (argc > 1)) {
|
@@ -4125,7 +4209,7 @@ SWIGINTERN VALUE _wrap_FXPacker_setShape(int nargs, VALUE *args, VALUE self) {
|
|
4125
4209
|
argv[ii] = args[ii-1];
|
4126
4210
|
}
|
4127
4211
|
if (argc == 2) {
|
4128
|
-
int _v;
|
4212
|
+
int _v = 0;
|
4129
4213
|
void *vptr = 0;
|
4130
4214
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPacker, 0);
|
4131
4215
|
_v = SWIG_CheckState(res);
|
@@ -4139,7 +4223,7 @@ SWIGINTERN VALUE _wrap_FXPacker_setShape(int nargs, VALUE *args, VALUE self) {
|
|
4139
4223
|
}
|
4140
4224
|
}
|
4141
4225
|
if (argc == 2) {
|
4142
|
-
int _v;
|
4226
|
+
int _v = 0;
|
4143
4227
|
void *vptr = 0;
|
4144
4228
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPacker, 0);
|
4145
4229
|
_v = SWIG_CheckState(res);
|
@@ -4153,7 +4237,7 @@ SWIGINTERN VALUE _wrap_FXPacker_setShape(int nargs, VALUE *args, VALUE self) {
|
|
4153
4237
|
}
|
4154
4238
|
}
|
4155
4239
|
if (argc == 2) {
|
4156
|
-
int _v;
|
4240
|
+
int _v = 0;
|
4157
4241
|
void *vptr = 0;
|
4158
4242
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXPacker, 0);
|
4159
4243
|
_v = SWIG_CheckState(res);
|
@@ -5147,7 +5231,7 @@ _wrap_FXDockSite_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
5147
5231
|
FXRegion *arg2 = 0 ;
|
5148
5232
|
void *argp1 = 0 ;
|
5149
5233
|
int res1 = 0 ;
|
5150
|
-
void *argp2 ;
|
5234
|
+
void *argp2 = 0 ;
|
5151
5235
|
int res2 = 0 ;
|
5152
5236
|
|
5153
5237
|
if ((argc < 1) || (argc > 1)) {
|
@@ -5243,7 +5327,7 @@ SWIGINTERN VALUE _wrap_FXDockSite_setShape(int nargs, VALUE *args, VALUE self) {
|
|
5243
5327
|
argv[ii] = args[ii-1];
|
5244
5328
|
}
|
5245
5329
|
if (argc == 2) {
|
5246
|
-
int _v;
|
5330
|
+
int _v = 0;
|
5247
5331
|
void *vptr = 0;
|
5248
5332
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDockSite, 0);
|
5249
5333
|
_v = SWIG_CheckState(res);
|
@@ -5257,7 +5341,7 @@ SWIGINTERN VALUE _wrap_FXDockSite_setShape(int nargs, VALUE *args, VALUE self) {
|
|
5257
5341
|
}
|
5258
5342
|
}
|
5259
5343
|
if (argc == 2) {
|
5260
|
-
int _v;
|
5344
|
+
int _v = 0;
|
5261
5345
|
void *vptr = 0;
|
5262
5346
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDockSite, 0);
|
5263
5347
|
_v = SWIG_CheckState(res);
|
@@ -5271,7 +5355,7 @@ SWIGINTERN VALUE _wrap_FXDockSite_setShape(int nargs, VALUE *args, VALUE self) {
|
|
5271
5355
|
}
|
5272
5356
|
}
|
5273
5357
|
if (argc == 2) {
|
5274
|
-
int _v;
|
5358
|
+
int _v = 0;
|
5275
5359
|
void *vptr = 0;
|
5276
5360
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDockSite, 0);
|
5277
5361
|
_v = SWIG_CheckState(res);
|
@@ -5431,7 +5515,7 @@ SWIGINTERN VALUE _wrap_FXDockSite_dockToolBar(int nargs, VALUE *args, VALUE self
|
|
5431
5515
|
argv[ii] = args[ii-1];
|
5432
5516
|
}
|
5433
5517
|
if (argc == 3) {
|
5434
|
-
int _v;
|
5518
|
+
int _v = 0;
|
5435
5519
|
void *vptr = 0;
|
5436
5520
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDockSite, 0);
|
5437
5521
|
_v = SWIG_CheckState(res);
|
@@ -5450,7 +5534,7 @@ SWIGINTERN VALUE _wrap_FXDockSite_dockToolBar(int nargs, VALUE *args, VALUE self
|
|
5450
5534
|
}
|
5451
5535
|
}
|
5452
5536
|
if (argc == 4) {
|
5453
|
-
int _v;
|
5537
|
+
int _v = 0;
|
5454
5538
|
void *vptr = 0;
|
5455
5539
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDockSite, 0);
|
5456
5540
|
_v = SWIG_CheckState(res);
|
@@ -6516,7 +6600,7 @@ _wrap_FXSpring_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
6516
6600
|
FXRegion *arg2 = 0 ;
|
6517
6601
|
void *argp1 = 0 ;
|
6518
6602
|
int res1 = 0 ;
|
6519
|
-
void *argp2 ;
|
6603
|
+
void *argp2 = 0 ;
|
6520
6604
|
int res2 = 0 ;
|
6521
6605
|
|
6522
6606
|
if ((argc < 1) || (argc > 1)) {
|
@@ -6612,7 +6696,7 @@ SWIGINTERN VALUE _wrap_FXSpring_setShape(int nargs, VALUE *args, VALUE self) {
|
|
6612
6696
|
argv[ii] = args[ii-1];
|
6613
6697
|
}
|
6614
6698
|
if (argc == 2) {
|
6615
|
-
int _v;
|
6699
|
+
int _v = 0;
|
6616
6700
|
void *vptr = 0;
|
6617
6701
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSpring, 0);
|
6618
6702
|
_v = SWIG_CheckState(res);
|
@@ -6626,7 +6710,7 @@ SWIGINTERN VALUE _wrap_FXSpring_setShape(int nargs, VALUE *args, VALUE self) {
|
|
6626
6710
|
}
|
6627
6711
|
}
|
6628
6712
|
if (argc == 2) {
|
6629
|
-
int _v;
|
6713
|
+
int _v = 0;
|
6630
6714
|
void *vptr = 0;
|
6631
6715
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSpring, 0);
|
6632
6716
|
_v = SWIG_CheckState(res);
|
@@ -6640,7 +6724,7 @@ SWIGINTERN VALUE _wrap_FXSpring_setShape(int nargs, VALUE *args, VALUE self) {
|
|
6640
6724
|
}
|
6641
6725
|
}
|
6642
6726
|
if (argc == 2) {
|
6643
|
-
int _v;
|
6727
|
+
int _v = 0;
|
6644
6728
|
void *vptr = 0;
|
6645
6729
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSpring, 0);
|
6646
6730
|
_v = SWIG_CheckState(res);
|
@@ -7587,7 +7671,7 @@ _wrap_FXHorizontalFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
7587
7671
|
FXRegion *arg2 = 0 ;
|
7588
7672
|
void *argp1 = 0 ;
|
7589
7673
|
int res1 = 0 ;
|
7590
|
-
void *argp2 ;
|
7674
|
+
void *argp2 = 0 ;
|
7591
7675
|
int res2 = 0 ;
|
7592
7676
|
|
7593
7677
|
if ((argc < 1) || (argc > 1)) {
|
@@ -7683,7 +7767,7 @@ SWIGINTERN VALUE _wrap_FXHorizontalFrame_setShape(int nargs, VALUE *args, VALUE
|
|
7683
7767
|
argv[ii] = args[ii-1];
|
7684
7768
|
}
|
7685
7769
|
if (argc == 2) {
|
7686
|
-
int _v;
|
7770
|
+
int _v = 0;
|
7687
7771
|
void *vptr = 0;
|
7688
7772
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHorizontalFrame, 0);
|
7689
7773
|
_v = SWIG_CheckState(res);
|
@@ -7697,7 +7781,7 @@ SWIGINTERN VALUE _wrap_FXHorizontalFrame_setShape(int nargs, VALUE *args, VALUE
|
|
7697
7781
|
}
|
7698
7782
|
}
|
7699
7783
|
if (argc == 2) {
|
7700
|
-
int _v;
|
7784
|
+
int _v = 0;
|
7701
7785
|
void *vptr = 0;
|
7702
7786
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHorizontalFrame, 0);
|
7703
7787
|
_v = SWIG_CheckState(res);
|
@@ -7711,7 +7795,7 @@ SWIGINTERN VALUE _wrap_FXHorizontalFrame_setShape(int nargs, VALUE *args, VALUE
|
|
7711
7795
|
}
|
7712
7796
|
}
|
7713
7797
|
if (argc == 2) {
|
7714
|
-
int _v;
|
7798
|
+
int _v = 0;
|
7715
7799
|
void *vptr = 0;
|
7716
7800
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHorizontalFrame, 0);
|
7717
7801
|
_v = SWIG_CheckState(res);
|
@@ -8658,7 +8742,7 @@ _wrap_FXVerticalFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
8658
8742
|
FXRegion *arg2 = 0 ;
|
8659
8743
|
void *argp1 = 0 ;
|
8660
8744
|
int res1 = 0 ;
|
8661
|
-
void *argp2 ;
|
8745
|
+
void *argp2 = 0 ;
|
8662
8746
|
int res2 = 0 ;
|
8663
8747
|
|
8664
8748
|
if ((argc < 1) || (argc > 1)) {
|
@@ -8754,7 +8838,7 @@ SWIGINTERN VALUE _wrap_FXVerticalFrame_setShape(int nargs, VALUE *args, VALUE se
|
|
8754
8838
|
argv[ii] = args[ii-1];
|
8755
8839
|
}
|
8756
8840
|
if (argc == 2) {
|
8757
|
-
int _v;
|
8841
|
+
int _v = 0;
|
8758
8842
|
void *vptr = 0;
|
8759
8843
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXVerticalFrame, 0);
|
8760
8844
|
_v = SWIG_CheckState(res);
|
@@ -8768,7 +8852,7 @@ SWIGINTERN VALUE _wrap_FXVerticalFrame_setShape(int nargs, VALUE *args, VALUE se
|
|
8768
8852
|
}
|
8769
8853
|
}
|
8770
8854
|
if (argc == 2) {
|
8771
|
-
int _v;
|
8855
|
+
int _v = 0;
|
8772
8856
|
void *vptr = 0;
|
8773
8857
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXVerticalFrame, 0);
|
8774
8858
|
_v = SWIG_CheckState(res);
|
@@ -8782,7 +8866,7 @@ SWIGINTERN VALUE _wrap_FXVerticalFrame_setShape(int nargs, VALUE *args, VALUE se
|
|
8782
8866
|
}
|
8783
8867
|
}
|
8784
8868
|
if (argc == 2) {
|
8785
|
-
int _v;
|
8869
|
+
int _v = 0;
|
8786
8870
|
void *vptr = 0;
|
8787
8871
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXVerticalFrame, 0);
|
8788
8872
|
_v = SWIG_CheckState(res);
|
@@ -10113,7 +10197,7 @@ _wrap_FXMatrix_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
10113
10197
|
FXRegion *arg2 = 0 ;
|
10114
10198
|
void *argp1 = 0 ;
|
10115
10199
|
int res1 = 0 ;
|
10116
|
-
void *argp2 ;
|
10200
|
+
void *argp2 = 0 ;
|
10117
10201
|
int res2 = 0 ;
|
10118
10202
|
|
10119
10203
|
if ((argc < 1) || (argc > 1)) {
|
@@ -10209,7 +10293,7 @@ SWIGINTERN VALUE _wrap_FXMatrix_setShape(int nargs, VALUE *args, VALUE self) {
|
|
10209
10293
|
argv[ii] = args[ii-1];
|
10210
10294
|
}
|
10211
10295
|
if (argc == 2) {
|
10212
|
-
int _v;
|
10296
|
+
int _v = 0;
|
10213
10297
|
void *vptr = 0;
|
10214
10298
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMatrix, 0);
|
10215
10299
|
_v = SWIG_CheckState(res);
|
@@ -10223,7 +10307,7 @@ SWIGINTERN VALUE _wrap_FXMatrix_setShape(int nargs, VALUE *args, VALUE self) {
|
|
10223
10307
|
}
|
10224
10308
|
}
|
10225
10309
|
if (argc == 2) {
|
10226
|
-
int _v;
|
10310
|
+
int _v = 0;
|
10227
10311
|
void *vptr = 0;
|
10228
10312
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMatrix, 0);
|
10229
10313
|
_v = SWIG_CheckState(res);
|
@@ -10237,7 +10321,7 @@ SWIGINTERN VALUE _wrap_FXMatrix_setShape(int nargs, VALUE *args, VALUE self) {
|
|
10237
10321
|
}
|
10238
10322
|
}
|
10239
10323
|
if (argc == 2) {
|
10240
|
-
int _v;
|
10324
|
+
int _v = 0;
|
10241
10325
|
void *vptr = 0;
|
10242
10326
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMatrix, 0);
|
10243
10327
|
_v = SWIG_CheckState(res);
|
@@ -11529,7 +11613,7 @@ _wrap_FXGroupBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
11529
11613
|
FXRegion *arg2 = 0 ;
|
11530
11614
|
void *argp1 = 0 ;
|
11531
11615
|
int res1 = 0 ;
|
11532
|
-
void *argp2 ;
|
11616
|
+
void *argp2 = 0 ;
|
11533
11617
|
int res2 = 0 ;
|
11534
11618
|
|
11535
11619
|
if ((argc < 1) || (argc > 1)) {
|
@@ -11625,7 +11709,7 @@ SWIGINTERN VALUE _wrap_FXGroupBox_setShape(int nargs, VALUE *args, VALUE self) {
|
|
11625
11709
|
argv[ii] = args[ii-1];
|
11626
11710
|
}
|
11627
11711
|
if (argc == 2) {
|
11628
|
-
int _v;
|
11712
|
+
int _v = 0;
|
11629
11713
|
void *vptr = 0;
|
11630
11714
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXGroupBox, 0);
|
11631
11715
|
_v = SWIG_CheckState(res);
|
@@ -11639,7 +11723,7 @@ SWIGINTERN VALUE _wrap_FXGroupBox_setShape(int nargs, VALUE *args, VALUE self) {
|
|
11639
11723
|
}
|
11640
11724
|
}
|
11641
11725
|
if (argc == 2) {
|
11642
|
-
int _v;
|
11726
|
+
int _v = 0;
|
11643
11727
|
void *vptr = 0;
|
11644
11728
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXGroupBox, 0);
|
11645
11729
|
_v = SWIG_CheckState(res);
|
@@ -11653,7 +11737,7 @@ SWIGINTERN VALUE _wrap_FXGroupBox_setShape(int nargs, VALUE *args, VALUE self) {
|
|
11653
11737
|
}
|
11654
11738
|
}
|
11655
11739
|
if (argc == 2) {
|
11656
|
-
int _v;
|
11740
|
+
int _v = 0;
|
11657
11741
|
void *vptr = 0;
|
11658
11742
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXGroupBox, 0);
|
11659
11743
|
_v = SWIG_CheckState(res);
|
@@ -12915,7 +12999,7 @@ _wrap_FXSwitcher_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
12915
12999
|
FXRegion *arg2 = 0 ;
|
12916
13000
|
void *argp1 = 0 ;
|
12917
13001
|
int res1 = 0 ;
|
12918
|
-
void *argp2 ;
|
13002
|
+
void *argp2 = 0 ;
|
12919
13003
|
int res2 = 0 ;
|
12920
13004
|
|
12921
13005
|
if ((argc < 1) || (argc > 1)) {
|
@@ -13011,7 +13095,7 @@ SWIGINTERN VALUE _wrap_FXSwitcher_setShape(int nargs, VALUE *args, VALUE self) {
|
|
13011
13095
|
argv[ii] = args[ii-1];
|
13012
13096
|
}
|
13013
13097
|
if (argc == 2) {
|
13014
|
-
int _v;
|
13098
|
+
int _v = 0;
|
13015
13099
|
void *vptr = 0;
|
13016
13100
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSwitcher, 0);
|
13017
13101
|
_v = SWIG_CheckState(res);
|
@@ -13025,7 +13109,7 @@ SWIGINTERN VALUE _wrap_FXSwitcher_setShape(int nargs, VALUE *args, VALUE self) {
|
|
13025
13109
|
}
|
13026
13110
|
}
|
13027
13111
|
if (argc == 2) {
|
13028
|
-
int _v;
|
13112
|
+
int _v = 0;
|
13029
13113
|
void *vptr = 0;
|
13030
13114
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSwitcher, 0);
|
13031
13115
|
_v = SWIG_CheckState(res);
|
@@ -13039,7 +13123,7 @@ SWIGINTERN VALUE _wrap_FXSwitcher_setShape(int nargs, VALUE *args, VALUE self) {
|
|
13039
13123
|
}
|
13040
13124
|
}
|
13041
13125
|
if (argc == 2) {
|
13042
|
-
int _v;
|
13126
|
+
int _v = 0;
|
13043
13127
|
void *vptr = 0;
|
13044
13128
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSwitcher, 0);
|
13045
13129
|
_v = SWIG_CheckState(res);
|
@@ -14255,7 +14339,7 @@ _wrap_FXShutterItem_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
14255
14339
|
FXRegion *arg2 = 0 ;
|
14256
14340
|
void *argp1 = 0 ;
|
14257
14341
|
int res1 = 0 ;
|
14258
|
-
void *argp2 ;
|
14342
|
+
void *argp2 = 0 ;
|
14259
14343
|
int res2 = 0 ;
|
14260
14344
|
|
14261
14345
|
if ((argc < 1) || (argc > 1)) {
|
@@ -14351,7 +14435,7 @@ SWIGINTERN VALUE _wrap_FXShutterItem_setShape(int nargs, VALUE *args, VALUE self
|
|
14351
14435
|
argv[ii] = args[ii-1];
|
14352
14436
|
}
|
14353
14437
|
if (argc == 2) {
|
14354
|
-
int _v;
|
14438
|
+
int _v = 0;
|
14355
14439
|
void *vptr = 0;
|
14356
14440
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShutterItem, 0);
|
14357
14441
|
_v = SWIG_CheckState(res);
|
@@ -14365,7 +14449,7 @@ SWIGINTERN VALUE _wrap_FXShutterItem_setShape(int nargs, VALUE *args, VALUE self
|
|
14365
14449
|
}
|
14366
14450
|
}
|
14367
14451
|
if (argc == 2) {
|
14368
|
-
int _v;
|
14452
|
+
int _v = 0;
|
14369
14453
|
void *vptr = 0;
|
14370
14454
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShutterItem, 0);
|
14371
14455
|
_v = SWIG_CheckState(res);
|
@@ -14379,7 +14463,7 @@ SWIGINTERN VALUE _wrap_FXShutterItem_setShape(int nargs, VALUE *args, VALUE self
|
|
14379
14463
|
}
|
14380
14464
|
}
|
14381
14465
|
if (argc == 2) {
|
14382
|
-
int _v;
|
14466
|
+
int _v = 0;
|
14383
14467
|
void *vptr = 0;
|
14384
14468
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShutterItem, 0);
|
14385
14469
|
_v = SWIG_CheckState(res);
|
@@ -15692,7 +15776,7 @@ _wrap_FXShutter_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
15692
15776
|
FXRegion *arg2 = 0 ;
|
15693
15777
|
void *argp1 = 0 ;
|
15694
15778
|
int res1 = 0 ;
|
15695
|
-
void *argp2 ;
|
15779
|
+
void *argp2 = 0 ;
|
15696
15780
|
int res2 = 0 ;
|
15697
15781
|
|
15698
15782
|
if ((argc < 1) || (argc > 1)) {
|
@@ -15788,7 +15872,7 @@ SWIGINTERN VALUE _wrap_FXShutter_setShape(int nargs, VALUE *args, VALUE self) {
|
|
15788
15872
|
argv[ii] = args[ii-1];
|
15789
15873
|
}
|
15790
15874
|
if (argc == 2) {
|
15791
|
-
int _v;
|
15875
|
+
int _v = 0;
|
15792
15876
|
void *vptr = 0;
|
15793
15877
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShutter, 0);
|
15794
15878
|
_v = SWIG_CheckState(res);
|
@@ -15802,7 +15886,7 @@ SWIGINTERN VALUE _wrap_FXShutter_setShape(int nargs, VALUE *args, VALUE self) {
|
|
15802
15886
|
}
|
15803
15887
|
}
|
15804
15888
|
if (argc == 2) {
|
15805
|
-
int _v;
|
15889
|
+
int _v = 0;
|
15806
15890
|
void *vptr = 0;
|
15807
15891
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShutter, 0);
|
15808
15892
|
_v = SWIG_CheckState(res);
|
@@ -15816,7 +15900,7 @@ SWIGINTERN VALUE _wrap_FXShutter_setShape(int nargs, VALUE *args, VALUE self) {
|
|
15816
15900
|
}
|
15817
15901
|
}
|
15818
15902
|
if (argc == 2) {
|
15819
|
-
int _v;
|
15903
|
+
int _v = 0;
|
15820
15904
|
void *vptr = 0;
|
15821
15905
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXShutter, 0);
|
15822
15906
|
_v = SWIG_CheckState(res);
|
@@ -16352,7 +16436,7 @@ SWIGINTERN VALUE _wrap_new_FXSplitter(int nargs, VALUE *args, VALUE self) {
|
|
16352
16436
|
argv[ii] = args[ii];
|
16353
16437
|
}
|
16354
16438
|
if ((argc >= 1) && (argc <= 6)) {
|
16355
|
-
int _v;
|
16439
|
+
int _v = 0;
|
16356
16440
|
void *vptr = 0;
|
16357
16441
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
|
16358
16442
|
_v = SWIG_CheckState(res);
|
@@ -16401,7 +16485,7 @@ SWIGINTERN VALUE _wrap_new_FXSplitter(int nargs, VALUE *args, VALUE self) {
|
|
16401
16485
|
}
|
16402
16486
|
}
|
16403
16487
|
if ((argc >= 3) && (argc <= 8)) {
|
16404
|
-
int _v;
|
16488
|
+
int _v = 0;
|
16405
16489
|
void *vptr = 0;
|
16406
16490
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
|
16407
16491
|
_v = SWIG_CheckState(res);
|
@@ -17432,7 +17516,7 @@ _wrap_FXSplitter_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
17432
17516
|
FXRegion *arg2 = 0 ;
|
17433
17517
|
void *argp1 = 0 ;
|
17434
17518
|
int res1 = 0 ;
|
17435
|
-
void *argp2 ;
|
17519
|
+
void *argp2 = 0 ;
|
17436
17520
|
int res2 = 0 ;
|
17437
17521
|
|
17438
17522
|
if ((argc < 1) || (argc > 1)) {
|
@@ -17528,7 +17612,7 @@ SWIGINTERN VALUE _wrap_FXSplitter_setShape(int nargs, VALUE *args, VALUE self) {
|
|
17528
17612
|
argv[ii] = args[ii-1];
|
17529
17613
|
}
|
17530
17614
|
if (argc == 2) {
|
17531
|
-
int _v;
|
17615
|
+
int _v = 0;
|
17532
17616
|
void *vptr = 0;
|
17533
17617
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplitter, 0);
|
17534
17618
|
_v = SWIG_CheckState(res);
|
@@ -17542,7 +17626,7 @@ SWIGINTERN VALUE _wrap_FXSplitter_setShape(int nargs, VALUE *args, VALUE self) {
|
|
17542
17626
|
}
|
17543
17627
|
}
|
17544
17628
|
if (argc == 2) {
|
17545
|
-
int _v;
|
17629
|
+
int _v = 0;
|
17546
17630
|
void *vptr = 0;
|
17547
17631
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplitter, 0);
|
17548
17632
|
_v = SWIG_CheckState(res);
|
@@ -17556,7 +17640,7 @@ SWIGINTERN VALUE _wrap_FXSplitter_setShape(int nargs, VALUE *args, VALUE self) {
|
|
17556
17640
|
}
|
17557
17641
|
}
|
17558
17642
|
if (argc == 2) {
|
17559
|
-
int _v;
|
17643
|
+
int _v = 0;
|
17560
17644
|
void *vptr = 0;
|
17561
17645
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSplitter, 0);
|
17562
17646
|
_v = SWIG_CheckState(res);
|
@@ -18077,7 +18161,7 @@ SWIGINTERN VALUE _wrap_new_FX4Splitter(int nargs, VALUE *args, VALUE self) {
|
|
18077
18161
|
argv[ii] = args[ii];
|
18078
18162
|
}
|
18079
18163
|
if ((argc >= 1) && (argc <= 6)) {
|
18080
|
-
int _v;
|
18164
|
+
int _v = 0;
|
18081
18165
|
void *vptr = 0;
|
18082
18166
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
|
18083
18167
|
_v = SWIG_CheckState(res);
|
@@ -18126,7 +18210,7 @@ SWIGINTERN VALUE _wrap_new_FX4Splitter(int nargs, VALUE *args, VALUE self) {
|
|
18126
18210
|
}
|
18127
18211
|
}
|
18128
18212
|
if ((argc >= 3) && (argc <= 8)) {
|
18129
|
-
int _v;
|
18213
|
+
int _v = 0;
|
18130
18214
|
void *vptr = 0;
|
18131
18215
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
|
18132
18216
|
_v = SWIG_CheckState(res);
|
@@ -19347,7 +19431,7 @@ _wrap_FX4Splitter_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
19347
19431
|
FXRegion *arg2 = 0 ;
|
19348
19432
|
void *argp1 = 0 ;
|
19349
19433
|
int res1 = 0 ;
|
19350
|
-
void *argp2 ;
|
19434
|
+
void *argp2 = 0 ;
|
19351
19435
|
int res2 = 0 ;
|
19352
19436
|
|
19353
19437
|
if ((argc < 1) || (argc > 1)) {
|
@@ -19443,7 +19527,7 @@ SWIGINTERN VALUE _wrap_FX4Splitter_setShape(int nargs, VALUE *args, VALUE self)
|
|
19443
19527
|
argv[ii] = args[ii-1];
|
19444
19528
|
}
|
19445
19529
|
if (argc == 2) {
|
19446
|
-
int _v;
|
19530
|
+
int _v = 0;
|
19447
19531
|
void *vptr = 0;
|
19448
19532
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FX4Splitter, 0);
|
19449
19533
|
_v = SWIG_CheckState(res);
|
@@ -19457,7 +19541,7 @@ SWIGINTERN VALUE _wrap_FX4Splitter_setShape(int nargs, VALUE *args, VALUE self)
|
|
19457
19541
|
}
|
19458
19542
|
}
|
19459
19543
|
if (argc == 2) {
|
19460
|
-
int _v;
|
19544
|
+
int _v = 0;
|
19461
19545
|
void *vptr = 0;
|
19462
19546
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FX4Splitter, 0);
|
19463
19547
|
_v = SWIG_CheckState(res);
|
@@ -19471,7 +19555,7 @@ SWIGINTERN VALUE _wrap_FX4Splitter_setShape(int nargs, VALUE *args, VALUE self)
|
|
19471
19555
|
}
|
19472
19556
|
}
|
19473
19557
|
if (argc == 2) {
|
19474
|
-
int _v;
|
19558
|
+
int _v = 0;
|
19475
19559
|
void *vptr = 0;
|
19476
19560
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FX4Splitter, 0);
|
19477
19561
|
_v = SWIG_CheckState(res);
|
@@ -20521,7 +20605,7 @@ _wrap_FXStatusBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
20521
20605
|
FXRegion *arg2 = 0 ;
|
20522
20606
|
void *argp1 = 0 ;
|
20523
20607
|
int res1 = 0 ;
|
20524
|
-
void *argp2 ;
|
20608
|
+
void *argp2 = 0 ;
|
20525
20609
|
int res2 = 0 ;
|
20526
20610
|
|
20527
20611
|
if ((argc < 1) || (argc > 1)) {
|
@@ -20617,7 +20701,7 @@ SWIGINTERN VALUE _wrap_FXStatusBar_setShape(int nargs, VALUE *args, VALUE self)
|
|
20617
20701
|
argv[ii] = args[ii-1];
|
20618
20702
|
}
|
20619
20703
|
if (argc == 2) {
|
20620
|
-
int _v;
|
20704
|
+
int _v = 0;
|
20621
20705
|
void *vptr = 0;
|
20622
20706
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStatusBar, 0);
|
20623
20707
|
_v = SWIG_CheckState(res);
|
@@ -20631,7 +20715,7 @@ SWIGINTERN VALUE _wrap_FXStatusBar_setShape(int nargs, VALUE *args, VALUE self)
|
|
20631
20715
|
}
|
20632
20716
|
}
|
20633
20717
|
if (argc == 2) {
|
20634
|
-
int _v;
|
20718
|
+
int _v = 0;
|
20635
20719
|
void *vptr = 0;
|
20636
20720
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStatusBar, 0);
|
20637
20721
|
_v = SWIG_CheckState(res);
|
@@ -20645,7 +20729,7 @@ SWIGINTERN VALUE _wrap_FXStatusBar_setShape(int nargs, VALUE *args, VALUE self)
|
|
20645
20729
|
}
|
20646
20730
|
}
|
20647
20731
|
if (argc == 2) {
|
20648
|
-
int _v;
|
20732
|
+
int _v = 0;
|
20649
20733
|
void *vptr = 0;
|
20650
20734
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStatusBar, 0);
|
20651
20735
|
_v = SWIG_CheckState(res);
|
@@ -22042,7 +22126,7 @@ _wrap_FXScrollArea_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
22042
22126
|
FXRegion *arg2 = 0 ;
|
22043
22127
|
void *argp1 = 0 ;
|
22044
22128
|
int res1 = 0 ;
|
22045
|
-
void *argp2 ;
|
22129
|
+
void *argp2 = 0 ;
|
22046
22130
|
int res2 = 0 ;
|
22047
22131
|
|
22048
22132
|
if ((argc < 1) || (argc > 1)) {
|
@@ -22138,7 +22222,7 @@ SWIGINTERN VALUE _wrap_FXScrollArea_setShape(int nargs, VALUE *args, VALUE self)
|
|
22138
22222
|
argv[ii] = args[ii-1];
|
22139
22223
|
}
|
22140
22224
|
if (argc == 2) {
|
22141
|
-
int _v;
|
22225
|
+
int _v = 0;
|
22142
22226
|
void *vptr = 0;
|
22143
22227
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollArea, 0);
|
22144
22228
|
_v = SWIG_CheckState(res);
|
@@ -22152,7 +22236,7 @@ SWIGINTERN VALUE _wrap_FXScrollArea_setShape(int nargs, VALUE *args, VALUE self)
|
|
22152
22236
|
}
|
22153
22237
|
}
|
22154
22238
|
if (argc == 2) {
|
22155
|
-
int _v;
|
22239
|
+
int _v = 0;
|
22156
22240
|
void *vptr = 0;
|
22157
22241
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollArea, 0);
|
22158
22242
|
_v = SWIG_CheckState(res);
|
@@ -22166,7 +22250,7 @@ SWIGINTERN VALUE _wrap_FXScrollArea_setShape(int nargs, VALUE *args, VALUE self)
|
|
22166
22250
|
}
|
22167
22251
|
}
|
22168
22252
|
if (argc == 2) {
|
22169
|
-
int _v;
|
22253
|
+
int _v = 0;
|
22170
22254
|
void *vptr = 0;
|
22171
22255
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollArea, 0);
|
22172
22256
|
_v = SWIG_CheckState(res);
|
@@ -22343,7 +22427,7 @@ SWIGINTERN VALUE _wrap_FXScrollArea_position(int nargs, VALUE *args, VALUE self)
|
|
22343
22427
|
argv[ii] = args[ii-1];
|
22344
22428
|
}
|
22345
22429
|
if (argc == 1) {
|
22346
|
-
int _v;
|
22430
|
+
int _v = 0;
|
22347
22431
|
void *vptr = 0;
|
22348
22432
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollArea, 0);
|
22349
22433
|
_v = SWIG_CheckState(res);
|
@@ -22352,7 +22436,7 @@ SWIGINTERN VALUE _wrap_FXScrollArea_position(int nargs, VALUE *args, VALUE self)
|
|
22352
22436
|
}
|
22353
22437
|
}
|
22354
22438
|
if (argc == 5) {
|
22355
|
-
int _v;
|
22439
|
+
int _v = 0;
|
22356
22440
|
void *vptr = 0;
|
22357
22441
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollArea, 0);
|
22358
22442
|
_v = SWIG_CheckState(res);
|
@@ -23403,7 +23487,7 @@ _wrap_FXScrollWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
23403
23487
|
FXRegion *arg2 = 0 ;
|
23404
23488
|
void *argp1 = 0 ;
|
23405
23489
|
int res1 = 0 ;
|
23406
|
-
void *argp2 ;
|
23490
|
+
void *argp2 = 0 ;
|
23407
23491
|
int res2 = 0 ;
|
23408
23492
|
|
23409
23493
|
if ((argc < 1) || (argc > 1)) {
|
@@ -23499,7 +23583,7 @@ SWIGINTERN VALUE _wrap_FXScrollWindow_setShape(int nargs, VALUE *args, VALUE sel
|
|
23499
23583
|
argv[ii] = args[ii-1];
|
23500
23584
|
}
|
23501
23585
|
if (argc == 2) {
|
23502
|
-
int _v;
|
23586
|
+
int _v = 0;
|
23503
23587
|
void *vptr = 0;
|
23504
23588
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollWindow, 0);
|
23505
23589
|
_v = SWIG_CheckState(res);
|
@@ -23513,7 +23597,7 @@ SWIGINTERN VALUE _wrap_FXScrollWindow_setShape(int nargs, VALUE *args, VALUE sel
|
|
23513
23597
|
}
|
23514
23598
|
}
|
23515
23599
|
if (argc == 2) {
|
23516
|
-
int _v;
|
23600
|
+
int _v = 0;
|
23517
23601
|
void *vptr = 0;
|
23518
23602
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollWindow, 0);
|
23519
23603
|
_v = SWIG_CheckState(res);
|
@@ -23527,7 +23611,7 @@ SWIGINTERN VALUE _wrap_FXScrollWindow_setShape(int nargs, VALUE *args, VALUE sel
|
|
23527
23611
|
}
|
23528
23612
|
}
|
23529
23613
|
if (argc == 2) {
|
23530
|
-
int _v;
|
23614
|
+
int _v = 0;
|
23531
23615
|
void *vptr = 0;
|
23532
23616
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollWindow, 0);
|
23533
23617
|
_v = SWIG_CheckState(res);
|
@@ -23704,7 +23788,7 @@ SWIGINTERN VALUE _wrap_FXScrollWindow_position(int nargs, VALUE *args, VALUE sel
|
|
23704
23788
|
argv[ii] = args[ii-1];
|
23705
23789
|
}
|
23706
23790
|
if (argc == 1) {
|
23707
|
-
int _v;
|
23791
|
+
int _v = 0;
|
23708
23792
|
void *vptr = 0;
|
23709
23793
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollWindow, 0);
|
23710
23794
|
_v = SWIG_CheckState(res);
|
@@ -23713,7 +23797,7 @@ SWIGINTERN VALUE _wrap_FXScrollWindow_position(int nargs, VALUE *args, VALUE sel
|
|
23713
23797
|
}
|
23714
23798
|
}
|
23715
23799
|
if (argc == 5) {
|
23716
|
-
int _v;
|
23800
|
+
int _v = 0;
|
23717
23801
|
void *vptr = 0;
|
23718
23802
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollWindow, 0);
|
23719
23803
|
_v = SWIG_CheckState(res);
|
@@ -23754,386 +23838,401 @@ fail:
|
|
23754
23838
|
|
23755
23839
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
23756
23840
|
|
23841
|
+
static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23842
|
+
return (void *)((FXComposite *) ((FX4Splitter *) x));
|
23843
|
+
}
|
23757
23844
|
static void *_p_FXDockSiteTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23758
23845
|
return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
|
23759
23846
|
}
|
23760
|
-
static void *
|
23761
|
-
return (void *)((FXComposite *) (
|
23762
|
-
}
|
23763
|
-
static void *_p_FXShutterItemTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23764
|
-
return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
23765
|
-
}
|
23766
|
-
static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23767
|
-
return (void *)((FXComposite *) ((FXScrollArea *) x));
|
23768
|
-
}
|
23769
|
-
static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23770
|
-
return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
23847
|
+
static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23848
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
|
23771
23849
|
}
|
23772
|
-
static void *
|
23773
|
-
return (void *)((FXComposite *) (
|
23850
|
+
static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23851
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
|
23774
23852
|
}
|
23775
23853
|
static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23776
23854
|
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
23777
23855
|
}
|
23778
|
-
static void *
|
23779
|
-
return (void *)((FXComposite *) (
|
23856
|
+
static void *_p_FXMatrixTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23857
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
|
23858
|
+
}
|
23859
|
+
static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23860
|
+
return (void *)((FXComposite *) ((FXPacker *) x));
|
23861
|
+
}
|
23862
|
+
static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23863
|
+
return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
|
23780
23864
|
}
|
23781
23865
|
static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23782
23866
|
return (void *)((FXComposite *) ((FXRootWindow *) x));
|
23783
23867
|
}
|
23868
|
+
static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23869
|
+
return (void *)((FXComposite *) ((FXScrollArea *) x));
|
23870
|
+
}
|
23784
23871
|
static void *_p_FXScrollWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23785
23872
|
return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
|
23786
23873
|
}
|
23787
23874
|
static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23788
23875
|
return (void *)((FXComposite *) ((FXShell *) x));
|
23789
23876
|
}
|
23790
|
-
static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23791
|
-
return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
|
23792
|
-
}
|
23793
|
-
static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23794
|
-
return (void *)((FXComposite *) ((FXSplitter *) x));
|
23795
|
-
}
|
23796
|
-
static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23797
|
-
return (void *)((FXComposite *) ((FX4Splitter *) x));
|
23798
|
-
}
|
23799
|
-
static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23800
|
-
return (void *)((FXComposite *) ((FXPacker *) x));
|
23801
|
-
}
|
23802
|
-
static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23803
|
-
return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
|
23804
|
-
}
|
23805
|
-
static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23806
|
-
return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
|
23807
|
-
}
|
23808
23877
|
static void *_p_FXShutterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23809
23878
|
return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
23810
23879
|
}
|
23811
|
-
static void *
|
23812
|
-
return (void *)((FXComposite *) (FXPacker *) ((
|
23880
|
+
static void *_p_FXShutterItemTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23881
|
+
return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
23882
|
+
}
|
23883
|
+
static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23884
|
+
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
23885
|
+
}
|
23886
|
+
static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23887
|
+
return (void *)((FXComposite *) ((FXSplitter *) x));
|
23813
23888
|
}
|
23814
23889
|
static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23815
23890
|
return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
|
23816
23891
|
}
|
23892
|
+
static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23893
|
+
return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
23894
|
+
}
|
23817
23895
|
static void *_p_FXSwitcherTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23818
23896
|
return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
|
23819
23897
|
}
|
23820
|
-
static void *
|
23821
|
-
return (void *)((
|
23898
|
+
static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23899
|
+
return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
|
23822
23900
|
}
|
23823
|
-
static void *
|
23824
|
-
return (void *)((
|
23901
|
+
static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23902
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
|
23825
23903
|
}
|
23826
|
-
static void *
|
23827
|
-
return (void *)((FXWindow *)
|
23904
|
+
static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23905
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
23828
23906
|
}
|
23829
|
-
static void *
|
23830
|
-
return (void *)((
|
23907
|
+
static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23908
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
|
23831
23909
|
}
|
23832
|
-
static void *
|
23833
|
-
return (void *)((
|
23910
|
+
static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23911
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
23834
23912
|
}
|
23835
|
-
static void *
|
23836
|
-
return (void *)((
|
23913
|
+
static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23914
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
|
23837
23915
|
}
|
23838
|
-
static void *
|
23839
|
-
return (void *)((
|
23916
|
+
static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23917
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
23840
23918
|
}
|
23841
|
-
static void *
|
23842
|
-
return (void *)((
|
23919
|
+
static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23920
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
23843
23921
|
}
|
23844
|
-
static void *
|
23845
|
-
return (void *)((
|
23922
|
+
static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23923
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
23846
23924
|
}
|
23847
|
-
static void *
|
23848
|
-
return (void *)((
|
23925
|
+
static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23926
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
23849
23927
|
}
|
23850
|
-
static void *
|
23851
|
-
return (void *)((
|
23928
|
+
static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23929
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
|
23852
23930
|
}
|
23853
|
-
static void *
|
23854
|
-
return (void *)((FXWindow *)
|
23931
|
+
static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23932
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
23855
23933
|
}
|
23856
|
-
static void *
|
23857
|
-
return (void *)((
|
23934
|
+
static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23935
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
23858
23936
|
}
|
23859
|
-
static void *
|
23860
|
-
return (void *)((
|
23937
|
+
static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23938
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
23861
23939
|
}
|
23862
|
-
static void *
|
23863
|
-
return (void *)((
|
23940
|
+
static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23941
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
23864
23942
|
}
|
23865
|
-
static void *
|
23866
|
-
return (void *)((
|
23943
|
+
static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23944
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
|
23867
23945
|
}
|
23868
|
-
static void *
|
23869
|
-
return (void *)((
|
23946
|
+
static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23947
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
23870
23948
|
}
|
23871
|
-
static void *
|
23872
|
-
return (void *)((
|
23949
|
+
static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23950
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
23873
23951
|
}
|
23874
|
-
static void *
|
23875
|
-
return (void *)((
|
23952
|
+
static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23953
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
23876
23954
|
}
|
23877
|
-
static void *
|
23878
|
-
return (void *)((
|
23955
|
+
static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23956
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
23879
23957
|
}
|
23880
|
-
static void *
|
23881
|
-
return (void *)((
|
23958
|
+
static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23959
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
23882
23960
|
}
|
23883
|
-
static void *
|
23884
|
-
return (void *)((
|
23961
|
+
static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23962
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
23885
23963
|
}
|
23886
|
-
static void *
|
23887
|
-
return (void *)((
|
23964
|
+
static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23965
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
23888
23966
|
}
|
23889
|
-
static void *
|
23890
|
-
return (void *)((
|
23967
|
+
static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23968
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
23891
23969
|
}
|
23892
|
-
static void *
|
23893
|
-
return (void *)((
|
23970
|
+
static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23971
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
23894
23972
|
}
|
23895
|
-
static void *
|
23896
|
-
return (void *)((
|
23973
|
+
static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23974
|
+
return (void *)((FXDrawable *) ((FXWindow *) x));
|
23897
23975
|
}
|
23898
23976
|
static void *_p_FXStatusBarTo_p_FXHorizontalFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23899
23977
|
return (void *)((FXHorizontalFrame *) ((FXStatusBar *) x));
|
23900
23978
|
}
|
23901
|
-
static void *
|
23902
|
-
return (void *)((
|
23979
|
+
static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23980
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
23903
23981
|
}
|
23904
|
-
static void *
|
23905
|
-
return (void *)((
|
23982
|
+
static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23983
|
+
return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
|
23906
23984
|
}
|
23907
|
-
static void *
|
23908
|
-
return (void *)((
|
23985
|
+
static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23986
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
23909
23987
|
}
|
23910
|
-
static void *
|
23911
|
-
return (void *)((
|
23988
|
+
static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23989
|
+
return (void *)((FXId *) ((FXCursor *) x));
|
23912
23990
|
}
|
23913
|
-
static void *
|
23914
|
-
return (void *)((
|
23991
|
+
static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23992
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
23915
23993
|
}
|
23916
|
-
static void *
|
23917
|
-
return (void *)((
|
23994
|
+
static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23995
|
+
return (void *)((FXId *) ((FXDrawable *) x));
|
23918
23996
|
}
|
23919
|
-
static void *
|
23920
|
-
return (void *)((
|
23997
|
+
static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
23998
|
+
return (void *)((FXId *) ((FXFont *) x));
|
23921
23999
|
}
|
23922
|
-
static void *
|
23923
|
-
return (void *)((
|
24000
|
+
static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24001
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
23924
24002
|
}
|
23925
|
-
static void *
|
23926
|
-
return (void *)((
|
24003
|
+
static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24004
|
+
return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
|
23927
24005
|
}
|
23928
|
-
static void *
|
23929
|
-
return (void *)((
|
24006
|
+
static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24007
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
23930
24008
|
}
|
23931
|
-
static void *
|
23932
|
-
return (void *)((
|
24009
|
+
static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24010
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
23933
24011
|
}
|
23934
|
-
static void *
|
23935
|
-
return (void *)((
|
24012
|
+
static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24013
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
23936
24014
|
}
|
23937
|
-
static void *
|
23938
|
-
return (void *)((
|
24015
|
+
static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24016
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
23939
24017
|
}
|
23940
|
-
static void *
|
23941
|
-
return (void *)((
|
24018
|
+
static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24019
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
23942
24020
|
}
|
23943
|
-
static void *
|
23944
|
-
return (void *)((
|
24021
|
+
static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24022
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
23945
24023
|
}
|
23946
|
-
static void *
|
23947
|
-
return (void *)((
|
24024
|
+
static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24025
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
23948
24026
|
}
|
23949
|
-
static void *
|
23950
|
-
return (void *)((
|
24027
|
+
static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24028
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
23951
24029
|
}
|
23952
|
-
static void *
|
23953
|
-
return (void *)((
|
24030
|
+
static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24031
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
23954
24032
|
}
|
23955
|
-
static void *
|
23956
|
-
return (void *)((
|
24033
|
+
static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24034
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
23957
24035
|
}
|
23958
|
-
static void *
|
23959
|
-
return (void *)((
|
24036
|
+
static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24037
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
23960
24038
|
}
|
23961
|
-
static void *
|
23962
|
-
return (void *)((
|
24039
|
+
static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24040
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
23963
24041
|
}
|
23964
|
-
static void *
|
23965
|
-
return (void *)((
|
24042
|
+
static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24043
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
23966
24044
|
}
|
23967
|
-
static void *
|
23968
|
-
return (void *)((
|
24045
|
+
static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24046
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
23969
24047
|
}
|
23970
|
-
static void *
|
23971
|
-
return (void *)((
|
24048
|
+
static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24049
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
23972
24050
|
}
|
23973
|
-
static void *
|
23974
|
-
return (void *)((
|
24051
|
+
static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24052
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
23975
24053
|
}
|
23976
|
-
static void *
|
23977
|
-
return (void *)((
|
24054
|
+
static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24055
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
23978
24056
|
}
|
23979
|
-
static void *
|
23980
|
-
return (void *)((
|
24057
|
+
static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24058
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
23981
24059
|
}
|
23982
|
-
static void *
|
23983
|
-
return (void *)((
|
24060
|
+
static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24061
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
23984
24062
|
}
|
23985
|
-
static void *
|
23986
|
-
return (void *)((
|
24063
|
+
static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24064
|
+
return (void *)((FXId *) ((FXVisual *) x));
|
23987
24065
|
}
|
23988
|
-
static void *
|
23989
|
-
return (void *)((
|
24066
|
+
static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24067
|
+
return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
|
23990
24068
|
}
|
23991
|
-
static void *
|
23992
|
-
return (void *)((FXObject *)
|
24069
|
+
static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24070
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
23993
24071
|
}
|
23994
|
-
static void *
|
23995
|
-
return (void *)((FXObject *)
|
24072
|
+
static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24073
|
+
return (void *)((FXObject *) ((FXAccelTable *) x));
|
23996
24074
|
}
|
23997
|
-
static void *
|
23998
|
-
return (void *)((FXObject *)
|
24075
|
+
static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24076
|
+
return (void *)((FXObject *) ((FXApp *) x));
|
23999
24077
|
}
|
24000
24078
|
static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24001
24079
|
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
|
24002
24080
|
}
|
24081
|
+
static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24082
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
24083
|
+
}
|
24003
24084
|
static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24004
24085
|
return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
|
24005
24086
|
}
|
24006
|
-
static void *
|
24007
|
-
return (void *)((FXObject *) ((
|
24087
|
+
static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24088
|
+
return (void *)((FXObject *) ((FXDataTarget *) x));
|
24008
24089
|
}
|
24009
|
-
static void *
|
24010
|
-
return (void *)((FXObject *)
|
24090
|
+
static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24091
|
+
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
24092
|
+
}
|
24093
|
+
static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24094
|
+
return (void *)((FXObject *) ((FXDelegator *) x));
|
24011
24095
|
}
|
24012
24096
|
static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24013
24097
|
return (void *)((FXObject *) ((FXDict *) x));
|
24014
24098
|
}
|
24015
|
-
static void *
|
24016
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((
|
24099
|
+
static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24100
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
24017
24101
|
}
|
24018
|
-
static void *
|
24019
|
-
return (void *)((FXObject *)
|
24102
|
+
static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24103
|
+
return (void *)((FXObject *) ((FXDocument *) x));
|
24020
24104
|
}
|
24021
|
-
static void *
|
24022
|
-
return (void *)((FXObject *)
|
24105
|
+
static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24106
|
+
return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
|
24107
|
+
}
|
24108
|
+
static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24109
|
+
return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
|
24110
|
+
}
|
24111
|
+
static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24112
|
+
return (void *)((FXObject *) (FXId *) ((FXFont *) x));
|
24023
24113
|
}
|
24024
24114
|
static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24025
24115
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
24026
24116
|
}
|
24027
|
-
static void *
|
24028
|
-
return (void *)((FXObject *) (FXId *)(
|
24117
|
+
static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24118
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
24029
24119
|
}
|
24030
|
-
static void *
|
24031
|
-
return (void *)((FXObject *) (FXId *) ((
|
24120
|
+
static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24121
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
24032
24122
|
}
|
24033
|
-
static void *
|
24034
|
-
return (void *)((FXObject *)
|
24123
|
+
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24124
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
24035
24125
|
}
|
24036
|
-
static void *
|
24037
|
-
return (void *)((
|
24126
|
+
static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24127
|
+
return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
|
24038
24128
|
}
|
24039
|
-
static void *
|
24040
|
-
return (void *)((
|
24129
|
+
static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24130
|
+
return (void *)((FXObject *) ((FXId *) x));
|
24041
24131
|
}
|
24042
|
-
static void *
|
24043
|
-
return (void *)((
|
24132
|
+
static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24133
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
24044
24134
|
}
|
24045
|
-
static void *
|
24046
|
-
return (void *)((FXPacker *)
|
24135
|
+
static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24136
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
24047
24137
|
}
|
24048
|
-
static void *
|
24049
|
-
return (void *)((
|
24138
|
+
static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24139
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
24050
24140
|
}
|
24051
|
-
static void *
|
24052
|
-
return (void *)((
|
24141
|
+
static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24142
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
24053
24143
|
}
|
24054
|
-
static void *
|
24055
|
-
return (void *)((
|
24144
|
+
static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24145
|
+
return (void *)((FXObject *) ((FXRecentFiles *) x));
|
24056
24146
|
}
|
24057
|
-
static void *
|
24058
|
-
return (void *)((
|
24147
|
+
static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24148
|
+
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
24059
24149
|
}
|
24060
|
-
static void *
|
24061
|
-
return (void *)((
|
24150
|
+
static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24151
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
24062
24152
|
}
|
24063
|
-
static void *
|
24064
|
-
return (void *)((
|
24153
|
+
static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24154
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
24065
24155
|
}
|
24066
|
-
static void *
|
24067
|
-
return (void *)((
|
24156
|
+
static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24157
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
24068
24158
|
}
|
24069
|
-
static void *
|
24070
|
-
return (void *)((
|
24159
|
+
static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24160
|
+
return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
|
24071
24161
|
}
|
24072
|
-
static void *
|
24073
|
-
return (void *)((
|
24162
|
+
static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24163
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
24074
24164
|
}
|
24075
|
-
static void *
|
24076
|
-
return (void *)((
|
24165
|
+
static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24166
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
24077
24167
|
}
|
24078
|
-
static void *
|
24079
|
-
return (void *)((
|
24168
|
+
static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24169
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
24080
24170
|
}
|
24081
|
-
static void *
|
24082
|
-
return (void *)((
|
24171
|
+
static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24172
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
24083
24173
|
}
|
24084
|
-
static void *
|
24085
|
-
return (void *)((
|
24174
|
+
static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24175
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
24086
24176
|
}
|
24087
|
-
static void *
|
24088
|
-
return (void *)((
|
24177
|
+
static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24178
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
24089
24179
|
}
|
24090
|
-
static void *
|
24091
|
-
return (void *)((
|
24180
|
+
static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24181
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
24092
24182
|
}
|
24093
|
-
static void *
|
24094
|
-
return (void *)((
|
24183
|
+
static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24184
|
+
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
24095
24185
|
}
|
24096
|
-
static void *
|
24097
|
-
return (void *)((FXDrawable *)
|
24186
|
+
static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24187
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
24098
24188
|
}
|
24099
|
-
static void *
|
24100
|
-
return (void *)((
|
24189
|
+
static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24190
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
24101
24191
|
}
|
24102
|
-
static void *
|
24103
|
-
return (void *)((
|
24192
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24193
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
24104
24194
|
}
|
24105
|
-
static void *
|
24106
|
-
return (void *)((
|
24195
|
+
static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24196
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
24107
24197
|
}
|
24108
|
-
static void *
|
24109
|
-
return (void *)((
|
24198
|
+
static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24199
|
+
return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
|
24110
24200
|
}
|
24111
|
-
static void *
|
24112
|
-
return (void *)((
|
24201
|
+
static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24202
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
|
24113
24203
|
}
|
24114
|
-
static void *
|
24115
|
-
return (void *)((
|
24204
|
+
static void *_p_FXDockSiteTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24205
|
+
return (void *)((FXPacker *) ((FXDockSite *) x));
|
24116
24206
|
}
|
24117
|
-
static void *
|
24118
|
-
return (void *)((
|
24207
|
+
static void *_p_FXGroupBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24208
|
+
return (void *)((FXPacker *) ((FXGroupBox *) x));
|
24119
24209
|
}
|
24120
|
-
static void *
|
24121
|
-
return (void *)((
|
24210
|
+
static void *_p_FXHorizontalFrameTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24211
|
+
return (void *)((FXPacker *) ((FXHorizontalFrame *) x));
|
24122
24212
|
}
|
24123
|
-
static void *
|
24124
|
-
return (void *)((
|
24213
|
+
static void *_p_FXMatrixTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24214
|
+
return (void *)((FXPacker *) ((FXMatrix *) x));
|
24125
24215
|
}
|
24126
|
-
static void *
|
24127
|
-
return (void *)((
|
24216
|
+
static void *_p_FXShutterTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24217
|
+
return (void *)((FXPacker *) (FXVerticalFrame *) ((FXShutter *) x));
|
24128
24218
|
}
|
24129
|
-
static void *
|
24130
|
-
return (void *)((
|
24219
|
+
static void *_p_FXShutterItemTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24220
|
+
return (void *)((FXPacker *) (FXVerticalFrame *) ((FXShutterItem *) x));
|
24131
24221
|
}
|
24132
|
-
static void *
|
24133
|
-
return (void *)((
|
24222
|
+
static void *_p_FXSpringTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24223
|
+
return (void *)((FXPacker *) ((FXSpring *) x));
|
24134
24224
|
}
|
24135
|
-
static void *
|
24136
|
-
return (void *)((
|
24225
|
+
static void *_p_FXStatusBarTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24226
|
+
return (void *)((FXPacker *) (FXHorizontalFrame *) ((FXStatusBar *) x));
|
24227
|
+
}
|
24228
|
+
static void *_p_FXSwitcherTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24229
|
+
return (void *)((FXPacker *) ((FXSwitcher *) x));
|
24230
|
+
}
|
24231
|
+
static void *_p_FXVerticalFrameTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24232
|
+
return (void *)((FXPacker *) ((FXVerticalFrame *) x));
|
24233
|
+
}
|
24234
|
+
static void *_p_FXScrollWindowTo_p_FXScrollArea(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24235
|
+
return (void *)((FXScrollArea *) ((FXScrollWindow *) x));
|
24137
24236
|
}
|
24138
24237
|
static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24139
24238
|
return (void *)((FXStream *) ((FXFileStream *) x));
|
@@ -24141,106 +24240,91 @@ static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory
|
|
24141
24240
|
static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24142
24241
|
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
24143
24242
|
}
|
24144
|
-
static void *
|
24145
|
-
return (void *)((
|
24146
|
-
}
|
24147
|
-
static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24148
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
24149
|
-
}
|
24150
|
-
static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24151
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
24152
|
-
}
|
24153
|
-
static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24154
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
24155
|
-
}
|
24156
|
-
static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24157
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
24158
|
-
}
|
24159
|
-
static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24160
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
24243
|
+
static void *_p_FXShutterTo_p_FXVerticalFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24244
|
+
return (void *)((FXVerticalFrame *) ((FXShutter *) x));
|
24161
24245
|
}
|
24162
|
-
static void *
|
24163
|
-
return (void *)((
|
24246
|
+
static void *_p_FXShutterItemTo_p_FXVerticalFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24247
|
+
return (void *)((FXVerticalFrame *) ((FXShutterItem *) x));
|
24164
24248
|
}
|
24165
|
-
static void *
|
24166
|
-
return (void *)((
|
24249
|
+
static void *_p_FX4SplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24250
|
+
return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
|
24167
24251
|
}
|
24168
|
-
static void *
|
24169
|
-
return (void *)((
|
24252
|
+
static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24253
|
+
return (void *)((FXWindow *) ((FXComposite *) x));
|
24170
24254
|
}
|
24171
|
-
static void *
|
24172
|
-
return (void *)((
|
24255
|
+
static void *_p_FXDockSiteTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24256
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
24173
24257
|
}
|
24174
|
-
static void *
|
24175
|
-
return (void *)((
|
24258
|
+
static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24259
|
+
return (void *)((FXWindow *) ((FXFrame *) x));
|
24176
24260
|
}
|
24177
|
-
static void *
|
24178
|
-
return (void *)((
|
24261
|
+
static void *_p_FXGroupBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24262
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
24179
24263
|
}
|
24180
|
-
static void *
|
24181
|
-
return (void *)((
|
24264
|
+
static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24265
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
24182
24266
|
}
|
24183
|
-
static void *
|
24184
|
-
return (void *)((
|
24267
|
+
static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24268
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
24185
24269
|
}
|
24186
|
-
static void *
|
24187
|
-
return (void *)((
|
24270
|
+
static void *_p_FXMatrixTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24271
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
24188
24272
|
}
|
24189
|
-
static void *
|
24190
|
-
return (void *)((
|
24273
|
+
static void *_p_FXPackerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24274
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
|
24191
24275
|
}
|
24192
|
-
static void *
|
24193
|
-
return (void *)((
|
24276
|
+
static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24277
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
|
24194
24278
|
}
|
24195
|
-
static void *
|
24196
|
-
return (void *)((
|
24279
|
+
static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24280
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
|
24197
24281
|
}
|
24198
|
-
static void *
|
24199
|
-
return (void *)((
|
24282
|
+
static void *_p_FXScrollAreaTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24283
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
|
24200
24284
|
}
|
24201
|
-
static void *
|
24202
|
-
return (void *)((
|
24285
|
+
static void *_p_FXScrollWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24286
|
+
return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
24203
24287
|
}
|
24204
|
-
static void *
|
24205
|
-
return (void *)((
|
24288
|
+
static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24289
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
|
24206
24290
|
}
|
24207
|
-
static void *
|
24208
|
-
return (void *)((
|
24291
|
+
static void *_p_FXShutterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24292
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
24209
24293
|
}
|
24210
|
-
static void *
|
24211
|
-
return (void *)((
|
24294
|
+
static void *_p_FXShutterItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24295
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
24212
24296
|
}
|
24213
|
-
static void *
|
24214
|
-
return (void *)((
|
24297
|
+
static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24298
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
24215
24299
|
}
|
24216
|
-
static void *
|
24217
|
-
return (void *)((
|
24300
|
+
static void *_p_FXSplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24301
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
|
24218
24302
|
}
|
24219
|
-
static void *
|
24220
|
-
return (void *)((
|
24303
|
+
static void *_p_FXSpringTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24304
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
|
24221
24305
|
}
|
24222
|
-
static void *
|
24223
|
-
return (void *)((
|
24306
|
+
static void *_p_FXStatusBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24307
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
24224
24308
|
}
|
24225
|
-
static void *
|
24226
|
-
return (void *)((
|
24309
|
+
static void *_p_FXSwitcherTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24310
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
24227
24311
|
}
|
24228
|
-
static void *
|
24229
|
-
return (void *)((
|
24312
|
+
static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24313
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
24230
24314
|
}
|
24231
|
-
static void *
|
24232
|
-
return (void *)((
|
24315
|
+
static void *_p_FXVerticalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
24316
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
24233
24317
|
}
|
24234
24318
|
static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", "FX4Splitter *", 0, 0, (void*)0, 0};
|
24235
24319
|
static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
|
24236
24320
|
static swig_type_info _swigt__p_FXButton = {"_p_FXButton", "FXButton *", 0, 0, (void*)0, 0};
|
24237
24321
|
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", "FXComposite *", 0, 0, (void*)0, 0};
|
24238
|
-
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
24239
|
-
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
24240
24322
|
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
24241
|
-
static swig_type_info
|
24323
|
+
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
24242
24324
|
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
24243
24325
|
static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
|
24326
|
+
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
24327
|
+
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
24244
24328
|
static swig_type_info _swigt__p_FXDockBar = {"_p_FXDockBar", "FXDockBar *", 0, 0, (void*)0, 0};
|
24245
24329
|
static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", "FXDockSite *", 0, 0, (void*)0, 0};
|
24246
24330
|
static swig_type_info _swigt__p_FXDragCorner = {"_p_FXDragCorner", "FXDragCorner *", 0, 0, (void*)0, 0};
|
@@ -24251,26 +24335,26 @@ static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", "FXGroupBox *", 0
|
|
24251
24335
|
static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", "FXHorizontalFrame *", 0, 0, (void*)0, 0};
|
24252
24336
|
static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
|
24253
24337
|
static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
|
24254
|
-
static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
|
24255
24338
|
static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
|
24256
24339
|
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
24340
|
+
static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
|
24257
24341
|
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
24258
24342
|
static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", "FXMatrix *", 0, 0, (void*)0, 0};
|
24259
24343
|
static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
|
24260
|
-
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
24261
|
-
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
24262
24344
|
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
24263
|
-
static swig_type_info
|
24345
|
+
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
|
24346
|
+
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
24347
|
+
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
24348
|
+
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
24349
|
+
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
24350
|
+
static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
|
24351
|
+
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
24264
24352
|
static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
|
24265
24353
|
static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
|
24266
|
-
static swig_type_info
|
24354
|
+
static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
|
24355
|
+
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
24267
24356
|
static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
|
24268
|
-
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
24269
|
-
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
24270
|
-
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
24271
|
-
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
24272
24357
|
static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
|
24273
|
-
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
|
24274
24358
|
static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", "FXPacker *", 0, 0, (void*)0, 0};
|
24275
24359
|
static swig_type_info _swigt__p_FXRegion = {"_p_FXRegion", "FXRegion *", 0, 0, (void*)0, 0};
|
24276
24360
|
static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", "FXScrollArea *", 0, 0, (void*)0, 0};
|
@@ -24288,16 +24372,16 @@ static swig_type_info _swigt__p_FXMemoryStream = {"_p_FXMemoryStream", 0, 0, 0,
|
|
24288
24372
|
static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", "FXSwitcher *", 0, 0, (void*)0, 0};
|
24289
24373
|
static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", "FXVerticalFrame *", 0, 0, (void*)0, 0};
|
24290
24374
|
static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
|
24291
|
-
static swig_type_info _swigt__p_char = {"_p_char", "
|
24292
|
-
static swig_type_info _swigt__p_double = {"_p_double", "
|
24293
|
-
static swig_type_info _swigt__p_float = {"_p_float", "
|
24294
|
-
static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int
|
24295
|
-
static swig_type_info _swigt__p_long = {"_p_long", "
|
24296
|
-
static swig_type_info _swigt__p_short = {"_p_short", "
|
24297
|
-
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char
|
24298
|
-
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "
|
24299
|
-
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "
|
24300
|
-
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short
|
24375
|
+
static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
|
24376
|
+
static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
|
24377
|
+
static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
|
24378
|
+
static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
|
24379
|
+
static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
|
24380
|
+
static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
|
24381
|
+
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
|
24382
|
+
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
|
24383
|
+
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
|
24384
|
+
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
|
24301
24385
|
|
24302
24386
|
static swig_type_info *swig_type_initial[] = {
|
24303
24387
|
&_swigt__p_FX4Splitter,
|
@@ -24372,46 +24456,46 @@ static swig_type_info *swig_type_initial[] = {
|
|
24372
24456
|
static swig_cast_info _swigc__p_FX4Splitter[] = { {&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
|
24373
24457
|
static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{0, 0, 0, 0}};
|
24374
24458
|
static swig_cast_info _swigc__p_FXButton[] = { {&_swigt__p_FXButton, 0, 0, 0},{0, 0, 0, 0}};
|
24375
|
-
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
24376
|
-
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
24377
24459
|
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
24378
|
-
static swig_cast_info
|
24460
|
+
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
24379
24461
|
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
24380
24462
|
static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
|
24381
|
-
static swig_cast_info
|
24463
|
+
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
24464
|
+
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
24465
|
+
static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXComposite, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXComposite, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
|
24382
24466
|
static swig_cast_info _swigc__p_FXDockBar[] = { {&_swigt__p_FXDockBar, 0, 0, 0},{0, 0, 0, 0}};
|
24383
24467
|
static swig_cast_info _swigc__p_FXDockSite[] = { {&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
|
24384
24468
|
static swig_cast_info _swigc__p_FXDragCorner[] = { {&_swigt__p_FXDragCorner, 0, 0, 0},{0, 0, 0, 0}};
|
24385
24469
|
static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
|
24386
|
-
static swig_cast_info _swigc__p_FXDrawable[] = { {&
|
24470
|
+
static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
|
24387
24471
|
static swig_cast_info _swigc__p_FXFont[] = { {&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
24388
24472
|
static swig_cast_info _swigc__p_FXGroupBox[] = { {&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
24389
24473
|
static swig_cast_info _swigc__p_FXHorizontalFrame[] = { {&_swigt__p_FXHorizontalFrame, 0, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXHorizontalFrame, 0, 0},{0, 0, 0, 0}};
|
24390
24474
|
static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
|
24391
|
-
static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
|
24392
24475
|
static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
|
24393
24476
|
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
24477
|
+
static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
|
24394
24478
|
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
24395
|
-
static swig_cast_info _swigc__p_FXId[] = { {&
|
24479
|
+
static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXId, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXId, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXId, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0},{0, 0, 0, 0}};
|
24396
24480
|
static swig_cast_info _swigc__p_FXMatrix[] = { {&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
|
24397
|
-
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
24398
|
-
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
24399
24481
|
static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
|
24400
|
-
static swig_cast_info
|
24482
|
+
static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
|
24483
|
+
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
24484
|
+
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
24485
|
+
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
24486
|
+
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
24487
|
+
static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
|
24488
|
+
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
24401
24489
|
static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
|
24402
24490
|
static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
|
24403
|
-
static swig_cast_info
|
24491
|
+
static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
|
24492
|
+
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
24404
24493
|
static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
|
24405
|
-
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
24406
|
-
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
24407
|
-
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
24408
|
-
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
24409
24494
|
static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
|
24410
|
-
static swig_cast_info
|
24411
|
-
static swig_cast_info
|
24412
|
-
static swig_cast_info _swigc__p_FXPacker[] = { {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXPacker, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXPacker, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXPacker, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXPacker, 0, 0}, {&_swigt__p_FXPacker, 0, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXPacker, 0, 0},{0, 0, 0, 0}};
|
24495
|
+
static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
24496
|
+
static swig_cast_info _swigc__p_FXPacker[] = { {&_swigt__p_FXPacker, 0, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXPacker, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXPacker, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXPacker, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXPacker, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXPacker, 0, 0},{0, 0, 0, 0}};
|
24413
24497
|
static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
|
24414
|
-
static swig_cast_info _swigc__p_FXScrollArea[] = { {&
|
24498
|
+
static swig_cast_info _swigc__p_FXScrollArea[] = { {&_swigt__p_FXScrollArea, 0, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXScrollArea, 0, 0},{0, 0, 0, 0}};
|
24415
24499
|
static swig_cast_info _swigc__p_FXScrollBar[] = { {&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
24416
24500
|
static swig_cast_info _swigc__p_FXScrollWindow[] = { {&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
|
24417
24501
|
static swig_cast_info _swigc__p_FXShutter[] = { {&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -24422,10 +24506,10 @@ static swig_cast_info _swigc__p_FXStatusBar[] = { {&_swigt__p_FXStatusBar, 0, 0
|
|
24422
24506
|
static swig_cast_info _swigc__p_FXStatusLine[] = { {&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
24423
24507
|
static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
|
24424
24508
|
static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
|
24425
|
-
static swig_cast_info _swigc__p_FXStream[] = { {&
|
24509
|
+
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}};
|
24426
24510
|
static swig_cast_info _swigc__p_FXSwitcher[] = { {&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
|
24427
|
-
static swig_cast_info _swigc__p_FXVerticalFrame[] = { {&_swigt__p_FXVerticalFrame, 0, 0, 0}, {&
|
24428
|
-
static swig_cast_info _swigc__p_FXWindow[] = { {&
|
24511
|
+
static swig_cast_info _swigc__p_FXVerticalFrame[] = { {&_swigt__p_FXVerticalFrame, 0, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXVerticalFrame, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXVerticalFrame, 0, 0},{0, 0, 0, 0}};
|
24512
|
+
static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
|
24429
24513
|
static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
|
24430
24514
|
static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
|
24431
24515
|
static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -24562,9 +24646,12 @@ extern "C" {
|
|
24562
24646
|
#define SWIGRUNTIME_DEBUG
|
24563
24647
|
#endif
|
24564
24648
|
|
24649
|
+
#ifndef SWIG_INIT_CLIENT_DATA_TYPE
|
24650
|
+
#define SWIG_INIT_CLIENT_DATA_TYPE void *
|
24651
|
+
#endif
|
24565
24652
|
|
24566
24653
|
SWIGRUNTIME void
|
24567
|
-
SWIG_InitializeModule(
|
24654
|
+
SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
|
24568
24655
|
size_t i;
|
24569
24656
|
swig_module_info *module_head, *iter;
|
24570
24657
|
int init;
|