Logo ROOT   6.16/01
Reference Guide
TInspectCanvas.h
Go to the documentation of this file.
1// @(#)root/gpad:$Id$
2// Author: Rene Brun 08/01/2000
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_TInspectCanvas
13#define ROOT_TInspectCanvas
14
15
16#include "TCanvas.h"
17#include "TAttText.h"
18
19class TButton;
20
21class TInspectCanvas : public TCanvas, public TAttText {
22
23protected:
24
25 TButton *fBackward; ///< Pointer to the Backward button
26 TButton *fForward; ///< Pointer to the Forward button
27 TList *fObjects; ///< List of objects inspected
28 TObject *fCurObject; ///< Pointer to object being inspected
29
30public:
33 virtual ~TInspectCanvas();
34 TButton *GetBackward() const {return fBackward;}
35 TButton *GetForward() const {return fForward;}
36 TObject *GetCurObject() const {return fCurObject;}
37 TList *GetObjects() const {return fObjects;}
38 static void GoBackward();
39 static void GoForward();
40 static void Inspector(TObject *obj);
41 virtual void InspectObject(TObject *obj);
42 virtual void RecursiveRemove(TObject *obj);
43
44 //dummies
45 virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0);
46 virtual void SetGrid(Int_t valuex = 1, Int_t valuey = 1);
47 virtual void SetGridx(Int_t value = 1);
48 virtual void SetGridy(Int_t value = 1);
49 virtual void SetLogx(Int_t value = 1);
50 virtual void SetLogy(Int_t value = 1);
51 virtual void SetLogz(Int_t value = 1);
52 virtual void SetTickx(Int_t value = 1);
53 virtual void SetTicky(Int_t value = 1);
54 virtual void x3d(Option_t *option="");
55
56 ClassDef(TInspectCanvas,1) //The canvas Inspector
57};
58
68inline void TInspectCanvas::x3d(Option_t *) { }
69
70#endif
71
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
float Float_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:324
Text Attributes class.
Definition: TAttText.h:18
A TButton object is a user interface object.
Definition: TButton.h:19
The Canvas class.
Definition: TCanvas.h:31
A TInspectCanvas is a canvas specialized to inspect Root objects.
TButton * fBackward
Pointer to the Backward button.
virtual void SetGridx(Int_t value=1)
TInspectCanvas()
InspectCanvas default constructor.
static void Inspector(TObject *obj)
static function , interface to InspectObject.
TList * fObjects
List of objects inspected.
TObject * fCurObject
Pointer to object being inspected.
TButton * GetBackward() const
virtual void x3d(Option_t *option="")
Deprecated: use TPad::GetViewer3D() instead.
TList * GetObjects() const
virtual void SetGrid(Int_t valuex=1, Int_t valuey=1)
TObject * GetCurObject() const
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
virtual void SetLogy(Int_t value=1)
Set Lin/Log scale for Y.
TButton * GetForward() const
static void GoBackward()
static function , inspect previous object
TButton * fForward
Pointer to the Forward button.
virtual void SetLogz(Int_t value=1)
Set Lin/Log scale for Z.
virtual void SetLogx(Int_t value=1)
Set Lin/Log scale for X.
virtual void SetGridy(Int_t value=1)
static void GoForward()
static function , inspect next object
virtual void InspectObject(TObject *obj)
Dump contents of obj in a graphics canvas.
virtual void RecursiveRemove(TObject *obj)
Recursively remove object from the list of objects.
virtual void SetTicky(Int_t value=1)
virtual void SetTickx(Int_t value=1)
virtual ~TInspectCanvas()
InspectCanvas default destructor.
A doubly linked list.
Definition: TList.h:44
Mother of all ROOT objects.
Definition: TObject.h:37