Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TWbox.cxx
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#include <iostream>
13#include "TROOT.h"
14#include "Strlen.h"
15#include "TWbox.h"
16#include "TColor.h"
17#include "TVirtualPad.h"
18#include "TVirtualX.h"
19#include "TPoint.h"
20
22
23/** \class TWbox
24\ingroup BasicGraphics
25
26A TBox with a bordersize and a bordermode.
27Example:
28Begin_Macro(source)
29{
30 TWbox *twb = new TWbox(.1,.1,.9,.9,kRed+2,5,1);
31 twb->Draw();
32}
33End_Macro
34*/
35
36////////////////////////////////////////////////////////////////////////////////
37/// wbox normal constructor.
38///
39/// a WBOX is a box with a bordersize and a bordermode
40/// the bordersize is in pixels
41/// - bordermode = -1 box looks as it is behind the screen
42/// - bordermode = 0 no special effects
43/// - bordermode = 1 box looks as it is in front of the screen
44
46 Color_t color ,Short_t bordersize ,Short_t bordermode)
47 :TBox(x1,y1,x2,y2)
48{
49 fBorderSize = bordersize;
50 fBorderMode = bordermode;
51 SetFillColor(color);
52 SetFillStyle(1001);
53}
54
55////////////////////////////////////////////////////////////////////////////////
56/// wbox copy constructor.
57
58TWbox::TWbox(const TWbox &wbox) : TBox(wbox)
59{
60 wbox.TWbox::Copy(*this);
61}
62
63////////////////////////////////////////////////////////////////////////////////
64/// assignment operator
65
67{
68 src.TWbox::Copy(*this);
69 return *this;
70}
71
72////////////////////////////////////////////////////////////////////////////////
73/// Copy this wbox to wbox.
74
75void TWbox::Copy(TObject &obj) const
76{
77 TBox::Copy(obj);
78 ((TWbox&)obj).fBorderSize = fBorderSize;
79 ((TWbox&)obj).fBorderMode = fBorderMode;
80}
81
82////////////////////////////////////////////////////////////////////////////////
83/// Draw this wbox with its current attributes.
84
85void TWbox::Draw(Option_t *option)
86{
87 AppendPad(option);
88}
89
90////////////////////////////////////////////////////////////////////////////////
91/// Draw this wbox with new coordinates.
92
94 Color_t color ,Short_t bordersize ,Short_t bordermode)
95{
96 TWbox *newwbox = new TWbox(x1,y1,x2,y2,color,bordersize,bordermode);
97 newwbox->SetBit(kCanDelete);
98 newwbox->AppendPad();
99}
100
101////////////////////////////////////////////////////////////////////////////////
102/// Execute action corresponding to one event.
103///
104/// This member function is called when a WBOX object is clicked.
105
107{
108 TBox::ExecuteEvent(event, px, py);
109}
110
111////////////////////////////////////////////////////////////////////////////////
112/// Paint this wbox with its current attributes.
113
115{
117}
118
119////////////////////////////////////////////////////////////////////////////////
120/// Draw this wbox with new coordinates.
121
123 Color_t color, Short_t bordersize, Short_t bordermode)
124{
125 // Draw first wbox as a normal filled box
126 TBox::PaintBox(x1, y1, x2, y2);
127
128 // then paint 3d frame (depending on bordermode)
129 if (!IsTransparent())
130 PaintFrame(x1, y1, x2, y2, color, bordersize, bordermode, kTRUE);
131}
132
133////////////////////////////////////////////////////////////////////////////////
134/// Paint a 3D frame around a box.
135
137 Color_t color, Short_t bordersize, Short_t bordermode,
138 Bool_t tops)
139{
140 if (bordermode == 0) return;
141 if (bordersize <= 0) bordersize = 2;
142
143 Short_t pxl,pyl,pxt,pyt,px1,py1,px2,py2;
144 Double_t xl, xt, yl, yt;
145
146 // Compute real left bottom & top right of the box in pixels
147 px1 = gPad->XtoPixel(x1); py1 = gPad->YtoPixel(y1);
148 px2 = gPad->XtoPixel(x2); py2 = gPad->YtoPixel(y2);
149 if (px1 < px2) {pxl = px1; pxt = px2; xl = x1; xt = x2; }
150 else {pxl = px2; pxt = px1; xl = x2; xt = x1;}
151 if (py1 > py2) {pyl = py1; pyt = py2; yl = y1; yt = y2;}
152 else {pyl = py2; pyt = py1; yl = y2; yt = y1;}
153
154 if (!gPad->IsBatch()) {
155 TPoint frame[7];
156
157 // GetDarkColor() and GetLightColor() use GetFillColor()
158 Color_t oldcolor = GetFillColor();
159 SetFillColor(color);
161
162 // Draw top&left part of the box
163 frame[0].fX = pxl; frame[0].fY = pyl;
164 frame[1].fX = pxl + bordersize; frame[1].fY = pyl - bordersize;
165 frame[2].fX = frame[1].fX; frame[2].fY = pyt + bordersize;
166 frame[3].fX = pxt - bordersize; frame[3].fY = frame[2].fY;
167 frame[4].fX = pxt; frame[4].fY = pyt;
168 frame[5].fX = pxl; frame[5].fY = pyt;
169 frame[6].fX = pxl; frame[6].fY = pyl;
170
171 if (bordermode == -1) gVirtualX->SetFillColor(GetDarkColor());
172 else gVirtualX->SetFillColor(GetLightColor());
173 gVirtualX->DrawFillArea(7, frame);
174
175 // Draw bottom&right part of the box
176 frame[0].fX = pxl; frame[0].fY = pyl;
177 frame[1].fX = pxl + bordersize; frame[1].fY = pyl - bordersize;
178 frame[2].fX = pxt - bordersize; frame[2].fY = frame[1].fY;
179 frame[3].fX = frame[2].fX; frame[3].fY = pyt + bordersize;
180 frame[4].fX = pxt; frame[4].fY = pyt;
181 frame[5].fX = pxt; frame[5].fY = pyl;
182 frame[6].fX = pxl; frame[6].fY = pyl;
183
184 if (bordermode == -1) gVirtualX->SetFillColor(TColor::GetColorBright(GetFillColor()));
185 else gVirtualX->SetFillColor(TColor::GetColorDark(GetFillColor()));
186 gVirtualX->DrawFillArea(7, frame);
187
188 gVirtualX->SetFillColor(-1);
189 SetFillColor(oldcolor);
190 }
191
192 if (!tops) return;
193
194 // same for PostScript
195 // Double_t dx = (xt - xl) *Double_t(bordersize)/Double_t(pxt - pxl);
196 // Int_t border = gVirtualPS->XtoPS(xt) - gVirtualPS->XtoPS(xt-dx);
197
198 gPad->PaintBorderPS(xl, yl, xt, yt, bordermode, bordersize,
200}
201
202////////////////////////////////////////////////////////////////////////////////
203/// Save primitive as a C++ statement(s) on output stream out
204
205void TWbox::SavePrimitive(std::ostream &out, Option_t * /*= ""*/)
206{
207 if (gROOT->ClassSaved(TWbox::Class())) {
208 out<<" ";
209 } else {
210 out<<" TWbox *";
211 }
212 out<<"wbox = new TWbox("<<fX1<<","<<fY1<<","<<fX2<<","<<fY2<<");"<<std::endl;
213
214 SaveFillAttributes(out,"wbox",0,1001);
215 SaveLineAttributes(out,"wbox",1,1,1);
216
217 out<<" wbox->Draw();"<<std::endl;
218}
static const double x2[5]
static const double x1[5]
short Short_t
Definition RtypesCore.h:39
double Double_t
Definition RtypesCore.h:59
short Color_t
Definition RtypesCore.h:83
const Bool_t kTRUE
Definition RtypesCore.h:91
const char Option_t
Definition RtypesCore.h:66
#define ClassImp(name)
Definition Rtypes.h:364
#define gROOT
Definition TROOT.h:406
#define gPad
#define gVirtualX
Definition TVirtualX.h:338
virtual Color_t GetFillColor() const
Return the fill area color.
Definition TAttFill.h:30
virtual void Modify()
Change current fill area attributes if necessary.
Definition TAttFill.cxx:211
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
Definition TAttFill.h:37
virtual Bool_t IsTransparent() const
Definition TAttFill.h:44
virtual void SetFillStyle(Style_t fstyle)
Set the fill area style.
Definition TAttFill.h:39
virtual void SaveFillAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1001)
Save fill attributes as C++ statement(s) on output stream out.
Definition TAttFill.cxx:234
virtual void SaveLineAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t widdef=1)
Save line attributes as C++ statement(s) on output stream out.
Definition TAttLine.cxx:270
Create a Box.
Definition TBox.h:22
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:677
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition TBox.cxx:231
Double_t fX1
X of 1st point.
Definition TBox.h:28
void Copy(TObject &box) const
Copy a Box.
Definition TBox.cxx:112
Double_t fY2
Y of 2nd point.
Definition TBox.h:31
Double_t fX2
X of 2nd point.
Definition TBox.h:30
Double_t fY1
Y of 1st point.
Definition TBox.h:29
static Int_t GetColorBright(Int_t color)
Static function: Returns the bright color number corresponding to n If the TColor object does not exi...
Definition TColor.cxx:1916
static Int_t GetColorDark(Int_t color)
Static function: Returns the dark color number corresponding to n If the TColor object does not exist...
Definition TColor.cxx:1948
Mother of all ROOT objects.
Definition TObject.h:37
virtual void AppendPad(Option_t *option="")
Append graphics object to current pad.
Definition TObject.cxx:107
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition TObject.cxx:696
@ kCanDelete
if object in a list can be deleted
Definition TObject.h:58
SCoord_t fY
Definition TPoint.h:36
SCoord_t fX
Definition TPoint.h:35
A TBox with a bordersize and a bordermode.
Definition TWbox.h:20
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition TWbox.cxx:205
virtual void DrawWbox(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Color_t color=33, Short_t bordersize=5, Short_t bordermode=-1)
Draw this wbox with new coordinates.
Definition TWbox.cxx:93
TWbox()
Definition TWbox.h:27
virtual void PaintFrame(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Color_t color, Short_t bordersize, Short_t bordermode, Bool_t tops)
Paint a 3D frame around a box.
Definition TWbox.cxx:136
virtual void PaintWbox(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Color_t color=33, Short_t bordersize=5, Short_t bordermode=-1)
Draw this wbox with new coordinates.
Definition TWbox.cxx:122
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition TWbox.cxx:106
Int_t GetDarkColor() const
Definition TWbox.h:42
Int_t GetLightColor() const
Definition TWbox.h:43
virtual void Paint(Option_t *option="")
Paint this wbox with its current attributes.
Definition TWbox.cxx:114
Short_t fBorderSize
window box bordersize in pixels
Definition TWbox.h:23
TWbox & operator=(const TWbox &src)
assignment operator
Definition TWbox.cxx:66
Short_t fBorderMode
Bordermode (-1=down, 0 = no border, 1=up)
Definition TWbox.h:24
void Copy(TObject &wbox) const
Copy this wbox to wbox.
Definition TWbox.cxx:75
virtual void Draw(Option_t *option="")
Draw this wbox with its current attributes.
Definition TWbox.cxx:85