#ifndef ROOT_TGraphEditor
#define ROOT_TGraphEditor
#ifndef ROOT_TGedFrame
#include "TGedFrame.h"
#endif
class TGraph;
class TGTextEntry;
class TGCheckButton;
class TGRadioButton;
class TGLineWidthComboBox;
class TGraphEditor : public TGedFrame {
protected:
   char                 fDrawShape;   
   TGTextEntry         *fTitle;       
   Int_t                fTitlePrec;   
   TGraph              *fGraph;       
   TGButtonGroup       *fgr;          
   TGRadioButton       *fShape;       
   TGRadioButton       *fShape0;      
   TGRadioButton       *fShape1;      
   TGRadioButton       *fShape2;      
   TGRadioButton       *fShape3;      
   TGLayoutHints       *fShape1lh;    
   TGCheckButton       *fMarkerOnOff; 
   TGLineWidthComboBox *fWidthCombo;  
   TGCheckButton       *fExSide;      
   virtual void ConnectSignals2Slots();
public:
   TGraphEditor(const TGWindow *p = 0, 
               Int_t width = 140, Int_t height = 30,
               UInt_t options = kChildFrame,
               Pixel_t back = GetDefaultFrameBackground());
   virtual ~TGraphEditor();
   virtual void SetModel(TObject* obj);
   
   virtual void DoShape();
   virtual void DoMarkerOnOff(Bool_t on);
   virtual void DoTitle(const char *text);
   virtual void DoGraphLineWidth();
   ClassDef(TGraphEditor,0)        
};
#endif
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.