Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TPavesText.cxx
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Rene Brun 19/11/95
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 "Riostream.h"
13 #include "TROOT.h"
14 #include "TPavesText.h"
15 #include "TVirtualPad.h"
16 #include "TBufferFile.h"
17 #include "TError.h"
18 
19 ClassImp(TPavesText);
20 
21 
22 /** \class TPavesText
23 \ingroup BasicGraphics
24 
25 A PaveText (see TPaveText) with several stacked paves.
26 
27 \image html graf_pavestext.png
28 */
29 
30 ////////////////////////////////////////////////////////////////////////////////
31 /// Pavestext default constructor.
32 
33 TPavesText::TPavesText(): TPaveText()
34 {
35  fNpaves = 5;
36 }
37 
38 ////////////////////////////////////////////////////////////////////////////////
39 /// Pavestext normal constructor.
40 ///
41 /// The PavesText is by default defined both bordersize=1 and option ="br".
42 /// - option = "T" Top frame
43 /// - option = "B" Bottom frame
44 /// - option = "R" Right frame
45 /// - option = "L" Left frame
46 /// - option = "NDC" x1,y1,x2,y2 are given in NDC
47 /// - option = "ARC" corners are rounded
48 
49 TPavesText::TPavesText(Double_t x1, Double_t y1,Double_t x2, Double_t y2, Int_t npaves,Option_t *option)
50  :TPaveText(x1,y1,x2,y2,option)
51 {
52  fNpaves = npaves;
53  SetBorderSize(1);
54 }
55 
56 ////////////////////////////////////////////////////////////////////////////////
57 /// Pavestext default destructor.
58 
59 TPavesText::~TPavesText()
60 {
61 }
62 
63 ////////////////////////////////////////////////////////////////////////////////
64 /// Pavestext copy constructor.
65 
66 TPavesText::TPavesText(const TPavesText &pavestext) : TPaveText()
67 {
68  TBufferFile b(TBuffer::kWrite);
69  TPavesText *p = (TPavesText*)(&pavestext);
70  p->Streamer(b);
71  b.SetReadMode();
72  b.SetBufferOffset(0);
73  Streamer(b);
74 }
75 
76 ////////////////////////////////////////////////////////////////////////////////
77 /// Draw this pavestext with its current attributes.
78 
79 void TPavesText::Draw(Option_t *option)
80 {
81  AppendPad(option);
82 }
83 
84 ////////////////////////////////////////////////////////////////////////////////
85 /// Paint this pavestext with its current attributes.
86 
87 void TPavesText::Paint(Option_t *option)
88 {
89  // Draw the fNpaves-1 stacked paves
90  // The spacing between paves is set to 3 times the bordersize
91  Int_t bordersize = GetBorderSize();
92  const char *opt = GetOption();
93  Double_t signx, signy;
94  if (strstr(opt,"l")) signx = -1;
95  else signx = 1;
96  if (strstr(opt,"b")) signy = -1;
97  else signy = 1;
98  Double_t dx = 3*signx*(gPad->PixeltoX(bordersize) - gPad->PixeltoX(0));
99  Double_t dy = 3*signy*(gPad->PixeltoY(bordersize) - gPad->PixeltoY(0));
100 
101  TPave::ConvertNDCtoPad();
102 
103  for (Int_t ipave=fNpaves;ipave>1;ipave--) {
104  Double_t x1 = fX1 + dx*Double_t(ipave-1);
105  Double_t y1 = fY1 - dy*Double_t(ipave-1);
106  Double_t x2 = fX2 + dx*Double_t(ipave-1);
107  Double_t y2 = fY2 - dy*Double_t(ipave-1);
108  TPave::PaintPave(x1,y1,x2,y2,bordersize,option);
109  }
110 
111  // Draw the top pavetext
112  TPaveText::Paint(option);
113 }
114 
115 ////////////////////////////////////////////////////////////////////////////////
116 /// Save primitive as a C++ statement(s) on output stream out
117 
118 void TPavesText::SavePrimitive(std::ostream &out, Option_t * /*= ""*/)
119 {
120  if (!strcmp(GetName(),"stats")) return;
121  if (!strcmp(GetName(),"title")) return;
122  Bool_t saved = gROOT->ClassSaved(TPavesText::Class());
123  char quote = '"';
124  out<<" "<<std::endl;
125  if (saved) {
126  out<<" ";
127  } else {
128  out<<" TPavesText *";
129  }
130  out<<"pst = new TPavesText("<<fX1<<","<<fY1<<","<<fX2<<","<<fY2
131  <<","<<fNpaves<<","<<quote<<fOption<<quote<<");"<<std::endl;
132 
133  if (strcmp(GetName(),"TPave")) {
134  out<<" pst->SetName("<<quote<<GetName()<<quote<<");"<<std::endl;
135  }
136  if (fLabel.Length() > 0) {
137  out<<" pst->SetLabel("<<quote<<fLabel<<quote<<");"<<std::endl;
138  }
139  if (fBorderSize != 4) {
140  out<<" pst->SetBorderSize("<<fBorderSize<<");"<<std::endl;
141  }
142  SaveFillAttributes(out,"pst",0,1001);
143  SaveLineAttributes(out,"pst",1,1,1);
144  SaveTextAttributes(out,"pst",22,0,1,62,0);
145  TPaveText::SaveLines(out,"pst",saved);
146  out<<" pst->Draw();"<<std::endl;
147 }