// 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: G4OpenGLXmFramedBox.hh,v 1.3 1999/12/15 14:54:05 gunter Exp $ // GEANT4 tag $Name: geant4-03-00 $ // // //Framed box container class //Inherits from G4OpenGLXmBox #ifdef G4VIS_BUILD_OPENGLXM_DRIVER #ifndef G4OPENGLXMFRAMEDBOX_HH #define G4OPENGLXMFRAMEDBOX_HH #include "G4OpenGLXmVWidgetContainer.hh" #include "G4OpenGLXmBox.hh" #include "globals.hh" #include #include class G4OpenGLXmVWidgetComponent; class G4OpenGLXmVWidgetShell; class G4OpenGLXmFramedBox : public G4OpenGLXmBox { public: G4OpenGLXmFramedBox (char* = NULL, G4bool = False); //constructor ~G4OpenGLXmFramedBox (); //destructor void AddChild (G4OpenGLXmVWidgetComponent*); void AddYourselfTo (G4OpenGLXmVWidgetShell*); private: Widget frame; }; #endif #endif