12 #ifndef ROOT_TLineEditor
13 #define ROOT_TLineEditor
29 class TLineEditor :
public TGedFrame {
33 TGNumberEntry *fStartPointX;
34 TGNumberEntry *fStartPointY;
35 TGNumberEntry *fEndPointX;
36 TGNumberEntry *fEndPointY;
37 TGCheckButton *fVertical;
38 TGCheckButton *fHorizontal;
40 virtual void ConnectSignals2Slots();
43 TLineEditor(
const TGWindow *p = 0,
44 Int_t width = 140, Int_t height = 30,
45 UInt_t options = kChildFrame,
46 Pixel_t back = GetDefaultFrameBackground());
47 virtual ~TLineEditor();
49 virtual void SetModel(TObject* obj);
50 virtual void DoStartPoint();
51 virtual void DoEndPoint();
52 virtual void DoLineVertical();
53 virtual void DoLineHorizontal();
55 ClassDef(TLineEditor,0)