45 void CloseWindow()
override;
46 void DoText(
const char *
text);
63 AddFrame(fCanvas,
fLcan);
64 fCanvas->GetCanvas()->SetFillColor(33);
65 fCanvas->GetCanvas()->SetFrameFillColor(41);
66 fCanvas->GetCanvas()->SetBorderMode(0);
67 fCanvas->GetCanvas()->SetGrid();
68 fCanvas->GetCanvas()->SetLogy();
76 fCheck1->SetToolTipText(
"Pointer position constrained to slider sides");
77 fCheck2->SetToolTipText(
"Pointer position relative to slider position");
85 fHslider1->Connect(
"PointerPositionChanged()",
"TTripleSliderDemo",
this,
"DoSlider()");
86 fHslider1->Connect(
"PositionChanged()",
"TTripleSliderDemo",
this,
"DoSlider()");
97 fTeh1->SetToolTipText(
"Minimum (left) Value of Slider");
98 fTeh2->SetToolTipText(
"Pointer Position Value");
99 fTeh3->SetToolTipText(
"Maximum (right) Value of Slider");
101 fTbh1->AddText(0,
"0.0");
102 fTbh2->AddText(0,
"0.0");
103 fTbh3->AddText(0,
"0.0");
105 fTeh1->Connect(
"TextChanged(char*)",
"TTripleSliderDemo",
this,
"DoText(char*)");
106 fTeh2->Connect(
"TextChanged(char*)",
"TTripleSliderDemo",
this,
"DoText(char*)");
107 fTeh3->Connect(
"TextChanged(char*)",
"TTripleSliderDemo",
this,
"DoText(char*)");
109 fCheck1->Connect(
"Clicked()",
"TTripleSliderDemo",
this,
"HandleButtons()");
110 fCheck2->Connect(
"Clicked()",
"TTripleSliderDemo",
this,
"HandleButtons()");
135 SetWindowName(
"Triple Slider Demo");
137 Resize(GetDefaultSize());
140 fFitFcn =
new TF1(
"fFitFcn",
"TMath::LogNormal(x, [0], [1], [2])", 0, 5);
142 fFitFcn->SetParameters(1.0, 0, 1);
154 fTbh1->AddText(0, buf);
157 fTbh2->AddText(0, buf);
160 fTbh3->AddText(0, buf);
164TTripleSliderDemo::~TTripleSliderDemo()
172void TTripleSliderDemo::CloseWindow()
180void TTripleSliderDemo::DoText(
const char * )
196 fCanvas->GetCanvas()->Modified();
197 fCanvas->GetCanvas()->Update();
201void TTripleSliderDemo::DoSlider()
209 fTbh1->AddText(0, buf);
210 fTeh1->SetCursorPosition(
fTeh1->GetCursorPosition());
216 fTbh2->AddText(0, buf);
217 fTeh2->SetCursorPosition(
fTeh2->GetCursorPosition());
223 fTbh3->AddText(0, buf);
224 fTeh3->SetCursorPosition(
fTeh3->GetCursorPosition());
231 fCanvas->GetCanvas()->Modified();
232 fCanvas->GetCanvas()->Update();
236void TTripleSliderDemo::HandleButtons()
#define ClassDef(name, id)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize MapSubwindows
Option_t Option_t TPoint TPoint const char text
R__EXTERN void * gTQSender
A composite frame that layout their children in horizontal way.
This class describes layout hints used by the layout classes.
Defines top level windows that interact with the system Window Manager.
A text buffer is used in several widgets, like TGTextEntry, TGFileDialog, etc.
A TGTextEntry is a one line text input widget.
TripleSlider inherit from DoubleSlider widgets and allow easy selection of a min, max and pointer val...
This class creates a TGCanvas in which a TCanvas is created.