Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TDialogCanvas.h
Go to the documentation of this file.
1 // @(#)root/gpad:$Id$
2 // Author: Rene Brun 03/07/96
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_TDialogCanvas
13 #define ROOT_TDialogCanvas
14 
15 
16 #include "TCanvas.h"
17 #include "TAttText.h"
18 
19 class TDialogCanvas : public TCanvas, public TAttText {
20 
21 private:
22  TDialogCanvas(const TDialogCanvas&);
23  TDialogCanvas& operator=(const TDialogCanvas&);
24 
25 protected:
26  TObject *fRefObject; ///< Pointer to object to set attributes
27  TPad *fRefPad; ///< Pad containing object
28 
29 public:
30  TDialogCanvas();
31  TDialogCanvas(const char *name, const char *title, Int_t ww, Int_t wh);
32  TDialogCanvas(const char *name, const char *title, Int_t wtopx, Int_t wtopy, UInt_t ww, UInt_t wh);
33  virtual ~TDialogCanvas();
34  virtual void Apply(const char *action="");
35  virtual void BuildStandardButtons();
36  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);
37  TObject *GetRefObject() const { return fRefObject; }
38  TPad *GetRefPad() const { return fRefPad; }
39  virtual void Range(Double_t x1, Double_t y1, Double_t x2, Double_t y2);
40  virtual void RecursiveRemove(TObject *obj);
41  virtual void SetBorderMode(Short_t bordermode){ fBorderMode = bordermode; }
42  virtual void SetGrid(Int_t valuex = 1, Int_t valuey = 1);
43  virtual void SetLogx(Int_t value = 1);
44  virtual void SetLogy(Int_t value = 1);
45  virtual void SetName(const char *name) { fName = name; }
46  virtual void SetRefObject(TObject*obj) { fRefObject=obj; }
47  virtual void SetRefPad(TPad *pad) { fRefPad=pad; }
48  virtual void x3d(Option_t *option="");
49 
50  ClassDef(TDialogCanvas,0) //A specialized canvas to set attributes.
51 };
52 
53 inline void TDialogCanvas::Divide(Int_t, Int_t, Float_t, Float_t, Int_t) { }
54 inline void TDialogCanvas::SetGrid(Int_t, Int_t) { }
55 inline void TDialogCanvas::SetLogx(Int_t) { }
56 inline void TDialogCanvas::SetLogy(Int_t) { }
57 inline void TDialogCanvas::x3d(Option_t *) { }
58 
59 #endif
60