// @(#):$Id$
// Author: M.Gheata 
/*************************************************************************
 * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TGeoTorusEditor
#define ROOT_TGeoTorusEditor

//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  TGeoTorusEditor                                                      //
//                                                                      //
//  Editor for a TGeoTorus.                                              //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TGButton
#include "TGWidget.h"
#endif
#ifndef ROOT_TGeoGedFrame
#include "TGeoGedFrame.h"
#endif

class TGeoTorus;
class TGeoTabManager;
class TGTextEntry;
class TGNumberEntry;
class TGTab;
class TGComboBox;
class TGTextButton;
class TGCheckButton;
class TString;

class TGeoTorusEditor : public TGeoGedFrame {

protected:

   Double_t             fRi;                // Initial  axial radius
   Double_t             fRmini;             // Initial  inner radius
   Double_t             fRmaxi;             // Initial  outer radius
   Double_t             fPhi1i;             // Initial  starting phi1
   Double_t             fDphii;             // Initial  phi extent
   TString              fNamei;             // Initial name
   TGeoTorus           *fShape;             // Shape object
   Bool_t               fIsModified;        // Flag that volume was modified
   Bool_t               fIsShapeEditable;   // Flag that the shape can be changed

   TGTextEntry         *fShapeName;         // Shape name text entry
   TGNumberEntry       *fER;                // Number entry for  R
   TGNumberEntry       *fERmin;             // Number entry for  Rmin
   TGNumberEntry       *fERmax;             // Number entry for  Rmax
   TGNumberEntry       *fEPhi1;             // Number entry for  phi1
   TGNumberEntry       *fEDphi;             // Number entry for  Dphi 
   TGTextButton        *fApply;             // Apply-Button to accept changes
   TGTextButton        *fUndo;              // Undo-Button
   TGCheckButton       *fDelayed;           // Check button for delayed draw

   virtual void ConnectSignals2Slots();   // Connect the signals to the slots
   Bool_t       IsDelayed() const;   

public:
   TGeoTorusEditor(const TGWindow *p = 0,
                   Int_t width = 140, Int_t height = 30,
                   UInt_t options = kChildFrame,
                   Pixel_t back = GetDefaultFrameBackground());
   virtual ~TGeoTorusEditor();
   virtual void   SetModel(TObject *obj);

   void           DoR();
   void           DoRmin();
   void           DoRmax();
   void           DoPhi1();
   void           DoDphi();
   void           DoModified();
   void           DoName();
   void           DoApply();
   void           DoUndo();
   
   ClassDef(TGeoTorusEditor,0)   // TGeoTorus editor
};   
  
#endif                    
 TGeoTorusEditor.h:1
 TGeoTorusEditor.h:2
 TGeoTorusEditor.h:3
 TGeoTorusEditor.h:4
 TGeoTorusEditor.h:5
 TGeoTorusEditor.h:6
 TGeoTorusEditor.h:7
 TGeoTorusEditor.h:8
 TGeoTorusEditor.h:9
 TGeoTorusEditor.h:10
 TGeoTorusEditor.h:11
 TGeoTorusEditor.h:12
 TGeoTorusEditor.h:13
 TGeoTorusEditor.h:14
 TGeoTorusEditor.h:15
 TGeoTorusEditor.h:16
 TGeoTorusEditor.h:17
 TGeoTorusEditor.h:18
 TGeoTorusEditor.h:19
 TGeoTorusEditor.h:20
 TGeoTorusEditor.h:21
 TGeoTorusEditor.h:22
 TGeoTorusEditor.h:23
 TGeoTorusEditor.h:24
 TGeoTorusEditor.h:25
 TGeoTorusEditor.h:26
 TGeoTorusEditor.h:27
 TGeoTorusEditor.h:28
 TGeoTorusEditor.h:29
 TGeoTorusEditor.h:30
 TGeoTorusEditor.h:31
 TGeoTorusEditor.h:32
 TGeoTorusEditor.h:33
 TGeoTorusEditor.h:34
 TGeoTorusEditor.h:35
 TGeoTorusEditor.h:36
 TGeoTorusEditor.h:37
 TGeoTorusEditor.h:38
 TGeoTorusEditor.h:39
 TGeoTorusEditor.h:40
 TGeoTorusEditor.h:41
 TGeoTorusEditor.h:42
 TGeoTorusEditor.h:43
 TGeoTorusEditor.h:44
 TGeoTorusEditor.h:45
 TGeoTorusEditor.h:46
 TGeoTorusEditor.h:47
 TGeoTorusEditor.h:48
 TGeoTorusEditor.h:49
 TGeoTorusEditor.h:50
 TGeoTorusEditor.h:51
 TGeoTorusEditor.h:52
 TGeoTorusEditor.h:53
 TGeoTorusEditor.h:54
 TGeoTorusEditor.h:55
 TGeoTorusEditor.h:56
 TGeoTorusEditor.h:57
 TGeoTorusEditor.h:58
 TGeoTorusEditor.h:59
 TGeoTorusEditor.h:60
 TGeoTorusEditor.h:61
 TGeoTorusEditor.h:62
 TGeoTorusEditor.h:63
 TGeoTorusEditor.h:64
 TGeoTorusEditor.h:65
 TGeoTorusEditor.h:66
 TGeoTorusEditor.h:67
 TGeoTorusEditor.h:68
 TGeoTorusEditor.h:69
 TGeoTorusEditor.h:70
 TGeoTorusEditor.h:71
 TGeoTorusEditor.h:72
 TGeoTorusEditor.h:73
 TGeoTorusEditor.h:74
 TGeoTorusEditor.h:75
 TGeoTorusEditor.h:76
 TGeoTorusEditor.h:77
 TGeoTorusEditor.h:78
 TGeoTorusEditor.h:79
 TGeoTorusEditor.h:80
 TGeoTorusEditor.h:81
 TGeoTorusEditor.h:82
 TGeoTorusEditor.h:83
 TGeoTorusEditor.h:84
 TGeoTorusEditor.h:85
 TGeoTorusEditor.h:86
 TGeoTorusEditor.h:87