Logo ROOT  
Reference Guide
TGeoBBoxEditor.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_TGeoBBoxEditor
12#define ROOT_TGeoBBoxEditor
13
14#include "TGWidget.h"
15#include "TGeoGedFrame.h"
16
17class TGeoBBox;
18class TGeoTabManager;
19class TGTextEntry;
20class TGNumberEntry;
21class TGTab;
22class TGComboBox;
23class TGTextButton;
24class TGCheckButton;
25class TString;
26
28
29protected:
30
31 Double_t fDxi; // Initial box dx
32 Double_t fDyi; // Initial box dy
33 Double_t fDzi; // Initial box dz
34 Double_t fOrigi[3]; // Initial origin
35 TString fNamei; // Initial name
36 TGeoBBox *fShape; // Shape object
37 Bool_t fIsModified; // Flag that volume was modified
38 Bool_t fIsShapeEditable; // Flag that the shape can be changed
39 TGTextEntry *fShapeName; // Shape name text entry
40 TGNumberEntry *fBoxDx; // Number entry for box DX
41 TGNumberEntry *fBoxDy; // Number entry for box DY
42 TGNumberEntry *fBoxDz; // Number entry for box DZ
43 TGNumberEntry *fBoxOx; // Number entry for box OX
44 TGNumberEntry *fBoxOy; // Number entry for box OY
45 TGNumberEntry *fBoxOz; // Number entry for box OZ
46 TGTextButton *fApply; // Apply-Button to accept changes
47 TGTextButton *fUndo; // Undo-Button
48 TGCheckButton *fDelayed; // Check button for delayed draw
49
50 virtual void ConnectSignals2Slots(); // Connect the signals to the slots
51 Bool_t IsDelayed() const;
52
53public:
54 TGeoBBoxEditor(const TGWindow *p = 0,
55 Int_t width = 140, Int_t height = 30,
56 UInt_t options = kChildFrame,
58 virtual ~TGeoBBoxEditor();
59 virtual void SetModel(TObject *obj);
60
61 void DoDx();
62 void DoDy();
63 void DoDz();
64 void DoOx();
65 void DoOy();
66 void DoOz();
67 void DoModified();
68 void DoName();
69 void DoApply();
70 void DoUndo();
71
72 ClassDef(TGeoBBoxEditor,0) // TGeoBBox editor
73};
74
75#endif
@ kChildFrame
Definition: GuiTypes.h:379
ULong_t Pixel_t
Definition: GuiTypes.h:39
double Double_t
Definition: RtypesCore.h:57
#define ClassDef(name, id)
Definition: Rtypes.h:322
include TDocParser_001 C image html pict1_TDocParser_001 png width
Definition: TDocParser.cxx:121
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:667
Definition: TGTab.h:62
Editor for a TGeoBBox.
void DoDy()
Slot for Dy modification.
TGTextButton * fUndo
TGNumberEntry * fBoxDx
TGNumberEntry * fBoxDy
TGTextEntry * fShapeName
TGNumberEntry * fBoxOy
void DoApply()
Slot for applying current parameters.
void DoDz()
Slot for Dz modification.
virtual ~TGeoBBoxEditor()
Destructor.
TGeoBBox * fShape
TGCheckButton * fDelayed
void DoOz()
Slot for Oz modification.
TGNumberEntry * fBoxOx
virtual void SetModel(TObject *obj)
Update editor for a new selected box.
Double_t fOrigi[3]
void DoUndo()
Slot for undoing last operation.
TGeoBBoxEditor(const TGWindow *p=0, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
Constructor for volume editor.
void DoDx()
Slot for Dx modification.
Bool_t fIsShapeEditable
void DoName()
Slot for name.
void DoModified()
Slot for modifying current parameters.
void DoOx()
Slot for Ox modification.
void DoOy()
Slot for Oy modification.
Bool_t IsDelayed() const
Check if shape drawing is delayed.
virtual void ConnectSignals2Slots()
Connect signals to slots.
TGNumberEntry * fBoxOz
TGNumberEntry * fBoxDz
TGTextButton * fApply
Box class.
Definition: TGeoBBox.h:18
Common base class for geombuilder editors.
Definition: TGeoGedFrame.h:13
Manager for all editor tabs.
Mother of all ROOT objects.
Definition: TObject.h:37
Basic string class.
Definition: TString.h:131