Import Geant4 3.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:03:00 +02:00
parent cfcb558cfe
commit 137e303ecc
2843 changed files with 37082 additions and 38426 deletions
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4OpenGLXmTextField.hh,v 1.3 1999/12/15 14:54:06 gunter Exp $
// GEANT4 tag $Name: geant4-03-00 $
// $Id: G4OpenGLXmTextField.hh,v 1.5 2001/03/07 14:56:17 johna Exp $
// GEANT4 tag $Name: geant4-03-01 $
//
//
//Text field class. Inherits from G4OpenGLXmVWidgetComponent
@@ -23,16 +23,16 @@ class G4OpenGLXmTextField : public G4OpenGLXmVWidgetComponent
{
public:
G4OpenGLXmTextField (char*,G4double*); //constructor
G4OpenGLXmTextField (char*,char*); //constructor
~G4OpenGLXmTextField (); //destructor
G4OpenGLXmTextField (const char*,G4double*); //constructor
G4OpenGLXmTextField (const char*,const char*); //constructor
virtual ~G4OpenGLXmTextField (); //destructor
void SetName (char*);
char* GetName ();
void SetName (const char*);
const char* GetName ();
void SetValue (G4double);
void SetValue (char*);
char* GetValue ();
void SetValue (const char*);
const char* GetValue ();
void AddYourselfTo (G4OpenGLXmVWidgetContainer*);
@@ -40,7 +40,9 @@ public:
Widget* GetPointerToWidget ();
private:
char* name;
G4OpenGLXmTextField (const G4OpenGLXmTextField&);
G4OpenGLXmTextField& operator = (const G4OpenGLXmTextField&);
const char* name;
void* value;
G4bool text;
char* initial;