Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TSlider.cxx
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 #include "Riostream.h"
13 #include "TROOT.h"
14 #include "TSlider.h"
15 #include "TSliderBox.h"
16 
17 #include <string.h>
18 
19 ClassImp(TSlider);
20 
21 /** \class TSlider
22 \ingroup gpad
23 
24 A specialized TPad including a TSliderBox object.
25 The TSliderBox can be moved in the pad.
26 
27 Slider drawing options include the possibility to change the slider
28 starting and ending positions or only one of them.
29 
30 The current slider position can be retrieved via the functions
31 TSlider::GetMinimum and TSlider::GetMaximum
32  These two functions return numbers in the range [0,1].
33 
34 If a method has been set (via TSlider::SetMethod), the expression is
35 executed via the interpreter when the button 1 is released.
36 
37  if no method has been set, and an object is referenced (TSlider::SetObject
38  has been called), while the slider is being moved/resized,
39  the object ExecuteEvent function is called.
40 
41 ### Example 1 using TSlider::SetMethod
42 
43 #### macro xyslider.C
44 
45 ~~~ {.cpp}
46 void xyslider()
47 {
48  // Example of macro featuring two sliders
49  TFile *f = new TFile("hsimple.root");
50  TH2F *hpxpy = (TH2F*)f->Get("hpxpy");
51  TCanvas *c1 = new TCanvas("c1");
52  TPad *pad = new TPad("pad","Color plot pad",0.1,0.1,0.98,0.98);
53  pad->Draw();
54  pad->cd();
55  hpxpy->Draw("COLZ");
56  c1->cd();
57 
58  // Create two sliders in main canvas. When button1 will be released
59  // the macro action.C will be called.
60  TSlider *xslider = new TSlider("xslider","x",0.1,0.02,0.98,0.08);
61  xslider->SetMethod(".x action.C");
62  TSlider *yslider = new TSlider("yslider","y",0.02,0.1,0.06,0.98);
63  yslider->SetMethod(".x action.C");
64 }
65 ~~~
66 
67 #### macro action.C
68 
69 ~~~ {.cpp}
70 void action()
71 {
72  Int_t nx = hpxpy->GetXaxis()->GetNbins();
73  Int_t ny = hpxpy->GetYaxis()->GetNbins();
74  Int_t binxmin = nx*xslider->GetMinimum();
75  Int_t binxmax = nx*xslider->GetMaximum();
76  hpxpy->GetXaxis()->SetRange(binxmin,binxmax);
77  Int_t binymin = ny*yslider->GetMinimum();
78  Int_t binymax = ny*yslider->GetMaximum();
79  hpxpy->GetYaxis()->SetRange(binymin,binymax);
80  pad->cd();
81  hpxpy->Draw("COLZ");
82  c1->Update();
83 }
84 ~~~
85 
86 The canvas and the sliders created in the above macro are shown in the picture
87 below.
88 
89 \image html gpad_slider.png
90 
91 ### Example 2 using TSlider::SetObject macro xyslider.C
92 
93  Same example as above. Instead of TSlider::SetMethod:
94 ~~~ {.cpp}
95  Myclass *obj = new Myclass(); // Myclass derived from TObject
96  xslider->SetObject(obj);
97  yslider->SetObject(obj);
98 ~~~
99 
100 When the slider will be changed, MyClass::ExecuteEvent will be called with px=0
101 and py = 0
102 */
103 
104 ////////////////////////////////////////////////////////////////////////////////
105 /// slider default constructor.
106 
107 TSlider::TSlider(): TPad()
108 {
109  fObject = 0;
110  fMethod = "";
111  fMinimum = 0;
112  fMaximum = 1;
113 }
114 
115 ////////////////////////////////////////////////////////////////////////////////
116 /// Slider normal constructor.
117 ///
118 /// x1,y1,x2,y2 are in pad user coordinates
119 
120 TSlider::TSlider(const char *name, const char *title, Double_t x1, Double_t y1,Double_t x2, Double_t y2, Color_t color, Short_t bordersize, Short_t bordermode)
121  :TPad(name,title,0.1,0.1,0.9,0.9,color,bordersize,bordermode)
122 {
123  if (!gPad) return;
124 
125  Double_t x1pad = gPad->GetX1();
126  Double_t x2pad = gPad->GetX2();
127  Double_t y1pad = gPad->GetY1();
128  Double_t y2pad = gPad->GetY2();
129  Double_t xmin = (x1-x1pad)/(x2pad-x1pad);
130  Double_t ymin = (y1-y1pad)/(y2pad-y1pad);
131  Double_t xmax = (x2-x1pad)/(x2pad-x1pad);
132  Double_t ymax = (y2-y1pad)/(y2pad-y1pad);
133  SetPad(xmin,ymin,xmax,ymax);
134  Range(0,0,1,1);
135 
136  SetBit(kCanDelete);
137  Modified(kTRUE);
138 
139  fMinimum = 0;
140  fMaximum = 1;
141  fObject = 0;
142  fMethod = "";
143  Double_t dx = PixeltoX(bordersize);
144  Double_t dy = PixeltoY(-bordersize);
145  TSliderBox *sbox = new TSliderBox(dx,dy,1-dx,1-dy,color,bordersize,-bordermode);
146  sbox->SetSlider(this);
147  fPrimitives->Add(sbox);
148  AppendPad();
149 }
150 
151 ////////////////////////////////////////////////////////////////////////////////
152 /// slider default destructor.
153 
154 TSlider::~TSlider()
155 {
156 }
157 
158 ////////////////////////////////////////////////////////////////////////////////
159 /// Paint this slider with its current attributes.
160 
161 void TSlider::Paint(Option_t *option)
162 {
163  TPad::Paint(option);
164 }
165 
166 ////////////////////////////////////////////////////////////////////////////////
167 /// Save primitive as a C++ statement(s) on output stream out
168 
169 void TSlider::SavePrimitive(std::ostream &out, Option_t * /*= ""*/)
170 {
171  TPad *padsav = (TPad*)gPad;
172  char quote = '"';
173  if (gROOT->ClassSaved(TSlider::Class())) {
174  out<<" ";
175  } else {
176  out<<" TSlider *";
177  }
178  out<<"slider = new TSlider("<<quote<<GetName()<<quote<<", "<<quote<<GetTitle()
179  <<quote
180  <<","<<fXlowNDC
181  <<","<<fYlowNDC
182  <<","<<fXlowNDC+fWNDC
183  <<","<<fYlowNDC+fHNDC
184  <<");"<<std::endl;
185 
186  SaveFillAttributes(out,"slider",0,1001);
187  SaveLineAttributes(out,"slider",1,1,1);
188 
189  if (GetBorderSize() != 2) {
190  out<<" slider->SetBorderSize("<<GetBorderSize()<<");"<<std::endl;
191  }
192  if (GetBorderMode() != -1) {
193  out<<" slider->SetBorderMode("<<GetBorderMode()<<");"<<std::endl;
194  }
195  Int_t lenMethod = strlen(GetMethod());
196  if (lenMethod > 0) {
197  out<<" slider->SetMethod("<<quote<<GetMethod()<<quote<<");"<<std::endl;
198  }
199 
200  out<<" "<<padsav->GetName()<<"->cd();"<<std::endl;
201  padsav->cd();
202 }
203 
204 ////////////////////////////////////////////////////////////////////////////////
205 /// Set Slider range in [0,1]
206 
207 void TSlider::SetRange(Double_t xmin, Double_t xmax)
208 {
209  TSliderBox *sbox = (TSliderBox*)fPrimitives->FindObject("TSliderBox");
210  if (sbox) {
211  if (fAbsWNDC > fAbsHNDC) {
212  sbox->SetX1(xmin);
213  sbox->SetX2(xmax);
214  } else {
215  sbox->SetY1(xmin);
216  sbox->SetY2(xmax);
217  }
218  }
219  fMinimum = xmin;
220  fMaximum = xmax;
221  Modified();
222 }