Logo ROOT   6.08/07
Reference Guide
TLine.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Rene Brun 12/12/94
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TLine
13 #define ROOT_TLine
14 
15 
16 #ifndef ROOT_TObject
17 #include "TObject.h"
18 #endif
19 #ifndef ROOT_TAttLine
20 #include "TAttLine.h"
21 #endif
22 #ifndef ROOT_TAttBBox2D
23 #include "TAttBBox2D.h"
24 #endif
25 #ifndef ROOT_TPoint
26 #include "TPoint.h"
27 #endif
28 #ifndef ROOT_GuiTypes
29 #include "GuiTypes.h"
30 #endif
31 
32 
33 class TLine : public TObject, public TAttLine, public TAttBBox2D {
34 
35 protected:
36  Double_t fX1; ///< X of 1st point
37  Double_t fY1; ///< Y of 1st point
38  Double_t fX2; ///< X of 2nd point
39  Double_t fY2; ///< Y of 2nd point
40 
41 public:
42  // TLine status bits
43  enum {
44  kLineNDC = BIT(14), ///< Use NDC coordinates
45  kVertical = BIT(15), ///< Line is vertical
46  kHorizontal = BIT(16) ///< Line is horizontal
47  };
48 
49  TLine();
51  TLine(const TLine &line);
52  virtual ~TLine();
53 
54  void Copy(TObject &line) const;
55  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
58  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
59  Double_t GetX1() const {return fX1;}
60  Double_t GetX2() const {return fX2;}
61  Double_t GetY1() const {return fY1;}
62  Double_t GetY2() const {return fY2;}
65  virtual void ls(Option_t *option="") const;
66  virtual void Paint(Option_t *option="");
67  virtual void PaintLine(Double_t x1, Double_t y1,Double_t x2, Double_t y2);
68  virtual void PaintLineNDC(Double_t u1, Double_t v1,Double_t u2, Double_t v2);
69  virtual void Print(Option_t *option="") const;
70  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
71  virtual void SetNDC(Bool_t isNDC=kTRUE);
72  void SetHorizontal(Bool_t set = kTRUE); // *TOGGLE* *GETTER=IsHorizontal
73  void SetVertical(Bool_t set = kTRUE); // *TOGGLE* *GETTER=IsVertical
74  virtual void SetX1(Double_t x1) {fX1=x1;}
75  virtual void SetX2(Double_t x2) {fX2=x2;}
76  virtual void SetY1(Double_t y1) {fY1=y1;}
77  virtual void SetY2(Double_t y2) {fY2=y2;}
78  virtual Rectangle_t GetBBox();
79  virtual TPoint GetBBoxCenter();
80  virtual void SetBBoxCenter(const TPoint &p);
81  virtual void SetBBoxCenterX(const Int_t x);
82  virtual void SetBBoxCenterY(const Int_t y);
83  virtual void SetBBoxX1(const Int_t x);
84  virtual void SetBBoxX2(const Int_t x);
85  virtual void SetBBoxY1(const Int_t y);
86  virtual void SetBBoxY2(const Int_t y);
87 
88  ClassDef(TLine,3) //A line segment
89 };
90 
91 #endif
virtual void SetY2(Double_t y2)
Definition: TLine.h:77
Double_t GetX1() const
Definition: TLine.h:59
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TLine.cxx:122
Double_t fX1
X of 1st point.
Definition: TLine.h:36
Double_t GetY1() const
Definition: TLine.h:61
TLine * line
const char Option_t
Definition: RtypesCore.h:62
#define BIT(n)
Definition: Rtypes.h:120
virtual void SetBBoxY2(const Int_t y)
Set bottom of BoundingBox to a value (resize in y direction on bottom)
Definition: TLine.cxx:649
virtual TLine * DrawLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates.
Definition: TLine.cxx:93
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a line.
Definition: TLine.cxx:80
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
Double_t fX2
X of 2nd point.
Definition: TLine.h:38
void SetHorizontal(Bool_t set=kTRUE)
Force the line to be drawn horizontally.
Definition: TLine.cxx:455
Bool_t IsVertical()
Check whether this line is to be drawn vertically.
Definition: TLine.cxx:436
virtual void SetBBoxY1(const Int_t y)
Set top of BoundingBox to a value (resize in y direction on top)
Definition: TLine.cxx:637
Bool_t IsHorizontal()
Check whether this line is to be drawn horizontally.
Definition: TLine.cxx:428
static const double x2[5]
virtual void PaintLineNDC(Double_t u1, Double_t v1, Double_t u2, Double_t v2)
Draw this line with new coordinates in NDC.
Definition: TLine.cxx:389
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void Paint(Option_t *option="")
Paint this line with its current attributes.
Definition: TLine.cxx:371
virtual void SetBBoxX1(const Int_t x)
Set left hand side of BoundingBox to a value (resize in x direction on left)
Definition: TLine.cxx:614
Definition: TPoint.h:33
Line is horizontal.
Definition: TLine.h:46
virtual void PaintLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates.
Definition: TLine.cxx:380
virtual void SetX2(Double_t x2)
Definition: TLine.h:75
virtual void ls(Option_t *option="") const
List this line with its attributes.
Definition: TLine.cxx:362
virtual TPoint GetBBoxCenter()
Return the center of the BoundingBox as TPoint in pixels.
Definition: TLine.cxx:545
virtual void SetY1(Double_t y1)
Definition: TLine.h:76
virtual void SetBBoxCenterX(const Int_t x)
Set X coordinate of the center of the BoundingBox.
Definition: TLine.cxx:581
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TLine.cxx:410
Double_t fY1
Y of 1st point.
Definition: TLine.h:37
A simple line.
Definition: TLine.h:33
Use NDC coordinates.
Definition: TLine.h:44
virtual void SetNDC(Bool_t isNDC=kTRUE)
Set NDC mode on if isNDC = kTRUE, off otherwise.
Definition: TLine.cxx:444
virtual void Print(Option_t *option="") const
Dump this line with its attributes.
Definition: TLine.cxx:398
virtual void SetX1(Double_t x1)
Definition: TLine.h:74
virtual void SetBBoxX2(const Int_t x)
Set right hand side of BoundingBox to a value (resize in x direction on right)
Definition: TLine.cxx:626
static const double x1[5]
double Double_t
Definition: RtypesCore.h:55
virtual Rectangle_t GetBBox()
Return the bounding Box of the Line.
Definition: TLine.cxx:521
Double_t y[n]
Definition: legend1.C:17
void SetVertical(Bool_t set=kTRUE)
Force the line to be drawn vertically.
Definition: TLine.cxx:476
Line is vertical.
Definition: TLine.h:45
virtual void SetBBoxCenterY(const Int_t y)
Set Y coordinate of the center of the BoundingBox.
Definition: TLine.cxx:597
virtual TLine * DrawLineNDC(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates in NDC.
Definition: TLine.cxx:105
Mother of all ROOT objects.
Definition: TObject.h:37
void Copy(TObject &line) const
Copy this line to line.
Definition: TLine.cxx:67
Abstract base class for elements drawn in the editor.
Definition: TAttBBox2D.h:23
Double_t GetX2() const
Definition: TLine.h:60
Double_t fY2
Y of 2nd point.
Definition: TLine.h:39
Double_t GetY2() const
Definition: TLine.h:62
const Bool_t kTRUE
Definition: Rtypes.h:91
virtual ~TLine()
Line default destructor.
Definition: TLine.cxx:51
Line Attributes class.
Definition: TAttLine.h:24
virtual void SetBBoxCenter(const TPoint &p)
Set center of the BoundingBox.
Definition: TLine.cxx:556
TLine()
Line default constructor.
Definition: TLine.cxx:34