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