Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TSlider.h
Go to the documentation of this file.
1 // @(#)root/gpad:$Id$
2 // Author: Rene Brun 23/11/96
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TSlider
13 #define ROOT_TSlider
14 
15 
16 #include "TPad.h"
17 
18 class TSlider : public TPad {
19 
20 protected:
21  Double_t fMinimum; ///< Slider minimum value in [0,1]
22  Double_t fMaximum; ///< Slider maximum value in [0,1]
23  TObject *fObject; ///<!Pointer to associated object
24  TString fMethod; ///< command to be executed when slider is changed
25 
26 private:
27  TSlider(const TSlider &org); // no copy, use TObject::Clone()
28  TSlider &operator=(const TSlider &rhs); // idem
29 
30 public:
31  TSlider();
32  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);
33  virtual ~TSlider();
34  TObject *GetObject() const {return fObject;}
35  Double_t GetMinimum() const {return fMinimum;}
36  Double_t GetMaximum() const {return fMaximum;}
37  virtual const char *GetMethod() const { return fMethod.Data(); }
38  virtual void Paint(Option_t *option="");
39  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
40  virtual void SetMethod(const char *method) { fMethod=method; } // *MENU*
41  void SetObject(TObject *obj=0) {fObject=obj;}
42  virtual void SetMinimum(Double_t min=0) {fMinimum=min;}
43  virtual void SetMaximum(Double_t max=1) {fMaximum=max;}
44  virtual void SetRange(Double_t xmin=0, Double_t xmax=1);
45 
46  ClassDef(TSlider,1) //A user interface slider.
47 };
48 
49 #endif
50