Import Geant4 0.0.0 source tree
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
// This code implementation is the intellectual property of
|
||||
// the RD44 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: G4XoView.hh,v 2.1 1998/11/06 13:42:05 allison Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
//
|
||||
//
|
||||
// Guy Barrand 04 November 1996
|
||||
// Wo view - opens window, hard copy, etc.
|
||||
|
||||
#ifndef G4XOVIEW_HH
|
||||
#define G4XOVIEW_HH
|
||||
|
||||
#if defined(G4VIS_BUILD_OPACS_DRIVER) || defined(G4VIS_USE_OPACS)
|
||||
|
||||
#include <X11/Intrinsic.h>
|
||||
#include <OCamera.h>
|
||||
|
||||
#include "G4VView.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G4Xo;
|
||||
class G4GoScene;
|
||||
|
||||
// Base class for various WoView classes.
|
||||
class G4XoView: public G4VView {
|
||||
public:
|
||||
G4XoView (G4GoScene& scene, const G4String& name = "");
|
||||
~G4XoView ();
|
||||
void DrawView ();
|
||||
void ShowView ();
|
||||
OCamera GetCamera ();
|
||||
private:
|
||||
void ClearView ();
|
||||
void FinishView ();
|
||||
void SetView ();
|
||||
private:
|
||||
G4GoScene& fScene; // Graphics Scene for this view.
|
||||
OCamera fGoCamera;
|
||||
Widget fXoCamera;
|
||||
Widget fShell;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user