Logo ROOT   6.14/05
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 #include "TGWidget.h"
15 #include "TGeoGedFrame.h"
16 
17 class TGeoHype;
18 class TGeoTabManager;
19 class TGTextEntry;
20 class TGNumberEntry;
21 class TGTab;
22 class TGComboBox;
23 class TGTextButton;
24 class TGCheckButton;
25 class TString;
26 
27 class TGeoHypeEditor : public TGeoGedFrame {
28 
29 protected:
30 
31  Double_t fRini; // Initial inner radius
32  Double_t fRouti; // Initial outer radius
33  Double_t fDzi; // Initial half length Dz
34  Double_t fStIni; // Initial stereo angle for inner surface
35  Double_t fStOuti; // Initial stereo angle for outer surface
36  TString fNamei; // Initial name
37  TGeoHype *fShape; // Shape object
38  Bool_t fIsModified; // Flag that volume was modified
39  Bool_t fIsShapeEditable; // Flag that the shape can be changed
40 
41  TGTextEntry *fShapeName; // Shape name text entry
42  TGNumberEntry *fERin; // Number entry for Rin
43  TGNumberEntry *fERout; // Number entry for Rout
44  TGNumberEntry *fEDz; // Number entry for Dz
45  TGNumberEntry *fEStIn; // Number entry for StIn
46  TGNumberEntry *fEStOut; // Number entry for StOut
47  TGTextButton *fApply; // Apply-Button to accept changes
48  TGTextButton *fUndo; // Undo-Button
49  TGCheckButton *fDelayed; // Check button for delayed draw
50 
51  virtual void ConnectSignals2Slots(); // Connect the signals to the slots
52  Bool_t IsDelayed() const;
53 
54 public:
55  TGeoHypeEditor(const TGWindow *p = 0,
56  Int_t width = 140, Int_t height = 30,
57  UInt_t options = kChildFrame,
59  virtual ~TGeoHypeEditor();
60  virtual void SetModel(TObject *obj);
61 
62  void DoRin();
63  void DoRout();
64  void DoDz();
65  void DoStIn();
66  void DoStOut();
67  void DoModified();
68  void DoName();
69  void DoApply();
70  void DoUndo();
71 
72  ClassDef(TGeoHypeEditor,0) // TGeoHype editor
73 };
74 
75 #endif
Bool_t fIsShapeEditable
void DoApply()
Slot for applying current settings.
void DoStIn()
Slot for StIn.
TGTextEntry * fShapeName
Definition: TGTab.h:62
image html pict1_TGaxis_012 png width
Define new text attributes for the label number "labNum".
Definition: TGaxis.cxx:2551
TGNumberEntry * fEStOut
Manager for all editor tabs.
TGNumberEntry * fERin
virtual void ConnectSignals2Slots()
Connect signals to slots.
Basic string class.
Definition: TString.h:131
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:320
ULong_t Pixel_t
Definition: GuiTypes.h:39
void DoUndo()
Slot for undoing last operation.
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
Editor for a TGeoHype.
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:17
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
Common base class for geombuilder editors.
Definition: TGeoGedFrame.h:13