Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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
@ 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
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
Common base class for geombuilder editors.
Editor for a TGeoSphere.
TGNumberEntry * fEPhi2
virtual ~TGeoSphereEditor()
Destructor.
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
TGeoSphere are not just balls having internal and external radii, but sectors of a sphere having defi...
Definition TGeoSphere.h:18
Manager for all editor tabs.
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:136