Logo ROOT   6.16/01
Reference Guide
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
19class TFrame : public TWbox {
20
21
22public:
23 TFrame();
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
static const double x2[5]
static const double x1[5]
int Int_t
Definition: RtypesCore.h:41
double Double_t
Definition: RtypesCore.h:55
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:324
Define a Frame.
Definition: TFrame.h:19
virtual void Pop()
Do not pop frame's, if allowed they would cover the picture they frame.
Definition: TFrame.cxx:145
void Copy(TObject &frame) const
Copy this frame to frame.
Definition: TFrame.cxx:61
virtual ~TFrame()
Frame default destructor.
Definition: TFrame.cxx:54
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TFrame.cxx:79
virtual void Paint(Option_t *option="")
Paint this wbox with its current attributes.
Definition: TFrame.cxx:130
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TFrame.cxx:152
virtual void UseCurrentStyle()
Replace current frame attributes by current style.
Definition: TFrame.cxx:159
virtual void Draw(Option_t *option="")
Draw this frame with its current attributes.
Definition: TFrame.cxx:69
TFrame()
Frame default constructor.
Definition: TFrame.cxx:31
Mother of all ROOT objects.
Definition: TObject.h:37
A TBox with a bordersize and a bordermode.
Definition: TWbox.h:20