Logo ROOT   6.08/07
Reference Guide
TGeoHypeEditor.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_TGeoHypeEditor
12 #define ROOT_TGeoHypeEditor
13 
14 //////////////////////////////////////////////////////////////////////////
15 // //
16 // TGeoHypeEditor //
17 // //
18 // Editor for a TGeoHype. //
19 // //
20 //////////////////////////////////////////////////////////////////////////
21 
22 #ifndef ROOT_TGButton
23 #include "TGWidget.h"
24 #endif
25 #ifndef ROOT_TGeoGedFrame
26 #include "TGeoGedFrame.h"
27 #endif
28 
29 class TGeoHype;
30 class TGeoTabManager;
31 class TGTextEntry;
32 class TGNumberEntry;
33 class TGTab;
34 class TGComboBox;
35 class TGTextButton;
36 class TGCheckButton;
37 class TString;
38 
39 class TGeoHypeEditor : public TGeoGedFrame {
40 
41 protected:
42 
43  Double_t fRini; // Initial inner radius
44  Double_t fRouti; // Initial outer radius
45  Double_t fDzi; // Initial half length Dz
46  Double_t fStIni; // Initial stereo angle for inner surface
47  Double_t fStOuti; // Initial stereo angle for outer surface
48  TString fNamei; // Initial name
49  TGeoHype *fShape; // Shape object
50  Bool_t fIsModified; // Flag that volume was modified
51  Bool_t fIsShapeEditable; // Flag that the shape can be changed
52 
53  TGTextEntry *fShapeName; // Shape name text entry
54  TGNumberEntry *fERin; // Number entry for Rin
55  TGNumberEntry *fERout; // Number entry for Rout
56  TGNumberEntry *fEDz; // Number entry for Dz
57  TGNumberEntry *fEStIn; // Number entry for StIn
58  TGNumberEntry *fEStOut; // Number entry for StOut
59  TGTextButton *fApply; // Apply-Button to accept changes
60  TGTextButton *fUndo; // Undo-Button
61  TGCheckButton *fDelayed; // Check button for delayed draw
62 
63  virtual void ConnectSignals2Slots(); // Connect the signals to the slots
64  Bool_t IsDelayed() const;
65 
66 public:
67  TGeoHypeEditor(const TGWindow *p = 0,
68  Int_t width = 140, Int_t height = 30,
69  UInt_t options = kChildFrame,
71  virtual ~TGeoHypeEditor();
72  virtual void SetModel(TObject *obj);
73 
74  void DoRin();
75  void DoRout();
76  void DoDz();
77  void DoStIn();
78  void DoStOut();
79  void DoModified();
80  void DoName();
81  void DoApply();
82  void DoUndo();
83 
84  ClassDef(TGeoHypeEditor,0) // TGeoHype editor
85 };
86 
87 #endif
Bool_t fIsShapeEditable
void DoApply()
Slot for applying current settings.
void DoStIn()
Slot for StIn.
TGTextEntry * fShapeName
Definition: TGTab.h:66
TGNumberEntry * fEStOut
TGNumberEntry * fERin
virtual void ConnectSignals2Slots()
Connect signals to slots.
Basic string class.
Definition: TString.h:137
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
TGeoHypeEditor(const TGWindow *p=0, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
Constructor for Hype editor.
TGNumberEntry * fEStIn
void DoRin()
Slot for Rin.
void DoModified()
Slot for notifying modifications.
#define ClassDef(name, id)
Definition: Rtypes.h:254
ULong_t Pixel_t
Definition: GuiTypes.h:41
void DoUndo()
Slot for undoing last operation.
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
TGTextButton * fApply
void DoName()
Slot for name.
TGCheckButton * fDelayed
Double_t fStOuti
unsigned int UInt_t
Definition: RtypesCore.h:42
Hyperboloid class defined by 5 parameters.
Definition: TGeoHype.h:19
virtual ~TGeoHypeEditor()
Destructor.
double Double_t
Definition: RtypesCore.h:55
Mother of all ROOT objects.
Definition: TObject.h:37
void DoDz()
Slot for Z.
virtual void SetModel(TObject *obj)
Connect to the selected object.
Bool_t IsDelayed() const
Check if shape drawing is delayed.
TGeoHype * fShape
void DoStOut()
Slot for StOut.
TGNumberEntry * fERout
TGTextButton * fUndo
void DoRout()
Slot for Rout.
TGNumberEntry * fEDz