diff --git a/ext/fox16/MANIFEST b/ext/fox16/MANIFEST index 4eb4f60315926e7500f352a278f45f9359ce7d45..fd5ea8efbe4f472a718b59df4e74782c40b1032f 100755 --- a/ext/fox16/MANIFEST +++ b/ext/fox16/MANIFEST @@ -148,6 +148,7 @@ include/FXRbShutter.h include/FXRbShutterVirtuals.h include/FXRbSlider.h include/FXRbSpinner.h +include/FXRbSplashWindow.h include/FXRbSplitter.h include/FXRbStatusbar.h include/FXRbStatusline.h diff --git a/ext/fox16/include/impl.h b/ext/fox16/include/impl.h index 5e9f28bc4b84519d66851b7e2310039292c95bc7..822b1644b48e6a474a1738de2874bf854fe81eea 100644 --- a/ext/fox16/include/impl.h +++ b/ext/fox16/include/impl.h @@ -166,6 +166,7 @@ FXRbIMPLEMENT(FXRbShutter,FXShutter,NULL,0) FXRbIMPLEMENT(FXRbShutterItem,FXShutterItem,NULL,0) FXRbIMPLEMENT(FXRbSlider,FXSlider,NULL,0) FXRbIMPLEMENT(FXRbSpinner,FXSpinner,NULL,0) +FXRbIMPLEMENT(FXRbSplashWindow,FXSplashWindow,NULL,0) FXRbIMPLEMENT(FXRbSplitter,FXSplitter,NULL,0) FXRbIMPLEMENT(FXRbSpring,FXSpring,NULL,0) FXRbIMPLEMENT(FXRbStatusBar,FXStatusBar,NULL,0) diff --git a/swig-interfaces/FXSplashWindow.i b/swig-interfaces/FXSplashWindow.i index 02c59cff7f63e3aebc5846b539cc30ef96667b68..bd0937f6b61781fa1c95c54f664b10eb36429bce 100644 --- a/swig-interfaces/FXSplashWindow.i +++ b/swig-interfaces/FXSplashWindow.i @@ -52,11 +52,17 @@ public: long onPaint(FXObject*,FXSelector,void* PTR_EVENT); public: - /// Construct splash window - FXSplashWindow(FXApp* a,FXIcon* ic,FXuint opts=SPLASH_SIMPLE,FXuint ms=5000); + %extend { + /// Construct splash window + FXSplashWindow(FXApp* a,FXIcon* ic,FXuint opts=SPLASH_SIMPLE,FXuint ms=5000){ + return new FXRbSplashWindow(a,ic,opts,ms); + } - /// Construct splash window - FXSplashWindow(FXWindow* own,FXIcon* ic,FXuint opts=SPLASH_SIMPLE,FXuint ms=5000); + /// Construct splash window + FXSplashWindow(FXWindow* own,FXIcon* ic,FXuint opts=SPLASH_SIMPLE,FXuint ms=5000){ + return new FXRbSplashWindow(own,ic,opts,ms); + } + } /// Set the icon for the splash window void setIcon(FXIcon* ic);