// @(#)root/base:$Id$ // Author: Rene Brun 12/12/94 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #include "Riostream.h" #include "Strlen.h" #include "TROOT.h" #include "TAttText.h" #include "TVirtualPad.h" #include "TStyle.h" #include "TVirtualX.h" #include "TError.h" #include "TVirtualPadEditor.h" #include "TColor.h" ClassImp(TAttText) //______________________________________________________________________________ /* Begin_Html

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
End_Html Begin_Macro(source) textalign.C End_Macro Begin_Html

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: End_Html Begin_Macro(source) textangle.C End_Macro Mnemonic constants are available:
kHAlignLeft   = 10, kHAlignCenter = 20, kHAlignRight = 30,
kVAlignBottom = 1,  kVAlignCenter = 2,  kVAlignTop   = 3
They allow to write:
object->SetTextAlign(kHAlignLeft+kVAlignTop);
Begin_Html

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. End_Html Begin_Macro(source) { TCanvas *c = new TCanvas("c","Text colors",0,0,500,200); c.DrawColorTable(); return c; } End_Macro Begin_Html

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:
precision = 0 fast hardware fonts (steps in the size)
precision = 1 scalable and rotatable hardware fonts (see below)
precision = 2 scalable and rotatable hardware fonts
precision = 3 scalable and rotatable hardware fonts. Text size is given in pixels.

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:
   gEnv->Print();
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. End_Html Begin_Macro(source) fonts.C End_Macro */ //______________________________________________________________________________ TAttText::TAttText() { // AttText default constructor. // // Default text attributes are taken from the current style. if (!gStyle) { ResetAttText(); return; } fTextAlign = gStyle->GetTextAlign(); fTextAngle = gStyle->GetTextAngle(); fTextColor = gStyle->GetTextColor(); fTextFont = gStyle->GetTextFont(); fTextSize = gStyle->GetTextSize(); } //______________________________________________________________________________ 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. fTextAlign = align; fTextAngle = angle; fTextColor = color; fTextFont = font; fTextSize = tsize; } //______________________________________________________________________________ TAttText::~TAttText() { // AttText destructor. } //______________________________________________________________________________ void TAttText::Copy(TAttText &atttext) const { // Copy this text attributes to a new TAttText. atttext.fTextAlign = fTextAlign; atttext.fTextAngle = fTextAngle; atttext.fTextColor = fTextColor; atttext.fTextFont = fTextFont; atttext.fTextSize = fTextSize; } //______________________________________________________________________________ void TAttText::Modify() { // Change current text attributes if necessary. if (!gPad) return; // Do we need to change font? if (!gPad->IsBatch()) { gVirtualX->SetTextAngle(fTextAngle); Float_t wh = (Float_t)gPad->XtoPixel(gPad->GetX2()); Float_t hh = (Float_t)gPad->YtoPixel(gPad->GetY1()); Float_t tsize; if (wh < hh) tsize = fTextSize*wh; else tsize = fTextSize*hh; if (fTextFont%10 > 2) tsize = fTextSize; if (gVirtualX->GetTextFont() != fTextFont) { gVirtualX->SetTextFont(fTextFont); gVirtualX->SetTextSize(tsize); } if (gVirtualX->GetTextSize() != tsize) gVirtualX->SetTextSize(tsize); gVirtualX->SetTextAlign(fTextAlign); gVirtualX->SetTextColor(fTextColor); } gPad->SetAttTextPS(fTextAlign,fTextAngle,fTextColor,fTextFont,fTextSize); } //______________________________________________________________________________ void TAttText::ResetAttText(Option_t *) { // Reset this text attributes to default values. fTextAlign = 11; fTextAngle = 0; fTextColor = 1; fTextFont = 62; fTextSize = 0.05; } //______________________________________________________________________________ void TAttText::SaveTextAttributes(ostream &out, const char *name, Int_t alidef, Float_t angdef, Int_t coldef, Int_t fondef, Float_t sizdef) { // Save text attributes as C++ statement(s) on output stream out. if (fTextAlign != alidef) { out<<" "<SetTextAlign("< 228) { TColor::SaveColor(out, fTextColor); out<<" "<SetTextColor(ci);" << endl; } else out<<" "<SetTextColor("<SetTextFont("<SetTextSize("<SetTextAngle("< 2) { fTextSize = Float_t(npixels); } else { TVirtualPad *pad = gROOT->GetSelectedPad(); if (!pad) return; Float_t dy = pad->AbsPixeltoY(0) - pad->AbsPixeltoY(npixels); fTextSize = dy/(pad->GetY2() - pad->GetY1()); } }