#ifndef ROOT_TGedTextEditor
#define ROOT_TGedTextEditor
#ifndef ROOT_TGedFrame
#include "TGedFrame.h"
#endif
class TGComboBox;
class TGFontTypeComboBox;
class TGColorSelect;
class TAttText;
 
class TAttTextEditor : public TGedFrame {
protected:
   TAttText            *fAttText;         
   TGFontTypeComboBox  *fTypeCombo;       
   TGComboBox          *fSizeCombo;       
   TGComboBox          *fAlignCombo;      
   TGColorSelect       *fColorSelect;     
   static  TGComboBox *BuildFontSizeComboBox(TGFrame *parent, Int_t id);
   static  TGComboBox *BuildTextAlignComboBox(TGFrame *parent, Int_t id);
public:
   TAttTextEditor(const TGWindow *p = 0,
                  Int_t width = 140, Int_t height = 30,
                  UInt_t options = kChildFrame,
                  Pixel_t back = GetDefaultFrameBackground());
   virtual ~TAttTextEditor();
   virtual void   SetModel(TObject* obj);
   virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   ClassDef(TAttTextEditor,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.