Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGeoTubeEditor.h
Go to the documentation of this file.
1// @(#):$Id$
2// Author: M.Gheata
3/*************************************************************************
4 * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef ROOT_TGeoTubeEditor
12#define ROOT_TGeoTubeEditor
13
14#include "TGWidget.h"
15#include "TGeoGedFrame.h"
16
17class TGeoTube;
18class TGeoTabManager;
19class TGTextEntry;
20class TGNumberEntry;
21class TGTab;
22class TGComboBox;
23class TGTextButton;
24class TGCheckButton;
25class TString;
26
28
29protected:
30
31 Double_t fRmini; // Initial inner radius
32 Double_t fRmaxi; // Initial outer radius
33 Double_t fDzi; // Initial box dz
34 TString fNamei; // Initial name
35 TGeoTube *fShape; // Shape object
36 Bool_t fIsModified; // Flag that volume was modified
37 Bool_t fIsShapeEditable; // Flag that the shape can be changed
38
39 TGTextEntry *fShapeName; // Shape name text entry
40 TGNumberEntry *fERmin; // Number entry for rmin
41 TGNumberEntry *fERmax; // Number entry for rmax
42 TGNumberEntry *fEDz; // Number entry for DZ
43 TGTextButton *fApply; // Apply-Button to accept changes
44 TGTextButton *fUndo; // Undo-Button
45 TGCompositeFrame *fBFrame; // Frame containing Apply/Undo
46 TGCheckButton *fDelayed; // Check button for delayed draw
47 TGCompositeFrame *fDFrame; // Frame containing Delayed draw
48
49 virtual void ConnectSignals2Slots(); // Connect the signals to the slots
50 Bool_t IsDelayed() const;
51
52public:
53 TGeoTubeEditor(const TGWindow *p = 0,
54 Int_t width = 140, Int_t height = 30,
55 UInt_t options = kChildFrame,
57 virtual ~TGeoTubeEditor();
58 virtual void SetModel(TObject *obj);
59
60 void DoRmin();
61 void DoRmax();
62 void DoDz();
63 void DoModified();
64 void DoName();
65 virtual void DoApply();
66 virtual void DoUndo();
67
68 ClassDef(TGeoTubeEditor,0) // TGeoTube editor
69};
70
71
72class TGDoubleVSlider;
73
75
76protected:
77
78 Bool_t fLock; // Phi lock
79 Double_t fPmini; // Initial phi min
80 Double_t fPmaxi; // Initial phi max
81 TGDoubleVSlider *fSPhi; // Phi slider
82 TGNumberEntry *fEPhi1; // Number entry for phi1
83 TGNumberEntry *fEPhi2; // Number entry for phi2
84
85 virtual void ConnectSignals2Slots(); // Connect the signals to the slots
86
87public:
88 TGeoTubeSegEditor(const TGWindow *p = 0,
89 Int_t width = 140, Int_t height = 30,
90 UInt_t options = kChildFrame,
92 virtual ~TGeoTubeSegEditor();
93 virtual void SetModel(TObject *obj);
94
95 void DoPhi();
96 void DoPhi1();
97 void DoPhi2();
98 virtual void DoApply();
99 virtual void DoUndo();
100
101 ClassDef(TGeoTubeSegEditor,0) // TGeoTubeSeg editor
102};
103
105
106protected:
107 Double_t fThlo; // Theta angle of the normal to the lower plane (90, 180)
108 Double_t fPhlo; // Phi angle of the normal to lower Z plane
109 Double_t fThhi; // Theta angle of the normal to the upper plane (0, 90)
110 Double_t fPhhi; // Phi angle of the normal to upper Z plane
111 TGNumberEntry *fEThlo; // Number entry for thlo
112 TGNumberEntry *fEPhlo; // Number entry for phlo
113 TGNumberEntry *fEThhi; // Number entry for thhi
114 TGNumberEntry *fEPhhi; // Number entry for phhi
115
116public:
117 TGeoCtubEditor(const TGWindow *p = 0,
118 Int_t width = 140, Int_t height = 30,
119 UInt_t options = kChildFrame,
121 virtual ~TGeoCtubEditor();
122 virtual void SetModel(TObject *obj);
123
124 void DoThlo();
125 void DoPhlo();
126 void DoThhi();
127 void DoPhhi();
128 virtual void DoApply();
129 virtual void DoUndo();
130
131 ClassDef(TGeoCtubEditor,0) // TGeoCtub editor
132};
133
134#endif
@ kChildFrame
Definition GuiTypes.h:379
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:325
include TDocParser_001 C image html pict1_TDocParser_001 png width
Selects different options.
Definition TGButton.h:264
A combobox (also known as a drop down listbox) allows the selection of one item out of a list of item...
Definition TGComboBox.h:47
The base class for composite widgets (menu bars, list boxes, etc.).
Definition TGFrame.h:287
Dragging the slider will generate the event:
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition TGFrame.cxx:683
TGNumberEntry is a number entry input widget with up/down buttons.
A tab widget contains a set of composite frames each with a little tab with a name (like a set of fol...
Definition TGTab.h:46
Yield an action as soon as it is clicked.
Definition TGButton.h:142
A TGTextEntry is a one line text input widget.
Definition TGTextEntry.h:24
ROOT GUI Window base class.
Definition TGWindow.h:23
Editor for a TGeoCtub.
TGNumberEntry * fEPhlo
TGNumberEntry * fEPhhi
virtual void SetModel(TObject *obj)
Connect to the selected object.
TGNumberEntry * fEThhi
TGNumberEntry * fEThlo
virtual void DoUndo()
Slot for undoing last operation.
void DoPhlo()
Slot for phi1.
virtual void DoApply()
Slot for applying modifications.
virtual ~TGeoCtubEditor()
Destructor.
void DoThhi()
Slot for phi1.
void DoPhhi()
Slot for phi1.
void DoThlo()
Slot for phi1.
Common base class for geombuilder editors.
Manager for all editor tabs.
Editor for a TGeoTube.
virtual ~TGeoTubeEditor()
Destructor.
virtual void ConnectSignals2Slots()
Connect signals to slots.
void DoRmax()
Slot for rmax.
TGTextEntry * fShapeName
void DoRmin()
Slot for rmin.
TGCompositeFrame * fDFrame
Bool_t fIsShapeEditable
TGTextButton * fUndo
void DoModified()
Slot for signaling modifications.
TGTextButton * fApply
TGCompositeFrame * fBFrame
TGNumberEntry * fEDz
virtual void DoUndo()
Slot for undoing last operation.
TGNumberEntry * fERmax
void DoDz()
Slot for dz.
TGCheckButton * fDelayed
void DoName()
Perform name change.
virtual void SetModel(TObject *obj)
Connect to the selected object.
TGNumberEntry * fERmin
Bool_t IsDelayed() const
Check if shape drawing is delayed.
TGeoTube * fShape
virtual void DoApply()
Slot for applying modifications.
Editor for a TGeoTubeSeg.
TGDoubleVSlider * fSPhi
virtual void DoUndo()
Slot for undoing last operation.
virtual ~TGeoTubeSegEditor()
Destructor.
virtual void DoApply()
Slot for applying modifications.
void DoPhi2()
Slot for phi2.
TGNumberEntry * fEPhi1
virtual void SetModel(TObject *obj)
Connect to the selected object.
virtual void ConnectSignals2Slots()
Connect signals to slots.
void DoPhi1()
Slot for phi1.
TGNumberEntry * fEPhi2
void DoPhi()
Slot for phi slider.
Cylindrical tube class.
Definition TGeoTube.h:18
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:136