Geant4-11
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Private Types
G4ToolsSGWindowsGLES Class Reference

#include <G4ToolsSGWindowsGLES.hh>

Inheritance diagram for G4ToolsSGWindowsGLES:
G4VGraphicsSystem

Public Types

enum  Functionality {
  noFunctionality , nonEuclidian , twoD , twoDStore ,
  threeD , threeDInteractive , virtualReality , fileWriter
}
 

Public Member Functions

void AddNickname (const G4String &nickname)
 
G4VSceneHandlerCreateSceneHandler (const G4String &name="")
 
G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name="")
 
 G4ToolsSGWindowsGLES ()
 
const G4StringGetDescription () const
 
Functionality GetFunctionality () const
 
const G4StringGetName () const
 
const G4StringGetNickname () const
 
const std::vector< G4String > & GetNicknames () const
 
G4bool IsUISessionCompatible () const
 
virtual ~G4ToolsSGWindowsGLES ()
 

Protected Member Functions

 G4ToolsSGWindowsGLES (const G4ToolsSGWindowsGLES &a_from)
 
void Initialise ()
 
G4ToolsSGWindowsGLESoperator= (const G4ToolsSGWindowsGLES &)
 

Protected Attributes

G4String fDescription
 
Functionality fFunctionality
 
G4String fName
 
std::vector< G4StringfNicknames
 
tools::Windows::sessionfSGSession
 

Private Types

typedef G4VGraphicsSystem parent
 

Detailed Description

Definition at line 35 of file G4ToolsSGWindowsGLES.hh.

Member Typedef Documentation

◆ parent

Definition at line 36 of file G4ToolsSGWindowsGLES.hh.

Member Enumeration Documentation

◆ Functionality

Enumerator
noFunctionality 
nonEuclidian 
twoD 
twoDStore 
threeD 
threeDInteractive 
virtualReality 
fileWriter 

Definition at line 49 of file G4VGraphicsSystem.hh.

49 {
51 ,nonEuclidian // e.g., tree representation of geometry hierarchy.
52 ,twoD // Simple 2D, e.g., X (no stored structures).
53 ,twoDStore // 2D with stored structures.
54 ,threeD // Passive 3D (with stored structures).
55 ,threeDInteractive // 3D with "pick" functionality.
56 ,virtualReality // Virtual Reality functionality.
57 ,fileWriter // File writer
58 };

Constructor & Destructor Documentation

◆ G4ToolsSGWindowsGLES() [1/2]

G4ToolsSGWindowsGLES::G4ToolsSGWindowsGLES ( )

Definition at line 34 of file G4ToolsSGWindowsGLES.cc.

