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/menu_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
|
|
@@ -1993,12 +2033,56 @@ static swig_module_info swig_module = {swig_types, 121, 0, 0, 0, 0};
|
|
1993
2033
|
|
1994
2034
|
|
1995
2035
|
|
1996
|
-
#
|
1997
|
-
#
|
2036
|
+
#ifdef __cplusplus
|
2037
|
+
#include <utility>
|
2038
|
+
/* SwigValueWrapper is described in swig.swg */
|
2039
|
+
template<typename T> class SwigValueWrapper {
|
2040
|
+
struct SwigSmartPointer {
|
2041
|
+
T *ptr;
|
2042
|
+
SwigSmartPointer(T *p) : ptr(p) { }
|
2043
|
+
~SwigSmartPointer() { delete ptr; }
|
2044
|
+
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
2045
|
+
void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
|
2046
|
+
} pointer;
|
2047
|
+
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
2048
|
+
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
2049
|
+
public:
|
2050
|
+
SwigValueWrapper() : pointer(0) { }
|
2051
|
+
SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
|
2052
|
+
#if __cplusplus >=201103L
|
2053
|
+
SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
|
2054
|
+
operator T&&() const { return std::move(*pointer.ptr); }
|
2055
|
+
#else
|
2056
|
+
operator T&() const { return *pointer.ptr; }
|
2057
|
+
#endif
|
2058
|
+
T *operator&() const { return pointer.ptr; }
|
2059
|
+
static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
|
2060
|
+
};
|
2061
|
+
|
2062
|
+
/*
|
2063
|
+
* SwigValueInit() is a generic initialisation solution as the following approach:
|
2064
|
+
*
|
2065
|
+
* T c_result = T();
|
2066
|
+
*
|
2067
|
+
* doesn't compile for all types for example:
|
2068
|
+
*
|
2069
|
+
* unsigned int c_result = unsigned int();
|
2070
|
+
*/
|
2071
|
+
template <typename T> T SwigValueInit() {
|
2072
|
+
return T();
|
2073
|
+
}
|
1998
2074
|
|
2075
|
+
#if __cplusplus >=201103L
|
2076
|
+
# define SWIG_STD_MOVE(OBJ) std::move(OBJ)
|
2077
|
+
#else
|
2078
|
+
# define SWIG_STD_MOVE(OBJ) OBJ
|
2079
|
+
#endif
|
2080
|
+
|
2081
|
+
#endif
|
1999
2082
|
|
2000
|
-
|
2001
|
-
#define
|
2083
|
+
|
2084
|
+
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
2085
|
+
#define SWIG_RUBY_THREAD_END_BLOCK
|
2002
2086
|
|
2003
2087
|
|
2004
2088
|
#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
|
@@ -3116,7 +3200,7 @@ _wrap_FXMenuPane_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
3116
3200
|
FXRegion *arg2 = 0 ;
|
3117
3201
|
void *argp1 = 0 ;
|
3118
3202
|
int res1 = 0 ;
|
3119
|
-
void *argp2 ;
|
3203
|
+
void *argp2 = 0 ;
|
3120
3204
|
int res2 = 0 ;
|
3121
3205
|
|
3122
3206
|
if ((argc < 1) || (argc > 1)) {
|
@@ -3212,7 +3296,7 @@ SWIGINTERN VALUE _wrap_FXMenuPane_setShape(int nargs, VALUE *args, VALUE self) {
|
|
3212
3296
|
argv[ii] = args[ii-1];
|
3213
3297
|
}
|
3214
3298
|
if (argc == 2) {
|
3215
|
-
int _v;
|
3299
|
+
int _v = 0;
|
3216
3300
|
void *vptr = 0;
|
3217
3301
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuPane, 0);
|
3218
3302
|
_v = SWIG_CheckState(res);
|
@@ -3226,7 +3310,7 @@ SWIGINTERN VALUE _wrap_FXMenuPane_setShape(int nargs, VALUE *args, VALUE self) {
|
|
3226
3310
|
}
|
3227
3311
|
}
|
3228
3312
|
if (argc == 2) {
|
3229
|
-
int _v;
|
3313
|
+
int _v = 0;
|
3230
3314
|
void *vptr = 0;
|
3231
3315
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuPane, 0);
|
3232
3316
|
_v = SWIG_CheckState(res);
|
@@ -3240,7 +3324,7 @@ SWIGINTERN VALUE _wrap_FXMenuPane_setShape(int nargs, VALUE *args, VALUE self) {
|
|
3240
3324
|
}
|
3241
3325
|
}
|
3242
3326
|
if (argc == 2) {
|
3243
|
-
int _v;
|
3327
|
+
int _v = 0;
|
3244
3328
|
void *vptr = 0;
|
3245
3329
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuPane, 0);
|
3246
3330
|
_v = SWIG_CheckState(res);
|
@@ -4377,7 +4461,7 @@ _wrap_FXScrollPane_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
4377
4461
|
FXRegion *arg2 = 0 ;
|
4378
4462
|
void *argp1 = 0 ;
|
4379
4463
|
int res1 = 0 ;
|
4380
|
-
void *argp2 ;
|
4464
|
+
void *argp2 = 0 ;
|
4381
4465
|
int res2 = 0 ;
|
4382
4466
|
|
4383
4467
|
if ((argc < 1) || (argc > 1)) {
|
@@ -4473,7 +4557,7 @@ SWIGINTERN VALUE _wrap_FXScrollPane_setShape(int nargs, VALUE *args, VALUE self)
|
|
4473
4557
|
argv[ii] = args[ii-1];
|
4474
4558
|
}
|
4475
4559
|
if (argc == 2) {
|
4476
|
-
int _v;
|
4560
|
+
int _v = 0;
|
4477
4561
|
void *vptr = 0;
|
4478
4562
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollPane, 0);
|
4479
4563
|
_v = SWIG_CheckState(res);
|
@@ -4487,7 +4571,7 @@ SWIGINTERN VALUE _wrap_FXScrollPane_setShape(int nargs, VALUE *args, VALUE self)
|
|
4487
4571
|
}
|
4488
4572
|
}
|
4489
4573
|
if (argc == 2) {
|
4490
|
-
int _v;
|
4574
|
+
int _v = 0;
|
4491
4575
|
void *vptr = 0;
|
4492
4576
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollPane, 0);
|
4493
4577
|
_v = SWIG_CheckState(res);
|
@@ -4501,7 +4585,7 @@ SWIGINTERN VALUE _wrap_FXScrollPane_setShape(int nargs, VALUE *args, VALUE self)
|
|
4501
4585
|
}
|
4502
4586
|
}
|
4503
4587
|
if (argc == 2) {
|
4504
|
-
int _v;
|
4588
|
+
int _v = 0;
|
4505
4589
|
void *vptr = 0;
|
4506
4590
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXScrollPane, 0);
|
4507
4591
|
_v = SWIG_CheckState(res);
|
@@ -6469,7 +6553,7 @@ _wrap_FXMenuCaption_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
6469
6553
|
FXRegion *arg2 = 0 ;
|
6470
6554
|
void *argp1 = 0 ;
|
6471
6555
|
int res1 = 0 ;
|
6472
|
-
void *argp2 ;
|
6556
|
+
void *argp2 = 0 ;
|
6473
6557
|
int res2 = 0 ;
|
6474
6558
|
|
6475
6559
|
if ((argc < 1) || (argc > 1)) {
|
@@ -6565,7 +6649,7 @@ SWIGINTERN VALUE _wrap_FXMenuCaption_setShape(int nargs, VALUE *args, VALUE self
|
|
6565
6649
|
argv[ii] = args[ii-1];
|
6566
6650
|
}
|
6567
6651
|
if (argc == 2) {
|
6568
|
-
int _v;
|
6652
|
+
int _v = 0;
|
6569
6653
|
void *vptr = 0;
|
6570
6654
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCaption, 0);
|
6571
6655
|
_v = SWIG_CheckState(res);
|
@@ -6579,7 +6663,7 @@ SWIGINTERN VALUE _wrap_FXMenuCaption_setShape(int nargs, VALUE *args, VALUE self
|
|
6579
6663
|
}
|
6580
6664
|
}
|
6581
6665
|
if (argc == 2) {
|
6582
|
-
int _v;
|
6666
|
+
int _v = 0;
|
6583
6667
|
void *vptr = 0;
|
6584
6668
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCaption, 0);
|
6585
6669
|
_v = SWIG_CheckState(res);
|
@@ -6593,7 +6677,7 @@ SWIGINTERN VALUE _wrap_FXMenuCaption_setShape(int nargs, VALUE *args, VALUE self
|
|
6593
6677
|
}
|
6594
6678
|
}
|
6595
6679
|
if (argc == 2) {
|
6596
|
-
int _v;
|
6680
|
+
int _v = 0;
|
6597
6681
|
void *vptr = 0;
|
6598
6682
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCaption, 0);
|
6599
6683
|
_v = SWIG_CheckState(res);
|
@@ -7630,7 +7714,7 @@ _wrap_FXMenuSeparator_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
7630
7714
|
FXRegion *arg2 = 0 ;
|
7631
7715
|
void *argp1 = 0 ;
|
7632
7716
|
int res1 = 0 ;
|
7633
|
-
void *argp2 ;
|
7717
|
+
void *argp2 = 0 ;
|
7634
7718
|
int res2 = 0 ;
|
7635
7719
|
|
7636
7720
|
if ((argc < 1) || (argc > 1)) {
|
@@ -7726,7 +7810,7 @@ SWIGINTERN VALUE _wrap_FXMenuSeparator_setShape(int nargs, VALUE *args, VALUE se
|
|
7726
7810
|
argv[ii] = args[ii-1];
|
7727
7811
|
}
|
7728
7812
|
if (argc == 2) {
|
7729
|
-
int _v;
|
7813
|
+
int _v = 0;
|
7730
7814
|
void *vptr = 0;
|
7731
7815
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuSeparator, 0);
|
7732
7816
|
_v = SWIG_CheckState(res);
|
@@ -7740,7 +7824,7 @@ SWIGINTERN VALUE _wrap_FXMenuSeparator_setShape(int nargs, VALUE *args, VALUE se
|
|
7740
7824
|
}
|
7741
7825
|
}
|
7742
7826
|
if (argc == 2) {
|
7743
|
-
int _v;
|
7827
|
+
int _v = 0;
|
7744
7828
|
void *vptr = 0;
|
7745
7829
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuSeparator, 0);
|
7746
7830
|
_v = SWIG_CheckState(res);
|
@@ -7754,7 +7838,7 @@ SWIGINTERN VALUE _wrap_FXMenuSeparator_setShape(int nargs, VALUE *args, VALUE se
|
|
7754
7838
|
}
|
7755
7839
|
}
|
7756
7840
|
if (argc == 2) {
|
7757
|
-
int _v;
|
7841
|
+
int _v = 0;
|
7758
7842
|
void *vptr = 0;
|
7759
7843
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuSeparator, 0);
|
7760
7844
|
_v = SWIG_CheckState(res);
|
@@ -9280,7 +9364,7 @@ _wrap_FXMenuTitle_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
9280
9364
|
FXRegion *arg2 = 0 ;
|
9281
9365
|
void *argp1 = 0 ;
|
9282
9366
|
int res1 = 0 ;
|
9283
|
-
void *argp2 ;
|
9367
|
+
void *argp2 = 0 ;
|
9284
9368
|
int res2 = 0 ;
|
9285
9369
|
|
9286
9370
|
if ((argc < 1) || (argc > 1)) {
|
@@ -9376,7 +9460,7 @@ SWIGINTERN VALUE _wrap_FXMenuTitle_setShape(int nargs, VALUE *args, VALUE self)
|
|
9376
9460
|
argv[ii] = args[ii-1];
|
9377
9461
|
}
|
9378
9462
|
if (argc == 2) {
|
9379
|
-
int _v;
|
9463
|
+
int _v = 0;
|
9380
9464
|
void *vptr = 0;
|
9381
9465
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuTitle, 0);
|
9382
9466
|
_v = SWIG_CheckState(res);
|
@@ -9390,7 +9474,7 @@ SWIGINTERN VALUE _wrap_FXMenuTitle_setShape(int nargs, VALUE *args, VALUE self)
|
|
9390
9474
|
}
|
9391
9475
|
}
|
9392
9476
|
if (argc == 2) {
|
9393
|
-
int _v;
|
9477
|
+
int _v = 0;
|
9394
9478
|
void *vptr = 0;
|
9395
9479
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuTitle, 0);
|
9396
9480
|
_v = SWIG_CheckState(res);
|
@@ -9404,7 +9488,7 @@ SWIGINTERN VALUE _wrap_FXMenuTitle_setShape(int nargs, VALUE *args, VALUE self)
|
|
9404
9488
|
}
|
9405
9489
|
}
|
9406
9490
|
if (argc == 2) {
|
9407
|
-
int _v;
|
9491
|
+
int _v = 0;
|
9408
9492
|
void *vptr = 0;
|
9409
9493
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuTitle, 0);
|
9410
9494
|
_v = SWIG_CheckState(res);
|
@@ -10786,7 +10870,7 @@ _wrap_FXMenuCascade_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
10786
10870
|
FXRegion *arg2 = 0 ;
|
10787
10871
|
void *argp1 = 0 ;
|
10788
10872
|
int res1 = 0 ;
|
10789
|
-
void *argp2 ;
|
10873
|
+
void *argp2 = 0 ;
|
10790
10874
|
int res2 = 0 ;
|
10791
10875
|
|
10792
10876
|
if ((argc < 1) || (argc > 1)) {
|
@@ -10882,7 +10966,7 @@ SWIGINTERN VALUE _wrap_FXMenuCascade_setShape(int nargs, VALUE *args, VALUE self
|
|
10882
10966
|
argv[ii] = args[ii-1];
|
10883
10967
|
}
|
10884
10968
|
if (argc == 2) {
|
10885
|
-
int _v;
|
10969
|
+
int _v = 0;
|
10886
10970
|
void *vptr = 0;
|
10887
10971
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCascade, 0);
|
10888
10972
|
_v = SWIG_CheckState(res);
|
@@ -10896,7 +10980,7 @@ SWIGINTERN VALUE _wrap_FXMenuCascade_setShape(int nargs, VALUE *args, VALUE self
|
|
10896
10980
|
}
|
10897
10981
|
}
|
10898
10982
|
if (argc == 2) {
|
10899
|
-
int _v;
|
10983
|
+
int _v = 0;
|
10900
10984
|
void *vptr = 0;
|
10901
10985
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCascade, 0);
|
10902
10986
|
_v = SWIG_CheckState(res);
|
@@ -10910,7 +10994,7 @@ SWIGINTERN VALUE _wrap_FXMenuCascade_setShape(int nargs, VALUE *args, VALUE self
|
|
10910
10994
|
}
|
10911
10995
|
}
|
10912
10996
|
if (argc == 2) {
|
10913
|
-
int _v;
|
10997
|
+
int _v = 0;
|
10914
10998
|
void *vptr = 0;
|
10915
10999
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCascade, 0);
|
10916
11000
|
_v = SWIG_CheckState(res);
|
@@ -12252,7 +12336,7 @@ _wrap_FXMenuCommand_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
12252
12336
|
FXRegion *arg2 = 0 ;
|
12253
12337
|
void *argp1 = 0 ;
|
12254
12338
|
int res1 = 0 ;
|
12255
|
-
void *argp2 ;
|
12339
|
+
void *argp2 = 0 ;
|
12256
12340
|
int res2 = 0 ;
|
12257
12341
|
|
12258
12342
|
if ((argc < 1) || (argc > 1)) {
|
@@ -12348,7 +12432,7 @@ SWIGINTERN VALUE _wrap_FXMenuCommand_setShape(int nargs, VALUE *args, VALUE self
|
|
12348
12432
|
argv[ii] = args[ii-1];
|
12349
12433
|
}
|
12350
12434
|
if (argc == 2) {
|
12351
|
-
int _v;
|
12435
|
+
int _v = 0;
|
12352
12436
|
void *vptr = 0;
|
12353
12437
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCommand, 0);
|
12354
12438
|
_v = SWIG_CheckState(res);
|
@@ -12362,7 +12446,7 @@ SWIGINTERN VALUE _wrap_FXMenuCommand_setShape(int nargs, VALUE *args, VALUE self
|
|
12362
12446
|
}
|
12363
12447
|
}
|
12364
12448
|
if (argc == 2) {
|
12365
|
-
int _v;
|
12449
|
+
int _v = 0;
|
12366
12450
|
void *vptr = 0;
|
12367
12451
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCommand, 0);
|
12368
12452
|
_v = SWIG_CheckState(res);
|
@@ -12376,7 +12460,7 @@ SWIGINTERN VALUE _wrap_FXMenuCommand_setShape(int nargs, VALUE *args, VALUE self
|
|
12376
12460
|
}
|
12377
12461
|
}
|
12378
12462
|
if (argc == 2) {
|
12379
|
-
int _v;
|
12463
|
+
int _v = 0;
|
12380
12464
|
void *vptr = 0;
|
12381
12465
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCommand, 0);
|
12382
12466
|
_v = SWIG_CheckState(res);
|
@@ -12897,7 +12981,7 @@ SWIGINTERN VALUE _wrap_new_FXMenuBar(int nargs, VALUE *args, VALUE self) {
|
|
12897
12981
|
argv[ii] = args[ii];
|
12898
12982
|
}
|
12899
12983
|
if ((argc >= 2) && (argc <= 13)) {
|
12900
|
-
int _v;
|
12984
|
+
int _v = 0;
|
12901
12985
|
void *vptr = 0;
|
12902
12986
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
|
12903
12987
|
_v = SWIG_CheckState(res);
|
@@ -12999,7 +13083,7 @@ SWIGINTERN VALUE _wrap_new_FXMenuBar(int nargs, VALUE *args, VALUE self) {
|
|
12999
13083
|
}
|
13000
13084
|
}
|
13001
13085
|
if ((argc >= 2) && (argc <= 12)) {
|
13002
|
-
int _v;
|
13086
|
+
int _v = 0;
|
13003
13087
|
void *vptr = 0;
|
13004
13088
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXComposite, 0);
|
13005
13089
|
_v = SWIG_CheckState(res);
|
@@ -13910,7 +13994,7 @@ _wrap_FXMenuBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
13910
13994
|
FXRegion *arg2 = 0 ;
|
13911
13995
|
void *argp1 = 0 ;
|
13912
13996
|
int res1 = 0 ;
|
13913
|
-
void *argp2 ;
|
13997
|
+
void *argp2 = 0 ;
|
13914
13998
|
int res2 = 0 ;
|
13915
13999
|
|
13916
14000
|
if ((argc < 1) || (argc > 1)) {
|
@@ -14006,7 +14090,7 @@ SWIGINTERN VALUE _wrap_FXMenuBar_setShape(int nargs, VALUE *args, VALUE self) {
|
|
14006
14090
|
argv[ii] = args[ii-1];
|
14007
14091
|
}
|
14008
14092
|
if (argc == 2) {
|
14009
|
-
int _v;
|
14093
|
+
int _v = 0;
|
14010
14094
|
void *vptr = 0;
|
14011
14095
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuBar, 0);
|
14012
14096
|
_v = SWIG_CheckState(res);
|
@@ -14020,7 +14104,7 @@ SWIGINTERN VALUE _wrap_FXMenuBar_setShape(int nargs, VALUE *args, VALUE self) {
|
|
14020
14104
|
}
|
14021
14105
|
}
|
14022
14106
|
if (argc == 2) {
|
14023
|
-
int _v;
|
14107
|
+
int _v = 0;
|
14024
14108
|
void *vptr = 0;
|
14025
14109
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuBar, 0);
|
14026
14110
|
_v = SWIG_CheckState(res);
|
@@ -14034,7 +14118,7 @@ SWIGINTERN VALUE _wrap_FXMenuBar_setShape(int nargs, VALUE *args, VALUE self) {
|
|
14034
14118
|
}
|
14035
14119
|
}
|
14036
14120
|
if (argc == 2) {
|
14037
|
-
int _v;
|
14121
|
+
int _v = 0;
|
14038
14122
|
void *vptr = 0;
|
14039
14123
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuBar, 0);
|
14040
14124
|
_v = SWIG_CheckState(res);
|
@@ -14169,7 +14253,7 @@ SWIGINTERN VALUE _wrap_FXMenuBar_dock(int nargs, VALUE *args, VALUE self) {
|
|
14169
14253
|
argv[ii] = args[ii-1];
|
14170
14254
|
}
|
14171
14255
|
if ((argc >= 2) && (argc <= 4)) {
|
14172
|
-
int _v;
|
14256
|
+
int _v = 0;
|
14173
14257
|
void *vptr = 0;
|
14174
14258
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuBar, 0);
|
14175
14259
|
_v = SWIG_CheckState(res);
|
@@ -14199,7 +14283,7 @@ SWIGINTERN VALUE _wrap_FXMenuBar_dock(int nargs, VALUE *args, VALUE self) {
|
|
14199
14283
|
}
|
14200
14284
|
}
|
14201
14285
|
if (argc == 5) {
|
14202
|
-
int _v;
|
14286
|
+
int _v = 0;
|
14203
14287
|
void *vptr = 0;
|
14204
14288
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuBar, 0);
|
14205
14289
|
_v = SWIG_CheckState(res);
|
@@ -15769,7 +15853,7 @@ _wrap_FXMenuCheck_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
15769
15853
|
FXRegion *arg2 = 0 ;
|
15770
15854
|
void *argp1 = 0 ;
|
15771
15855
|
int res1 = 0 ;
|
15772
|
-
void *argp2 ;
|
15856
|
+
void *argp2 = 0 ;
|
15773
15857
|
int res2 = 0 ;
|
15774
15858
|
|
15775
15859
|
if ((argc < 1) || (argc > 1)) {
|
@@ -15865,7 +15949,7 @@ SWIGINTERN VALUE _wrap_FXMenuCheck_setShape(int nargs, VALUE *args, VALUE self)
|
|
15865
15949
|
argv[ii] = args[ii-1];
|
15866
15950
|
}
|
15867
15951
|
if (argc == 2) {
|
15868
|
-
int _v;
|
15952
|
+
int _v = 0;
|
15869
15953
|
void *vptr = 0;
|
15870
15954
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCheck, 0);
|
15871
15955
|
_v = SWIG_CheckState(res);
|
@@ -15879,7 +15963,7 @@ SWIGINTERN VALUE _wrap_FXMenuCheck_setShape(int nargs, VALUE *args, VALUE self)
|
|
15879
15963
|
}
|
15880
15964
|
}
|
15881
15965
|
if (argc == 2) {
|
15882
|
-
int _v;
|
15966
|
+
int _v = 0;
|
15883
15967
|
void *vptr = 0;
|
15884
15968
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCheck, 0);
|
15885
15969
|
_v = SWIG_CheckState(res);
|
@@ -15893,7 +15977,7 @@ SWIGINTERN VALUE _wrap_FXMenuCheck_setShape(int nargs, VALUE *args, VALUE self)
|
|
15893
15977
|
}
|
15894
15978
|
}
|
15895
15979
|
if (argc == 2) {
|
15896
|
-
int _v;
|
15980
|
+
int _v = 0;
|
15897
15981
|
void *vptr = 0;
|
15898
15982
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuCheck, 0);
|
15899
15983
|
_v = SWIG_CheckState(res);
|
@@ -17445,7 +17529,7 @@ _wrap_FXMenuRadio_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
17445
17529
|
FXRegion *arg2 = 0 ;
|
17446
17530
|
void *argp1 = 0 ;
|
17447
17531
|
int res1 = 0 ;
|
17448
|
-
void *argp2 ;
|
17532
|
+
void *argp2 = 0 ;
|
17449
17533
|
int res2 = 0 ;
|
17450
17534
|
|
17451
17535
|
if ((argc < 1) || (argc > 1)) {
|
@@ -17541,7 +17625,7 @@ SWIGINTERN VALUE _wrap_FXMenuRadio_setShape(int nargs, VALUE *args, VALUE self)
|
|
17541
17625
|
argv[ii] = args[ii-1];
|
17542
17626
|
}
|
17543
17627
|
if (argc == 2) {
|
17544
|
-
int _v;
|
17628
|
+
int _v = 0;
|
17545
17629
|
void *vptr = 0;
|
17546
17630
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuRadio, 0);
|
17547
17631
|
_v = SWIG_CheckState(res);
|
@@ -17555,7 +17639,7 @@ SWIGINTERN VALUE _wrap_FXMenuRadio_setShape(int nargs, VALUE *args, VALUE self)
|
|
17555
17639
|
}
|
17556
17640
|
}
|
17557
17641
|
if (argc == 2) {
|
17558
|
-
int _v;
|
17642
|
+
int _v = 0;
|
17559
17643
|
void *vptr = 0;
|
17560
17644
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuRadio, 0);
|
17561
17645
|
_v = SWIG_CheckState(res);
|
@@ -17569,7 +17653,7 @@ SWIGINTERN VALUE _wrap_FXMenuRadio_setShape(int nargs, VALUE *args, VALUE self)
|
|
17569
17653
|
}
|
17570
17654
|
}
|
17571
17655
|
if (argc == 2) {
|
17572
|
-
int _v;
|
17656
|
+
int _v = 0;
|
17573
17657
|
void *vptr = 0;
|
17574
17658
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXMenuRadio, 0);
|
17575
17659
|
_v = SWIG_CheckState(res);
|
@@ -17617,1423 +17701,1423 @@ fail:
|
|
17617
17701
|
|
17618
17702
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
17619
17703
|
|
17620
|
-
static void *
|
17621
|
-
return (void *)((
|
17622
|
-
}
|
17623
|
-
static void *_p_FXMenuBarTo_p_FXToolBar(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17624
|
-
return (void *)((FXToolBar *) ((FXMenuBar *) x));
|
17625
|
-
}
|
17626
|
-
static void *_p_FXDriveBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17627
|
-
return (void *)((FXComposite *) (FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
17704
|
+
static void *_p_FX4SplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17705
|
+
return (void *)((FXComposite *) ((FX4Splitter *) x));
|
17628
17706
|
}
|
17629
|
-
static void *
|
17630
|
-
return (void *)((FXComposite *) (
|
17707
|
+
static void *_p_FXColorSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17708
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
|
17631
17709
|
}
|
17632
|
-
static void *
|
17633
|
-
return (void *)((FXComposite *) (FXPacker *)
|
17710
|
+
static void *_p_FXComboBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17711
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXComboBox *) x));
|
17634
17712
|
}
|
17635
|
-
static void *
|
17636
|
-
return (void *)((FXComposite *) (FXPacker *)(
|
17713
|
+
static void *_p_FXDirBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17714
|
+
return (void *)((FXComposite *) (FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
17637
17715
|
}
|
17638
|
-
static void *
|
17639
|
-
return (void *)((FXComposite *) (
|
17716
|
+
static void *_p_FXDirSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17717
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
|
17640
17718
|
}
|
17641
|
-
static void *
|
17642
|
-
return (void *)((FXComposite *) (FXPacker *)
|
17719
|
+
static void *_p_FXDockBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17720
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXDockBar *) x));
|
17643
17721
|
}
|
17644
|
-
static void *
|
17645
|
-
return (void *)((FXComposite *) (FXPacker *) ((
|
17722
|
+
static void *_p_FXDockSiteTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17723
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
|
17646
17724
|
}
|
17647
|
-
static void *
|
17648
|
-
return (void *)((FXComposite *)
|
17725
|
+
static void *_p_FXDriveBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17726
|
+
return (void *)((FXComposite *) (FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
17649
17727
|
}
|
17650
|
-
static void *
|
17651
|
-
return (void *)((FXComposite *) (FXPacker *)
|
17728
|
+
static void *_p_FXFileSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17729
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXFileSelector *) x));
|
17652
17730
|
}
|
17653
|
-
static void *
|
17654
|
-
return (void *)((FXComposite *)
|
17731
|
+
static void *_p_FXFontSelectorTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17732
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXFontSelector *) x));
|
17655
17733
|
}
|
17656
|
-
static void *
|
17657
|
-
return (void *)((FXComposite *) (
|
17734
|
+
static void *_p_FXGroupBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17735
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
|
17658
17736
|
}
|
17659
|
-
static void *
|
17660
|
-
return (void *)((FXComposite *) (
|
17737
|
+
static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17738
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
|
17661
17739
|
}
|
17662
|
-
static void *
|
17663
|
-
return (void *)((FXComposite *)
|
17740
|
+
static void *_p_FXImageViewTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17741
|
+
return (void *)((FXComposite *) (FXScrollArea *) ((FXImageView *) x));
|
17664
17742
|
}
|
17665
|
-
static void *
|
17666
|
-
return (void *)((FXComposite *) (
|
17743
|
+
static void *_p_FXListBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17744
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXListBox *) x));
|
17667
17745
|
}
|
17668
17746
|
static void *_p_FXMainWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17669
17747
|
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
17670
17748
|
}
|
17671
|
-
static void *
|
17672
|
-
return (void *)((FXComposite *) (
|
17673
|
-
}
|
17674
|
-
static void *_p_FXComboBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17675
|
-
return (void *)((FXComposite *) (FXPacker *) ((FXComboBox *) x));
|
17749
|
+
static void *_p_FXMatrixTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17750
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
|
17676
17751
|
}
|
17677
|
-
static void *
|
17678
|
-
return (void *)((FXComposite *) (FXPacker *) ((
|
17752
|
+
static void *_p_FXMenuBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17753
|
+
return (void *)((FXComposite *) (FXPacker *)(FXDockBar *)(FXToolBar *) ((FXMenuBar *) x));
|
17679
17754
|
}
|
17680
|
-
static void *
|
17681
|
-
return (void *)((FXComposite *) (
|
17755
|
+
static void *_p_FXMenuPaneTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17756
|
+
return (void *)((FXComposite *) (FXShell *)(FXPopup *) ((FXMenuPane *) x));
|
17682
17757
|
}
|
17683
|
-
static void *
|
17684
|
-
return (void *)((FXComposite *) ((
|
17758
|
+
static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17759
|
+
return (void *)((FXComposite *) ((FXPacker *) x));
|
17685
17760
|
}
|
17686
|
-
static void *
|
17687
|
-
return (void *)((FXComposite *)
|
17761
|
+
static void *_p_FXPopupTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17762
|
+
return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
|
17688
17763
|
}
|
17689
17764
|
static void *_p_FXRealSpinnerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17690
17765
|
return (void *)((FXComposite *) (FXPacker *) ((FXRealSpinner *) x));
|
17691
17766
|
}
|
17692
|
-
static void *
|
17693
|
-
return (void *)((FXComposite *)
|
17694
|
-
}
|
17695
|
-
static void *_p_FXPackerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17696
|
-
return (void *)((FXComposite *) ((FXPacker *) x));
|
17697
|
-
}
|
17698
|
-
static void *_p_FXDirBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17699
|
-
return (void *)((FXComposite *) (FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
17767
|
+
static void *_p_FXRootWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17768
|
+
return (void *)((FXComposite *) ((FXRootWindow *) x));
|
17700
17769
|
}
|
17701
|
-
static void *
|
17702
|
-
return (void *)((FXComposite *) (
|
17770
|
+
static void *_p_FXRulerViewTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17771
|
+
return (void *)((FXComposite *) (FXScrollArea *) ((FXRulerView *) x));
|
17703
17772
|
}
|
17704
|
-
static void *
|
17705
|
-
return (void *)((FXComposite *)
|
17773
|
+
static void *_p_FXScrollAreaTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17774
|
+
return (void *)((FXComposite *) ((FXScrollArea *) x));
|
17706
17775
|
}
|
17707
|
-
static void *
|
17708
|
-
return (void *)((FXComposite *) (
|
17776
|
+
static void *_p_FXScrollPaneTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17777
|
+
return (void *)((FXComposite *) (FXShell *)(FXPopup *)(FXMenuPane *) ((FXScrollPane *) x));
|
17709
17778
|
}
|
17710
|
-
static void *
|
17711
|
-
return (void *)((FXComposite *) (
|
17779
|
+
static void *_p_FXScrollWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17780
|
+
return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
|
17712
17781
|
}
|
17713
|
-
static void *
|
17714
|
-
return (void *)((FXComposite *)
|
17782
|
+
static void *_p_FXShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17783
|
+
return (void *)((FXComposite *) ((FXShell *) x));
|
17715
17784
|
}
|
17716
17785
|
static void *_p_FXShutterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17717
17786
|
return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
17718
17787
|
}
|
17719
|
-
static void *
|
17720
|
-
return (void *)((FXComposite *) (FXPacker *) ((
|
17788
|
+
static void *_p_FXShutterItemTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17789
|
+
return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
17721
17790
|
}
|
17722
|
-
static void *
|
17723
|
-
return (void *)((FXComposite *) (
|
17791
|
+
static void *_p_FXSpinnerTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17792
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXSpinner *) x));
|
17724
17793
|
}
|
17725
|
-
static void *
|
17726
|
-
return (void *)((FXComposite *) (
|
17794
|
+
static void *_p_FXSplashWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17795
|
+
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
17727
17796
|
}
|
17728
|
-
static void *
|
17729
|
-
return (void *)((FXComposite *)
|
17797
|
+
static void *_p_FXSplitterTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17798
|
+
return (void *)((FXComposite *) ((FXSplitter *) x));
|
17730
17799
|
}
|
17731
|
-
static void *
|
17732
|
-
return (void *)((FXComposite *) (FXPacker *) ((
|
17800
|
+
static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17801
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
|
17733
17802
|
}
|
17734
|
-
static void *
|
17735
|
-
return (void *)((FXComposite *) (FXPacker *)(
|
17803
|
+
static void *_p_FXStatusBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17804
|
+
return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
17736
17805
|
}
|
17737
|
-
static void *
|
17738
|
-
return (void *)((FXComposite *) (FXPacker *) ((
|
17806
|
+
static void *_p_FXSwitcherTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17807
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
|
17739
17808
|
}
|
17740
17809
|
static void *_p_FXTabBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17741
17810
|
return (void *)((FXComposite *) (FXPacker *) ((FXTabBar *) x));
|
17742
17811
|
}
|
17743
|
-
static void *
|
17744
|
-
return (void *)((FXComposite *) (
|
17745
|
-
}
|
17746
|
-
static void *_p_FXSpringTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17747
|
-
return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
|
17812
|
+
static void *_p_FXTabBookTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17813
|
+
return (void *)((FXComposite *) (FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
17748
17814
|
}
|
17749
|
-
static void *
|
17750
|
-
return (void *)((FXComposite *) (
|
17815
|
+
static void *_p_FXToolBarTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17816
|
+
return (void *)((FXComposite *) (FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
17751
17817
|
}
|
17752
17818
|
static void *_p_FXToolBarShellTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17753
17819
|
return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
17754
17820
|
}
|
17755
|
-
static void *
|
17756
|
-
return (void *)((FXShell *)
|
17821
|
+
static void *_p_FXToolTipTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17822
|
+
return (void *)((FXComposite *) (FXShell *) ((FXToolTip *) x));
|
17757
17823
|
}
|
17758
|
-
static void *
|
17759
|
-
return (void *)((FXShell *)
|
17824
|
+
static void *_p_FXTopWindowTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17825
|
+
return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
|
17760
17826
|
}
|
17761
|
-
static void *
|
17762
|
-
return (void *)((
|
17827
|
+
static void *_p_FXTreeListBoxTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17828
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXTreeListBox *) x));
|
17763
17829
|
}
|
17764
|
-
static void *
|
17765
|
-
return (void *)((
|
17830
|
+
static void *_p_FXVerticalFrameTo_p_FXComposite(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17831
|
+
return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
|
17766
17832
|
}
|
17767
|
-
static void *
|
17768
|
-
return (void *)((
|
17833
|
+
static void *_p_FXMenuBarTo_p_FXDockBar(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17834
|
+
return (void *)((FXDockBar *) (FXToolBar *) ((FXMenuBar *) x));
|
17769
17835
|
}
|
17770
|
-
static void *
|
17771
|
-
return (void *)((
|
17836
|
+
static void *_p_FXToolBarTo_p_FXDockBar(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17837
|
+
return (void *)((FXDockBar *) ((FXToolBar *) x));
|
17772
17838
|
}
|
17773
|
-
static void *
|
17774
|
-
return (void *)((
|
17839
|
+
static void *_p_FX4SplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17840
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
17775
17841
|
}
|
17776
|
-
static void *
|
17777
|
-
return (void *)((
|
17842
|
+
static void *_p_FX7SegmentTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17843
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
17778
17844
|
}
|
17779
|
-
static void *
|
17780
|
-
return (void *)((
|
17845
|
+
static void *_p_FXArrowButtonTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17846
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
17781
17847
|
}
|
17782
|
-
static void *
|
17783
|
-
return (void *)((
|
17848
|
+
static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17849
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
17784
17850
|
}
|
17785
|
-
static void *
|
17786
|
-
return (void *)((
|
17851
|
+
static void *_p_FXCanvasTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17852
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXCanvas *) x));
|
17787
17853
|
}
|
17788
|
-
static void *
|
17789
|
-
return (void *)((
|
17854
|
+
static void *_p_FXColorBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17855
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
17790
17856
|
}
|
17791
|
-
static void *
|
17792
|
-
return (void *)((
|
17857
|
+
static void *_p_FXColorRingTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17858
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
17793
17859
|
}
|
17794
|
-
static void *
|
17795
|
-
return (void *)((
|
17860
|
+
static void *_p_FXColorSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17861
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
17796
17862
|
}
|
17797
|
-
static void *
|
17798
|
-
return (void *)((
|
17863
|
+
static void *_p_FXColorWellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17864
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
17799
17865
|
}
|
17800
|
-
static void *
|
17801
|
-
return (void *)((
|
17866
|
+
static void *_p_FXColorWheelTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17867
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
17802
17868
|
}
|
17803
|
-
static void *
|
17804
|
-
return (void *)((FXWindow *) (
|
17869
|
+
static void *_p_FXComboBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17870
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
17805
17871
|
}
|
17806
|
-
static void *
|
17807
|
-
return (void *)((
|
17872
|
+
static void *_p_FXCompositeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17873
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
|
17808
17874
|
}
|
17809
|
-
static void *
|
17810
|
-
return (void *)((
|
17875
|
+
static void *_p_FXDialTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17876
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDial *) x));
|
17811
17877
|
}
|
17812
|
-
static void *
|
17813
|
-
return (void *)((
|
17878
|
+
static void *_p_FXDirBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17879
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
17814
17880
|
}
|
17815
|
-
static void *
|
17816
|
-
return (void *)((FXWindow *)
|
17881
|
+
static void *_p_FXDirSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17882
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
17817
17883
|
}
|
17818
|
-
static void *
|
17819
|
-
return (void *)((FXWindow *) (
|
17884
|
+
static void *_p_FXDockBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17885
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
17820
17886
|
}
|
17821
|
-
static void *
|
17822
|
-
return (void *)((
|
17887
|
+
static void *_p_FXDockHandlerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17888
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
17823
17889
|
}
|
17824
|
-
static void *
|
17825
|
-
return (void *)((
|
17890
|
+
static void *_p_FXDockSiteTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17891
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
17826
17892
|
}
|
17827
|
-
static void *
|
17828
|
-
return (void *)((
|
17893
|
+
static void *_p_FXDockTitleTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17894
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
17829
17895
|
}
|
17830
|
-
static void *
|
17831
|
-
return (void *)((
|
17896
|
+
static void *_p_FXDragCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17897
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXDragCorner *) x));
|
17832
17898
|
}
|
17833
|
-
static void *
|
17834
|
-
return (void *)((
|
17899
|
+
static void *_p_FXDriveBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17900
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
17835
17901
|
}
|
17836
|
-
static void *
|
17837
|
-
return (void *)((
|
17902
|
+
static void *_p_FXFileSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17903
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
17838
17904
|
}
|
17839
|
-
static void *
|
17840
|
-
return (void *)((
|
17905
|
+
static void *_p_FXFontSelectorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17906
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
17841
17907
|
}
|
17842
|
-
static void *
|
17843
|
-
return (void *)((
|
17908
|
+
static void *_p_FXFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17909
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
|
17844
17910
|
}
|
17845
|
-
static void *
|
17846
|
-
return (void *)((
|
17911
|
+
static void *_p_FXGradientBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17912
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
17847
17913
|
}
|
17848
|
-
static void *
|
17849
|
-
return (void *)((
|
17914
|
+
static void *_p_FXGroupBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17915
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
17850
17916
|
}
|
17851
|
-
static void *
|
17852
|
-
return (void *)((
|
17917
|
+
static void *_p_FXHeaderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17918
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
|
17853
17919
|
}
|
17854
|
-
static void *
|
17855
|
-
return (void *)((FXWindow *) (
|
17920
|
+
static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17921
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
17856
17922
|
}
|
17857
|
-
static void *
|
17858
|
-
return (void *)((FXWindow *)
|
17923
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17924
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
17859
17925
|
}
|
17860
|
-
static void *
|
17861
|
-
return (void *)((
|
17926
|
+
static void *_p_FXImageFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17927
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
17862
17928
|
}
|
17863
|
-
static void *
|
17864
|
-
return (void *)((
|
17929
|
+
static void *_p_FXImageViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17930
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
17865
17931
|
}
|
17866
|
-
static void *
|
17867
|
-
return (void *)((
|
17932
|
+
static void *_p_FXKnobTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17933
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
|
17868
17934
|
}
|
17869
|
-
static void *
|
17870
|
-
return (void *)((FXWindow *)
|
17935
|
+
static void *_p_FXListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17936
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
17871
17937
|
}
|
17872
|
-
static void *
|
17873
|
-
return (void *)((FXWindow *) (
|
17938
|
+
static void *_p_FXMainWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17939
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
17874
17940
|
}
|
17875
|
-
static void *
|
17876
|
-
return (void *)((FXWindow *) (
|
17941
|
+
static void *_p_FXMatrixTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17942
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
17877
17943
|
}
|
17878
|
-
static void *
|
17879
|
-
return (void *)((FXWindow *) (
|
17944
|
+
static void *_p_FXMenuBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17945
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *)(FXToolBar *) ((FXMenuBar *) x));
|
17880
17946
|
}
|
17881
|
-
static void *
|
17882
|
-
return (void *)((
|
17947
|
+
static void *_p_FXMenuCaptionTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17948
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXMenuCaption *) x));
|
17883
17949
|
}
|
17884
|
-
static void *
|
17885
|
-
return (void *)((
|
17950
|
+
static void *_p_FXMenuCascadeTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17951
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
17886
17952
|
}
|
17887
|
-
static void *
|
17888
|
-
return (void *)((
|
17953
|
+
static void *_p_FXMenuCheckTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17954
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *)(FXMenuCommand *) ((FXMenuCheck *) x));
|
17889
17955
|
}
|
17890
|
-
static void *
|
17891
|
-
return (void *)((
|
17956
|
+
static void *_p_FXMenuCommandTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17957
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
17892
17958
|
}
|
17893
|
-
static void *
|
17894
|
-
return (void *)((FXWindow *) (
|
17959
|
+
static void *_p_FXMenuPaneTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17960
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXPopup *) ((FXMenuPane *) x));
|
17895
17961
|
}
|
17896
|
-
static void *
|
17897
|
-
return (void *)((
|
17962
|
+
static void *_p_FXMenuRadioTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17963
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *)(FXMenuCommand *) ((FXMenuRadio *) x));
|
17898
17964
|
}
|
17899
|
-
static void *
|
17900
|
-
return (void *)((
|
17965
|
+
static void *_p_FXMenuSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17966
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXMenuSeparator *) x));
|
17901
17967
|
}
|
17902
|
-
static void *
|
17903
|
-
return (void *)((FXWindow *)
|
17968
|
+
static void *_p_FXMenuTitleTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17969
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuTitle *) x));
|
17904
17970
|
}
|
17905
|
-
static void *
|
17906
|
-
return (void *)((
|
17971
|
+
static void *_p_FXPackerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17972
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXPacker *) x));
|
17907
17973
|
}
|
17908
|
-
static void *
|
17909
|
-
return (void *)((
|
17974
|
+
static void *_p_FXPopupTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17975
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
17910
17976
|
}
|
17911
|
-
static void *
|
17912
|
-
return (void *)((FXWindow *)
|
17977
|
+
static void *_p_FXProgressBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17978
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
17913
17979
|
}
|
17914
|
-
static void *
|
17915
|
-
return (void *)((
|
17980
|
+
static void *_p_FXRealSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17981
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
17916
17982
|
}
|
17917
|
-
static void *
|
17918
|
-
return (void *)((FXWindow *)
|
17983
|
+
static void *_p_FXRealSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17984
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
17919
17985
|
}
|
17920
|
-
static void *
|
17921
|
-
return (void *)((
|
17986
|
+
static void *_p_FXRootWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17987
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
17922
17988
|
}
|
17923
|
-
static void *
|
17924
|
-
return (void *)((
|
17989
|
+
static void *_p_FXRulerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17990
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
|
17925
17991
|
}
|
17926
|
-
static void *
|
17927
|
-
return (void *)((
|
17992
|
+
static void *_p_FXRulerViewTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17993
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
17928
17994
|
}
|
17929
|
-
static void *
|
17930
|
-
return (void *)((
|
17995
|
+
static void *_p_FXScrollAreaTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17996
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
17931
17997
|
}
|
17932
|
-
static void *
|
17933
|
-
return (void *)((
|
17998
|
+
static void *_p_FXScrollBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
17999
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXScrollBar *) x));
|
17934
18000
|
}
|
17935
|
-
static void *
|
17936
|
-
return (void *)((
|
18001
|
+
static void *_p_FXScrollCornerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18002
|
+
return (void *)((FXDrawable *) (FXWindow *) ((FXScrollCorner *) x));
|
17937
18003
|
}
|
17938
|
-
static void *
|
17939
|
-
return (void *)((
|
18004
|
+
static void *_p_FXScrollPaneTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18005
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXPopup *)(FXMenuPane *) ((FXScrollPane *) x));
|
17940
18006
|
}
|
17941
|
-
static void *
|
17942
|
-
return (void *)((
|
18007
|
+
static void *_p_FXScrollWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18008
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
17943
18009
|
}
|
17944
|
-
static void *
|
17945
|
-
return (void *)((FXWindow *)
|
18010
|
+
static void *_p_FXSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18011
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
17946
18012
|
}
|
17947
|
-
static void *
|
17948
|
-
return (void *)((
|
18013
|
+
static void *_p_FXShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18014
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXShell *) x));
|
17949
18015
|
}
|
17950
|
-
static void *
|
17951
|
-
return (void *)((
|
18016
|
+
static void *_p_FXShutterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18017
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
17952
18018
|
}
|
17953
|
-
static void *
|
17954
|
-
return (void *)((
|
18019
|
+
static void *_p_FXShutterItemTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18020
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
17955
18021
|
}
|
17956
|
-
static void *
|
17957
|
-
return (void *)((
|
18022
|
+
static void *_p_FXSliderTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18023
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSlider *) x));
|
17958
18024
|
}
|
17959
|
-
static void *
|
17960
|
-
return (void *)((
|
18025
|
+
static void *_p_FXSpinnerTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18026
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
17961
18027
|
}
|
17962
|
-
static void *
|
17963
|
-
return (void *)((
|
18028
|
+
static void *_p_FXSplashWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18029
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
17964
18030
|
}
|
17965
|
-
static void *
|
17966
|
-
return (void *)((
|
18031
|
+
static void *_p_FXSplitterTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18032
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
17967
18033
|
}
|
17968
|
-
static void *
|
17969
|
-
return (void *)((
|
18034
|
+
static void *_p_FXSpringTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18035
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
17970
18036
|
}
|
17971
|
-
static void *
|
17972
|
-
return (void *)((
|
18037
|
+
static void *_p_FXStatusBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18038
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
17973
18039
|
}
|
17974
|
-
static void *
|
17975
|
-
return (void *)((
|
18040
|
+
static void *_p_FXStatusLineTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18041
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
17976
18042
|
}
|
17977
|
-
static void *
|
17978
|
-
return (void *)((
|
18043
|
+
static void *_p_FXSwitcherTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18044
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
17979
18045
|
}
|
17980
|
-
static void *
|
17981
|
-
return (void *)((
|
18046
|
+
static void *_p_FXTabBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18047
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
18048
|
+
}
|
18049
|
+
static void *_p_FXTabBookTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18050
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
18051
|
+
}
|
18052
|
+
static void *_p_FXTextFieldTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18053
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXTextField *) x));
|
18054
|
+
}
|
18055
|
+
static void *_p_FXToolBarTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18056
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
18057
|
+
}
|
18058
|
+
static void *_p_FXToolBarGripTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18059
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
18060
|
+
}
|
18061
|
+
static void *_p_FXToolBarShellTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18062
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
17982
18063
|
}
|
17983
|
-
static void *
|
17984
|
-
return (void *)((
|
18064
|
+
static void *_p_FXToolBarTabTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18065
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
17985
18066
|
}
|
17986
|
-
static void *
|
17987
|
-
return (void *)((FXWindow *)
|
18067
|
+
static void *_p_FXToolTipTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18068
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
17988
18069
|
}
|
17989
|
-
static void *
|
17990
|
-
return (void *)((FXWindow *) (
|
18070
|
+
static void *_p_FXTopWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18071
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
17991
18072
|
}
|
17992
|
-
static void *
|
17993
|
-
return (void *)((FXWindow *) (
|
18073
|
+
static void *_p_FXTreeListBoxTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18074
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
17994
18075
|
}
|
17995
|
-
static void *
|
17996
|
-
return (void *)((
|
18076
|
+
static void *_p_FXVerticalFrameTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18077
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
17997
18078
|
}
|
17998
|
-
static void *
|
17999
|
-
return (void *)((
|
18079
|
+
static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18080
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
18000
18081
|
}
|
18001
|
-
static void *
|
18002
|
-
return (void *)((
|
18082
|
+
static void *_p_FXWindowTo_p_FXDrawable(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18083
|
+
return (void *)((FXDrawable *) ((FXWindow *) x));
|
18003
18084
|
}
|
18004
|
-
static void *
|
18005
|
-
return (void *)((
|
18085
|
+
static void *_p_FX4SplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18086
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
18006
18087
|
}
|
18007
|
-
static void *
|
18008
|
-
return (void *)((
|
18088
|
+
static void *_p_FX7SegmentTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18089
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
18009
18090
|
}
|
18010
|
-
static void *
|
18011
|
-
return (void *)((
|
18091
|
+
static void *_p_FXArrowButtonTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18092
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
18012
18093
|
}
|
18013
|
-
static void *
|
18014
|
-
return (void *)((
|
18094
|
+
static void *_p_FXBitmapFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18095
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
18015
18096
|
}
|
18016
|
-
static void *
|
18017
|
-
return (void *)((
|
18097
|
+
static void *_p_FXCURCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18098
|
+
return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
|
18018
18099
|
}
|
18019
|
-
static void *
|
18020
|
-
return (void *)((
|
18100
|
+
static void *_p_FXCanvasTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18101
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
|
18021
18102
|
}
|
18022
|
-
static void *
|
18023
|
-
return (void *)((
|
18103
|
+
static void *_p_FXColorBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18104
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
18024
18105
|
}
|
18025
|
-
static void *
|
18026
|
-
return (void *)((
|
18106
|
+
static void *_p_FXColorRingTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18107
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
18027
18108
|
}
|
18028
|
-
static void *
|
18029
|
-
return (void *)((
|
18109
|
+
static void *_p_FXColorSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18110
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
18030
18111
|
}
|
18031
|
-
static void *
|
18032
|
-
return (void *)((
|
18112
|
+
static void *_p_FXColorWellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18113
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
18033
18114
|
}
|
18034
|
-
static void *
|
18035
|
-
return (void *)((
|
18115
|
+
static void *_p_FXColorWheelTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18116
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
18036
18117
|
}
|
18037
|
-
static void *
|
18038
|
-
return (void *)((
|
18118
|
+
static void *_p_FXComboBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18119
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
18039
18120
|
}
|
18040
|
-
static void *
|
18041
|
-
return (void *)((
|
18121
|
+
static void *_p_FXCompositeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18122
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
18042
18123
|
}
|
18043
|
-
static void *
|
18044
|
-
return (void *)((
|
18124
|
+
static void *_p_FXCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18125
|
+
return (void *)((FXId *) ((FXCursor *) x));
|
18045
18126
|
}
|
18046
|
-
static void *
|
18047
|
-
return (void *)((
|
18127
|
+
static void *_p_FXDialTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18128
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
18048
18129
|
}
|
18049
|
-
static void *
|
18050
|
-
return (void *)((
|
18130
|
+
static void *_p_FXDirBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18131
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
18051
18132
|
}
|
18052
|
-
static void *
|
18053
|
-
return (void *)((
|
18133
|
+
static void *_p_FXDirSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18134
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
18054
18135
|
}
|
18055
|
-
static void *
|
18056
|
-
return (void *)((
|
18136
|
+
static void *_p_FXDockBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18137
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
18057
18138
|
}
|
18058
|
-
static void *
|
18059
|
-
return (void *)((
|
18139
|
+
static void *_p_FXDockHandlerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18140
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
18060
18141
|
}
|
18061
|
-
static void *
|
18062
|
-
return (void *)((
|
18142
|
+
static void *_p_FXDockSiteTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18143
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
18063
18144
|
}
|
18064
|
-
static void *
|
18065
|
-
return (void *)((
|
18145
|
+
static void *_p_FXDockTitleTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18146
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
18066
18147
|
}
|
18067
|
-
static void *
|
18068
|
-
return (void *)((
|
18148
|
+
static void *_p_FXDragCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18149
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
|
18069
18150
|
}
|
18070
|
-
static void *
|
18071
|
-
return (void *)((
|
18151
|
+
static void *_p_FXDrawableTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18152
|
+
return (void *)((FXId *) ((FXDrawable *) x));
|
18072
18153
|
}
|
18073
|
-
static void *
|
18074
|
-
return (void *)((
|
18154
|
+
static void *_p_FXDriveBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18155
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
18075
18156
|
}
|
18076
|
-
static void *
|
18077
|
-
return (void *)((
|
18157
|
+
static void *_p_FXFileSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18158
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
18078
18159
|
}
|
18079
|
-
static void *
|
18080
|
-
return (void *)((
|
18160
|
+
static void *_p_FXFontTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18161
|
+
return (void *)((FXId *) ((FXFont *) x));
|
18081
18162
|
}
|
18082
|
-
static void *
|
18083
|
-
return (void *)((
|
18163
|
+
static void *_p_FXFontSelectorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18164
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
18084
18165
|
}
|
18085
|
-
static void *
|
18086
|
-
return (void *)((
|
18166
|
+
static void *_p_FXFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18167
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
18087
18168
|
}
|
18088
|
-
static void *
|
18089
|
-
return (void *)((
|
18169
|
+
static void *_p_FXGIFCursorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18170
|
+
return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
|
18090
18171
|
}
|
18091
|
-
static void *
|
18092
|
-
return (void *)((
|
18172
|
+
static void *_p_FXGradientBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18173
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
18093
18174
|
}
|
18094
|
-
static void *
|
18095
|
-
return (void *)((
|
18175
|
+
static void *_p_FXGroupBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18176
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
18096
18177
|
}
|
18097
|
-
static void *
|
18098
|
-
return (void *)((
|
18178
|
+
static void *_p_FXHeaderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18179
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
18099
18180
|
}
|
18100
|
-
static void *
|
18101
|
-
return (void *)((
|
18181
|
+
static void *_p_FXHorizontalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18182
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
18102
18183
|
}
|
18103
|
-
static void *
|
18104
|
-
return (void *)((
|
18184
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18185
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
18105
18186
|
}
|
18106
|
-
static void *
|
18107
|
-
return (void *)((
|
18187
|
+
static void *_p_FXImageFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18188
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
18108
18189
|
}
|
18109
|
-
static void *
|
18110
|
-
return (void *)((
|
18190
|
+
static void *_p_FXImageViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18191
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
18111
18192
|
}
|
18112
|
-
static void *
|
18113
|
-
return (void *)((
|
18193
|
+
static void *_p_FXKnobTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18194
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
18114
18195
|
}
|
18115
|
-
static void *
|
18116
|
-
return (void *)((
|
18196
|
+
static void *_p_FXListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18197
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
18117
18198
|
}
|
18118
|
-
static void *
|
18119
|
-
return (void *)((
|
18199
|
+
static void *_p_FXMainWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18200
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
18120
18201
|
}
|
18121
|
-
static void *
|
18122
|
-
return (void *)((
|
18202
|
+
static void *_p_FXMatrixTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18203
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
18123
18204
|
}
|
18124
|
-
static void *
|
18125
|
-
return (void *)((
|
18205
|
+
static void *_p_FXMenuBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18206
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *)(FXToolBar *) ((FXMenuBar *) x));
|
18126
18207
|
}
|
18127
|
-
static void *
|
18128
|
-
return (void *)((
|
18208
|
+
static void *_p_FXMenuCaptionTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18209
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXMenuCaption *) x));
|
18129
18210
|
}
|
18130
|
-
static void *
|
18131
|
-
return (void *)((
|
18211
|
+
static void *_p_FXMenuCascadeTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18212
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
18132
18213
|
}
|
18133
|
-
static void *
|
18134
|
-
return (void *)((
|
18214
|
+
static void *_p_FXMenuCheckTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18215
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *)(FXMenuCommand *) ((FXMenuCheck *) x));
|
18135
18216
|
}
|
18136
|
-
static void *
|
18137
|
-
return (void *)((
|
18217
|
+
static void *_p_FXMenuCommandTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18218
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
18138
18219
|
}
|
18139
|
-
static void *
|
18140
|
-
return (void *)((
|
18220
|
+
static void *_p_FXMenuPaneTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18221
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXPopup *) ((FXMenuPane *) x));
|
18141
18222
|
}
|
18142
|
-
static void *
|
18143
|
-
return (void *)((
|
18223
|
+
static void *_p_FXMenuRadioTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18224
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *)(FXMenuCommand *) ((FXMenuRadio *) x));
|
18144
18225
|
}
|
18145
|
-
static void *
|
18146
|
-
return (void *)((
|
18226
|
+
static void *_p_FXMenuSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18227
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXMenuSeparator *) x));
|
18147
18228
|
}
|
18148
|
-
static void *
|
18149
|
-
return (void *)((
|
18229
|
+
static void *_p_FXMenuTitleTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18230
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuTitle *) x));
|
18150
18231
|
}
|
18151
|
-
static void *
|
18152
|
-
return (void *)((
|
18232
|
+
static void *_p_FXPackerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18233
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
18153
18234
|
}
|
18154
|
-
static void *
|
18155
|
-
return (void *)((
|
18235
|
+
static void *_p_FXPopupTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18236
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
18156
18237
|
}
|
18157
|
-
static void *
|
18158
|
-
return (void *)((
|
18238
|
+
static void *_p_FXProgressBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18239
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
18159
18240
|
}
|
18160
|
-
static void *
|
18161
|
-
return (void *)((
|
18241
|
+
static void *_p_FXRealSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18242
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
18162
18243
|
}
|
18163
|
-
static void *
|
18164
|
-
return (void *)((
|
18244
|
+
static void *_p_FXRealSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18245
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
18165
18246
|
}
|
18166
|
-
static void *
|
18167
|
-
return (void *)((
|
18247
|
+
static void *_p_FXRootWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18248
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
18168
18249
|
}
|
18169
|
-
static void *
|
18170
|
-
return (void *)((
|
18250
|
+
static void *_p_FXRulerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18251
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
18171
18252
|
}
|
18172
|
-
static void *
|
18173
|
-
return (void *)((
|
18253
|
+
static void *_p_FXRulerViewTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18254
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
18174
18255
|
}
|
18175
|
-
static void *
|
18176
|
-
return (void *)((
|
18256
|
+
static void *_p_FXScrollAreaTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18257
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
18177
18258
|
}
|
18178
|
-
static void *
|
18179
|
-
return (void *)((
|
18259
|
+
static void *_p_FXScrollBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18260
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
|
18180
18261
|
}
|
18181
|
-
static void *
|
18182
|
-
return (void *)((
|
18262
|
+
static void *_p_FXScrollCornerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18263
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
|
18183
18264
|
}
|
18184
|
-
static void *
|
18185
|
-
return (void *)((
|
18265
|
+
static void *_p_FXScrollPaneTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18266
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXPopup *)(FXMenuPane *) ((FXScrollPane *) x));
|
18186
18267
|
}
|
18187
|
-
static void *
|
18188
|
-
return (void *)((
|
18268
|
+
static void *_p_FXScrollWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18269
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
18189
18270
|
}
|
18190
|
-
static void *
|
18191
|
-
return (void *)((
|
18271
|
+
static void *_p_FXSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18272
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
18192
18273
|
}
|
18193
|
-
static void *
|
18194
|
-
return (void *)((
|
18274
|
+
static void *_p_FXShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18275
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
18195
18276
|
}
|
18196
|
-
static void *
|
18197
|
-
return (void *)((
|
18277
|
+
static void *_p_FXShutterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18278
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
18198
18279
|
}
|
18199
|
-
static void *
|
18200
|
-
return (void *)((
|
18280
|
+
static void *_p_FXShutterItemTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18281
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
18201
18282
|
}
|
18202
|
-
static void *
|
18203
|
-
return (void *)((
|
18283
|
+
static void *_p_FXSliderTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18284
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
18204
18285
|
}
|
18205
|
-
static void *
|
18206
|
-
return (void *)((
|
18286
|
+
static void *_p_FXSpinnerTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18287
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
18207
18288
|
}
|
18208
|
-
static void *
|
18209
|
-
return (void *)((
|
18289
|
+
static void *_p_FXSplashWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18290
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
18210
18291
|
}
|
18211
|
-
static void *
|
18212
|
-
return (void *)((
|
18292
|
+
static void *_p_FXSplitterTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18293
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
18213
18294
|
}
|
18214
|
-
static void *
|
18215
|
-
return (void *)((
|
18295
|
+
static void *_p_FXSpringTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18296
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
18216
18297
|
}
|
18217
|
-
static void *
|
18218
|
-
return (void *)((
|
18298
|
+
static void *_p_FXStatusBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18299
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
18219
18300
|
}
|
18220
|
-
static void *
|
18221
|
-
return (void *)((
|
18301
|
+
static void *_p_FXStatusLineTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18302
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
18222
18303
|
}
|
18223
|
-
static void *
|
18224
|
-
return (void *)((
|
18304
|
+
static void *_p_FXSwitcherTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18305
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
18225
18306
|
}
|
18226
|
-
static void *
|
18227
|
-
return (void *)((
|
18307
|
+
static void *_p_FXTabBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18308
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
18228
18309
|
}
|
18229
|
-
static void *
|
18230
|
-
return (void *)((
|
18310
|
+
static void *_p_FXTabBookTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18311
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
18231
18312
|
}
|
18232
|
-
static void *
|
18233
|
-
return (void *)((
|
18313
|
+
static void *_p_FXTextFieldTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18314
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
18234
18315
|
}
|
18235
|
-
static void *
|
18236
|
-
return (void *)((
|
18316
|
+
static void *_p_FXToolBarTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18317
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
18237
18318
|
}
|
18238
|
-
static void *
|
18239
|
-
return (void *)((
|
18319
|
+
static void *_p_FXToolBarGripTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18320
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
18240
18321
|
}
|
18241
|
-
static void *
|
18242
|
-
return (void *)((
|
18322
|
+
static void *_p_FXToolBarShellTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18323
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
18243
18324
|
}
|
18244
|
-
static void *
|
18245
|
-
return (void *)((
|
18325
|
+
static void *_p_FXToolBarTabTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18326
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
18246
18327
|
}
|
18247
|
-
static void *
|
18248
|
-
return (void *)((
|
18328
|
+
static void *_p_FXToolTipTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18329
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
18249
18330
|
}
|
18250
|
-
static void *
|
18251
|
-
return (void *)((
|
18331
|
+
static void *_p_FXTopWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18332
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
18252
18333
|
}
|
18253
|
-
static void *
|
18254
|
-
return (void *)((
|
18334
|
+
static void *_p_FXTreeListBoxTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18335
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
18255
18336
|
}
|
18256
|
-
static void *
|
18257
|
-
return (void *)((
|
18337
|
+
static void *_p_FXVerticalFrameTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18338
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
18258
18339
|
}
|
18259
|
-
static void *
|
18260
|
-
return (void *)((
|
18340
|
+
static void *_p_FXVerticalSeparatorTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18341
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
18261
18342
|
}
|
18262
|
-
static void *
|
18263
|
-
return (void *)((
|
18343
|
+
static void *_p_FXVisualTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18344
|
+
return (void *)((FXId *) ((FXVisual *) x));
|
18264
18345
|
}
|
18265
|
-
static void *
|
18266
|
-
return (void *)((
|
18346
|
+
static void *_p_FXWindowTo_p_FXId(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18347
|
+
return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
|
18267
18348
|
}
|
18268
|
-
static void *
|
18269
|
-
return (void *)((
|
18349
|
+
static void *_p_FXMenuCascadeTo_p_FXMenuCaption(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18350
|
+
return (void *)((FXMenuCaption *) ((FXMenuCascade *) x));
|
18270
18351
|
}
|
18271
|
-
static void *
|
18272
|
-
return (void *)((
|
18352
|
+
static void *_p_FXMenuCheckTo_p_FXMenuCaption(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18353
|
+
return (void *)((FXMenuCaption *) (FXMenuCommand *) ((FXMenuCheck *) x));
|
18273
18354
|
}
|
18274
|
-
static void *
|
18275
|
-
return (void *)((
|
18355
|
+
static void *_p_FXMenuCommandTo_p_FXMenuCaption(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18356
|
+
return (void *)((FXMenuCaption *) ((FXMenuCommand *) x));
|
18276
18357
|
}
|
18277
|
-
static void *
|
18278
|
-
return (void *)((
|
18358
|
+
static void *_p_FXMenuRadioTo_p_FXMenuCaption(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18359
|
+
return (void *)((FXMenuCaption *) (FXMenuCommand *) ((FXMenuRadio *) x));
|
18279
18360
|
}
|
18280
|
-
static void *
|
18281
|
-
return (void *)((
|
18361
|
+
static void *_p_FXMenuTitleTo_p_FXMenuCaption(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18362
|
+
return (void *)((FXMenuCaption *) ((FXMenuTitle *) x));
|
18282
18363
|
}
|
18283
|
-
static void *
|
18284
|
-
return (void *)((
|
18364
|
+
static void *_p_FXMenuCheckTo_p_FXMenuCommand(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18365
|
+
return (void *)((FXMenuCommand *) ((FXMenuCheck *) x));
|
18285
18366
|
}
|
18286
|
-
static void *
|
18287
|
-
return (void *)((
|
18367
|
+
static void *_p_FXMenuRadioTo_p_FXMenuCommand(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18368
|
+
return (void *)((FXMenuCommand *) ((FXMenuRadio *) x));
|
18288
18369
|
}
|
18289
|
-
static void *
|
18290
|
-
return (void *)((
|
18370
|
+
static void *_p_FXScrollPaneTo_p_FXMenuPane(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18371
|
+
return (void *)((FXMenuPane *) ((FXScrollPane *) x));
|
18291
18372
|
}
|
18292
|
-
static void *
|
18293
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((
|
18373
|
+
static void *_p_FX4SplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18374
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
18294
18375
|
}
|
18295
|
-
static void *
|
18296
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((
|
18376
|
+
static void *_p_FX7SegmentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18377
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
18297
18378
|
}
|
18298
|
-
static void *
|
18299
|
-
return (void *)((FXObject *)
|
18379
|
+
static void *_p_FXAccelTableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18380
|
+
return (void *)((FXObject *) ((FXAccelTable *) x));
|
18300
18381
|
}
|
18301
|
-
static void *
|
18302
|
-
return (void *)((FXObject *)
|
18382
|
+
static void *_p_FXAppTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18383
|
+
return (void *)((FXObject *) ((FXApp *) x));
|
18303
18384
|
}
|
18304
|
-
static void *
|
18305
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((
|
18385
|
+
static void *_p_FXArrowButtonTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18386
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
|
18306
18387
|
}
|
18307
|
-
static void *
|
18308
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
18388
|
+
static void *_p_FXBitmapFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18389
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
|
18309
18390
|
}
|
18310
|
-
static void *
|
18311
|
-
return (void *)((FXObject *) (FXId *)(
|
18391
|
+
static void *_p_FXCURCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18392
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXCURCursor *) x));
|
18312
18393
|
}
|
18313
|
-
static void *
|
18314
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)
|
18394
|
+
static void *_p_FXCanvasTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18395
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
|
18315
18396
|
}
|
18316
|
-
static void *
|
18317
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
18397
|
+
static void *_p_FXColorBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18398
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
|
18318
18399
|
}
|
18319
|
-
static void *
|
18320
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
18400
|
+
static void *_p_FXColorRingTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18401
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
18321
18402
|
}
|
18322
18403
|
static void *_p_FXColorSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18323
18404
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
18324
18405
|
}
|
18325
|
-
static void *
|
18326
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
18406
|
+
static void *_p_FXColorWellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18407
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
|
18327
18408
|
}
|
18328
|
-
static void *
|
18329
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(
|
18409
|
+
static void *_p_FXColorWheelTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18410
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
|
18330
18411
|
}
|
18331
|
-
static void *
|
18332
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(
|
18412
|
+
static void *_p_FXComboBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18413
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
18333
18414
|
}
|
18334
|
-
static void *
|
18335
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)
|
18415
|
+
static void *_p_FXCompositeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18416
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
|
18336
18417
|
}
|
18337
|
-
static void *
|
18338
|
-
return (void *)((FXObject *) (FXId *)
|
18418
|
+
static void *_p_FXCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18419
|
+
return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
|
18339
18420
|
}
|
18340
|
-
static void *
|
18341
|
-
return (void *)((
|
18421
|
+
static void *_p_FXDataTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18422
|
+
return (void *)((FXObject *) ((FXDataTarget *) x));
|
18342
18423
|
}
|
18343
|
-
static void *
|
18344
|
-
return (void *)((
|
18424
|
+
static void *_p_FXDebugTargetTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18425
|
+
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
18345
18426
|
}
|
18346
|
-
static void *
|
18347
|
-
return (void *)((
|
18427
|
+
static void *_p_FXDelegatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18428
|
+
return (void *)((FXObject *) ((FXDelegator *) x));
|
18348
18429
|
}
|
18349
|
-
static void *
|
18350
|
-
return (void *)((
|
18430
|
+
static void *_p_FXDialTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18431
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
18351
18432
|
}
|
18352
|
-
static void *
|
18353
|
-
return (void *)((
|
18433
|
+
static void *_p_FXDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18434
|
+
return (void *)((FXObject *) ((FXDict *) x));
|
18354
18435
|
}
|
18355
|
-
static void *
|
18356
|
-
return (void *)((
|
18436
|
+
static void *_p_FXDirBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18437
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
18357
18438
|
}
|
18358
|
-
static void *
|
18359
|
-
return (void *)((FXPacker *)
|
18439
|
+
static void *_p_FXDirSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18440
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
18360
18441
|
}
|
18361
|
-
static void *
|
18362
|
-
return (void *)((
|
18442
|
+
static void *_p_FXDockBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18443
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
18363
18444
|
}
|
18364
|
-
static void *
|
18365
|
-
return (void *)((
|
18445
|
+
static void *_p_FXDockHandlerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18446
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
18366
18447
|
}
|
18367
|
-
static void *
|
18368
|
-
return (void *)((FXPacker *)
|
18448
|
+
static void *_p_FXDockSiteTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18449
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
18369
18450
|
}
|
18370
|
-
static void *
|
18371
|
-
return (void *)((
|
18451
|
+
static void *_p_FXDockTitleTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18452
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
18372
18453
|
}
|
18373
|
-
static void *
|
18374
|
-
return (void *)((
|
18454
|
+
static void *_p_FXDocumentTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18455
|
+
return (void *)((FXObject *) ((FXDocument *) x));
|
18375
18456
|
}
|
18376
|
-
static void *
|
18377
|
-
return (void *)((
|
18457
|
+
static void *_p_FXDragCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18458
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
|
18378
18459
|
}
|
18379
|
-
static void *
|
18380
|
-
return (void *)((
|
18460
|
+
static void *_p_FXDrawableTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18461
|
+
return (void *)((FXObject *) (FXId *) ((FXDrawable *) x));
|
18381
18462
|
}
|
18382
|
-
static void *
|
18383
|
-
return (void *)((FXPacker *)
|
18463
|
+
static void *_p_FXDriveBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18464
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
18384
18465
|
}
|
18385
|
-
static void *
|
18386
|
-
return (void *)((
|
18466
|
+
static void *_p_FXFileDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18467
|
+
return (void *)((FXObject *) (FXDict *) ((FXFileDict *) x));
|
18387
18468
|
}
|
18388
|
-
static void *
|
18389
|
-
return (void *)((FXPacker *)
|
18469
|
+
static void *_p_FXFileSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18470
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
18390
18471
|
}
|
18391
|
-
static void *
|
18392
|
-
return (void *)((
|
18472
|
+
static void *_p_FXFontTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18473
|
+
return (void *)((FXObject *) (FXId *) ((FXFont *) x));
|
18393
18474
|
}
|
18394
|
-
static void *
|
18395
|
-
return (void *)((FXPacker *)
|
18475
|
+
static void *_p_FXFontSelectorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18476
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
18396
18477
|
}
|
18397
|
-
static void *
|
18398
|
-
return (void *)((
|
18478
|
+
static void *_p_FXFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18479
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
|
18399
18480
|
}
|
18400
|
-
static void *
|
18401
|
-
return (void *)((
|
18481
|
+
static void *_p_FXGIFCursorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18482
|
+
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
18402
18483
|
}
|
18403
|
-
static void *
|
18404
|
-
return (void *)((
|
18484
|
+
static void *_p_FXGradientBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18485
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
18405
18486
|
}
|
18406
|
-
static void *
|
18407
|
-
return (void *)((FXPacker *)
|
18487
|
+
static void *_p_FXGroupBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18488
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
18408
18489
|
}
|
18409
|
-
static void *
|
18410
|
-
return (void *)((
|
18490
|
+
static void *_p_FXHeaderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18491
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
18411
18492
|
}
|
18412
|
-
static void *
|
18413
|
-
return (void *)((
|
18493
|
+
static void *_p_FXHeaderItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18494
|
+
return (void *)((FXObject *) ((FXHeaderItem *) x));
|
18414
18495
|
}
|
18415
|
-
static void *
|
18416
|
-
return (void *)((FXPacker *)
|
18496
|
+
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18497
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
18417
18498
|
}
|
18418
|
-
static void *
|
18419
|
-
return (void *)((
|
18499
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18500
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
18420
18501
|
}
|
18421
|
-
static void *
|
18422
|
-
return (void *)((
|
18502
|
+
static void *_p_FXIconDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18503
|
+
return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
|
18423
18504
|
}
|
18424
|
-
static void *
|
18425
|
-
return (void *)((
|
18505
|
+
static void *_p_FXIdTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18506
|
+
return (void *)((FXObject *) ((FXId *) x));
|
18426
18507
|
}
|
18427
|
-
static void *
|
18428
|
-
return (void *)((
|
18508
|
+
static void *_p_FXImageFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18509
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
|
18429
18510
|
}
|
18430
|
-
static void *
|
18431
|
-
return (void *)((
|
18511
|
+
static void *_p_FXImageViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18512
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
18432
18513
|
}
|
18433
|
-
static void *
|
18434
|
-
return (void *)((
|
18514
|
+
static void *_p_FXKnobTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18515
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
18435
18516
|
}
|
18436
|
-
static void *
|
18437
|
-
return (void *)((
|
18517
|
+
static void *_p_FXListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18518
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
|
18438
18519
|
}
|
18439
|
-
static void *
|
18440
|
-
return (void *)((
|
18520
|
+
static void *_p_FXMainWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18521
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
18441
18522
|
}
|
18442
|
-
static void *
|
18443
|
-
return (void *)((
|
18523
|
+
static void *_p_FXMatrixTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18524
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
18444
18525
|
}
|
18445
|
-
static void *
|
18446
|
-
return (void *)((
|
18526
|
+
static void *_p_FXMenuBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18527
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *)(FXToolBar *) ((FXMenuBar *) x));
|
18447
18528
|
}
|
18448
|
-
static void *
|
18449
|
-
return (void *)((
|
18529
|
+
static void *_p_FXMenuCaptionTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18530
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXMenuCaption *) x));
|
18450
18531
|
}
|
18451
|
-
static void *
|
18452
|
-
return (void *)((
|
18532
|
+
static void *_p_FXMenuCascadeTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18533
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
18453
18534
|
}
|
18454
|
-
static void *
|
18455
|
-
return (void *)((
|
18535
|
+
static void *_p_FXMenuCheckTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18536
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *)(FXMenuCommand *) ((FXMenuCheck *) x));
|
18456
18537
|
}
|
18457
|
-
static void *
|
18458
|
-
return (void *)((
|
18538
|
+
static void *_p_FXMenuCommandTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18539
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
18459
18540
|
}
|
18460
|
-
static void *
|
18461
|
-
return (void *)((
|
18541
|
+
static void *_p_FXMenuPaneTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18542
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXPopup *) ((FXMenuPane *) x));
|
18462
18543
|
}
|
18463
|
-
static void *
|
18464
|
-
return (void *)((
|
18544
|
+
static void *_p_FXMenuRadioTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18545
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *)(FXMenuCommand *) ((FXMenuRadio *) x));
|
18465
18546
|
}
|
18466
|
-
static void *
|
18467
|
-
return (void *)((
|
18547
|
+
static void *_p_FXMenuSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18548
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXMenuSeparator *) x));
|
18468
18549
|
}
|
18469
|
-
static void *
|
18470
|
-
return (void *)((
|
18550
|
+
static void *_p_FXMenuTitleTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18551
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuTitle *) x));
|
18471
18552
|
}
|
18472
|
-
static void *
|
18473
|
-
return (void *)((
|
18553
|
+
static void *_p_FXPackerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18554
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
|
18474
18555
|
}
|
18475
|
-
static void *
|
18476
|
-
return (void *)((
|
18556
|
+
static void *_p_FXPopupTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18557
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
|
18477
18558
|
}
|
18478
|
-
static void *
|
18479
|
-
return (void *)((
|
18559
|
+
static void *_p_FXProgressBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18560
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
|
18480
18561
|
}
|
18481
|
-
static void *
|
18482
|
-
return (void *)((
|
18562
|
+
static void *_p_FXRealSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18563
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
|
18483
18564
|
}
|
18484
|
-
static void *
|
18485
|
-
return (void *)((
|
18565
|
+
static void *_p_FXRealSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18566
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
18486
18567
|
}
|
18487
|
-
static void *
|
18488
|
-
return (void *)((
|
18568
|
+
static void *_p_FXRecentFilesTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18569
|
+
return (void *)((FXObject *) ((FXRecentFiles *) x));
|
18489
18570
|
}
|
18490
|
-
static void *
|
18491
|
-
return (void *)((
|
18571
|
+
static void *_p_FXRegistryTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18572
|
+
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
18492
18573
|
}
|
18493
|
-
static void *
|
18494
|
-
return (void *)((
|
18574
|
+
static void *_p_FXRootWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18575
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
|
18495
18576
|
}
|
18496
|
-
static void *
|
18497
|
-
return (void *)((
|
18577
|
+
static void *_p_FXRulerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18578
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
|
18498
18579
|
}
|
18499
|
-
static void *
|
18500
|
-
return (void *)((
|
18580
|
+
static void *_p_FXRulerViewTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18581
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
18501
18582
|
}
|
18502
|
-
static void *
|
18503
|
-
return (void *)((
|
18583
|
+
static void *_p_FXScrollAreaTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18584
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
|
18504
18585
|
}
|
18505
|
-
static void *
|
18506
|
-
return (void *)((
|
18586
|
+
static void *_p_FXScrollBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18587
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
|
18507
18588
|
}
|
18508
|
-
static void *
|
18509
|
-
return (void *)((
|
18589
|
+
static void *_p_FXScrollCornerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18590
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
|
18510
18591
|
}
|
18511
|
-
static void *
|
18512
|
-
return (void *)((
|
18592
|
+
static void *_p_FXScrollPaneTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18593
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXPopup *)(FXMenuPane *) ((FXScrollPane *) x));
|
18513
18594
|
}
|
18514
|
-
static void *
|
18515
|
-
return (void *)((
|
18595
|
+
static void *_p_FXScrollWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18596
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
18516
18597
|
}
|
18517
|
-
static void *
|
18518
|
-
return (void *)((
|
18598
|
+
static void *_p_FXSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18599
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
|
18519
18600
|
}
|
18520
|
-
static void *
|
18521
|
-
return (void *)((
|
18601
|
+
static void *_p_FXSettingsTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18602
|
+
return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
|
18522
18603
|
}
|
18523
|
-
static void *
|
18524
|
-
return (void *)((
|
18604
|
+
static void *_p_FXShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18605
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
|
18525
18606
|
}
|
18526
|
-
static void *
|
18527
|
-
return (void *)((
|
18607
|
+
static void *_p_FXShutterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18608
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
18528
18609
|
}
|
18529
|
-
static void *
|
18530
|
-
return (void *)((
|
18610
|
+
static void *_p_FXShutterItemTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18611
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
18531
18612
|
}
|
18532
|
-
static void *
|
18533
|
-
return (void *)((
|
18613
|
+
static void *_p_FXSliderTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18614
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
|
18534
18615
|
}
|
18535
|
-
static void *
|
18536
|
-
return (void *)((
|
18616
|
+
static void *_p_FXSpinnerTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18617
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
18537
18618
|
}
|
18538
|
-
static void *
|
18539
|
-
return (void *)((
|
18619
|
+
static void *_p_FXSplashWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18620
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
18540
18621
|
}
|
18541
|
-
static void *
|
18542
|
-
return (void *)((
|
18622
|
+
static void *_p_FXSplitterTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18623
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
|
18543
18624
|
}
|
18544
|
-
static void *
|
18545
|
-
return (void *)((
|
18625
|
+
static void *_p_FXSpringTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18626
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
|
18546
18627
|
}
|
18547
|
-
static void *
|
18548
|
-
return (void *)((
|
18628
|
+
static void *_p_FXStatusBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18629
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
18549
18630
|
}
|
18550
|
-
static void *
|
18551
|
-
return (void *)((
|
18631
|
+
static void *_p_FXStatusLineTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18632
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
|
18552
18633
|
}
|
18553
|
-
static void *
|
18554
|
-
return (void *)((
|
18634
|
+
static void *_p_FXStringDictTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18635
|
+
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
18555
18636
|
}
|
18556
|
-
static void *
|
18557
|
-
return (void *)((
|
18637
|
+
static void *_p_FXSwitcherTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18638
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
18558
18639
|
}
|
18559
|
-
static void *
|
18560
|
-
return (void *)((
|
18640
|
+
static void *_p_FXTabBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18641
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
18561
18642
|
}
|
18562
|
-
static void *
|
18563
|
-
return (void *)((
|
18643
|
+
static void *_p_FXTabBookTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18644
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
18564
18645
|
}
|
18565
|
-
static void *
|
18566
|
-
return (void *)((
|
18646
|
+
static void *_p_FXTextFieldTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18647
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
|
18567
18648
|
}
|
18568
|
-
static void *
|
18569
|
-
return (void *)((
|
18649
|
+
static void *_p_FXToolBarTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18650
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
18570
18651
|
}
|
18571
|
-
static void *
|
18572
|
-
return (void *)((
|
18652
|
+
static void *_p_FXToolBarGripTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18653
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
18573
18654
|
}
|
18574
|
-
static void *
|
18575
|
-
return (void *)((
|
18655
|
+
static void *_p_FXToolBarShellTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18656
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
18576
18657
|
}
|
18577
|
-
static void *
|
18578
|
-
return (void *)((
|
18658
|
+
static void *_p_FXToolBarTabTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18659
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
|
18579
18660
|
}
|
18580
|
-
static void *
|
18581
|
-
return (void *)((
|
18661
|
+
static void *_p_FXToolTipTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18662
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
|
18582
18663
|
}
|
18583
|
-
static void *
|
18584
|
-
return (void *)((
|
18664
|
+
static void *_p_FXTopWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18665
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
18585
18666
|
}
|
18586
|
-
static void *
|
18587
|
-
return (void *)((
|
18667
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18668
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
18588
18669
|
}
|
18589
|
-
static void *
|
18590
|
-
return (void *)((
|
18670
|
+
static void *_p_FXTreeListBoxTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18671
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
18591
18672
|
}
|
18592
|
-
static void *
|
18593
|
-
return (void *)((
|
18673
|
+
static void *_p_FXVerticalFrameTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18674
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
18594
18675
|
}
|
18595
|
-
static void *
|
18596
|
-
return (void *)((
|
18676
|
+
static void *_p_FXVerticalSeparatorTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18677
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
18597
18678
|
}
|
18598
|
-
static void *
|
18599
|
-
return (void *)((
|
18679
|
+
static void *_p_FXVisualTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18680
|
+
return (void *)((FXObject *) (FXId *) ((FXVisual *) x));
|
18600
18681
|
}
|
18601
|
-
static void *
|
18602
|
-
return (void *)((
|
18682
|
+
static void *_p_FXWindowTo_p_FXObject(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18683
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *) ((FXWindow *) x));
|
18603
18684
|
}
|
18604
|
-
static void *
|
18605
|
-
return (void *)((
|
18685
|
+
static void *_p_FXColorSelectorTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18686
|
+
return (void *)((FXPacker *) ((FXColorSelector *) x));
|
18606
18687
|
}
|
18607
|
-
static void *
|
18608
|
-
return (void *)((
|
18688
|
+
static void *_p_FXComboBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18689
|
+
return (void *)((FXPacker *) ((FXComboBox *) x));
|
18609
18690
|
}
|
18610
|
-
static void *
|
18611
|
-
return (void *)((
|
18691
|
+
static void *_p_FXDirBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18692
|
+
return (void *)((FXPacker *) (FXTreeListBox *) ((FXDirBox *) x));
|
18612
18693
|
}
|
18613
|
-
static void *
|
18614
|
-
return (void *)((
|
18694
|
+
static void *_p_FXDirSelectorTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18695
|
+
return (void *)((FXPacker *) ((FXDirSelector *) x));
|
18615
18696
|
}
|
18616
|
-
static void *
|
18617
|
-
return (void *)((
|
18697
|
+
static void *_p_FXDockBarTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18698
|
+
return (void *)((FXPacker *) ((FXDockBar *) x));
|
18618
18699
|
}
|
18619
|
-
static void *
|
18620
|
-
return (void *)((
|
18700
|
+
static void *_p_FXDockSiteTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18701
|
+
return (void *)((FXPacker *) ((FXDockSite *) x));
|
18621
18702
|
}
|
18622
|
-
static void *
|
18623
|
-
return (void *)((
|
18703
|
+
static void *_p_FXDriveBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18704
|
+
return (void *)((FXPacker *) (FXListBox *) ((FXDriveBox *) x));
|
18624
18705
|
}
|
18625
|
-
static void *
|
18626
|
-
return (void *)((
|
18706
|
+
static void *_p_FXFileSelectorTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18707
|
+
return (void *)((FXPacker *) ((FXFileSelector *) x));
|
18627
18708
|
}
|
18628
|
-
static void *
|
18629
|
-
return (void *)((
|
18709
|
+
static void *_p_FXFontSelectorTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18710
|
+
return (void *)((FXPacker *) ((FXFontSelector *) x));
|
18630
18711
|
}
|
18631
|
-
static void *
|
18632
|
-
return (void *)((
|
18712
|
+
static void *_p_FXGroupBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18713
|
+
return (void *)((FXPacker *) ((FXGroupBox *) x));
|
18633
18714
|
}
|
18634
|
-
static void *
|
18635
|
-
return (void *)((
|
18715
|
+
static void *_p_FXHorizontalFrameTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18716
|
+
return (void *)((FXPacker *) ((FXHorizontalFrame *) x));
|
18636
18717
|
}
|
18637
|
-
static void *
|
18638
|
-
return (void *)((
|
18718
|
+
static void *_p_FXListBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18719
|
+
return (void *)((FXPacker *) ((FXListBox *) x));
|
18639
18720
|
}
|
18640
|
-
static void *
|
18641
|
-
return (void *)((
|
18721
|
+
static void *_p_FXMatrixTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18722
|
+
return (void *)((FXPacker *) ((FXMatrix *) x));
|
18642
18723
|
}
|
18643
|
-
static void *
|
18644
|
-
return (void *)((
|
18724
|
+
static void *_p_FXMenuBarTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18725
|
+
return (void *)((FXPacker *) (FXDockBar *)(FXToolBar *) ((FXMenuBar *) x));
|
18645
18726
|
}
|
18646
|
-
static void *
|
18647
|
-
return (void *)((
|
18727
|
+
static void *_p_FXRealSpinnerTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18728
|
+
return (void *)((FXPacker *) ((FXRealSpinner *) x));
|
18648
18729
|
}
|
18649
|
-
static void *
|
18650
|
-
return (void *)((
|
18730
|
+
static void *_p_FXShutterTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18731
|
+
return (void *)((FXPacker *) (FXVerticalFrame *) ((FXShutter *) x));
|
18651
18732
|
}
|
18652
|
-
static void *
|
18653
|
-
return (void *)((
|
18733
|
+
static void *_p_FXShutterItemTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18734
|
+
return (void *)((FXPacker *) (FXVerticalFrame *) ((FXShutterItem *) x));
|
18654
18735
|
}
|
18655
|
-
static void *
|
18656
|
-
return (void *)((
|
18736
|
+
static void *_p_FXSpinnerTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18737
|
+
return (void *)((FXPacker *) ((FXSpinner *) x));
|
18657
18738
|
}
|
18658
|
-
static void *
|
18659
|
-
return (void *)((
|
18739
|
+
static void *_p_FXSpringTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18740
|
+
return (void *)((FXPacker *) ((FXSpring *) x));
|
18660
18741
|
}
|
18661
|
-
static void *
|
18662
|
-
return (void *)((
|
18742
|
+
static void *_p_FXStatusBarTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18743
|
+
return (void *)((FXPacker *) (FXHorizontalFrame *) ((FXStatusBar *) x));
|
18663
18744
|
}
|
18664
|
-
static void *
|
18665
|
-
return (void *)((
|
18745
|
+
static void *_p_FXSwitcherTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18746
|
+
return (void *)((FXPacker *) ((FXSwitcher *) x));
|
18666
18747
|
}
|
18667
|
-
static void *
|
18668
|
-
return (void *)((
|
18748
|
+
static void *_p_FXTabBarTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18749
|
+
return (void *)((FXPacker *) ((FXTabBar *) x));
|
18669
18750
|
}
|
18670
|
-
static void *
|
18671
|
-
return (void *)((
|
18751
|
+
static void *_p_FXTabBookTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18752
|
+
return (void *)((FXPacker *) (FXTabBar *) ((FXTabBook *) x));
|
18672
18753
|
}
|
18673
|
-
static void *
|
18674
|
-
return (void *)((
|
18754
|
+
static void *_p_FXToolBarTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18755
|
+
return (void *)((FXPacker *) (FXDockBar *) ((FXToolBar *) x));
|
18675
18756
|
}
|
18676
|
-
static void *
|
18677
|
-
return (void *)((
|
18757
|
+
static void *_p_FXTreeListBoxTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18758
|
+
return (void *)((FXPacker *) ((FXTreeListBox *) x));
|
18678
18759
|
}
|
18679
|
-
static void *
|
18680
|
-
return (void *)((
|
18760
|
+
static void *_p_FXVerticalFrameTo_p_FXPacker(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18761
|
+
return (void *)((FXPacker *) ((FXVerticalFrame *) x));
|
18681
18762
|
}
|
18682
|
-
static void *
|
18683
|
-
return (void *)((
|
18763
|
+
static void *_p_FXMenuPaneTo_p_FXPopup(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18764
|
+
return (void *)((FXPopup *) ((FXMenuPane *) x));
|
18684
18765
|
}
|
18685
|
-
static void *
|
18686
|
-
return (void *)((
|
18766
|
+
static void *_p_FXScrollPaneTo_p_FXPopup(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18767
|
+
return (void *)((FXPopup *) (FXMenuPane *) ((FXScrollPane *) x));
|
18687
18768
|
}
|
18688
|
-
static void *
|
18689
|
-
return (void *)((
|
18769
|
+
static void *_p_FXMainWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18770
|
+
return (void *)((FXShell *) (FXTopWindow *) ((FXMainWindow *) x));
|
18690
18771
|
}
|
18691
|
-
static void *
|
18692
|
-
return (void *)((
|
18772
|
+
static void *_p_FXMenuPaneTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18773
|
+
return (void *)((FXShell *) (FXPopup *) ((FXMenuPane *) x));
|
18693
18774
|
}
|
18694
|
-
static void *
|
18695
|
-
return (void *)((
|
18775
|
+
static void *_p_FXPopupTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18776
|
+
return (void *)((FXShell *) ((FXPopup *) x));
|
18696
18777
|
}
|
18697
|
-
static void *
|
18698
|
-
return (void *)((
|
18778
|
+
static void *_p_FXScrollPaneTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18779
|
+
return (void *)((FXShell *) (FXPopup *)(FXMenuPane *) ((FXScrollPane *) x));
|
18699
18780
|
}
|
18700
|
-
static void *
|
18701
|
-
return (void *)((
|
18781
|
+
static void *_p_FXSplashWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18782
|
+
return (void *)((FXShell *) (FXTopWindow *) ((FXSplashWindow *) x));
|
18702
18783
|
}
|
18703
|
-
static void *
|
18704
|
-
return (void *)((
|
18784
|
+
static void *_p_FXToolBarShellTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18785
|
+
return (void *)((FXShell *) (FXTopWindow *) ((FXToolBarShell *) x));
|
18705
18786
|
}
|
18706
|
-
static void *
|
18707
|
-
return (void *)((
|
18787
|
+
static void *_p_FXToolTipTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18788
|
+
return (void *)((FXShell *) ((FXToolTip *) x));
|
18708
18789
|
}
|
18709
|
-
static void *
|
18710
|
-
return (void *)((
|
18790
|
+
static void *_p_FXTopWindowTo_p_FXShell(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18791
|
+
return (void *)((FXShell *) ((FXTopWindow *) x));
|
18711
18792
|
}
|
18712
|
-
static void *
|
18713
|
-
return (void *)((
|
18793
|
+
static void *_p_FXFileStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18794
|
+
return (void *)((FXStream *) ((FXFileStream *) x));
|
18714
18795
|
}
|
18715
|
-
static void *
|
18716
|
-
return (void *)((
|
18796
|
+
static void *_p_FXMemoryStreamTo_p_FXStream(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18797
|
+
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
18717
18798
|
}
|
18718
|
-
static void *
|
18719
|
-
return (void *)((
|
18799
|
+
static void *_p_FXMenuBarTo_p_FXToolBar(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18800
|
+
return (void *)((FXToolBar *) ((FXMenuBar *) x));
|
18720
18801
|
}
|
18721
|
-
static void *
|
18722
|
-
return (void *)((
|
18802
|
+
static void *_p_FX4SplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18803
|
+
return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
|
18723
18804
|
}
|
18724
|
-
static void *
|
18725
|
-
return (void *)((
|
18805
|
+
static void *_p_FX7SegmentTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18806
|
+
return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
|
18726
18807
|
}
|
18727
|
-
static void *
|
18728
|
-
return (void *)((
|
18808
|
+
static void *_p_FXArrowButtonTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18809
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
|
18729
18810
|
}
|
18730
|
-
static void *
|
18731
|
-
return (void *)((
|
18811
|
+
static void *_p_FXBitmapFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18812
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
|
18732
18813
|
}
|
18733
|
-
static void *
|
18734
|
-
return (void *)((
|
18814
|
+
static void *_p_FXCanvasTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18815
|
+
return (void *)((FXWindow *) ((FXCanvas *) x));
|
18735
18816
|
}
|
18736
|
-
static void *
|
18737
|
-
return (void *)((
|
18817
|
+
static void *_p_FXColorBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18818
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
|
18738
18819
|
}
|
18739
|
-
static void *
|
18740
|
-
return (void *)((
|
18820
|
+
static void *_p_FXColorRingTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18821
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
|
18741
18822
|
}
|
18742
|
-
static void *
|
18743
|
-
return (void *)((
|
18823
|
+
static void *_p_FXColorSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18824
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXColorSelector *) x));
|
18744
18825
|
}
|
18745
|
-
static void *
|
18746
|
-
return (void *)((
|
18826
|
+
static void *_p_FXColorWellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18827
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorWell *) x));
|
18747
18828
|
}
|
18748
|
-
static void *
|
18749
|
-
return (void *)((
|
18829
|
+
static void *_p_FXColorWheelTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18830
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
|
18750
18831
|
}
|
18751
|
-
static void *
|
18752
|
-
return (void *)((
|
18832
|
+
static void *_p_FXComboBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18833
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXComboBox *) x));
|
18753
18834
|
}
|
18754
|
-
static void *
|
18755
|
-
return (void *)((
|
18835
|
+
static void *_p_FXCompositeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18836
|
+
return (void *)((FXWindow *) ((FXComposite *) x));
|
18756
18837
|
}
|
18757
|
-
static void *
|
18758
|
-
return (void *)((
|
18838
|
+
static void *_p_FXDialTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18839
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXDial *) x));
|
18759
18840
|
}
|
18760
|
-
static void *
|
18761
|
-
return (void *)((
|
18841
|
+
static void *_p_FXDirBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18842
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
|
18762
18843
|
}
|
18763
|
-
static void *
|
18764
|
-
return (void *)((
|
18844
|
+
static void *_p_FXDirSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18845
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDirSelector *) x));
|
18765
18846
|
}
|
18766
|
-
static void *
|
18767
|
-
return (void *)((
|
18847
|
+
static void *_p_FXDockBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18848
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockBar *) x));
|
18768
18849
|
}
|
18769
|
-
static void *
|
18770
|
-
return (void *)((
|
18850
|
+
static void *_p_FXDockHandlerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18851
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
|
18771
18852
|
}
|
18772
|
-
static void *
|
18773
|
-
return (void *)((
|
18853
|
+
static void *_p_FXDockSiteTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18854
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
|
18774
18855
|
}
|
18775
|
-
static void *
|
18776
|
-
return (void *)((
|
18856
|
+
static void *_p_FXDockTitleTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18857
|
+
return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
18777
18858
|
}
|
18778
|
-
static void *
|
18779
|
-
return (void *)((
|
18859
|
+
static void *_p_FXDragCornerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18860
|
+
return (void *)((FXWindow *) ((FXDragCorner *) x));
|
18780
18861
|
}
|
18781
|
-
static void *
|
18782
|
-
return (void *)((
|
18862
|
+
static void *_p_FXDriveBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18863
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
|
18783
18864
|
}
|
18784
|
-
static void *
|
18785
|
-
return (void *)((
|
18865
|
+
static void *_p_FXFileSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18866
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXFileSelector *) x));
|
18786
18867
|
}
|
18787
|
-
static void *
|
18788
|
-
return (void *)((
|
18868
|
+
static void *_p_FXFontSelectorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18869
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXFontSelector *) x));
|
18789
18870
|
}
|
18790
|
-
static void *
|
18791
|
-
return (void *)((
|
18871
|
+
static void *_p_FXFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18872
|
+
return (void *)((FXWindow *) ((FXFrame *) x));
|
18792
18873
|
}
|
18793
|
-
static void *
|
18794
|
-
return (void *)((
|
18874
|
+
static void *_p_FXGradientBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18875
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
|
18795
18876
|
}
|
18796
|
-
static void *
|
18797
|
-
return (void *)((
|
18877
|
+
static void *_p_FXGroupBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18878
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
18798
18879
|
}
|
18799
|
-
static void *
|
18800
|
-
return (void *)((
|
18880
|
+
static void *_p_FXHeaderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18881
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXHeader *) x));
|
18801
18882
|
}
|
18802
|
-
static void *
|
18803
|
-
return (void *)((
|
18883
|
+
static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18884
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
18804
18885
|
}
|
18805
|
-
static void *
|
18806
|
-
return (void *)((
|
18886
|
+
static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18887
|
+
return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
|
18807
18888
|
}
|
18808
|
-
static void *
|
18809
|
-
return (void *)((
|
18889
|
+
static void *_p_FXImageFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18890
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
|
18810
18891
|
}
|
18811
|
-
static void *
|
18812
|
-
return (void *)((
|
18892
|
+
static void *_p_FXImageViewTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18893
|
+
return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
18813
18894
|
}
|
18814
|
-
static void *
|
18815
|
-
return (void *)((
|
18895
|
+
static void *_p_FXKnobTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18896
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
|
18816
18897
|
}
|
18817
|
-
static void *
|
18818
|
-
return (void *)((
|
18898
|
+
static void *_p_FXListBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18899
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
|
18819
18900
|
}
|
18820
|
-
static void *
|
18821
|
-
return (void *)((
|
18901
|
+
static void *_p_FXMainWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18902
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
|
18822
18903
|
}
|
18823
|
-
static void *
|
18824
|
-
return (void *)((
|
18904
|
+
static void *_p_FXMatrixTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18905
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
|
18825
18906
|
}
|
18826
|
-
static void *
|
18827
|
-
return (void *)((
|
18907
|
+
static void *_p_FXMenuBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18908
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXDockBar *)(FXToolBar *) ((FXMenuBar *) x));
|
18828
18909
|
}
|
18829
|
-
static void *
|
18830
|
-
return (void *)((
|
18910
|
+
static void *_p_FXMenuCaptionTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18911
|
+
return (void *)((FXWindow *) ((FXMenuCaption *) x));
|
18831
18912
|
}
|
18832
|
-
static void *
|
18833
|
-
return (void *)((
|
18913
|
+
static void *_p_FXMenuCascadeTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18914
|
+
return (void *)((FXWindow *) (FXMenuCaption *) ((FXMenuCascade *) x));
|
18834
18915
|
}
|
18835
|
-
static void *
|
18836
|
-
return (void *)((
|
18916
|
+
static void *_p_FXMenuCheckTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18917
|
+
return (void *)((FXWindow *) (FXMenuCaption *)(FXMenuCommand *) ((FXMenuCheck *) x));
|
18837
18918
|
}
|
18838
|
-
static void *
|
18839
|
-
return (void *)((
|
18919
|
+
static void *_p_FXMenuCommandTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18920
|
+
return (void *)((FXWindow *) (FXMenuCaption *) ((FXMenuCommand *) x));
|
18840
18921
|
}
|
18841
|
-
static void *
|
18842
|
-
return (void *)((
|
18922
|
+
static void *_p_FXMenuPaneTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18923
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXPopup *) ((FXMenuPane *) x));
|
18843
18924
|
}
|
18844
|
-
static void *
|
18845
|
-
return (void *)((
|
18925
|
+
static void *_p_FXMenuRadioTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18926
|
+
return (void *)((FXWindow *) (FXMenuCaption *)(FXMenuCommand *) ((FXMenuRadio *) x));
|
18846
18927
|
}
|
18847
|
-
static void *
|
18848
|
-
return (void *)((
|
18928
|
+
static void *_p_FXMenuSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18929
|
+
return (void *)((FXWindow *) ((FXMenuSeparator *) x));
|
18849
18930
|
}
|
18850
|
-
static void *
|
18851
|
-
return (void *)((
|
18931
|
+
static void *_p_FXMenuTitleTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18932
|
+
return (void *)((FXWindow *) (FXMenuCaption *) ((FXMenuTitle *) x));
|
18852
18933
|
}
|
18853
|
-
static void *
|
18854
|
-
return (void *)((
|
18934
|
+
static void *_p_FXPackerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18935
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
|
18855
18936
|
}
|
18856
|
-
static void *
|
18857
|
-
return (void *)((
|
18937
|
+
static void *_p_FXPopupTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18938
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
|
18858
18939
|
}
|
18859
|
-
static void *
|
18860
|
-
return (void *)((
|
18940
|
+
static void *_p_FXProgressBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18941
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
|
18861
18942
|
}
|
18862
|
-
static void *
|
18863
|
-
return (void *)((
|
18943
|
+
static void *_p_FXRealSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18944
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXRealSlider *) x));
|
18864
18945
|
}
|
18865
|
-
static void *
|
18866
|
-
return (void *)((
|
18946
|
+
static void *_p_FXRealSpinnerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18947
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
|
18867
18948
|
}
|
18868
|
-
static void *
|
18869
|
-
return (void *)((
|
18949
|
+
static void *_p_FXRootWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18950
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
|
18870
18951
|
}
|
18871
|
-
static void *
|
18872
|
-
return (void *)((
|
18952
|
+
static void *_p_FXRulerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18953
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
|
18873
18954
|
}
|
18874
|
-
static void *
|
18875
|
-
return (void *)((
|
18955
|
+
static void *_p_FXRulerViewTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18956
|
+
return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXRulerView *) x));
|
18876
18957
|
}
|
18877
|
-
static void *
|
18878
|
-
return (void *)((
|
18958
|
+
static void *_p_FXScrollAreaTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18959
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
|
18879
18960
|
}
|
18880
|
-
static void *
|
18881
|
-
return (void *)((
|
18961
|
+
static void *_p_FXScrollBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18962
|
+
return (void *)((FXWindow *) ((FXScrollBar *) x));
|
18882
18963
|
}
|
18883
|
-
static void *
|
18884
|
-
return (void *)((
|
18964
|
+
static void *_p_FXScrollCornerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18965
|
+
return (void *)((FXWindow *) ((FXScrollCorner *) x));
|
18885
18966
|
}
|
18886
|
-
static void *
|
18887
|
-
return (void *)((
|
18967
|
+
static void *_p_FXScrollPaneTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18968
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXPopup *)(FXMenuPane *) ((FXScrollPane *) x));
|
18888
18969
|
}
|
18889
|
-
static void *
|
18890
|
-
return (void *)((
|
18970
|
+
static void *_p_FXScrollWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18971
|
+
return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
|
18891
18972
|
}
|
18892
|
-
static void *
|
18893
|
-
return (void *)((
|
18973
|
+
static void *_p_FXSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18974
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
|
18894
18975
|
}
|
18895
|
-
static void *
|
18896
|
-
return (void *)((
|
18976
|
+
static void *_p_FXShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18977
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
|
18897
18978
|
}
|
18898
|
-
static void *
|
18899
|
-
return (void *)((
|
18979
|
+
static void *_p_FXShutterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18980
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
|
18900
18981
|
}
|
18901
|
-
static void *
|
18902
|
-
return (void *)((
|
18982
|
+
static void *_p_FXShutterItemTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18983
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
18903
18984
|
}
|
18904
|
-
static void *
|
18905
|
-
return (void *)((
|
18985
|
+
static void *_p_FXSliderTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18986
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXSlider *) x));
|
18906
18987
|
}
|
18907
|
-
static void *
|
18908
|
-
return (void *)((
|
18988
|
+
static void *_p_FXSpinnerTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18989
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpinner *) x));
|
18909
18990
|
}
|
18910
|
-
static void *
|
18911
|
-
return (void *)((
|
18991
|
+
static void *_p_FXSplashWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18992
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
|
18912
18993
|
}
|
18913
|
-
static void *
|
18914
|
-
return (void *)((
|
18994
|
+
static void *_p_FXSplitterTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18995
|
+
return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
|
18915
18996
|
}
|
18916
|
-
static void *
|
18917
|
-
return (void *)((
|
18997
|
+
static void *_p_FXSpringTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
18998
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
|
18918
18999
|
}
|
18919
|
-
static void *
|
18920
|
-
return (void *)((
|
19000
|
+
static void *_p_FXStatusBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19001
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
18921
19002
|
}
|
18922
|
-
static void *
|
18923
|
-
return (void *)((
|
19003
|
+
static void *_p_FXStatusLineTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19004
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
|
18924
19005
|
}
|
18925
|
-
static void *
|
18926
|
-
return (void *)((
|
19006
|
+
static void *_p_FXSwitcherTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19007
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
|
18927
19008
|
}
|
18928
|
-
static void *
|
18929
|
-
return (void *)((
|
19009
|
+
static void *_p_FXTabBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19010
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTabBar *) x));
|
18930
19011
|
}
|
18931
|
-
static void *
|
18932
|
-
return (void *)((
|
19012
|
+
static void *_p_FXTabBookTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19013
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
|
18933
19014
|
}
|
18934
|
-
static void *
|
18935
|
-
return (void *)((
|
19015
|
+
static void *_p_FXTextFieldTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19016
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
|
18936
19017
|
}
|
18937
|
-
static void *
|
18938
|
-
return (void *)((
|
19018
|
+
static void *_p_FXToolBarTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19019
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
|
18939
19020
|
}
|
18940
|
-
static void *
|
18941
|
-
return (void *)((
|
19021
|
+
static void *_p_FXToolBarGripTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19022
|
+
return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
|
18942
19023
|
}
|
18943
|
-
static void *
|
18944
|
-
return (void *)((
|
19024
|
+
static void *_p_FXToolBarShellTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19025
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
|
18945
19026
|
}
|
18946
|
-
static void *
|
18947
|
-
return (void *)((
|
19027
|
+
static void *_p_FXToolBarTabTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19028
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
|
18948
19029
|
}
|
18949
|
-
static void *
|
18950
|
-
return (void *)((
|
19030
|
+
static void *_p_FXToolTipTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19031
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXToolTip *) x));
|
18951
19032
|
}
|
18952
|
-
static void *
|
18953
|
-
return (void *)((
|
19033
|
+
static void *_p_FXTopWindowTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19034
|
+
return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
|
18954
19035
|
}
|
18955
|
-
static void *
|
18956
|
-
return (void *)((
|
19036
|
+
static void *_p_FXTreeListBoxTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19037
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
|
18957
19038
|
}
|
18958
|
-
static void *
|
18959
|
-
return (void *)((
|
19039
|
+
static void *_p_FXVerticalFrameTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19040
|
+
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
19041
|
+
}
|
19042
|
+
static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
19043
|
+
return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
|
18960
19044
|
}
|
18961
19045
|
static swig_type_info _swigt__p_FXBitmap = {"_p_FXBitmap", "FXBitmap *", 0, 0, (void*)0, 0};
|
18962
19046
|
static swig_type_info _swigt__p_FXComposite = {"_p_FXComposite", "FXComposite *", 0, 0, (void*)0, 0};
|
18963
|
-
static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
|
18964
|
-
static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
|
18965
|
-
static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
|
18966
|
-
static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
|
18967
|
-
static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
|
18968
|
-
static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", 0, 0, 0, 0, 0};
|
18969
|
-
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
18970
|
-
static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
|
18971
|
-
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
18972
|
-
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
18973
|
-
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
18974
|
-
static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
|
18975
|
-
static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", 0, 0, 0, 0, 0};
|
18976
|
-
static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
|
18977
19047
|
static swig_type_info _swigt__p_FX4Splitter = {"_p_FX4Splitter", 0, 0, 0, 0, 0};
|
18978
|
-
static swig_type_info
|
18979
|
-
static swig_type_info
|
18980
|
-
static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
|
19048
|
+
static swig_type_info _swigt__p_FXColorSelector = {"_p_FXColorSelector", 0, 0, 0, 0, 0};
|
19049
|
+
static swig_type_info _swigt__p_FXComboBox = {"_p_FXComboBox", 0, 0, 0, 0, 0};
|
18981
19050
|
static swig_type_info _swigt__p_FXDirBox = {"_p_FXDirBox", 0, 0, 0, 0, 0};
|
18982
19051
|
static swig_type_info _swigt__p_FXDirSelector = {"_p_FXDirSelector", 0, 0, 0, 0, 0};
|
19052
|
+
static swig_type_info _swigt__p_FXDriveBox = {"_p_FXDriveBox", 0, 0, 0, 0, 0};
|
18983
19053
|
static swig_type_info _swigt__p_FXFileSelector = {"_p_FXFileSelector", 0, 0, 0, 0, 0};
|
18984
|
-
static swig_type_info _swigt__p_FXColorSelector = {"_p_FXColorSelector", 0, 0, 0, 0, 0};
|
18985
19054
|
static swig_type_info _swigt__p_FXFontSelector = {"_p_FXFontSelector", 0, 0, 0, 0, 0};
|
18986
|
-
static swig_type_info
|
18987
|
-
static swig_type_info
|
18988
|
-
static swig_type_info
|
19055
|
+
static swig_type_info _swigt__p_FXGroupBox = {"_p_FXGroupBox", 0, 0, 0, 0, 0};
|
19056
|
+
static swig_type_info _swigt__p_FXHorizontalFrame = {"_p_FXHorizontalFrame", 0, 0, 0, 0, 0};
|
19057
|
+
static swig_type_info _swigt__p_FXImageView = {"_p_FXImageView", 0, 0, 0, 0, 0};
|
18989
19058
|
static swig_type_info _swigt__p_FXListBox = {"_p_FXListBox", 0, 0, 0, 0, 0};
|
18990
|
-
static swig_type_info
|
18991
|
-
static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
|
19059
|
+
static swig_type_info _swigt__p_FXMainWindow = {"_p_FXMainWindow", 0, 0, 0, 0, 0};
|
18992
19060
|
static swig_type_info _swigt__p_FXMatrix = {"_p_FXMatrix", 0, 0, 0, 0, 0};
|
18993
|
-
static swig_type_info
|
18994
|
-
static swig_type_info
|
19061
|
+
static swig_type_info _swigt__p_FXRealSpinner = {"_p_FXRealSpinner", 0, 0, 0, 0, 0};
|
19062
|
+
static swig_type_info _swigt__p_FXRootWindow = {"_p_FXRootWindow", 0, 0, 0, 0, 0};
|
19063
|
+
static swig_type_info _swigt__p_FXRulerView = {"_p_FXRulerView", 0, 0, 0, 0, 0};
|
19064
|
+
static swig_type_info _swigt__p_FXScrollArea = {"_p_FXScrollArea", 0, 0, 0, 0, 0};
|
19065
|
+
static swig_type_info _swigt__p_FXScrollWindow = {"_p_FXScrollWindow", 0, 0, 0, 0, 0};
|
19066
|
+
static swig_type_info _swigt__p_FXShutter = {"_p_FXShutter", 0, 0, 0, 0, 0};
|
19067
|
+
static swig_type_info _swigt__p_FXShutterItem = {"_p_FXShutterItem", 0, 0, 0, 0, 0};
|
19068
|
+
static swig_type_info _swigt__p_FXSpinner = {"_p_FXSpinner", 0, 0, 0, 0, 0};
|
19069
|
+
static swig_type_info _swigt__p_FXSplashWindow = {"_p_FXSplashWindow", 0, 0, 0, 0, 0};
|
19070
|
+
static swig_type_info _swigt__p_FXSplitter = {"_p_FXSplitter", 0, 0, 0, 0, 0};
|
18995
19071
|
static swig_type_info _swigt__p_FXSpring = {"_p_FXSpring", 0, 0, 0, 0, 0};
|
19072
|
+
static swig_type_info _swigt__p_FXStatusBar = {"_p_FXStatusBar", 0, 0, 0, 0, 0};
|
19073
|
+
static swig_type_info _swigt__p_FXSwitcher = {"_p_FXSwitcher", 0, 0, 0, 0, 0};
|
19074
|
+
static swig_type_info _swigt__p_FXTabBar = {"_p_FXTabBar", 0, 0, 0, 0, 0};
|
19075
|
+
static swig_type_info _swigt__p_FXTabBook = {"_p_FXTabBook", 0, 0, 0, 0, 0};
|
18996
19076
|
static swig_type_info _swigt__p_FXToolBarShell = {"_p_FXToolBarShell", 0, 0, 0, 0, 0};
|
19077
|
+
static swig_type_info _swigt__p_FXToolTip = {"_p_FXToolTip", 0, 0, 0, 0, 0};
|
19078
|
+
static swig_type_info _swigt__p_FXTopWindow = {"_p_FXTopWindow", 0, 0, 0, 0, 0};
|
19079
|
+
static swig_type_info _swigt__p_FXTreeListBox = {"_p_FXTreeListBox", 0, 0, 0, 0, 0};
|
19080
|
+
static swig_type_info _swigt__p_FXVerticalFrame = {"_p_FXVerticalFrame", 0, 0, 0, 0, 0};
|
18997
19081
|
static swig_type_info _swigt__p_FXDockBar = {"_p_FXDockBar", "FXDockBar *", 0, 0, (void*)0, 0};
|
18998
19082
|
static swig_type_info _swigt__p_FXDockSite = {"_p_FXDockSite", "FXDockSite *", 0, 0, (void*)0, 0};
|
18999
19083
|
static swig_type_info _swigt__p_FXDrawable = {"_p_FXDrawable", "FXDrawable *", 0, 0, (void*)0, 0};
|
19000
|
-
static swig_type_info
|
19001
|
-
static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
|
19002
|
-
static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
|
19003
|
-
static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
|
19004
|
-
static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
|
19084
|
+
static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
|
19005
19085
|
static swig_type_info _swigt__p_FXArrowButton = {"_p_FXArrowButton", 0, 0, 0, 0, 0};
|
19006
|
-
static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
|
19007
|
-
static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
|
19008
|
-
static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
|
19009
|
-
static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
|
19010
|
-
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
|
19011
|
-
static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
|
19012
|
-
static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
|
19013
19086
|
static swig_type_info _swigt__p_FXBitmapFrame = {"_p_FXBitmapFrame", 0, 0, 0, 0, 0};
|
19014
|
-
static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
|
19015
|
-
static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
|
19016
|
-
static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
|
19017
|
-
static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
|
19018
19087
|
static swig_type_info _swigt__p_FXCanvas = {"_p_FXCanvas", 0, 0, 0, 0, 0};
|
19088
|
+
static swig_type_info _swigt__p_FXColorBar = {"_p_FXColorBar", 0, 0, 0, 0, 0};
|
19089
|
+
static swig_type_info _swigt__p_FXColorRing = {"_p_FXColorRing", 0, 0, 0, 0, 0};
|
19090
|
+
static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
|
19019
19091
|
static swig_type_info _swigt__p_FXColorWheel = {"_p_FXColorWheel", 0, 0, 0, 0, 0};
|
19020
19092
|
static swig_type_info _swigt__p_FXDial = {"_p_FXDial", 0, 0, 0, 0, 0};
|
19021
|
-
static swig_type_info
|
19022
|
-
static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
|
19023
|
-
static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
|
19024
|
-
static swig_type_info _swigt__p_FX7Segment = {"_p_FX7Segment", 0, 0, 0, 0, 0};
|
19093
|
+
static swig_type_info _swigt__p_FXDockHandler = {"_p_FXDockHandler", 0, 0, 0, 0, 0};
|
19025
19094
|
static swig_type_info _swigt__p_FXDockTitle = {"_p_FXDockTitle", 0, 0, 0, 0, 0};
|
19026
|
-
static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
|
19027
|
-
static swig_type_info _swigt__p_FXColorWell = {"_p_FXColorWell", 0, 0, 0, 0, 0};
|
19028
19095
|
static swig_type_info _swigt__p_FXDragCorner = {"_p_FXDragCorner", 0, 0, 0, 0, 0};
|
19096
|
+
static swig_type_info _swigt__p_FXFrame = {"_p_FXFrame", 0, 0, 0, 0, 0};
|
19097
|
+
static swig_type_info _swigt__p_FXGradientBar = {"_p_FXGradientBar", 0, 0, 0, 0, 0};
|
19098
|
+
static swig_type_info _swigt__p_FXHeader = {"_p_FXHeader", 0, 0, 0, 0, 0};
|
19099
|
+
static swig_type_info _swigt__p_FXHorizontalSeparator = {"_p_FXHorizontalSeparator", 0, 0, 0, 0, 0};
|
19100
|
+
static swig_type_info _swigt__p_FXImageFrame = {"_p_FXImageFrame", 0, 0, 0, 0, 0};
|
19101
|
+
static swig_type_info _swigt__p_FXKnob = {"_p_FXKnob", 0, 0, 0, 0, 0};
|
19102
|
+
static swig_type_info _swigt__p_FXProgressBar = {"_p_FXProgressBar", 0, 0, 0, 0, 0};
|
19103
|
+
static swig_type_info _swigt__p_FXRealSlider = {"_p_FXRealSlider", 0, 0, 0, 0, 0};
|
19029
19104
|
static swig_type_info _swigt__p_FXRuler = {"_p_FXRuler", 0, 0, 0, 0, 0};
|
19105
|
+
static swig_type_info _swigt__p_FXScrollBar = {"_p_FXScrollBar", 0, 0, 0, 0, 0};
|
19106
|
+
static swig_type_info _swigt__p_FXScrollCorner = {"_p_FXScrollCorner", 0, 0, 0, 0, 0};
|
19107
|
+
static swig_type_info _swigt__p_FXSeparator = {"_p_FXSeparator", 0, 0, 0, 0, 0};
|
19108
|
+
static swig_type_info _swigt__p_FXSlider = {"_p_FXSlider", 0, 0, 0, 0, 0};
|
19109
|
+
static swig_type_info _swigt__p_FXStatusLine = {"_p_FXStatusLine", 0, 0, 0, 0, 0};
|
19110
|
+
static swig_type_info _swigt__p_FXTextField = {"_p_FXTextField", 0, 0, 0, 0, 0};
|
19111
|
+
static swig_type_info _swigt__p_FXToolBarGrip = {"_p_FXToolBarGrip", 0, 0, 0, 0, 0};
|
19112
|
+
static swig_type_info _swigt__p_FXToolBarTab = {"_p_FXToolBarTab", 0, 0, 0, 0, 0};
|
19113
|
+
static swig_type_info _swigt__p_FXVerticalSeparator = {"_p_FXVerticalSeparator", 0, 0, 0, 0, 0};
|
19030
19114
|
static swig_type_info _swigt__p_FXFont = {"_p_FXFont", "FXFont *", 0, 0, (void*)0, 0};
|
19031
19115
|
static swig_type_info _swigt__p_FXIcon = {"_p_FXIcon", "FXIcon *", 0, 0, (void*)0, 0};
|
19032
19116
|
static swig_type_info _swigt__p_FXId = {"_p_FXId", "FXId *", 0, 0, (void*)0, 0};
|
19033
|
-
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
19034
|
-
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
19035
19117
|
static swig_type_info _swigt__p_FXCURCursor = {"_p_FXCURCursor", 0, 0, 0, 0, 0};
|
19118
|
+
static swig_type_info _swigt__p_FXCursor = {"_p_FXCursor", 0, 0, 0, 0, 0};
|
19036
19119
|
static swig_type_info _swigt__p_FXGIFCursor = {"_p_FXGIFCursor", 0, 0, 0, 0, 0};
|
19120
|
+
static swig_type_info _swigt__p_FXVisual = {"_p_FXVisual", 0, 0, 0, 0, 0};
|
19037
19121
|
static swig_type_info _swigt__p_FXMenuBar = {"_p_FXMenuBar", "FXMenuBar *", 0, 0, (void*)0, 0};
|
19038
19122
|
static swig_type_info _swigt__p_FXMenuCaption = {"_p_FXMenuCaption", "FXMenuCaption *", 0, 0, (void*)0, 0};
|
19039
19123
|
static swig_type_info _swigt__p_FXMenuCascade = {"_p_FXMenuCascade", "FXMenuCascade *", 0, 0, (void*)0, 0};
|
@@ -19044,21 +19128,21 @@ static swig_type_info _swigt__p_FXMenuRadio = {"_p_FXMenuRadio", "FXMenuRadio *"
|
|
19044
19128
|
static swig_type_info _swigt__p_FXMenuSeparator = {"_p_FXMenuSeparator", "FXMenuSeparator *", 0, 0, (void*)0, 0};
|
19045
19129
|
static swig_type_info _swigt__p_FXMenuTitle = {"_p_FXMenuTitle", "FXMenuTitle *", 0, 0, (void*)0, 0};
|
19046
19130
|
static swig_type_info _swigt__p_FXObject = {"_p_FXObject", "FXObject *", 0, 0, (void*)0, 0};
|
19131
|
+
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
19132
|
+
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
|
19133
|
+
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
19134
|
+
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
19135
|
+
static swig_type_info _swigt__p_FXDelegator = {"_p_FXDelegator", 0, 0, 0, 0, 0};
|
19136
|
+
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
19047
19137
|
static swig_type_info _swigt__p_FXDocument = {"_p_FXDocument", 0, 0, 0, 0, 0};
|
19048
|
-
static swig_type_info
|
19138
|
+
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
19049
19139
|
static swig_type_info _swigt__p_FXHeaderItem = {"_p_FXHeaderItem", 0, 0, 0, 0, 0};
|
19050
19140
|
static swig_type_info _swigt__p_FXIconDict = {"_p_FXIconDict", 0, 0, 0, 0, 0};
|
19051
|
-
static swig_type_info _swigt__p_FXFileDict = {"_p_FXFileDict", 0, 0, 0, 0, 0};
|
19052
19141
|
static swig_type_info _swigt__p_FXRecentFiles = {"_p_FXRecentFiles", 0, 0, 0, 0, 0};
|
19053
|
-
static swig_type_info
|
19054
|
-
static swig_type_info _swigt__p_FXApp = {"_p_FXApp", 0, 0, 0, 0, 0};
|
19055
|
-
static swig_type_info _swigt__p_FXDict = {"_p_FXDict", 0, 0, 0, 0, 0};
|
19142
|
+
static swig_type_info _swigt__p_FXRegistry = {"_p_FXRegistry", 0, 0, 0, 0, 0};
|
19056
19143
|
static swig_type_info _swigt__p_FXSettings = {"_p_FXSettings", 0, 0, 0, 0, 0};
|
19057
|
-
static swig_type_info _swigt__p_FXDataTarget = {"_p_FXDataTarget", 0, 0, 0, 0, 0};
|
19058
|
-
static swig_type_info _swigt__p_FXDebugTarget = {"_p_FXDebugTarget", 0, 0, 0, 0, 0};
|
19059
19144
|
static swig_type_info _swigt__p_FXStringDict = {"_p_FXStringDict", 0, 0, 0, 0, 0};
|
19060
|
-
static swig_type_info
|
19061
|
-
static swig_type_info _swigt__p_FXAccelTable = {"_p_FXAccelTable", 0, 0, 0, 0, 0};
|
19145
|
+
static swig_type_info _swigt__p_FXTranslator = {"_p_FXTranslator", 0, 0, 0, 0, 0};
|
19062
19146
|
static swig_type_info _swigt__p_FXPacker = {"_p_FXPacker", "FXPacker *", 0, 0, (void*)0, 0};
|
19063
19147
|
static swig_type_info _swigt__p_FXPopup = {"_p_FXPopup", "FXPopup *", 0, 0, (void*)0, 0};
|
19064
19148
|
static swig_type_info _swigt__p_FXRegion = {"_p_FXRegion", "FXRegion *", 0, 0, (void*)0, 0};
|
@@ -19069,16 +19153,16 @@ static swig_type_info _swigt__p_FXFileStream = {"_p_FXFileStream", 0, 0, 0, 0, 0
|
|
19069
19153
|
static swig_type_info _swigt__p_FXMemoryStream = {"_p_FXMemoryStream", 0, 0, 0, 0, 0};
|
19070
19154
|
static swig_type_info _swigt__p_FXToolBar = {"_p_FXToolBar", "FXToolBar *", 0, 0, (void*)0, 0};
|
19071
19155
|
static swig_type_info _swigt__p_FXWindow = {"_p_FXWindow", "FXWindow *", 0, 0, (void*)0, 0};
|
19072
|
-
static swig_type_info _swigt__p_char = {"_p_char", "
|
19073
|
-
static swig_type_info _swigt__p_double = {"_p_double", "
|
19074
|
-
static swig_type_info _swigt__p_float = {"_p_float", "
|
19075
|
-
static swig_type_info _swigt__p_int = {"_p_int", "FXint *|int
|
19076
|
-
static swig_type_info _swigt__p_long = {"_p_long", "
|
19077
|
-
static swig_type_info _swigt__p_short = {"_p_short", "
|
19078
|
-
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXuchar *|unsigned char
|
19079
|
-
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "
|
19080
|
-
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "
|
19081
|
-
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short
|
19156
|
+
static swig_type_info _swigt__p_char = {"_p_char", "FXchar *|char *", 0, 0, (void*)0, 0};
|
19157
|
+
static swig_type_info _swigt__p_double = {"_p_double", "FXdouble *|double *", 0, 0, (void*)0, 0};
|
19158
|
+
static swig_type_info _swigt__p_float = {"_p_float", "FXfloat *|float *", 0, 0, (void*)0, 0};
|
19159
|
+
static swig_type_info _swigt__p_int = {"_p_int", "FXInputHandle *|FXint *|int *", 0, 0, (void*)0, 0};
|
19160
|
+
static swig_type_info _swigt__p_long = {"_p_long", "FXTime *|long *", 0, 0, (void*)0, 0};
|
19161
|
+
static swig_type_info _swigt__p_short = {"_p_short", "FXshort *|short *", 0, 0, (void*)0, 0};
|
19162
|
+
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "FXbool *|FXuchar *|unsigned char *", 0, 0, (void*)0, 0};
|
19163
|
+
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "FXColor *|FXDragType *|FXHotKey *|FXSelector *|FXuint *|FXwchar *|unsigned int *", 0, 0, (void*)0, 0};
|
19164
|
+
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "FXPixel *|FXuval *|unsigned long *", 0, 0, (void*)0, 0};
|
19165
|
+
static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "FXushort *|unsigned short *", 0, 0, (void*)0, 0};
|
19082
19166
|
|
19083
19167
|
static swig_type_info *swig_type_initial[] = {
|
19084
19168
|
&_swigt__p_FX4Splitter,
|
@@ -19205,83 +19289,83 @@ static swig_type_info *swig_type_initial[] = {
|
|
19205
19289
|
};
|
19206
19290
|
|
19207
19291
|
static swig_cast_info _swigc__p_FXBitmap[] = { {&_swigt__p_FXBitmap, 0, 0, 0},{0, 0, 0, 0}};
|
19208
|
-
static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
|
19209
|
-
static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
|
19210
|
-
static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
|
19211
|
-
static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
19212
|
-
static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
|
19213
|
-
static swig_cast_info _swigc__p_FXScrollArea[] = {{&_swigt__p_FXScrollArea, 0, 0, 0},{0, 0, 0, 0}};
|
19214
|
-
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19215
|
-
static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19216
|
-
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19217
|
-
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19218
|
-
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19219
|
-
static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
|
19220
|
-
static swig_cast_info _swigc__p_FXHorizontalFrame[] = {{&_swigt__p_FXHorizontalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19221
|
-
static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19222
19292
|
static swig_cast_info _swigc__p_FX4Splitter[] = {{&_swigt__p_FX4Splitter, 0, 0, 0},{0, 0, 0, 0}};
|
19223
|
-
static swig_cast_info
|
19224
|
-
static swig_cast_info
|
19225
|
-
static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
19293
|
+
static swig_cast_info _swigc__p_FXColorSelector[] = {{&_swigt__p_FXColorSelector, 0, 0, 0},{0, 0, 0, 0}};
|
19294
|
+
static swig_cast_info _swigc__p_FXComboBox[] = {{&_swigt__p_FXComboBox, 0, 0, 0},{0, 0, 0, 0}};
|
19226
19295
|
static swig_cast_info _swigc__p_FXDirBox[] = {{&_swigt__p_FXDirBox, 0, 0, 0},{0, 0, 0, 0}};
|
19227
19296
|
static swig_cast_info _swigc__p_FXDirSelector[] = {{&_swigt__p_FXDirSelector, 0, 0, 0},{0, 0, 0, 0}};
|
19297
|
+
static swig_cast_info _swigc__p_FXDriveBox[] = {{&_swigt__p_FXDriveBox, 0, 0, 0},{0, 0, 0, 0}};
|
19228
19298
|
static swig_cast_info _swigc__p_FXFileSelector[] = {{&_swigt__p_FXFileSelector, 0, 0, 0},{0, 0, 0, 0}};
|
19229
|
-
static swig_cast_info _swigc__p_FXColorSelector[] = {{&_swigt__p_FXColorSelector, 0, 0, 0},{0, 0, 0, 0}};
|
19230
19299
|
static swig_cast_info _swigc__p_FXFontSelector[] = {{&_swigt__p_FXFontSelector, 0, 0, 0},{0, 0, 0, 0}};
|
19231
|
-
static swig_cast_info
|
19232
|
-
static swig_cast_info
|
19233
|
-
static swig_cast_info
|
19300
|
+
static swig_cast_info _swigc__p_FXGroupBox[] = {{&_swigt__p_FXGroupBox, 0, 0, 0},{0, 0, 0, 0}};
|
19301
|
+
static swig_cast_info _swigc__p_FXHorizontalFrame[] = {{&_swigt__p_FXHorizontalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19302
|
+
static swig_cast_info _swigc__p_FXImageView[] = {{&_swigt__p_FXImageView, 0, 0, 0},{0, 0, 0, 0}};
|
19234
19303
|
static swig_cast_info _swigc__p_FXListBox[] = {{&_swigt__p_FXListBox, 0, 0, 0},{0, 0, 0, 0}};
|
19235
|
-
static swig_cast_info
|
19236
|
-
static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
|
19304
|
+
static swig_cast_info _swigc__p_FXMainWindow[] = {{&_swigt__p_FXMainWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19237
19305
|
static swig_cast_info _swigc__p_FXMatrix[] = {{&_swigt__p_FXMatrix, 0, 0, 0},{0, 0, 0, 0}};
|
19238
|
-
static swig_cast_info
|
19239
|
-
static swig_cast_info
|
19306
|
+
static swig_cast_info _swigc__p_FXRealSpinner[] = {{&_swigt__p_FXRealSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
19307
|
+
static swig_cast_info _swigc__p_FXRootWindow[] = {{&_swigt__p_FXRootWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19308
|
+
static swig_cast_info _swigc__p_FXRulerView[] = {{&_swigt__p_FXRulerView, 0, 0, 0},{0, 0, 0, 0}};
|
19309
|
+
static swig_cast_info _swigc__p_FXScrollArea[] = {{&_swigt__p_FXScrollArea, 0, 0, 0},{0, 0, 0, 0}};
|
19310
|
+
static swig_cast_info _swigc__p_FXScrollWindow[] = {{&_swigt__p_FXScrollWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19311
|
+
static swig_cast_info _swigc__p_FXShutter[] = {{&_swigt__p_FXShutter, 0, 0, 0},{0, 0, 0, 0}};
|
19312
|
+
static swig_cast_info _swigc__p_FXShutterItem[] = {{&_swigt__p_FXShutterItem, 0, 0, 0},{0, 0, 0, 0}};
|
19313
|
+
static swig_cast_info _swigc__p_FXSpinner[] = {{&_swigt__p_FXSpinner, 0, 0, 0},{0, 0, 0, 0}};
|
19314
|
+
static swig_cast_info _swigc__p_FXSplashWindow[] = {{&_swigt__p_FXSplashWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19315
|
+
static swig_cast_info _swigc__p_FXSplitter[] = {{&_swigt__p_FXSplitter, 0, 0, 0},{0, 0, 0, 0}};
|
19240
19316
|
static swig_cast_info _swigc__p_FXSpring[] = {{&_swigt__p_FXSpring, 0, 0, 0},{0, 0, 0, 0}};
|
19317
|
+
static swig_cast_info _swigc__p_FXStatusBar[] = {{&_swigt__p_FXStatusBar, 0, 0, 0},{0, 0, 0, 0}};
|
19318
|
+
static swig_cast_info _swigc__p_FXSwitcher[] = {{&_swigt__p_FXSwitcher, 0, 0, 0},{0, 0, 0, 0}};
|
19319
|
+
static swig_cast_info _swigc__p_FXTabBar[] = {{&_swigt__p_FXTabBar, 0, 0, 0},{0, 0, 0, 0}};
|
19320
|
+
static swig_cast_info _swigc__p_FXTabBook[] = {{&_swigt__p_FXTabBook, 0, 0, 0},{0, 0, 0, 0}};
|
19241
19321
|
static swig_cast_info _swigc__p_FXToolBarShell[] = {{&_swigt__p_FXToolBarShell, 0, 0, 0},{0, 0, 0, 0}};
|
19242
|
-
static swig_cast_info
|
19243
|
-
static swig_cast_info
|
19322
|
+
static swig_cast_info _swigc__p_FXToolTip[] = {{&_swigt__p_FXToolTip, 0, 0, 0},{0, 0, 0, 0}};
|
19323
|
+
static swig_cast_info _swigc__p_FXTopWindow[] = {{&_swigt__p_FXTopWindow, 0, 0, 0},{0, 0, 0, 0}};
|
19324
|
+
static swig_cast_info _swigc__p_FXTreeListBox[] = {{&_swigt__p_FXTreeListBox, 0, 0, 0},{0, 0, 0, 0}};
|
19325
|
+
static swig_cast_info _swigc__p_FXVerticalFrame[] = {{&_swigt__p_FXVerticalFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19326
|
+
static swig_cast_info _swigc__p_FXComposite[] = { {&_swigt__p_FXComposite, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXComposite, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXComposite, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXComposite, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXComposite, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMenuBar, _p_FXMenuBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollPane, _p_FXScrollPaneTo_p_FXComposite, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXComposite, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXComposite, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXComposite, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXComposite, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXComposite, 0, 0},{0, 0, 0, 0}};
|
19327
|
+
static swig_cast_info _swigc__p_FXDockBar[] = { {&_swigt__p_FXDockBar, 0, 0, 0}, {&_swigt__p_FXMenuBar, _p_FXMenuBarTo_p_FXDockBar, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXDockBar, 0, 0},{0, 0, 0, 0}};
|
19244
19328
|
static swig_cast_info _swigc__p_FXDockSite[] = { {&_swigt__p_FXDockSite, 0, 0, 0},{0, 0, 0, 0}};
|
19245
|
-
static swig_cast_info
|
19246
|
-
static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
|
19247
|
-
static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
|
19248
|
-
static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
|
19249
|
-
static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
|
19329
|
+
static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
|
19250
19330
|
static swig_cast_info _swigc__p_FXArrowButton[] = {{&_swigt__p_FXArrowButton, 0, 0, 0},{0, 0, 0, 0}};
|
19251
|
-
static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
|
19252
|
-
static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19253
|
-
static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19254
|
-
static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19255
|
-
static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19256
|
-
static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
|
19257
|
-
static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
|
19258
19331
|
static swig_cast_info _swigc__p_FXBitmapFrame[] = {{&_swigt__p_FXBitmapFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19259
|
-
static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
|
19260
|
-
static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
|
19261
|
-
static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
19262
|
-
static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
|
19263
19332
|
static swig_cast_info _swigc__p_FXCanvas[] = {{&_swigt__p_FXCanvas, 0, 0, 0},{0, 0, 0, 0}};
|
19333
|
+
static swig_cast_info _swigc__p_FXColorBar[] = {{&_swigt__p_FXColorBar, 0, 0, 0},{0, 0, 0, 0}};
|
19334
|
+
static swig_cast_info _swigc__p_FXColorRing[] = {{&_swigt__p_FXColorRing, 0, 0, 0},{0, 0, 0, 0}};
|
19335
|
+
static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
|
19264
19336
|
static swig_cast_info _swigc__p_FXColorWheel[] = {{&_swigt__p_FXColorWheel, 0, 0, 0},{0, 0, 0, 0}};
|
19265
19337
|
static swig_cast_info _swigc__p_FXDial[] = {{&_swigt__p_FXDial, 0, 0, 0},{0, 0, 0, 0}};
|
19266
|
-
static swig_cast_info
|
19267
|
-
static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
19268
|
-
static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19269
|
-
static swig_cast_info _swigc__p_FX7Segment[] = {{&_swigt__p_FX7Segment, 0, 0, 0},{0, 0, 0, 0}};
|
19338
|
+
static swig_cast_info _swigc__p_FXDockHandler[] = {{&_swigt__p_FXDockHandler, 0, 0, 0},{0, 0, 0, 0}};
|
19270
19339
|
static swig_cast_info _swigc__p_FXDockTitle[] = {{&_swigt__p_FXDockTitle, 0, 0, 0},{0, 0, 0, 0}};
|
19271
|
-
static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
19272
|
-
static swig_cast_info _swigc__p_FXColorWell[] = {{&_swigt__p_FXColorWell, 0, 0, 0},{0, 0, 0, 0}};
|
19273
19340
|
static swig_cast_info _swigc__p_FXDragCorner[] = {{&_swigt__p_FXDragCorner, 0, 0, 0},{0, 0, 0, 0}};
|
19341
|
+
static swig_cast_info _swigc__p_FXFrame[] = {{&_swigt__p_FXFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19342
|
+
static swig_cast_info _swigc__p_FXGradientBar[] = {{&_swigt__p_FXGradientBar, 0, 0, 0},{0, 0, 0, 0}};
|
19343
|
+
static swig_cast_info _swigc__p_FXHeader[] = {{&_swigt__p_FXHeader, 0, 0, 0},{0, 0, 0, 0}};
|
19344
|
+
static swig_cast_info _swigc__p_FXHorizontalSeparator[] = {{&_swigt__p_FXHorizontalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19345
|
+
static swig_cast_info _swigc__p_FXImageFrame[] = {{&_swigt__p_FXImageFrame, 0, 0, 0},{0, 0, 0, 0}};
|
19346
|
+
static swig_cast_info _swigc__p_FXKnob[] = {{&_swigt__p_FXKnob, 0, 0, 0},{0, 0, 0, 0}};
|
19347
|
+
static swig_cast_info _swigc__p_FXProgressBar[] = {{&_swigt__p_FXProgressBar, 0, 0, 0},{0, 0, 0, 0}};
|
19348
|
+
static swig_cast_info _swigc__p_FXRealSlider[] = {{&_swigt__p_FXRealSlider, 0, 0, 0},{0, 0, 0, 0}};
|
19274
19349
|
static swig_cast_info _swigc__p_FXRuler[] = {{&_swigt__p_FXRuler, 0, 0, 0},{0, 0, 0, 0}};
|
19275
|
-
static swig_cast_info
|
19350
|
+
static swig_cast_info _swigc__p_FXScrollBar[] = {{&_swigt__p_FXScrollBar, 0, 0, 0},{0, 0, 0, 0}};
|
19351
|
+
static swig_cast_info _swigc__p_FXScrollCorner[] = {{&_swigt__p_FXScrollCorner, 0, 0, 0},{0, 0, 0, 0}};
|
19352
|
+
static swig_cast_info _swigc__p_FXSeparator[] = {{&_swigt__p_FXSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19353
|
+
static swig_cast_info _swigc__p_FXSlider[] = {{&_swigt__p_FXSlider, 0, 0, 0},{0, 0, 0, 0}};
|
19354
|
+
static swig_cast_info _swigc__p_FXStatusLine[] = {{&_swigt__p_FXStatusLine, 0, 0, 0},{0, 0, 0, 0}};
|
19355
|
+
static swig_cast_info _swigc__p_FXTextField[] = {{&_swigt__p_FXTextField, 0, 0, 0},{0, 0, 0, 0}};
|
19356
|
+
static swig_cast_info _swigc__p_FXToolBarGrip[] = {{&_swigt__p_FXToolBarGrip, 0, 0, 0},{0, 0, 0, 0}};
|
19357
|
+
static swig_cast_info _swigc__p_FXToolBarTab[] = {{&_swigt__p_FXToolBarTab, 0, 0, 0},{0, 0, 0, 0}};
|
19358
|
+
static swig_cast_info _swigc__p_FXVerticalSeparator[] = {{&_swigt__p_FXVerticalSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19359
|
+
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_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_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_FXImageFrame, _p_FXImageFrameTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_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_FXMenuBar, _p_FXMenuBarTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuCaption, _p_FXMenuCaptionTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuCascade, _p_FXMenuCascadeTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuCheck, _p_FXMenuCheckTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuCommand, _p_FXMenuCommandTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuRadio, _p_FXMenuRadioTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuSeparator, _p_FXMenuSeparatorTo_p_FXDrawable, 0, 0}, {&_swigt__p_FXMenuTitle, _p_FXMenuTitleTo_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_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_FXScrollPane, _p_FXScrollPaneTo_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_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},{0, 0, 0, 0}};
|
19276
19360
|
static swig_cast_info _swigc__p_FXFont[] = { {&_swigt__p_FXFont, 0, 0, 0},{0, 0, 0, 0}};
|
19277
19361
|
static swig_cast_info _swigc__p_FXIcon[] = { {&_swigt__p_FXIcon, 0, 0, 0},{0, 0, 0, 0}};
|
19278
|
-
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
19279
|
-
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
19280
19362
|
static swig_cast_info _swigc__p_FXCURCursor[] = {{&_swigt__p_FXCURCursor, 0, 0, 0},{0, 0, 0, 0}};
|
19363
|
+
static swig_cast_info _swigc__p_FXCursor[] = {{&_swigt__p_FXCursor, 0, 0, 0},{0, 0, 0, 0}};
|
19281
19364
|
static swig_cast_info _swigc__p_FXGIFCursor[] = {{&_swigt__p_FXGIFCursor, 0, 0, 0},{0, 0, 0, 0}};
|
19282
|
-
static swig_cast_info
|
19365
|
+
static swig_cast_info _swigc__p_FXVisual[] = {{&_swigt__p_FXVisual, 0, 0, 0},{0, 0, 0, 0}};
|
19366
|
+
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_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_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_FXImageFrame, _p_FXImageFrameTo_p_FXId, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_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_FXMenuBar, _p_FXMenuBarTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuCaption, _p_FXMenuCaptionTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuCascade, _p_FXMenuCascadeTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuCheck, _p_FXMenuCheckTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuCommand, _p_FXMenuCommandTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuRadio, _p_FXMenuRadioTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuSeparator, _p_FXMenuSeparatorTo_p_FXId, 0, 0}, {&_swigt__p_FXMenuTitle, _p_FXMenuTitleTo_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_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_FXScrollPane, _p_FXScrollPaneTo_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_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},{0, 0, 0, 0}};
|
19283
19367
|
static swig_cast_info _swigc__p_FXMenuBar[] = { {&_swigt__p_FXMenuBar, 0, 0, 0},{0, 0, 0, 0}};
|
19284
|
-
static swig_cast_info _swigc__p_FXMenuCaption[] = { {&_swigt__p_FXMenuCaption, 0, 0, 0}, {&
|
19368
|
+
static swig_cast_info _swigc__p_FXMenuCaption[] = { {&_swigt__p_FXMenuCaption, 0, 0, 0}, {&_swigt__p_FXMenuCascade, _p_FXMenuCascadeTo_p_FXMenuCaption, 0, 0}, {&_swigt__p_FXMenuCheck, _p_FXMenuCheckTo_p_FXMenuCaption, 0, 0}, {&_swigt__p_FXMenuCommand, _p_FXMenuCommandTo_p_FXMenuCaption, 0, 0}, {&_swigt__p_FXMenuRadio, _p_FXMenuRadioTo_p_FXMenuCaption, 0, 0}, {&_swigt__p_FXMenuTitle, _p_FXMenuTitleTo_p_FXMenuCaption, 0, 0},{0, 0, 0, 0}};
|
19285
19369
|
static swig_cast_info _swigc__p_FXMenuCascade[] = { {&_swigt__p_FXMenuCascade, 0, 0, 0},{0, 0, 0, 0}};
|
19286
19370
|
static swig_cast_info _swigc__p_FXMenuCheck[] = { {&_swigt__p_FXMenuCheck, 0, 0, 0},{0, 0, 0, 0}};
|
19287
19371
|
static swig_cast_info _swigc__p_FXMenuCommand[] = { {&_swigt__p_FXMenuCommand, 0, 0, 0}, {&_swigt__p_FXMenuCheck, _p_FXMenuCheckTo_p_FXMenuCommand, 0, 0}, {&_swigt__p_FXMenuRadio, _p_FXMenuRadioTo_p_FXMenuCommand, 0, 0},{0, 0, 0, 0}};
|
@@ -19289,32 +19373,32 @@ static swig_cast_info _swigc__p_FXMenuPane[] = { {&_swigt__p_FXMenuPane, 0, 0,
|
|
19289
19373
|
static swig_cast_info _swigc__p_FXMenuRadio[] = { {&_swigt__p_FXMenuRadio, 0, 0, 0},{0, 0, 0, 0}};
|
19290
19374
|
static swig_cast_info _swigc__p_FXMenuSeparator[] = { {&_swigt__p_FXMenuSeparator, 0, 0, 0},{0, 0, 0, 0}};
|
19291
19375
|
static swig_cast_info _swigc__p_FXMenuTitle[] = { {&_swigt__p_FXMenuTitle, 0, 0, 0},{0, 0, 0, 0}};
|
19376
|
+
static swig_cast_info _swigc__p_FXAccelTable[] = {{&_swigt__p_FXAccelTable, 0, 0, 0},{0, 0, 0, 0}};
|
19377
|
+
static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
|
19378
|
+
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
19379
|
+
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
19380
|
+
static swig_cast_info _swigc__p_FXDelegator[] = {{&_swigt__p_FXDelegator, 0, 0, 0},{0, 0, 0, 0}};
|
19381
|
+
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
19292
19382
|
static swig_cast_info _swigc__p_FXDocument[] = {{&_swigt__p_FXDocument, 0, 0, 0},{0, 0, 0, 0}};
|
19293
|
-
static swig_cast_info
|
19383
|
+
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
19294
19384
|
static swig_cast_info _swigc__p_FXHeaderItem[] = {{&_swigt__p_FXHeaderItem, 0, 0, 0},{0, 0, 0, 0}};
|
19295
19385
|
static swig_cast_info _swigc__p_FXIconDict[] = {{&_swigt__p_FXIconDict, 0, 0, 0},{0, 0, 0, 0}};
|
19296
|
-
static swig_cast_info _swigc__p_FXFileDict[] = {{&_swigt__p_FXFileDict, 0, 0, 0},{0, 0, 0, 0}};
|
19297
19386
|
static swig_cast_info _swigc__p_FXRecentFiles[] = {{&_swigt__p_FXRecentFiles, 0, 0, 0},{0, 0, 0, 0}};
|
19298
|
-
static swig_cast_info
|
19299
|
-
static swig_cast_info _swigc__p_FXApp[] = {{&_swigt__p_FXApp, 0, 0, 0},{0, 0, 0, 0}};
|
19300
|
-
static swig_cast_info _swigc__p_FXDict[] = {{&_swigt__p_FXDict, 0, 0, 0},{0, 0, 0, 0}};
|
19387
|
+
static swig_cast_info _swigc__p_FXRegistry[] = {{&_swigt__p_FXRegistry, 0, 0, 0},{0, 0, 0, 0}};
|
19301
19388
|
static swig_cast_info _swigc__p_FXSettings[] = {{&_swigt__p_FXSettings, 0, 0, 0},{0, 0, 0, 0}};
|
19302
|
-
static swig_cast_info _swigc__p_FXDataTarget[] = {{&_swigt__p_FXDataTarget, 0, 0, 0},{0, 0, 0, 0}};
|
19303
|
-
static swig_cast_info _swigc__p_FXDebugTarget[] = {{&_swigt__p_FXDebugTarget, 0, 0, 0},{0, 0, 0, 0}};
|
19304
19389
|
static swig_cast_info _swigc__p_FXStringDict[] = {{&_swigt__p_FXStringDict, 0, 0, 0},{0, 0, 0, 0}};
|
19305
|
-
static swig_cast_info
|
19306
|
-
static swig_cast_info
|
19307
|
-
static swig_cast_info
|
19308
|
-
static swig_cast_info _swigc__p_FXPacker[] = { {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXPacker, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXPacker, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXPacker, 0, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXPacker, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXPacker, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXPacker, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXPacker, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXMenuBar, _p_FXMenuBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXPacker, 0, 0},{0, 0, 0, 0}};
|
19390
|
+
static swig_cast_info _swigc__p_FXTranslator[] = {{&_swigt__p_FXTranslator, 0, 0, 0},{0, 0, 0, 0}};
|
19391
|
+
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_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_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_FXIconDict, _p_FXIconDictTo_p_FXObject, 0, 0}, {&_swigt__p_FXId, _p_FXIdTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXObject, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_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_FXMenuBar, _p_FXMenuBarTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuCaption, _p_FXMenuCaptionTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuCascade, _p_FXMenuCascadeTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuCheck, _p_FXMenuCheckTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuCommand, _p_FXMenuCommandTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuRadio, _p_FXMenuRadioTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuSeparator, _p_FXMenuSeparatorTo_p_FXObject, 0, 0}, {&_swigt__p_FXMenuTitle, _p_FXMenuTitleTo_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_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_FXScrollPane, _p_FXScrollPaneTo_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_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},{0, 0, 0, 0}};
|
19392
|
+
static swig_cast_info _swigc__p_FXPacker[] = { {&_swigt__p_FXPacker, 0, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXPacker, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXPacker, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXPacker, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXPacker, 0, 0}, {&_swigt__p_FXMenuBar, _p_FXMenuBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXPacker, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXPacker, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXPacker, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXPacker, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXPacker, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXPacker, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXPacker, 0, 0},{0, 0, 0, 0}};
|
19309
19393
|
static swig_cast_info _swigc__p_FXPopup[] = { {&_swigt__p_FXPopup, 0, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXPopup, 0, 0}, {&_swigt__p_FXScrollPane, _p_FXScrollPaneTo_p_FXPopup, 0, 0},{0, 0, 0, 0}};
|
19310
19394
|
static swig_cast_info _swigc__p_FXRegion[] = { {&_swigt__p_FXRegion, 0, 0, 0},{0, 0, 0, 0}};
|
19311
19395
|
static swig_cast_info _swigc__p_FXScrollPane[] = { {&_swigt__p_FXScrollPane, 0, 0, 0},{0, 0, 0, 0}};
|
19312
|
-
static swig_cast_info _swigc__p_FXShell[] = { {&_swigt__p_FXShell, 0, 0, 0}, {&
|
19396
|
+
static swig_cast_info _swigc__p_FXShell[] = { {&_swigt__p_FXShell, 0, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXShell, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXShell, 0, 0}, {&_swigt__p_FXScrollPane, _p_FXScrollPaneTo_p_FXShell, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXShell, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXShell, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXShell, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXShell, 0, 0},{0, 0, 0, 0}};
|
19313
19397
|
static swig_cast_info _swigc__p_FXFileStream[] = {{&_swigt__p_FXFileStream, 0, 0, 0},{0, 0, 0, 0}};
|
19314
19398
|
static swig_cast_info _swigc__p_FXMemoryStream[] = {{&_swigt__p_FXMemoryStream, 0, 0, 0},{0, 0, 0, 0}};
|
19315
|
-
static swig_cast_info _swigc__p_FXStream[] = { {&
|
19316
|
-
static swig_cast_info _swigc__p_FXToolBar[] = { {&
|
19317
|
-
static swig_cast_info _swigc__p_FXWindow[] = { {&
|
19399
|
+
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}};
|
19400
|
+
static swig_cast_info _swigc__p_FXToolBar[] = { {&_swigt__p_FXToolBar, 0, 0, 0}, {&_swigt__p_FXMenuBar, _p_FXMenuBarTo_p_FXToolBar, 0, 0},{0, 0, 0, 0}};
|
19401
|
+
static swig_cast_info _swigc__p_FXWindow[] = { {&_swigt__p_FXWindow, 0, 0, 0}, {&_swigt__p_FX4Splitter, _p_FX4SplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FX7Segment, _p_FX7SegmentTo_p_FXWindow, 0, 0}, {&_swigt__p_FXArrowButton, _p_FXArrowButtonTo_p_FXWindow, 0, 0}, {&_swigt__p_FXBitmapFrame, _p_FXBitmapFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXCanvas, _p_FXCanvasTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorBar, _p_FXColorBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorRing, _p_FXColorRingTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorSelector, _p_FXColorSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWell, _p_FXColorWellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXColorWheel, _p_FXColorWheelTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComboBox, _p_FXComboBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXComposite, _p_FXCompositeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDial, _p_FXDialTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirBox, _p_FXDirBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDirSelector, _p_FXDirSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockBar, _p_FXDockBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockHandler, _p_FXDockHandlerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockSite, _p_FXDockSiteTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDockTitle, _p_FXDockTitleTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDragCorner, _p_FXDragCornerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXDriveBox, _p_FXDriveBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFileSelector, _p_FXFileSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFontSelector, _p_FXFontSelectorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXFrame, _p_FXFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGradientBar, _p_FXGradientBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXGroupBox, _p_FXGroupBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHeader, _p_FXHeaderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalFrame, _p_FXHorizontalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXHorizontalSeparator, _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageFrame, _p_FXImageFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXImageView, _p_FXImageViewTo_p_FXWindow, 0, 0}, {&_swigt__p_FXKnob, _p_FXKnobTo_p_FXWindow, 0, 0}, {&_swigt__p_FXListBox, _p_FXListBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMainWindow, _p_FXMainWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMatrix, _p_FXMatrixTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuBar, _p_FXMenuBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuCaption, _p_FXMenuCaptionTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuCascade, _p_FXMenuCascadeTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuCheck, _p_FXMenuCheckTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuCommand, _p_FXMenuCommandTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuPane, _p_FXMenuPaneTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuRadio, _p_FXMenuRadioTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuSeparator, _p_FXMenuSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXMenuTitle, _p_FXMenuTitleTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPacker, _p_FXPackerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXPopup, _p_FXPopupTo_p_FXWindow, 0, 0}, {&_swigt__p_FXProgressBar, _p_FXProgressBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSlider, _p_FXRealSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRealSpinner, _p_FXRealSpinnerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRootWindow, _p_FXRootWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRuler, _p_FXRulerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXRulerView, _p_FXRulerViewTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollArea, _p_FXScrollAreaTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollBar, _p_FXScrollBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollCorner, _p_FXScrollCornerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollPane, _p_FXScrollPaneTo_p_FXWindow, 0, 0}, {&_swigt__p_FXScrollWindow, _p_FXScrollWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSeparator, _p_FXSeparatorTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShell, _p_FXShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutter, _p_FXShutterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXShutterItem, _p_FXShutterItemTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSlider, _p_FXSliderTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpinner, _p_FXSpinnerTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplashWindow, _p_FXSplashWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSplitter, _p_FXSplitterTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSpring, _p_FXSpringTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusBar, _p_FXStatusBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXStatusLine, _p_FXStatusLineTo_p_FXWindow, 0, 0}, {&_swigt__p_FXSwitcher, _p_FXSwitcherTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabBar, _p_FXTabBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTabBook, _p_FXTabBookTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTextField, _p_FXTextFieldTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBar, _p_FXToolBarTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarGrip, _p_FXToolBarGripTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarShell, _p_FXToolBarShellTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolBarTab, _p_FXToolBarTabTo_p_FXWindow, 0, 0}, {&_swigt__p_FXToolTip, _p_FXToolTipTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTopWindow, _p_FXTopWindowTo_p_FXWindow, 0, 0}, {&_swigt__p_FXTreeListBox, _p_FXTreeListBoxTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalFrame, _p_FXVerticalFrameTo_p_FXWindow, 0, 0}, {&_swigt__p_FXVerticalSeparator, _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0},{0, 0, 0, 0}};
|
19318
19402
|
static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
|
19319
19403
|
static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}};
|
19320
19404
|
static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -19505,9 +19589,12 @@ extern "C" {
|
|
19505
19589
|
#define SWIGRUNTIME_DEBUG
|
19506
19590
|
#endif
|
19507
19591
|
|
19592
|
+
#ifndef SWIG_INIT_CLIENT_DATA_TYPE
|
19593
|
+
#define SWIG_INIT_CLIENT_DATA_TYPE void *
|
19594
|
+
#endif
|
19508
19595
|
|
19509
19596
|
SWIGRUNTIME void
|
19510
|
-
SWIG_InitializeModule(
|
19597
|
+
SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
|
19511
19598
|
size_t i;
|
19512
19599
|
swig_module_info *module_head, *iter;
|
19513
19600
|
int init;
|