Logo ROOT   6.14/05
Reference Guide
TAxisModLab.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Olivier Couet
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 #ifndef ROOT_TAxisModLab
13 #define ROOT_TAxisModLab
14 
15 #include "TObject.h"
16 
17 #include "TAttText.h"
18 
19 #include "TString.h"
20 
21 class TAxisModLab : public TObject, public TAttText {
22 
23 private:
24 
25  Int_t fLabNum; ///< Label number.
26  TString fLabText; ///< Label text
27 
28 public:
29 
30  TAxisModLab();
31 
32  void SetLabNum(Int_t n = 0);
33  void SetAngle(Double_t a = -1.);
34  void SetSize(Double_t s = -1.);
35  void SetAlign(Int_t a = -1);
36  void SetColor(Int_t c = -1);
37  void SetFont(Int_t f = -1);
38  void SetText(TString t = "");
39 
40  Int_t GetLabNum() {return fLabNum;}
45  Int_t GetFont() {return fTextFont;}
46  TString GetText() {return fLabText;}
47 
48  ClassDef(TAxisModLab,3) // Modified axis label
49 };
50 
51 #endif
Int_t GetColor()
Definition: TAxisModLab.h:44
void SetText(TString t="")
Set modified label text.
Definition: TAxisModLab.cxx:84
Basic string class.
Definition: TString.h:131
#define f(i)
Definition: RSha256.hxx:104
int Int_t
Definition: RtypesCore.h:41
void SetFont(Int_t f=-1)
Set modified label font.
Definition: TAxisModLab.cxx:77
void SetAlign(Int_t a=-1)
Set modified label alignment.
Definition: TAxisModLab.cxx:63
Double_t GetSize()
Definition: TAxisModLab.h:42
#define ClassDef(name, id)
Definition: Rtypes.h:320
TAxisModLab()
TAxisModLab default constructor.
Definition: TAxisModLab.cxx:29
void SetAngle(Double_t a=-1.)
Set modified label angle.
Definition: TAxisModLab.cxx:49
void SetColor(Int_t c=-1)
Set modified label color.
Definition: TAxisModLab.cxx:70
Float_t fTextAngle
Text angle.
Definition: TAttText.h:21
Int_t fLabNum
Label number.
Definition: TAxisModLab.h:25
auto * a
Definition: textangle.C:12
Int_t GetAlign()
Definition: TAxisModLab.h:43
Text Attributes class.
Definition: TAttText.h:18
void SetSize(Double_t s=-1.)
Set modified label size.
Definition: TAxisModLab.cxx:56
Font_t fTextFont
Text font.
Definition: TAttText.h:25
void SetLabNum(Int_t n=0)
Set modified label number.
Definition: TAxisModLab.cxx:42
Int_t GetLabNum()
Definition: TAxisModLab.h:40
TString fLabText
Label text.
Definition: TAxisModLab.h:26
TAxis helper class used to store the modified labels.
Definition: TAxisModLab.h:21
double Double_t
Definition: RtypesCore.h:55
Double_t GetAngle()
Definition: TAxisModLab.h:41
static constexpr double s
Float_t fTextSize
Text size.
Definition: TAttText.h:22
Mother of all ROOT objects.
Definition: TObject.h:37
TString GetText()
Definition: TAxisModLab.h:46
#define c(i)
Definition: RSha256.hxx:101
Color_t fTextColor
Text color.
Definition: TAttText.h:24
Int_t GetFont()
Definition: TAxisModLab.h:45
const Int_t n
Definition: legend1.C:16
Short_t fTextAlign
Text alignment.
Definition: TAttText.h:23