Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TFrame.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Rene Brun 31/10/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_TFrame
13 #define ROOT_TFrame
14 
15 
16 #include "TWbox.h"
17 
18 
19 class TFrame : public TWbox {
20 
21 
22 public:
23  TFrame();
24  TFrame(Double_t x1, Double_t y1,Double_t x2 ,Double_t y2);
25  TFrame(const TFrame &frame);
26  virtual ~TFrame();
27  void Copy(TObject &frame) const;
28  virtual void Draw(Option_t *option="");
29  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
30  virtual void Paint(Option_t *option="");
31  virtual void Pop();
32  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
33  virtual void UseCurrentStyle(); // *MENU*
34 
35  ClassDef(TFrame,1) //Pad graphics frame
36 };
37 
38 #endif
39