#ifndef ROOT_TEveProjectionManagerEditor
#define ROOT_TEveProjectionManagerEditor
#include "TGedFrame.h"
class TGComboBox;
class TGCheckButton;
class TGNumberEntry;
class TGColorSelect;
class TEveProjectionManager;
class TEveGValuator;
class TEveProjectionManagerEditor : public TGedFrame
{
private:
   TEveProjectionManagerEditor(const TEveProjectionManagerEditor&);            
   TEveProjectionManagerEditor& operator=(const TEveProjectionManagerEditor&); 
protected:
   TEveProjectionManager    *fM; 
   
   TGComboBox      *fType;         
   TEveGValuator   *fDistortion;   
   TEveGValuator   *fFixedRadius;  
   TEveGValuator   *fCurrentDepth; 
   
   TGVerticalFrame *fCenterFrame;  
   TGCheckButton   *fDrawCenter;   
   TGCheckButton   *fDrawOrigin;   
   TEveGValuator   *fCenterX;      
   TEveGValuator   *fCenterY;      
   TEveGValuator   *fCenterZ;      
   
   TGColorSelect   *fAxisColor;  
   TGComboBox      *fSIMode;     
   TGNumberEntry   *fSILevel;    
public:
   TEveProjectionManagerEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
   virtual ~TEveProjectionManagerEditor(){}
   virtual void SetModel(TObject* obj);
   
   void DoSplitInfoMode(Int_t type);
   void DoSplitInfoLevel();
   void DoAxisColor(Pixel_t pixel);
   void DoType(Int_t type);
   void DoDistortion();
   void DoFixedRadius();
   void DoCurrentDepth();
   void DoDrawCenter();
   void DoDrawOrigin();
   void DoCenter();
   ClassDef(TEveProjectionManagerEditor, 0); 
};
#endif
Last update: Thu Jan 17 08:49:06 2008
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.