Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TEvePointSetArrayEditor.cxx
Go to the documentation of this file.
1// @(#)root/eve:$Id$
2// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4/*************************************************************************
5 * Copyright (C) 1995-2007, 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
13#include "TEvePointSet.h"
14#include "TEveGValuators.h"
15
16#include "TGDoubleSlider.h"
17
18/** \class TEvePointSetArrayEditor
19\ingroup TEve
20Editor for TEvePointSetArray class.
21*/
22
24
25////////////////////////////////////////////////////////////////////////////////
26/// Constructor.
27
30 UInt_t options, Pixel_t back) :
31 TGedFrame(p,width, height, options | kVerticalFrame, back),
32 fM(nullptr),
33 fRange(nullptr)
34{
35 fM = nullptr;
36 MakeTitle("TEvePointSetArray");
37
38 fRange = new TEveGDoubleValuator(this,"Range", 200, 0);
39 fRange->SetNELength(6);
40 fRange->Build();
41 fRange->GetSlider()->SetWidth(224);
42 fRange->Connect("ValueSet()",
43 "TEvePointSetArrayEditor", this, "DoRange()");
44 AddFrame(fRange, new TGLayoutHints(kLHintsTop, 1, 1, 2, 1));
45}
46
47////////////////////////////////////////////////////////////////////////////////
48/// Destructor.
49
53
54////////////////////////////////////////////////////////////////////////////////
55/// Set model object.
56
58{
59 fM = dynamic_cast<TEvePointSetArray*>(obj);
60
61 // printf("FullRange(%f, %f) Selected(%f,%f)\n",
62 // fM->GetMin(), fM->GetMax(), fM->GetCurMin(), fM->GetCurMax());
63
64 fRange->SetLimits(fM->fMin, fM->fMax, TGNumberFormat::kNESRealTwo);
65 fRange->SetValues(fM->fCurMin, fM->fCurMax);
66}
67
68////////////////////////////////////////////////////////////////////////////////
69/// Slot for setting the range of the separating quantity.
70
72{
73 fM->SetRange(fRange->GetMin(), fRange->GetMax());
74 Update();
75}
@ kVerticalFrame
Definition GuiTypes.h:381
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
int Int_t
Definition RtypesCore.h:45
unsigned int UInt_t
Definition RtypesCore.h:46
#define ClassImp(name)
Definition Rtypes.h:377
@ kLHintsTop
Definition TGLayout.h:27
Option_t Option_t width
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t height
Composite GUI element for selection of range (label, two number-entries and double-slider).
Editor for TEvePointSetArray class.
TEvePointSetArrayEditor(const TEvePointSetArrayEditor &)
void SetModel(TObject *obj) override
Set model object.
void DoRange()
Slot for setting the range of the separating quantity.
~TEvePointSetArrayEditor() override
Destructor.
An array of point-sets with each point-set playing a role of a bin in a histogram.
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
@ kNESRealTwo
Fixed fraction real, two digit.
ROOT GUI Window base class.
Definition TGWindow.h:23
TGedFrame(const TGedFrame &)=delete
virtual void MakeTitle(const char *title)
Create attribute frame title.
Definition TGedFrame.cxx:95
virtual void Update()
Update the current pad when an attribute is changed via GUI.
Definition TGedFrame.cxx:72
Mother of all ROOT objects.
Definition TObject.h:41