86 lines
3.4 KiB
C++
86 lines
3.4 KiB
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: G4VInteractorManager.hh,v 1.5.4.1 1999/12/07 20:49:10 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
// G.Barrand
|
|
|
|
#ifndef G4VINTERACTORMANAGER_HH
|
|
#define G4VINTERACTORMANAGER_HH
|
|
|
|
#include "globals.hh"
|
|
#include "g4std/vector"
|
|
|
|
typedef void* G4Interactor;
|
|
typedef G4bool (*G4DispatchFunction)(void*);
|
|
typedef void (*G4SecondaryLoopAction)();
|
|
|
|
// Class description :
|
|
//
|
|
// G4VInteractorManager : a base class to isolate common things
|
|
// to various GUI "toolkits" like WIndows, Xt.
|
|
// The word "interactor" is for "piece of user interface" or
|
|
// "widget" (which means nothing). Then a GUI "toolkit" could be
|
|
// defined as a manager of interactors.
|
|
//
|
|
// Class description - end :
|
|
|
|
class G4VInteractorManager {
|
|
public:
|
|
G4VInteractorManager ();
|
|
virtual ~G4VInteractorManager ();
|
|
void SetArguments (int,char**);
|
|
char** GetArguments (int*);
|
|
void SetMainInteractor (G4Interactor);
|
|
G4Interactor GetMainInteractor ();
|
|
void AddDispatcher (G4DispatchFunction);
|
|
void RemoveDispatcher (G4DispatchFunction);
|
|
void AddSecondaryLoopPreAction (G4SecondaryLoopAction);
|
|
void AddSecondaryLoopPostAction (G4SecondaryLoopAction);
|
|
void AddShell (G4Interactor);
|
|
void RemoveShell (G4Interactor);
|
|
void EnableSecondaryLoop ();
|
|
void DisableSecondaryLoop ();
|
|
void SecondaryLoopPreActions ();
|
|
void SecondaryLoopPostActions ();
|
|
void RequireExitSecondaryLoop (int);
|
|
void DispatchEvent (void*);
|
|
void SecondaryLoop ();
|
|
int GetExitSecondaryLoopCode ();
|
|
void PutStringInResourceDatabase (char*);
|
|
virtual G4bool Inited () = 0;
|
|
virtual void* GetEvent () = 0;
|
|
virtual void FlushAndWaitExecution () = 0;
|
|
void SetParentInteractor (G4Interactor);
|
|
G4Interactor GetParentInteractor ();
|
|
void SetCreatedInteractor (G4Interactor);
|
|
G4Interactor GetCreatedInteractor ();
|
|
void SetCreationString (char*);
|
|
char* GetCreationString ();
|
|
private:
|
|
int argc;
|
|
char** argv;
|
|
G4Interactor mainInteractor;
|
|
G4std::vector<G4DispatchFunction> dispatchers;
|
|
G4std::vector<G4SecondaryLoopAction> preActions;
|
|
G4std::vector<G4SecondaryLoopAction> postActions;
|
|
G4std::vector<G4Interactor> shells;
|
|
G4bool secondaryLoopEnabled;
|
|
G4bool alreadyInSecondaryLoop;
|
|
int exitSecondaryLoop;
|
|
G4Interactor parentInteractor;
|
|
G4Interactor createdInteractor;
|
|
char* creationString;
|
|
};
|
|
|
|
#define OGL_EXIT_CODE 1
|
|
#define OIV_EXIT_CODE 2
|
|
#define XO_EXIT_CODE 3
|
|
|
|
#endif
|