Logo ROOT  
Reference Guide
TBox.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_TBox
13#define ROOT_TBox
14
15
16#include "TObject.h"
17#include "TAttLine.h"
18#include "TAttFill.h"
19#include "TAttBBox2D.h"
20#include "TPoint.h"
21#include "GuiTypes.h"
22
23
24class TBox : public TObject, public TAttLine, public TAttFill, public TAttBBox2D {
25
26private:
27 TObject *fTip; ///<! tool tip associated with box
28
29protected:
30 Double_t fX1; ///< X of 1st point
31 Double_t fY1; ///< Y of 1st point
32 Double_t fX2; ///< X of 2nd point
33 Double_t fY2; ///< Y of 2nd point
34 Bool_t fResizing; ///<! True if box is being resized
35
36public:
37 // Private bits, clients can only test but not change them
38 enum {
39 kCannotMove = BIT(12) //if set the box cannot be moved/resized
40 };
41 TBox();
43 TBox(const TBox &box);
44 TBox& operator=(const TBox&);
45 virtual ~TBox();
46 void Copy(TObject &box) const;
47 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
48 virtual void Draw(Option_t *option="");
50 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
51 Bool_t IsBeingResized() const { return fResizing; }
52 Double_t GetX1() const { return fX1; }
53 Double_t GetX2() const { return fX2; }
54 Double_t GetY1() const { return fY1; }
55 Double_t GetY2() const { return fY2; }
56 virtual void HideToolTip(Int_t event);
57 virtual Int_t IsInside(Double_t x, Double_t y) const;
58 virtual void ls(Option_t *option="") const;
59 virtual void Paint(Option_t *option="");
60 virtual void PaintBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Option_t *option="");
61 virtual void Print(Option_t *option="") const;
62 virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
63 virtual void SetX1(Double_t x1) {fX1=x1;}
64 virtual void SetX2(Double_t x2) {fX2=x2;}
65 virtual void SetY1(Double_t y1) {fY1=y1;}
66 virtual void SetY2(Double_t y2) {fY2=y2;}
67 virtual void SetToolTipText(const char *text, Long_t delayms = 1000);
68 virtual Rectangle_t GetBBox();
69 virtual TPoint GetBBoxCenter();
70 virtual void SetBBoxCenter(const TPoint &p);
71 virtual void SetBBoxCenterX(const Int_t x);
72 virtual void SetBBoxCenterY(const Int_t y);
73 virtual void SetBBoxX1(const Int_t x);
74 virtual void SetBBoxX2(const Int_t x);
75 virtual void SetBBoxY1(const Int_t y);
76 virtual void SetBBoxY2(const Int_t y);
77
78 ClassDef(TBox,3) //Box class
79};
80
81#endif
82
static const double x2[5]
static const double x1[5]
int Int_t
Definition: RtypesCore.h:41
long Long_t
Definition: RtypesCore.h:50
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:326
#define BIT(n)
Definition: Rtypes.h:83
Abstract base class for elements drawn in the editor.
Definition: TAttBBox2D.h:19
Fill Area Attributes class.
Definition: TAttFill.h:19
Line Attributes class.
Definition: TAttLine.h:18
Create a Box.
Definition: TBox.h:24
virtual Rectangle_t GetBBox()
Return the "bounding Box" of the Box.
Definition: TBox.cxx:776
Double_t GetX1() const
Definition: TBox.h:52
virtual void SetBBoxY1(const Int_t y)
Set top of BoundingBox to a value (resize in y direction on top)
Definition: TBox.cxx:890
virtual void SetToolTipText(const char *text, Long_t delayms=1000)
Set tool tip text associated with this box.
Definition: TBox.cxx:728
virtual void SetY2(Double_t y2)
Definition: TBox.h:66
virtual void PaintBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Option_t *option="")
Draw this box with new coordinates.
Definition: TBox.cxx:676
virtual void SetBBoxX2(const Int_t x)
Set right hand side of BoundingBox to a value (resize in x direction on right)
Definition: TBox.cxx:881
TBox & operator=(const TBox &)
Assignment operator.
Definition: TBox.cxx:92
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TBox.cxx:230
Double_t fX1
X of 1st point.
Definition: TBox.h:30
virtual void ls(Option_t *option="") const
List this box with its attributes.
Definition: TBox.cxx:659
virtual void HideToolTip(Int_t event)
Hide tool tip depending on the event type.
Definition: TBox.cxx:640
Double_t GetX2() const
Definition: TBox.h:53
virtual void SetBBoxCenter(const TPoint &p)
Set center of the Box.
Definition: TBox.cxx:811
Double_t GetY1() const
Definition: TBox.h:54
virtual void SetX1(Double_t x1)
Definition: TBox.h:63
Double_t GetY2() const
Definition: TBox.h:55
virtual void Draw(Option_t *option="")
Draw this box with its current attributes.
Definition: TBox.cxx:194
virtual Int_t IsInside(Double_t x, Double_t y) const
Function which returns 1 if point x,y lies inside the box, 0 otherwise.
Definition: TBox.cxx:649
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a box.
Definition: TBox.cxx:134
virtual void SetX2(Double_t x2)
Definition: TBox.h:64
virtual ~TBox()
Box destructor.
Definition: TBox.cxx:68
void Copy(TObject &box) const
Copy a Box.
Definition: TBox.cxx:111
TBox()
Box default constructor.
Definition: TBox.cxx:41
virtual TBox * DrawBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this box with new coordinates.
Definition: TBox.cxx:203
Bool_t IsBeingResized() const
Definition: TBox.h:51
virtual void SetBBoxY2(const Int_t y)
Set bottom of BoundingBox to a value (resize in y direction on bottom)
Definition: TBox.cxx:900
TObject * fTip
! tool tip associated with box
Definition: TBox.h:27
virtual void SetBBoxX1(const Int_t x)
Set left hand side of BoundingBox to a value (resize in x direction on left)
Definition: TBox.cxx:871
virtual void SetBBoxCenterY(const Int_t y)
Set Y coordinate of the center of the Box.
Definition: TBox.cxx:853
Double_t fY2
Y of 2nd point.
Definition: TBox.h:33
Double_t fX2
X of 2nd point.
Definition: TBox.h:32
Double_t fY1
Y of 1st point.
Definition: TBox.h:31
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TBox.cxx:708
Bool_t fResizing
! True if box is being resized
Definition: TBox.h:34
virtual void SetY1(Double_t y1)
Definition: TBox.h:65
virtual TPoint GetBBoxCenter()
Return the center of the Box as TPoint in pixels.
Definition: TBox.cxx:800
virtual void Paint(Option_t *option="")
Paint this box with its current attributes.
Definition: TBox.cxx:668
virtual void SetBBoxCenterX(const Int_t x)
Set X coordinate of the center of the Box.
Definition: TBox.cxx:836
@ kCannotMove
Definition: TBox.h:39
virtual void Print(Option_t *option="") const
Dump this box with its attributes.
Definition: TBox.cxx:694
Mother of all ROOT objects.
Definition: TObject.h:37
Definition: TPoint.h:31
TText * text
void box(Int_t pat, Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Definition: fillpatterns.C:1
Double_t y[n]
Definition: legend1.C:17
Double_t x[n]
Definition: legend1.C:17