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/frames_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
|
|
@@ -1944,12 +1984,56 @@ static swig_module_info swig_module = {swig_types, 72, 0, 0, 0, 0};
|
|
1944
1984
|
|
1945
1985
|
|
1946
1986
|
|
1947
|
-
#
|
1948
|
-
#
|
1987
|
+
#ifdef __cplusplus
|
1988
|
+
#include <utility>
|
1989
|
+
/* SwigValueWrapper is described in swig.swg */
|
1990
|
+
template<typename T> class SwigValueWrapper {
|
1991
|
+
struct SwigSmartPointer {
|
1992
|
+
T *ptr;
|
1993
|
+
SwigSmartPointer(T *p) : ptr(p) { }
|
1994
|
+
~SwigSmartPointer() { delete ptr; }
|
1995
|
+
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
1996
|
+
void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
|
1997
|
+
} pointer;
|
1998
|
+
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
1999
|
+
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
2000
|
+
public:
|
2001
|
+
SwigValueWrapper() : pointer(0) { }
|
2002
|
+
SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
|
2003
|
+
#if __cplusplus >=201103L
|
2004
|
+
SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
|
2005
|
+
operator T&&() const { return std::move(*pointer.ptr); }
|
2006
|
+
#else
|
2007
|
+
operator T&() const { return *pointer.ptr; }
|
2008
|
+
#endif
|
2009
|
+
T *operator&() const { return pointer.ptr; }
|
2010
|
+
static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
|
2011
|
+
};
|
2012
|
+
|
2013
|
+
/*
|
2014
|
+
* SwigValueInit() is a generic initialisation solution as the following approach:
|
2015
|
+
*
|
2016
|
+
* T c_result = T();
|
2017
|
+
*
|
2018
|
+
* doesn't compile for all types for example:
|
2019
|
+
*
|
2020
|
+
* unsigned int c_result = unsigned int();
|
2021
|
+
*/
|
2022
|
+
template <typename T> T SwigValueInit() {
|
2023
|
+
return T();
|
2024
|
+
}
|
1949
2025
|
|
2026
|
+
#if __cplusplus >=201103L
|
2027
|
+
# define SWIG_STD_MOVE(OBJ) std::move(OBJ)
|
2028
|
+
#else
|
2029
|
+
# define SWIG_STD_MOVE(OBJ) OBJ
|
2030
|
+
#endif
|
1950
2031
|
|
1951
|
-
#
|
1952
|
-
|
2032
|
+
#endif
|
2033
|
+
|
2034
|
+
|
2035
|
+
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
2036
|
+
#define SWIG_RUBY_THREAD_END_BLOCK
|
1953
2037
|
|
1954
2038
|
|
1955
2039
|
#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
|
@@ -2159,10 +2243,6 @@ inline int SWIG_isfinite_func(T x) {
|
|
2159
2243
|
# define SWIG_isfinite(X) (SWIG_isfinite_func(X))
|
2160
2244
|
# elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
|
2161
2245
|
# define SWIG_isfinite(X) (__builtin_isfinite(X))
|
2162
|
-
# elif defined(__clang__) && defined(__has_builtin)
|
2163
|
-
# if __has_builtin(__builtin_isfinite)
|
2164
|
-
# define SWIG_isfinite(X) (__builtin_isfinite(X))
|
2165
|
-
# endif
|
2166
2246
|
# elif defined(_MSC_VER)
|
2167
2247
|
# define SWIG_isfinite(X) (_finite(X))
|
2168
2248
|
# elif defined(__sun) && defined(__SVR4)
|
@@ -4397,7 +4477,7 @@ _wrap_FXArrowButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
4397
4477
|
FXRegion *arg2 = 0 ;
|
4398
4478
|
void *argp1 = 0 ;
|
4399
4479
|
int res1 = 0 ;
|
4400
|
-
void *argp2 ;
|
4480
|
+
void *argp2 = 0 ;
|
4401
4481
|
int res2 = 0 ;
|
4402
4482
|
|
4403
4483
|
if ((argc < 1) || (argc > 1)) {
|
@@ -4493,7 +4573,7 @@ SWIGINTERN VALUE _wrap_FXArrowButton_setShape(int nargs, VALUE *args, VALUE self
|
|
4493
4573
|
argv[ii] = args[ii-1];
|
4494
4574
|
}
|
4495
4575
|
if (argc == 2) {
|
4496
|
-
int _v;
|
4576
|
+
int _v = 0;
|
4497
4577
|
void *vptr = 0;
|
4498
4578
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXArrowButton, 0);
|
4499
4579
|
_v = SWIG_CheckState(res);
|
@@ -4507,7 +4587,7 @@ SWIGINTERN VALUE _wrap_FXArrowButton_setShape(int nargs, VALUE *args, VALUE self
|
|
4507
4587
|
}
|
4508
4588
|
}
|
4509
4589
|
if (argc == 2) {
|
4510
|
-
int _v;
|
4590
|
+
int _v = 0;
|
4511
4591
|
void *vptr = 0;
|
4512
4592
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXArrowButton, 0);
|
4513
4593
|
_v = SWIG_CheckState(res);
|
@@ -4521,7 +4601,7 @@ SWIGINTERN VALUE _wrap_FXArrowButton_setShape(int nargs, VALUE *args, VALUE self
|
|
4521
4601
|
}
|
4522
4602
|
}
|
4523
4603
|
if (argc == 2) {
|
4524
|
-
int _v;
|
4604
|
+
int _v = 0;
|
4525
4605
|
void *vptr = 0;
|
4526
4606
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXArrowButton, 0);
|
4527
4607
|
_v = SWIG_CheckState(res);
|
@@ -6144,7 +6224,7 @@ _wrap_FXColorBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
6144
6224
|
FXRegion *arg2 = 0 ;
|
6145
6225
|
void *argp1 = 0 ;
|
6146
6226
|
int res1 = 0 ;
|
6147
|
-
void *argp2 ;
|
6227
|
+
void *argp2 = 0 ;
|
6148
6228
|
int res2 = 0 ;
|
6149
6229
|
|
6150
6230
|
if ((argc < 1) || (argc > 1)) {
|
@@ -6240,7 +6320,7 @@ SWIGINTERN VALUE _wrap_FXColorBar_setShape(int nargs, VALUE *args, VALUE self) {
|
|
6240
6320
|
argv[ii] = args[ii-1];
|
6241
6321
|
}
|
6242
6322
|
if (argc == 2) {
|
6243
|
-
int _v;
|
6323
|
+
int _v = 0;
|
6244
6324
|
void *vptr = 0;
|
6245
6325
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorBar, 0);
|
6246
6326
|
_v = SWIG_CheckState(res);
|
@@ -6254,7 +6334,7 @@ SWIGINTERN VALUE _wrap_FXColorBar_setShape(int nargs, VALUE *args, VALUE self) {
|
|
6254
6334
|
}
|
6255
6335
|
}
|
6256
6336
|
if (argc == 2) {
|
6257
|
-
int _v;
|
6337
|
+
int _v = 0;
|
6258
6338
|
void *vptr = 0;
|
6259
6339
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorBar, 0);
|
6260
6340
|
_v = SWIG_CheckState(res);
|
@@ -6268,7 +6348,7 @@ SWIGINTERN VALUE _wrap_FXColorBar_setShape(int nargs, VALUE *args, VALUE self) {
|
|
6268
6348
|
}
|
6269
6349
|
}
|
6270
6350
|
if (argc == 2) {
|
6271
|
-
int _v;
|
6351
|
+
int _v = 0;
|
6272
6352
|
void *vptr = 0;
|
6273
6353
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorBar, 0);
|
6274
6354
|
_v = SWIG_CheckState(res);
|
@@ -9538,7 +9618,7 @@ _wrap_FXColorWell_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
9538
9618
|
FXRegion *arg2 = 0 ;
|
9539
9619
|
void *argp1 = 0 ;
|
9540
9620
|
int res1 = 0 ;
|
9541
|
-
void *argp2 ;
|
9621
|
+
void *argp2 = 0 ;
|
9542
9622
|
int res2 = 0 ;
|
9543
9623
|
|
9544
9624
|
if ((argc < 1) || (argc > 1)) {
|
@@ -9634,7 +9714,7 @@ SWIGINTERN VALUE _wrap_FXColorWell_setShape(int nargs, VALUE *args, VALUE self)
|
|
9634
9714
|
argv[ii] = args[ii-1];
|
9635
9715
|
}
|
9636
9716
|
if (argc == 2) {
|
9637
|
-
int _v;
|
9717
|
+
int _v = 0;
|
9638
9718
|
void *vptr = 0;
|
9639
9719
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorWell, 0);
|
9640
9720
|
_v = SWIG_CheckState(res);
|
@@ -9648,7 +9728,7 @@ SWIGINTERN VALUE _wrap_FXColorWell_setShape(int nargs, VALUE *args, VALUE self)
|
|
9648
9728
|
}
|
9649
9729
|
}
|
9650
9730
|
if (argc == 2) {
|
9651
|
-
int _v;
|
9731
|
+
int _v = 0;
|
9652
9732
|
void *vptr = 0;
|
9653
9733
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorWell, 0);
|
9654
9734
|
_v = SWIG_CheckState(res);
|
@@ -9662,7 +9742,7 @@ SWIGINTERN VALUE _wrap_FXColorWell_setShape(int nargs, VALUE *args, VALUE self)
|
|
9662
9742
|
}
|
9663
9743
|
}
|
9664
9744
|
if (argc == 2) {
|
9665
|
-
int _v;
|
9745
|
+
int _v = 0;
|
9666
9746
|
void *vptr = 0;
|
9667
9747
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorWell, 0);
|
9668
9748
|
_v = SWIG_CheckState(res);
|
@@ -11319,7 +11399,7 @@ _wrap_FXColorWheel_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
11319
11399
|
FXRegion *arg2 = 0 ;
|
11320
11400
|
void *argp1 = 0 ;
|
11321
11401
|
int res1 = 0 ;
|
11322
|
-
void *argp2 ;
|
11402
|
+
void *argp2 = 0 ;
|
11323
11403
|
int res2 = 0 ;
|
11324
11404
|
|
11325
11405
|
if ((argc < 1) || (argc > 1)) {
|
@@ -11415,7 +11495,7 @@ SWIGINTERN VALUE _wrap_FXColorWheel_setShape(int nargs, VALUE *args, VALUE self)
|
|
11415
11495
|
argv[ii] = args[ii-1];
|
11416
11496
|
}
|
11417
11497
|
if (argc == 2) {
|
11418
|
-
int _v;
|
11498
|
+
int _v = 0;
|
11419
11499
|
void *vptr = 0;
|
11420
11500
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorWheel, 0);
|
11421
11501
|
_v = SWIG_CheckState(res);
|
@@ -11429,7 +11509,7 @@ SWIGINTERN VALUE _wrap_FXColorWheel_setShape(int nargs, VALUE *args, VALUE self)
|
|
11429
11509
|
}
|
11430
11510
|
}
|
11431
11511
|
if (argc == 2) {
|
11432
|
-
int _v;
|
11512
|
+
int _v = 0;
|
11433
11513
|
void *vptr = 0;
|
11434
11514
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorWheel, 0);
|
11435
11515
|
_v = SWIG_CheckState(res);
|
@@ -11443,7 +11523,7 @@ SWIGINTERN VALUE _wrap_FXColorWheel_setShape(int nargs, VALUE *args, VALUE self)
|
|
11443
11523
|
}
|
11444
11524
|
}
|
11445
11525
|
if (argc == 2) {
|
11446
|
-
int _v;
|
11526
|
+
int _v = 0;
|
11447
11527
|
void *vptr = 0;
|
11448
11528
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXColorWheel, 0);
|
11449
11529
|
_v = SWIG_CheckState(res);
|
@@ -13693,7 +13773,7 @@ _wrap_FXDial_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
13693
13773
|
FXRegion *arg2 = 0 ;
|
13694
13774
|
void *argp1 = 0 ;
|
13695
13775
|
int res1 = 0 ;
|
13696
|
-
void *argp2 ;
|
13776
|
+
void *argp2 = 0 ;
|
13697
13777
|
int res2 = 0 ;
|
13698
13778
|
|
13699
13779
|
if ((argc < 1) || (argc > 1)) {
|
@@ -13789,7 +13869,7 @@ SWIGINTERN VALUE _wrap_FXDial_setShape(int nargs, VALUE *args, VALUE self) {
|
|
13789
13869
|
argv[ii] = args[ii-1];
|
13790
13870
|
}
|
13791
13871
|
if (argc == 2) {
|
13792
|
-
int _v;
|
13872
|
+
int _v = 0;
|
13793
13873
|
void *vptr = 0;
|
13794
13874
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDial, 0);
|
13795
13875
|
_v = SWIG_CheckState(res);
|
@@ -13803,7 +13883,7 @@ SWIGINTERN VALUE _wrap_FXDial_setShape(int nargs, VALUE *args, VALUE self) {
|
|
13803
13883
|
}
|
13804
13884
|
}
|
13805
13885
|
if (argc == 2) {
|
13806
|
-
int _v;
|
13886
|
+
int _v = 0;
|
13807
13887
|
void *vptr = 0;
|
13808
13888
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDial, 0);
|
13809
13889
|
_v = SWIG_CheckState(res);
|
@@ -13817,7 +13897,7 @@ SWIGINTERN VALUE _wrap_FXDial_setShape(int nargs, VALUE *args, VALUE self) {
|
|
13817
13897
|
}
|
13818
13898
|
}
|
13819
13899
|
if (argc == 2) {
|
13820
|
-
int _v;
|
13900
|
+
int _v = 0;
|
13821
13901
|
void *vptr = 0;
|
13822
13902
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXDial, 0);
|
13823
13903
|
_v = SWIG_CheckState(res);
|
@@ -15204,7 +15284,7 @@ SWIGINTERN VALUE _wrap_FXHeader_setItem(int nargs, VALUE *args, VALUE self) {
|
|
15204
15284
|
argv[ii] = args[ii-1];
|
15205
15285
|
}
|
15206
15286
|
if ((argc >= 3) && (argc <= 4)) {
|
15207
|
-
int _v;
|
15287
|
+
int _v = 0;
|
15208
15288
|
void *vptr = 0;
|
15209
15289
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15210
15290
|
_v = SWIG_CheckState(res);
|
@@ -15231,7 +15311,7 @@ SWIGINTERN VALUE _wrap_FXHeader_setItem(int nargs, VALUE *args, VALUE self) {
|
|
15231
15311
|
}
|
15232
15312
|
}
|
15233
15313
|
if ((argc >= 3) && (argc <= 7)) {
|
15234
|
-
int _v;
|
15314
|
+
int _v = 0;
|
15235
15315
|
void *vptr = 0;
|
15236
15316
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15237
15317
|
_v = SWIG_CheckState(res);
|
@@ -15464,7 +15544,7 @@ SWIGINTERN VALUE _wrap_FXHeader_insertItem(int nargs, VALUE *args, VALUE self) {
|
|
15464
15544
|
argv[ii] = args[ii-1];
|
15465
15545
|
}
|
15466
15546
|
if ((argc >= 3) && (argc <= 4)) {
|
15467
|
-
int _v;
|
15547
|
+
int _v = 0;
|
15468
15548
|
void *vptr = 0;
|
15469
15549
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15470
15550
|
_v = SWIG_CheckState(res);
|
@@ -15491,7 +15571,7 @@ SWIGINTERN VALUE _wrap_FXHeader_insertItem(int nargs, VALUE *args, VALUE self) {
|
|
15491
15571
|
}
|
15492
15572
|
}
|
15493
15573
|
if ((argc >= 3) && (argc <= 7)) {
|
15494
|
-
int _v;
|
15574
|
+
int _v = 0;
|
15495
15575
|
void *vptr = 0;
|
15496
15576
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15497
15577
|
_v = SWIG_CheckState(res);
|
@@ -15648,7 +15728,7 @@ SWIGINTERN VALUE _wrap_FXHeader_appendItem(int nargs, VALUE *args, VALUE self) {
|
|
15648
15728
|
argv[ii] = args[ii-1];
|
15649
15729
|
}
|
15650
15730
|
if ((argc >= 2) && (argc <= 3)) {
|
15651
|
-
int _v;
|
15731
|
+
int _v = 0;
|
15652
15732
|
void *vptr = 0;
|
15653
15733
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15654
15734
|
_v = SWIG_CheckState(res);
|
@@ -15670,7 +15750,7 @@ SWIGINTERN VALUE _wrap_FXHeader_appendItem(int nargs, VALUE *args, VALUE self) {
|
|
15670
15750
|
}
|
15671
15751
|
}
|
15672
15752
|
if ((argc >= 2) && (argc <= 6)) {
|
15673
|
-
int _v;
|
15753
|
+
int _v = 0;
|
15674
15754
|
void *vptr = 0;
|
15675
15755
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15676
15756
|
_v = SWIG_CheckState(res);
|
@@ -15822,7 +15902,7 @@ SWIGINTERN VALUE _wrap_FXHeader_prependItem(int nargs, VALUE *args, VALUE self)
|
|
15822
15902
|
argv[ii] = args[ii-1];
|
15823
15903
|
}
|
15824
15904
|
if ((argc >= 2) && (argc <= 3)) {
|
15825
|
-
int _v;
|
15905
|
+
int _v = 0;
|
15826
15906
|
void *vptr = 0;
|
15827
15907
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15828
15908
|
_v = SWIG_CheckState(res);
|
@@ -15844,7 +15924,7 @@ SWIGINTERN VALUE _wrap_FXHeader_prependItem(int nargs, VALUE *args, VALUE self)
|
|
15844
15924
|
}
|
15845
15925
|
}
|
15846
15926
|
if ((argc >= 2) && (argc <= 6)) {
|
15847
|
-
int _v;
|
15927
|
+
int _v = 0;
|
15848
15928
|
void *vptr = 0;
|
15849
15929
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
15850
15930
|
_v = SWIG_CheckState(res);
|
@@ -17589,7 +17669,7 @@ _wrap_FXHeader_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
17589
17669
|
FXRegion *arg2 = 0 ;
|
17590
17670
|
void *argp1 = 0 ;
|
17591
17671
|
int res1 = 0 ;
|
17592
|
-
void *argp2 ;
|
17672
|
+
void *argp2 = 0 ;
|
17593
17673
|
int res2 = 0 ;
|
17594
17674
|
|
17595
17675
|
if ((argc < 1) || (argc > 1)) {
|
@@ -17685,7 +17765,7 @@ SWIGINTERN VALUE _wrap_FXHeader_setShape(int nargs, VALUE *args, VALUE self) {
|
|
17685
17765
|
argv[ii] = args[ii-1];
|
17686
17766
|
}
|
17687
17767
|
if (argc == 2) {
|
17688
|
-
int _v;
|
17768
|
+
int _v = 0;
|
17689
17769
|
void *vptr = 0;
|
17690
17770
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
17691
17771
|
_v = SWIG_CheckState(res);
|
@@ -17699,7 +17779,7 @@ SWIGINTERN VALUE _wrap_FXHeader_setShape(int nargs, VALUE *args, VALUE self) {
|
|
17699
17779
|
}
|
17700
17780
|
}
|
17701
17781
|
if (argc == 2) {
|
17702
|
-
int _v;
|
17782
|
+
int _v = 0;
|
17703
17783
|
void *vptr = 0;
|
17704
17784
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
17705
17785
|
_v = SWIG_CheckState(res);
|
@@ -17713,7 +17793,7 @@ SWIGINTERN VALUE _wrap_FXHeader_setShape(int nargs, VALUE *args, VALUE self) {
|
|
17713
17793
|
}
|
17714
17794
|
}
|
17715
17795
|
if (argc == 2) {
|
17716
|
-
int _v;
|
17796
|
+
int _v = 0;
|
17717
17797
|
void *vptr = 0;
|
17718
17798
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHeader, 0);
|
17719
17799
|
_v = SWIG_CheckState(res);
|
@@ -18799,7 +18879,7 @@ _wrap_FXImageFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
18799
18879
|
FXRegion *arg2 = 0 ;
|
18800
18880
|
void *argp1 = 0 ;
|
18801
18881
|
int res1 = 0 ;
|
18802
|
-
void *argp2 ;
|
18882
|
+
void *argp2 = 0 ;
|
18803
18883
|
int res2 = 0 ;
|
18804
18884
|
|
18805
18885
|
if ((argc < 1) || (argc > 1)) {
|
@@ -18895,7 +18975,7 @@ SWIGINTERN VALUE _wrap_FXImageFrame_setShape(int nargs, VALUE *args, VALUE self)
|
|
18895
18975
|
argv[ii] = args[ii-1];
|
18896
18976
|
}
|
18897
18977
|
if (argc == 2) {
|
18898
|
-
int _v;
|
18978
|
+
int _v = 0;
|
18899
18979
|
void *vptr = 0;
|
18900
18980
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXImageFrame, 0);
|
18901
18981
|
_v = SWIG_CheckState(res);
|
@@ -18909,7 +18989,7 @@ SWIGINTERN VALUE _wrap_FXImageFrame_setShape(int nargs, VALUE *args, VALUE self)
|
|
18909
18989
|
}
|
18910
18990
|
}
|
18911
18991
|
if (argc == 2) {
|
18912
|
-
int _v;
|
18992
|
+
int _v = 0;
|
18913
18993
|
void *vptr = 0;
|
18914
18994
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXImageFrame, 0);
|
18915
18995
|
_v = SWIG_CheckState(res);
|
@@ -18923,7 +19003,7 @@ SWIGINTERN VALUE _wrap_FXImageFrame_setShape(int nargs, VALUE *args, VALUE self)
|
|
18923
19003
|
}
|
18924
19004
|
}
|
18925
19005
|
if (argc == 2) {
|
18926
|
-
int _v;
|
19006
|
+
int _v = 0;
|
18927
19007
|
void *vptr = 0;
|
18928
19008
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXImageFrame, 0);
|
18929
19009
|
_v = SWIG_CheckState(res);
|
@@ -20103,7 +20183,7 @@ _wrap_FXBitmapFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
20103
20183
|
FXRegion *arg2 = 0 ;
|
20104
20184
|
void *argp1 = 0 ;
|
20105
20185
|
int res1 = 0 ;
|
20106
|
-
void *argp2 ;
|
20186
|
+
void *argp2 = 0 ;
|
20107
20187
|
int res2 = 0 ;
|
20108
20188
|
|
20109
20189
|
if ((argc < 1) || (argc > 1)) {
|
@@ -20199,7 +20279,7 @@ SWIGINTERN VALUE _wrap_FXBitmapFrame_setShape(int nargs, VALUE *args, VALUE self
|
|
20199
20279
|
argv[ii] = args[ii-1];
|
20200
20280
|
}
|
20201
20281
|
if (argc == 2) {
|
20202
|
-
int _v;
|
20282
|
+
int _v = 0;
|
20203
20283
|
void *vptr = 0;
|
20204
20284
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXBitmapFrame, 0);
|
20205
20285
|
_v = SWIG_CheckState(res);
|
@@ -20213,7 +20293,7 @@ SWIGINTERN VALUE _wrap_FXBitmapFrame_setShape(int nargs, VALUE *args, VALUE self
|
|
20213
20293
|
}
|
20214
20294
|
}
|
20215
20295
|
if (argc == 2) {
|
20216
|
-
int _v;
|
20296
|
+
int _v = 0;
|
20217
20297
|
void *vptr = 0;
|
20218
20298
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXBitmapFrame, 0);
|
20219
20299
|
_v = SWIG_CheckState(res);
|
@@ -20227,7 +20307,7 @@ SWIGINTERN VALUE _wrap_FXBitmapFrame_setShape(int nargs, VALUE *args, VALUE self
|
|
20227
20307
|
}
|
20228
20308
|
}
|
20229
20309
|
if (argc == 2) {
|
20230
|
-
int _v;
|
20310
|
+
int _v = 0;
|
20231
20311
|
void *vptr = 0;
|
20232
20312
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXBitmapFrame, 0);
|
20233
20313
|
_v = SWIG_CheckState(res);
|
@@ -22658,7 +22738,7 @@ _wrap_FXKnob_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
22658
22738
|
FXRegion *arg2 = 0 ;
|
22659
22739
|
void *argp1 = 0 ;
|
22660
22740
|
int res1 = 0 ;
|
22661
|
-
void *argp2 ;
|
22741
|
+
void *argp2 = 0 ;
|
22662
22742
|
int res2 = 0 ;
|
22663
22743
|
|
22664
22744
|
if ((argc < 1) || (argc > 1)) {
|
@@ -22754,7 +22834,7 @@ SWIGINTERN VALUE _wrap_FXKnob_setShape(int nargs, VALUE *args, VALUE self) {
|
|
22754
22834
|
argv[ii] = args[ii-1];
|
22755
22835
|
}
|
22756
22836
|
if (argc == 2) {
|
22757
|
-
int _v;
|
22837
|
+
int _v = 0;
|
22758
22838
|
void *vptr = 0;
|
22759
22839
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXKnob, 0);
|
22760
22840
|
_v = SWIG_CheckState(res);
|
@@ -22768,7 +22848,7 @@ SWIGINTERN VALUE _wrap_FXKnob_setShape(int nargs, VALUE *args, VALUE self) {
|
|
22768
22848
|
}
|
22769
22849
|
}
|
22770
22850
|
if (argc == 2) {
|
22771
|
-
int _v;
|
22851
|
+
int _v = 0;
|
22772
22852
|
void *vptr = 0;
|
22773
22853
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXKnob, 0);
|
22774
22854
|
_v = SWIG_CheckState(res);
|
@@ -22782,7 +22862,7 @@ SWIGINTERN VALUE _wrap_FXKnob_setShape(int nargs, VALUE *args, VALUE self) {
|
|
22782
22862
|
}
|
22783
22863
|
}
|
22784
22864
|
if (argc == 2) {
|
22785
|
-
int _v;
|
22865
|
+
int _v = 0;
|
22786
22866
|
void *vptr = 0;
|
22787
22867
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXKnob, 0);
|
22788
22868
|
_v = SWIG_CheckState(res);
|
@@ -24380,7 +24460,7 @@ _wrap_FXProgressBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
24380
24460
|
FXRegion *arg2 = 0 ;
|
24381
24461
|
void *argp1 = 0 ;
|
24382
24462
|
int res1 = 0 ;
|
24383
|
-
void *argp2 ;
|
24463
|
+
void *argp2 = 0 ;
|
24384
24464
|
int res2 = 0 ;
|
24385
24465
|
|
24386
24466
|
if ((argc < 1) || (argc > 1)) {
|
@@ -24476,7 +24556,7 @@ SWIGINTERN VALUE _wrap_FXProgressBar_setShape(int nargs, VALUE *args, VALUE self
|
|
24476
24556
|
argv[ii] = args[ii-1];
|
24477
24557
|
}
|
24478
24558
|
if (argc == 2) {
|
24479
|
-
int _v;
|
24559
|
+
int _v = 0;
|
24480
24560
|
void *vptr = 0;
|
24481
24561
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressBar, 0);
|
24482
24562
|
_v = SWIG_CheckState(res);
|
@@ -24490,7 +24570,7 @@ SWIGINTERN VALUE _wrap_FXProgressBar_setShape(int nargs, VALUE *args, VALUE self
|
|
24490
24570
|
}
|
24491
24571
|
}
|
24492
24572
|
if (argc == 2) {
|
24493
|
-
int _v;
|
24573
|
+
int _v = 0;
|
24494
24574
|
void *vptr = 0;
|
24495
24575
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressBar, 0);
|
24496
24576
|
_v = SWIG_CheckState(res);
|
@@ -24504,7 +24584,7 @@ SWIGINTERN VALUE _wrap_FXProgressBar_setShape(int nargs, VALUE *args, VALUE self
|
|
24504
24584
|
}
|
24505
24585
|
}
|
24506
24586
|
if (argc == 2) {
|
24507
|
-
int _v;
|
24587
|
+
int _v = 0;
|
24508
24588
|
void *vptr = 0;
|
24509
24589
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXProgressBar, 0);
|
24510
24590
|
_v = SWIG_CheckState(res);
|
@@ -27061,7 +27141,7 @@ _wrap_FXRuler_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
27061
27141
|
FXRegion *arg2 = 0 ;
|
27062
27142
|
void *argp1 = 0 ;
|
27063
27143
|
int res1 = 0 ;
|
27064
|
-
void *argp2 ;
|
27144
|
+
void *argp2 = 0 ;
|
27065
27145
|
int res2 = 0 ;
|
27066
27146
|
|
27067
27147
|
if ((argc < 1) || (argc > 1)) {
|
@@ -27157,7 +27237,7 @@ SWIGINTERN VALUE _wrap_FXRuler_setShape(int nargs, VALUE *args, VALUE self) {
|
|
27157
27237
|
argv[ii] = args[ii-1];
|
27158
27238
|
}
|
27159
27239
|
if (argc == 2) {
|
27160
|
-
int _v;
|
27240
|
+
int _v = 0;
|
27161
27241
|
void *vptr = 0;
|
27162
27242
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRuler, 0);
|
27163
27243
|
_v = SWIG_CheckState(res);
|
@@ -27171,7 +27251,7 @@ SWIGINTERN VALUE _wrap_FXRuler_setShape(int nargs, VALUE *args, VALUE self) {
|
|
27171
27251
|
}
|
27172
27252
|
}
|
27173
27253
|
if (argc == 2) {
|
27174
|
-
int _v;
|
27254
|
+
int _v = 0;
|
27175
27255
|
void *vptr = 0;
|
27176
27256
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRuler, 0);
|
27177
27257
|
_v = SWIG_CheckState(res);
|
@@ -27185,7 +27265,7 @@ SWIGINTERN VALUE _wrap_FXRuler_setShape(int nargs, VALUE *args, VALUE self) {
|
|
27185
27265
|
}
|
27186
27266
|
}
|
27187
27267
|
if (argc == 2) {
|
27188
|
-
int _v;
|
27268
|
+
int _v = 0;
|
27189
27269
|
void *vptr = 0;
|
27190
27270
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRuler, 0);
|
27191
27271
|
_v = SWIG_CheckState(res);
|
@@ -28207,7 +28287,7 @@ _wrap_FXSeparator_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
28207
28287
|
FXRegion *arg2 = 0 ;
|
28208
28288
|
void *argp1 = 0 ;
|
28209
28289
|
int res1 = 0 ;
|
28210
|
-
void *argp2 ;
|
28290
|
+
void *argp2 = 0 ;
|
28211
28291
|
int res2 = 0 ;
|
28212
28292
|
|
28213
28293
|
if ((argc < 1) || (argc > 1)) {
|
@@ -28303,7 +28383,7 @@ SWIGINTERN VALUE _wrap_FXSeparator_setShape(int nargs, VALUE *args, VALUE self)
|
|
28303
28383
|
argv[ii] = args[ii-1];
|
28304
28384
|
}
|
28305
28385
|
if (argc == 2) {
|
28306
|
-
int _v;
|
28386
|
+
int _v = 0;
|
28307
28387
|
void *vptr = 0;
|
28308
28388
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSeparator, 0);
|
28309
28389
|
_v = SWIG_CheckState(res);
|
@@ -28317,7 +28397,7 @@ SWIGINTERN VALUE _wrap_FXSeparator_setShape(int nargs, VALUE *args, VALUE self)
|
|
28317
28397
|
}
|
28318
28398
|
}
|
28319
28399
|
if (argc == 2) {
|
28320
|
-
int _v;
|
28400
|
+
int _v = 0;
|
28321
28401
|
void *vptr = 0;
|
28322
28402
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSeparator, 0);
|
28323
28403
|
_v = SWIG_CheckState(res);
|
@@ -28331,7 +28411,7 @@ SWIGINTERN VALUE _wrap_FXSeparator_setShape(int nargs, VALUE *args, VALUE self)
|
|
28331
28411
|
}
|
28332
28412
|
}
|
28333
28413
|
if (argc == 2) {
|
28334
|
-
int _v;
|
28414
|
+
int _v = 0;
|
28335
28415
|
void *vptr = 0;
|
28336
28416
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSeparator, 0);
|
28337
28417
|
_v = SWIG_CheckState(res);
|
@@ -29270,7 +29350,7 @@ _wrap_FXHorizontalSeparator_setShape__SWIG_0(int argc, VALUE *argv, VALUE self)
|
|
29270
29350
|
FXRegion *arg2 = 0 ;
|
29271
29351
|
void *argp1 = 0 ;
|
29272
29352
|
int res1 = 0 ;
|
29273
|
-
void *argp2 ;
|
29353
|
+
void *argp2 = 0 ;
|
29274
29354
|
int res2 = 0 ;
|
29275
29355
|
|
29276
29356
|
if ((argc < 1) || (argc > 1)) {
|
@@ -29366,7 +29446,7 @@ SWIGINTERN VALUE _wrap_FXHorizontalSeparator_setShape(int nargs, VALUE *args, VA
|
|
29366
29446
|
argv[ii] = args[ii-1];
|
29367
29447
|
}
|
29368
29448
|
if (argc == 2) {
|
29369
|
-
int _v;
|
29449
|
+
int _v = 0;
|
29370
29450
|
void *vptr = 0;
|
29371
29451
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHorizontalSeparator, 0);
|
29372
29452
|
_v = SWIG_CheckState(res);
|
@@ -29380,7 +29460,7 @@ SWIGINTERN VALUE _wrap_FXHorizontalSeparator_setShape(int nargs, VALUE *args, VA
|
|
29380
29460
|
}
|
29381
29461
|
}
|
29382
29462
|
if (argc == 2) {
|
29383
|
-
int _v;
|
29463
|
+
int _v = 0;
|
29384
29464
|
void *vptr = 0;
|
29385
29465
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHorizontalSeparator, 0);
|
29386
29466
|
_v = SWIG_CheckState(res);
|
@@ -29394,7 +29474,7 @@ SWIGINTERN VALUE _wrap_FXHorizontalSeparator_setShape(int nargs, VALUE *args, VA
|
|
29394
29474
|
}
|
29395
29475
|
}
|
29396
29476
|
if (argc == 2) {
|
29397
|
-
int _v;
|
29477
|
+
int _v = 0;
|
29398
29478
|
void *vptr = 0;
|
29399
29479
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXHorizontalSeparator, 0);
|
29400
29480
|
_v = SWIG_CheckState(res);
|
@@ -30333,7 +30413,7 @@ _wrap_FXVerticalSeparator_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
30333
30413
|
FXRegion *arg2 = 0 ;
|
30334
30414
|
void *argp1 = 0 ;
|
30335
30415
|
int res1 = 0 ;
|
30336
|
-
void *argp2 ;
|
30416
|
+
void *argp2 = 0 ;
|
30337
30417
|
int res2 = 0 ;
|
30338
30418
|
|
30339
30419
|
if ((argc < 1) || (argc > 1)) {
|
@@ -30429,7 +30509,7 @@ SWIGINTERN VALUE _wrap_FXVerticalSeparator_setShape(int nargs, VALUE *args, VALU
|
|
30429
30509
|
argv[ii] = args[ii-1];
|
30430
30510
|
}
|
30431
30511
|
if (argc == 2) {
|
30432
|
-
int _v;
|
30512
|
+
int _v = 0;
|
30433
30513
|
void *vptr = 0;
|
30434
30514
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXVerticalSeparator, 0);
|
30435
30515
|
_v = SWIG_CheckState(res);
|
@@ -30443,7 +30523,7 @@ SWIGINTERN VALUE _wrap_FXVerticalSeparator_setShape(int nargs, VALUE *args, VALU
|
|
30443
30523
|
}
|
30444
30524
|
}
|
30445
30525
|
if (argc == 2) {
|
30446
|
-
int _v;
|
30526
|
+
int _v = 0;
|
30447
30527
|
void *vptr = 0;
|
30448
30528
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXVerticalSeparator, 0);
|
30449
30529
|
_v = SWIG_CheckState(res);
|
@@ -30457,7 +30537,7 @@ SWIGINTERN VALUE _wrap_FXVerticalSeparator_setShape(int nargs, VALUE *args, VALU
|
|
30457
30537
|
}
|
30458
30538
|
}
|
30459
30539
|
if (argc == 2) {
|
30460
|
-
int _v;
|
30540
|
+
int _v = 0;
|
30461
30541
|
void *vptr = 0;
|
30462
30542
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXVerticalSeparator, 0);
|
30463
30543
|
_v = SWIG_CheckState(res);
|
@@ -32862,7 +32942,7 @@ _wrap_FXSlider_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
32862
32942
|
FXRegion *arg2 = 0 ;
|
32863
32943
|
void *argp1 = 0 ;
|
32864
32944
|
int res1 = 0 ;
|
32865
|
-
void *argp2 ;
|
32945
|
+
void *argp2 = 0 ;
|
32866
32946
|
int res2 = 0 ;
|
32867
32947
|
|
32868
32948
|
if ((argc < 1) || (argc > 1)) {
|
@@ -32958,7 +33038,7 @@ SWIGINTERN VALUE _wrap_FXSlider_setShape(int nargs, VALUE *args, VALUE self) {
|
|
32958
33038
|
argv[ii] = args[ii-1];
|
32959
33039
|
}
|
32960
33040
|
if (argc == 2) {
|
32961
|
-
int _v;
|
33041
|
+
int _v = 0;
|
32962
33042
|
void *vptr = 0;
|
32963
33043
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSlider, 0);
|
32964
33044
|
_v = SWIG_CheckState(res);
|
@@ -32972,7 +33052,7 @@ SWIGINTERN VALUE _wrap_FXSlider_setShape(int nargs, VALUE *args, VALUE self) {
|
|
32972
33052
|
}
|
32973
33053
|
}
|
32974
33054
|
if (argc == 2) {
|
32975
|
-
int _v;
|
33055
|
+
int _v = 0;
|
32976
33056
|
void *vptr = 0;
|
32977
33057
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSlider, 0);
|
32978
33058
|
_v = SWIG_CheckState(res);
|
@@ -32986,7 +33066,7 @@ SWIGINTERN VALUE _wrap_FXSlider_setShape(int nargs, VALUE *args, VALUE self) {
|
|
32986
33066
|
}
|
32987
33067
|
}
|
32988
33068
|
if (argc == 2) {
|
32989
|
-
int _v;
|
33069
|
+
int _v = 0;
|
32990
33070
|
void *vptr = 0;
|
32991
33071
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXSlider, 0);
|
32992
33072
|
_v = SWIG_CheckState(res);
|
@@ -35423,7 +35503,7 @@ _wrap_FXRealSlider_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
35423
35503
|
FXRegion *arg2 = 0 ;
|
35424
35504
|
void *argp1 = 0 ;
|
35425
35505
|
int res1 = 0 ;
|
35426
|
-
void *argp2 ;
|
35506
|
+
void *argp2 = 0 ;
|
35427
35507
|
int res2 = 0 ;
|
35428
35508
|
|
35429
35509
|
if ((argc < 1) || (argc > 1)) {
|
@@ -35519,7 +35599,7 @@ SWIGINTERN VALUE _wrap_FXRealSlider_setShape(int nargs, VALUE *args, VALUE self)
|
|
35519
35599
|
argv[ii] = args[ii-1];
|
35520
35600
|
}
|
35521
35601
|
if (argc == 2) {
|
35522
|
-
int _v;
|
35602
|
+
int _v = 0;
|
35523
35603
|
void *vptr = 0;
|
35524
35604
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRealSlider, 0);
|
35525
35605
|
_v = SWIG_CheckState(res);
|
@@ -35533,7 +35613,7 @@ SWIGINTERN VALUE _wrap_FXRealSlider_setShape(int nargs, VALUE *args, VALUE self)
|
|
35533
35613
|
}
|
35534
35614
|
}
|
35535
35615
|
if (argc == 2) {
|
35536
|
-
int _v;
|
35616
|
+
int _v = 0;
|
35537
35617
|
void *vptr = 0;
|
35538
35618
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRealSlider, 0);
|
35539
35619
|
_v = SWIG_CheckState(res);
|
@@ -35547,7 +35627,7 @@ SWIGINTERN VALUE _wrap_FXRealSlider_setShape(int nargs, VALUE *args, VALUE self)
|
|
35547
35627
|
}
|
35548
35628
|
}
|
35549
35629
|
if (argc == 2) {
|
35550
|
-
int _v;
|
35630
|
+
int _v = 0;
|
35551
35631
|
void *vptr = 0;
|
35552
35632
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRealSlider, 0);
|
35553
35633
|
_v = SWIG_CheckState(res);
|
@@ -36858,7 +36938,7 @@ _wrap_FXStatusLine_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
36858
36938
|
FXRegion *arg2 = 0 ;
|
36859
36939
|
void *argp1 = 0 ;
|
36860
36940
|
int res1 = 0 ;
|
36861
|
-
void *argp2 ;
|
36941
|
+
void *argp2 = 0 ;
|
36862
36942
|
int res2 = 0 ;
|
36863
36943
|
|
36864
36944
|
if ((argc < 1) || (argc > 1)) {
|
@@ -36954,7 +37034,7 @@ SWIGINTERN VALUE _wrap_FXStatusLine_setShape(int nargs, VALUE *args, VALUE self)
|
|
36954
37034
|
argv[ii] = args[ii-1];
|
36955
37035
|
}
|
36956
37036
|
if (argc == 2) {
|
36957
|
-
int _v;
|
37037
|
+
int _v = 0;
|
36958
37038
|
void *vptr = 0;
|
36959
37039
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStatusLine, 0);
|
36960
37040
|
_v = SWIG_CheckState(res);
|
@@ -36968,7 +37048,7 @@ SWIGINTERN VALUE _wrap_FXStatusLine_setShape(int nargs, VALUE *args, VALUE self)
|
|
36968
37048
|
}
|
36969
37049
|
}
|
36970
37050
|
if (argc == 2) {
|
36971
|
-
int _v;
|
37051
|
+
int _v = 0;
|
36972
37052
|
void *vptr = 0;
|
36973
37053
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStatusLine, 0);
|
36974
37054
|
_v = SWIG_CheckState(res);
|
@@ -36982,7 +37062,7 @@ SWIGINTERN VALUE _wrap_FXStatusLine_setShape(int nargs, VALUE *args, VALUE self)
|
|
36982
37062
|
}
|
36983
37063
|
}
|
36984
37064
|
if (argc == 2) {
|
36985
|
-
int _v;
|
37065
|
+
int _v = 0;
|
36986
37066
|
void *vptr = 0;
|
36987
37067
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStatusLine, 0);
|
36988
37068
|
_v = SWIG_CheckState(res);
|
@@ -41157,7 +41237,7 @@ _wrap_FXTextField_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
41157
41237
|
FXRegion *arg2 = 0 ;
|
41158
41238
|
void *argp1 = 0 ;
|
41159
41239
|
int res1 = 0 ;
|
41160
|
-
void *argp2 ;
|
41240
|
+
void *argp2 = 0 ;
|
41161
41241
|
int res2 = 0 ;
|
41162
41242
|
|
41163
41243
|
if ((argc < 1) || (argc > 1)) {
|
@@ -41253,7 +41333,7 @@ SWIGINTERN VALUE _wrap_FXTextField_setShape(int nargs, VALUE *args, VALUE self)
|
|
41253
41333
|
argv[ii] = args[ii-1];
|
41254
41334
|
}
|
41255
41335
|
if (argc == 2) {
|
41256
|
-
int _v;
|
41336
|
+
int _v = 0;
|
41257
41337
|
void *vptr = 0;
|
41258
41338
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTextField, 0);
|
41259
41339
|
_v = SWIG_CheckState(res);
|
@@ -41267,7 +41347,7 @@ SWIGINTERN VALUE _wrap_FXTextField_setShape(int nargs, VALUE *args, VALUE self)
|
|
41267
41347
|
}
|
41268
41348
|
}
|
41269
41349
|
if (argc == 2) {
|
41270
|
-
int _v;
|
41350
|
+
int _v = 0;
|
41271
41351
|
void *vptr = 0;
|
41272
41352
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTextField, 0);
|
41273
41353
|
_v = SWIG_CheckState(res);
|
@@ -41281,7 +41361,7 @@ SWIGINTERN VALUE _wrap_FXTextField_setShape(int nargs, VALUE *args, VALUE self)
|
|
41281
41361
|
}
|
41282
41362
|
}
|
41283
41363
|
if (argc == 2) {
|
41284
|
-
int _v;
|
41364
|
+
int _v = 0;
|
41285
41365
|
void *vptr = 0;
|
41286
41366
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXTextField, 0);
|
41287
41367
|
_v = SWIG_CheckState(res);
|
@@ -42991,7 +43071,7 @@ _wrap_FXToolBarTab_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
42991
43071
|
FXRegion *arg2 = 0 ;
|
42992
43072
|
void *argp1 = 0 ;
|
42993
43073
|
int res1 = 0 ;
|
42994
|
-
void *argp2 ;
|
43074
|
+
void *argp2 = 0 ;
|
42995
43075
|
int res2 = 0 ;
|
42996
43076
|
|
42997
43077
|
if ((argc < 1) || (argc > 1)) {
|
@@ -43087,7 +43167,7 @@ SWIGINTERN VALUE _wrap_FXToolBarTab_setShape(int nargs, VALUE *args, VALUE self)
|
|
43087
43167
|
argv[ii] = args[ii-1];
|
43088
43168
|
}
|
43089
43169
|
if (argc == 2) {
|
43090
|
-
int _v;
|
43170
|
+
int _v = 0;
|
43091
43171
|
void *vptr = 0;
|
43092
43172
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXToolBarTab, 0);
|
43093
43173
|
_v = SWIG_CheckState(res);
|
@@ -43101,7 +43181,7 @@ SWIGINTERN VALUE _wrap_FXToolBarTab_setShape(int nargs, VALUE *args, VALUE self)
|
|
43101
43181
|
}
|
43102
43182
|
}
|
43103
43183
|
if (argc == 2) {
|
43104
|
-
int _v;
|
43184
|
+
int _v = 0;
|
43105
43185
|
void *vptr = 0;
|
43106
43186
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXToolBarTab, 0);
|
43107
43187
|
_v = SWIG_CheckState(res);
|
@@ -43115,7 +43195,7 @@ SWIGINTERN VALUE _wrap_FXToolBarTab_setShape(int nargs, VALUE *args, VALUE self)
|
|
43115
43195
|
}
|
43116
43196
|
}
|
43117
43197
|
if (argc == 2) {
|
43118
|
-
int _v;
|
43198
|
+
int _v = 0;
|
43119
43199
|
void *vptr = 0;
|
43120
43200
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXToolBarTab, 0);
|
43121
43201
|
_v = SWIG_CheckState(res);
|
@@ -46414,7 +46494,7 @@ _wrap_FXGradientBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
46414
46494
|
FXRegion *arg2 = 0 ;
|
46415
46495
|
void *argp1 = 0 ;
|
46416
46496
|
int res1 = 0 ;
|
46417
|
-
void *argp2 ;
|
46497
|
+
void *argp2 = 0 ;
|
46418
46498
|
int res2 = 0 ;
|
46419
46499
|
|
46420
46500
|
if ((argc < 1) || (argc > 1)) {
|
@@ -46510,7 +46590,7 @@ SWIGINTERN VALUE _wrap_FXGradientBar_setShape(int nargs, VALUE *args, VALUE self
|
|
46510
46590
|
argv[ii] = args[ii-1];
|
46511
46591
|
}
|
46512
46592
|
if (argc == 2) {
|
46513
|
-
int _v;
|
46593
|
+
int _v = 0;
|
46514
46594
|
void *vptr = 0;
|
46515
46595
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXGradientBar, 0);
|
46516
46596
|
_v = SWIG_CheckState(res);
|
@@ -46524,7 +46604,7 @@ SWIGINTERN VALUE _wrap_FXGradientBar_setShape(int nargs, VALUE *args, VALUE self
|
|
46524
46604
|
}
|
46525
46605
|
}
|
46526
46606
|
if (argc == 2) {
|
46527
|
-
int _v;
|
46607
|
+
int _v = 0;
|
46528
46608
|
void *vptr = 0;
|
46529
46609
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXGradientBar, 0);
|
46530
46610
|
_v = SWIG_CheckState(res);
|
@@ -46538,7 +46618,7 @@ SWIGINTERN VALUE _wrap_FXGradientBar_setShape(int nargs, VALUE *args, VALUE self
|
|
46538
46618
|
}
|
46539
46619
|
}
|
46540
46620
|
if (argc == 2) {
|
46541
|
-
int _v;
|
46621
|
+
int _v = 0;
|
46542
46622
|
void *vptr = 0;
|
46543
46623
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXGradientBar, 0);
|
46544
46624
|
_v = SWIG_CheckState(res);
|
@@ -46586,539 +46666,539 @@ fail:
|
|
46586
46666
|
|
46587
46667
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
46588
46668
|
|
46589
|
-
static void *
|
46590
|
-
return (void *)((FXComposite *)
|
46591
|
-
}
|
46592
|
-
static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46593
|
-
return (void *)((FXComposite *) ((FXRootWindow *) x));
|
46669
|
+
static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46670
|
+
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
46594
46671
|
}
|
46595
46672
|
static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46596
46673
|
return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
|
46597
46674
|
}
|
46598
|
-
static void *
|
46599
|
-
return (void *)((FXComposite *)
|
46675
|
+
static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46676
|
+
return (void *)((FXComposite *) ((FXRootWindow *) x));
|
46600
46677
|
}
|
46601
|
-
static void *
|
46602
|
-
return (void *)((FXComposite *)
|
46678
|
+
static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46679
|
+
return (void *)((FXComposite *) ((FXShell *) x));
|
46603
46680
|
}
|
46604
46681
|
static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46605
46682
|
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
46606
46683
|
}
|
46607
|
-
static void *
|
46608
|
-
return (void *)((
|
46684
|
+
static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46685
|
+
return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
|
46609
46686
|
}
|
46610
|
-
static void *
|
46611
|
-
return (void *)((
|
46687
|
+
static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46688
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
46612
46689
|
}
|
46613
|
-
static void *
|
46614
|
-
return (void *)((
|
46690
|
+
static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46691
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
46615
46692
|
}
|
46616
|
-
static void *
|
46617
|
-
return (void *)((
|
46693
|
+
static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46694
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
46618
46695
|
}
|
46619
|
-
static void *
|
46620
|
-
return (void *)((
|
46696
|
+
static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46697
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
46621
46698
|
}
|
46622
|
-
static void *
|
46623
|
-
return (void *)((
|
46699
|
+
static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46700
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
46624
46701
|
}
|
46625
|
-
static void *
|
46626
|
-
return (void *)((
|
46702
|
+
static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46703
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
46627
46704
|
}
|
46628
|
-
static void *
|
46629
|
-
return (void *)((
|
46705
|
+
static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46706
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
|
46630
46707
|
}
|
46631
|
-
static void *
|
46632
|
-
return (void *)((
|
46708
|
+
static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46709
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
|
46633
46710
|
}
|
46634
|
-
static void *
|
46635
|
-
return (void *)((
|
46711
|
+
static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46712
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
|
46636
46713
|
}
|
46637
|
-
static void *
|
46638
|
-
return (void *)((
|
46714
|
+
static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46715
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
46639
46716
|
}
|
46640
|
-
static void *
|
46641
|
-
return (void *)((
|
46717
|
+
static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46718
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
|
46642
46719
|
}
|
46643
|
-
static void *
|
46644
|
-
return (void *)((FXWindow *) (
|
46720
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46721
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
46645
46722
|
}
|
46646
|
-
static void *
|
46647
|
-
return (void *)((FXWindow *)
|
46723
|
+
static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46724
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
46648
46725
|
}
|
46649
|
-
static void *
|
46650
|
-
return (void *)((
|
46726
|
+
static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46727
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
|
46651
46728
|
}
|
46652
|
-
static void *
|
46653
|
-
return (void *)((FXWindow *) (
|
46729
|
+
static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46730
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
46654
46731
|
}
|
46655
|
-
static void *
|
46656
|
-
return (void *)((FXWindow *) (
|
46732
|
+
static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46733
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
46657
46734
|
}
|
46658
|
-
static void *
|
46659
|
-
return (void *)((
|
46735
|
+
static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46736
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
46660
46737
|
}
|
46661
|
-
static void *
|
46662
|
-
return (void *)((
|
46738
|
+
static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46739
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
46663
46740
|
}
|
46664
|
-
static void *
|
46665
|
-
return (void *)((
|
46741
|
+
static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46742
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
46666
46743
|
}
|
46667
|
-
static void *
|
46668
|
-
return (void *)((
|
46744
|
+
static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46745
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
|
46669
46746
|
}
|
46670
|
-
static void *
|
46671
|
-
return (void *)((
|
46747
|
+
static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46748
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
46672
46749
|
}
|
46673
|
-
static void *
|
46674
|
-
return (void *)((
|
46750
|
+
static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46751
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
|
46675
46752
|
}
|
46676
|
-
static void *
|
46677
|
-
return (void *)((
|
46753
|
+
static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46754
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
|
46678
46755
|
}
|
46679
|
-
static void *
|
46680
|
-
return (void *)((FXWindow *) (
|
46756
|
+
static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46757
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
46681
46758
|
}
|
46682
|
-
static void *
|
46683
|
-
return (void *)((
|
46759
|
+
static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46760
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
46684
46761
|
}
|
46685
|
-
static void *
|
46686
|
-
return (void *)((
|
46762
|
+
static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46763
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
|
46687
46764
|
}
|
46688
|
-
static void *
|
46689
|
-
return (void *)((
|
46765
|
+
static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46766
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
46690
46767
|
}
|
46691
|
-
static void *
|
46692
|
-
return (void *)((FXWindow *) (
|
46768
|
+
static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46769
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
46693
46770
|
}
|
46694
|
-
static void *
|
46695
|
-
return (void *)((FXSeparator *)
|
46771
|
+
static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46772
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
46696
46773
|
}
|
46697
|
-
static void *
|
46698
|
-
return (void *)((
|
46774
|
+
static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46775
|
+
return (void *)((FXDrawable *) ((FXWindow *) x));
|
46699
46776
|
}
|
46700
|
-
static void *
|
46701
|
-
return (void *)((
|
46777
|
+
static void *_p_FXArrowButtonTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46778
|
+
return (void *)((FXFrame *) ((FXArrowButton *) x));
|
46702
46779
|
}
|
46703
|
-
static void *
|
46704
|
-
return (void *)((
|
46780
|
+
static void *_p_FXBitmapFrameTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46781
|
+
return (void *)((FXFrame *) ((FXBitmapFrame *) x));
|
46705
46782
|
}
|
46706
|
-
static void *
|
46707
|
-
return (void *)((
|
46783
|
+
static void *_p_FXColorBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46784
|
+
return (void *)((FXFrame *) ((FXColorBar *) x));
|
46708
46785
|
}
|
46709
|
-
static void *
|
46710
|
-
return (void *)((
|
46786
|
+
static void *_p_FXColorRingTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46787
|
+
return (void *)((FXFrame *) ((FXColorRing *) x));
|
46711
46788
|
}
|
46712
|
-
static void *
|
46713
|
-
return (void *)((
|
46789
|
+
static void *_p_FXColorWellTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46790
|
+
return (void *)((FXFrame *) ((FXColorWell *) x));
|
46714
46791
|
}
|
46715
|
-
static void *
|
46716
|
-
return (void *)((
|
46792
|
+
static void *_p_FXColorWheelTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46793
|
+
return (void *)((FXFrame *) ((FXColorWheel *) x));
|
46717
46794
|
}
|
46718
|
-
static void *
|
46719
|
-
return (void *)((
|
46795
|
+
static void *_p_FXDialTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46796
|
+
return (void *)((FXFrame *) ((FXDial *) x));
|
46720
46797
|
}
|
46721
|
-
static void *
|
46722
|
-
return (void *)((
|
46798
|
+
static void *_p_FXGradientBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46799
|
+
return (void *)((FXFrame *) ((FXGradientBar *) x));
|
46723
46800
|
}
|
46724
|
-
static void *
|
46725
|
-
return (void *)((
|
46801
|
+
static void *_p_FXHeaderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46802
|
+
return (void *)((FXFrame *) ((FXHeader *) x));
|
46726
46803
|
}
|
46727
|
-
static void *
|
46728
|
-
return (void *)((
|
46804
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46805
|
+
return (void *)((FXFrame *) (FXSeparator *) ((FXHorizontalSeparator *) x));
|
46729
46806
|
}
|
46730
|
-
static void *
|
46731
|
-
return (void *)((
|
46807
|
+
static void *_p_FXImageFrameTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46808
|
+
return (void *)((FXFrame *) ((FXImageFrame *) x));
|
46732
46809
|
}
|
46733
|
-
static void *
|
46734
|
-
return (void *)((
|
46810
|
+
static void *_p_FXKnobTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46811
|
+
return (void *)((FXFrame *) ((FXKnob *) x));
|
46735
46812
|
}
|
46736
|
-
static void *
|
46737
|
-
return (void *)((
|
46813
|
+
static void *_p_FXProgressBarTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46814
|
+
return (void *)((FXFrame *) ((FXProgressBar *) x));
|
46738
46815
|
}
|
46739
|
-
static void *
|
46740
|
-
return (void *)((
|
46816
|
+
static void *_p_FXRealSliderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46817
|
+
return (void *)((FXFrame *) ((FXRealSlider *) x));
|
46741
46818
|
}
|
46742
|
-
static void *
|
46743
|
-
return (void *)((
|
46819
|
+
static void *_p_FXRulerTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46820
|
+
return (void *)((FXFrame *) ((FXRuler *) x));
|
46744
46821
|
}
|
46745
|
-
static void *
|
46746
|
-
return (void *)((
|
46822
|
+
static void *_p_FXSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46823
|
+
return (void *)((FXFrame *) ((FXSeparator *) x));
|
46747
46824
|
}
|
46748
|
-
static void *
|
46749
|
-
return (void *)((
|
46825
|
+
static void *_p_FXSliderTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46826
|
+
return (void *)((FXFrame *) ((FXSlider *) x));
|
46750
46827
|
}
|
46751
|
-
static void *
|
46752
|
-
return (void *)((
|
46828
|
+
static void *_p_FXStatusLineTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46829
|
+
return (void *)((FXFrame *) ((FXStatusLine *) x));
|
46753
46830
|
}
|
46754
|
-
static void *
|
46755
|
-
return (void *)((
|
46831
|
+
static void *_p_FXTextFieldTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46832
|
+
return (void *)((FXFrame *) ((FXTextField *) x));
|
46756
46833
|
}
|
46757
|
-
static void *
|
46758
|
-
return (void *)((
|
46834
|
+
static void *_p_FXToolBarTabTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46835
|
+
return (void *)((FXFrame *) ((FXToolBarTab *) x));
|
46759
46836
|
}
|
46760
|
-
static void *
|
46761
|
-
return (void *)((
|
46837
|
+
static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46838
|
+
return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
|
46762
46839
|
}
|
46763
|
-
static void *
|
46764
|
-
return (void *)((
|
46840
|
+
static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46841
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
46765
46842
|
}
|
46766
|
-
static void *
|
46767
|
-
return (void *)((
|
46843
|
+
static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46844
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
46768
46845
|
}
|
46769
|
-
static void *
|
46770
|
-
return (void *)((
|
46846
|
+
static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46847
|
+
return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
|
46771
46848
|
}
|
46772
|
-
static void *
|
46773
|
-
return (void *)((
|
46849
|
+
static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46850
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
46774
46851
|
}
|
46775
|
-
static void *
|
46776
|
-
return (void *)((
|
46852
|
+
static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46853
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
46777
46854
|
}
|
46778
|
-
static void *
|
46779
|
-
return (void *)((
|
46855
|
+
static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46856
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
46780
46857
|
}
|
46781
|
-
static void *
|
46782
|
-
return (void *)((
|
46858
|
+
static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46859
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
46783
46860
|
}
|
46784
|
-
static void *
|
46785
|
-
return (void *)((
|
46861
|
+
static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46862
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
46786
46863
|
}
|
46787
|
-
static void *
|
46788
|
-
return (void *)((
|
46864
|
+
static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46865
|
+
return (void *)((FXId *) ((FXCursor *) x));
|
46789
46866
|
}
|
46790
|
-
static void *
|
46791
|
-
return (void *)((
|
46867
|
+
static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46868
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
46792
46869
|
}
|
46793
|
-
static void *
|
46794
|
-
return (void *)((
|
46870
|
+
static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46871
|
+
return (void *)((FXId *) ((FXDrawable *) x));
|
46795
46872
|
}
|
46796
|
-
static void *
|
46797
|
-
return (void *)((
|
46873
|
+
static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46874
|
+
return (void *)((FXId *) ((FXFont *) x));
|
46798
46875
|
}
|
46799
|
-
static void *
|
46800
|
-
return (void *)((
|
46876
|
+
static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46877
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
46801
46878
|
}
|
46802
|
-
static void *
|
46803
|
-
return (void *)((
|
46879
|
+
static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46880
|
+
return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
|
46804
46881
|
}
|
46805
|
-
static void *
|
46806
|
-
return (void *)((
|
46882
|
+
static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46883
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
46807
46884
|
}
|
46808
|
-
static void *
|
46809
|
-
return (void *)((
|
46885
|
+
static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46886
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
46810
46887
|
}
|
46811
|
-
static void *
|
46812
|
-
return (void *)((
|
46888
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46889
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
46813
46890
|
}
|
46814
|
-
static void *
|
46815
|
-
return (void *)((
|
46891
|
+
static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46892
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
46816
46893
|
}
|
46817
|
-
static void *
|
46818
|
-
return (void *)((
|
46894
|
+
static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46895
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
46819
46896
|
}
|
46820
|
-
static void *
|
46821
|
-
return (void *)((
|
46897
|
+
static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46898
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
46822
46899
|
}
|
46823
|
-
static void *
|
46824
|
-
return (void *)((
|
46900
|
+
static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46901
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
46825
46902
|
}
|
46826
|
-
static void *
|
46827
|
-
return (void *)((
|
46903
|
+
static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46904
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
46828
46905
|
}
|
46829
|
-
static void *
|
46830
|
-
return (void *)((
|
46906
|
+
static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46907
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
46831
46908
|
}
|
46832
|
-
static void *
|
46833
|
-
return (void *)((
|
46909
|
+
static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46910
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
46834
46911
|
}
|
46835
|
-
static void *
|
46836
|
-
return (void *)((
|
46912
|
+
static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46913
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
46837
46914
|
}
|
46838
|
-
static void *
|
46839
|
-
return (void *)((
|
46915
|
+
static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46916
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
46840
46917
|
}
|
46841
|
-
static void *
|
46842
|
-
return (void *)((
|
46918
|
+
static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46919
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
46843
46920
|
}
|
46844
|
-
static void *
|
46845
|
-
return (void *)((
|
46921
|
+
static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46922
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
46846
46923
|
}
|
46847
|
-
static void *
|
46848
|
-
return (void *)((
|
46924
|
+
static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46925
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
46849
46926
|
}
|
46850
|
-
static void *
|
46851
|
-
return (void *)((
|
46927
|
+
static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46928
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
46852
46929
|
}
|
46853
|
-
static void *
|
46854
|
-
return (void *)((
|
46930
|
+
static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46931
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
46855
46932
|
}
|
46856
|
-
static void *
|
46857
|
-
return (void *)((
|
46933
|
+
static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46934
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
46858
46935
|
}
|
46859
|
-
static void *
|
46860
|
-
return (void *)((
|
46936
|
+
static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46937
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
46861
46938
|
}
|
46862
|
-
static void *
|
46863
|
-
return (void *)((
|
46939
|
+
static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46940
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
46864
46941
|
}
|
46865
|
-
static void *
|
46866
|
-
return (void *)((
|
46942
|
+
static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46943
|
+
return (void *)((FXId *) ((FXVisual *) x));
|
46867
46944
|
}
|
46868
|
-
static void *
|
46869
|
-
return (void *)((
|
46945
|
+
static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46946
|
+
return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
|
46870
46947
|
}
|
46871
|
-
static void *
|
46872
|
-
return (void *)((
|
46948
|
+
static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46949
|
+
return (void *)((FXObject *) ((FXAccelTable *) x));
|
46873
46950
|
}
|
46874
|
-
static void *
|
46875
|
-
return (void *)((
|
46951
|
+
static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46952
|
+
return (void *)((FXObject *) ((FXApp *) x));
|
46876
46953
|
}
|
46877
|
-
static void *
|
46878
|
-
return (void *)((
|
46954
|
+
static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46955
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
46879
46956
|
}
|
46880
|
-
static void *
|
46881
|
-
return (void *)((
|
46957
|
+
static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46958
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
46882
46959
|
}
|
46883
|
-
static void *
|
46884
|
-
return (void *)((
|
46960
|
+
static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46961
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
|
46885
46962
|
}
|
46886
|
-
static void *
|
46887
|
-
return (void *)((
|
46963
|
+
static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46964
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
46888
46965
|
}
|
46889
|
-
static void *
|
46890
|
-
return (void *)((
|
46966
|
+
static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46967
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
46891
46968
|
}
|
46892
|
-
static void *
|
46893
|
-
return (void *)((
|
46969
|
+
static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46970
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
46894
46971
|
}
|
46895
|
-
static void *
|
46896
|
-
return (void *)((FXDrawable *)
|
46972
|
+
static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46973
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
46897
46974
|
}
|
46898
|
-
static void *
|
46899
|
-
return (void *)((
|
46975
|
+
static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46976
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
46900
46977
|
}
|
46901
|
-
static void *
|
46902
|
-
return (void *)((
|
46978
|
+
static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46979
|
+
return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
|
46903
46980
|
}
|
46904
|
-
static void *
|
46905
|
-
return (void *)((
|
46981
|
+
static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46982
|
+
return (void *)((FXObject *) ((FXDataTarget *) x));
|
46906
46983
|
}
|
46907
|
-
static void *
|
46908
|
-
return (void *)((
|
46984
|
+
static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46985
|
+
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
46909
46986
|
}
|
46910
|
-
static void *
|
46911
|
-
return (void *)((
|
46987
|
+
static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46988
|
+
return (void *)((FXObject *) ((FXDelegator *) x));
|
46912
46989
|
}
|
46913
|
-
static void *
|
46914
|
-
return (void *)((
|
46990
|
+
static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46991
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
46915
46992
|
}
|
46916
|
-
static void *
|
46917
|
-
return (void *)((
|
46993
|
+
static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46994
|
+
return (void *)((FXObject *) ((FXDict *) x));
|
46918
46995
|
}
|
46919
|
-
static void *
|
46920
|
-
return (void *)((
|
46996
|
+
static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
46997
|
+
return (void *)((FXObject *) ((FXDocument *) x));
|
46921
46998
|
}
|
46922
|
-
static void *
|
46923
|
-
return (void *)((
|
46999
|
+
static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47000
|
+
return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
|
46924
47001
|
}
|
46925
|
-
static void *
|
46926
|
-
return (void *)((
|
47002
|
+
static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47003
|
+
return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
|
46927
47004
|
}
|
46928
|
-
static void *
|
46929
|
-
return (void *)((
|
47005
|
+
static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47006
|
+
return (void *)((FXObject *) (FXId *) ((FXFont *) x));
|
46930
47007
|
}
|
46931
|
-
static void *
|
46932
|
-
return (void *)((
|
47008
|
+
static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47009
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
46933
47010
|
}
|
46934
|
-
static void *
|
46935
|
-
return (void *)((
|
47011
|
+
static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47012
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
46936
47013
|
}
|
46937
|
-
static void *
|
46938
|
-
return (void *)((
|
47014
|
+
static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47015
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
46939
47016
|
}
|
46940
|
-
static void *
|
46941
|
-
return (void *)((
|
47017
|
+
static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47018
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
46942
47019
|
}
|
46943
|
-
static void *
|
46944
|
-
return (void *)((
|
47020
|
+
static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47021
|
+
return (void *)((FXObject *) ((FXHeaderItem *) x));
|
46945
47022
|
}
|
46946
|
-
static void *
|
46947
|
-
return (void *)((
|
47023
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47024
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
46948
47025
|
}
|
46949
|
-
static void *
|
46950
|
-
return (void *)((
|
47026
|
+
static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47027
|
+
return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
|
46951
47028
|
}
|
46952
|
-
static void *
|
46953
|
-
return (void *)((
|
47029
|
+
static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47030
|
+
return (void *)((FXObject *) ((FXId *) x));
|
46954
47031
|
}
|
46955
|
-
static void *
|
46956
|
-
return (void *)((
|
47032
|
+
static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47033
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
46957
47034
|
}
|
46958
|
-
static void *
|
46959
|
-
return (void *)((
|
47035
|
+
static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47036
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
46960
47037
|
}
|
46961
|
-
static void *
|
46962
|
-
return (void *)((
|
47038
|
+
static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47039
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
46963
47040
|
}
|
46964
|
-
static void *
|
46965
|
-
return (void *)((
|
47041
|
+
static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47042
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
46966
47043
|
}
|
46967
|
-
static void *
|
46968
|
-
return (void *)((
|
47044
|
+
static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47045
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
46969
47046
|
}
|
46970
|
-
static void *
|
46971
|
-
return (void *)((
|
47047
|
+
static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47048
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
46972
47049
|
}
|
46973
|
-
static void *
|
46974
|
-
return (void *)((
|
47050
|
+
static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47051
|
+
return (void *)((FXObject *) ((FXRecentFiles *) x));
|
46975
47052
|
}
|
46976
|
-
static void *
|
46977
|
-
return (void *)((
|
47053
|
+
static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47054
|
+
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
46978
47055
|
}
|
46979
|
-
static void *
|
46980
|
-
return (void *)((
|
47056
|
+
static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47057
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
46981
47058
|
}
|
46982
|
-
static void *
|
46983
|
-
return (void *)((
|
47059
|
+
static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47060
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
46984
47061
|
}
|
46985
|
-
static void *
|
46986
|
-
return (void *)((
|
47062
|
+
static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47063
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
46987
47064
|
}
|
46988
|
-
static void *
|
46989
|
-
return (void *)((
|
47065
|
+
static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47066
|
+
return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
|
46990
47067
|
}
|
46991
|
-
static void *
|
46992
|
-
return (void *)((
|
47068
|
+
static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47069
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
46993
47070
|
}
|
46994
|
-
static void *
|
46995
|
-
return (void *)((
|
47071
|
+
static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47072
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
46996
47073
|
}
|
46997
|
-
static void *
|
46998
|
-
return (void *)((
|
47074
|
+
static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47075
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
46999
47076
|
}
|
47000
|
-
static void *
|
47001
|
-
return (void *)((
|
47077
|
+
static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47078
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
47002
47079
|
}
|
47003
|
-
static void *
|
47004
|
-
return (void *)((
|
47080
|
+
static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47081
|
+
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
47005
47082
|
}
|
47006
|
-
static void *
|
47007
|
-
return (void *)((
|
47083
|
+
static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47084
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
47008
47085
|
}
|
47009
|
-
static void *
|
47010
|
-
return (void *)((FXId *)
|
47086
|
+
static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47087
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
47011
47088
|
}
|
47012
|
-
static void *
|
47013
|
-
return (void *)((
|
47089
|
+
static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47090
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
47014
47091
|
}
|
47015
|
-
static void *
|
47016
|
-
return (void *)((
|
47092
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47093
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
47017
47094
|
}
|
47018
|
-
static void *
|
47019
|
-
return (void *)((FXId *)
|
47095
|
+
static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47096
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
47020
47097
|
}
|
47021
|
-
static void *
|
47022
|
-
return (void *)((
|
47098
|
+
static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47099
|
+
return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
|
47023
47100
|
}
|
47024
|
-
static void *
|
47025
|
-
return (void *)((
|
47101
|
+
static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47102
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
|
47026
47103
|
}
|
47027
|
-
static void *
|
47028
|
-
return (void *)((
|
47104
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXSeparator(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47105
|
+
return (void *)((FXSeparator *) ((FXHorizontalSeparator *) x));
|
47029
47106
|
}
|
47030
|
-
static void *
|
47031
|
-
return (void *)((
|
47107
|
+
static void *_p_FXVerticalSeparatorTo_p_FXSeparator(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47108
|
+
return (void *)((FXSeparator *) ((FXVerticalSeparator *) x));
|
47032
47109
|
}
|
47033
|
-
static void *
|
47034
|
-
return (void *)((
|
47110
|
+
static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47111
|
+
return (void *)((FXStream *) ((FXFileStream *) x));
|
47035
47112
|
}
|
47036
|
-
static void *
|
47037
|
-
return (void *)((
|
47113
|
+
static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47114
|
+
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
47038
47115
|
}
|
47039
|
-
static void *
|
47040
|
-
return (void *)((
|
47116
|
+
static void *_p_FXArrowButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47117
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
|
47041
47118
|
}
|
47042
|
-
static void *
|
47043
|
-
return (void *)((
|
47119
|
+
static void *_p_FXBitmapFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47120
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
|
47044
47121
|
}
|
47045
|
-
static void *
|
47046
|
-
return (void *)((
|
47122
|
+
static void *_p_FXColorBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47123
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
|
47047
47124
|
}
|
47048
|
-
static void *
|
47049
|
-
return (void *)((
|
47125
|
+
static void *_p_FXColorRingTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47126
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
|
47050
47127
|
}
|
47051
|
-
static void *
|
47052
|
-
return (void *)((
|
47128
|
+
static void *_p_FXColorWellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47129
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorWell *) x));
|
47053
47130
|
}
|
47054
|
-
static void *
|
47055
|
-
return (void *)((
|
47131
|
+
static void *_p_FXColorWheelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47132
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
|
47056
47133
|
}
|
47057
|
-
static void *
|
47058
|
-
return (void *)((
|
47134
|
+
static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47135
|
+
return (void *)((FXWindow *) ((FXComposite *) x));
|
47059
47136
|
}
|
47060
|
-
static void *
|
47061
|
-
return (void *)((FXFrame *)
|
47137
|
+
static void *_p_FXDialTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47138
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXDial *) x));
|
47062
47139
|
}
|
47063
|
-
static void *
|
47064
|
-
return (void *)((
|
47140
|
+
static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47141
|
+
return (void *)((FXWindow *) ((FXFrame *) x));
|
47065
47142
|
}
|
47066
|
-
static void *
|
47067
|
-
return (void *)((FXFrame *)
|
47143
|
+
static void *_p_FXGradientBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47144
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
|
47068
47145
|
}
|
47069
|
-
static void *
|
47070
|
-
return (void *)((FXFrame *)
|
47146
|
+
static void *_p_FXHeaderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47147
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXHeader *) x));
|
47071
47148
|
}
|
47072
|
-
static void *
|
47073
|
-
return (void *)((FXFrame *)
|
47149
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47150
|
+
return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
47074
47151
|
}
|
47075
|
-
static void *
|
47076
|
-
return (void *)((FXFrame *)
|
47152
|
+
static void *_p_FXImageFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47153
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
|
47077
47154
|
}
|
47078
|
-
static void *
|
47079
|
-
return (void *)((FXFrame *)
|
47155
|
+
static void *_p_FXKnobTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47156
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
|
47080
47157
|
}
|
47081
|
-
static void *
|
47082
|
-
return (void *)((
|
47158
|
+
static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47159
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
47083
47160
|
}
|
47084
|
-
static void *
|
47085
|
-
return (void *)((
|
47161
|
+
static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47162
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
|
47086
47163
|
}
|
47087
|
-
static void *
|
47088
|
-
return (void *)((FXFrame *)
|
47164
|
+
static void *_p_FXProgressBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47165
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
|
47089
47166
|
}
|
47090
|
-
static void *
|
47091
|
-
return (void *)((FXFrame *)
|
47167
|
+
static void *_p_FXRealSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47168
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXRealSlider *) x));
|
47092
47169
|
}
|
47093
|
-
static void *
|
47094
|
-
return (void *)((
|
47170
|
+
static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47171
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
|
47095
47172
|
}
|
47096
|
-
static void *
|
47097
|
-
return (void *)((
|
47173
|
+
static void *_p_FXRulerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47174
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
|
47098
47175
|
}
|
47099
|
-
static void *
|
47100
|
-
return (void *)((FXFrame *)
|
47176
|
+
static void *_p_FXSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47177
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
|
47101
47178
|
}
|
47102
|
-
static void *
|
47103
|
-
return (void *)((
|
47179
|
+
static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47180
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
|
47104
47181
|
}
|
47105
|
-
static void *
|
47106
|
-
return (void *)((FXFrame *)
|
47182
|
+
static void *_p_FXSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47183
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXSlider *) x));
|
47107
47184
|
}
|
47108
|
-
static void *
|
47109
|
-
return (void *)((
|
47185
|
+
static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47186
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
47110
47187
|
}
|
47111
|
-
static void *
|
47112
|
-
return (void *)((FXFrame *)
|
47188
|
+
static void *_p_FXStatusLineTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47189
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
|
47113
47190
|
}
|
47114
|
-
static void *
|
47115
|
-
return (void *)((FXFrame *)
|
47191
|
+
static void *_p_FXTextFieldTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47192
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
|
47116
47193
|
}
|
47117
|
-
static void *
|
47118
|
-
return (void *)((FXFrame *)
|
47194
|
+
static void *_p_FXToolBarTabTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47195
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
|
47119
47196
|
}
|
47120
|
-
static void *
|
47121
|
-
return (void *)((
|
47197
|
+
static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47198
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
47199
|
+
}
|
47200
|
+
static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
47201
|
+
return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
47122
47202
|
}
|
47123
47203
|
static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", "FXArrowButton *", 0, 0, (void*)0, 0};
|
47124
47204
|
static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
|
@@ -47128,12 +47208,12 @@ static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", "FXColorRing *"
|
|
47128
47208
|
static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", "FXColorWell *", 0, 0, (void*)0, 0};
|
47129
47209
|
static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", "FXColorWheel *", 0, 0, (void*)0, 0};
|
47130
47210
|
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", "FXComposite *", 0, 0, (void*)0, 0};
|
47131
|
-
static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
|
47132
|
-
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
47133
|
-
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
47134
|
-
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
47135
47211
|
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
47212
|
+
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
47213
|
+
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
47214
|
+
static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
|
47136
47215
|
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
47216
|
+
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
47137
47217
|
static swig_type_info _swigt__p_FXDial = {"_p_FXDial", "FXDial *", 0, 0, (void*)0, 0};
|
47138
47218
|
static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
|
47139
47219
|
static swig_type_info _swigt__p_FXFont = {"_p_FXFont", "FXFont *", 0, 0, (void*)0, 0};
|
@@ -47145,28 +47225,28 @@ static swig_type_info _swigt__p_FXHeaderItem = {"_p_FXHeaderItem", "FXHeaderItem
|
|
47145
47225
|
static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", "FXHorizontalSeparator *", 0, 0, (void*)0, 0};
|
47146
47226
|
static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
|
47147
47227
|
static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
|
47148
|
-
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
47149
47228
|
static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
|
47229
|
+
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
47150
47230
|
static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
|
47151
47231
|
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
47152
47232
|
static swig_type_info _swigt__p_FXImage = {"_p_FXImage", "FXImage *", 0, 0, (void*)0, 0};
|
47153
47233
|
static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", "FXImageFrame *", 0, 0, (void*)0, 0};
|
47154
47234
|
static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", "FXKnob *", 0, 0, (void*)0, 0};
|
47155
47235
|
static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
|
47156
|
-
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
47157
|
-
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
47158
47236
|
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
47159
|
-
static swig_type_info
|
47237
|
+
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
|
47238
|
+
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
47239
|
+
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
47240
|
+
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
47241
|
+
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
47242
|
+
static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
|
47243
|
+
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
47160
47244
|
static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
|
47161
47245
|
static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
|
47162
|
-
static swig_type_info
|
47246
|
+
static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
|
47247
|
+
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
47163
47248
|
static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
|
47164
|
-
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
47165
|
-
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
47166
|
-
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
47167
|
-
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
47168
47249
|
static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
|
47169
|
-
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
|
47170
47250
|
static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", "FXProgressBar *", 0, 0, (void*)0, 0};
|
47171
47251
|
static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", "FXRealSlider *", 0, 0, (void*)0, 0};
|
47172
47252
|
static swig_type_info _swigt__p_FXRegion = {"_p_FXRegion", "FXRegion *", 0, 0, (void*)0, 0};
|
@@ -47181,17 +47261,17 @@ static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", "FXTextField *"
|
|
47181
47261
|
static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", "FXToolBarTab *", 0, 0, (void*)0, 0};
|
47182
47262
|
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", "FXVerticalSeparator *", 0, 0, (void*)0, 0};
|
47183
47263
|
static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
|
47184
|
-
static swig_type_info _swigt__p_char = {"_p_char", "
|
47185
|
-
static swig_type_info _swigt__p_double = {"_p_double", "
|
47186
|
-
static swig_type_info _swigt__p_float = {"_p_float", "
|
47187
|
-
static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int
|
47188
|
-
static swig_type_info _swigt__p_long = {"_p_long", "
|
47264
|
+
static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
|
47265
|
+
static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
|
47266
|
+
static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
|
47267
|
+
static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
|
47268
|
+
static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
|
47189
47269
|
static swig_type_info _swigt__p_p_FXGradient = {"_p_p_FXGradient", "FXGradient **", 0, 0, (void*)0, 0};
|
47190
|
-
static swig_type_info _swigt__p_short = {"_p_short", "
|
47191
|
-
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char
|
47192
|
-
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "
|
47193
|
-
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "
|
47194
|
-
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short
|
47270
|
+
static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
|
47271
|
+
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
|
47272
|
+
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
|
47273
|
+
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
|
47274
|
+
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
|
47195
47275
|
|
47196
47276
|
static swig_type_info *swig_type_initial[] = {
|
47197
47277
|
&_swigt__p_FXAccelTable,
|
@@ -47275,46 +47355,46 @@ static swig_cast_info _swigc__p_FXColorBar[] = { {&_swigt__p_FXColorBar, 0, 0,
|
|
47275
47355
|
static swig_cast_info _swigc__p_FXColorRing[] = { {&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
47276
47356
|
static swig_cast_info _swigc__p_FXColorWell[] = { {&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
|
47277
47357
|
static swig_cast_info _swigc__p_FXColorWheel[] = { {&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
|
47278
|
-
static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
|
47279
|
-
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
47280
|
-
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
47281
|
-
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
47282
47358
|
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
47359
|
+
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
47360
|
+
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
47361
|
+
static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
|
47283
47362
|
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
47284
|
-
static swig_cast_info
|
47363
|
+
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
47364
|
+
static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
|
47285
47365
|
static swig_cast_info _swigc__p_FXDial[] = { {&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
|
47286
|
-
static swig_cast_info _swigc__p_FXDrawable[] = { {&
|
47366
|
+
static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
|
47287
47367
|
static swig_cast_info _swigc__p_FXFont[] = { {&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
47288
|
-
static swig_cast_info _swigc__p_FXFrame[] = { {&
|
47368
|
+
static swig_cast_info _swigc__p_FXFrame[] = { {&_swigt__p_FXFrame, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXFrame, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXFrame, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXFrame, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXFrame, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXFrame, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXFrame, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXFrame, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXFrame, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXFrame, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXFrame, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXFrame, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXFrame, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0},{0, 0, 0, 0}};
|
47289
47369
|
static swig_cast_info _swigc__p_FXGradient[] = { {&_swigt__p_FXGradient, 0, 0, 0},{0, 0, 0, 0}};
|
47290
47370
|
static swig_cast_info _swigc__p_FXGradientBar[] = { {&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
|
47291
47371
|
static swig_cast_info _swigc__p_FXHeader[] = { {&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
|
47292
47372
|
static swig_cast_info _swigc__p_FXHeaderItem[] = { {&_swigt__p_FXHeaderItem, 0, 0, 0},{0, 0, 0, 0}};
|
47293
47373
|
static swig_cast_info _swigc__p_FXHorizontalSeparator[] = { {&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
47294
47374
|
static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
|
47295
|
-
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
47296
47375
|
static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
|
47376
|
+
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
47297
47377
|
static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
|
47298
47378
|
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
47299
|
-
static swig_cast_info _swigc__p_FXId[] = { {&
|
47379
|
+
static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXId, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXId, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXId, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXId, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0},{0, 0, 0, 0}};
|
47300
47380
|
static swig_cast_info _swigc__p_FXImage[] = { {&_swigt__p_FXImage, 0, 0, 0},{0, 0, 0, 0}};
|
47301
47381
|
static swig_cast_info _swigc__p_FXImageFrame[] = { {&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
|
47302
47382
|
static swig_cast_info _swigc__p_FXKnob[] = { {&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
|
47303
|
-
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
47304
|
-
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
47305
47383
|
static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
|
47306
|
-
static swig_cast_info
|
47384
|
+
static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
|
47385
|
+
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
47386
|
+
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
47387
|
+
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
47388
|
+
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
47389
|
+
static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
|
47390
|
+
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
47307
47391
|
static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
|
47308
47392
|
static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
|
47309
|
-
static swig_cast_info
|
47393
|
+
static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
|
47394
|
+
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
47310
47395
|
static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
|
47311
|
-
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
47312
|
-
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
47313
|
-
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
47314
|
-
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
47315
47396
|
static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
|
47316
|
-
static swig_cast_info
|
47317
|
-
static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
47397
|
+
static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
47318
47398
|
static swig_cast_info _swigc__p_FXProgressBar[] = { {&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
|
47319
47399
|
static swig_cast_info _swigc__p_FXRealSlider[] = { {&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
|
47320
47400
|
static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -47324,11 +47404,11 @@ static swig_cast_info _swigc__p_FXSlider[] = { {&_swigt__p_FXSlider, 0, 0, 0},{
|
|
47324
47404
|
static swig_cast_info _swigc__p_FXStatusLine[] = { {&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
47325
47405
|
static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
|
47326
47406
|
static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
|
47327
|
-
static swig_cast_info _swigc__p_FXStream[] = { {&
|
47407
|
+
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}};
|
47328
47408
|
static swig_cast_info _swigc__p_FXTextField[] = { {&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
|
47329
47409
|
static swig_cast_info _swigc__p_FXToolBarTab[] = { {&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
|
47330
47410
|
static swig_cast_info _swigc__p_FXVerticalSeparator[] = { {&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
47331
|
-
static swig_cast_info _swigc__p_FXWindow[] = { {&
|
47411
|
+
static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
|
47332
47412
|
static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
|
47333
47413
|
static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
|
47334
47414
|
static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -47471,9 +47551,12 @@ extern "C" {
|
|
47471
47551
|
#define SWIGRUNTIME_DEBUG
|
47472
47552
|
#endif
|
47473
47553
|
|
47554
|
+
#ifndef SWIG_INIT_CLIENT_DATA_TYPE
|
47555
|
+
#define SWIG_INIT_CLIENT_DATA_TYPE void *
|
47556
|
+
#endif
|
47474
47557
|
|
47475
47558
|
SWIGRUNTIME void
|
47476
|
-
SWIG_InitializeModule(
|
47559
|
+
SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
|
47477
47560
|
size_t i;
|
47478
47561
|
swig_module_info *module_head, *iter;
|
47479
47562
|
int init;
|