34 :
36("TOOLSSG_WINDOWS_GLES",
37 "TSG_WINDOWS_GLES",
38 "TOOLSSG_WINDOWS_GLES is a graphics driver based on the g4tools tools/sg scene graph logic where\n\
39 the rendering is done with Microsoft GLES and the windowing is done with Microsoft Windows.",
41,fSGSession(nullptr)
42{}
G4VGraphicsSystem parent
tools::Windows::session * fSGSession

◆ ~G4ToolsSGWindowsGLES()

G4ToolsSGWindowsGLES::~G4ToolsSGWindowsGLES ( )
virtual

Definition at line 44 of file G4ToolsSGWindowsGLES.cc.

44 {
45 delete fSGSession;
46}

References fSGSession.

◆ G4ToolsSGWindowsGLES() [2/2]

G4ToolsSGWindowsGLES::G4ToolsSGWindowsGLES ( const G4ToolsSGWindowsGLES a_from)
inlineprotected

Definition at line 41 of file G4ToolsSGWindowsGLES.hh.

41:parent(a_from){}

Member Function Documentation

◆ AddNickname()

void G4VGraphicsSystem::AddNickname ( const G4String nickname)
inlineinherited

Definition at line 85 of file G4VGraphicsSystem.hh.

85{fNicknames.push_back(nickname);}
std::vector< G4String > fNicknames

References G4VGraphicsSystem::fNicknames.

◆ CreateSceneHandler()

G4VSceneHandler * G4ToolsSGWindowsGLES::CreateSceneHandler ( const G4String name = "")
virtual

Implements G4VGraphicsSystem.

Definition at line 59 of file G4ToolsSGWindowsGLES.cc.

59 {
60 G4VSceneHandler* pScene = new G4ToolsSGSceneHandler(*this, a_name);
61 return pScene;
62}

◆ CreateViewer()

G4VViewer * G4ToolsSGWindowsGLES::CreateViewer ( G4VSceneHandler a_scene,
const G4String name = "" 
)
virtual

Implements G4VGraphicsSystem.

Definition at line 64 of file G4ToolsSGWindowsGLES.cc.

64 {
66 if(!fSGSession) return nullptr;
67 G4VViewer* pView =
69 if (pView) {
70 if (pView->GetViewId() < 0) {
71 G4cerr <<
72 "G4ToolsSGWindowsGLES::CreateViewer: ERROR flagged by negative"
73 " view id in G4ToolsSGViewer creation."
74 "\n Destroying view and returning null pointer."
75 << G4endl;
76 delete pView;
77 pView = nullptr;
78 }
79 }
80 if (!pView) {
81 G4cerr <<
82 "G4ToolsSGWindowsGLES::CreateViewer: ERROR: null pointer on new G4ToolsSGViewer."
83 << G4endl;
84 }
85 return pView;
86}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4int GetViewId() const

References fSGSession, G4cerr, G4endl, G4VViewer::GetViewId(), and Initialise().

◆ GetDescription()

const G4String & G4VGraphicsSystem::GetDescription ( ) const
inlineinherited

Definition at line 82 of file G4VGraphicsSystem.hh.

82{return fDescription;}

References G4VGraphicsSystem::fDescription.

◆ GetFunctionality()

Functionality G4VGraphicsSystem::GetFunctionality ( ) const
inlineinherited

Definition at line 83 of file G4VGraphicsSystem.hh.

83{return fFunctionality;}
Functionality fFunctionality

References G4VGraphicsSystem::fFunctionality.

Referenced by G4VisManager::EndOfRun().

◆ GetName()

const G4String & G4VGraphicsSystem::GetName ( ) const
inlineinherited

Definition at line 79 of file G4VGraphicsSystem.hh.

79{return fName;}

References G4VGraphicsSystem::fName.

Referenced by G4VSceneHandler::AddPrimitive().

◆ GetNickname()

const G4String & G4VGraphicsSystem::GetNickname ( ) const
inlineinherited

Definition at line 80 of file G4VGraphicsSystem.hh.

80{return fNicknames[0];}

References G4VGraphicsSystem::fNicknames.

Referenced by G4VisCommandViewerList::SetNewValue().

◆ GetNicknames()

const std::vector< G4String > & G4VGraphicsSystem::GetNicknames ( ) const
inlineinherited

Definition at line 81 of file G4VGraphicsSystem.hh.

81{return fNicknames;}

References G4VGraphicsSystem::fNicknames.

◆ Initialise()

void G4ToolsSGWindowsGLES::Initialise ( )
protected

Definition at line 48 of file G4ToolsSGWindowsGLES.cc.

48 {
49 if(fSGSession) return; //done.
51 if(!fSGSession->is_valid()) {
52 G4cerr << "G4ToolsSGWindowsGLES::Initialise : session::is_valid() failed." << G4endl;
53 delete fSGSession;
54 fSGSession = nullptr;
55 return;
56 }
57}
G4GLOB_DLL std::ostream G4cout
static G4UIterminal * session

References fSGSession, G4cerr, G4cout, G4endl, and session.

Referenced by CreateViewer().

◆ IsUISessionCompatible()

G4bool G4ToolsSGWindowsGLES::IsUISessionCompatible ( ) const
virtual

Reimplemented from G4VGraphicsSystem.

Definition at line 88 of file G4ToolsSGWindowsGLES.cc.

89{
90 G4bool isCompatible = false;
91// G4UImanager* ui = G4UImanager::GetUIpointer();
92// G4UIsession* session = ui->GetSession();
93//
94// // If session is a batch session, it may be:
95// // a) this is a batch job (the user has not instantiated any UI session);
96// // b) we are currently processing a UI command, in which case the UI
97// // manager creates a temporary batch session and to find out if there is
98// // a genuine UI session that the user has instantiated we must drill
99// // down through previous sessions to a possible non-batch session.
100// while (G4UIbatch* batch = dynamic_cast<G4UIbatch*>(session)) {
101// session = batch->GetPreviousSession();
102// }
103//
104// // Qt windows are only appropriate in a Qt session.
105// if (session) {
106// // If non-zero, this is the originating non-batch session
107// // The user has instantiated a UI session...
108// if (dynamic_cast<G4UIQt*>(session)) {
109// // ...and it's a G4UIQt session, which is OK.
110 isCompatible = true;
111// }
112// }
113 return isCompatible;
114}
bool G4bool
Definition: G4Types.hh:86

◆ operator=()

G4ToolsSGWindowsGLES & G4ToolsSGWindowsGLES::operator= ( const G4ToolsSGWindowsGLES )
inlineprotected

Definition at line 42 of file G4ToolsSGWindowsGLES.hh.

42{return *this;}

Field Documentation

◆ fDescription

G4String G4VGraphicsSystem::fDescription
protectedinherited

Definition at line 90 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetDescription().

◆ fFunctionality

Functionality G4VGraphicsSystem::fFunctionality
protectedinherited

Definition at line 91 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetFunctionality().

◆ fName

G4String G4VGraphicsSystem::fName
protectedinherited

Definition at line 88 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetName().

◆ fNicknames

std::vector<G4String> G4VGraphicsSystem::fNicknames
protectedinherited

◆ fSGSession

tools::Windows::session* G4ToolsSGWindowsGLES::fSGSession
protected

Definition at line 50 of file G4ToolsSGWindowsGLES.hh.

Referenced by CreateViewer(), Initialise(), and ~G4ToolsSGWindowsGLES().


The documentation for this class was generated from the following files: