Geant4-11
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace 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
l
m
n
o
p
q
r
s
t
u
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
m
n
p
r
s
t
w
y
Enumerations
a
b
c
d
e
f
g
l
m
p
r
s
t
v
y
z
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Enumerator
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
Related Functions
:
a
b
c
d
g
h
i
o
q
r
s
t
Files
File List
Globals
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
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
q
r
s
t
u
v
x
z
Enumerations
b
c
d
e
f
g
i
j
l
m
n
p
r
s
t
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
source
visualization
OpenGL
src
G4OpenGLXmSeparator.cc
Go to the documentation of this file.
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
26
//
27
//
28
//Separator class. Inherits from G4OpenGLXmVWidgetComponent
29
30
#include "
G4OpenGLXmVWidgetComponent.hh
"
31
#include "
G4OpenGLXmVWidgetContainer.hh
"
32
#include "
G4OpenGLXmSeparator.hh
"
33
#include <X11/Intrinsic.h>
34
#include <Xm/Separator.h>
35
36
#include "
globals.hh
"
37
38
G4OpenGLXmSeparator::G4OpenGLXmSeparator
(
unsigned
char
l)
39
: line(0)
40
, parent(0)
41
{
42
line_type
= l;
43
}
44
45
G4OpenGLXmSeparator::~G4OpenGLXmSeparator
()
46
{}
47
48
void
G4OpenGLXmSeparator::AddYourselfTo
(
G4OpenGLXmVWidgetContainer
* container)
49
{
50
51
pView
= container->
GetView
();
52
ProcesspView
();
53
54
parent
= container->
GetPointerToWidget
();
55
56
line
= XtVaCreateManagedWidget (
"sep"
,
57
xmSeparatorWidgetClass,
58
*
parent
,
59
XmNseparatorType,
line_type
,
60
XmNmargin, 1,
61
XmNorientation, XmHORIZONTAL,
62
63
XtNvisual,
visual
,
64
XtNdepth,
depth
,
65
XtNcolormap,
cmap
,
66
XtNborderColor,
borcol
,
67
XtNbackground,
bgnd
,
68
69
NULL);
70
}
71
72
Widget*
G4OpenGLXmSeparator::GetPointerToParent
()
73
{
74
return
parent
;
75
}
76
77
Widget*
G4OpenGLXmSeparator::GetPointerToWidget
()
78
{
79
return
&
line
;
80
}
G4OpenGLXmSeparator.hh
G4OpenGLXmVWidgetComponent.hh
G4OpenGLXmVWidgetContainer.hh
G4OpenGLXmSeparator::GetPointerToWidget
Widget * GetPointerToWidget()
Definition:
G4OpenGLXmSeparator.cc:77
G4OpenGLXmSeparator::parent
Widget * parent
Definition:
G4OpenGLXmSeparator.hh:53
G4OpenGLXmSeparator::AddYourselfTo
void AddYourselfTo(G4OpenGLXmVWidgetContainer *)
Definition:
G4OpenGLXmSeparator.cc:48
G4OpenGLXmSeparator::G4OpenGLXmSeparator
G4OpenGLXmSeparator(unsigned char=XmSINGLE_LINE)
Definition:
G4OpenGLXmSeparator.cc:38
G4OpenGLXmSeparator::line_type
unsigned char line_type
Definition:
G4OpenGLXmSeparator.hh:51
G4OpenGLXmSeparator::~G4OpenGLXmSeparator
virtual ~G4OpenGLXmSeparator()
Definition:
G4OpenGLXmSeparator.cc:45
G4OpenGLXmSeparator::GetPointerToParent
Widget * GetPointerToParent()
Definition:
G4OpenGLXmSeparator.cc:72
G4OpenGLXmSeparator::line
Widget line
Definition:
G4OpenGLXmSeparator.hh:52
G4OpenGLXmVWidgetContainer
Definition:
G4OpenGLXmVWidgetContainer.hh:40
G4OpenGLXmVWidgetContainer::GetPointerToWidget
virtual Widget * GetPointerToWidget()=0
G4OpenGLXmVWidgetObject::GetView
G4OpenGLXmViewer * GetView()
Definition:
G4OpenGLXmVWidgetObject.cc:42
G4OpenGLXmVWidgetObject::ProcesspView
void ProcesspView()
Definition:
G4OpenGLXmVWidgetObject.cc:47
G4OpenGLXmVWidgetObject::cmap
Colormap cmap
Definition:
G4OpenGLXmVWidgetObject.hh:52
G4OpenGLXmVWidgetObject::borcol
Pixel borcol
Definition:
G4OpenGLXmVWidgetObject.hh:53
G4OpenGLXmVWidgetObject::depth
unsigned int depth
Definition:
G4OpenGLXmVWidgetObject.hh:55
G4OpenGLXmVWidgetObject::visual
Visual * visual
Definition:
G4OpenGLXmVWidgetObject.hh:56
G4OpenGLXmVWidgetObject::pView
G4OpenGLXmViewer * pView
Definition:
G4OpenGLXmVWidgetObject.hh:51
G4OpenGLXmVWidgetObject::bgnd
Pixel bgnd
Definition:
G4OpenGLXmVWidgetObject.hh:54
globals.hh
Generated by
1.9.3