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/image_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
|
|
@@ -1996,12 +2036,56 @@ static swig_module_info swig_module = {swig_types, 124, 0, 0, 0, 0};
|
|
1996
2036
|
|
1997
2037
|
|
1998
2038
|
|
1999
|
-
#
|
2000
|
-
#
|
2039
|
+
#ifdef __cplusplus
|
2040
|
+
#include <utility>
|
2041
|
+
/* SwigValueWrapper is described in swig.swg */
|
2042
|
+
template<typename T> class SwigValueWrapper {
|
2043
|
+
struct SwigSmartPointer {
|
2044
|
+
T *ptr;
|
2045
|
+
SwigSmartPointer(T *p) : ptr(p) { }
|
2046
|
+
~SwigSmartPointer() { delete ptr; }
|
2047
|
+
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
2048
|
+
void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
|
2049
|
+
} pointer;
|
2050
|
+
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
2051
|
+
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
2052
|
+
public:
|
2053
|
+
SwigValueWrapper() : pointer(0) { }
|
2054
|
+
SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
|
2055
|
+
#if __cplusplus >=201103L
|
2056
|
+
SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
|
2057
|
+
operator T&&() const { return std::move(*pointer.ptr); }
|
2058
|
+
#else
|
2059
|
+
operator T&() const { return *pointer.ptr; }
|
2060
|
+
#endif
|
2061
|
+
T *operator&() const { return pointer.ptr; }
|
2062
|
+
static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
|
2063
|
+
};
|
2064
|
+
|
2065
|
+
/*
|
2066
|
+
* SwigValueInit() is a generic initialisation solution as the following approach:
|
2067
|
+
*
|
2068
|
+
* T c_result = T();
|
2069
|
+
*
|
2070
|
+
* doesn't compile for all types for example:
|
2071
|
+
*
|
2072
|
+
* unsigned int c_result = unsigned int();
|
2073
|
+
*/
|
2074
|
+
template <typename T> T SwigValueInit() {
|
2075
|
+
return T();
|
2076
|
+
}
|
2001
2077
|
|
2078
|
+
#if __cplusplus >=201103L
|
2079
|
+
# define SWIG_STD_MOVE(OBJ) std::move(OBJ)
|
2080
|
+
#else
|
2081
|
+
# define SWIG_STD_MOVE(OBJ) OBJ
|
2082
|
+
#endif
|
2083
|
+
|
2084
|
+
#endif
|
2002
2085
|
|
2003
|
-
|
2004
|
-
#define
|
2086
|
+
|
2087
|
+
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
2088
|
+
#define SWIG_RUBY_THREAD_END_BLOCK
|
2005
2089
|
|
2006
2090
|
|
2007
2091
|
#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
|
@@ -3209,7 +3293,7 @@ SWIGINTERN VALUE _wrap_FXBitmap_setData(int nargs, VALUE *args, VALUE self) {
|
|
3209
3293
|
argv[ii] = args[ii-1];
|
3210
3294
|
}
|
3211
3295
|
if ((argc >= 2) && (argc <= 3)) {
|
3212
|
-
int _v;
|
3296
|
+
int _v = 0;
|
3213
3297
|
void *vptr = 0;
|
3214
3298
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXBitmap, 0);
|
3215
3299
|
_v = SWIG_CheckState(res);
|
@@ -3231,7 +3315,7 @@ SWIGINTERN VALUE _wrap_FXBitmap_setData(int nargs, VALUE *args, VALUE self) {
|
|
3231
3315
|
}
|
3232
3316
|
}
|
3233
3317
|
if (argc == 5) {
|
3234
|
-
int _v;
|
3318
|
+
int _v = 0;
|
3235
3319
|
void *vptr = 0;
|
3236
3320
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXBitmap, 0);
|
3237
3321
|
_v = SWIG_CheckState(res);
|
@@ -3699,7 +3783,7 @@ _wrap_FXImage_pixel_string__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
|
3699
3783
|
arg1 = reinterpret_cast< FXImage * >(argp1);
|
3700
3784
|
arg2 = static_cast<FXlong>(NUM2LONG(argv[0]));
|
3701
3785
|
arg3 = static_cast<FXlong>(NUM2LONG(argv[1]));
|
3702
|
-
result = (VALUE)FXImage_pixel_string__SWIG_1(arg1,arg2,arg3);
|
3786
|
+
result = (VALUE)FXImage_pixel_string__SWIG_1(arg1,SWIG_STD_MOVE(arg2),SWIG_STD_MOVE(arg3));
|
3703
3787
|
vresult = result;
|
3704
3788
|
return vresult;
|
3705
3789
|
fail:
|
@@ -3719,7 +3803,7 @@ SWIGINTERN VALUE _wrap_FXImage_pixel_string(int nargs, VALUE *args, VALUE self)
|
|
3719
3803
|
argv[ii] = args[ii-1];
|
3720
3804
|
}
|
3721
3805
|
if (argc == 1) {
|
3722
|
-
int _v;
|
3806
|
+
int _v = 0;
|
3723
3807
|
void *vptr = 0;
|
3724
3808
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXImage, 0);
|
3725
3809
|
_v = SWIG_CheckState(res);
|
@@ -3728,7 +3812,7 @@ SWIGINTERN VALUE _wrap_FXImage_pixel_string(int nargs, VALUE *args, VALUE self)
|
|
3728
3812
|
}
|
3729
3813
|
}
|
3730
3814
|
if (argc == 3) {
|
3731
|
-
int _v;
|
3815
|
+
int _v = 0;
|
3732
3816
|
void *vptr = 0;
|
3733
3817
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXImage, 0);
|
3734
3818
|
_v = SWIG_CheckState(res);
|
@@ -12649,7 +12733,7 @@ SWIGINTERN VALUE _wrap_fxloadXBM(int nargs, VALUE *args, VALUE self) {
|
|
12649
12733
|
argv[ii] = args[ii];
|
12650
12734
|
}
|
12651
12735
|
if (argc == 1) {
|
12652
|
-
int _v;
|
12736
|
+
int _v = 0;
|
12653
12737
|
void *vptr = 0;
|
12654
12738
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStream, SWIG_POINTER_NO_NULL);
|
12655
12739
|
_v = SWIG_CheckState(res);
|
@@ -12658,7 +12742,7 @@ SWIGINTERN VALUE _wrap_fxloadXBM(int nargs, VALUE *args, VALUE self) {
|
|
12658
12742
|
}
|
12659
12743
|
}
|
12660
12744
|
if (argc == 4) {
|
12661
|
-
int _v;
|
12745
|
+
int _v = 0;
|
12662
12746
|
void *vptr = 0;
|
12663
12747
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_unsigned_char, 0);
|
12664
12748
|
_v = SWIG_CheckState(res);
|
@@ -13559,1008 +13643,1008 @@ fail:
|
|
13559
13643
|
|
13560
13644
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
13561
13645
|
|
13562
|
-
static void *
|
13563
|
-
return (void *)((
|
13646
|
+
static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13647
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
13564
13648
|
}
|
13565
|
-
static void *
|
13566
|
-
return (void *)((
|
13649
|
+
static void *_p_FX7SegmentTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13650
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
13567
13651
|
}
|
13568
|
-
static void *
|
13569
|
-
return (void *)((
|
13652
|
+
static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13653
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
13570
13654
|
}
|
13571
|
-
static void *
|
13572
|
-
return (void *)((
|
13655
|
+
static void *_p_FXBMPImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13656
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXBMPImage *) x));
|
13573
13657
|
}
|
13574
|
-
static void *
|
13575
|
-
return (void *)((
|
13658
|
+
static void *_p_FXBitmapTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13659
|
+
return (void *)((FXDrawable *) ((FXBitmap *) x));
|
13576
13660
|
}
|
13577
|
-
static void *
|
13578
|
-
return (void *)((
|
13661
|
+
static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13662
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
13579
13663
|
}
|
13580
|
-
static void *
|
13581
|
-
return (void *)((
|
13664
|
+
static void *_p_FXCanvasTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13665
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXCanvas *) x));
|
13582
13666
|
}
|
13583
|
-
static void *
|
13584
|
-
return (void *)((
|
13667
|
+
static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13668
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
13585
13669
|
}
|
13586
|
-
static void *
|
13587
|
-
return (void *)((
|
13670
|
+
static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13671
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
13588
13672
|
}
|
13589
|
-
static void *
|
13590
|
-
return (void *)((
|
13673
|
+
static void *_p_FXColorSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13674
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
13591
13675
|
}
|
13592
|
-
static void *
|
13593
|
-
return (void *)((
|
13676
|
+
static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13677
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
13594
13678
|
}
|
13595
|
-
static void *
|
13596
|
-
return (void *)((
|
13679
|
+
static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13680
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
13597
13681
|
}
|
13598
|
-
static void *
|
13599
|
-
return (void *)((
|
13682
|
+
static void *_p_FXComboBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13683
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
13600
13684
|
}
|
13601
|
-
static void *
|
13602
|
-
return (void *)((
|
13685
|
+
static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13686
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
|
13603
13687
|
}
|
13604
|
-
static void *
|
13605
|
-
return (void *)((
|
13688
|
+
static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13689
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
|
13606
13690
|
}
|
13607
|
-
static void *
|
13608
|
-
return (void *)((
|
13691
|
+
static void *_p_FXDirBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13692
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
13609
13693
|
}
|
13610
|
-
static void *
|
13611
|
-
return (void *)((
|
13694
|
+
static void *_p_FXDirSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13695
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
13612
13696
|
}
|
13613
|
-
static void *
|
13614
|
-
return (void *)((
|
13697
|
+
static void *_p_FXDockBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13698
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
13615
13699
|
}
|
13616
|
-
static void *
|
13617
|
-
return (void *)((
|
13700
|
+
static void *_p_FXDockHandlerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13701
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
13618
13702
|
}
|
13619
|
-
static void *
|
13620
|
-
return (void *)((
|
13703
|
+
static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13704
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
13621
13705
|
}
|
13622
|
-
static void *
|
13623
|
-
return (void *)((
|
13706
|
+
static void *_p_FXDockTitleTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13707
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
13624
13708
|
}
|
13625
|
-
static void *
|
13626
|
-
return (void *)((
|
13709
|
+
static void *_p_FXDragCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13710
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXDragCorner *) x));
|
13627
13711
|
}
|
13628
|
-
static void *
|
13629
|
-
return (void *)((
|
13712
|
+
static void *_p_FXDriveBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13713
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
13630
13714
|
}
|
13631
|
-
static void *
|
13632
|
-
return (void *)((
|
13715
|
+
static void *_p_FXFileSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13716
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
13633
13717
|
}
|
13634
|
-
static void *
|
13635
|
-
return (void *)((
|
13718
|
+
static void *_p_FXFontSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13719
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
13636
13720
|
}
|
13637
|
-
static void *
|
13638
|
-
return (void *)((
|
13721
|
+
static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13722
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
|
13639
13723
|
}
|
13640
|
-
static void *
|
13641
|
-
return (void *)((
|
13724
|
+
static void *_p_FXGIFImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13725
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXGIFImage *) x));
|
13642
13726
|
}
|
13643
|
-
static void *
|
13644
|
-
return (void *)((
|
13727
|
+
static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13728
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
13645
13729
|
}
|
13646
|
-
static void *
|
13647
|
-
return (void *)((
|
13730
|
+
static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13731
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
13648
13732
|
}
|
13649
|
-
static void *
|
13650
|
-
return (void *)((
|
13733
|
+
static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13734
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
|
13651
13735
|
}
|
13652
|
-
static void *
|
13653
|
-
return (void *)((
|
13736
|
+
static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13737
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
13654
13738
|
}
|
13655
|
-
static void *
|
13656
|
-
return (void *)((
|
13739
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13740
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
13657
13741
|
}
|
13658
|
-
static void *
|
13659
|
-
return (void *)((
|
13742
|
+
static void *_p_FXICOImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13743
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXICOImage *) x));
|
13660
13744
|
}
|
13661
|
-
static void *
|
13662
|
-
return (void *)((
|
13745
|
+
static void *_p_FXImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13746
|
+
return (void *)((FXDrawable *) ((FXImage *) x));
|
13663
13747
|
}
|
13664
|
-
static void *
|
13665
|
-
return (void *)((
|
13748
|
+
static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13749
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
13666
13750
|
}
|
13667
|
-
static void *
|
13668
|
-
return (void *)((
|
13751
|
+
static void *_p_FXImageViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13752
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
13669
13753
|
}
|
13670
|
-
static void *
|
13671
|
-
return (void *)((
|
13754
|
+
static void *_p_FXJPGImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13755
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXJPGImage *) x));
|
13672
13756
|
}
|
13673
|
-
static void *
|
13674
|
-
return (void *)((
|
13757
|
+
static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13758
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
|
13675
13759
|
}
|
13676
|
-
static void *
|
13677
|
-
return (void *)((
|
13760
|
+
static void *_p_FXListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13761
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
13678
13762
|
}
|
13679
|
-
static void *
|
13680
|
-
return (void *)((
|
13763
|
+
static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13764
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
13681
13765
|
}
|
13682
|
-
static void *
|
13683
|
-
return (void *)((
|
13766
|
+
static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13767
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
13684
13768
|
}
|
13685
|
-
static void *
|
13686
|
-
return (void *)((
|
13769
|
+
static void *_p_FXPCXImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13770
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXPCXImage *) x));
|
13687
13771
|
}
|
13688
|
-
static void *
|
13689
|
-
return (void *)((
|
13772
|
+
static void *_p_FXPNGImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13773
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXPNGImage *) x));
|
13690
13774
|
}
|
13691
|
-
static void *
|
13692
|
-
return (void *)((
|
13775
|
+
static void *_p_FXPPMImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13776
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXPPMImage *) x));
|
13693
13777
|
}
|
13694
|
-
static void *
|
13695
|
-
return (void *)((
|
13778
|
+
static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13779
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
|
13696
13780
|
}
|
13697
|
-
static void *
|
13698
|
-
return (void *)((
|
13781
|
+
static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13782
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
13699
13783
|
}
|
13700
|
-
static void *
|
13701
|
-
return (void *)((
|
13784
|
+
static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13785
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
13702
13786
|
}
|
13703
|
-
static void *
|
13704
|
-
return (void *)((
|
13787
|
+
static void *_p_FXRGBImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13788
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXRGBImage *) x));
|
13705
13789
|
}
|
13706
|
-
static void *
|
13707
|
-
return (void *)((
|
13790
|
+
static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13791
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
13708
13792
|
}
|
13709
|
-
static void *
|
13710
|
-
return (void *)((
|
13793
|
+
static void *_p_FXRealSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13794
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
13711
13795
|
}
|
13712
|
-
static void *
|
13713
|
-
return (void *)((
|
13796
|
+
static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13797
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
13714
13798
|
}
|
13715
|
-
static void *
|
13716
|
-
return (void *)((
|
13799
|
+
static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13800
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
|
13717
13801
|
}
|
13718
|
-
static void *
|
13719
|
-
return (void *)((
|
13802
|
+
static void *_p_FXRulerViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13803
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
13720
13804
|
}
|
13721
|
-
static void *
|
13722
|
-
return (void *)((
|
13805
|
+
static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13806
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
13723
13807
|
}
|
13724
|
-
static void *
|
13725
|
-
return (void *)((
|
13808
|
+
static void *_p_FXScrollBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13809
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXScrollBar *) x));
|
13726
13810
|
}
|
13727
|
-
static void *
|
13728
|
-
return (void *)((
|
13811
|
+
static void *_p_FXScrollCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13812
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXScrollCorner *) x));
|
13729
13813
|
}
|
13730
|
-
static void *
|
13731
|
-
return (void *)((
|
13814
|
+
static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13815
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
13732
13816
|
}
|
13733
|
-
static void *
|
13734
|
-
return (void *)((
|
13817
|
+
static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13818
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
13735
13819
|
}
|
13736
|
-
static void *
|
13737
|
-
return (void *)((
|
13820
|
+
static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13821
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
|
13738
13822
|
}
|
13739
|
-
static void *
|
13740
|
-
return (void *)((
|
13823
|
+
static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13824
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
13741
13825
|
}
|
13742
|
-
static void *
|
13743
|
-
return (void *)((
|
13826
|
+
static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13827
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
13744
13828
|
}
|
13745
|
-
static void *
|
13746
|
-
return (void *)((
|
13829
|
+
static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13830
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
|
13747
13831
|
}
|
13748
|
-
static void *
|
13749
|
-
return (void *)((
|
13832
|
+
static void *_p_FXSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13833
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
13750
13834
|
}
|
13751
|
-
static void *
|
13752
|
-
return (void *)((
|
13835
|
+
static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13836
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
13753
13837
|
}
|
13754
|
-
static void *
|
13755
|
-
return (void *)((
|
13838
|
+
static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13839
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
13756
13840
|
}
|
13757
|
-
static void *
|
13758
|
-
return (void *)((
|
13841
|
+
static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13842
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
13759
13843
|
}
|
13760
|
-
static void *
|
13761
|
-
return (void *)((
|
13844
|
+
static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13845
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
13762
13846
|
}
|
13763
|
-
static void *
|
13764
|
-
return (void *)((
|
13847
|
+
static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13848
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
13765
13849
|
}
|
13766
|
-
static void *
|
13767
|
-
return (void *)((
|
13850
|
+
static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13851
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
13768
13852
|
}
|
13769
|
-
static void *
|
13770
|
-
return (void *)((
|
13853
|
+
static void *_p_FXTGAImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13854
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXTGAImage *) x));
|
13771
13855
|
}
|
13772
|
-
static void *
|
13773
|
-
return (void *)((
|
13856
|
+
static void *_p_FXTIFImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13857
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXTIFImage *) x));
|
13774
13858
|
}
|
13775
|
-
static void *
|
13776
|
-
return (void *)((
|
13859
|
+
static void *_p_FXTabBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13860
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
13777
13861
|
}
|
13778
|
-
static void *
|
13779
|
-
return (void *)((
|
13862
|
+
static void *_p_FXTabBookTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13863
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
13780
13864
|
}
|
13781
|
-
static void *
|
13782
|
-
return (void *)((
|
13865
|
+
static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13866
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
|
13783
13867
|
}
|
13784
|
-
static void *
|
13785
|
-
return (void *)((
|
13868
|
+
static void *_p_FXToolBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13869
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
13786
13870
|
}
|
13787
|
-
static void *
|
13788
|
-
return (void *)((
|
13871
|
+
static void *_p_FXToolBarGripTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13872
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
13789
13873
|
}
|
13790
|
-
static void *
|
13791
|
-
return (void *)((
|
13874
|
+
static void *_p_FXToolBarShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13875
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
13792
13876
|
}
|
13793
|
-
static void *
|
13794
|
-
return (void *)((
|
13877
|
+
static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13878
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
13795
13879
|
}
|
13796
|
-
static void *
|
13797
|
-
return (void *)((
|
13880
|
+
static void *_p_FXToolTipTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13881
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
13798
13882
|
}
|
13799
|
-
static void *
|
13800
|
-
return (void *)((
|
13883
|
+
static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13884
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
13801
13885
|
}
|
13802
|
-
static void *
|
13803
|
-
return (void *)((
|
13886
|
+
static void *_p_FXTreeListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13887
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
13804
13888
|
}
|
13805
|
-
static void *
|
13806
|
-
return (void *)((
|
13889
|
+
static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13890
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
13807
13891
|
}
|
13808
|
-
static void *
|
13809
|
-
return (void *)((
|
13892
|
+
static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13893
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
13810
13894
|
}
|
13811
|
-
static void *
|
13812
|
-
return (void *)((
|
13895
|
+
static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13896
|
+
return (void *)((FXDrawable *) ((FXWindow *) x));
|
13813
13897
|
}
|
13814
|
-
static void *
|
13815
|
-
return (void *)((
|
13898
|
+
static void *_p_FXXBMImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13899
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXXBMImage *) x));
|
13816
13900
|
}
|
13817
|
-
static void *
|
13818
|
-
return (void *)((
|
13901
|
+
static void *_p_FXXPMImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13902
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXXPMImage *) x));
|
13819
13903
|
}
|
13820
|
-
static void *
|
13821
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)
|
13904
|
+
static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13905
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
13822
13906
|
}
|
13823
|
-
static void *
|
13824
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(
|
13907
|
+
static void *_p_FX7SegmentTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13908
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
13825
13909
|
}
|
13826
|
-
static void *
|
13827
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(
|
13910
|
+
static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13911
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
13828
13912
|
}
|
13829
|
-
static void *
|
13830
|
-
return (void *)((FXId *) (FXDrawable *)(
|
13913
|
+
static void *_p_FXBMPImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13914
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXBMPImage *) x));
|
13831
13915
|
}
|
13832
|
-
static void *
|
13833
|
-
return (void *)((FXId *) (FXDrawable *)
|
13916
|
+
static void *_p_FXBitmapTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13917
|
+
return (void *)((FXId *) (FXDrawable *) ((FXBitmap *) x));
|
13834
13918
|
}
|
13835
|
-
static void *
|
13836
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(
|
13919
|
+
static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13920
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
13837
13921
|
}
|
13838
|
-
static void *
|
13839
|
-
return (void *)((
|
13922
|
+
static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13923
|
+
return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
|
13840
13924
|
}
|
13841
|
-
static void *
|
13842
|
-
return (void *)((
|
13925
|
+
static void *_p_FXCanvasTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13926
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
|
13843
13927
|
}
|
13844
|
-
static void *
|
13845
|
-
return (void *)((
|
13928
|
+
static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13929
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
13846
13930
|
}
|
13847
|
-
static void *
|
13848
|
-
return (void *)((
|
13931
|
+
static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13932
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
13849
13933
|
}
|
13850
|
-
static void *
|
13851
|
-
return (void *)((
|
13934
|
+
static void *_p_FXColorSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13935
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
13852
13936
|
}
|
13853
|
-
static void *
|
13854
|
-
return (void *)((
|
13937
|
+
static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13938
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
13855
13939
|
}
|
13856
|
-
static void *
|
13857
|
-
return (void *)((
|
13940
|
+
static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13941
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
13858
13942
|
}
|
13859
|
-
static void *
|
13860
|
-
return (void *)((
|
13943
|
+
static void *_p_FXComboBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13944
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
13861
13945
|
}
|
13862
|
-
static void *
|
13863
|
-
return (void *)((
|
13946
|
+
static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13947
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
13864
13948
|
}
|
13865
|
-
static void *
|
13866
|
-
return (void *)((
|
13949
|
+
static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13950
|
+
return (void *)((FXId *) ((FXCursor *) x));
|
13867
13951
|
}
|
13868
|
-
static void *
|
13869
|
-
return (void *)((
|
13952
|
+
static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13953
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
13870
13954
|
}
|
13871
|
-
static void *
|
13872
|
-
return (void *)((
|
13955
|
+
static void *_p_FXDirBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13956
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
13873
13957
|
}
|
13874
|
-
static void *
|
13875
|
-
return (void *)((
|
13958
|
+
static void *_p_FXDirSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13959
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
13876
13960
|
}
|
13877
|
-
static void *
|
13878
|
-
return (void *)((
|
13961
|
+
static void *_p_FXDockBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13962
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
13879
13963
|
}
|
13880
|
-
static void *
|
13881
|
-
return (void *)((
|
13964
|
+
static void *_p_FXDockHandlerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13965
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
13882
13966
|
}
|
13883
|
-
static void *
|
13884
|
-
return (void *)((
|
13967
|
+
static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13968
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
13885
13969
|
}
|
13886
|
-
static void *
|
13887
|
-
return (void *)((
|
13970
|
+
static void *_p_FXDockTitleTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13971
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
13888
13972
|
}
|
13889
|
-
static void *
|
13890
|
-
return (void *)((
|
13973
|
+
static void *_p_FXDragCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13974
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
|
13891
13975
|
}
|
13892
|
-
static void *
|
13893
|
-
return (void *)((
|
13976
|
+
static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13977
|
+
return (void *)((FXId *) ((FXDrawable *) x));
|
13894
13978
|
}
|
13895
|
-
static void *
|
13896
|
-
return (void *)((
|
13979
|
+
static void *_p_FXDriveBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13980
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
13897
13981
|
}
|
13898
|
-
static void *
|
13899
|
-
return (void *)((
|
13982
|
+
static void *_p_FXFileSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13983
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
13900
13984
|
}
|
13901
|
-
static void *
|
13902
|
-
return (void *)((
|
13985
|
+
static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13986
|
+
return (void *)((FXId *) ((FXFont *) x));
|
13903
13987
|
}
|
13904
|
-
static void *
|
13905
|
-
return (void *)((
|
13988
|
+
static void *_p_FXFontSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13989
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
13906
13990
|
}
|
13907
|
-
static void *
|
13908
|
-
return (void *)((
|
13991
|
+
static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13992
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
13909
13993
|
}
|
13910
|
-
static void *
|
13911
|
-
return (void *)((
|
13994
|
+
static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13995
|
+
return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
|
13912
13996
|
}
|
13913
|
-
static void *
|
13914
|
-
return (void *)((
|
13997
|
+
static void *_p_FXGIFImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13998
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXGIFImage *) x));
|
13915
13999
|
}
|
13916
|
-
static void *
|
13917
|
-
return (void *)((
|
14000
|
+
static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14001
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
13918
14002
|
}
|
13919
|
-
static void *
|
13920
|
-
return (void *)((
|
14003
|
+
static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14004
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
13921
14005
|
}
|
13922
|
-
static void *
|
13923
|
-
return (void *)((
|
14006
|
+
static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14007
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
13924
14008
|
}
|
13925
|
-
static void *
|
13926
|
-
return (void *)((
|
14009
|
+
static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14010
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
13927
14011
|
}
|
13928
|
-
static void *
|
13929
|
-
return (void *)((
|
14012
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14013
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
13930
14014
|
}
|
13931
|
-
static void *
|
13932
|
-
return (void *)((
|
14015
|
+
static void *_p_FXICOImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14016
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXICOImage *) x));
|
13933
14017
|
}
|
13934
|
-
static void *
|
13935
|
-
return (void *)((
|
14018
|
+
static void *_p_FXImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14019
|
+
return (void *)((FXId *) (FXDrawable *) ((FXImage *) x));
|
13936
14020
|
}
|
13937
|
-
static void *
|
13938
|
-
return (void *)((
|
14021
|
+
static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14022
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
13939
14023
|
}
|
13940
|
-
static void *
|
13941
|
-
return (void *)((
|
14024
|
+
static void *_p_FXImageViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14025
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
13942
14026
|
}
|
13943
|
-
static void *
|
13944
|
-
return (void *)((
|
14027
|
+
static void *_p_FXJPGImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14028
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXJPGImage *) x));
|
13945
14029
|
}
|
13946
|
-
static void *
|
13947
|
-
return (void *)((
|
14030
|
+
static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14031
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
13948
14032
|
}
|
13949
|
-
static void *
|
13950
|
-
return (void *)((
|
14033
|
+
static void *_p_FXListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14034
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
13951
14035
|
}
|
13952
|
-
static void *
|
13953
|
-
return (void *)((
|
14036
|
+
static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14037
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
13954
14038
|
}
|
13955
|
-
static void *
|
13956
|
-
return (void *)((
|
14039
|
+
static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14040
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
13957
14041
|
}
|
13958
|
-
static void *
|
13959
|
-
return (void *)((
|
14042
|
+
static void *_p_FXPCXImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14043
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXPCXImage *) x));
|
13960
14044
|
}
|
13961
|
-
static void *
|
13962
|
-
return (void *)((
|
14045
|
+
static void *_p_FXPNGImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14046
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXPNGImage *) x));
|
13963
14047
|
}
|
13964
|
-
static void *
|
13965
|
-
return (void *)((
|
14048
|
+
static void *_p_FXPPMImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14049
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXPPMImage *) x));
|
13966
14050
|
}
|
13967
|
-
static void *
|
13968
|
-
return (void *)((
|
14051
|
+
static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14052
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
13969
14053
|
}
|
13970
|
-
static void *
|
13971
|
-
return (void *)((
|
14054
|
+
static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14055
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
13972
14056
|
}
|
13973
|
-
static void *
|
13974
|
-
return (void *)((
|
14057
|
+
static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14058
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
13975
14059
|
}
|
13976
|
-
static void *
|
13977
|
-
return (void *)((
|
14060
|
+
static void *_p_FXRGBImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14061
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXRGBImage *) x));
|
13978
14062
|
}
|
13979
|
-
static void *
|
13980
|
-
return (void *)((
|
14063
|
+
static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14064
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
13981
14065
|
}
|
13982
|
-
static void *
|
13983
|
-
return (void *)((
|
14066
|
+
static void *_p_FXRealSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14067
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
13984
14068
|
}
|
13985
|
-
static void *
|
13986
|
-
return (void *)((
|
14069
|
+
static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14070
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
13987
14071
|
}
|
13988
|
-
static void *
|
13989
|
-
return (void *)((
|
14072
|
+
static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14073
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
13990
14074
|
}
|
13991
|
-
static void *
|
13992
|
-
return (void *)((
|
14075
|
+
static void *_p_FXRulerViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14076
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
13993
14077
|
}
|
13994
|
-
static void *
|
13995
|
-
return (void *)((
|
14078
|
+
static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14079
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
13996
14080
|
}
|
13997
|
-
static void *
|
13998
|
-
return (void *)((
|
14081
|
+
static void *_p_FXScrollBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14082
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
|
13999
14083
|
}
|
14000
|
-
static void *
|
14001
|
-
return (void *)((
|
14084
|
+
static void *_p_FXScrollCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14085
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
|
14002
14086
|
}
|
14003
|
-
static void *
|
14004
|
-
return (void *)((
|
14087
|
+
static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14088
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
14005
14089
|
}
|
14006
|
-
static void *
|
14007
|
-
return (void *)((
|
14090
|
+
static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14091
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
14008
14092
|
}
|
14009
|
-
static void *
|
14010
|
-
return (void *)((
|
14093
|
+
static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14094
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
14011
14095
|
}
|
14012
|
-
static void *
|
14013
|
-
return (void *)((
|
14096
|
+
static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14097
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
14014
14098
|
}
|
14015
|
-
static void *
|
14016
|
-
return (void *)((
|
14099
|
+
static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14100
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
14017
14101
|
}
|
14018
|
-
static void *
|
14019
|
-
return (void *)((
|
14102
|
+
static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14103
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
14020
14104
|
}
|
14021
|
-
static void *
|
14022
|
-
return (void *)((
|
14105
|
+
static void *_p_FXSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14106
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
14023
14107
|
}
|
14024
|
-
static void *
|
14025
|
-
return (void *)((
|
14108
|
+
static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14109
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
14026
14110
|
}
|
14027
|
-
static void *
|
14028
|
-
return (void *)((
|
14111
|
+
static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14112
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
14029
14113
|
}
|
14030
|
-
static void *
|
14031
|
-
return (void *)((
|
14114
|
+
static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14115
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
14032
14116
|
}
|
14033
|
-
static void *
|
14034
|
-
return (void *)((
|
14117
|
+
static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14118
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
14035
14119
|
}
|
14036
|
-
static void *
|
14037
|
-
return (void *)((
|
14120
|
+
static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14121
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
14038
14122
|
}
|
14039
|
-
static void *
|
14040
|
-
return (void *)((
|
14123
|
+
static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14124
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
14041
14125
|
}
|
14042
|
-
static void *
|
14043
|
-
return (void *)((
|
14126
|
+
static void *_p_FXTGAImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14127
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXTGAImage *) x));
|
14044
14128
|
}
|
14045
|
-
static void *
|
14046
|
-
return (void *)((
|
14129
|
+
static void *_p_FXTIFImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14130
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXTIFImage *) x));
|
14047
14131
|
}
|
14048
|
-
static void *
|
14049
|
-
return (void *)((
|
14132
|
+
static void *_p_FXTabBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14133
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
14050
14134
|
}
|
14051
|
-
static void *
|
14052
|
-
return (void *)((
|
14135
|
+
static void *_p_FXTabBookTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14136
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
14053
14137
|
}
|
14054
|
-
static void *
|
14055
|
-
return (void *)((
|
14138
|
+
static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14139
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
14056
14140
|
}
|
14057
|
-
static void *
|
14058
|
-
return (void *)((
|
14141
|
+
static void *_p_FXToolBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14142
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
14059
14143
|
}
|
14060
|
-
static void *
|
14061
|
-
return (void *)((
|
14144
|
+
static void *_p_FXToolBarGripTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14145
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
14062
14146
|
}
|
14063
|
-
static void *
|
14064
|
-
return (void *)((
|
14147
|
+
static void *_p_FXToolBarShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14148
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
14065
14149
|
}
|
14066
|
-
static void *
|
14067
|
-
return (void *)((
|
14150
|
+
static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14151
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
14068
14152
|
}
|
14069
|
-
static void *
|
14070
|
-
return (void *)((
|
14153
|
+
static void *_p_FXToolTipTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14154
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
14071
14155
|
}
|
14072
|
-
static void *
|
14073
|
-
return (void *)((
|
14156
|
+
static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14157
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
14074
14158
|
}
|
14075
|
-
static void *
|
14076
|
-
return (void *)((
|
14159
|
+
static void *_p_FXTreeListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14160
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
14077
14161
|
}
|
14078
|
-
static void *
|
14079
|
-
return (void *)((
|
14162
|
+
static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14163
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
14080
14164
|
}
|
14081
|
-
static void *
|
14082
|
-
return (void *)((
|
14165
|
+
static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14166
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
14083
14167
|
}
|
14084
|
-
static void *
|
14085
|
-
return (void *)((
|
14168
|
+
static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14169
|
+
return (void *)((FXId *) ((FXVisual *) x));
|
14086
14170
|
}
|
14087
|
-
static void *
|
14088
|
-
return (void *)((
|
14171
|
+
static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14172
|
+
return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
|
14089
14173
|
}
|
14090
|
-
static void *
|
14091
|
-
return (void *)((
|
14174
|
+
static void *_p_FXXBMImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14175
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXXBMImage *) x));
|
14092
14176
|
}
|
14093
|
-
static void *
|
14094
|
-
return (void *)((
|
14177
|
+
static void *_p_FXXPMImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14178
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXXPMImage *) x));
|
14095
14179
|
}
|
14096
|
-
static void *
|
14097
|
-
return (void *)((
|
14180
|
+
static void *_p_FXBMPImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14181
|
+
return (void *)((FXImage *) ((FXBMPImage *) x));
|
14098
14182
|
}
|
14099
|
-
static void *
|
14100
|
-
return (void *)((
|
14183
|
+
static void *_p_FXGIFImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14184
|
+
return (void *)((FXImage *) ((FXGIFImage *) x));
|
14101
14185
|
}
|
14102
|
-
static void *
|
14103
|
-
return (void *)((
|
14186
|
+
static void *_p_FXICOImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14187
|
+
return (void *)((FXImage *) ((FXICOImage *) x));
|
14104
14188
|
}
|
14105
|
-
static void *
|
14106
|
-
return (void *)((
|
14189
|
+
static void *_p_FXJPGImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14190
|
+
return (void *)((FXImage *) ((FXJPGImage *) x));
|
14107
14191
|
}
|
14108
|
-
static void *
|
14109
|
-
return (void *)((
|
14192
|
+
static void *_p_FXPCXImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14193
|
+
return (void *)((FXImage *) ((FXPCXImage *) x));
|
14110
14194
|
}
|
14111
|
-
static void *
|
14112
|
-
return (void *)((
|
14195
|
+
static void *_p_FXPNGImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14196
|
+
return (void *)((FXImage *) ((FXPNGImage *) x));
|
14113
14197
|
}
|
14114
|
-
static void *
|
14115
|
-
return (void *)((
|
14198
|
+
static void *_p_FXPPMImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14199
|
+
return (void *)((FXImage *) ((FXPPMImage *) x));
|
14116
14200
|
}
|
14117
|
-
static void *
|
14118
|
-
return (void *)((
|
14201
|
+
static void *_p_FXRGBImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14202
|
+
return (void *)((FXImage *) ((FXRGBImage *) x));
|
14119
14203
|
}
|
14120
|
-
static void *
|
14121
|
-
return (void *)((
|
14204
|
+
static void *_p_FXTGAImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14205
|
+
return (void *)((FXImage *) ((FXTGAImage *) x));
|
14122
14206
|
}
|
14123
|
-
static void *
|
14124
|
-
return (void *)((
|
14207
|
+
static void *_p_FXTIFImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14208
|
+
return (void *)((FXImage *) ((FXTIFImage *) x));
|
14125
14209
|
}
|
14126
|
-
static void *
|
14127
|
-
return (void *)((
|
14210
|
+
static void *_p_FXXBMImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14211
|
+
return (void *)((FXImage *) ((FXXBMImage *) x));
|
14128
14212
|
}
|
14129
|
-
static void *
|
14130
|
-
return (void *)((
|
14213
|
+
static void *_p_FXXPMImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14214
|
+
return (void *)((FXImage *) ((FXXPMImage *) x));
|
14131
14215
|
}
|
14132
|
-
static void *
|
14133
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)
|
14216
|
+
static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14217
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
14134
14218
|
}
|
14135
|
-
static void *
|
14136
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
14219
|
+
static void *_p_FX7SegmentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14220
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
14137
14221
|
}
|
14138
|
-
static void *
|
14139
|
-
return (void *)((FXObject *)
|
14222
|
+
static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14223
|
+
return (void *)((FXObject *) ((FXAccelTable *) x));
|
14140
14224
|
}
|
14141
|
-
static void *
|
14142
|
-
return (void *)((FXObject *)
|
14225
|
+
static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14226
|
+
return (void *)((FXObject *) ((FXApp *) x));
|
14143
14227
|
}
|
14144
|
-
static void *
|
14145
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
14228
|
+
static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14229
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
14146
14230
|
}
|
14147
|
-
static void *
|
14148
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(
|
14231
|
+
static void *_p_FXBMPImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14232
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXBMPImage *) x));
|
14149
14233
|
}
|
14150
|
-
static void *
|
14151
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)
|
14234
|
+
static void *_p_FXBitmapTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14235
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXBitmap *) x));
|
14152
14236
|
}
|
14153
|
-
static void *
|
14154
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
14237
|
+
static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14238
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
14155
14239
|
}
|
14156
|
-
static void *
|
14157
|
-
return (void *)((FXObject *) (FXId *)(
|
14240
|
+
static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14241
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
|
14158
14242
|
}
|
14159
|
-
static void *
|
14160
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)
|
14243
|
+
static void *_p_FXCanvasTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14244
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
|
14161
14245
|
}
|
14162
|
-
static void *
|
14163
|
-
return (void *)((
|
14246
|
+
static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14247
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
14164
14248
|
}
|
14165
|
-
static void *
|
14166
|
-
return (void *)((
|
14249
|
+
static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14250
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
14167
14251
|
}
|
14168
|
-
static void *
|
14169
|
-
return (void *)((
|
14252
|
+
static void *_p_FXColorSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14253
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
14170
14254
|
}
|
14171
|
-
static void *
|
14172
|
-
return (void *)((
|
14255
|
+
static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14256
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
14173
14257
|
}
|
14174
|
-
static void *
|
14175
|
-
return (void *)((
|
14258
|
+
static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14259
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
14176
14260
|
}
|
14177
|
-
static void *
|
14178
|
-
return (void *)((
|
14261
|
+
static void *_p_FXComboBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14262
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
14179
14263
|
}
|
14180
|
-
static void *
|
14181
|
-
return (void *)((
|
14264
|
+
static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14265
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
14182
14266
|
}
|
14183
|
-
static void *
|
14184
|
-
return (void *)((
|
14267
|
+
static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14268
|
+
return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
|
14185
14269
|
}
|
14186
|
-
static void *
|
14187
|
-
return (void *)((
|
14270
|
+
static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14271
|
+
return (void *)((FXObject *) ((FXDataTarget *) x));
|
14188
14272
|
}
|
14189
|
-
static void *
|
14190
|
-
return (void *)((
|
14273
|
+
static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14274
|
+
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
14191
14275
|
}
|
14192
|
-
static void *
|
14193
|
-
return (void *)((
|
14276
|
+
static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14277
|
+
return (void *)((FXObject *) ((FXDelegator *) x));
|
14194
14278
|
}
|
14195
|
-
static void *
|
14196
|
-
return (void *)((
|
14279
|
+
static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14280
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
14197
14281
|
}
|
14198
|
-
static void *
|
14199
|
-
return (void *)((
|
14282
|
+
static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14283
|
+
return (void *)((FXObject *) ((FXDict *) x));
|
14200
14284
|
}
|
14201
|
-
static void *
|
14202
|
-
return (void *)((
|
14285
|
+
static void *_p_FXDirBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14286
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
14203
14287
|
}
|
14204
|
-
static void *
|
14205
|
-
return (void *)((FXDrawable *) (
|
14288
|
+
static void *_p_FXDirSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14289
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
14206
14290
|
}
|
14207
|
-
static void *
|
14208
|
-
return (void *)((
|
14291
|
+
static void *_p_FXDockBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14292
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
14209
14293
|
}
|
14210
|
-
static void *
|
14211
|
-
return (void *)((
|
14294
|
+
static void *_p_FXDockHandlerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14295
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
14212
14296
|
}
|
14213
|
-
static void *
|
14214
|
-
return (void *)((
|
14297
|
+
static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14298
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
14215
14299
|
}
|
14216
|
-
static void *
|
14217
|
-
return (void *)((
|
14300
|
+
static void *_p_FXDockTitleTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14301
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
14218
14302
|
}
|
14219
|
-
static void *
|
14220
|
-
return (void *)((
|
14303
|
+
static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14304
|
+
return (void *)((FXObject *) ((FXDocument *) x));
|
14221
14305
|
}
|
14222
|
-
static void *
|
14223
|
-
return (void *)((
|
14306
|
+
static void *_p_FXDragCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14307
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
|
14224
14308
|
}
|
14225
|
-
static void *
|
14226
|
-
return (void *)((
|
14309
|
+
static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14310
|
+
return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
|
14227
14311
|
}
|
14228
|
-
static void *
|
14229
|
-
return (void *)((
|
14312
|
+
static void *_p_FXDriveBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14313
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
14230
14314
|
}
|
14231
|
-
static void *
|
14232
|
-
return (void *)((
|
14315
|
+
static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14316
|
+
return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
|
14233
14317
|
}
|
14234
|
-
static void *
|
14235
|
-
return (void *)((
|
14318
|
+
static void *_p_FXFileSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14319
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
14236
14320
|
}
|
14237
|
-
static void *
|
14238
|
-
return (void *)((
|
14321
|
+
static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14322
|
+
return (void *)((FXObject *) (FXId *) ((FXFont *) x));
|
14239
14323
|
}
|
14240
|
-
static void *
|
14241
|
-
return (void *)((
|
14324
|
+
static void *_p_FXFontSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14325
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
14242
14326
|
}
|
14243
|
-
static void *
|
14244
|
-
return (void *)((
|
14327
|
+
static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14328
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
14245
14329
|
}
|
14246
|
-
static void *
|
14247
|
-
return (void *)((
|
14330
|
+
static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14331
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
14248
14332
|
}
|
14249
|
-
static void *
|
14250
|
-
return (void *)((
|
14333
|
+
static void *_p_FXGIFImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14334
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXGIFImage *) x));
|
14251
14335
|
}
|
14252
|
-
static void *
|
14253
|
-
return (void *)((
|
14336
|
+
static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14337
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
14254
14338
|
}
|
14255
|
-
static void *
|
14256
|
-
return (void *)((FXDrawable *) (
|
14339
|
+
static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14340
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
14257
14341
|
}
|
14258
|
-
static void *
|
14259
|
-
return (void *)((
|
14342
|
+
static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14343
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
14260
14344
|
}
|
14261
|
-
static void *
|
14262
|
-
return (void *)((
|
14345
|
+
static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14346
|
+
return (void *)((FXObject *) ((FXHeaderItem *) x));
|
14263
14347
|
}
|
14264
|
-
static void *
|
14265
|
-
return (void *)((
|
14348
|
+
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14349
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
14266
14350
|
}
|
14267
|
-
static void *
|
14268
|
-
return (void *)((
|
14351
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14352
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
14269
14353
|
}
|
14270
|
-
static void *
|
14271
|
-
return (void *)((
|
14354
|
+
static void *_p_FXICOImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14355
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXICOImage *) x));
|
14272
14356
|
}
|
14273
|
-
static void *
|
14274
|
-
return (void *)((
|
14357
|
+
static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14358
|
+
return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
|
14275
14359
|
}
|
14276
|
-
static void *
|
14277
|
-
return (void *)((
|
14360
|
+
static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14361
|
+
return (void *)((FXObject *) ((FXId *) x));
|
14278
14362
|
}
|
14279
|
-
static void *
|
14280
|
-
return (void *)((
|
14363
|
+
static void *_p_FXImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14364
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXImage *) x));
|
14281
14365
|
}
|
14282
|
-
static void *
|
14283
|
-
return (void *)((FXDrawable *) (
|
14366
|
+
static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14367
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
14284
14368
|
}
|
14285
|
-
static void *
|
14286
|
-
return (void *)((
|
14369
|
+
static void *_p_FXImageViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14370
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
14287
14371
|
}
|
14288
|
-
static void *
|
14289
|
-
return (void *)((
|
14372
|
+
static void *_p_FXJPGImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14373
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXJPGImage *) x));
|
14290
14374
|
}
|
14291
|
-
static void *
|
14292
|
-
return (void *)((
|
14375
|
+
static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14376
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
14293
14377
|
}
|
14294
|
-
static void *
|
14295
|
-
return (void *)((
|
14378
|
+
static void *_p_FXListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14379
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
14296
14380
|
}
|
14297
|
-
static void *
|
14298
|
-
return (void *)((
|
14381
|
+
static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14382
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
14299
14383
|
}
|
14300
|
-
static void *
|
14301
|
-
return (void *)((
|
14384
|
+
static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14385
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
14302
14386
|
}
|
14303
|
-
static void *
|
14304
|
-
return (void *)((
|
14387
|
+
static void *_p_FXPCXImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14388
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXPCXImage *) x));
|
14305
14389
|
}
|
14306
|
-
static void *
|
14307
|
-
return (void *)((FXDrawable *)
|
14390
|
+
static void *_p_FXPNGImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14391
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXPNGImage *) x));
|
14308
14392
|
}
|
14309
|
-
static void *
|
14310
|
-
return (void *)((
|
14393
|
+
static void *_p_FXPPMImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14394
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXPPMImage *) x));
|
14311
14395
|
}
|
14312
|
-
static void *
|
14313
|
-
return (void *)((
|
14396
|
+
static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14397
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
14314
14398
|
}
|
14315
|
-
static void *
|
14316
|
-
return (void *)((
|
14399
|
+
static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14400
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
14317
14401
|
}
|
14318
|
-
static void *
|
14319
|
-
return (void *)((FXDrawable *) (
|
14402
|
+
static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14403
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
14320
14404
|
}
|
14321
|
-
static void *
|
14322
|
-
return (void *)((
|
14405
|
+
static void *_p_FXRGBImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14406
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXRGBImage *) x));
|
14323
14407
|
}
|
14324
|
-
static void *
|
14325
|
-
return (void *)((FXDrawable *) (
|
14408
|
+
static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14409
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
14326
14410
|
}
|
14327
|
-
static void *
|
14328
|
-
return (void *)((FXDrawable *) (
|
14411
|
+
static void *_p_FXRealSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14412
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
14329
14413
|
}
|
14330
|
-
static void *
|
14331
|
-
return (void *)((
|
14414
|
+
static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14415
|
+
return (void *)((FXObject *) ((FXRecentFiles *) x));
|
14332
14416
|
}
|
14333
|
-
static void *
|
14334
|
-
return (void *)((
|
14417
|
+
static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14418
|
+
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
14335
14419
|
}
|
14336
|
-
static void *
|
14337
|
-
return (void *)((
|
14420
|
+
static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14421
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
14338
14422
|
}
|
14339
|
-
static void *
|
14340
|
-
return (void *)((
|
14423
|
+
static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14424
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
14341
14425
|
}
|
14342
|
-
static void *
|
14343
|
-
return (void *)((
|
14426
|
+
static void *_p_FXRulerViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14427
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
14344
14428
|
}
|
14345
|
-
static void *
|
14346
|
-
return (void *)((
|
14429
|
+
static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14430
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
14347
14431
|
}
|
14348
|
-
static void *
|
14349
|
-
return (void *)((
|
14432
|
+
static void *_p_FXScrollBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14433
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
|
14350
14434
|
}
|
14351
|
-
static void *
|
14352
|
-
return (void *)((
|
14435
|
+
static void *_p_FXScrollCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14436
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
|
14353
14437
|
}
|
14354
|
-
static void *
|
14355
|
-
return (void *)((
|
14438
|
+
static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14439
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
14356
14440
|
}
|
14357
|
-
static void *
|
14358
|
-
return (void *)((
|
14441
|
+
static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14442
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
14359
14443
|
}
|
14360
|
-
static void *
|
14361
|
-
return (void *)((
|
14444
|
+
static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14445
|
+
return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
|
14362
14446
|
}
|
14363
|
-
static void *
|
14364
|
-
return (void *)((
|
14447
|
+
static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14448
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
14365
14449
|
}
|
14366
|
-
static void *
|
14367
|
-
return (void *)((
|
14450
|
+
static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14451
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
14368
14452
|
}
|
14369
|
-
static void *
|
14370
|
-
return (void *)((
|
14453
|
+
static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14454
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
14371
14455
|
}
|
14372
|
-
static void *
|
14373
|
-
return (void *)((FXDrawable *)
|
14456
|
+
static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14457
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
14374
14458
|
}
|
14375
|
-
static void *
|
14376
|
-
return (void *)((
|
14459
|
+
static void *_p_FXSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14460
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
14377
14461
|
}
|
14378
|
-
static void *
|
14379
|
-
return (void *)((
|
14462
|
+
static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14463
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
14380
14464
|
}
|
14381
|
-
static void *
|
14382
|
-
return (void *)((
|
14465
|
+
static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14466
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
14383
14467
|
}
|
14384
|
-
static void *
|
14385
|
-
return (void *)((
|
14468
|
+
static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14469
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
14386
14470
|
}
|
14387
|
-
static void *
|
14388
|
-
return (void *)((
|
14471
|
+
static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14472
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
14389
14473
|
}
|
14390
|
-
static void *
|
14391
|
-
return (void *)((
|
14474
|
+
static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14475
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
14392
14476
|
}
|
14393
|
-
static void *
|
14394
|
-
return (void *)((
|
14477
|
+
static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14478
|
+
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
14395
14479
|
}
|
14396
|
-
static void *
|
14397
|
-
return (void *)((
|
14480
|
+
static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14481
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
14398
14482
|
}
|
14399
|
-
static void *
|
14400
|
-
return (void *)((
|
14483
|
+
static void *_p_FXTGAImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14484
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXTGAImage *) x));
|
14401
14485
|
}
|
14402
|
-
static void *
|
14403
|
-
return (void *)((
|
14486
|
+
static void *_p_FXTIFImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14487
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXTIFImage *) x));
|
14404
14488
|
}
|
14405
|
-
static void *
|
14406
|
-
return (void *)((
|
14489
|
+
static void *_p_FXTabBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14490
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
14407
14491
|
}
|
14408
|
-
static void *
|
14409
|
-
return (void *)((
|
14492
|
+
static void *_p_FXTabBookTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14493
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
14410
14494
|
}
|
14411
|
-
static void *
|
14412
|
-
return (void *)((
|
14495
|
+
static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14496
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
14413
14497
|
}
|
14414
|
-
static void *
|
14415
|
-
return (void *)((
|
14498
|
+
static void *_p_FXToolBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14499
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
14416
14500
|
}
|
14417
|
-
static void *
|
14418
|
-
return (void *)((
|
14501
|
+
static void *_p_FXToolBarGripTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14502
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
14419
14503
|
}
|
14420
|
-
static void *
|
14421
|
-
return (void *)((
|
14504
|
+
static void *_p_FXToolBarShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14505
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
14422
14506
|
}
|
14423
|
-
static void *
|
14424
|
-
return (void *)((
|
14507
|
+
static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14508
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
14425
14509
|
}
|
14426
|
-
static void *
|
14427
|
-
return (void *)((
|
14510
|
+
static void *_p_FXToolTipTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14511
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
14428
14512
|
}
|
14429
|
-
static void *
|
14430
|
-
return (void *)((
|
14513
|
+
static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14514
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
14431
14515
|
}
|
14432
|
-
static void *
|
14433
|
-
return (void *)((
|
14516
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14517
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
14434
14518
|
}
|
14435
|
-
static void *
|
14436
|
-
return (void *)((
|
14519
|
+
static void *_p_FXTreeListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14520
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
14437
14521
|
}
|
14438
|
-
static void *
|
14439
|
-
return (void *)((
|
14522
|
+
static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14523
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
14440
14524
|
}
|
14441
|
-
static void *
|
14442
|
-
return (void *)((
|
14525
|
+
static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14526
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
14443
14527
|
}
|
14444
|
-
static void *
|
14445
|
-
return (void *)((
|
14528
|
+
static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14529
|
+
return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
|
14446
14530
|
}
|
14447
|
-
static void *
|
14448
|
-
return (void *)((
|
14531
|
+
static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14532
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
|
14449
14533
|
}
|
14450
|
-
static void *
|
14451
|
-
return (void *)((FXImage *)
|
14534
|
+
static void *_p_FXXBMImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14535
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXXBMImage *) x));
|
14452
14536
|
}
|
14453
|
-
static void *
|
14454
|
-
return (void *)((FXImage *)
|
14537
|
+
static void *_p_FXXPMImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14538
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXXPMImage *) x));
|
14455
14539
|
}
|
14456
|
-
static void *
|
14457
|
-
return (void *)((
|
14540
|
+
static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14541
|
+
return (void *)((FXStream *) ((FXFileStream *) x));
|
14458
14542
|
}
|
14459
|
-
static void *
|
14460
|
-
return (void *)((
|
14543
|
+
static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14544
|
+
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
14461
14545
|
}
|
14462
14546
|
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", "FXApp *", 0, 0, (void*)0, 0};
|
14463
14547
|
static swig_type_info _swigt__p_FXBMPImage = {"_p_FXBMPImage", "FXBMPImage *", 0, 0, (void*)0, 0};
|
14464
14548
|
static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
|
14465
14549
|
static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
|
14466
|
-
static swig_type_info
|
14467
|
-
static swig_type_info
|
14550
|
+
static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
|
14551
|
+
static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
|
14552
|
+
static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", 0, 0, 0, 0, 0};
|
14553
|
+
static swig_type_info _swigt__p_FXBitmapFrame = {"_p_FXBitmapFrame", 0, 0, 0, 0, 0};
|
14554
|
+
static swig_type_info _swigt__p_FXCanvas = {"_p_FXCanvas", 0, 0, 0, 0, 0};
|
14468
14555
|
static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
|
14469
|
-
static swig_type_info
|
14470
|
-
static swig_type_info
|
14471
|
-
static swig_type_info
|
14472
|
-
static swig_type_info
|
14556
|
+
static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
|
14557
|
+
static swig_type_info _swigt__p_FXColorSelector = {"_p_FXColorSelector", 0, 0, 0, 0, 0};
|
14558
|
+
static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
|
14559
|
+
static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
|
14560
|
+
static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
|
14561
|
+
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", 0, 0, 0, 0, 0};
|
14562
|
+
static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
|
14563
|
+
static swig_type_info _swigt__p_FXDirBox = {"_p_FXDirBox", 0, 0, 0, 0, 0};
|
14564
|
+
static swig_type_info _swigt__p_FXDirSelector = {"_p_FXDirSelector", 0, 0, 0, 0, 0};
|
14565
|
+
static swig_type_info _swigt__p_FXDockBar = {"_p_FXDockBar", 0, 0, 0, 0, 0};
|
14566
|
+
static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
|
14567
|
+
static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", 0, 0, 0, 0, 0};
|
14568
|
+
static swig_type_info _swigt__p_FXDockTitle = {"_p_FXDockTitle", 0, 0, 0, 0, 0};
|
14569
|
+
static swig_type_info _swigt__p_FXDragCorner = {"_p_FXDragCorner", 0, 0, 0, 0, 0};
|
14473
14570
|
static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
|
14474
|
-
static swig_type_info
|
14475
|
-
static swig_type_info
|
14476
|
-
static swig_type_info
|
14477
|
-
static swig_type_info
|
14571
|
+
static swig_type_info _swigt__p_FXFileSelector = {"_p_FXFileSelector", 0, 0, 0, 0, 0};
|
14572
|
+
static swig_type_info _swigt__p_FXFontSelector = {"_p_FXFontSelector", 0, 0, 0, 0, 0};
|
14573
|
+
static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
|
14574
|
+
static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
|
14575
|
+
static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
|
14478
14576
|
static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
|
14479
|
-
static swig_type_info
|
14480
|
-
static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
|
14481
|
-
static swig_type_info _swigt__p_FXSpring = {"_p_FXSpring", 0, 0, 0, 0, 0};
|
14482
|
-
static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
|
14483
|
-
static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
|
14484
|
-
static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
|
14485
|
-
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
|
14577
|
+
static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", 0, 0, 0, 0, 0};
|
14486
14578
|
static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
|
14487
|
-
static swig_type_info
|
14579
|
+
static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
|
14580
|
+
static swig_type_info _swigt__p_FXImageView = {"_p_FXImageView", 0, 0, 0, 0, 0};
|
14488
14581
|
static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
|
14582
|
+
static swig_type_info _swigt__p_FXListBox = {"_p_FXListBox", 0, 0, 0, 0, 0};
|
14583
|
+
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
14584
|
+
static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
|
14585
|
+
static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
|
14586
|
+
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
14489
14587
|
static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
|
14490
|
-
static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
|
14491
|
-
static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
|
14492
|
-
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", 0, 0, 0, 0, 0};
|
14493
|
-
static swig_type_info _swigt__p_FXBitmapFrame = {"_p_FXBitmapFrame", 0, 0, 0, 0, 0};
|
14494
14588
|
static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
|
14495
|
-
static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
|
14496
|
-
static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", 0, 0, 0, 0, 0};
|
14497
|
-
static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
|
14498
|
-
static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
|
14499
|
-
static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
|
14500
|
-
static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
|
14501
|
-
static swig_type_info _swigt__p_FXListBox = {"_p_FXListBox", 0, 0, 0, 0, 0};
|
14502
|
-
static swig_type_info _swigt__p_FXCanvas = {"_p_FXCanvas", 0, 0, 0, 0, 0};
|
14503
|
-
static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
|
14504
|
-
static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
|
14505
|
-
static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
|
14506
|
-
static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
|
14507
|
-
static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
|
14508
|
-
static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
|
14509
|
-
static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
|
14510
|
-
static swig_type_info _swigt__p_FXDockTitle = {"_p_FXDockTitle", 0, 0, 0, 0, 0};
|
14511
|
-
static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
|
14512
|
-
static swig_type_info _swigt__p_FXRulerView = {"_p_FXRulerView", 0, 0, 0, 0, 0};
|
14513
14589
|
static swig_type_info _swigt__p_FXRealSpinner = {"_p_FXRealSpinner", 0, 0, 0, 0, 0};
|
14514
|
-
static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
|
14515
|
-
static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
|
14516
|
-
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
14517
|
-
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
14518
|
-
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
14519
14590
|
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
14520
|
-
static swig_type_info
|
14591
|
+
static swig_type_info _swigt__p_FXRuler = {"_p_FXRuler", 0, 0, 0, 0, 0};
|
14592
|
+
static swig_type_info _swigt__p_FXRulerView = {"_p_FXRulerView", 0, 0, 0, 0, 0};
|
14593
|
+
static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", 0, 0, 0, 0, 0};
|
14594
|
+
static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
|
14595
|
+
static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
|
14521
14596
|
static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
|
14522
|
-
static swig_type_info
|
14597
|
+
static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
|
14523
14598
|
static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
|
14524
|
-
static swig_type_info
|
14525
|
-
static swig_type_info
|
14526
|
-
static swig_type_info
|
14527
|
-
static swig_type_info
|
14528
|
-
static swig_type_info
|
14529
|
-
static swig_type_info
|
14530
|
-
static swig_type_info
|
14531
|
-
static swig_type_info
|
14532
|
-
static swig_type_info
|
14533
|
-
static swig_type_info
|
14534
|
-
static swig_type_info
|
14535
|
-
static swig_type_info
|
14599
|
+
static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
|
14600
|
+
static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
|
14601
|
+
static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
|
14602
|
+
static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
|
14603
|
+
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
14604
|
+
static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
|
14605
|
+
static swig_type_info _swigt__p_FXSpring = {"_p_FXSpring", 0, 0, 0, 0, 0};
|
14606
|
+
static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
|
14607
|
+
static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
|
14608
|
+
static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", 0, 0, 0, 0, 0};
|
14609
|
+
static swig_type_info _swigt__p_FXTabBar = {"_p_FXTabBar", 0, 0, 0, 0, 0};
|
14610
|
+
static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
|
14611
|
+
static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
|
14536
14612
|
static swig_type_info _swigt__p_FXToolBar = {"_p_FXToolBar", 0, 0, 0, 0, 0};
|
14537
|
-
static swig_type_info
|
14613
|
+
static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
|
14614
|
+
static swig_type_info _swigt__p_FXToolBarShell = {"_p_FXToolBarShell", 0, 0, 0, 0, 0};
|
14615
|
+
static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
|
14616
|
+
static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
|
14617
|
+
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
14618
|
+
static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
|
14619
|
+
static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
|
14620
|
+
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
|
14621
|
+
static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", 0, 0, 0, 0, 0};
|
14538
14622
|
static swig_type_info _swigt__p_FXGIFImage = {"_p_FXGIFImage", "FXGIFImage *", 0, 0, (void*)0, 0};
|
14539
14623
|
static swig_type_info _swigt__p_FXICOImage = {"_p_FXICOImage", "FXICOImage *", 0, 0, (void*)0, 0};
|
14540
14624
|
static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
|
14541
|
-
static swig_type_info _swigt__p_FXFont = {"_p_FXFont", 0, 0, 0, 0, 0};
|
14542
|
-
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
14543
|
-
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
14544
14625
|
static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
|
14626
|
+
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
14627
|
+
static swig_type_info _swigt__p_FXFont = {"_p_FXFont", 0, 0, 0, 0, 0};
|
14545
14628
|
static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
|
14629
|
+
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
14546
14630
|
static swig_type_info _swigt__p_FXImage = {"_p_FXImage", "FXImage *", 0, 0, (void*)0, 0};
|
14547
14631
|
static swig_type_info _swigt__p_FXJPGImage = {"_p_FXJPGImage", "FXJPGImage *", 0, 0, (void*)0, 0};
|
14548
14632
|
static swig_type_info _swigt__p_FXMemoryBuffer = {"_p_FXMemoryBuffer", "FXMemoryBuffer *", 0, 0, (void*)0, 0};
|
14549
14633
|
static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
|
14634
|
+
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
14635
|
+
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
14636
|
+
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
14637
|
+
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
14638
|
+
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
14550
14639
|
static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
|
14551
|
-
static swig_type_info
|
14640
|
+
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
14552
14641
|
static swig_type_info _swigt__p_FXHeaderItem = {"_p_FXHeaderItem", 0, 0, 0, 0, 0};
|
14553
14642
|
static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
|
14554
|
-
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
14555
14643
|
static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
|
14556
|
-
static swig_type_info
|
14557
|
-
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
14644
|
+
static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
|
14558
14645
|
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
14559
|
-
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
14560
|
-
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
14561
14646
|
static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
|
14562
|
-
static swig_type_info
|
14563
|
-
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
14647
|
+
static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
|
14564
14648
|
static swig_type_info _swigt__p_FXPCXImage = {"_p_FXPCXImage", "FXPCXImage *", 0, 0, (void*)0, 0};
|
14565
14649
|
static swig_type_info _swigt__p_FXPNGImage = {"_p_FXPNGImage", "FXPNGImage *", 0, 0, (void*)0, 0};
|
14566
14650
|
static swig_type_info _swigt__p_FXPPMImage = {"_p_FXPPMImage", "FXPPMImage *", 0, 0, (void*)0, 0};
|
@@ -14572,17 +14656,17 @@ static swig_type_info _swigt__p_FXTGAImage = {"_p_FXTGAImage", "FXTGAImage *", 0
|
|
14572
14656
|
static swig_type_info _swigt__p_FXTIFImage = {"_p_FXTIFImage", "FXTIFImage *", 0, 0, (void*)0, 0};
|
14573
14657
|
static swig_type_info _swigt__p_FXXBMImage = {"_p_FXXBMImage", "FXXBMImage *", 0, 0, (void*)0, 0};
|
14574
14658
|
static swig_type_info _swigt__p_FXXPMImage = {"_p_FXXPMImage", "FXXPMImage *", 0, 0, (void*)0, 0};
|
14575
|
-
static swig_type_info _swigt__p_char = {"_p_char", "
|
14576
|
-
static swig_type_info _swigt__p_double = {"_p_double", "
|
14577
|
-
static swig_type_info _swigt__p_float = {"_p_float", "
|
14578
|
-
static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int
|
14579
|
-
static swig_type_info _swigt__p_long = {"_p_long", "
|
14580
|
-
static swig_type_info _swigt__p_p_char = {"_p_p_char", "
|
14581
|
-
static swig_type_info _swigt__p_short = {"_p_short", "
|
14582
|
-
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char
|
14583
|
-
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "
|
14584
|
-
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "
|
14585
|
-
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short
|
14659
|
+
static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
|
14660
|
+
static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
|
14661
|
+
static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
|
14662
|
+
static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
|
14663
|
+
static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
|
14664
|
+
static swig_type_info _swigt__p_p_char = {"_p_p_char", "FXchar **|char **", 0, 0, (void*)0, 0};
|
14665
|
+
static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
|
14666
|
+
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
|
14667
|
+
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
|
14668
|
+
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
|
14669
|
+
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
|
14586
14670
|
|
14587
14671
|
static swig_type_info *swig_type_initial[] = {
|
14588
14672
|
&_swigt__p_FX4Splitter,
|
@@ -14714,112 +14798,112 @@ static swig_type_info *swig_type_initial[] = {
|
|
14714
14798
|
static swig_cast_info _swigc__p_FXApp[] = { {&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
|
14715
14799
|
static swig_cast_info _swigc__p_FXBMPImage[] = { {&_swigt__p_FXBMPImage, 0, 0, 0},{0, 0, 0, 0}};
|
14716
14800
|
static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{0, 0, 0, 0}};
|
14717
|
-
static swig_cast_info
|
14718
|
-
static swig_cast_info
|
14801
|
+
static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
|
14802
|
+
static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
|
14803
|
+
static swig_cast_info _swigc__p_FXArrowButton[] = {{&_swigt__p_FXArrowButton, 0, 0, 0},{0, 0, 0, 0}};
|
14804
|
+
static swig_cast_info _swigc__p_FXBitmapFrame[] = {{&_swigt__p_FXBitmapFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14805
|
+
static swig_cast_info _swigc__p_FXCanvas[] = {{&_swigt__p_FXCanvas, 0, 0, 0},{0, 0, 0, 0}};
|
14719
14806
|
static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
|
14720
|
-
static swig_cast_info
|
14721
|
-
static swig_cast_info
|
14722
|
-
static swig_cast_info
|
14723
|
-
static swig_cast_info
|
14807
|
+
static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
14808
|
+
static swig_cast_info _swigc__p_FXColorSelector[] = {{&_swigt__p_FXColorSelector, 0, 0, 0},{0, 0, 0, 0}};
|
14809
|
+
static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
|
14810
|
+
static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
|
14811
|
+
static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
|
14812
|
+
static swig_cast_info _swigc__p_FXComposite[] = {{&_swigt__p_FXComposite, 0, 0, 0},{0, 0, 0, 0}};
|
14813
|
+
static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
|
14814
|
+
static swig_cast_info _swigc__p_FXDirBox[] = {{&_swigt__p_FXDirBox, 0, 0, 0},{0, 0, 0, 0}};
|
14815
|
+
static swig_cast_info _swigc__p_FXDirSelector[] = {{&_swigt__p_FXDirSelector, 0, 0, 0},{0, 0, 0, 0}};
|
14816
|
+
static swig_cast_info _swigc__p_FXDockBar[] = {{&_swigt__p_FXDockBar, 0, 0, 0},{0, 0, 0, 0}};
|
14817
|
+
static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
|
14818
|
+
static swig_cast_info _swigc__p_FXDockSite[] = {{&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
|
14819
|
+
static swig_cast_info _swigc__p_FXDockTitle[] = {{&_swigt__p_FXDockTitle, 0, 0, 0},{0, 0, 0, 0}};
|
14820
|
+
static swig_cast_info _swigc__p_FXDragCorner[] = {{&_swigt__p_FXDragCorner, 0, 0, 0},{0, 0, 0, 0}};
|
14724
14821
|
static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
|
14725
|
-
static swig_cast_info
|
14726
|
-
static swig_cast_info
|
14727
|
-
static swig_cast_info
|
14728
|
-
static swig_cast_info
|
14822
|
+
static swig_cast_info _swigc__p_FXFileSelector[] = {{&_swigt__p_FXFileSelector, 0, 0, 0},{0, 0, 0, 0}};
|
14823
|
+
static swig_cast_info _swigc__p_FXFontSelector[] = {{&_swigt__p_FXFontSelector, 0, 0, 0},{0, 0, 0, 0}};
|
14824
|
+
static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14825
|
+
static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
|
14826
|
+
static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
14729
14827
|
static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
|
14730
|
-
static swig_cast_info
|
14731
|
-
static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
|
14732
|
-
static swig_cast_info _swigc__p_FXSpring[] = {{&_swigt__p_FXSpring, 0, 0, 0},{0, 0, 0, 0}};
|
14733
|
-
static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
|
14734
|
-
static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
|
14735
|
-
static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14736
|
-
static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
14828
|
+
static swig_cast_info _swigc__p_FXHorizontalFrame[] = {{&_swigt__p_FXHorizontalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14737
14829
|
static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
14738
|
-
static swig_cast_info
|
14830
|
+
static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14831
|
+
static swig_cast_info _swigc__p_FXImageView[] = {{&_swigt__p_FXImageView, 0, 0, 0},{0, 0, 0, 0}};
|
14739
14832
|
static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
|
14833
|
+
static swig_cast_info _swigc__p_FXListBox[] = {{&_swigt__p_FXListBox, 0, 0, 0},{0, 0, 0, 0}};
|
14834
|
+
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14835
|
+
static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
|
14836
|
+
static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
|
14837
|
+
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
14740
14838
|
static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
|
14741
|
-
static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
|
14742
|
-
static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
|
14743
|
-
static swig_cast_info _swigc__p_FXComposite[] = {{&_swigt__p_FXComposite, 0, 0, 0},{0, 0, 0, 0}};
|
14744
|
-
static swig_cast_info _swigc__p_FXBitmapFrame[] = {{&_swigt__p_FXBitmapFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14745
14839
|
static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
|
14746
|
-
static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
|
14747
|
-
static swig_cast_info _swigc__p_FXDockSite[] = {{&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
|
14748
|
-
static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
14749
|
-
static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
14750
|
-
static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
|
14751
|
-
static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
|
14752
|
-
static swig_cast_info _swigc__p_FXListBox[] = {{&_swigt__p_FXListBox, 0, 0, 0},{0, 0, 0, 0}};
|
14753
|
-
static swig_cast_info _swigc__p_FXCanvas[] = {{&_swigt__p_FXCanvas, 0, 0, 0},{0, 0, 0, 0}};
|
14754
|
-
static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
|
14755
|
-
static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
|
14756
|
-
static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
|
14757
|
-
static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
14758
|
-
static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
|
14759
|
-
static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14760
|
-
static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
|
14761
|
-
static swig_cast_info _swigc__p_FXDockTitle[] = {{&_swigt__p_FXDockTitle, 0, 0, 0},{0, 0, 0, 0}};
|
14762
|
-
static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
|
14763
|
-
static swig_cast_info _swigc__p_FXRulerView[] = {{&_swigt__p_FXRulerView, 0, 0, 0},{0, 0, 0, 0}};
|
14764
14840
|
static swig_cast_info _swigc__p_FXRealSpinner[] = {{&_swigt__p_FXRealSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
14765
|
-
static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
14766
|
-
static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
14767
|
-
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14768
|
-
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14769
|
-
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14770
14841
|
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14771
|
-
static swig_cast_info
|
14842
|
+
static swig_cast_info _swigc__p_FXRuler[] = {{&_swigt__p_FXRuler, 0, 0, 0},{0, 0, 0, 0}};
|
14843
|
+
static swig_cast_info _swigc__p_FXRulerView[] = {{&_swigt__p_FXRulerView, 0, 0, 0},{0, 0, 0, 0}};
|
14844
|
+
static swig_cast_info _swigc__p_FXScrollArea[] = {{&_swigt__p_FXScrollArea, 0, 0, 0},{0, 0, 0, 0}};
|
14845
|
+
static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
14846
|
+
static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
|
14772
14847
|
static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14773
|
-
static swig_cast_info
|
14848
|
+
static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
14774
14849
|
static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
|
14775
|
-
static swig_cast_info
|
14776
|
-
static swig_cast_info
|
14777
|
-
static swig_cast_info
|
14778
|
-
static swig_cast_info
|
14779
|
-
static swig_cast_info
|
14780
|
-
static swig_cast_info
|
14781
|
-
static swig_cast_info
|
14782
|
-
static swig_cast_info
|
14783
|
-
static swig_cast_info
|
14784
|
-
static swig_cast_info
|
14785
|
-
static swig_cast_info
|
14786
|
-
static swig_cast_info
|
14850
|
+
static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
|
14851
|
+
static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
|
14852
|
+
static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
|
14853
|
+
static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
14854
|
+
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14855
|
+
static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
|
14856
|
+
static swig_cast_info _swigc__p_FXSpring[] = {{&_swigt__p_FXSpring, 0, 0, 0},{0, 0, 0, 0}};
|
14857
|
+
static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
|
14858
|
+
static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
14859
|
+
static swig_cast_info _swigc__p_FXSwitcher[] = {{&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
|
14860
|
+
static swig_cast_info _swigc__p_FXTabBar[] = {{&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
|
14861
|
+
static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
|
14862
|
+
static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
|
14787
14863
|
static swig_cast_info _swigc__p_FXToolBar[] = {{&_swigt__p_FXToolBar, 0, 0, 0},{0, 0, 0, 0}};
|
14788
|
-
static swig_cast_info
|
14789
|
-
static swig_cast_info
|
14864
|
+
static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
|
14865
|
+
static swig_cast_info _swigc__p_FXToolBarShell[] = {{&_swigt__p_FXToolBarShell, 0, 0, 0},{0, 0, 0, 0}};
|
14866
|
+
static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
|
14867
|
+
static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
|
14868
|
+
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14869
|
+
static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
|
14870
|
+
static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
14871
|
+
static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
14872
|
+
static swig_cast_info _swigc__p_FXWindow[] = {{&_swigt__p_FXWindow, 0, 0, 0},{0, 0, 0, 0}};
|
14873
|
+
static swig_cast_info _swigc__p_FXDrawable[] = { {&_swigt__p_FXDrawable, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBMPImage, _p_FXBMPImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmap, _p_FXBitmapTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGIFImage, _p_FXGIFImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImage, _p_FXImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPPMImage, _p_FXPPMImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRGBImage, _p_FXRGBImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTIFImage, _p_FXTIFImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
|
14790
14874
|
static swig_cast_info _swigc__p_FXGIFImage[] = { {&_swigt__p_FXGIFImage, 0, 0, 0},{0, 0, 0, 0}};
|
14791
14875
|
static swig_cast_info _swigc__p_FXICOImage[] = { {&_swigt__p_FXICOImage, 0, 0, 0},{0, 0, 0, 0}};
|
14792
|
-
static swig_cast_info _swigc__p_FXFont[] = {{&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
14793
|
-
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
14794
|
-
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
14795
14876
|
static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
|
14877
|
+
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
14878
|
+
static swig_cast_info _swigc__p_FXFont[] = {{&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
14796
14879
|
static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
|
14797
|
-
static swig_cast_info
|
14798
|
-
static swig_cast_info
|
14880
|
+
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
14881
|
+
static swig_cast_info _swigc__p_FXId[] = { {&_swigt__p_FXId, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXId, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXId, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXId, 0, 0}, {&_swigt__p_FXBMPImage, _p_FXBMPImageTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmap, _p_FXBitmapTo_p_FXId, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXId, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXId, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXId, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXId, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXId, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXId, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXId, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXId, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXId, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXId, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXId, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXId, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXId, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXId, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXId, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXId, 0, 0}, {&_swigt__p_FXGIFImage, _p_FXGIFImageTo_p_FXId, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXId, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXId, 0, 0}, {&_swigt__p_FXImage, _p_FXImageTo_p_FXId, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXId, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXId, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXId, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXId, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXId, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXId, 0, 0}, {&_swigt__p_FXPPMImage, _p_FXPPMImageTo_p_FXId, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXId, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXId, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXId, 0, 0}, {&_swigt__p_FXRGBImage, _p_FXRGBImageTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXId, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXId, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXId, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXId, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXId, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXId, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXId, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXId, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXId, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXId, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXId, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXId, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXId, 0, 0}, {&_swigt__p_FXTIFImage, _p_FXTIFImageTo_p_FXId, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXId, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXId, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXId, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXId, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXId, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXId, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXId, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXId, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXId, 0, 0},{0, 0, 0, 0}};
|
14882
|
+
static swig_cast_info _swigc__p_FXImage[] = { {&_swigt__p_FXImage, 0, 0, 0}, {&_swigt__p_FXBMPImage, _p_FXBMPImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXGIFImage, _p_FXGIFImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXPPMImage, _p_FXPPMImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXRGBImage, _p_FXRGBImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXTIFImage, _p_FXTIFImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXImage, 0, 0},{0, 0, 0, 0}};
|
14799
14883
|
static swig_cast_info _swigc__p_FXJPGImage[] = { {&_swigt__p_FXJPGImage, 0, 0, 0},{0, 0, 0, 0}};
|
14800
14884
|
static swig_cast_info _swigc__p_FXMemoryBuffer[] = { {&_swigt__p_FXMemoryBuffer, 0, 0, 0},{0, 0, 0, 0}};
|
14885
|
+
static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
|
14886
|
+
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
14887
|
+
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
14888
|
+
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
14889
|
+
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
14801
14890
|
static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
|
14802
|
-
static swig_cast_info
|
14891
|
+
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
14803
14892
|
static swig_cast_info _swigc__p_FXHeaderItem[] = {{&_swigt__p_FXHeaderItem, 0, 0, 0},{0, 0, 0, 0}};
|
14804
14893
|
static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
|
14805
|
-
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
14806
14894
|
static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
|
14807
|
-
static swig_cast_info
|
14808
|
-
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
14895
|
+
static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
|
14809
14896
|
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
14810
|
-
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
14811
|
-
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
14812
14897
|
static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
|
14813
|
-
static swig_cast_info
|
14814
|
-
static swig_cast_info
|
14815
|
-
static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXRGBImage, _p_FXRGBImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXBMPImage, _p_FXBMPImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXObject, 0, 0}, {&_swigt__p_FXPPMImage, _p_FXPPMImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXImage, _p_FXImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXObject, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXTIFImage, _p_FXTIFImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFImage, _p_FXGIFImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_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_FXDockBar, _p_FXDockBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmap, _p_FXBitmapTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
14898
|
+
static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
|
14899
|
+
static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXObject, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXObject, 0, 0}, {&_swigt__p_FXAccelTable, _p_FXAccelTableTo_p_FXObject, 0, 0}, {&_swigt__p_FXApp, _p_FXAppTo_p_FXObject, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXObject, 0, 0}, {&_swigt__p_FXBMPImage, _p_FXBMPImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmap, _p_FXBitmapTo_p_FXObject, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXCURCursor, _p_FXCURCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXObject, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXObject, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXObject, 0, 0}, {&_swigt__p_FXCursor, _p_FXCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDataTarget, _p_FXDataTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDebugTarget, _p_FXDebugTargetTo_p_FXObject, 0, 0}, {&_swigt__p_FXDelegator, _p_FXDelegatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXObject, 0, 0}, {&_swigt__p_FXDict, _p_FXDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXObject, 0, 0}, {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXDrawable, _p_FXDrawableTo_p_FXObject, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileDict, _p_FXFileDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFCursor, _p_FXGIFCursorTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFImage, _p_FXGIFImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXObject, 0, 0}, {&_swigt__p_FXHeaderItem, _p_FXHeaderItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXImage, _p_FXImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXObject, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXPPMImage, _p_FXPPMImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXObject, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXRGBImage, _p_FXRGBImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRecentFiles, _p_FXRecentFilesTo_p_FXObject, 0, 0}, {&_swigt__p_FXRegistry, _p_FXRegistryTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXSettings, _p_FXSettingsTo_p_FXObject, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXObject, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXStringDict, _p_FXStringDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXObject, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXTIFImage, _p_FXTIFImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXObject, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTranslator, _p_FXTranslatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVisual, _p_FXVisualTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
14816
14900
|
static swig_cast_info _swigc__p_FXPCXImage[] = { {&_swigt__p_FXPCXImage, 0, 0, 0},{0, 0, 0, 0}};
|
14817
14901
|
static swig_cast_info _swigc__p_FXPNGImage[] = { {&_swigt__p_FXPNGImage, 0, 0, 0},{0, 0, 0, 0}};
|
14818
14902
|
static swig_cast_info _swigc__p_FXPPMImage[] = { {&_swigt__p_FXPPMImage, 0, 0, 0},{0, 0, 0, 0}};
|
14819
14903
|
static swig_cast_info _swigc__p_FXRGBImage[] = { {&_swigt__p_FXRGBImage, 0, 0, 0},{0, 0, 0, 0}};
|
14820
14904
|
static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
|
14821
14905
|
static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
|
14822
|
-
static swig_cast_info _swigc__p_FXStream[] = { {&
|
14906
|
+
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}};
|
14823
14907
|
static swig_cast_info _swigc__p_FXTGAImage[] = { {&_swigt__p_FXTGAImage, 0, 0, 0},{0, 0, 0, 0}};
|
14824
14908
|
static swig_cast_info _swigc__p_FXTIFImage[] = { {&_swigt__p_FXTIFImage, 0, 0, 0},{0, 0, 0, 0}};
|
14825
14909
|
static swig_cast_info _swigc__p_FXXBMImage[] = { {&_swigt__p_FXXBMImage, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -15018,9 +15102,12 @@ extern "C" {
|
|
15018
15102
|
#define SWIGRUNTIME_DEBUG
|
15019
15103
|
#endif
|
15020
15104
|
|
15105
|
+
#ifndef SWIG_INIT_CLIENT_DATA_TYPE
|
15106
|
+
#define SWIG_INIT_CLIENT_DATA_TYPE void *
|
15107
|
+
#endif
|
15021
15108
|
|
15022
15109
|
SWIGRUNTIME void
|
15023
|
-
SWIG_InitializeModule(
|
15110
|
+
SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
|
15024
15111
|
size_t i;
|
15025
15112
|
swig_module_info *module_head, *iter;
|
15026
15113
|
int init;
|