Logo ROOT   6.08/07
Reference Guide
List of all members | Public Member Functions | Protected Attributes | List of all members

Text Attributes class.

This class is used (in general by secondary inheritance) by many other classes (graphics, histograms). It holds all the text attributes.

Text attributes

Text attributes are:

Text Alignment

The text alignment is an integer number (align) allowing to control the horizontal and vertical position of the text string with respect to the text position. The text alignment of any class inheriting from TAttText can be changed using the method SetTextAlign and retrieved using the method GetTextAlign.

align = 10*HorizontalAlign + VerticalAlign

For horizontal alignment the following convention applies:

1=left adjusted, 2=centered, 3=right adjusted

For vertical alignment the following convention applies:

1=bottom adjusted, 2=centered, 3=top adjusted

For example:

align = 11 = left adjusted and bottom adjusted
align = 32 = right adjusted and vertically centered
{
TCanvas *Ta = new TCanvas("Ta","Ta",0,0,500,200);
Ta->Range(0,0,1,1);
TLine *lv = new TLine;
lv->DrawLine(0.33,0.0,0.33,1.0);
lv->DrawLine(0.6,0.165,1.,0.165);
lv->DrawLine(0.6,0.493,1.,0.493);
lv->DrawLine(0.6,0.823,1.,0.823);
// Horizontal alignment.
TText *th1 = new TText(0.33,0.165,"Left adjusted");
th1->SetTextAlign(11); th1->SetTextSize(0.12);
th1->Draw();
TText *th2 = new TText(0.33,0.493,"Center adjusted");
th2->SetTextAlign(21); th2->SetTextSize(0.12);
th2->Draw();
TText *th3 = new TText(0.33,0.823,"Right adjusted");
th3->SetTextAlign(31); th3->SetTextSize(0.12);
th3->Draw();
// Vertical alignment.
TText *tv1 = new TText(0.66,0.165,"Bottom adjusted");
tv1->SetTextAlign(11); tv1->SetTextSize(0.12);
tv1->Draw();
TText *tv2 = new TText(0.66,0.493,"Center adjusted");
tv2->SetTextAlign(12); tv2->SetTextSize(0.12);
tv2->Draw();
TText *tv3 = new TText(0.66,0.823,"Top adjusted");
tv3->SetTextAlign(13); tv3->SetTextSize(0.12);
tv3->Draw();
return Ta;
}
pict1_TAttText_001.png

Text Angle

Text angle in degrees. The text angle of any class inheriting from TAttText can be changed using the method SetTextAngle and retrieved using the method GetTextAngle. The following picture shows the text angle:

pict1_TAttText_002.png

Mnemonic constants are available:

They allow to write:

object->SetTextAlign(kHAlignLeft+kVAlignTop);

Text Color

The text color is a color index (integer) pointing in the ROOT color table. The text color of any class inheriting from TAttText can be changed using the method SetTextColor and retrieved using the method GetTextColor. The following table shows the first 50 default colors.

pict1_TAttText_003.png

Color transparency

SetTextColorAlpha(), allows to set a transparent color. In the following example the text color of the text text is set to blue with a transparency of 35%. The color kBlue itself remains fully opaque.

The transparency is available on all platforms when the flagOpenGL.CanvasPreferGL is set to 1 in $ROOTSYS/etc/system.rootrc, or on Mac with the Cocoa backend. On the file output it is visible with PDF, PNG, Gif, JPEG, SVG ... but not PostScript.

Text Size

If the text precision (see next paragraph) is smaller than 3, the text size (textsize) is a fraction of the current pad size. Therefore the same textsize value can generate text outputs with different absolute sizes in two different pads. The text size in pixels (charheight) is computed the following way:

pad_width = gPad->XtoPixel(gPad->GetX2());
pad_height = gPad->YtoPixel(gPad->GetY1());
if (pad_width < pad_height) charheight = textsize*pad_width;
else charheight = textsize*pad_height;

If the text precision is equal to 3, the text size doesn't depend on the pad's dimensions. A given textsize value always generates the same absolute size. The text size (charheight) is given in pixels:

charheight = textsize;

Note that to scale fonts to the same size as the old True Type package a scale factor of 0.93376068 is apply to the text size before drawing.

The text size of any class inheriting from TAttText can be changed using the method SetTextSize and retrieved using the method GetTextSize.

Text Font and Precision

The text font code is combination of the font number and the precision.

Text font code = 10*fontnumber + precision

Font numbers must be between 1 and 14.

The precision can be:

The text font and precision of any class inheriting from TAttText can be changed using the method SetTextFont and retrieved using the method GetTextFont.

Font quality and speed

