Logo ROOT   6.07/09
Reference Guide
TClassTree.h
Go to the documentation of this file.
1 // @(#)root/gpad:$Id$
2 // Author: Rene Brun 01/12/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 
12 #ifndef ROOT_TClassTree
13 #define ROOT_TClassTree
14 
15 
16 #ifndef ROOT_TTnamed
17 #include "TNamed.h"
18 #endif
19 
20 class TClass;
21 class TObjString;
22 
23 class TClassTree : public TNamed {
24 
25 protected:
26  TString fClasses; ///<List of classes to be drawn
27  Float_t fYoffset; ///<offset at top of picture in per cent of pad
28  Float_t fLabelDx; ///<width along x of TPaveLabels in per cent of pad
29  Int_t fNclasses; ///<current number of classes
30  Int_t fShowCod; ///<if 1 show classes referenced by implementation
31  Int_t fShowMul; ///<if 1 show multiple inheritance
32  Int_t fShowHas; ///<if 1 show "has a" relationship
33  Int_t fShowRef; ///<if 1 show classes relationship other than inheritance
34  Int_t *fCstatus; ///<[fNclasses] classes status
35  Int_t *fNdata; ///<[fNclasses] Number of data members per class
36  Int_t *fParents; ///<[fNclasses] parent number of classes (permanent)
37  Int_t *fCparent; ///<!parent number of classes (temporary)
38  char **fDerived; ///<![fNclasses] table to indicate if i derives from j
39  TClass **fCpointer; ///<![fNclasses] pointers to the TClass objects
40  TString **fCnames; ///<![fNclasses] class names
41  TString **fCtitles; ///<![fNclasses] class titles
42  TString **fOptions; ///<![fNclasses] List of options per class
43  TString fSourceDir; ///<Concatenated source directories
44  TList **fLinks; ///<![fNclasses] for each class, the list of referenced(ing) classes
45 
46  virtual void FindClassPosition(const char *classname, Float_t &x, Float_t &y);
47  virtual void FindClassesUsedBy(Int_t iclass);
48  virtual void FindClassesUsing(Int_t iclass);
49  virtual void Init();
50  TObjString *Mark(const char *classname, TList *los, Int_t abit);
51  virtual void PaintClass(Int_t iclass, Float_t xleft, Float_t y);
52  virtual void ScanClasses(Int_t iclass);
53  virtual void ShowCod();
54  virtual void ShowHas();
55  virtual void ShowMul();
56  virtual void ShowRef();
57 
58 public:
59  TClassTree();
60  TClassTree(const char *name, const char *classes="");
61  virtual ~TClassTree();
62  virtual void Draw(const char *classes ="");
63  virtual Int_t FindClass(const char *classname);
64  const char *GetClasses() const {return fClasses.Data();}
65  virtual const char *GetSourceDir() const {return fSourceDir.Data();}
66  virtual void ls(Option_t *option="") const;
67  virtual void Paint(Option_t *option="");
68  virtual void SaveAs(const char *filename="",Option_t *option="") const;
69  virtual void SetClasses(const char *classes, Option_t *option="ID");
70  virtual void SetSourceDir(const char *dir="src") {fSourceDir = dir;}
71  virtual void SetYoffset(Float_t offset=0);
72  virtual void SetLabelDx(Float_t labeldx=0.15);
73  virtual void ShowClassesUsedBy(const char *classes);
74  virtual void ShowClassesUsing(const char *classes);
75  virtual void ShowLinks(Option_t *option="HMR");
76 
77  ClassDef(TClassTree,1) //Manager class to draw classes inheritance tree and relations
78 };
79 
80 #endif
81 
TString fClasses
List of classes to be drawn.
Definition: TClassTree.h:26
virtual ~TClassTree()
TClassTree default destructor.
Definition: TClassTree.cxx:244
virtual void FindClassesUsedBy(Int_t iclass)
Select all classes used/referenced by the class number iclass.
Definition: TClassTree.cxx:296
virtual void FindClassPosition(const char *classname, Float_t &x, Float_t &y)
Search the TPaveClass object in the pad with label=classname returns the x and y position of the cent...
Definition: TClassTree.cxx:346
Collectable string class.
Definition: TObjString.h:32
float Float_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:62
virtual void SetYoffset(Float_t offset=0)
Set the offset at the top of the picture The default offset is computed automatically taking into acc...
Definition: TClassTree.cxx:890
TString fSourceDir
Concatenated source directories.
Definition: TClassTree.h:43
virtual void SetClasses(const char *classes, Option_t *option="ID")
Set the list of classes for which the hierarchy is to be drawn See Paint for the syntax.
Definition: TClassTree.cxx:865
TString ** fCtitles
![fNclasses] class titles
Definition: TClassTree.h:41
Int_t fShowCod
if 1 show classes referenced by implementation
Definition: TClassTree.h:30
Int_t * fNdata
[fNclasses] Number of data members per class
Definition: TClassTree.h:35
TClassTree()
TClassTree default constructor.
Definition: TClassTree.cxx:179
virtual void ShowClassesUsing(const char *classes)
mark classes using any class in the list of classes in classes
Definition: TClassTree.cxx:930
TObjString * Mark(const char *classname, TList *los, Int_t abit)
set bit abit in class classname in list los
Definition: TClassTree.cxx:446
Basic string class.
Definition: TString.h:137
TString ** fCnames
![fNclasses] class names
Definition: TClassTree.h:40
int Int_t
Definition: RtypesCore.h:41
virtual void Paint(Option_t *option="")
Draw the current class setting in fClasses and fStatus.
Definition: TClassTree.cxx:461
virtual void ShowMul()
Draw the Multiple inheritance relationships.
Float_t fLabelDx
width along x of TPaveLabels in per cent of pad
Definition: TClassTree.h:28
Int_t fShowMul
if 1 show multiple inheritance
Definition: TClassTree.h:31
virtual void ls(Option_t *option="") const
list classes names and titles
Definition: TClassTree.cxx:432
virtual void ShowClassesUsedBy(const char *classes)
mark classes used by the list of classes in classes
Definition: TClassTree.cxx:899
virtual void ShowLinks(Option_t *option="HMR")
Set link options in the ClassTree object.
virtual void ScanClasses(Int_t iclass)
Select all classes used by/referenced/referencing the class number iclass and build the list of these...
Definition: TClassTree.cxx:699
TClass ** fCpointer
![fNclasses] pointers to the TClass objects
Definition: TClassTree.h:39
const char * Data() const
Definition: TString.h:349
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:254
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
A doubly linked list.
Definition: TList.h:47
virtual Int_t FindClass(const char *classname)
Find class number corresponding to classname in list of local classes.
Definition: TClassTree.cxx:285
virtual const char * GetSourceDir() const
Definition: TClassTree.h:65
virtual void SetSourceDir(const char *dir="src")
Definition: TClassTree.h:70
char ** fDerived
![fNclasses] table to indicate if i derives from j
Definition: TClassTree.h:38
virtual void SetLabelDx(Float_t labeldx=0.15)
Set the size along x of the TPaveLabel showing the class name.
Definition: TClassTree.cxx:879
Int_t fNclasses
current number of classes
Definition: TClassTree.h:29
Int_t * fParents
[fNclasses] parent number of classes (permanent)
Definition: TClassTree.h:36
Int_t fShowRef
if 1 show classes relationship other than inheritance
Definition: TClassTree.h:33
virtual void SaveAs(const char *filename="", Option_t *option="") const
save current configuration in a Root file if filename is blank, the name of the file will be the curr...
Definition: TClassTree.cxx:690
virtual void FindClassesUsing(Int_t iclass)
Select all classes using/referencing the class number iclass.
Definition: TClassTree.cxx:320
The ROOT global object gROOT contains a list of all defined classes.
Definition: TClass.h:81
virtual void ShowRef()
Draw the References relationships (other than inheritance or composition)
virtual void ShowCod()
Draw the Code References relationships.
Definition: TClassTree.cxx:961
const char * GetClasses() const
Definition: TClassTree.h:64
virtual void Draw(const char *classes="")
Draw the inheritance tree and relations for the list of classes see this class header for the syntax ...
Definition: TClassTree.cxx:268
Double_t y[n]
Definition: legend1.C:17
virtual void ShowHas()
Draw the "Has a" relationships.
Definition: TClassTree.cxx:999
Int_t fShowHas
if 1 show "has a" relationship
Definition: TClassTree.h:32
TString ** fOptions
![fNclasses] List of options per class
Definition: TClassTree.h:42
Int_t * fCstatus
[fNclasses] classes status
Definition: TClassTree.h:34
virtual void PaintClass(Int_t iclass, Float_t xleft, Float_t y)
Paint one class level.
Definition: TClassTree.cxx:642
Float_t fYoffset
offset at top of picture in per cent of pad
Definition: TClassTree.h:27
char name[80]
Definition: TGX11.cxx:109
Int_t * fCparent
!parent number of classes (temporary)
Definition: TClassTree.h:37
Draw inheritance tree and their relations for a list of classes.
Definition: TClassTree.h:23
virtual void Init()
Initialize the data structures.
Definition: TClassTree.cxx:367
TList ** fLinks
![fNclasses] for each class, the list of referenced(ing) classes
Definition: TClassTree.h:44