Logo ROOT   6.16/01
Reference Guide
TGeoTrd1Editor.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_TGeoTrd1Editor
12#define ROOT_TGeoTrd1Editor
13
14#include "TGWidget.h"
15#include "TGeoGedFrame.h"
16
17class TGeoTrd1;
18class TGeoTabManager;
19class TGTextEntry;
20class TGNumberEntry;
21class TGTab;
22class TGComboBox;
23class TGTextButton;
24class TGCheckButton;
25class TString;
26
28
29protected:
30
31 Double_t fDxi1; // Initial dx1
32 Double_t fDxi2; // Initial dx2
33 Double_t fDyi; // Initial dy
34 Double_t fDzi; // Initial dz
35 TString fNamei; // Initial name
36 TGeoTrd1 *fShape; // Shape object
37 Bool_t fIsModified; // Flag that volume was modified
38 Bool_t fIsShapeEditable; // Flag that the shape can be changed
39
40 TGTextEntry *fShapeName; // Shape name text entry
41 TGNumberEntry *fEDx1; // Number entry for DX1
42 TGNumberEntry *fEDx2; // Number entry for DX2
43 TGNumberEntry *fEDy; // Number entry for DY
44 TGNumberEntry *fEDz; // Number entry for DZ
45 TGTextButton *fApply; // Apply-Button to accept changes
46 TGTextButton *fUndo; // Undo-Button
47 TGCheckButton *fDelayed; // Check button for delayed draw
48
49 virtual void ConnectSignals2Slots(); // Connect the signals to the slots
50 Bool_t IsDelayed() const;
51
52public:
53 TGeoTrd1Editor(const TGWindow *p = 0,
54 Int_t width = 140, Int_t height = 30,
55 UInt_t options = kChildFrame,
57 virtual ~TGeoTrd1Editor();
58 virtual void SetModel(TObject *obj);
59
60 void DoDx1();
61 void DoDx2();
62 void DoDy();
63 void DoDz();
64 void DoModified();
65 void DoName();
66 void DoApply();
67 void DoUndo();
68
69 ClassDef(TGeoTrd1Editor,0) // TGeoTrd1 editor
70};
71
72#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
Manager for all editor tabs.
Editor for a TGeoTrd1.
void DoDx2()
Slot for dx2.
virtual ~TGeoTrd1Editor()
Destructor.
virtual void ConnectSignals2Slots()
Connect signals to slots.
TGNumberEntry * fEDz
TGCheckButton * fDelayed
TGeoTrd1 * fShape
void DoDy()
Slot for dy.
void DoUndo()
Slot for undoing last operation.
void DoDx1()
Slot for dx1.
void DoModified()
Slot for signaling modifications.
TGNumberEntry * fEDx1
void DoDz()
Slot for dz.
Bool_t fIsShapeEditable
TGNumberEntry * fEDy
TGTextButton * fUndo
void DoApply()
Slot for applying modifications.
virtual void SetModel(TObject *obj)
Connect to the selected object.
TGeoTrd1Editor(const TGWindow *p=0, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
Constructor for trd1 editor.
TGTextButton * fApply
TGNumberEntry * fEDx2
void DoName()
Perform name change.
TGTextEntry * fShapeName
Bool_t IsDelayed() const
Check if shape drawing is delayed.
A trapezoid with only x length varying with z.
Definition: TGeoTrd1.h:18
Mother of all ROOT objects.
Definition: TObject.h:37
Basic string class.
Definition: TString.h:131