Geant4
11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4OpenGLXmFramedBox.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
//Framed box container class
29
30
#include "
G4OpenGLXmBox.hh
"
31
#include "
G4OpenGLXmFramedBox.hh
"
32
#include "
G4OpenGLXmVWidgetComponent.hh
"
33
#include "
G4OpenGLXmVWidgetShell.hh
"
34
#include <Xm/RowColumn.h>
35
#include <Xm/Frame.h>
36
37
G4OpenGLXmFramedBox::G4OpenGLXmFramedBox
(
const
char
* n,
38
G4bool
r) :
39
G4OpenGLXmBox
(n, r)
40
{
41
frame = NULL;
42
}
43
44
G4OpenGLXmFramedBox::~G4OpenGLXmFramedBox
()
45
{}
46
47
void
G4OpenGLXmFramedBox::AddChild
(
G4OpenGLXmVWidgetComponent
* component)
48
{
49
component->
AddYourselfTo
(
this
);
50
Cardinal num_children;
51
XtVaGetValues (
box_row_col
,
52
XmNnumChildren, &num_children,
53
NULL);
54
// G4cout << name << " now parents " << num_children << " children." << G4endl;
55
}
56
57
void
G4OpenGLXmFramedBox::AddYourselfTo
(
G4OpenGLXmVWidgetShell
* window)
58
{
59
60
pView
= window->
GetView
();
61
ProcesspView
();
62
char
framename[50];
63
strcpy (framename,
name
);
64
strcat (framename,
"_frame"
);
65
66
parent
= window->
GetPointerToWidget
();
67
frame = XtVaCreateManagedWidget (framename,
68
xmFrameWidgetClass,
69
*
parent
,
70
71
XtNvisual,
visual
,
72
XtNdepth,
depth
,
73
XtNcolormap,
cmap
,
74
XtNborderColor,
borcol
,
75
XtNbackground,
bgnd
,
76
77
NULL);
78
79
80
81
box_row_col
= XtVaCreateManagedWidget (
name
,
82
xmRowColumnWidgetClass,
83
frame,
84
85
XmNadjustMargin, True,
86
XmNisHomogeneous, False,
87
XmNlabelString, (XmString)
name
,
88
XmNradioAlwaysOne,
radio
,
89
XmNradioBehavior,
radio
,
90
91
XtNvisual,
visual
,
92
XtNdepth,
depth
,
93
XtNcolormap,
cmap
,
94
XtNborderColor,
borcol
,
95
XtNbackground,
bgnd
,
96
97
NULL);
98
99
}
G4OpenGLXmBox.hh
G4OpenGLXmFramedBox.hh
G4OpenGLXmVWidgetComponent.hh
G4OpenGLXmVWidgetShell.hh
G4bool
bool G4bool
Definition
G4Types.hh:86
G4OpenGLXmBox
Definition
G4OpenGLXmBox.hh:41
G4OpenGLXmBox::name
const char * name
Definition
G4OpenGLXmBox.hh:58
G4OpenGLXmBox::parent
Widget * parent
Definition
G4OpenGLXmBox.hh:59
G4OpenGLXmBox::radio
G4bool radio
Definition
G4OpenGLXmBox.hh:61
G4OpenGLXmBox::box_row_col
Widget box_row_col
Definition
G4OpenGLXmBox.hh:60
G4OpenGLXmFramedBox::AddYourselfTo
void AddYourselfTo(G4OpenGLXmVWidgetShell *)
Definition
G4OpenGLXmFramedBox.cc:57
G4OpenGLXmFramedBox::AddChild
void AddChild(G4OpenGLXmVWidgetComponent *)
Definition
G4OpenGLXmFramedBox.cc:47
G4OpenGLXmFramedBox::G4OpenGLXmFramedBox
G4OpenGLXmFramedBox(const char *=NULL, G4bool=False)
Definition
G4OpenGLXmFramedBox.cc:37
G4OpenGLXmFramedBox::~G4OpenGLXmFramedBox
virtual ~G4OpenGLXmFramedBox()
Definition
G4OpenGLXmFramedBox.cc:44
G4OpenGLXmVWidgetComponent
Definition
G4OpenGLXmVWidgetComponent.hh:39
G4OpenGLXmVWidgetComponent::AddYourselfTo
virtual void AddYourselfTo(G4OpenGLXmVWidgetContainer *)=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
G4OpenGLXmVWidgetShell
Definition
G4OpenGLXmVWidgetShell.hh:39
G4OpenGLXmVWidgetShell::GetPointerToWidget
virtual Widget * GetPointerToWidget()=0
geant4-v11.2.2
source
visualization
OpenGL
src
G4OpenGLXmFramedBox.cc
Generated by
1.12.0