Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 
17 class TGeoBBox;
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 TGeoBBoxEditor : public TGeoGedFrame {
28 
29 protected:
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 
53 public:
54  TGeoBBoxEditor(const TGWindow *p = 0,
55  Int_t width = 140, Int_t height = 30,
56  UInt_t options = kChildFrame,
57  Pixel_t back = GetDefaultFrameBackground());
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