Logo ROOT   6.14/05
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 
19 class TButton;
20 
21 class TInspectCanvas : public TCanvas, public TAttText {
22 
23 protected:
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 
30 public:
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 
68 inline void TInspectCanvas::x3d(Option_t *) { }
69 
70 #endif
71 
virtual void SetGridx(Int_t value=1)
TList * fObjects
List of objects inspected.
float Float_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:62
TInspectCanvas()
InspectCanvas default constructor.
int Int_t
Definition: RtypesCore.h:41
virtual ~TInspectCanvas()
InspectCanvas default destructor.
virtual void SetLogz(Int_t value=1)
Set Lin/Log scale for Z.
TList * GetObjects() const
#define ClassDef(name, id)
Definition: Rtypes.h:320
A doubly linked list.
Definition: TList.h:44
TButton * GetForward() const
virtual void SetTicky(Int_t value=1)
virtual void x3d(Option_t *option="")
Deprecated: use TPad::GetViewer3D() instead.
virtual void SetGridy(Int_t value=1)
TButton * fForward
Pointer to the Forward button.
static void GoForward()
static function , inspect next object
virtual void SetGrid(Int_t valuex=1, Int_t valuey=1)
Text Attributes class.
Definition: TAttText.h:18
unsigned int UInt_t
Definition: RtypesCore.h:42
TButton * fBackward
Pointer to the Backward button.
A TButton object is a user interface object.
Definition: TButton.h:19
TObject * GetCurObject() const
virtual void InspectObject(TObject *obj)
Dump contents of obj in a graphics canvas.
virtual void SetLogx(Int_t value=1)
Set Lin/Log scale for X.
The Canvas class.
Definition: TCanvas.h:31
Mother of all ROOT objects.
Definition: TObject.h:37
static void Inspector(TObject *obj)
static function , interface to InspectObject.
virtual void RecursiveRemove(TObject *obj)
Recursively remove object from the list of objects.
virtual void SetLogy(Int_t value=1)
Set Lin/Log scale for Y.
TObject * fCurObject
Pointer to object being inspected.
virtual void SetTickx(Int_t value=1)
TButton * GetBackward() const
A TInspectCanvas is a canvas specialized to inspect Root objects.
static void GoBackward()
static function , inspect previous object
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.