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/icons_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
|
|
@@ -2009,12 +2049,56 @@ static swig_module_info swig_module = {swig_types, 137, 0, 0, 0, 0};
|
|
2009
2049
|
|
2010
2050
|
|
2011
2051
|
|
2012
|
-
#
|
2013
|
-
#
|
2052
|
+
#ifdef __cplusplus
|
2053
|
+
#include <utility>
|
2054
|
+
/* SwigValueWrapper is described in swig.swg */
|
2055
|
+
template<typename T> class SwigValueWrapper {
|
2056
|
+
struct SwigSmartPointer {
|
2057
|
+
T *ptr;
|
2058
|
+
SwigSmartPointer(T *p) : ptr(p) { }
|
2059
|
+
~SwigSmartPointer() { delete ptr; }
|
2060
|
+
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
2061
|
+
void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
|
2062
|
+
} pointer;
|
2063
|
+
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
2064
|
+
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
2065
|
+
public:
|
2066
|
+
SwigValueWrapper() : pointer(0) { }
|
2067
|
+
SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
|
2068
|
+
#if __cplusplus >=201103L
|
2069
|
+
SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
|
2070
|
+
operator T&&() const { return std::move(*pointer.ptr); }
|
2071
|
+
#else
|
2072
|
+
operator T&() const { return *pointer.ptr; }
|
2073
|
+
#endif
|
2074
|
+
T *operator&() const { return pointer.ptr; }
|
2075
|
+
static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
|
2076
|
+
};
|
2077
|
+
|
2078
|
+
/*
|
2079
|
+
* SwigValueInit() is a generic initialisation solution as the following approach:
|
2080
|
+
*
|
2081
|
+
* T c_result = T();
|
2082
|
+
*
|
2083
|
+
* doesn't compile for all types for example:
|
2084
|
+
*
|
2085
|
+
* unsigned int c_result = unsigned int();
|
2086
|
+
*/
|
2087
|
+
template <typename T> T SwigValueInit() {
|
2088
|
+
return T();
|
2089
|
+
}
|
2014
2090
|
|
2091
|
+
#if __cplusplus >=201103L
|
2092
|
+
# define SWIG_STD_MOVE(OBJ) std::move(OBJ)
|
2093
|
+
#else
|
2094
|
+
# define SWIG_STD_MOVE(OBJ) OBJ
|
2095
|
+
#endif
|
2096
|
+
|
2097
|
+
#endif
|
2015
2098
|
|
2016
|
-
|
2017
|
-
#define
|
2099
|
+
|
2100
|
+
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
2101
|
+
#define SWIG_RUBY_THREAD_END_BLOCK
|
2018
2102
|
|
2019
2103
|
|
2020
2104
|
#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
|
@@ -13699,7 +13783,7 @@ SWIGINTERN VALUE _wrap_fxloadXPM(int nargs, VALUE *args, VALUE self) {
|
|
13699
13783
|
argv[ii] = args[ii];
|
13700
13784
|
}
|
13701
13785
|
if (argc == 1) {
|
13702
|
-
int _v;
|
13786
|
+
int _v = 0;
|
13703
13787
|
void *vptr = 0;
|
13704
13788
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXStream, SWIG_POINTER_NO_NULL);
|
13705
13789
|
_v = SWIG_CheckState(res);
|
@@ -13708,7 +13792,7 @@ SWIGINTERN VALUE _wrap_fxloadXPM(int nargs, VALUE *args, VALUE self) {
|
|
13708
13792
|
}
|
13709
13793
|
}
|
13710
13794
|
if (argc == 1) {
|
13711
|
-
int _v;
|
13795
|
+
int _v = 0;
|
13712
13796
|
_v = (argv[0] != 0);
|
13713
13797
|
if (_v) {
|
13714
13798
|
return _wrap_fxloadXPM__SWIG_1(nargs, args, self);
|
@@ -13809,1216 +13893,1216 @@ fail:
|
|
13809
13893
|
|
13810
13894
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
13811
13895
|
|
13812
|
-
static void *
|
13813
|
-
return (void *)((
|
13896
|
+
static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13897
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
13814
13898
|
}
|
13815
|
-
static void *
|
13816
|
-
return (void *)((
|
13899
|
+
static void *_p_FX7SegmentTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13900
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
13817
13901
|
}
|
13818
|
-
static void *
|
13819
|
-
return (void *)((
|
13902
|
+
static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13903
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
13820
13904
|
}
|
13821
|
-
static void *
|
13822
|
-
return (void *)((
|
13905
|
+
static void *_p_FXBMPIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13906
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXBMPIcon *) x));
|
13823
13907
|
}
|
13824
|
-
static void *
|
13825
|
-
return (void *)((
|
13908
|
+
static void *_p_FXBMPImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13909
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXBMPImage *) x));
|
13826
13910
|
}
|
13827
|
-
static void *
|
13828
|
-
return (void *)((
|
13911
|
+
static void *_p_FXBitmapTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13912
|
+
return (void *)((FXDrawable *) ((FXBitmap *) x));
|
13829
13913
|
}
|
13830
|
-
static void *
|
13831
|
-
return (void *)((
|
13914
|
+
static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13915
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
13832
13916
|
}
|
13833
|
-
static void *
|
13834
|
-
return (void *)((
|
13917
|
+
static void *_p_FXCanvasTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13918
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXCanvas *) x));
|
13835
13919
|
}
|
13836
|
-
static void *
|
13837
|
-
return (void *)((
|
13920
|
+
static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13921
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
13838
13922
|
}
|
13839
|
-
static void *
|
13840
|
-
return (void *)((
|
13923
|
+
static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13924
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
13841
13925
|
}
|
13842
|
-
static void *
|
13843
|
-
return (void *)((
|
13926
|
+
static void *_p_FXColorSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13927
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
13844
13928
|
}
|
13845
|
-
static void *
|
13846
|
-
return (void *)((
|
13929
|
+
static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13930
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
13847
13931
|
}
|
13848
|
-
static void *
|
13849
|
-
return (void *)((
|
13932
|
+
static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13933
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
13850
13934
|
}
|
13851
|
-
static void *
|
13852
|
-
return (void *)((
|
13935
|
+
static void *_p_FXComboBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13936
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
13853
13937
|
}
|
13854
|
-
static void *
|
13855
|
-
return (void *)((
|
13938
|
+
static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13939
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
|
13856
13940
|
}
|
13857
|
-
static void *
|
13858
|
-
return (void *)((
|
13941
|
+
static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13942
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
|
13859
13943
|
}
|
13860
|
-
static void *
|
13861
|
-
return (void *)((
|
13944
|
+
static void *_p_FXDirBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13945
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
13862
13946
|
}
|
13863
|
-
static void *
|
13864
|
-
return (void *)((
|
13947
|
+
static void *_p_FXDirSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13948
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
13865
13949
|
}
|
13866
|
-
static void *
|
13867
|
-
return (void *)((
|
13950
|
+
static void *_p_FXDockBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13951
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
13868
13952
|
}
|
13869
|
-
static void *
|
13870
|
-
return (void *)((
|
13953
|
+
static void *_p_FXDockHandlerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13954
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
13871
13955
|
}
|
13872
|
-
static void *
|
13873
|
-
return (void *)((
|
13956
|
+
static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13957
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
13874
13958
|
}
|
13875
|
-
static void *
|
13876
|
-
return (void *)((
|
13959
|
+
static void *_p_FXDockTitleTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13960
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
13877
13961
|
}
|
13878
|
-
static void *
|
13879
|
-
return (void *)((
|
13962
|
+
static void *_p_FXDragCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13963
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXDragCorner *) x));
|
13880
13964
|
}
|
13881
|
-
static void *
|
13882
|
-
return (void *)((
|
13965
|
+
static void *_p_FXDriveBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13966
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
13883
13967
|
}
|
13884
|
-
static void *
|
13885
|
-
return (void *)((
|
13968
|
+
static void *_p_FXFileSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13969
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
13886
13970
|
}
|
13887
|
-
static void *
|
13888
|
-
return (void *)((
|
13971
|
+
static void *_p_FXFontSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13972
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
13889
13973
|
}
|
13890
|
-
static void *
|
13891
|
-
return (void *)((
|
13974
|
+
static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13975
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
|
13892
13976
|
}
|
13893
|
-
static void *
|
13894
|
-
return (void *)((
|
13977
|
+
static void *_p_FXGIFIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13978
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXGIFIcon *) x));
|
13895
13979
|
}
|
13896
|
-
static void *
|
13897
|
-
return (void *)((
|
13980
|
+
static void *_p_FXGIFImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13981
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXGIFImage *) x));
|
13898
13982
|
}
|
13899
|
-
static void *
|
13900
|
-
return (void *)((
|
13983
|
+
static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13984
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
13901
13985
|
}
|
13902
|
-
static void *
|
13903
|
-
return (void *)((
|
13986
|
+
static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13987
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
13904
13988
|
}
|
13905
|
-
static void *
|
13906
|
-
return (void *)((
|
13989
|
+
static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13990
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
|
13907
13991
|
}
|
13908
|
-
static void *
|
13909
|
-
return (void *)((
|
13992
|
+
static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13993
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
13910
13994
|
}
|
13911
|
-
static void *
|
13912
|
-
return (void *)((
|
13995
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13996
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
13913
13997
|
}
|
13914
|
-
static void *
|
13915
|
-
return (void *)((
|
13998
|
+
static void *_p_FXICOIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
13999
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXICOIcon *) x));
|
13916
14000
|
}
|
13917
|
-
static void *
|
13918
|
-
return (void *)((
|
14001
|
+
static void *_p_FXICOImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14002
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXICOImage *) x));
|
13919
14003
|
}
|
13920
|
-
static void *
|
13921
|
-
return (void *)((
|
14004
|
+
static void *_p_FXIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14005
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXIcon *) x));
|
13922
14006
|
}
|
13923
|
-
static void *
|
13924
|
-
return (void *)((
|
14007
|
+
static void *_p_FXImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14008
|
+
return (void *)((FXDrawable *) ((FXImage *) x));
|
13925
14009
|
}
|
13926
|
-
static void *
|
13927
|
-
return (void *)((
|
14010
|
+
static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14011
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
13928
14012
|
}
|
13929
|
-
static void *
|
13930
|
-
return (void *)((
|
14013
|
+
static void *_p_FXImageViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14014
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
13931
14015
|
}
|
13932
|
-
static void *
|
13933
|
-
return (void *)((
|
14016
|
+
static void *_p_FXJPGIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14017
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXJPGIcon *) x));
|
13934
14018
|
}
|
13935
|
-
static void *
|
13936
|
-
return (void *)((
|
14019
|
+
static void *_p_FXJPGImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14020
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXJPGImage *) x));
|
13937
14021
|
}
|
13938
|
-
static void *
|
13939
|
-
return (void *)((
|
14022
|
+
static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14023
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
|
13940
14024
|
}
|
13941
|
-
static void *
|
13942
|
-
return (void *)((
|
14025
|
+
static void *_p_FXListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14026
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
13943
14027
|
}
|
13944
|
-
static void *
|
13945
|
-
return (void *)((
|
14028
|
+
static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14029
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
13946
14030
|
}
|
13947
|
-
static void *
|
13948
|
-
return (void *)((
|
14031
|
+
static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14032
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
13949
14033
|
}
|
13950
|
-
static void *
|
13951
|
-
return (void *)((
|
14034
|
+
static void *_p_FXPCXIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14035
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXPCXIcon *) x));
|
13952
14036
|
}
|
13953
|
-
static void *
|
13954
|
-
return (void *)((
|
14037
|
+
static void *_p_FXPCXImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14038
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXPCXImage *) x));
|
13955
14039
|
}
|
13956
|
-
static void *
|
13957
|
-
return (void *)((
|
14040
|
+
static void *_p_FXPNGIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14041
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXPNGIcon *) x));
|
13958
14042
|
}
|
13959
|
-
static void *
|
13960
|
-
return (void *)((
|
14043
|
+
static void *_p_FXPNGImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14044
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXPNGImage *) x));
|
13961
14045
|
}
|
13962
|
-
static void *
|
13963
|
-
return (void *)((
|
14046
|
+
static void *_p_FXPPMIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14047
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXPPMIcon *) x));
|
13964
14048
|
}
|
13965
|
-
static void *
|
13966
|
-
return (void *)((
|
14049
|
+
static void *_p_FXPPMImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14050
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXPPMImage *) x));
|
13967
14051
|
}
|
13968
|
-
static void *
|
13969
|
-
return (void *)((
|
14052
|
+
static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14053
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
|
13970
14054
|
}
|
13971
|
-
static void *
|
13972
|
-
return (void *)((
|
14055
|
+
static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14056
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
13973
14057
|
}
|
13974
|
-
static void *
|
13975
|
-
return (void *)((
|
14058
|
+
static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14059
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
13976
14060
|
}
|
13977
|
-
static void *
|
13978
|
-
return (void *)((
|
14061
|
+
static void *_p_FXRGBIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14062
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXRGBIcon *) x));
|
13979
14063
|
}
|
13980
|
-
static void *
|
13981
|
-
return (void *)((
|
14064
|
+
static void *_p_FXRGBImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14065
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXRGBImage *) x));
|
13982
14066
|
}
|
13983
|
-
static void *
|
13984
|
-
return (void *)((
|
14067
|
+
static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14068
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
13985
14069
|
}
|
13986
|
-
static void *
|
13987
|
-
return (void *)((
|
14070
|
+
static void *_p_FXRealSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14071
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
13988
14072
|
}
|
13989
|
-
static void *
|
13990
|
-
return (void *)((
|
14073
|
+
static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14074
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
13991
14075
|
}
|
13992
|
-
static void *
|
13993
|
-
return (void *)((
|
14076
|
+
static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14077
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
|
13994
14078
|
}
|
13995
|
-
static void *
|
13996
|
-
return (void *)((
|
14079
|
+
static void *_p_FXRulerViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14080
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
13997
14081
|
}
|
13998
|
-
static void *
|
13999
|
-
return (void *)((
|
14082
|
+
static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14083
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
14000
14084
|
}
|
14001
|
-
static void *
|
14002
|
-
return (void *)((
|
14085
|
+
static void *_p_FXScrollBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14086
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXScrollBar *) x));
|
14003
14087
|
}
|
14004
|
-
static void *
|
14005
|
-
return (void *)((
|
14088
|
+
static void *_p_FXScrollCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14089
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXScrollCorner *) x));
|
14006
14090
|
}
|
14007
|
-
static void *
|
14008
|
-
return (void *)((
|
14091
|
+
static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14092
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
14009
14093
|
}
|
14010
|
-
static void *
|
14011
|
-
return (void *)((
|
14094
|
+
static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14095
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
14012
14096
|
}
|
14013
|
-
static void *
|
14014
|
-
return (void *)((
|
14097
|
+
static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14098
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
|
14015
14099
|
}
|
14016
|
-
static void *
|
14017
|
-
return (void *)((
|
14100
|
+
static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14101
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
14018
14102
|
}
|
14019
|
-
static void *
|
14020
|
-
return (void *)((
|
14103
|
+
static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14104
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
14021
14105
|
}
|
14022
|
-
static void *
|
14023
|
-
return (void *)((
|
14106
|
+
static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14107
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
|
14024
14108
|
}
|
14025
|
-
static void *
|
14026
|
-
return (void *)((
|
14109
|
+
static void *_p_FXSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14110
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
14027
14111
|
}
|
14028
|
-
static void *
|
14029
|
-
return (void *)((
|
14112
|
+
static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14113
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
14030
14114
|
}
|
14031
|
-
static void *
|
14032
|
-
return (void *)((
|
14115
|
+
static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14116
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
14033
14117
|
}
|
14034
|
-
static void *
|
14035
|
-
return (void *)((
|
14118
|
+
static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14119
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
14036
14120
|
}
|
14037
|
-
static void *
|
14038
|
-
return (void *)((
|
14121
|
+
static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14122
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
14039
14123
|
}
|
14040
|
-
static void *
|
14041
|
-
return (void *)((
|
14124
|
+
static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14125
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
14042
14126
|
}
|
14043
|
-
static void *
|
14044
|
-
return (void *)((
|
14127
|
+
static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14128
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
14045
14129
|
}
|
14046
|
-
static void *
|
14047
|
-
return (void *)((
|
14130
|
+
static void *_p_FXTGAIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14131
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXTGAIcon *) x));
|
14048
14132
|
}
|
14049
|
-
static void *
|
14050
|
-
return (void *)((
|
14133
|
+
static void *_p_FXTGAImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14134
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXTGAImage *) x));
|
14051
14135
|
}
|
14052
|
-
static void *
|
14053
|
-
return (void *)((
|
14136
|
+
static void *_p_FXTIFIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14137
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXTIFIcon *) x));
|
14054
14138
|
}
|
14055
|
-
static void *
|
14056
|
-
return (void *)((
|
14139
|
+
static void *_p_FXTIFImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14140
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXTIFImage *) x));
|
14057
14141
|
}
|
14058
|
-
static void *
|
14059
|
-
return (void *)((
|
14142
|
+
static void *_p_FXTabBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14143
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
14060
14144
|
}
|
14061
|
-
static void *
|
14062
|
-
return (void *)((
|
14145
|
+
static void *_p_FXTabBookTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14146
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
14063
14147
|
}
|
14064
|
-
static void *
|
14065
|
-
return (void *)((
|
14148
|
+
static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14149
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
|
14066
14150
|
}
|
14067
|
-
static void *
|
14068
|
-
return (void *)((
|
14151
|
+
static void *_p_FXToolBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14152
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
14069
14153
|
}
|
14070
|
-
static void *
|
14071
|
-
return (void *)((
|
14154
|
+
static void *_p_FXToolBarGripTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14155
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
14072
14156
|
}
|
14073
|
-
static void *
|
14074
|
-
return (void *)((
|
14157
|
+
static void *_p_FXToolBarShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14158
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
14075
14159
|
}
|
14076
|
-
static void *
|
14077
|
-
return (void *)((
|
14160
|
+
static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14161
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
14078
14162
|
}
|
14079
|
-
static void *
|
14080
|
-
return (void *)((
|
14163
|
+
static void *_p_FXToolTipTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14164
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
14081
14165
|
}
|
14082
|
-
static void *
|
14083
|
-
return (void *)((
|
14166
|
+
static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14167
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
14084
14168
|
}
|
14085
|
-
static void *
|
14086
|
-
return (void *)((
|
14169
|
+
static void *_p_FXTreeListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14170
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
14087
14171
|
}
|
14088
|
-
static void *
|
14089
|
-
return (void *)((
|
14172
|
+
static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14173
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
14090
14174
|
}
|
14091
|
-
static void *
|
14092
|
-
return (void *)((
|
14175
|
+
static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14176
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
14093
14177
|
}
|
14094
|
-
static void *
|
14095
|
-
return (void *)((
|
14178
|
+
static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14179
|
+
return (void *)((FXDrawable *) ((FXWindow *) x));
|
14096
14180
|
}
|
14097
|
-
static void *
|
14098
|
-
return (void *)((
|
14181
|
+
static void *_p_FXXBMIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14182
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXXBMIcon *) x));
|
14099
14183
|
}
|
14100
|
-
static void *
|
14101
|
-
return (void *)((
|
14184
|
+
static void *_p_FXXBMImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14185
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXXBMImage *) x));
|
14102
14186
|
}
|
14103
|
-
static void *
|
14104
|
-
return (void *)((
|
14187
|
+
static void *_p_FXXPMIconTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14188
|
+
return (void *)((FXDrawable *) (FXImage *)(FXIcon *) ((FXXPMIcon *) x));
|
14105
14189
|
}
|
14106
|
-
static void *
|
14107
|
-
return (void *)((
|
14190
|
+
static void *_p_FXXPMImageTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14191
|
+
return (void *)((FXDrawable *) (FXImage *) ((FXXPMImage *) x));
|
14108
14192
|
}
|
14109
|
-
static void *
|
14110
|
-
return (void *)((
|
14193
|
+
static void *_p_FXBMPIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14194
|
+
return (void *)((FXIcon *) ((FXBMPIcon *) x));
|
14111
14195
|
}
|
14112
|
-
static void *
|
14113
|
-
return (void *)((
|
14196
|
+
static void *_p_FXGIFIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14197
|
+
return (void *)((FXIcon *) ((FXGIFIcon *) x));
|
14114
14198
|
}
|
14115
|
-
static void *
|
14116
|
-
return (void *)((
|
14199
|
+
static void *_p_FXICOIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14200
|
+
return (void *)((FXIcon *) ((FXICOIcon *) x));
|
14117
14201
|
}
|
14118
|
-
static void *
|
14119
|
-
return (void *)((
|
14202
|
+
static void *_p_FXJPGIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14203
|
+
return (void *)((FXIcon *) ((FXJPGIcon *) x));
|
14120
14204
|
}
|
14121
|
-
static void *
|
14122
|
-
return (void *)((
|
14205
|
+
static void *_p_FXPCXIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14206
|
+
return (void *)((FXIcon *) ((FXPCXIcon *) x));
|
14123
14207
|
}
|
14124
|
-
static void *
|
14125
|
-
return (void *)((
|
14208
|
+
static void *_p_FXPNGIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14209
|
+
return (void *)((FXIcon *) ((FXPNGIcon *) x));
|
14126
14210
|
}
|
14127
|
-
static void *
|
14128
|
-
return (void *)((
|
14211
|
+
static void *_p_FXPPMIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14212
|
+
return (void *)((FXIcon *) ((FXPPMIcon *) x));
|
14129
14213
|
}
|
14130
|
-
static void *
|
14131
|
-
return (void *)((
|
14214
|
+
static void *_p_FXRGBIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14215
|
+
return (void *)((FXIcon *) ((FXRGBIcon *) x));
|
14132
14216
|
}
|
14133
|
-
static void *
|
14134
|
-
return (void *)((
|
14217
|
+
static void *_p_FXTGAIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14218
|
+
return (void *)((FXIcon *) ((FXTGAIcon *) x));
|
14135
14219
|
}
|
14136
|
-
static void *
|
14137
|
-
return (void *)((
|
14220
|
+
static void *_p_FXTIFIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14221
|
+
return (void *)((FXIcon *) ((FXTIFIcon *) x));
|
14138
14222
|
}
|
14139
|
-
static void *
|
14140
|
-
return (void *)((
|
14223
|
+
static void *_p_FXXBMIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14224
|
+
return (void *)((FXIcon *) ((FXXBMIcon *) x));
|
14141
14225
|
}
|
14142
|
-
static void *
|
14143
|
-
return (void *)((
|
14226
|
+
static void *_p_FXXPMIconTo_p_FXIcon(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14227
|
+
return (void *)((FXIcon *) ((FXXPMIcon *) x));
|
14144
14228
|
}
|
14145
|
-
static void *
|
14146
|
-
return (void *)((
|
14229
|
+
static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14230
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
14147
14231
|
}
|
14148
|
-
static void *
|
14149
|
-
return (void *)((
|
14232
|
+
static void *_p_FX7SegmentTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14233
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
14150
14234
|
}
|
14151
|
-
static void *
|
14152
|
-
return (void *)((
|
14235
|
+
static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14236
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
14153
14237
|
}
|
14154
|
-
static void *
|
14155
|
-
return (void *)((
|
14238
|
+
static void *_p_FXBMPIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14239
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXBMPIcon *) x));
|
14156
14240
|
}
|
14157
|
-
static void *
|
14158
|
-
return (void *)((
|
14241
|
+
static void *_p_FXBMPImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14242
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXBMPImage *) x));
|
14159
14243
|
}
|
14160
|
-
static void *
|
14161
|
-
return (void *)((
|
14244
|
+
static void *_p_FXBitmapTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14245
|
+
return (void *)((FXId *) (FXDrawable *) ((FXBitmap *) x));
|
14162
14246
|
}
|
14163
|
-
static void *
|
14164
|
-
return (void *)((
|
14247
|
+
static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14248
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
14165
14249
|
}
|
14166
|
-
static void *
|
14167
|
-
return (void *)((
|
14250
|
+
static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14251
|
+
return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
|
14168
14252
|
}
|
14169
|
-
static void *
|
14170
|
-
return (void *)((
|
14253
|
+
static void *_p_FXCanvasTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14254
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
|
14171
14255
|
}
|
14172
|
-
static void *
|
14173
|
-
return (void *)((
|
14256
|
+
static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14257
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
14174
14258
|
}
|
14175
|
-
static void *
|
14176
|
-
return (void *)((
|
14259
|
+
static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14260
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
14177
14261
|
}
|
14178
|
-
static void *
|
14179
|
-
return (void *)((
|
14262
|
+
static void *_p_FXColorSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14263
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
14180
14264
|
}
|
14181
|
-
static void *
|
14182
|
-
return (void *)((
|
14265
|
+
static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14266
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
14183
14267
|
}
|
14184
|
-
static void *
|
14185
|
-
return (void *)((
|
14268
|
+
static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14269
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
14186
14270
|
}
|
14187
|
-
static void *
|
14188
|
-
return (void *)((
|
14271
|
+
static void *_p_FXComboBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14272
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
14189
14273
|
}
|
14190
|
-
static void *
|
14191
|
-
return (void *)((
|
14274
|
+
static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14275
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
14192
14276
|
}
|
14193
|
-
static void *
|
14194
|
-
return (void *)((
|
14277
|
+
static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14278
|
+
return (void *)((FXId *) ((FXCursor *) x));
|
14195
14279
|
}
|
14196
|
-
static void *
|
14197
|
-
return (void *)((
|
14280
|
+
static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14281
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
14198
14282
|
}
|
14199
|
-
static void *
|
14200
|
-
return (void *)((
|
14283
|
+
static void *_p_FXDirBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14284
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
14201
14285
|
}
|
14202
|
-
static void *
|
14203
|
-
return (void *)((
|
14286
|
+
static void *_p_FXDirSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14287
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
14204
14288
|
}
|
14205
|
-
static void *
|
14206
|
-
return (void *)((
|
14289
|
+
static void *_p_FXDockBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14290
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
14207
14291
|
}
|
14208
|
-
static void *
|
14209
|
-
return (void *)((
|
14292
|
+
static void *_p_FXDockHandlerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14293
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
14210
14294
|
}
|
14211
|
-
static void *
|
14212
|
-
return (void *)((
|
14295
|
+
static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14296
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
14213
14297
|
}
|
14214
|
-
static void *
|
14215
|
-
return (void *)((
|
14298
|
+
static void *_p_FXDockTitleTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14299
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
14216
14300
|
}
|
14217
|
-
static void *
|
14218
|
-
return (void *)((
|
14301
|
+
static void *_p_FXDragCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14302
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
|
14219
14303
|
}
|
14220
|
-
static void *
|
14221
|
-
return (void *)((
|
14304
|
+
static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14305
|
+
return (void *)((FXId *) ((FXDrawable *) x));
|
14222
14306
|
}
|
14223
|
-
static void *
|
14224
|
-
return (void *)((
|
14307
|
+
static void *_p_FXDriveBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14308
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
14225
14309
|
}
|
14226
|
-
static void *
|
14227
|
-
return (void *)((
|
14310
|
+
static void *_p_FXFileSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14311
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
14228
14312
|
}
|
14229
|
-
static void *
|
14230
|
-
return (void *)((
|
14313
|
+
static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14314
|
+
return (void *)((FXId *) ((FXFont *) x));
|
14231
14315
|
}
|
14232
|
-
static void *
|
14233
|
-
return (void *)((
|
14316
|
+
static void *_p_FXFontSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14317
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
14234
14318
|
}
|
14235
|
-
static void *
|
14236
|
-
return (void *)((
|
14319
|
+
static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14320
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
14237
14321
|
}
|
14238
|
-
static void *
|
14239
|
-
return (void *)((
|
14322
|
+
static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14323
|
+
return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
|
14240
14324
|
}
|
14241
|
-
static void *
|
14242
|
-
return (void *)((
|
14325
|
+
static void *_p_FXGIFIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14326
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXGIFIcon *) x));
|
14243
14327
|
}
|
14244
|
-
static void *
|
14245
|
-
return (void *)((
|
14328
|
+
static void *_p_FXGIFImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14329
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXGIFImage *) x));
|
14246
14330
|
}
|
14247
|
-
static void *
|
14248
|
-
return (void *)((
|
14331
|
+
static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14332
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
14249
14333
|
}
|
14250
|
-
static void *
|
14251
|
-
return (void *)((
|
14334
|
+
static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14335
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
14252
14336
|
}
|
14253
|
-
static void *
|
14254
|
-
return (void *)((
|
14337
|
+
static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14338
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
14255
14339
|
}
|
14256
|
-
static void *
|
14257
|
-
return (void *)((
|
14340
|
+
static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14341
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
14258
14342
|
}
|
14259
|
-
static void *
|
14260
|
-
return (void *)((
|
14343
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14344
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
14261
14345
|
}
|
14262
|
-
static void *
|
14263
|
-
return (void *)((
|
14346
|
+
static void *_p_FXICOIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14347
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXICOIcon *) x));
|
14264
14348
|
}
|
14265
|
-
static void *
|
14266
|
-
return (void *)((
|
14349
|
+
static void *_p_FXICOImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14350
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXICOImage *) x));
|
14267
14351
|
}
|
14268
|
-
static void *
|
14269
|
-
return (void *)((
|
14352
|
+
static void *_p_FXIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14353
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXIcon *) x));
|
14270
14354
|
}
|
14271
|
-
static void *
|
14272
|
-
return (void *)((
|
14355
|
+
static void *_p_FXImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14356
|
+
return (void *)((FXId *) (FXDrawable *) ((FXImage *) x));
|
14273
14357
|
}
|
14274
|
-
static void *
|
14275
|
-
return (void *)((
|
14358
|
+
static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14359
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
14276
14360
|
}
|
14277
|
-
static void *
|
14278
|
-
return (void *)((
|
14361
|
+
static void *_p_FXImageViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14362
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
14279
14363
|
}
|
14280
|
-
static void *
|
14281
|
-
return (void *)((
|
14364
|
+
static void *_p_FXJPGIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14365
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXJPGIcon *) x));
|
14282
14366
|
}
|
14283
|
-
static void *
|
14284
|
-
return (void *)((
|
14367
|
+
static void *_p_FXJPGImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14368
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXJPGImage *) x));
|
14285
14369
|
}
|
14286
|
-
static void *
|
14287
|
-
return (void *)((
|
14370
|
+
static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14371
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
14288
14372
|
}
|
14289
|
-
static void *
|
14290
|
-
return (void *)((
|
14373
|
+
static void *_p_FXListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14374
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
14291
14375
|
}
|
14292
|
-
static void *
|
14293
|
-
return (void *)((
|
14376
|
+
static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14377
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
14294
14378
|
}
|
14295
|
-
static void *
|
14296
|
-
return (void *)((
|
14379
|
+
static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14380
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
14297
14381
|
}
|
14298
|
-
static void *
|
14299
|
-
return (void *)((
|
14382
|
+
static void *_p_FXPCXIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14383
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXPCXIcon *) x));
|
14300
14384
|
}
|
14301
|
-
static void *
|
14302
|
-
return (void *)((
|
14385
|
+
static void *_p_FXPCXImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14386
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXPCXImage *) x));
|
14303
14387
|
}
|
14304
|
-
static void *
|
14305
|
-
return (void *)((
|
14388
|
+
static void *_p_FXPNGIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14389
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXPNGIcon *) x));
|
14306
14390
|
}
|
14307
|
-
static void *
|
14308
|
-
return (void *)((
|
14391
|
+
static void *_p_FXPNGImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14392
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXPNGImage *) x));
|
14309
14393
|
}
|
14310
|
-
static void *
|
14311
|
-
return (void *)((
|
14394
|
+
static void *_p_FXPPMIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14395
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXPPMIcon *) x));
|
14312
14396
|
}
|
14313
|
-
static void *
|
14314
|
-
return (void *)((
|
14397
|
+
static void *_p_FXPPMImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14398
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXPPMImage *) x));
|
14315
14399
|
}
|
14316
|
-
static void *
|
14317
|
-
return (void *)((
|
14400
|
+
static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14401
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
14318
14402
|
}
|
14319
|
-
static void *
|
14320
|
-
return (void *)((
|
14403
|
+
static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14404
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
14321
14405
|
}
|
14322
|
-
static void *
|
14323
|
-
return (void *)((
|
14406
|
+
static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14407
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
14324
14408
|
}
|
14325
|
-
static void *
|
14326
|
-
return (void *)((
|
14409
|
+
static void *_p_FXRGBIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14410
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXRGBIcon *) x));
|
14327
14411
|
}
|
14328
|
-
static void *
|
14329
|
-
return (void *)((
|
14412
|
+
static void *_p_FXRGBImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14413
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXRGBImage *) x));
|
14330
14414
|
}
|
14331
|
-
static void *
|
14332
|
-
return (void *)((
|
14415
|
+
static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14416
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
14333
14417
|
}
|
14334
|
-
static void *
|
14335
|
-
return (void *)((
|
14418
|
+
static void *_p_FXRealSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14419
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
14336
14420
|
}
|
14337
|
-
static void *
|
14338
|
-
return (void *)((
|
14421
|
+
static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14422
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
14339
14423
|
}
|
14340
|
-
static void *
|
14341
|
-
return (void *)((
|
14424
|
+
static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14425
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
14342
14426
|
}
|
14343
|
-
static void *
|
14344
|
-
return (void *)((
|
14427
|
+
static void *_p_FXRulerViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14428
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
14345
14429
|
}
|
14346
|
-
static void *
|
14347
|
-
return (void *)((
|
14430
|
+
static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14431
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
14348
14432
|
}
|
14349
|
-
static void *
|
14350
|
-
return (void *)((
|
14433
|
+
static void *_p_FXScrollBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14434
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
|
14351
14435
|
}
|
14352
|
-
static void *
|
14353
|
-
return (void *)((
|
14436
|
+
static void *_p_FXScrollCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14437
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
|
14354
14438
|
}
|
14355
|
-
static void *
|
14356
|
-
return (void *)((
|
14439
|
+
static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14440
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
14357
14441
|
}
|
14358
|
-
static void *
|
14359
|
-
return (void *)((
|
14442
|
+
static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14443
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
14360
14444
|
}
|
14361
|
-
static void *
|
14362
|
-
return (void *)((
|
14445
|
+
static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14446
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
14363
14447
|
}
|
14364
|
-
static void *
|
14365
|
-
return (void *)((
|
14448
|
+
static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14449
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
14366
14450
|
}
|
14367
|
-
static void *
|
14368
|
-
return (void *)((
|
14451
|
+
static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14452
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
14369
14453
|
}
|
14370
|
-
static void *
|
14371
|
-
return (void *)((
|
14454
|
+
static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14455
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
14372
14456
|
}
|
14373
|
-
static void *
|
14374
|
-
return (void *)((
|
14457
|
+
static void *_p_FXSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14458
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
14375
14459
|
}
|
14376
|
-
static void *
|
14377
|
-
return (void *)((
|
14460
|
+
static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14461
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
14378
14462
|
}
|
14379
|
-
static void *
|
14380
|
-
return (void *)((
|
14463
|
+
static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14464
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
14381
14465
|
}
|
14382
|
-
static void *
|
14383
|
-
return (void *)((
|
14466
|
+
static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14467
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
14384
14468
|
}
|
14385
|
-
static void *
|
14386
|
-
return (void *)((
|
14469
|
+
static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14470
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
14387
14471
|
}
|
14388
|
-
static void *
|
14389
|
-
return (void *)((
|
14472
|
+
static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14473
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
14390
14474
|
}
|
14391
|
-
static void *
|
14392
|
-
return (void *)((
|
14475
|
+
static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14476
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
14393
14477
|
}
|
14394
|
-
static void *
|
14395
|
-
return (void *)((
|
14478
|
+
static void *_p_FXTGAIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14479
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXTGAIcon *) x));
|
14396
14480
|
}
|
14397
|
-
static void *
|
14398
|
-
return (void *)((
|
14481
|
+
static void *_p_FXTGAImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14482
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXTGAImage *) x));
|
14399
14483
|
}
|
14400
|
-
static void *
|
14401
|
-
return (void *)((
|
14484
|
+
static void *_p_FXTIFIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14485
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXTIFIcon *) x));
|
14402
14486
|
}
|
14403
|
-
static void *
|
14404
|
-
return (void *)((
|
14487
|
+
static void *_p_FXTIFImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14488
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXTIFImage *) x));
|
14405
14489
|
}
|
14406
|
-
static void *
|
14407
|
-
return (void *)((
|
14490
|
+
static void *_p_FXTabBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14491
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
14408
14492
|
}
|
14409
|
-
static void *
|
14410
|
-
return (void *)((
|
14493
|
+
static void *_p_FXTabBookTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14494
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
14411
14495
|
}
|
14412
|
-
static void *
|
14413
|
-
return (void *)((
|
14496
|
+
static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14497
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
14414
14498
|
}
|
14415
|
-
static void *
|
14416
|
-
return (void *)((
|
14499
|
+
static void *_p_FXToolBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14500
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
14417
14501
|
}
|
14418
|
-
static void *
|
14419
|
-
return (void *)((
|
14502
|
+
static void *_p_FXToolBarGripTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14503
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
14420
14504
|
}
|
14421
|
-
static void *
|
14422
|
-
return (void *)((
|
14505
|
+
static void *_p_FXToolBarShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14506
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
14423
14507
|
}
|
14424
|
-
static void *
|
14425
|
-
return (void *)((
|
14508
|
+
static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14509
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
14426
14510
|
}
|
14427
|
-
static void *
|
14428
|
-
return (void *)((
|
14511
|
+
static void *_p_FXToolTipTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14512
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
14429
14513
|
}
|
14430
|
-
static void *
|
14431
|
-
return (void *)((
|
14514
|
+
static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14515
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
14432
14516
|
}
|
14433
|
-
static void *
|
14434
|
-
return (void *)((
|
14517
|
+
static void *_p_FXTreeListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14518
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
14435
14519
|
}
|
14436
|
-
static void *
|
14437
|
-
return (void *)((
|
14520
|
+
static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14521
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
14438
14522
|
}
|
14439
|
-
static void *
|
14440
|
-
return (void *)((
|
14523
|
+
static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14524
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
14441
14525
|
}
|
14442
|
-
static void *
|
14443
|
-
return (void *)((
|
14526
|
+
static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14527
|
+
return (void *)((FXId *) ((FXVisual *) x));
|
14444
14528
|
}
|
14445
|
-
static void *
|
14446
|
-
return (void *)((
|
14529
|
+
static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14530
|
+
return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
|
14447
14531
|
}
|
14448
|
-
static void *
|
14449
|
-
return (void *)((
|
14532
|
+
static void *_p_FXXBMIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14533
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXXBMIcon *) x));
|
14450
14534
|
}
|
14451
|
-
static void *
|
14452
|
-
return (void *)((
|
14535
|
+
static void *_p_FXXBMImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14536
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXXBMImage *) x));
|
14453
14537
|
}
|
14454
|
-
static void *
|
14455
|
-
return (void *)((
|
14538
|
+
static void *_p_FXXPMIconTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14539
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *)(FXIcon *) ((FXXPMIcon *) x));
|
14456
14540
|
}
|
14457
|
-
static void *
|
14458
|
-
return (void *)((
|
14541
|
+
static void *_p_FXXPMImageTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14542
|
+
return (void *)((FXId *) (FXDrawable *)(FXImage *) ((FXXPMImage *) x));
|
14459
14543
|
}
|
14460
|
-
static void *
|
14461
|
-
return (void *)((
|
14544
|
+
static void *_p_FXBMPIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14545
|
+
return (void *)((FXImage *) (FXIcon *) ((FXBMPIcon *) x));
|
14462
14546
|
}
|
14463
|
-
static void *
|
14464
|
-
return (void *)((
|
14547
|
+
static void *_p_FXBMPImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14548
|
+
return (void *)((FXImage *) ((FXBMPImage *) x));
|
14465
14549
|
}
|
14466
|
-
static void *
|
14467
|
-
return (void *)((
|
14550
|
+
static void *_p_FXGIFIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14551
|
+
return (void *)((FXImage *) (FXIcon *) ((FXGIFIcon *) x));
|
14468
14552
|
}
|
14469
|
-
static void *
|
14470
|
-
return (void *)((
|
14553
|
+
static void *_p_FXGIFImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14554
|
+
return (void *)((FXImage *) ((FXGIFImage *) x));
|
14471
14555
|
}
|
14472
|
-
static void *
|
14473
|
-
return (void *)((
|
14556
|
+
static void *_p_FXICOIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14557
|
+
return (void *)((FXImage *) (FXIcon *) ((FXICOIcon *) x));
|
14474
14558
|
}
|
14475
|
-
static void *
|
14476
|
-
return (void *)((
|
14559
|
+
static void *_p_FXICOImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14560
|
+
return (void *)((FXImage *) ((FXICOImage *) x));
|
14477
14561
|
}
|
14478
|
-
static void *
|
14479
|
-
return (void *)((
|
14562
|
+
static void *_p_FXIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14563
|
+
return (void *)((FXImage *) ((FXIcon *) x));
|
14480
14564
|
}
|
14481
|
-
static void *
|
14482
|
-
return (void *)((
|
14565
|
+
static void *_p_FXJPGIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14566
|
+
return (void *)((FXImage *) (FXIcon *) ((FXJPGIcon *) x));
|
14483
14567
|
}
|
14484
|
-
static void *
|
14485
|
-
return (void *)((
|
14568
|
+
static void *_p_FXJPGImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14569
|
+
return (void *)((FXImage *) ((FXJPGImage *) x));
|
14486
14570
|
}
|
14487
|
-
static void *
|
14488
|
-
return (void *)((
|
14571
|
+
static void *_p_FXPCXIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14572
|
+
return (void *)((FXImage *) (FXIcon *) ((FXPCXIcon *) x));
|
14489
14573
|
}
|
14490
|
-
static void *
|
14491
|
-
return (void *)((
|
14574
|
+
static void *_p_FXPCXImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14575
|
+
return (void *)((FXImage *) ((FXPCXImage *) x));
|
14492
14576
|
}
|
14493
|
-
static void *
|
14494
|
-
return (void *)((
|
14577
|
+
static void *_p_FXPNGIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14578
|
+
return (void *)((FXImage *) (FXIcon *) ((FXPNGIcon *) x));
|
14495
14579
|
}
|
14496
|
-
static void *
|
14497
|
-
return (void *)((
|
14580
|
+
static void *_p_FXPNGImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14581
|
+
return (void *)((FXImage *) ((FXPNGImage *) x));
|
14498
14582
|
}
|
14499
|
-
static void *
|
14500
|
-
return (void *)((
|
14583
|
+
static void *_p_FXPPMIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14584
|
+
return (void *)((FXImage *) (FXIcon *) ((FXPPMIcon *) x));
|
14501
14585
|
}
|
14502
|
-
static void *
|
14503
|
-
return (void *)((
|
14586
|
+
static void *_p_FXPPMImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14587
|
+
return (void *)((FXImage *) ((FXPPMImage *) x));
|
14504
14588
|
}
|
14505
|
-
static void *
|
14506
|
-
return (void *)((
|
14589
|
+
static void *_p_FXRGBIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14590
|
+
return (void *)((FXImage *) (FXIcon *) ((FXRGBIcon *) x));
|
14507
14591
|
}
|
14508
|
-
static void *
|
14509
|
-
return (void *)((
|
14592
|
+
static void *_p_FXRGBImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14593
|
+
return (void *)((FXImage *) ((FXRGBImage *) x));
|
14510
14594
|
}
|
14511
|
-
static void *
|
14512
|
-
return (void *)((
|
14595
|
+
static void *_p_FXTGAIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14596
|
+
return (void *)((FXImage *) (FXIcon *) ((FXTGAIcon *) x));
|
14513
14597
|
}
|
14514
|
-
static void *
|
14515
|
-
return (void *)((
|
14598
|
+
static void *_p_FXTGAImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14599
|
+
return (void *)((FXImage *) ((FXTGAImage *) x));
|
14516
14600
|
}
|
14517
|
-
static void *
|
14518
|
-
return (void *)((
|
14601
|
+
static void *_p_FXTIFIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14602
|
+
return (void *)((FXImage *) (FXIcon *) ((FXTIFIcon *) x));
|
14519
14603
|
}
|
14520
|
-
static void *
|
14521
|
-
return (void *)((
|
14604
|
+
static void *_p_FXTIFImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14605
|
+
return (void *)((FXImage *) ((FXTIFImage *) x));
|
14522
14606
|
}
|
14523
|
-
static void *
|
14524
|
-
return (void *)((
|
14607
|
+
static void *_p_FXXBMIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14608
|
+
return (void *)((FXImage *) (FXIcon *) ((FXXBMIcon *) x));
|
14525
14609
|
}
|
14526
|
-
static void *
|
14527
|
-
return (void *)((
|
14610
|
+
static void *_p_FXXBMImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14611
|
+
return (void *)((FXImage *) ((FXXBMImage *) x));
|
14528
14612
|
}
|
14529
|
-
static void *
|
14530
|
-
return (void *)((
|
14613
|
+
static void *_p_FXXPMIconTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14614
|
+
return (void *)((FXImage *) (FXIcon *) ((FXXPMIcon *) x));
|
14531
14615
|
}
|
14532
|
-
static void *
|
14533
|
-
return (void *)((
|
14616
|
+
static void *_p_FXXPMImageTo_p_FXImage(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14617
|
+
return (void *)((FXImage *) ((FXXPMImage *) x));
|
14534
14618
|
}
|
14535
|
-
static void *
|
14536
|
-
return (void *)((
|
14619
|
+
static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14620
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
14537
14621
|
}
|
14538
|
-
static void *
|
14539
|
-
return (void *)((
|
14622
|
+
static void *_p_FX7SegmentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14623
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
14540
14624
|
}
|
14541
|
-
static void *
|
14542
|
-
return (void *)((
|
14625
|
+
static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14626
|
+
return (void *)((FXObject *) ((FXAccelTable *) x));
|
14543
14627
|
}
|
14544
|
-
static void *
|
14545
|
-
return (void *)((
|
14628
|
+
static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14629
|
+
return (void *)((FXObject *) ((FXApp *) x));
|
14546
14630
|
}
|
14547
|
-
static void *
|
14548
|
-
return (void *)((
|
14631
|
+
static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14632
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
14549
14633
|
}
|
14550
|
-
static void *
|
14551
|
-
return (void *)((
|
14634
|
+
static void *_p_FXBMPIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14635
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXBMPIcon *) x));
|
14552
14636
|
}
|
14553
|
-
static void *
|
14554
|
-
return (void *)((
|
14637
|
+
static void *_p_FXBMPImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14638
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXBMPImage *) x));
|
14555
14639
|
}
|
14556
|
-
static void *
|
14557
|
-
return (void *)((
|
14640
|
+
static void *_p_FXBitmapTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14641
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXBitmap *) x));
|
14558
14642
|
}
|
14559
|
-
static void *
|
14560
|
-
return (void *)((
|
14643
|
+
static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14644
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
14561
14645
|
}
|
14562
|
-
static void *
|
14563
|
-
return (void *)((
|
14646
|
+
static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14647
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
|
14564
14648
|
}
|
14565
|
-
static void *
|
14566
|
-
return (void *)((
|
14649
|
+
static void *_p_FXCanvasTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14650
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
|
14567
14651
|
}
|
14568
|
-
static void *
|
14569
|
-
return (void *)((
|
14652
|
+
static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14653
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
14570
14654
|
}
|
14571
|
-
static void *
|
14572
|
-
return (void *)((
|
14655
|
+
static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14656
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
14573
14657
|
}
|
14574
|
-
static void *
|
14575
|
-
return (void *)((
|
14658
|
+
static void *_p_FXColorSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14659
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
14576
14660
|
}
|
14577
|
-
static void *
|
14578
|
-
return (void *)((
|
14661
|
+
static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14662
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
14579
14663
|
}
|
14580
|
-
static void *
|
14581
|
-
return (void *)((
|
14664
|
+
static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14665
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
14582
14666
|
}
|
14583
|
-
static void *
|
14584
|
-
return (void *)((
|
14667
|
+
static void *_p_FXComboBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14668
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
14585
14669
|
}
|
14586
|
-
static void *
|
14587
|
-
return (void *)((
|
14670
|
+
static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14671
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
14588
14672
|
}
|
14589
|
-
static void *
|
14590
|
-
return (void *)((
|
14673
|
+
static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14674
|
+
return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
|
14591
14675
|
}
|
14592
|
-
static void *
|
14593
|
-
return (void *)((
|
14676
|
+
static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14677
|
+
return (void *)((FXObject *) ((FXDataTarget *) x));
|
14594
14678
|
}
|
14595
|
-
static void *
|
14596
|
-
return (void *)((
|
14679
|
+
static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14680
|
+
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
14597
14681
|
}
|
14598
|
-
static void *
|
14599
|
-
return (void *)((
|
14682
|
+
static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14683
|
+
return (void *)((FXObject *) ((FXDelegator *) x));
|
14600
14684
|
}
|
14601
|
-
static void *
|
14602
|
-
return (void *)((FXDrawable *) (
|
14685
|
+
static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14686
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
14603
14687
|
}
|
14604
|
-
static void *
|
14605
|
-
return (void *)((
|
14688
|
+
static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14689
|
+
return (void *)((FXObject *) ((FXDict *) x));
|
14606
14690
|
}
|
14607
|
-
static void *
|
14608
|
-
return (void *)((
|
14691
|
+
static void *_p_FXDirBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14692
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
14609
14693
|
}
|
14610
|
-
static void *
|
14611
|
-
return (void *)((
|
14694
|
+
static void *_p_FXDirSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14695
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
14612
14696
|
}
|
14613
|
-
static void *
|
14614
|
-
return (void *)((
|
14697
|
+
static void *_p_FXDockBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14698
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
14615
14699
|
}
|
14616
|
-
static void *
|
14617
|
-
return (void *)((
|
14700
|
+
static void *_p_FXDockHandlerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14701
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
14618
14702
|
}
|
14619
|
-
static void *
|
14620
|
-
return (void *)((
|
14703
|
+
static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14704
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
14621
14705
|
}
|
14622
|
-
static void *
|
14623
|
-
return (void *)((FXDrawable *) (
|
14706
|
+
static void *_p_FXDockTitleTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14707
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
14624
14708
|
}
|
14625
|
-
static void *
|
14626
|
-
return (void *)((
|
14709
|
+
static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14710
|
+
return (void *)((FXObject *) ((FXDocument *) x));
|
14627
14711
|
}
|
14628
|
-
static void *
|
14629
|
-
return (void *)((
|
14712
|
+
static void *_p_FXDragCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14713
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
|
14630
14714
|
}
|
14631
|
-
static void *
|
14632
|
-
return (void *)((
|
14715
|
+
static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14716
|
+
return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
|
14633
14717
|
}
|
14634
|
-
static void *
|
14635
|
-
return (void *)((
|
14718
|
+
static void *_p_FXDriveBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14719
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
14636
14720
|
}
|
14637
|
-
static void *
|
14638
|
-
return (void *)((
|
14721
|
+
static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14722
|
+
return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
|
14639
14723
|
}
|
14640
|
-
static void *
|
14641
|
-
return (void *)((
|
14724
|
+
static void *_p_FXFileSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14725
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
14642
14726
|
}
|
14643
|
-
static void *
|
14644
|
-
return (void *)((
|
14727
|
+
static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14728
|
+
return (void *)((FXObject *) (FXId *) ((FXFont *) x));
|
14645
14729
|
}
|
14646
|
-
static void *
|
14647
|
-
return (void *)((
|
14730
|
+
static void *_p_FXFontSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14731
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
14648
14732
|
}
|
14649
|
-
static void *
|
14650
|
-
return (void *)((
|
14733
|
+
static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14734
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
14651
14735
|
}
|
14652
|
-
static void *
|
14653
|
-
return (void *)((
|
14736
|
+
static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14737
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
14654
14738
|
}
|
14655
|
-
static void *
|
14656
|
-
return (void *)((
|
14739
|
+
static void *_p_FXGIFIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14740
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXGIFIcon *) x));
|
14657
14741
|
}
|
14658
|
-
static void *
|
14659
|
-
return (void *)((
|
14742
|
+
static void *_p_FXGIFImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14743
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXGIFImage *) x));
|
14660
14744
|
}
|
14661
|
-
static void *
|
14662
|
-
return (void *)((
|
14745
|
+
static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14746
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
14663
14747
|
}
|
14664
|
-
static void *
|
14665
|
-
return (void *)((
|
14748
|
+
static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14749
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
14666
14750
|
}
|
14667
|
-
static void *
|
14668
|
-
return (void *)((FXDrawable *) (
|
14751
|
+
static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14752
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
14669
14753
|
}
|
14670
|
-
static void *
|
14671
|
-
return (void *)((
|
14754
|
+
static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14755
|
+
return (void *)((FXObject *) ((FXHeaderItem *) x));
|
14672
14756
|
}
|
14673
|
-
static void *
|
14674
|
-
return (void *)((FXDrawable *) (
|
14757
|
+
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14758
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
14675
14759
|
}
|
14676
|
-
static void *
|
14677
|
-
return (void *)((FXDrawable *) (
|
14760
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14761
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
14678
14762
|
}
|
14679
|
-
static void *
|
14680
|
-
return (void *)((
|
14763
|
+
static void *_p_FXICOIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14764
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXICOIcon *) x));
|
14681
14765
|
}
|
14682
|
-
static void *
|
14683
|
-
return (void *)((
|
14766
|
+
static void *_p_FXICOImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14767
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXICOImage *) x));
|
14684
14768
|
}
|
14685
|
-
static void *
|
14686
|
-
return (void *)((
|
14769
|
+
static void *_p_FXIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14770
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXIcon *) x));
|
14687
14771
|
}
|
14688
|
-
static void *
|
14689
|
-
return (void *)((
|
14772
|
+
static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14773
|
+
return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
|
14690
14774
|
}
|
14691
|
-
static void *
|
14692
|
-
return (void *)((
|
14775
|
+
static void *_p_FXIconSourceTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14776
|
+
return (void *)((FXObject *) ((FXIconSource *) x));
|
14693
14777
|
}
|
14694
|
-
static void *
|
14695
|
-
return (void *)((
|
14778
|
+
static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14779
|
+
return (void *)((FXObject *) ((FXId *) x));
|
14696
14780
|
}
|
14697
|
-
static void *
|
14698
|
-
return (void *)((
|
14781
|
+
static void *_p_FXImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14782
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXImage *) x));
|
14699
14783
|
}
|
14700
|
-
static void *
|
14701
|
-
return (void *)((
|
14784
|
+
static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14785
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
14702
14786
|
}
|
14703
|
-
static void *
|
14704
|
-
return (void *)((
|
14787
|
+
static void *_p_FXImageViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14788
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
14705
14789
|
}
|
14706
|
-
static void *
|
14707
|
-
return (void *)((
|
14790
|
+
static void *_p_FXJPGIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14791
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXJPGIcon *) x));
|
14708
14792
|
}
|
14709
|
-
static void *
|
14710
|
-
return (void *)((
|
14793
|
+
static void *_p_FXJPGImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14794
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXJPGImage *) x));
|
14711
14795
|
}
|
14712
|
-
static void *
|
14713
|
-
return (void *)((FXDrawable *)
|
14796
|
+
static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14797
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
14714
14798
|
}
|
14715
|
-
static void *
|
14716
|
-
return (void *)((
|
14799
|
+
static void *_p_FXListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14800
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
14717
14801
|
}
|
14718
|
-
static void *
|
14719
|
-
return (void *)((FXDrawable *) (
|
14802
|
+
static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14803
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
14720
14804
|
}
|
14721
|
-
static void *
|
14722
|
-
return (void *)((
|
14805
|
+
static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14806
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
14723
14807
|
}
|
14724
|
-
static void *
|
14725
|
-
return (void *)((
|
14808
|
+
static void *_p_FXPCXIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14809
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXPCXIcon *) x));
|
14726
14810
|
}
|
14727
|
-
static void *
|
14728
|
-
return (void *)((
|
14811
|
+
static void *_p_FXPCXImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14812
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXPCXImage *) x));
|
14729
14813
|
}
|
14730
|
-
static void *
|
14731
|
-
return (void *)((FXDrawable *)
|
14814
|
+
static void *_p_FXPNGIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14815
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXPNGIcon *) x));
|
14732
14816
|
}
|
14733
|
-
static void *
|
14734
|
-
return (void *)((
|
14817
|
+
static void *_p_FXPNGImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14818
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXPNGImage *) x));
|
14735
14819
|
}
|
14736
|
-
static void *
|
14737
|
-
return (void *)((
|
14820
|
+
static void *_p_FXPPMIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14821
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXPPMIcon *) x));
|
14738
14822
|
}
|
14739
|
-
static void *
|
14740
|
-
return (void *)((
|
14823
|
+
static void *_p_FXPPMImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14824
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXPPMImage *) x));
|
14741
14825
|
}
|
14742
|
-
static void *
|
14743
|
-
return (void *)((
|
14826
|
+
static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14827
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
14744
14828
|
}
|
14745
|
-
static void *
|
14746
|
-
return (void *)((FXDrawable *) (
|
14829
|
+
static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14830
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
14747
14831
|
}
|
14748
|
-
static void *
|
14749
|
-
return (void *)((
|
14832
|
+
static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14833
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
14750
14834
|
}
|
14751
|
-
static void *
|
14752
|
-
return (void *)((
|
14835
|
+
static void *_p_FXRGBIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14836
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXRGBIcon *) x));
|
14753
14837
|
}
|
14754
|
-
static void *
|
14755
|
-
return (void *)((
|
14838
|
+
static void *_p_FXRGBImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14839
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXRGBImage *) x));
|
14756
14840
|
}
|
14757
|
-
static void *
|
14758
|
-
return (void *)((
|
14841
|
+
static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14842
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
14759
14843
|
}
|
14760
|
-
static void *
|
14761
|
-
return (void *)((
|
14844
|
+
static void *_p_FXRealSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14845
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
14762
14846
|
}
|
14763
|
-
static void *
|
14764
|
-
return (void *)((
|
14847
|
+
static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14848
|
+
return (void *)((FXObject *) ((FXRecentFiles *) x));
|
14765
14849
|
}
|
14766
|
-
static void *
|
14767
|
-
return (void *)((
|
14850
|
+
static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14851
|
+
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
14768
14852
|
}
|
14769
|
-
static void *
|
14770
|
-
return (void *)((
|
14853
|
+
static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14854
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
14771
14855
|
}
|
14772
|
-
static void *
|
14773
|
-
return (void *)((
|
14856
|
+
static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14857
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
14774
14858
|
}
|
14775
|
-
static void *
|
14776
|
-
return (void *)((
|
14859
|
+
static void *_p_FXRulerViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14860
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
14777
14861
|
}
|
14778
|
-
static void *
|
14779
|
-
return (void *)((
|
14862
|
+
static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14863
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
14780
14864
|
}
|
14781
|
-
static void *
|
14782
|
-
return (void *)((
|
14865
|
+
static void *_p_FXScrollBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14866
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
|
14783
14867
|
}
|
14784
|
-
static void *
|
14785
|
-
return (void *)((
|
14868
|
+
static void *_p_FXScrollCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14869
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
|
14786
14870
|
}
|
14787
|
-
static void *
|
14788
|
-
return (void *)((FXDrawable *) (
|
14871
|
+
static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14872
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
14789
14873
|
}
|
14790
|
-
static void *
|
14791
|
-
return (void *)((
|
14874
|
+
static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14875
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
14792
14876
|
}
|
14793
|
-
static void *
|
14794
|
-
return (void *)((
|
14877
|
+
static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14878
|
+
return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
|
14795
14879
|
}
|
14796
|
-
static void *
|
14797
|
-
return (void *)((
|
14880
|
+
static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14881
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
14798
14882
|
}
|
14799
|
-
static void *
|
14800
|
-
return (void *)((
|
14883
|
+
static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14884
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
14801
14885
|
}
|
14802
|
-
static void *
|
14803
|
-
return (void *)((
|
14886
|
+
static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14887
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
14804
14888
|
}
|
14805
|
-
static void *
|
14806
|
-
return (void *)((
|
14889
|
+
static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14890
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
14807
14891
|
}
|
14808
|
-
static void *
|
14809
|
-
return (void *)((
|
14892
|
+
static void *_p_FXSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14893
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
14810
14894
|
}
|
14811
|
-
static void *
|
14812
|
-
return (void *)((
|
14895
|
+
static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14896
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
14813
14897
|
}
|
14814
|
-
static void *
|
14815
|
-
return (void *)((
|
14898
|
+
static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14899
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
14816
14900
|
}
|
14817
|
-
static void *
|
14818
|
-
return (void *)((
|
14901
|
+
static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14902
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
14819
14903
|
}
|
14820
|
-
static void *
|
14821
|
-
return (void *)((
|
14904
|
+
static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14905
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
14822
14906
|
}
|
14823
|
-
static void *
|
14824
|
-
return (void *)((
|
14907
|
+
static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14908
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
14825
14909
|
}
|
14826
|
-
static void *
|
14827
|
-
return (void *)((
|
14910
|
+
static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14911
|
+
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
14828
14912
|
}
|
14829
|
-
static void *
|
14830
|
-
return (void *)((
|
14913
|
+
static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14914
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
14831
14915
|
}
|
14832
|
-
static void *
|
14833
|
-
return (void *)((FXImage *)
|
14916
|
+
static void *_p_FXTGAIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14917
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXTGAIcon *) x));
|
14834
14918
|
}
|
14835
|
-
static void *
|
14836
|
-
return (void *)((
|
14919
|
+
static void *_p_FXTGAImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14920
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXTGAImage *) x));
|
14837
14921
|
}
|
14838
|
-
static void *
|
14839
|
-
return (void *)((
|
14922
|
+
static void *_p_FXTIFIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14923
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXTIFIcon *) x));
|
14840
14924
|
}
|
14841
|
-
static void *
|
14842
|
-
return (void *)((
|
14925
|
+
static void *_p_FXTIFImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14926
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXTIFImage *) x));
|
14843
14927
|
}
|
14844
|
-
static void *
|
14845
|
-
return (void *)((
|
14928
|
+
static void *_p_FXTabBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14929
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
14846
14930
|
}
|
14847
|
-
static void *
|
14848
|
-
return (void *)((
|
14931
|
+
static void *_p_FXTabBookTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14932
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
14849
14933
|
}
|
14850
|
-
static void *
|
14851
|
-
return (void *)((
|
14934
|
+
static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14935
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
14852
14936
|
}
|
14853
|
-
static void *
|
14854
|
-
return (void *)((
|
14937
|
+
static void *_p_FXToolBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14938
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
14855
14939
|
}
|
14856
|
-
static void *
|
14857
|
-
return (void *)((
|
14940
|
+
static void *_p_FXToolBarGripTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14941
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
14858
14942
|
}
|
14859
|
-
static void *
|
14860
|
-
return (void *)((
|
14943
|
+
static void *_p_FXToolBarShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14944
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
14861
14945
|
}
|
14862
|
-
static void *
|
14863
|
-
return (void *)((
|
14946
|
+
static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14947
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
14864
14948
|
}
|
14865
|
-
static void *
|
14866
|
-
return (void *)((
|
14949
|
+
static void *_p_FXToolTipTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14950
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
14867
14951
|
}
|
14868
|
-
static void *
|
14869
|
-
return (void *)((
|
14952
|
+
static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14953
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
14870
14954
|
}
|
14871
|
-
static void *
|
14872
|
-
return (void *)((
|
14955
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14956
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
14873
14957
|
}
|
14874
|
-
static void *
|
14875
|
-
return (void *)((
|
14958
|
+
static void *_p_FXTreeListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14959
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
14876
14960
|
}
|
14877
|
-
static void *
|
14878
|
-
return (void *)((
|
14961
|
+
static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14962
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
14879
14963
|
}
|
14880
|
-
static void *
|
14881
|
-
return (void *)((
|
14964
|
+
static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14965
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
14882
14966
|
}
|
14883
|
-
static void *
|
14884
|
-
return (void *)((
|
14967
|
+
static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14968
|
+
return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
|
14885
14969
|
}
|
14886
|
-
static void *
|
14887
|
-
return (void *)((
|
14970
|
+
static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14971
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
|
14888
14972
|
}
|
14889
|
-
static void *
|
14890
|
-
return (void *)((
|
14973
|
+
static void *_p_FXXBMIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14974
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXXBMIcon *) x));
|
14891
14975
|
}
|
14892
|
-
static void *
|
14893
|
-
return (void *)((
|
14976
|
+
static void *_p_FXXBMImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14977
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXXBMImage *) x));
|
14894
14978
|
}
|
14895
|
-
static void *
|
14896
|
-
return (void *)((FXImage *)
|
14979
|
+
static void *_p_FXXPMIconTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14980
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *)(FXIcon *) ((FXXPMIcon *) x));
|
14897
14981
|
}
|
14898
|
-
static void *
|
14899
|
-
return (void *)((FXImage *)
|
14982
|
+
static void *_p_FXXPMImageTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14983
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXImage *) ((FXXPMImage *) x));
|
14900
14984
|
}
|
14901
|
-
static void *
|
14902
|
-
return (void *)((
|
14985
|
+
static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14986
|
+
return (void *)((FXStream *) ((FXFileStream *) x));
|
14903
14987
|
}
|
14904
|
-
static void *
|
14905
|
-
return (void *)((
|
14988
|
+
static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
14989
|
+
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
14906
14990
|
}
|
14907
14991
|
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", "FXApp *", 0, 0, (void*)0, 0};
|
14908
14992
|
static swig_type_info _swigt__p_FXBMPIcon = {"_p_FXBMPIcon", "FXBMPIcon *", 0, 0, (void*)0, 0};
|
14909
14993
|
static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
|
14910
|
-
static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
|
14911
|
-
static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
|
14912
|
-
static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
|
14913
|
-
static swig_type_info _swigt__p_FXTabBar = {"_p_FXTabBar", 0, 0, 0, 0, 0};
|
14914
|
-
static swig_type_info _swigt__p_FXRGBImage = {"_p_FXRGBImage", 0, 0, 0, 0, 0};
|
14915
|
-
static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", 0, 0, 0, 0, 0};
|
14916
|
-
static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
|
14917
|
-
static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
|
14918
|
-
static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
|
14919
|
-
static swig_type_info _swigt__p_FXBMPImage = {"_p_FXBMPImage", 0, 0, 0, 0, 0};
|
14920
|
-
static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
|
14921
|
-
static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
|
14922
|
-
static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", 0, 0, 0, 0, 0};
|
14923
|
-
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
14924
|
-
static swig_type_info _swigt__p_FXPCXImage = {"_p_FXPCXImage", 0, 0, 0, 0, 0};
|
14925
|
-
static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
|
14926
|
-
static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
|
14927
14994
|
static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
|
14928
|
-
static swig_type_info
|
14929
|
-
static swig_type_info
|
14930
|
-
static swig_type_info
|
14931
|
-
static swig_type_info
|
14932
|
-
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
|
14933
|
-
static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
|
14934
|
-
static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
|
14935
|
-
static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
|
14936
|
-
static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
|
14937
|
-
static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
|
14938
|
-
static swig_type_info _swigt__p_FXTGAImage = {"_p_FXTGAImage", 0, 0, 0, 0, 0};
|
14939
|
-
static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
|
14940
|
-
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", 0, 0, 0, 0, 0};
|
14941
|
-
static swig_type_info _swigt__p_FXICOImage = {"_p_FXICOImage", 0, 0, 0, 0, 0};
|
14995
|
+
static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
|
14996
|
+
static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", 0, 0, 0, 0, 0};
|
14997
|
+
static swig_type_info _swigt__p_FXBMPImage = {"_p_FXBMPImage", 0, 0, 0, 0, 0};
|
14998
|
+
static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", 0, 0, 0, 0, 0};
|
14942
14999
|
static swig_type_info _swigt__p_FXBitmapFrame = {"_p_FXBitmapFrame", 0, 0, 0, 0, 0};
|
14943
|
-
static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
|
14944
|
-
static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
|
14945
|
-
static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", 0, 0, 0, 0, 0};
|
14946
|
-
static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
|
14947
|
-
static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
|
14948
|
-
static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
|
14949
|
-
static swig_type_info _swigt__p_FXPPMImage = {"_p_FXPPMImage", 0, 0, 0, 0, 0};
|
14950
|
-
static swig_type_info _swigt__p_FXXBMImage = {"_p_FXXBMImage", 0, 0, 0, 0, 0};
|
14951
|
-
static swig_type_info _swigt__p_FXXPMImage = {"_p_FXXPMImage", 0, 0, 0, 0, 0};
|
14952
|
-
static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
|
14953
|
-
static swig_type_info _swigt__p_FXListBox = {"_p_FXListBox", 0, 0, 0, 0, 0};
|
14954
15000
|
static swig_type_info _swigt__p_FXCanvas = {"_p_FXCanvas", 0, 0, 0, 0, 0};
|
15001
|
+
static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
|
15002
|
+
static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
|
15003
|
+
static swig_type_info _swigt__p_FXColorSelector = {"_p_FXColorSelector", 0, 0, 0, 0, 0};
|
15004
|
+
static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
|
14955
15005
|
static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
|
14956
|
-
static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
|
14957
|
-
static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
|
14958
|
-
static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
|
14959
15006
|
static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
|
14960
|
-
static swig_type_info
|
14961
|
-
static swig_type_info
|
15007
|
+
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", 0, 0, 0, 0, 0};
|
15008
|
+
static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
|
15009
|
+
static swig_type_info _swigt__p_FXDirBox = {"_p_FXDirBox", 0, 0, 0, 0, 0};
|
15010
|
+
static swig_type_info _swigt__p_FXDirSelector = {"_p_FXDirSelector", 0, 0, 0, 0, 0};
|
15011
|
+
static swig_type_info _swigt__p_FXDockBar = {"_p_FXDockBar", 0, 0, 0, 0, 0};
|
15012
|
+
static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
|
15013
|
+
static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", 0, 0, 0, 0, 0};
|
14962
15014
|
static swig_type_info _swigt__p_FXDockTitle = {"_p_FXDockTitle", 0, 0, 0, 0, 0};
|
15015
|
+
static swig_type_info _swigt__p_FXDragCorner = {"_p_FXDragCorner", 0, 0, 0, 0, 0};
|
15016
|
+
static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
|
15017
|
+
static swig_type_info _swigt__p_FXFileSelector = {"_p_FXFileSelector", 0, 0, 0, 0, 0};
|
15018
|
+
static swig_type_info _swigt__p_FXFontSelector = {"_p_FXFontSelector", 0, 0, 0, 0, 0};
|
15019
|
+
static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
|
15020
|
+
static swig_type_info _swigt__p_FXGIFImage = {"_p_FXGIFImage", 0, 0, 0, 0, 0};
|
15021
|
+
static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
|
15022
|
+
static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
|
15023
|
+
static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
|
15024
|
+
static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", 0, 0, 0, 0, 0};
|
15025
|
+
static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
|
15026
|
+
static swig_type_info _swigt__p_FXICOImage = {"_p_FXICOImage", 0, 0, 0, 0, 0};
|
15027
|
+
static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
|
15028
|
+
static swig_type_info _swigt__p_FXImageView = {"_p_FXImageView", 0, 0, 0, 0, 0};
|
14963
15029
|
static swig_type_info _swigt__p_FXJPGImage = {"_p_FXJPGImage", 0, 0, 0, 0, 0};
|
15030
|
+
static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
|
15031
|
+
static swig_type_info _swigt__p_FXListBox = {"_p_FXListBox", 0, 0, 0, 0, 0};
|
15032
|
+
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
15033
|
+
static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
|
15034
|
+
static swig_type_info _swigt__p_FXPCXImage = {"_p_FXPCXImage", 0, 0, 0, 0, 0};
|
14964
15035
|
static swig_type_info _swigt__p_FXPNGImage = {"_p_FXPNGImage", 0, 0, 0, 0, 0};
|
14965
|
-
static swig_type_info
|
14966
|
-
static swig_type_info
|
14967
|
-
static swig_type_info
|
14968
|
-
static swig_type_info
|
14969
|
-
static swig_type_info
|
15036
|
+
static swig_type_info _swigt__p_FXPPMImage = {"_p_FXPPMImage", 0, 0, 0, 0, 0};
|
15037
|
+
static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", 0, 0, 0, 0, 0};
|
15038
|
+
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", 0, 0, 0, 0, 0};
|
15039
|
+
static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
|
15040
|
+
static swig_type_info _swigt__p_FXRGBImage = {"_p_FXRGBImage", 0, 0, 0, 0, 0};
|
15041
|
+
static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
|
14970
15042
|
static swig_type_info _swigt__p_FXRealSpinner = {"_p_FXRealSpinner", 0, 0, 0, 0, 0};
|
14971
|
-
static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
|
14972
15043
|
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
14973
|
-
static swig_type_info
|
14974
|
-
static swig_type_info
|
14975
|
-
static swig_type_info
|
14976
|
-
static swig_type_info
|
15044
|
+
static swig_type_info _swigt__p_FXRuler = {"_p_FXRuler", 0, 0, 0, 0, 0};
|
15045
|
+
static swig_type_info _swigt__p_FXRulerView = {"_p_FXRulerView", 0, 0, 0, 0, 0};
|
15046
|
+
static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", 0, 0, 0, 0, 0};
|
15047
|
+
static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
|
15048
|
+
static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
|
14977
15049
|
static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
|
14978
|
-
static swig_type_info
|
15050
|
+
static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
|
14979
15051
|
static swig_type_info _swigt__p_FXShell = {"_p_FXShell", 0, 0, 0, 0, 0};
|
14980
|
-
static swig_type_info
|
14981
|
-
static swig_type_info
|
14982
|
-
static swig_type_info
|
14983
|
-
static swig_type_info
|
14984
|
-
static swig_type_info
|
14985
|
-
static swig_type_info
|
14986
|
-
static swig_type_info
|
14987
|
-
static swig_type_info
|
14988
|
-
static swig_type_info
|
14989
|
-
static swig_type_info
|
14990
|
-
static swig_type_info
|
14991
|
-
static swig_type_info
|
14992
|
-
static swig_type_info
|
15052
|
+
static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
|
15053
|
+
static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
|
15054
|
+
static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
|
15055
|
+
static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
|
15056
|
+
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
15057
|
+
static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
|
15058
|
+
static swig_type_info _swigt__p_FXSpring = {"_p_FXSpring", 0, 0, 0, 0, 0};
|
15059
|
+
static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
|
15060
|
+
static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
|
15061
|
+
static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", 0, 0, 0, 0, 0};
|
15062
|
+
static swig_type_info _swigt__p_FXTGAImage = {"_p_FXTGAImage", 0, 0, 0, 0, 0};
|
15063
|
+
static swig_type_info _swigt__p_FXTIFImage = {"_p_FXTIFImage", 0, 0, 0, 0, 0};
|
15064
|
+
static swig_type_info _swigt__p_FXTabBar = {"_p_FXTabBar", 0, 0, 0, 0, 0};
|
15065
|
+
static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
|
15066
|
+
static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
|
14993
15067
|
static swig_type_info _swigt__p_FXToolBar = {"_p_FXToolBar", 0, 0, 0, 0, 0};
|
14994
|
-
static swig_type_info
|
15068
|
+
static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
|
15069
|
+
static swig_type_info _swigt__p_FXToolBarShell = {"_p_FXToolBarShell", 0, 0, 0, 0, 0};
|
15070
|
+
static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
|
15071
|
+
static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
|
15072
|
+
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
15073
|
+
static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
|
15074
|
+
static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
|
15075
|
+
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
|
15076
|
+
static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", 0, 0, 0, 0, 0};
|
15077
|
+
static swig_type_info _swigt__p_FXXBMImage = {"_p_FXXBMImage", 0, 0, 0, 0, 0};
|
15078
|
+
static swig_type_info _swigt__p_FXXPMImage = {"_p_FXXPMImage", 0, 0, 0, 0, 0};
|
14995
15079
|
static swig_type_info _swigt__p_FXGIFIcon = {"_p_FXGIFIcon", "FXGIFIcon *", 0, 0, (void*)0, 0};
|
14996
15080
|
static swig_type_info _swigt__p_FXICOIcon = {"_p_FXICOIcon", "FXICOIcon *", 0, 0, (void*)0, 0};
|
14997
15081
|
static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
|
14998
15082
|
static swig_type_info _swigt__p_FXIconSource = {"_p_FXIconSource", "FXIconSource *", 0, 0, (void*)0, 0};
|
14999
15083
|
static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
|
15000
|
-
static swig_type_info _swigt__p_FXFont = {"_p_FXFont", 0, 0, 0, 0, 0};
|
15001
|
-
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
15002
|
-
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
15003
15084
|
static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
|
15085
|
+
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
15086
|
+
static swig_type_info _swigt__p_FXFont = {"_p_FXFont", 0, 0, 0, 0, 0};
|
15004
15087
|
static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
|
15088
|
+
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
15005
15089
|
static swig_type_info _swigt__p_FXImage = {"_p_FXImage", "FXImage *", 0, 0, (void*)0, 0};
|
15006
15090
|
static swig_type_info _swigt__p_FXJPGIcon = {"_p_FXJPGIcon", "FXJPGIcon *", 0, 0, (void*)0, 0};
|
15007
15091
|
static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
|
15092
|
+
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
15093
|
+
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
15094
|
+
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
15095
|
+
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
15096
|
+
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
15008
15097
|
static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
|
15009
|
-
static swig_type_info
|
15098
|
+
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
15010
15099
|
static swig_type_info _swigt__p_FXHeaderItem = {"_p_FXHeaderItem", 0, 0, 0, 0, 0};
|
15011
15100
|
static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
|
15012
|
-
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
15013
15101
|
static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
|
15014
|
-
static swig_type_info
|
15015
|
-
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
15102
|
+
static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
|
15016
15103
|
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
15017
|
-
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
15018
|
-
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
15019
15104
|
static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
|
15020
|
-
static swig_type_info
|
15021
|
-
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
15105
|
+
static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
|
15022
15106
|
static swig_type_info _swigt__p_FXPCXIcon = {"_p_FXPCXIcon", "FXPCXIcon *", 0, 0, (void*)0, 0};
|
15023
15107
|
static swig_type_info _swigt__p_FXPNGIcon = {"_p_FXPNGIcon", "FXPNGIcon *", 0, 0, (void*)0, 0};
|
15024
15108
|
static swig_type_info _swigt__p_FXPPMIcon = {"_p_FXPPMIcon", "FXPPMIcon *", 0, 0, (void*)0, 0};
|
@@ -15030,17 +15114,17 @@ static swig_type_info _swigt__p_FXTGAIcon = {"_p_FXTGAIcon", "FXTGAIcon *", 0, 0
|
|
15030
15114
|
static swig_type_info _swigt__p_FXTIFIcon = {"_p_FXTIFIcon", "FXTIFIcon *", 0, 0, (void*)0, 0};
|
15031
15115
|
static swig_type_info _swigt__p_FXXBMIcon = {"_p_FXXBMIcon", "FXXBMIcon *", 0, 0, (void*)0, 0};
|
15032
15116
|
static swig_type_info _swigt__p_FXXPMIcon = {"_p_FXXPMIcon", "FXXPMIcon *", 0, 0, (void*)0, 0};
|
15033
|
-
static swig_type_info _swigt__p_char = {"_p_char", "
|
15034
|
-
static swig_type_info _swigt__p_double = {"_p_double", "
|
15035
|
-
static swig_type_info _swigt__p_float = {"_p_float", "
|
15036
|
-
static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int
|
15037
|
-
static swig_type_info _swigt__p_long = {"_p_long", "
|
15038
|
-
static swig_type_info _swigt__p_p_char = {"_p_p_char", "
|
15039
|
-
static swig_type_info _swigt__p_short = {"_p_short", "
|
15040
|
-
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char
|
15041
|
-
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "
|
15042
|
-
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "
|
15043
|
-
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short
|
15117
|
+
static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
|
15118
|
+
static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
|
15119
|
+
static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
|
15120
|
+
static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
|
15121
|
+
static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
|
15122
|
+
static swig_type_info _swigt__p_p_char = {"_p_p_char", "FXchar **|char **", 0, 0, (void*)0, 0};
|
15123
|
+
static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
|
15124
|
+
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
|
15125
|
+
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
|
15126
|
+
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
|
15127
|
+
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
|
15044
15128
|
|
15045
15129
|
static swig_type_info *swig_type_initial[] = {
|
15046
15130
|
&_swigt__p_FX4Splitter,
|
@@ -15184,126 +15268,126 @@ static swig_type_info *swig_type_initial[] = {
|
|
15184
15268
|
|
15185
15269
|
static swig_cast_info _swigc__p_FXApp[] = { {&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
|
15186
15270
|
static swig_cast_info _swigc__p_FXBMPIcon[] = { {&_swigt__p_FXBMPIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15187
|
-
static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
|
15188
|
-
static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
|
15189
|
-
static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
|
15190
|
-
static swig_cast_info _swigc__p_FXTabBar[] = {{&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
|
15191
|
-
static swig_cast_info _swigc__p_FXRGBImage[] = {{&_swigt__p_FXRGBImage, 0, 0, 0},{0, 0, 0, 0}};
|
15192
|
-
static swig_cast_info _swigc__p_FXSwitcher[] = {{&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
|
15193
|
-
static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
|
15194
|
-
static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
|
15195
|
-
static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
|
15196
|
-
static swig_cast_info _swigc__p_FXBMPImage[] = {{&_swigt__p_FXBMPImage, 0, 0, 0},{0, 0, 0, 0}};
|
15197
|
-
static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
|
15198
|
-
static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
|
15199
|
-
static swig_cast_info _swigc__p_FXArrowButton[] = {{&_swigt__p_FXArrowButton, 0, 0, 0},{0, 0, 0, 0}};
|
15200
|
-
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
15201
|
-
static swig_cast_info _swigc__p_FXPCXImage[] = {{&_swigt__p_FXPCXImage, 0, 0, 0},{0, 0, 0, 0}};
|
15202
|
-
static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
|
15203
|
-
static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
|
15204
15271
|
static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
|
15205
|
-
static swig_cast_info
|
15206
|
-
static swig_cast_info
|
15207
|
-
static swig_cast_info
|
15208
|
-
static swig_cast_info
|
15209
|
-
static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
15210
|
-
static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
15211
|
-
static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
15212
|
-
static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
|
15213
|
-
static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
|
15214
|
-
static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
|
15215
|
-
static swig_cast_info _swigc__p_FXTGAImage[] = {{&_swigt__p_FXTGAImage, 0, 0, 0},{0, 0, 0, 0}};
|
15216
|
-
static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
|
15217
|
-
static swig_cast_info _swigc__p_FXComposite[] = {{&_swigt__p_FXComposite, 0, 0, 0},{0, 0, 0, 0}};
|
15218
|
-
static swig_cast_info _swigc__p_FXICOImage[] = {{&_swigt__p_FXICOImage, 0, 0, 0},{0, 0, 0, 0}};
|
15272
|
+
static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
|
15273
|
+
static swig_cast_info _swigc__p_FXArrowButton[] = {{&_swigt__p_FXArrowButton, 0, 0, 0},{0, 0, 0, 0}};
|
15274
|
+
static swig_cast_info _swigc__p_FXBMPImage[] = {{&_swigt__p_FXBMPImage, 0, 0, 0},{0, 0, 0, 0}};
|
15275
|
+
static swig_cast_info _swigc__p_FXBitmap[] = {{&_swigt__p_FXBitmap, 0, 0, 0},{0, 0, 0, 0}};
|
15219
15276
|
static swig_cast_info _swigc__p_FXBitmapFrame[] = {{&_swigt__p_FXBitmapFrame, 0, 0, 0},{0, 0, 0, 0}};
|
15220
|
-
static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
|
15221
|
-
static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
|
15222
|
-
static swig_cast_info _swigc__p_FXDockSite[] = {{&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
|
15223
|
-
static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
15224
|
-
static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
15225
|
-
static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
|
15226
|
-
static swig_cast_info _swigc__p_FXPPMImage[] = {{&_swigt__p_FXPPMImage, 0, 0, 0},{0, 0, 0, 0}};
|
15227
|
-
static swig_cast_info _swigc__p_FXXBMImage[] = {{&_swigt__p_FXXBMImage, 0, 0, 0},{0, 0, 0, 0}};
|
15228
|
-
static swig_cast_info _swigc__p_FXXPMImage[] = {{&_swigt__p_FXXPMImage, 0, 0, 0},{0, 0, 0, 0}};
|
15229
|
-
static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
|
15230
|
-
static swig_cast_info _swigc__p_FXListBox[] = {{&_swigt__p_FXListBox, 0, 0, 0},{0, 0, 0, 0}};
|
15231
15277
|
static swig_cast_info _swigc__p_FXCanvas[] = {{&_swigt__p_FXCanvas, 0, 0, 0},{0, 0, 0, 0}};
|
15278
|
+
static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
|
15279
|
+
static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
15280
|
+
static swig_cast_info _swigc__p_FXColorSelector[] = {{&_swigt__p_FXColorSelector, 0, 0, 0},{0, 0, 0, 0}};
|
15281
|
+
static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
|
15232
15282
|
static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
|
15233
|
-
static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
|
15234
|
-
static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
|
15235
|
-
static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
15236
15283
|
static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
|
15237
|
-
static swig_cast_info
|
15238
|
-
static swig_cast_info
|
15284
|
+
static swig_cast_info _swigc__p_FXComposite[] = {{&_swigt__p_FXComposite, 0, 0, 0},{0, 0, 0, 0}};
|
15285
|
+
static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
|
15286
|
+
static swig_cast_info _swigc__p_FXDirBox[] = {{&_swigt__p_FXDirBox, 0, 0, 0},{0, 0, 0, 0}};
|
15287
|
+
static swig_cast_info _swigc__p_FXDirSelector[] = {{&_swigt__p_FXDirSelector, 0, 0, 0},{0, 0, 0, 0}};
|
15288
|
+
static swig_cast_info _swigc__p_FXDockBar[] = {{&_swigt__p_FXDockBar, 0, 0, 0},{0, 0, 0, 0}};
|
15289
|
+
static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
|
15290
|
+
static swig_cast_info _swigc__p_FXDockSite[] = {{&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
|
15239
15291
|
static swig_cast_info _swigc__p_FXDockTitle[] = {{&_swigt__p_FXDockTitle, 0, 0, 0},{0, 0, 0, 0}};
|
15292
|
+
static swig_cast_info _swigc__p_FXDragCorner[] = {{&_swigt__p_FXDragCorner, 0, 0, 0},{0, 0, 0, 0}};
|
15293
|
+
static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
|
15294
|
+
static swig_cast_info _swigc__p_FXFileSelector[] = {{&_swigt__p_FXFileSelector, 0, 0, 0},{0, 0, 0, 0}};
|
15295
|
+
static swig_cast_info _swigc__p_FXFontSelector[] = {{&_swigt__p_FXFontSelector, 0, 0, 0},{0, 0, 0, 0}};
|
15296
|
+
static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
|
15297
|
+
static swig_cast_info _swigc__p_FXGIFImage[] = {{&_swigt__p_FXGIFImage, 0, 0, 0},{0, 0, 0, 0}};
|
15298
|
+
static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
|
15299
|
+
static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
15300
|
+
static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
|
15301
|
+
static swig_cast_info _swigc__p_FXHorizontalFrame[] = {{&_swigt__p_FXHorizontalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
15302
|
+
static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
15303
|
+
static swig_cast_info _swigc__p_FXICOImage[] = {{&_swigt__p_FXICOImage, 0, 0, 0},{0, 0, 0, 0}};
|
15304
|
+
static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
|
15305
|
+
static swig_cast_info _swigc__p_FXImageView[] = {{&_swigt__p_FXImageView, 0, 0, 0},{0, 0, 0, 0}};
|
15240
15306
|
static swig_cast_info _swigc__p_FXJPGImage[] = {{&_swigt__p_FXJPGImage, 0, 0, 0},{0, 0, 0, 0}};
|
15307
|
+
static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
|
15308
|
+
static swig_cast_info _swigc__p_FXListBox[] = {{&_swigt__p_FXListBox, 0, 0, 0},{0, 0, 0, 0}};
|
15309
|
+
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
15310
|
+
static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
|
15311
|
+
static swig_cast_info _swigc__p_FXPCXImage[] = {{&_swigt__p_FXPCXImage, 0, 0, 0},{0, 0, 0, 0}};
|
15241
15312
|
static swig_cast_info _swigc__p_FXPNGImage[] = {{&_swigt__p_FXPNGImage, 0, 0, 0},{0, 0, 0, 0}};
|
15242
|
-
static swig_cast_info
|
15243
|
-
static swig_cast_info
|
15244
|
-
static swig_cast_info
|
15245
|
-
static swig_cast_info
|
15246
|
-
static swig_cast_info
|
15313
|
+
static swig_cast_info _swigc__p_FXPPMImage[] = {{&_swigt__p_FXPPMImage, 0, 0, 0},{0, 0, 0, 0}};
|
15314
|
+
static swig_cast_info _swigc__p_FXPacker[] = {{&_swigt__p_FXPacker, 0, 0, 0},{0, 0, 0, 0}};
|
15315
|
+
static swig_cast_info _swigc__p_FXPopup[] = {{&_swigt__p_FXPopup, 0, 0, 0},{0, 0, 0, 0}};
|
15316
|
+
static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
|
15317
|
+
static swig_cast_info _swigc__p_FXRGBImage[] = {{&_swigt__p_FXRGBImage, 0, 0, 0},{0, 0, 0, 0}};
|
15318
|
+
static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
|
15247
15319
|
static swig_cast_info _swigc__p_FXRealSpinner[] = {{&_swigt__p_FXRealSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
15248
|
-
static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
15249
15320
|
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
15250
|
-
static swig_cast_info
|
15251
|
-
static swig_cast_info
|
15252
|
-
static swig_cast_info
|
15253
|
-
static swig_cast_info
|
15321
|
+
static swig_cast_info _swigc__p_FXRuler[] = {{&_swigt__p_FXRuler, 0, 0, 0},{0, 0, 0, 0}};
|
15322
|
+
static swig_cast_info _swigc__p_FXRulerView[] = {{&_swigt__p_FXRulerView, 0, 0, 0},{0, 0, 0, 0}};
|
15323
|
+
static swig_cast_info _swigc__p_FXScrollArea[] = {{&_swigt__p_FXScrollArea, 0, 0, 0},{0, 0, 0, 0}};
|
15324
|
+
static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
15325
|
+
static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
|
15254
15326
|
static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
|
15255
|
-
static swig_cast_info
|
15327
|
+
static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
15256
15328
|
static swig_cast_info _swigc__p_FXShell[] = {{&_swigt__p_FXShell, 0, 0, 0},{0, 0, 0, 0}};
|
15257
|
-
static swig_cast_info
|
15258
|
-
static swig_cast_info
|
15259
|
-
static swig_cast_info
|
15260
|
-
static swig_cast_info
|
15261
|
-
static swig_cast_info
|
15262
|
-
static swig_cast_info
|
15263
|
-
static swig_cast_info
|
15264
|
-
static swig_cast_info
|
15265
|
-
static swig_cast_info
|
15266
|
-
static swig_cast_info
|
15267
|
-
static swig_cast_info
|
15268
|
-
static swig_cast_info
|
15269
|
-
static swig_cast_info
|
15329
|
+
static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
|
15330
|
+
static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
|
15331
|
+
static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
|
15332
|
+
static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
15333
|
+
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
15334
|
+
static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
|
15335
|
+
static swig_cast_info _swigc__p_FXSpring[] = {{&_swigt__p_FXSpring, 0, 0, 0},{0, 0, 0, 0}};
|
15336
|
+
static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
|
15337
|
+
static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
15338
|
+
static swig_cast_info _swigc__p_FXSwitcher[] = {{&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
|
15339
|
+
static swig_cast_info _swigc__p_FXTGAImage[] = {{&_swigt__p_FXTGAImage, 0, 0, 0},{0, 0, 0, 0}};
|
15340
|
+
static swig_cast_info _swigc__p_FXTIFImage[] = {{&_swigt__p_FXTIFImage, 0, 0, 0},{0, 0, 0, 0}};
|
15341
|
+
static swig_cast_info _swigc__p_FXTabBar[] = {{&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
|
15342
|
+
static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
|
15343
|
+
static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
|
15270
15344
|
static swig_cast_info _swigc__p_FXToolBar[] = {{&_swigt__p_FXToolBar, 0, 0, 0},{0, 0, 0, 0}};
|
15271
|
-
static swig_cast_info
|
15272
|
-
static swig_cast_info
|
15345
|
+
static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
|
15346
|
+
static swig_cast_info _swigc__p_FXToolBarShell[] = {{&_swigt__p_FXToolBarShell, 0, 0, 0},{0, 0, 0, 0}};
|
15347
|
+
static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
|
15348
|
+
static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
|
15349
|
+
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
15350
|
+
static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
|
15351
|
+
static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
15352
|
+
static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
15353
|
+
static swig_cast_info _swigc__p_FXWindow[] = {{&_swigt__p_FXWindow, 0, 0, 0},{0, 0, 0, 0}};
|
15354
|
+
static swig_cast_info _swigc__p_FXXBMImage[] = {{&_swigt__p_FXXBMImage, 0, 0, 0},{0, 0, 0, 0}};
|
15355
|
+
static swig_cast_info _swigc__p_FXXPMImage[] = {{&_swigt__p_FXXPMImage, 0, 0, 0},{0, 0, 0, 0}};
|
15356
|
+
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_FXBMPIcon, _p_FXBMPIconTo_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_FXGIFIcon, _p_FXGIFIconTo_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_FXICOIcon, _p_FXICOIconTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXIcon, _p_FXIconTo_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_FXJPGIcon, _p_FXJPGIconTo_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_FXPCXIcon, _p_FXPCXIconTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPNGIcon, _p_FXPNGIconTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXPPMIcon, _p_FXPPMIconTo_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_FXRGBIcon, _p_FXRGBIconTo_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_FXTGAIcon, _p_FXTGAIconTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXTIFIcon, _p_FXTIFIconTo_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_FXXBMIcon, _p_FXXBMIconTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXXPMIcon, _p_FXXPMIconTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXDrawable, 0, 0},{0, 0, 0, 0}};
|
15273
15357
|
static swig_cast_info _swigc__p_FXGIFIcon[] = { {&_swigt__p_FXGIFIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15274
15358
|
static swig_cast_info _swigc__p_FXICOIcon[] = { {&_swigt__p_FXICOIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15275
|
-
static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0}, {&
|
15359
|
+
static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0}, {&_swigt__p_FXBMPIcon, _p_FXBMPIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXGIFIcon, _p_FXGIFIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXICOIcon, _p_FXICOIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXJPGIcon, _p_FXJPGIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXPCXIcon, _p_FXPCXIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXPNGIcon, _p_FXPNGIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXPPMIcon, _p_FXPPMIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXRGBIcon, _p_FXRGBIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXTGAIcon, _p_FXTGAIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXTIFIcon, _p_FXTIFIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXXBMIcon, _p_FXXBMIconTo_p_FXIcon, 0, 0}, {&_swigt__p_FXXPMIcon, _p_FXXPMIconTo_p_FXIcon, 0, 0},{0, 0, 0, 0}};
|
15276
15360
|
static swig_cast_info _swigc__p_FXIconSource[] = { {&_swigt__p_FXIconSource, 0, 0, 0},{0, 0, 0, 0}};
|
15277
|
-
static swig_cast_info _swigc__p_FXFont[] = {{&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
15278
|
-
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
15279
|
-
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
15280
15361
|
static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
|
15362
|
+
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
15363
|
+
static swig_cast_info _swigc__p_FXFont[] = {{&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
15281
15364
|
static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
|
15282
|
-
static swig_cast_info
|
15283
|
-
static swig_cast_info
|
15365
|
+
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
15366
|
+
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_FXBMPIcon, _p_FXBMPIconTo_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_FXGIFIcon, _p_FXGIFIconTo_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_FXICOIcon, _p_FXICOIconTo_p_FXId, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXId, 0, 0}, {&_swigt__p_FXIcon, _p_FXIconTo_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_FXJPGIcon, _p_FXJPGIconTo_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_FXPCXIcon, _p_FXPCXIconTo_p_FXId, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXId, 0, 0}, {&_swigt__p_FXPNGIcon, _p_FXPNGIconTo_p_FXId, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXId, 0, 0}, {&_swigt__p_FXPPMIcon, _p_FXPPMIconTo_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_FXRGBIcon, _p_FXRGBIconTo_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_FXTGAIcon, _p_FXTGAIconTo_p_FXId, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXId, 0, 0}, {&_swigt__p_FXTIFIcon, _p_FXTIFIconTo_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_FXXBMIcon, _p_FXXBMIconTo_p_FXId, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXId, 0, 0}, {&_swigt__p_FXXPMIcon, _p_FXXPMIconTo_p_FXId, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXId, 0, 0},{0, 0, 0, 0}};
|
15367
|
+
static swig_cast_info _swigc__p_FXImage[] = { {&_swigt__p_FXImage, 0, 0, 0}, {&_swigt__p_FXBMPIcon, _p_FXBMPIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXBMPImage, _p_FXBMPImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXGIFIcon, _p_FXGIFIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXGIFImage, _p_FXGIFImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXICOIcon, _p_FXICOIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXIcon, _p_FXIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXJPGIcon, _p_FXJPGIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXPCXIcon, _p_FXPCXIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXPNGIcon, _p_FXPNGIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXPPMIcon, _p_FXPPMIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXPPMImage, _p_FXPPMImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXRGBIcon, _p_FXRGBIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXRGBImage, _p_FXRGBImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXTGAIcon, _p_FXTGAIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXTIFIcon, _p_FXTIFIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXTIFImage, _p_FXTIFImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXXBMIcon, _p_FXXBMIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXImage, 0, 0}, {&_swigt__p_FXXPMIcon, _p_FXXPMIconTo_p_FXImage, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXImage, 0, 0},{0, 0, 0, 0}};
|
15284
15368
|
static swig_cast_info _swigc__p_FXJPGIcon[] = { {&_swigt__p_FXJPGIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15369
|
+
static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
|
15370
|
+
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
15371
|
+
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
15372
|
+
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
15373
|
+
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
15285
15374
|
static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
|
15286
|
-
static swig_cast_info
|
15375
|
+
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
15287
15376
|
static swig_cast_info _swigc__p_FXHeaderItem[] = {{&_swigt__p_FXHeaderItem, 0, 0, 0},{0, 0, 0, 0}};
|
15288
15377
|
static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
|
15289
|
-
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
15290
15378
|
static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
|
15291
|
-
static swig_cast_info
|
15292
|
-
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
15379
|
+
static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
|
15293
15380
|
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
15294
|
-
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
15295
|
-
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
15296
15381
|
static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
|
15297
|
-
static swig_cast_info
|
15298
|
-
static swig_cast_info
|
15299
|
-
static swig_cast_info _swigc__p_FXObject[] = { {&_swigt__p_FXDocument, _p_FXDocumentTo_p_FXObject, 0, 0}, {&_swigt__p_FXPNGIcon, _p_FXPNGIconTo_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_FXJPGIcon, _p_FXJPGIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXFont, _p_FXFontTo_p_FXObject, 0, 0}, {&_swigt__p_FXGIFIcon, _p_FXGIFIconTo_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_FXBMPIcon, _p_FXBMPIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXObject, 0, 0}, {&_swigt__p_FXIcon, _p_FXIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXICOIcon, _p_FXICOIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXObject, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXObject, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_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_FXTIFIcon, _p_FXTIFIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXImage, _p_FXImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXJPGImage, _p_FXJPGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_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_FXIconSource, _p_FXIconSourceTo_p_FXObject, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXObject, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXObject, 0, 0}, {&_swigt__p_FXTGAIcon, _p_FXTGAIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXObject, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXWindow, _p_FXWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXObject, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXPCXIcon, _p_FXPCXIconTo_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_FXRGBIcon, _p_FXRGBIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXXBMIcon, _p_FXXBMIconTo_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_FXXPMIcon, _p_FXXPMIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXPPMIcon, _p_FXPPMIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
15382
|
+
static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
|
15383
|
+
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_FXBMPIcon, _p_FXBMPIconTo_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_FXGIFIcon, _p_FXGIFIconTo_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_FXICOIcon, _p_FXICOIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXICOImage, _p_FXICOImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXIcon, _p_FXIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXIconSource, _p_FXIconSourceTo_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_FXJPGIcon, _p_FXJPGIconTo_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_FXPCXIcon, _p_FXPCXIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXPCXImage, _p_FXPCXImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXPNGIcon, _p_FXPNGIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXPNGImage, _p_FXPNGImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXPPMIcon, _p_FXPPMIconTo_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_FXRGBIcon, _p_FXRGBIconTo_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_FXTGAIcon, _p_FXTGAIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXTGAImage, _p_FXTGAImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXTIFIcon, _p_FXTIFIconTo_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_FXXBMIcon, _p_FXXBMIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXXBMImage, _p_FXXBMImageTo_p_FXObject, 0, 0}, {&_swigt__p_FXXPMIcon, _p_FXXPMIconTo_p_FXObject, 0, 0}, {&_swigt__p_FXXPMImage, _p_FXXPMImageTo_p_FXObject, 0, 0},{0, 0, 0, 0}};
|
15300
15384
|
static swig_cast_info _swigc__p_FXPCXIcon[] = { {&_swigt__p_FXPCXIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15301
15385
|
static swig_cast_info _swigc__p_FXPNGIcon[] = { {&_swigt__p_FXPNGIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15302
15386
|
static swig_cast_info _swigc__p_FXPPMIcon[] = { {&_swigt__p_FXPPMIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15303
15387
|
static swig_cast_info _swigc__p_FXRGBIcon[] = { {&_swigt__p_FXRGBIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15304
15388
|
static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
|
15305
15389
|
static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
|
15306
|
-
static swig_cast_info _swigc__p_FXStream[] = { {&
|
15390
|
+
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}};
|
15307
15391
|
static swig_cast_info _swigc__p_FXTGAIcon[] = { {&_swigt__p_FXTGAIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15308
15392
|
static swig_cast_info _swigc__p_FXTIFIcon[] = { {&_swigt__p_FXTIFIcon, 0, 0, 0},{0, 0, 0, 0}};
|
15309
15393
|
static swig_cast_info _swigc__p_FXXBMIcon[] = { {&_swigt__p_FXXBMIcon, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -15515,9 +15599,12 @@ extern "C" {
|
|
15515
15599
|
#define SWIGRUNTIME_DEBUG
|
15516
15600
|
#endif
|
15517
15601
|
|
15602
|
+
#ifndef SWIG_INIT_CLIENT_DATA_TYPE
|
15603
|
+
#define SWIG_INIT_CLIENT_DATA_TYPE void *
|
15604
|
+
#endif
|
15518
15605
|
|
15519
15606
|
SWIGRUNTIME void
|
15520
|
-
SWIG_InitializeModule(
|
15607
|
+
SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
|
15521
15608
|
size_t i;
|
15522
15609
|
swig_module_info *module_head, *iter;
|
15523
15610
|
int init;
|