X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fwx%2Fsrc%2FbbwxSlider.h;h=93e615cba1e3e4319124b0f6b2b38933019a7c4a;hb=628ffd12c8c2b53346866015dae6603e37643be3;hp=c3a763cb77987d0d8f9035bf2781135d4a7da0a3;hpb=5196156e0ab3bdf5ea8205d9cbccf558ca3004ad;p=bbtk.git diff --git a/packages/wx/src/bbwxSlider.h b/packages/wx/src/bbwxSlider.h index c3a763c..93e615c 100644 --- a/packages/wx/src/bbwxSlider.h +++ b/packages/wx/src/bbwxSlider.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbwxSlider.h,v $ Language: C++ - Date: $Date: 2009/02/10 14:56:50 $ - Version: $Revision: 1.16 $ + Date: $Date: 2009/05/15 14:58:03 $ + Version: $Revision: 1.18 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -63,15 +63,11 @@ // bbPACKAGENAME namespace bbwx { - - - //------------------------------------------------------------------------ // The black box class bbwx_EXPORT Slider : public bbtk::WxBlackBox - { - + { BBTK_BLACK_BOX_INTERFACE(Slider,bbtk::WxBlackBox); BBTK_DECLARE_INPUT(In,int); BBTK_DECLARE_INPUT(Min,int); @@ -88,7 +84,7 @@ namespace bbwx void CreateWidget(wxWindow*); protected: - virtual void bbUserConstructor(); + }; //================================================================= @@ -99,19 +95,18 @@ namespace bbwx BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr"); // Already inserted for any WxBlackBox BBTK_CATEGORY("widget"); BBTK_DESCRIPTION("Slider widget (wxSlider)"); - BBTK_INPUT(Slider,In,"Initial position of the slider (default 0)",int,""); - BBTK_INPUT(Slider,Min,"Minimum value of the slider (default 0)",int,""); - BBTK_INPUT(Slider,Max,"Maximum value of the slider (default 500)",int,""); - BBTK_INPUT(Slider,Label,"Show slider labels ? (default FALSE) ",bool,""); - BBTK_INPUT(Slider,Title,"Title shown above the slider (default '') ", std::string,""); - BBTK_INPUT(Slider,Orientation, "Orientation : (default H) 0=H=HORIZONTAL, 1=V=VERTICAL ",std::string,""); - BBTK_INPUT(Slider,ChangeResolution, "Can the user change the resolution of the slider ? (default FALSE) ",bool,""); - BBTK_INPUT(Slider,ReactiveOnTrack, "Slider sends info when track moves (default : FALSE)",bool,""); + BBTK_INPUT(Slider,In, "Initial position of the slider (default 0)", int, ""); + BBTK_INPUT(Slider,Min, "Minimum value of the slider (default 0)", int, ""); + BBTK_INPUT(Slider,Max, "Maximum value of the slider (default 500)", int, ""); + BBTK_INPUT(Slider,Label, "Show slider labels ? (default FALSE) ", bool, ""); + BBTK_INPUT(Slider,Title, "Title shown above the slider (default '') ", std::string, ""); + BBTK_INPUT(Slider,Orientation, "Orientation : (default H) 0=H=HORIZONTAL, 1=V=VERTICAL ", std::string, ""); + BBTK_INPUT(Slider,ChangeResolution, "Can the user change the resolution of the slider ? (default FALSE) ", bool, ""); + BBTK_INPUT(Slider,ReactiveOnTrack, "Slider sends info when track moves (default : FALSE)", bool, ""); + BBTK_OUTPUT(Slider,Out,"Current position of the slider",int,""); BBTK_END_DESCRIBE_BLACK_BOX(Slider); //================================================================= - - } //namespace bbwx