Logo ROOT   6.12/07
Reference Guide
TGeoSphereEditor.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_TGeoSphereEditor
12 #define ROOT_TGeoSphereEditor
13 
14 #include "TGWidget.h"
15 #include "TGeoGedFrame.h"
16 
17 class TGeoSphere;
18 class TGeoTabManager;
19 class TGTextEntry;
20 class TGNumberEntry;
21 class TGTab;
22 class TGComboBox;
23 class TGDoubleVSlider;
24 class TGTextButton;
25 class TGCheckButton;
26 class TString;
27 
29 
30 protected:
31 
32  Double_t fRmini; // Initial inner radius
33  Double_t fRmaxi; // Initial outer radius
34  Double_t fTheta1i; // Initial lower theta limit
35  Double_t fTheta2i; // Initial higher theta limit
36  Double_t fPhi1i; // Initial lower phi limit
37  Double_t fPhi2i; // Initial higher phi limit
38  TString fNamei; // Initial name
39  TGeoSphere *fShape; // Shape object
40  Bool_t fIsModified; // Flag that volume was modified
41  Bool_t fIsShapeEditable; // Flag that the shape can be changed
42  Bool_t fLock; // Lock
43 
44  TGTextEntry *fShapeName; // Shape name text entry
45  TGNumberEntry *fERmin; // Number entry for rmin
46  TGNumberEntry *fERmax; // Number entry for rmax
47  TGNumberEntry *fETheta1; // Number entry for Theta1
48  TGNumberEntry *fETheta2; // Number entry for Theta2
49  TGNumberEntry *fEPhi1; // Number entry for phi1
50  TGNumberEntry *fEPhi2; // Number entry for phi2
51  TGDoubleVSlider *fSPhi; // Phi slider
52  TGDoubleVSlider *fSTheta; // Theta slider
53  TGTextButton *fApply; // Apply-Button to accept changes
54  TGTextButton *fUndo; // Undo-Button
55  TGCheckButton *fDelayed; // Check button for delayed draw
56 
57  virtual void ConnectSignals2Slots(); // Connect the signals to the slots
58  Bool_t IsDelayed() const;
59 
60 public:
61  TGeoSphereEditor(const TGWindow *p = 0,
62  Int_t width = 140, Int_t height = 30,
63  UInt_t options = kChildFrame,
65  virtual ~TGeoSphereEditor();
66  virtual void SetModel(TObject *obj);
67 
68  void DoRmin();
69  void DoRmax();
70  void DoPhi();
71  void DoTheta();
72  void DoTheta1();
73  void DoTheta2();
74  void DoPhi1();
75  void DoPhi2();
76  void DoModified();
77  void DoName();
78  virtual void DoApply();
79  virtual void DoUndo();
80 
81  ClassDef(TGeoSphereEditor,0) // TGeoSphere editor
82 };
83 
84 #endif
Spherical shell class.
Definition: TGeoSphere.h:17
Definition: TGTab.h:62
void DoPhi()
Slot for phi slider.
TGNumberEntry * fETheta1
TGeoSphere * fShape
Manager for all editor tabs.
Basic string class.
Definition: TString.h:125
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void SetModel(TObject *obj)
Connect to a given sphere.
virtual void DoApply()
Slot for applying modifications.
TGNumberEntry * fEPhi1
virtual void ConnectSignals2Slots()
Connect signals to slots.
#define ClassDef(name, id)
Definition: Rtypes.h:320
ULong_t Pixel_t
Definition: GuiTypes.h:39
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
TGCheckButton * fDelayed
void DoTheta2()
Slot for theta2.
TGTextButton * fUndo
void DoName()
Slot for name.
void DoRmin()
Slot for Rmin.
void DoModified()
Slot for signaling modifications.
TGDoubleVSlider * fSTheta
virtual void DoUndo()
Slot for undoing last operation.
TGNumberEntry * fERmin
unsigned int UInt_t
Definition: RtypesCore.h:42
TGTextButton * fApply
Editor for a TGeoSphere.
TGNumberEntry * fERmax
void DoTheta1()
Slot for theta1.
void DoPhi1()
Slot for phi1.
TGDoubleVSlider * fSPhi
double Double_t
Definition: RtypesCore.h:55
TGeoSphereEditor(const TGWindow *p=0, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
Constructor for sphere editor.
TGNumberEntry * fEPhi2
void DoTheta()
Slot for theta slider.
Mother of all ROOT objects.
Definition: TObject.h:37
void DoPhi2()
Slot for phi2.
TGNumberEntry * fETheta2
Bool_t IsDelayed() const
Check if shape drawing is delayed.
virtual ~TGeoSphereEditor()
Destructor.
void DoRmax()
Slot for Rmax.
TGTextEntry * fShapeName
Common base class for geombuilder editors.
Definition: TGeoGedFrame.h:13