Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TPieSliceEditor.cxx
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (C) 1995-2021, Rene Brun and Fons Rademakers. *
3 * All rights reserved. *
4 * *
5 * For the licensing terms see $ROOTSYS/LICENSE. *
6 * For the list of contributors see $ROOTSYS/README/CREDITS. *
7 *************************************************************************/
8
9#include "TPieSliceEditor.h"
10#include "TPieSlice.h"
11#include "TGTextEntry.h"
12#include "TGNumberEntry.h"
13#include "TGLabel.h"
14
15
16/** \class TPieSliceEditor
17\ingroup ged
18
19Editor for changing pie-chart's slice attributes.
20
21*/
22
23
25
26
30
31
32////////////////////////////////////////////////////////////////////////////////
33/// TPieSliceEditor constructor.
34
37 UInt_t options, Pixel_t back)
38 : TGedFrame(p, width, height, options | kVerticalFrame, back)
39{
40 fPieSlice = 0;
41
42 // start initializing the window components
43 MakeTitle("Title");
44
45 fTitle = new TGTextEntry(this, new TGTextBuffer(50), kPieSlice_Title);
46 fTitle->Resize(135, fTitle->GetDefaultHeight());
47 fTitle->SetToolTipText("Enter the pie-slice label");
48 // better take kLHintsLeft and Right - Right is not working at the moment
49 AddFrame(fTitle, new TGLayoutHints(kLHintsLeft, 3, 1, 2, 5));
50
52 TGLabel *lbl1 = new TGLabel(f1,"Value");
54 //fValue->SetToolTipText("Set the slice absolute value")
55 fValue->Resize(50, 20);
56 f1->AddFrame(lbl1, new TGLayoutHints(kLHintsLeft, 1, 1, 1, 1));
57 f1->AddFrame(fValue, new TGLayoutHints(kLHintsLeft, 1, 1, 1, 1));
58 AddFrame(f1, new TGLayoutHints(kLHintsLeft, 1, 1, 1, 1));
59
60 TGCompositeFrame *f2 = new TGCompositeFrame(this, 120, 20, kHorizontalFrame);
61 TGLabel *lbl2 = new TGLabel(f2,"Rad Offset");
63 //fOffset->SetToolTipText("Set the slice radial offset")
64 fOffset->Resize(50, 20);
65 f2->AddFrame(lbl2, new TGLayoutHints(kLHintsLeft,1, 1, 1, 1));
66 f2->AddFrame(fOffset, new TGLayoutHints(kLHintsLeft, 7, 1, 1, 1));
67 AddFrame(f2, new TGLayoutHints(kLHintsLeft, 1, 1, 1, 1));
68}
69
70
71////////////////////////////////////////////////////////////////////////////////
72/// TPieSliceEditor destructor.
73
77
78
79////////////////////////////////////////////////////////////////////////////////
80/// Set model.
81
83{
84 fPieSlice = (TPieSlice*) (obj);
85
87 fTitle->SetText(fPieSlice->GetTitle());
88 fValue->SetNumber(fPieSlice->GetValue());
89 fOffset->SetNumber(fPieSlice->GetRadiusOffset());
90
93}
94
95
96////////////////////////////////////////////////////////////////////////////////
97/// Connect signals to slots.
98
100{
101 fTitle->Connect("TextChanged(const char *)","TPieSliceEditor",this,"DoTitle(const char *)");
102 fValue->Connect("ValueSet(Long_t)", "TPieSliceEditor", this, "DoValue()");
103 fOffset->Connect("ValueSet(Long_t)", "TPieSliceEditor", this, "DoOffset()");
104
105 fInit = kFALSE; // connect the slots to the signals only once
106}
107
108
109////////////////////////////////////////////////////////////////////////////////
110/// Slot for setting the graph title.
111
113{
114 if (fAvoidSignal) return;
115 fPieSlice->SetTitle(text);
116 Update();
117}
118
119
120////////////////////////////////////////////////////////////////////////////////
121/// Slot for setting the graph title.
122
124{
125 if (fAvoidSignal) return;
126
127 fPieSlice->SetValue(fValue->GetNumber());
128 Update();
129}
130
131
132////////////////////////////////////////////////////////////////////////////////
133/// Slot for setting the graph title.
134
136{
137 if (fAvoidSignal) return;
138
139 fPieSlice->SetRadiusOffset(fOffset->GetNumber());
140 Update();
141}
142
@ kVerticalFrame
Definition GuiTypes.h:381
@ kHorizontalFrame
Definition GuiTypes.h:382
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
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
constexpr Bool_t kTRUE
Definition RtypesCore.h:100
#define ClassImp(name)
Definition Rtypes.h:377
@ kLHintsLeft
Definition TGLayout.h:24
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
Option_t Option_t TPoint TPoint const char text
EPieSliceID
@ kPieSlice_Offset
@ kPieSlice_Title
@ kPieSlice_Value
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
TGCompositeFrame(const TGCompositeFrame &)=delete
This class handles GUI labels.
Definition TGLabel.h:24
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
TGNumberEntry is a number entry input widget with up/down buttons.
@ kNEANonNegative
Non-negative number.
@ kNESReal
Real number.
@ kNESRealTwo
Fixed fraction real, two digit.
A text buffer is used in several widgets, like TGTextEntry, TGFileDialog, etc.
A TGTextEntry is a one line text input widget.
Definition TGTextEntry.h:24
ROOT GUI Window base class.
Definition TGWindow.h:23
TGedFrame(const TGedFrame &)=delete
Bool_t fInit
init flag for setting signals/slots
Definition TGedFrame.h:47
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
Bool_t fAvoidSignal
flag for executing slots
Definition TGedFrame.h:50
Mother of all ROOT objects.
Definition TObject.h:41
Editor for changing pie-chart's slice attributes.
void ConnectSignals2Slots()
Connect signals to slots.
void SetModel(TObject *) override
Set model.
void DoTitle(const char *)
Slot for setting the graph title.
TGNumberEntry * fOffset
Grafical offset in the radial direction.
TGNumberEntry * fValue
Value of the slice.
void DoValue()
Slot for setting the graph title.
TPieSliceEditor(const TGWindow *p=nullptr, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
TPieSliceEditor constructor.
TPieSlice * fPieSlice
~TPieSliceEditor() override
TPieSliceEditor destructor.
TGTextEntry * fTitle
Slice label.
void DoOffset()
Slot for setting the graph title.
A slice of a piechart, see the TPie class.
Definition TPieSlice.h:18
TF1 * f1
Definition legend1.C:11