Logo ROOT   6.10/09
Reference Guide
TLatex.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Nicolas Brun 07/08/98
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 #ifndef ROOT_TLatex
12 #define ROOT_TLatex
13 
14 #include "TText.h"
15 #include "TAttLine.h"
16 
17 
18 class TLatex : public TText, public TAttLine {
19 protected:
20 
21 ////////////////////////////////////////////////////////////////////////////////
22 /// @brief TLatex helper struct holding the attributes of a piece of text.
23 
24  struct TextSpec_t {
27  };
28 
29 ////////////////////////////////////////////////////////////////////////////////
30 /// @brief TLatex helper struct holding the dimensions of a piece of text.
31  struct FormSize_t {
32  Double_t fWidth, fOver, fUnder;
33  };
34 
35 ////////////////////////////////////////////////////////////////////////////////
36 /// @class TLatexFormSize
37 /// @brief TLatex helper class used to compute the size of a portion of a formula.
38 
40  private:
41  Double_t fWidth, fOver, fUnder;
42 
43  public:
44  TLatexFormSize() : fWidth(0), fOver(0),fUnder(0) { } // constructeur par defaut
45  TLatexFormSize(Double_t x, Double_t y1, Double_t y2) : fWidth(x), fOver(y1), fUnder(y2) { } // constructeur
46  virtual ~TLatexFormSize() {} //destructeur
48  : fWidth(form.fWidth), fOver(form.fOver), fUnder(form.fUnder) { }
49 
50  // definition of operators + and +=
52  { return TLatexFormSize(f.Width()+fWidth,TMath::Max(f.Over(),fOver),TMath::Max(f.Under(),fUnder)); }
54  { fWidth += f.Width(); fOver = TMath::Max(fOver,f.Over()); fUnder = TMath::Max(fUnder,f.Under()); }
55 
56  inline void Set(Double_t x, Double_t y1, Double_t y2) { fWidth=x; fOver=y1; fUnder=y2; }
58  { return TLatexFormSize(f.Width()+fWidth,f.Height()+fOver,fUnder); }
60  { return TLatexFormSize(f.Width()+fWidth,fOver,f.Height()+fUnder); }
62  { return TLatexFormSize(fWidth+TMath::Max(f1.Width(),f2.Width()),fOver+f1.Over(),fUnder+f2.Under()); }
63 
64  // return members
65  inline Double_t Width() const { return fWidth; }
66  inline Double_t Over() const { return fOver; }
67  inline Double_t Under() const { return fUnder; }
68  inline Double_t Height() const { return fOver+fUnder; }
69  };
70 
71  Double_t fFactorSize; ///<! Relative size of subscripts and superscripts
72  Double_t fFactorPos; ///<! Relative position of subscripts and superscripts
73  Int_t fLimitFactorSize; ///< lower bound for subscripts/superscripts size
74  const Char_t *fError; ///<! error code
75  Bool_t fShow; ///<! is true during the second pass (Painting)
76  FormSize_t *fTabSize; ///<! array of values for the different zones
77  Double_t fOriginSize; ///< Font size of the starting font
78  Int_t fTabMax; ///<! Maximum allocation for array fTabSize;
79  Int_t fPos; ///<! Current position in array fTabSize;
80  Bool_t fItalic; ///<! Currently inside italic operator
81 
82  TLatex& operator=(const TLatex&);
83 
84  //Text analysis and painting
85  TLatexFormSize Analyse(Double_t x, Double_t y, TextSpec_t spec, const Char_t* t,Int_t length);
86  TLatexFormSize Anal1(TextSpec_t spec, const Char_t* t,Int_t length);
87 
91 
93 
94  Int_t PaintLatex1(Double_t x, Double_t y, Double_t angle, Double_t size, const char *text);
95 
96  void Savefs(TLatexFormSize *fs);
98 
100 
101 public:
102  // TLatex status bits
103  enum {
104  kTextNDC = BIT(14) ///< The text postion is in NDC coordinates
105  };
106 
107  TLatex();
108  TLatex(Double_t x, Double_t y, const char *text);
109  TLatex(const TLatex &text);
110  virtual ~TLatex();
111  void Copy(TObject &text) const;
112 
113  TLatex *DrawLatex(Double_t x, Double_t y, const char *text);
114  TLatex *DrawLatexNDC(Double_t x, Double_t y, const char *text);
115 
116  Double_t GetHeight() const;
117  Double_t GetXsize();
118  Double_t GetYsize();
119  void GetBoundingBox(UInt_t &w, UInt_t &h, Bool_t angle = kFALSE);
120  virtual void Paint(Option_t *option="");
121  virtual void PaintLatex(Double_t x, Double_t y, Double_t angle, Double_t size, const char *text);
122 
123  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
124  virtual void SetIndiceSize(Double_t factorSize);
125  virtual void SetLimitIndiceSize(Int_t limitFactorSize);
126 
127  ClassDef(TLatex,2) //The Latex-style text processor class
128 };
129 
130 #endif
Int_t fLimitFactorSize
lower bound for subscripts/superscripts size
Definition: TLatex.h:73
Bool_t fShow
! is true during the second pass (Painting)
Definition: TLatex.h:75
Double_t fOriginSize
Font size of the starting font.
Definition: TLatex.h:77
const char Option_t
Definition: RtypesCore.h:62
#define BIT(n)
Definition: Rtypes.h:75
TH1 * h
Definition: legend2.C:5
Double_t Over() const
Definition: TLatex.h:66
TLatexFormSize(const TLatexFormSize &form)
Definition: TLatex.h:47
Basic string class.
Definition: TString.h:129
TLatexFormSize AddOver(TLatexFormSize f1, TLatexFormSize f2)
Definition: TLatex.h:61
TLatex helper struct holding the dimensions of a piece of text.
Definition: TLatex.h:31
Int_t fTabMax
! Maximum allocation for array fTabSize;
Definition: TLatex.h:78
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
Double_t fAngle
Definition: TLatex.h:25
TLatex & operator=(const TLatex &)
assignment operator
Definition: TLatex.cxx:451
Int_t PaintLatex1(Double_t x, Double_t y, Double_t angle, Double_t size, const char *text)
Drawing function.
Definition: TLatex.cxx:2135
TLatex * DrawLatexNDC(Double_t x, Double_t y, const char *text)
Draw this TLatex with new coordinates in NDC.
Definition: TLatex.cxx:1931
Double_t fSize
Definition: TLatex.h:25
static const double x2[5]
void DrawLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2, TextSpec_t spec)
Draw a line in a Latex formula.
Definition: TLatex.cxx:1941
Double_t GetYsize()
Return size of the formula along Y in pad coordinates.
Definition: TLatex.cxx:2601
Double_t x[n]
Definition: legend1.C:17
TLatexFormSize AddOver(TLatexFormSize f)
Definition: TLatex.h:57
#define ClassDef(name, id)
Definition: Rtypes.h:297
void DrawCircle(Double_t x1, Double_t y1, Double_t r, TextSpec_t spec)
Draw an arc of ellipse in a Latex formula (right or left parenthesis)
Definition: TLatex.cxx:1961
The text postion is in NDC coordinates.
Definition: TLatex.h:104
TLatexFormSize Anal1(TextSpec_t spec, const Char_t *t, Int_t length)
Analyse function.
Definition: TLatex.cxx:492
To draw Mathematical Formula.
Definition: TLatex.h:18
TLatexFormSize operator+(TLatexFormSize f)
Definition: TLatex.h:51
virtual void Paint(Option_t *option="")
Paint.
Definition: TLatex.cxx:2021
TLatex * DrawLatex(Double_t x, Double_t y, const char *text)
Make a copy of this object with the new parameters And copy object attributes.
Definition: TLatex.cxx:1918
Base class for several text objects.
Definition: TText.h:23
TLatex()
Default constructor.
Definition: TLatex.cxx:389
Int_t CheckLatexSyntax(TString &text)
Check if the Latex syntax is correct.
Definition: TLatex.cxx:2253
Double_t Height() const
Definition: TLatex.h:68
virtual void PaintLatex(Double_t x, Double_t y, Double_t angle, Double_t size, const char *text)
Main drawing function.
Definition: TLatex.cxx:2042
void DrawParenthesis(Double_t x1, Double_t y1, Double_t r1, Double_t r2, Double_t phimin, Double_t phimax, TextSpec_t spec)
Draw an arc of ellipse in a Latex formula (right or left parenthesis)
Definition: TLatex.cxx:1990
const Char_t * fError
! error code
Definition: TLatex.h:74
void Set(Double_t x, Double_t y1, Double_t y2)
Definition: TLatex.h:56
Double_t GetHeight() const
Return height of current pad in pixels.
Definition: TLatex.cxx:2501
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TLatex.cxx:2664
Double_t fWidth
Definition: TLatex.h:32
TRandom2 r(17)
Double_t GetXsize()
Return size of the formula along X in pad coordinates.
Definition: TLatex.cxx:2514
TLatexFormSize Readfs()
Read fs in fTabSize.
Definition: TLatex.cxx:2632
TLatexFormSize(Double_t x, Double_t y1, Double_t y2)
Definition: TLatex.h:45
unsigned int r1[N_CITIES]
Definition: simanTSP.cxx:321
TLatexFormSize AddUnder(TLatexFormSize f)
Definition: TLatex.h:59
unsigned int UInt_t
Definition: RtypesCore.h:42
TLatexFormSize Analyse(Double_t x, Double_t y, TextSpec_t spec, const Char_t *t, Int_t length)
Analyse and paint the TLatex formula.
Definition: TLatex.cxx:524
void GetBoundingBox(UInt_t &w, UInt_t &h, Bool_t angle=kFALSE)
Return text size in pixels.
Definition: TLatex.cxx:2545
Double_t Width() const
Definition: TLatex.h:65
TLatexFormSize FirstParse(Double_t angle, Double_t size, const Char_t *text)
First parsing of the analyse sequence.
Definition: TLatex.cxx:2457
void Savefs(TLatexFormSize *fs)
Save fs values in array fTabSize.
Definition: TLatex.cxx:2642
const Bool_t kFALSE
Definition: RtypesCore.h:92
FormSize_t * fTabSize
! array of values for the different zones
Definition: TLatex.h:76
virtual ~TLatex()
Destructor.
Definition: TLatex.cxx:426
static const double x1[5]
Int_t fPos
! Current position in array fTabSize;
Definition: TLatex.h:79
double f(double x)
TLatex helper class used to compute the size of a portion of a formula.
Definition: TLatex.h:39
double Double_t
Definition: RtypesCore.h:55
TText * text
virtual ~TLatexFormSize()
Definition: TLatex.h:46
Double_t y[n]
Definition: legend1.C:17
void operator+=(TLatexFormSize f)
Definition: TLatex.h:53
void Copy(TObject &text) const
Copy this TLatex object to another TLatex.
Definition: TLatex.cxx:473
Double_t fFactorPos
! Relative position of subscripts and superscripts
Definition: TLatex.h:72
Mother of all ROOT objects.
Definition: TObject.h:37
TLatex helper struct holding the attributes of a piece of text.
Definition: TLatex.h:24
char Char_t
Definition: RtypesCore.h:29
double f2(const double *x)
Short_t Max(Short_t a, Short_t b)
Definition: TMathBase.h:200
TF1 * f1
Definition: legend1.C:11
Bool_t fItalic
! Currently inside italic operator
Definition: TLatex.h:80
virtual void SetLimitIndiceSize(Int_t limitFactorSize)
Set limit for text resizing of subscripts and superscripts.
Definition: TLatex.cxx:2698
Double_t Under() const
Definition: TLatex.h:67
Line Attributes class.
Definition: TAttLine.h:18
unsigned int r2[N_CITIES]
Definition: simanTSP.cxx:322
Double_t fFactorSize
! Relative size of subscripts and superscripts
Definition: TLatex.h:71
virtual void SetIndiceSize(Double_t factorSize)
Set relative size of subscripts and superscripts.
Definition: TLatex.cxx:2690