X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fwx%2Fsrc%2FbbwxSlider.h;h=39aecd9f2d47b0fa15e7c3fde3bea3ea3a3f3749;hb=e6b2de923e0e69c303c7d18fb8a5c1970541bb3a;hp=3a17e3d3b168711c42ac452d19b2939475422480;hpb=998354bb81a4f450cae3a2263838d7d3b6024bac;p=bbtk.git diff --git a/packages/wx/src/bbwxSlider.h b/packages/wx/src/bbwxSlider.h index 3a17e3d..39aecd9 100644 --- a/packages/wx/src/bbwxSlider.h +++ b/packages/wx/src/bbwxSlider.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbwxSlider.h,v $ Language: C++ - Date: $Date: 2008/02/05 12:16:56 $ - Version: $Revision: 1.5 $ + Date: $Date: 2008/07/25 07:44:12 $ + Version: $Revision: 1.12 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -14,7 +14,7 @@ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. -=========================================================================*//** +=========================================================================*/ /** * \file * \brief Short description in one line @@ -31,10 +31,8 @@ * \brief */ - #ifdef _USE_WXWIDGETS_ - // Prevents multiple inclusions : use symbols of the form // __FILENAME_INCLUDED__ // where FILENAME must be replaced by the actual file name @@ -52,18 +50,9 @@ namespace bbwx { - - - - - //-------------------------------------------------------------------------- // Forward declaration of the box class Slider; - //-------------------------------------------------------------------------- - - - //-------------------------------------------------------------------------- // The widget created by the box @@ -122,13 +111,13 @@ namespace bbwx class /*BBTK_EXPORT*/ Slider : public bbtk::WxBlackBox { - BBTK_USER_BLACK_BOX_INTERFACE(Slider,bbtk::WxBlackBox); + BBTK_BLACK_BOX_INTERFACE(Slider,bbtk::WxBlackBox); BBTK_DECLARE_INPUT(In,int); BBTK_DECLARE_INPUT(Min,int); BBTK_DECLARE_INPUT(Max,int); BBTK_DECLARE_INPUT(Label,bool); BBTK_DECLARE_INPUT(Title,std::string); - BBTK_DECLARE_INPUT(Orientation,int); + BBTK_DECLARE_INPUT(Orientation,std::string); BBTK_DECLARE_INPUT(ChangeResolution,bool); BBTK_DECLARE_INPUT(ReactiveOnTrack,int); BBTK_DECLARE_OUTPUT(Out,int); @@ -147,21 +136,17 @@ namespace bbwx BBTK_BEGIN_DESCRIBE_BLACK_BOX(Slider,bbtk::WxBlackBox); BBTK_NAME("Slider"); BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr"); - BBTK_CATEGORY("widget"); + // 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 : 0=Horizontal / 1=Vertical (default 0)",int); - 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 0 = no)",int); - BBTK_OUTPUT(Slider,Out,"Current position of the slider",int); + 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 0 = no)",int,""); + BBTK_OUTPUT(Slider,Out,"Current position of the slider",int,""); BBTK_END_DESCRIBE_BLACK_BOX(Slider); //=================================================================