Program: bbtk
Module: $RCSfile: bbwxSlider.cxx,v $
Language: C++
- Date: $Date: 2009/04/16 14:17:50 $
- Version: $Revision: 1.22 $
+ Date: $Date: 2009/04/16 16:08:23 $
+ Version: $Revision: 1.23 $
=========================================================================*/
/* ---------------------------------------------------------------------
// Accessors
void SetValue(int v) { mwxSlider->SetValue(v); }
int GetValue() { return mwxSlider->GetValue(); }
+ int GetMin() {return min;}
+ int GetMax() {return max;}
void SetRange(int min, int max);
// Update the texts which display the min/max/current values of the slider
void RefreshLabels();
bbtkDebugMessage("process",3,
"Slider "<<bbGetName()<<" input="
<<bbGetInputIn()<<std::endl);
-
+
+// desperate try // JPR
+ if ( bbGetInputMin() != ((SliderWidget*)bbGetOutputWidget())->GetMin() || bbGetInputMax() != ((SliderWidget*)bbGetOutputWidget())->GetMax() )
+ {
+ ((SliderWidget*)bbGetOutputWidget())->SetRange(bbGetInputMin(),bbGetInputMax()) ;
+ }
+
bbSetOutputOut( bbGetInputIn() );
if (bbGetOutputWidget()!=0)
{
Program: bbtk
Module: $RCSfile: bbwxSlider.h,v $
Language: C++
- Date: $Date: 2009/02/10 14:56:50 $
- Version: $Revision: 1.16 $
+ Date: $Date: 2009/04/16 16:08:23 $
+ Version: $Revision: 1.17 $
=========================================================================*/
/* ---------------------------------------------------------------------
// 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);
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