Logo ROOT   6.08/07
Reference Guide
TSliderBox.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_TSliderBox
13 #define ROOT_TSliderBox
14 
15 
16 #ifndef ROOT_TWbox
17 #include "TWbox.h"
18 #endif
19 
20 class TSlider;
21 
22 class TSliderBox : public TWbox {
23 
24 protected:
25  TSlider *fSlider; ///< Pointer to slider
26 
28  : TWbox(sb), fSlider(sb.fSlider) { }
30  {if(this!=&sb) {TWbox::operator=(sb); fSlider=sb.fSlider;}
31  return *this; }
32 
33 public:
34  TSliderBox();
36  Color_t color=18, Short_t bordersize=2 ,Short_t bordermode=-1);
37  virtual ~TSliderBox();
38  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
39  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
40  void SetSlider(TSlider*slider) {fSlider=slider;}
41 
42  ClassDef(TSliderBox,1) //The moving box of a TSlider
43 };
44 
45 #endif
46 
TBox & operator=(const TBox &)
Assignment operator.
Definition: TBox.cxx:92
const char Option_t
Definition: RtypesCore.h:62
TSliderBox()
SliderBox default constructor.
Definition: TSliderBox.cxx:31
int Int_t
Definition: RtypesCore.h:41
The moving box in a TSlider.
Definition: TSliderBox.h:22
A specialized TPad including a TSliderBox object.
Definition: TSlider.h:20
static const double x2[5]
#define ClassDef(name, id)
Definition: Rtypes.h:254
A TBox with a bordersize and a bordermode.
Definition: TWbox.h:24
short Color_t
Definition: RtypesCore.h:79
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Interaction with a slider.
Definition: TSliderBox.cxx:55
void SetSlider(TSlider *slider)
Definition: TSliderBox.h:40
virtual ~TSliderBox()
SliderBox default destructor.
Definition: TSliderBox.cxx:48
short Short_t
Definition: RtypesCore.h:35
static const double x1[5]
double Double_t
Definition: RtypesCore.h:55
TSliderBox & operator=(const TSliderBox &sb)
Definition: TSliderBox.h:29
TSliderBox(const TSliderBox &sb)
Definition: TSliderBox.h:27
TSlider * fSlider
Pointer to slider.
Definition: TSliderBox.h:25
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TSliderBox.cxx:291