When precision 0 is used, only the original non-scaled system fonts are used. The fonts have a minimum (4) and maximum (37) size in pixels. These fonts are fast and are of good quality. Their size varies with large steps and they cannot be rotated. Precision 1 and 2 fonts have a different behaviour depending if the True Type Fonts (TTF) are used or not. If TTF are used, you always get very good quality scalable and rotatable fonts. However TTF are slow.

How to use True Type Fonts

One can activate the TTF by adding (or activating) the following line in the .rootrc file:

Unix.*.Root.UseTTFonts: true

It is possible to check the TTF are in use in a Root session with the command:

If the TTF are in use the following line will appear at the beginning of the printout given by this command:

Unix.*.Root.UseTTFonts: true [Global]

List of the currently supported fonts

Font number X11 Names Win32/TTF Names
1 : times-medium-i-normal "Times New Roman"
2 : times-bold-r-normal "Times New Roman"
3 : times-bold-i-normal "Times New Roman"
4 : helvetica-medium-r-normal "Arial"
5 : helvetica-medium-o-normal "Arial"
6 : helvetica-bold-r-normal "Arial"
7 : helvetica-bold-o-normal "Arial"
8 : courier-medium-r-normal "Courier New"
9 : courier-medium-o-normal "Courier New"
10 : courier-bold-r-normal "Courier New"
11 : courier-bold-o-normal "Courier New"
12 : symbol-medium-r-normal "Symbol"
13 : times-medium-r-normal "Times New Roman"
14 : "Wingdings"
15 : Symbol italic (derived from Symbol)

The following picture shows how each font looks. The number on the left is the "text font code". In this picture precision 2 was selected.

pict1_TAttText_004.png

Definition at line 24 of file TAttText.h.

Public Member Functions

 TAttText ()
 AttText default constructor. More...
 
 TAttText (Int_t align, Float_t angle, Color_t color, Style_t font, Float_t tsize)
 AttText normal constructor. More...
 
virtual ~TAttText ()
 AttText destructor. More...
 
void Copy (TAttText &atttext) const
 Copy this text attributes to a new TAttText. More...
 
virtual Short_t GetTextAlign () const
 Return the text alignment. More...
 
virtual Float_t GetTextAngle () const
 Return the text angle. More...
 
virtual Color_t GetTextColor () const
 Return the text color. More...
 
virtual Font_t GetTextFont () const
 Return the text font. More...
 
virtual Float_t GetTextSize () const
 Return the text size. More...
 
virtual void Modify ()
 Change current text attributes if necessary. More...
 
virtual void ResetAttText (Option_t *toption="")
 Reset this text attributes to default values. More...
 
virtual void SaveTextAttributes (std::ostream &out, const char *name, Int_t alidef=12, Float_t angdef=0, Int_t coldef=1, Int_t fondef=61, Float_t sizdef=1)
 Save text attributes as C++ statement(s) on output stream out. More...
 
virtual void SetTextAlign (Short_t align=11)
 Set the text alignment. More...
 
virtual void SetTextAngle (Float_t tangle=0)
 Set the text angle. More...
 
virtual void SetTextAttributes ()
 Invoke the DialogCanvas Text attributes. More...
 
virtual void SetTextColor (Color_t tcolor=1)
 Set the text color. More...
 
virtual void SetTextColorAlpha (Color_t tcolor, Float_t talpha)
 Set a transparent marker color. More...
 
virtual void SetTextFont (Font_t tfont=62)
 Set the text font. More...
 
virtual void SetTextSize (Float_t tsize=1)
 Set the text size. More...
 
virtual void SetTextSizePixels (Int_t npixels)
 Set the text size in pixels. More...
 

Protected Attributes

Short_t fTextAlign
 Text alignment. More...
 
Float_t fTextAngle
 Text angle. More...
 
Color_t fTextColor
 Text color. More...
 
Font_t fTextFont
 Text font. More...
 
Float_t fTextSize
 Text size. More...
 

#include <TAttText.h>

Inheritance diagram for TAttText:
[legend]

Constructor & Destructor Documentation

◆ TAttText() [1/2]

TAttText::TAttText ( )

AttText default constructor.

Default text attributes are taken from the current style.

Definition at line 257 of file TAttText.cxx.

◆ TAttText() [2/2]

TAttText::TAttText ( Int_t  align,
Float_t  angle,
Color_t  color,
Style_t  font,
Float_t  tsize 
)

AttText normal constructor.

Text attributes are taken from the argument list.

Definition at line 275 of file TAttText.cxx.

◆ ~TAttText()

TAttText::~TAttText ( )
virtual

AttText destructor.

Definition at line 287 of file TAttText.cxx.

Member Function Documentation

◆ Copy()

void TAttText::Copy ( TAttText atttext) const

Copy this text attributes to a new TAttText.

