ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
►
core
►
documentation
►
geom
►
graf2d
▼
graf3d
►
eve
►
eve7
►
g3d
▼
gl
doc
▼
inc
TArcBall.h
TF2GL.h
TGL5D.h
TGL5DDataSetEditor.h
►
TGL5DPainter.h
TGLAdapter.h
TGLAnnotation.h
TGLAutoRotator.h
TGLAxis.h
TGLAxisPainter.h
TGLBoundingBox.h
TGLBoxPainter.h
TGLCamera.h
TGLCameraGuide.h
TGLCameraOverlay.h
TGLClip.h
TGLClipSetEditor.h
TGLContext.h
TGLCylinder.h
TGLEmbeddedViewer.h
TGLEventHandler.h
TGLFaceSet.h
TGLFBO.h
TGLFontManager.h
TGLFormat.h
TGLH2PolyPainter.h
TGLHistPainter.h
►
TGLIsoMesh.h
TGLLegoPainter.h
TGLLightSet.h
►
TGLLightSetEditor.h
►
TGLLockable.h
TGLLogicalShape.h
TGLManip.h
TGLManipSet.h
►
TGLMarchingCubes.h
TGLObject.h
TGLOrthoCamera.h
TGLOutput.h
TGLOverlay.h
TGLOverlayButton.h
TGLPadPainter.h
►
TGLPadUtils.h
►
TGLParametric.h
TGLParametricEquationGL.h
TGLPerspectiveCamera.h
TGLPhysicalShape.h
TGLPlot3D.h
TGLPlotBox.h
TGLPlotCamera.h
►
TGLPlotPainter.h
TGLPolyLine.h
TGLPolyMarker.h
TGLPShapeObj.h
TGLPShapeObjEditor.h
TGLPShapeRef.h
TGLQuadric.h
TGLRnrCtx.h
TGLRotateManip.h
TGLSAFrame.h
TGLSAViewer.h
TGLScaleManip.h
►
TGLScene.h
TGLSceneBase.h
TGLSceneInfo.h
TGLScenePad.h
TGLSelectBuffer.h
TGLSelectRecord.h
TGLSphere.h
TGLStopwatch.h
►
TGLSurfacePainter.h
TGLText.h
TGLTF3Painter.h
TGLTH3Composition.h
TGLTransManip.h
►
TGLUtil.h
►
TGLViewer.h
TGLViewerBase.h
TGLViewerEditor.h
TGLVoxelPainter.h
TGLWidget.h
TGLWSIncludes.h
TH2GL.h
TH3GL.h
►
TKDEAdapter.h
►
TKDEFGT.h
TPointSet3DGL.h
TX11GL.h
►
src
►
gviz3d
►
gui
►
hist
►
html
►
io
►
main
►
math
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
►
tree
►
tutorials
►
v6-32-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
TGLSAFrame.h
Go to the documentation of this file.
1
// @(#)root/gl:$Id$
2
// Author: Richard Maunder 10/08/2005
3
4
/*************************************************************************
5
* Copyright (C) 1995-2005, 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_TGLSAFrame
13
#define ROOT_TGLSAFrame
14
15
#include "
Rtypes.h
"
16
#include "
TGFrame.h
"
17
18
class
TGLSAViewer
;
19
20
//////////////////////////////////////////////////////////////////////////
21
// //
22
// TGLSAFrame //
23
// //
24
// Standalone GL Viewer GUI main frame. Is aggregated in TGLSAViewer - //
25
// top level standalone viewer object. //
26
//////////////////////////////////////////////////////////////////////////
27
28
class
TGLSAFrame
:
public
TGMainFrame
29
{
30
private
:
31
TGLSAViewer
&
fViewer
;
32
33
// non-copyable class
34
TGLSAFrame
(
const
TGLSAFrame
&);
35
TGLSAFrame
&
operator =
(
const
TGLSAFrame
&);
36
37
public
:
38
TGLSAFrame
(
TGLSAViewer
&
viewer
);
39
TGLSAFrame
(
const
TGWindow
*parent,
TGLSAViewer
&
viewer
);
40
~TGLSAFrame
()
override
;
41
42
Bool_t
ProcessMessage
(
Longptr_t
msg
,
Longptr_t
parm1
,
Longptr_t
parm2
)
override
;
43
void
CloseWindow
()
override
;
44
45
ClassDefOverride
(
TGLSAFrame
, 0)
// GUI frame for standalone viewer
46
};
47
48
#endif
Longptr_t
long Longptr_t
Definition
RtypesCore.h:82
Rtypes.h
ClassDefOverride
#define ClassDefOverride(name, id)
Definition
Rtypes.h:341
TGFrame.h
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
TGLSAFrame
Standalone GL Viewer GUI main frame.
Definition
TGLSAFrame.h:29
TGLSAFrame::ProcessMessage
Bool_t ProcessMessage(Longptr_t msg, Longptr_t parm1, Longptr_t parm2) override
Process GUI message - deferred back up to TGLSAViewer::ProcessFrameMessage()
Definition
TGLSAFrame.cxx:51
TGLSAFrame::TGLSAFrame
TGLSAFrame(const TGLSAFrame &)
TGLSAFrame::~TGLSAFrame
~TGLSAFrame() override
Destroy the GUI frame.
Definition
TGLSAFrame.cxx:44
TGLSAFrame::fViewer
TGLSAViewer & fViewer
Definition
TGLSAFrame.h:31
TGLSAFrame::CloseWindow
void CloseWindow() override
Close the GUI frame.
Definition
TGLSAFrame.cxx:59
TGLSAFrame::operator=
TGLSAFrame & operator=(const TGLSAFrame &)
TGLSAViewer
The top level standalone GL-viewer - created via plugin manager.
Definition
TGLSAViewer.h:38
TGMainFrame
Defines top level windows that interact with the system Window Manager.
Definition
TGFrame.h:397
TGWindow
ROOT GUI Window base class.
Definition
TGWindow.h:23
bool
graf3d
gl
inc
TGLSAFrame.h
ROOT v6-32 - Reference Guide Generated on Wed Apr 9 2025 05:32:49 (GVA Time) using Doxygen 1.10.0