#ifndef ROOT_TSlider
#define ROOT_TSlider
#ifndef ROOT_TPad
#include "TPad.h"
#endif
class TSlider : public TPad {
protected:
   Double_t      fMinimum;      
   Double_t      fMaximum;      
   TObject      *fObject;       
   TString       fMethod;       
private:
   TSlider(const TSlider &org);             
   TSlider &operator=(const TSlider &rhs);  
public:
   TSlider();
   TSlider(const char *name, const char *title, Double_t x1, Double_t y1,Double_t x2 ,Double_t y2, Color_t color=16, Short_t bordersize=2, Short_t bordermode =-1);
   virtual ~TSlider();
   TObject      *GetObject()  const {return fObject;}
   Double_t      GetMinimum() const {return fMinimum;}
   Double_t      GetMaximum() const {return fMaximum;}
   virtual const char *GetMethod() const { return fMethod.Data(); }
   virtual void  Paint(Option_t *option="");
   virtual void  SavePrimitive(ostream &out, Option_t *option = "");
   virtual void  SetMethod(const char *method) { fMethod=method; } 
   void          SetObject(TObject *obj=0) {fObject=obj;}
   virtual void  SetMinimum(Double_t min=0) {fMinimum=min;}
   virtual void  SetMaximum(Double_t max=1) {fMaximum=max;}
   virtual void  SetRange(Double_t xmin=0, Double_t xmax=1);
   ClassDef(TSlider,1)  
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.