Logo ROOT   6.16/01
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
17class TGeoSphere;
18class TGeoTabManager;
19class TGTextEntry;
20class TGNumberEntry;
21class TGTab;
22class TGComboBox;
23class TGDoubleVSlider;
24class TGTextButton;
25class TGCheckButton;
26class TString;
27
29
30protected:
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
60public:
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
ULong_t Pixel_t
Definition: GuiTypes.h:39
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
#define ClassDef(name, id)
Definition: Rtypes.h:324
include TDocParser_001 C image html pict1_TDocParser_001 png width
Definition: TDocParser.cxx:121
@ kChildFrame
Definition: TGFrame.h:57
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
Definition: TGTab.h:62
Common base class for geombuilder editors.
Definition: TGeoGedFrame.h:13
Editor for a TGeoSphere.
TGNumberEntry * fEPhi2
virtual ~TGeoSphereEditor()
Destructor.
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.
TGCheckButton * fDelayed
virtual void ConnectSignals2Slots()
Connect signals to slots.
TGNumberEntry * fERmax
void DoTheta1()
Slot for theta1.
void DoRmin()
Slot for Rmin.
TGNumberEntry * fETheta1
TGNumberEntry * fETheta2
virtual void SetModel(TObject *obj)
Connect to a given sphere.
void DoName()
Slot for name.
TGNumberEntry * fERmin
void DoPhi2()
Slot for phi2.
TGDoubleVSlider * fSPhi
Bool_t IsDelayed() const
Check if shape drawing is delayed.
void DoTheta()
Slot for theta slider.
void DoModified()
Slot for signaling modifications.
void DoTheta2()
Slot for theta2.
TGTextEntry * fShapeName
void DoPhi()
Slot for phi slider.
TGeoSphere * fShape
TGNumberEntry * fEPhi1
TGDoubleVSlider * fSTheta
void DoPhi1()
Slot for phi1.
void DoRmax()
Slot for Rmax.
virtual void DoUndo()
Slot for undoing last operation.
TGTextButton * fUndo
virtual void DoApply()
Slot for applying modifications.
TGTextButton * fApply
Spherical shell class.
Definition: TGeoSphere.h:18
Manager for all editor tabs.
Mother of all ROOT objects.
Definition: TObject.h:37
Basic string class.
Definition: TString.h:131