31 lines
840 B
C++
31 lines
840 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: G4OpenGLXmResources.hh,v 1.3 1999/12/15 14:54:06 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// Default resources file for GEANT4 OpenGL Motif windows.
|
|
|
|
#ifdef G4VIS_BUILD_OPENGLXM_DRIVER
|
|
|
|
#ifndef G4OPENGLXMRESOURCES_HH
|
|
#define G4OPENGLXMRESOURCES_HH
|
|
|
|
static String fallbackResources[] = {
|
|
"*glxarea*width: 500", "*glxarea*height: 500",
|
|
"*frame*x: 10", "*frame*y: 10",
|
|
"*frame*topOffset: 10", "*frame*bottomOffset: 10",
|
|
"*frame*rightOffset: 10", "*frame*leftOffset: 10",
|
|
"*frame*shadowType: SHADOW_IN", "*useColorObj: False",
|
|
NULL
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|