46 lines
981 B
C++
46 lines
981 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4OpenGLXmTopLevelShell.hh,v 1.3 1999/12/15 14:54:06 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-02-00 $
|
|
//
|
|
//
|
|
//Top level shell class
|
|
|
|
#ifdef G4VIS_BUILD_OPENGLXM_DRIVER
|
|
|
|
#ifndef G4OPENGLXMTOPLEVELSHELL_HH
|
|
#define G4OPENGLXMTOPLEVELSHELL_HH
|
|
|
|
#include "G4OpenGLXmVWidgetShell.hh"
|
|
|
|
class G4OpenGLXmVWidgetContainer;
|
|
|
|
class G4OpenGLXmTopLevelShell : public G4OpenGLXmVWidgetShell
|
|
{
|
|
|
|
public:
|
|
G4OpenGLXmTopLevelShell(G4OpenGLXmViewer*, char*); //constructor
|
|
~G4OpenGLXmTopLevelShell(); //destructor
|
|
|
|
void AddChild (G4OpenGLXmVWidgetContainer*);
|
|
void Realize ();
|
|
|
|
Widget* GetPointerToWidget ();
|
|
char* GetName ();
|
|
|
|
private:
|
|
char* name;
|
|
Widget toplevel;
|
|
Widget top_box;
|
|
Widget frame;
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|