// @(#)root/gpad:$Id$ // Author: Rene Brun 08/01/2000 /************************************************************************* * 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. * *************************************************************************/ #ifndef ROOT_TInspectCanvas #define ROOT_TInspectCanvas #include "TCanvas.h" #include "TAttText.h" class TButton; class TInspectCanvas : public TCanvas, public TAttText { protected: TButton *fBackward{nullptr}; ///< Pointer to the Backward button TButton *fForward{nullptr}; ///< Pointer to the Forward button TList *fObjects{nullptr}; ///< List of objects inspected TObject *fCurObject{nullptr}; ///< Pointer to object being inspected public: TInspectCanvas(); TInspectCanvas(UInt_t ww, UInt_t wh); ~TInspectCanvas() override; TButton *GetBackward() const { return fBackward; } TButton *GetForward() const { return fForward; } TObject *GetCurObject() const { return fCurObject; } TList *GetObjects() const { return fObjects; } static void GoBackward(); static void GoForward(); static void Inspector(TObject *obj); virtual void InspectObject(TObject *obj); void RecursiveRemove(TObject *obj) override; //dummies void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0) override; void SetGrid(Int_t valuex = 1, Int_t valuey = 1) override; void SetGridx(Int_t value = 1) override; void SetGridy(Int_t value = 1) override; void SetLogx(Int_t value = 1) override; void SetLogy(Int_t value = 1) override; void SetLogz(Int_t value = 1) override; void SetTickx(Int_t value = 1) override; void SetTicky(Int_t value = 1) override; void x3d(Option_t *option="") override; ClassDefOverride(TInspectCanvas,1) //The canvas Inspector }; inline void TInspectCanvas::Divide(Int_t, Int_t, Float_t, Float_t, Int_t) { } inline void TInspectCanvas::SetGrid(Int_t, Int_t) { } inline void TInspectCanvas::SetGridx(Int_t) { } inline void TInspectCanvas::SetGridy(Int_t) { } inline void TInspectCanvas::SetLogx(Int_t) { } inline void TInspectCanvas::SetLogy(Int_t) { } inline void TInspectCanvas::SetLogz(Int_t) { } inline void TInspectCanvas::SetTickx(Int_t) { } inline void TInspectCanvas::SetTicky(Int_t) { } inline void TInspectCanvas::x3d(Option_t *) { } #endif