Logo ROOT  
Reference Guide
TX3DFrame.h
Go to the documentation of this file.
1// Author: Richard Maunder 04/08/05
2
3/*************************************************************************
4 * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef ROOT_TX3DFrame
12#define ROOT_TX3DFrame
13
15// //
16// TViewerX3D //
17// //
18// C++ interface to the X3D viewer //
19// //
21
22#include "TGFrame.h"
23
24class TViewerX3D;
25
26class TX3DFrame : public TGMainFrame
27{
28private:
30
31 Bool_t ProcessMessage(Longptr_t msg, Longptr_t parm1, Longptr_t parm2) override;
32 void CloseWindow() override;
33
34public:
36 ~TX3DFrame() override;
37};
38
39#endif
bool Bool_t
Boolean (0=false, 1=true) (bool).
Definition RtypesCore.h:77
long Longptr_t
Integer large enough to hold a pointer (platform-dependent).
Definition RtypesCore.h:89
unsigned int UInt_t
Unsigned integer 4 bytes (unsigned int).
Definition RtypesCore.h:60
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t win
Option_t Option_t width
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t height
TGMainFrame(const TGMainFrame &)=delete
ROOT GUI Window base class.
Definition TGWindow.h:23
Bool_t ProcessMessage(Longptr_t msg, Longptr_t parm1, Longptr_t parm2) override
Process Message.
Definition TX3DFrame.cxx:41
~TX3DFrame() override
TX3DFrame destructor.
Definition TX3DFrame.cxx:34
TX3DFrame(TViewerX3D &viewer, const TGWindow *win, UInt_t width, UInt_t height)
TX3DFrame constructor.
Definition TX3DFrame.cxx:25
void CloseWindow() override
Close window.
Definition TX3DFrame.cxx:49
TViewerX3D & fViewer
Definition TX3DFrame.h:29