#ifndef ROOT_TEveTextEditor
#define ROOT_TEveTextEditor
#include "TGedFrame.h"
class TGComboBox;
class TGTextEntry;
class TGCheckButton;
class TEveGValuator;
class TEveText;
class TEveTextEditor : public TGedFrame
{
private:
TEveTextEditor(const TEveTextEditor&);
TEveTextEditor& operator=(const TEveTextEditor&);
TGComboBox* MakeLabeledCombo(const char* name);
protected:
TEveText *fM;
TGTextEntry *fText;
TGComboBox *fSize;
TGComboBox *fFile;
TGComboBox *fMode;
TEveGValuator *fExtrude;
TGCheckButton *fLighting;
TGCheckButton *fAutoLighting;
public:
TEveTextEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
virtual ~TEveTextEditor() {}
virtual void SetModel(TObject* obj);
void DoText(const Text_t*);
void DoFontSize();
void DoFontFile();
void DoFontMode();
void DoLighting();
void DoAutoLighting();
void DoExtrude();
ClassDef(TEveTextEditor, 0);
};
#endif
Last change: Wed Jun 25 08:38:13 2008
Last generated: 2008-06-25 08:38
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.