Loading [MathJax]/extensions/tex2jax.js
ROOT
6.08/07
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
2
3
<
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
2
3
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
v
x
+
Enumerations
a
d
e
f
g
h
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
v
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
v
w
x
y
z
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
gui
qtgsi
src
TQCanvasImp.cxx
Go to the documentation of this file.
1
// @(#)root/qtgsi:$Id$
2
// Author: Denis Bertini, M. Al-Turany 01/11/2000
3
4
/*************************************************************************
5
* Copyright (C) 1995-2006, 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
13
//////////////////////////////////////////////////////////////////////////
14
// //
15
// ABC describing GUI independent main window (with menubar, scrollbars //
16
// and a drawing area). //
17
// //
18
//////////////////////////////////////////////////////////////////////////
19
20
#include "
TQCanvasImp.h
"
21
#include "
TQRootCanvas.h
"
22
23
ClassImp
(
TQCanvasImp
)
24
25
////////////////////////////////////////////////////////////////////////////////
26
/// TQCanvasImp ctor
27
28
TQCanvasImp
::
TQCanvasImp
(
TCanvas
*
c
, const
char
*
name
,
UInt_t
width,
UInt_t
height)
29
{
30
// @param c (ptr to ROOT TCanvas)
31
// @param name (title for canvas)
32
// @param width
33
// @param height
34
35
Build(c,name,10,10,width,height);
36
}
37
38
////////////////////////////////////////////////////////////////////////////////
39
/// TQCanvasImp ctor
40
41
TQCanvasImp::TQCanvasImp
(
TCanvas
*
c
,
const
char
*
name
,
Int_t
x
,
Int_t
y
,
UInt_t
width,
UInt_t
height)
42
{
43
// @param c (ptr to ROOT TCanvas)
44
// @param name (title for canvas)
45
// @param x
46
// @param y
47
// @param width
48
// @param height
49
50
Build
(c,name,x,y,width,height);
51
}
52
53
////////////////////////////////////////////////////////////////////////////////
54
/// TQCanvasImp ctor
55
56
TQCanvasImp::TQCanvasImp
(
TCanvas
*
/*v*/
) :
TCanvasImp
()
57
{
58
fQCanvas
= 0;
59
}
60
61
////////////////////////////////////////////////////////////////////////////////
62
/// Build the TQRootCanvas
63
64
void
TQCanvasImp::Build
(
TCanvas
*
c
,
const
char
*
name
,
Int_t
/*x*/
,
Int_t
/*y*/
,
UInt_t
/*width*/
,
65
UInt_t
/*height*/
)
66
{
67
fQCanvas
=
new
TQRootCanvas
(0,name,c);
68
fCanvas
=
fQCanvas
->
GetCanvas
();
69
}
70
71
////////////////////////////////////////////////////////////////////////////////
72
/// dtor
73
74
TQCanvasImp::~TQCanvasImp
()
75
{
76
}
TCanvasImp
ABC describing GUI independent main window (with menubar, scrollbars and a drawing area)...
Definition:
TCanvasImp.h:32
c
return c
Definition:
entrylist_figure1.C:47
TQRootCanvas.h
TQCanvasImp::TQCanvasImp
TQCanvasImp(TCanvas *=0)
TQCanvasImp ctor.
Definition:
TQCanvasImp.cxx:56
Int_t
int Int_t
Definition:
RtypesCore.h:41
TQRootCanvas
Definition:
TQRootCanvas.h:59
TQCanvasImp::fQCanvas
TQRootCanvas * fQCanvas
Definition:
TQCanvasImp.h:32
x
Double_t x[n]
Definition:
legend1.C:17
TQCanvasImp::Build
void Build(TCanvas *c, const char *name, Int_t x, Int_t y, UInt_t width, UInt_t height)
Build the TQRootCanvas.
Definition:
TQCanvasImp.cxx:64
TQRootCanvas::GetCanvas
TCanvas * GetCanvas()
Definition:
TQRootCanvas.h:73
UInt_t
unsigned int UInt_t
Definition:
RtypesCore.h:42
TQCanvasImp::~TQCanvasImp
virtual ~TQCanvasImp()
dtor
Definition:
TQCanvasImp.cxx:74
TQCanvasImp.h
TCanvas
The Canvas class.
Definition:
TCanvas.h:41
ClassImp
#define ClassImp(name)
Definition:
Rtypes.h:279
TQCanvasImp
Definition:
TQCanvasImp.h:30
y
Double_t y[n]
Definition:
legend1.C:17
TCanvasImp::fCanvas
TCanvas * fCanvas
Definition:
TCanvasImp.h:36
name
char name[80]
Definition:
TGX11.cxx:109