#ifndef ROOT_TLineEditor
#define ROOT_TLineEditor
#ifndef ROOT_TGedFrame
#include "TGedFrame.h"
#endif
class TGNumberEntry;
class TGCheckButton;
class TLine;
class TLineEditor : public TGedFrame {
protected:
TLine *fLine;
TGNumberEntry *fStartPointX;
TGNumberEntry *fStartPointY;
TGNumberEntry *fEndPointX;
TGNumberEntry *fEndPointY;
TGCheckButton *fVertical;
TGCheckButton *fHorizontal;
virtual void ConnectSignals2Slots();
public:
TLineEditor(const TGWindow *p = 0,
Int_t width = 140, Int_t height = 30,
UInt_t options = kChildFrame,
Pixel_t back = GetDefaultFrameBackground());
virtual ~TLineEditor();
virtual void SetModel(TObject* obj);
virtual void DoStartPoint();
virtual void DoEndPoint();
virtual void DoLineVertical();
virtual void DoLineHorizontal();
ClassDef(TLineEditor,0)
};
#endif
Last change: Wed Jun 25 08:47:58 2008
Last generated: 2008-06-25 08:47
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.