Definition at line 294 of file TAttText.cxx.

◆ GetTextAlign()

virtual Short_t TAttText::GetTextAlign ( ) const
inlinevirtual

Return the text alignment.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 38 of file TAttText.h.

◆ GetTextAngle()

virtual Float_t TAttText::GetTextAngle ( ) const
inlinevirtual

Return the text angle.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 39 of file TAttText.h.

◆ GetTextColor()

virtual Color_t TAttText::GetTextColor ( ) const
inlinevirtual

Return the text color.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 40 of file TAttText.h.

◆ GetTextFont()

virtual Font_t TAttText::GetTextFont ( ) const
inlinevirtual

Return the text font.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 41 of file TAttText.h.

◆ GetTextSize()

virtual Float_t TAttText::GetTextSize ( ) const
inlinevirtual

Return the text size.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 42 of file TAttText.h.

◆ Modify()

void TAttText::Modify ( )
virtual

Change current text attributes if necessary.

Definition at line 306 of file TAttText.cxx.

◆ ResetAttText()

void TAttText::ResetAttText ( Option_t toption = "")
virtual

Reset this text attributes to default values.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 335 of file TAttText.cxx.

◆ SaveTextAttributes()

void TAttText::SaveTextAttributes ( std::ostream &  out,
const char *  name,
Int_t  alidef = 12,
Float_t  angdef = 0,
Int_t  coldef = 1,
Int_t  fondef = 61,
Float_t  sizdef = 1 
)
virtual

Save text attributes as C++ statement(s) on output stream out.

Definition at line 347 of file TAttText.cxx.

◆ SetTextAlign()

virtual void TAttText::SetTextAlign ( Short_t  align = 11)
inlinevirtual

Set the text alignment.

Reimplemented in TGX11, TGWin32, TVirtualX, TGWin32VirtualXProxy, and TGQuartz.

Definition at line 47 of file TAttText.h.

◆ SetTextAngle()

virtual void TAttText::SetTextAngle ( Float_t  tangle = 0)
inlinevirtual

Set the text angle.

Reimplemented in TGWin32VirtualXProxy, and TGraphNode.

Definition at line 48 of file TAttText.h.

◆ SetTextAttributes()

void TAttText::SetTextAttributes ( )
virtual

Invoke the DialogCanvas Text attributes.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 375 of file TAttText.cxx.

◆ SetTextColor()

virtual void TAttText::SetTextColor ( Color_t  tcolor = 1)
inlinevirtual

Set the text color.

Reimplemented in TGX11, TGWin32, TVirtualX, TPostScript, TGWin32VirtualXProxy, TPDF, TGQuartz, TTeXDump, and TSVG.

Definition at line 49 of file TAttText.h.

◆ SetTextColorAlpha()

void TAttText::SetTextColorAlpha ( Color_t  tcolor,
Float_t  talpha 
)
virtual

Set a transparent marker color.

talpha defines the percentage of the color opacity from 0. (fully transparent) to 1. (fully opaque).

Definition at line 385 of file TAttText.cxx.

◆ SetTextFont()

virtual void TAttText::SetTextFont ( Font_t  tfont = 62)
inlinevirtual

Set the text font.

Reimplemented in TGX11, TVirtualX, TGWin32, TGWin32VirtualXProxy, TGQuartz, and TGX11TTF.

Definition at line 51 of file TAttText.h.

◆ SetTextSize()

virtual void TAttText::SetTextSize ( Float_t  tsize = 1)
inlinevirtual

Set the text size.

Reimplemented in TGX11, TVirtualX, TGWin32, TGWin32VirtualXProxy, TGQuartz, and TGX11TTF.

Definition at line 52 of file TAttText.h.

◆ SetTextSizePixels()

void TAttText::SetTextSizePixels ( Int_t  npixels)
virtual

Set the text size in pixels.

If the font precision is greater than 2, the text size is set to npixels, otherwise the text size is computed as a percent of the pad size.

Reimplemented in TGWin32VirtualXProxy.

Definition at line 396 of file TAttText.cxx.

Member Data Documentation

◆ fTextAlign

Short_t TAttText::fTextAlign
protected

Text alignment.

Definition at line 29 of file TAttText.h.

◆ fTextAngle

Float_t TAttText::fTextAngle
protected

Text angle.

Definition at line 27 of file TAttText.h.

◆ fTextColor

Color_t TAttText::fTextColor
protected

Text color.

Definition at line 30 of file TAttText.h.

◆ fTextFont

Font_t TAttText::fTextFont
protected

Text font.

Definition at line 31 of file TAttText.h.

◆ fTextSize

Float_t TAttText::fTextSize
protected

Text size.

Definition at line 28 of file TAttText.h.


The documentation for this class was generated from the following files: