Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4OpenInventorQtViewer Class Reference

#include <G4OpenInventorQtViewer.hh>

+ Inheritance diagram for G4OpenInventorQtViewer:

Public Member Functions

 G4OpenInventorQtViewer (G4OpenInventorSceneHandler &scene, const G4String &name="")
 
virtual ~G4OpenInventorQtViewer ()
 
void Initialise ()
 
virtual void FinishView ()
 
virtual void SetView ()
 
- Public Member Functions inherited from G4OpenInventorViewer
virtual void DrawView ()
 
virtual void ShowView ()
 
virtual void ClearView ()
 
virtual void KernelVisitDecision ()
 
 G4OpenInventorViewer (G4OpenInventorSceneHandler &scene, const G4String &name="")
 
virtual ~G4OpenInventorViewer ()
 
- Public Member Functions inherited from G4VViewer
 G4VViewer (G4VSceneHandler &, G4int id, const G4String &name="")
 
virtual ~G4VViewer ()
 
virtual void ResetView ()
 
void RefreshView ()
 
virtual G4bool ReadyToDraw ()
 
std::vector< G4ThreeVectorComputeFlyThrough (G4Vector3D *)
 
virtual void DoneWithMasterThread ()
 
virtual void MovingToVisSubThread ()
 
virtual void SwitchToVisSubThread ()
 
virtual void DoneWithVisSubThread ()
 
virtual void MovingToMasterThread ()
 
virtual void SwitchToMasterThread ()
 
void InsertModelInSceneTree (G4VModel *)
 
const G4SceneTreeItemGetSceneTree ()
 
G4SceneTreeItemAccessSceneTree ()
 
void UpdateGUISceneTree ()
 
const G4StringGetName () const
 
const G4StringGetShortName () const
 
void SetName (const G4String &)
 
G4int GetViewId () const
 
G4VSceneHandlerGetSceneHandler () const
 
const G4ViewParametersGetViewParameters () const
 
const G4ViewParametersGetDefaultViewParameters () const
 
G4double GetKernelVisitElapsedTimeSeconds () const
 
virtual const std::vector< G4ModelingParameters::VisAttributesModifier > * GetPrivateVisAttributesModifiers () const
 
void SetViewParameters (const G4ViewParameters &vp)
 
void SetDefaultViewParameters (const G4ViewParameters &vp)
 
const G4VisAttributesGetApplicableVisAttributes (const G4VisAttributes *) const
 
void SetNeedKernelVisit (G4bool need)
 
void NeedKernelVisit ()
 
void ProcessView ()
 

Protected Member Functions

virtual void ViewerRender ()
 
virtual SoCamera * GetCamera ()
 
- Protected Member Functions inherited from G4OpenInventorViewer
void Escape ()
 Menu items callbacks /////////////////////////////////////////////////////.
 
void WritePostScript (const G4String &file="g4out.ps")
 
void WritePDF (const G4String &file="g4out.pdf")
 
void WritePixmapPostScript (const G4String &file="g4out.ps")
 
void WriteInventor (const G4String &file="g4out.iv")
 
void SceneGraphStatistics ()
 
void EraseDetector ()
 
void EraseEvent ()
 
void SetPreviewAndFull ()
 
void SetPreview ()
 
void SetSolid ()
 
void SetWireFrame ()
 
void SetReducedWireFrame (bool)
 
void UpdateScene ()
 
G4String Help (const G4String &topic="controls")
 
- Protected Member Functions inherited from G4VViewer
void SetTouchable (const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &fullPath)
 
void TouchableSetVisibility (const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &fullPath, G4bool visibility)
 
void TouchableSetColour (const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &fullPath, const G4Colour &)
 

Protected Attributes

G4OpenInventorQtExaminerViewerfViewer
 
- Protected Attributes inherited from G4OpenInventorViewer
G4OpenInventorSceneHandlerfG4OpenInventorSceneHandler
 
G4VInteractorManagerfInteractorManager
 
SoSelection * fSoSelection
 
Geant4_SoImageWriter * fSoImageWriter
 
Geant4_SoGL2PSAction * fGL2PSAction
 
SoNodeSensor * fGroupCameraSensor
 
- Protected Attributes inherited from G4VViewer
G4VSceneHandlerfSceneHandler
 
G4int fViewId
 
G4String fName
 
G4String fShortName
 
G4ViewParameters fVP
 
G4ViewParameters fDefaultVP
 
G4double fKernelVisitElapsedTimeSeconds = 999.
 
G4SceneTreeItem fSceneTree
 
G4bool fNeedKernelVisit
 

Additional Inherited Members

- Public Attributes inherited from G4VViewer
const G4int fMaxNTouchables = 10000
 
G4bool fCurtailDescent = false
 
- Static Protected Member Functions inherited from G4OpenInventorViewer
static void SelectionCB (void *, SoPath *)
 

Detailed Description

Definition at line 51 of file G4OpenInventorQtViewer.hh.

Constructor & Destructor Documentation

◆ G4OpenInventorQtViewer()

G4OpenInventorQtViewer::G4OpenInventorQtViewer ( G4OpenInventorSceneHandler & scene,
const G4String & name = "" )

Definition at line 61 of file G4OpenInventorQtViewer.cc.

63 : G4OpenInventorViewer(sceneHandler, name), fViewer(0)
64#if 0x060000 <= QT_VERSION
65 ,fDestroyCallback(0)
66#endif
67{
68#if 0x060000 <= QT_VERSION
69 fDestroyCallback = new G4OpenInventorQtDestroyCallback(this);
70#endif
71 // FWJ fName is in G4VViewer parent of G4OpenInventorViewer
73 G4cout << "Window name: " << fName << G4endl;
74}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4OpenInventorQtExaminerViewer * fViewer
G4OpenInventorViewer(G4OpenInventorSceneHandler &scene, const G4String &name="")
G4String fName
Definition G4VViewer.hh:255
static Verbosity GetVerbosity()

◆ ~G4OpenInventorQtViewer()

G4OpenInventorQtViewer::~G4OpenInventorQtViewer ( )
virtual

Definition at line 284 of file G4OpenInventorQtViewer.cc.

285{
286 // if(fShell) fInteractorManager->RemoveShell(fShell);
287 if(fViewer) {
288 fViewer->setSceneGraph(0);
289 //FIXME : SGI : the below "delete" block things.
290#if 0x060000 <= QT_VERSION
291 delete fViewer;
292#endif
293 }
294#if 0x060000 <= QT_VERSION
295 delete fDestroyCallback;
296#endif
297}

Member Function Documentation

◆ FinishView()

void G4OpenInventorQtViewer::FinishView ( void )
virtual

Reimplemented from G4VViewer.

Definition at line 299 of file G4OpenInventorQtViewer.cc.

300{
301 if(!fViewer) return;
302 fViewer->viewAll();
303 fViewer->saveHomePosition();
304}

◆ GetCamera()

SoCamera * G4OpenInventorQtViewer::GetCamera ( )
protectedvirtual

Implements G4OpenInventorViewer.

Definition at line 322 of file G4OpenInventorQtViewer.cc.

322 {
323 if(!fViewer) return 0;
324 return fViewer->getCamera();
325}

◆ Initialise()

void G4OpenInventorQtViewer::Initialise ( )
virtual

Reimplemented from G4VViewer.

Definition at line 77 of file G4OpenInventorQtViewer.cc.

78{
79
80#if QT_VERSION < 0x060000
81 QWidget* parent = SoQt::getTopLevelWidget();
82#else
83 QWidget* parent = new QWidget;
84 QObject::connect(parent,SIGNAL(destroyed()),fDestroyCallback,SLOT(execute()));
85#endif
86
87 // FWJ DEBUG
88 // G4cout << "G4OIQtViewer: Creating G4OIQtExaminerViewer with parent " <<
89 // parent << G4endl;
90
91 fViewer = new G4OpenInventorQtExaminerViewer(parent, fName, TRUE);
92
93#if 0x060000 <= QT_VERSION
94 fViewer->addInTab();
95#endif
96
97 // FWJ tried this to replace sensors, but it misses some camera changes.
98 // fGroupCameraSensor->detach();
99 // fCameraSensor->detach();
100 // fViewer->addFinishCallback(FinishCB);
101
102 auto UI = G4UImanager::GetUIpointer();
103 auto uiQt = dynamic_cast<G4UIQt*>(UI->GetG4UIWindow());
104
105 // Moved this to G4OpenInventorQtExaminerViewer::afterRealizeHook()
106 ///////////////////////////////////////////////////////////
107 //
108 // This explicitly sets the TabWidget as parent before addTab():
109 // if (uiQt) uiQt->AddTabWidget(parent, QString(fName));
110 ///////////////////////////////////////////////////////////
111
112 // Simpler: calls addTab(), but causes viewer parts to show (temporarily)
113 // in the "Useful tips" page !!
114 // if (uiQt) uiQt->AddViewerTab(parent, fName);
115 // Leaves an empty viewer window frame hanging around:
116 // if (uiQt) uiQt->AddTabWidget(fViewer->getWidget(), QString(fName));
117
118 // G4String wName = fName;
119 //
120 // QWidget parent = (QWidget)fInteractorManager->GetParentInteractor();
121
122#if QT_VERSION < 0x060000
123 int width = fVP.GetWindowSizeHintX();
124 int height = fVP.GetWindowSizeHintY();
125
126 // FWJ not sure what this is for
127 // fInteractorManager->AddShell(fShell);
128
129 // FWJ or this:
130 // } else {
131 // char* str = fInteractorManager->GetCreationString();
132 // if(str!=0) wName = str;
133 // fViewer = new SoQtExaminerViewer(parent,wName.c_str(),TRUE);
134 // }
135
136 fViewer->setSize(SbVec2s(width, height));
137 fViewer->setOrigWindowSize(width, height);
138#else
139 //G.Barrand: if in a QTabViewer, it is better to let the QTabWidget and
140 // SoQt set the size and position of the fViewer SoQtExaminerViewer.
141#endif
142
143 // Add common menu items...
144
145 // QMenuBar* menubar = fViewer->getMenubar();
146 QMenu* filemenu = fViewer->getFileMenu();
147 QMenu* etcmenu = fViewer->getEtcMenu();
148 QFont* font = fViewer->getFont();
149
150 // File menu
151
152 FileWritePS = new QAction("Write PostScript (gl2ps)", this);
153 FileWritePS->setFont(*font);
154 connect(FileWritePS, SIGNAL(triggered()), this,
155 SLOT(FileWritePSCB()));
156 filemenu->addAction(FileWritePS);
157
158 FileWritePDF = new QAction("Write PDF (gl2ps)", this);
159 FileWritePDF->setFont(*font);
160 connect(FileWritePDF, SIGNAL(triggered()), this,
161 SLOT(FileWritePDFCB()));
162 filemenu->addAction(FileWritePDF);
163
164 FileWriteIV = new QAction("Write IV", this);
165 FileWriteIV->setFont(*font);
166 connect(FileWriteIV, SIGNAL(triggered()), this,
167 SLOT(FileWriteIVCB()));
168 filemenu->addAction(FileWriteIV);
169
170 FileEscape = new QAction("Escape", this);
171 FileEscape->setFont(*font);
172 connect(FileEscape, SIGNAL(triggered()), this,
173 SLOT(FileEscapeCB()));
174 filemenu->addAction(FileEscape);
175
176 // G4cout << "G4OIQtViewer: externalApp = " <<
177 // static_cast<G4SoQt*>(fInteractorManager)->IsExternalApp() << G4endl;
178 if (static_cast<G4SoQt*>(fInteractorManager)->IsExternalApp())
179 fViewer->setExternalQtApp();
180
181 // Register escape CB with viewer, allowing E key escape
182 // fViewer->addEscapeCallback(FileEscapeCB);
183 // fViewer->addEscapeCallback(FileEscapeCB, (void*)this);
184
185 // Etc menu
186
187 EtcEraseDetector = new QAction("Erase detector", this);
188 EtcEraseDetector->setFont(*font);
189 connect(EtcEraseDetector, SIGNAL(triggered()), this,
190 SLOT(EtcEraseDetectorCB()));
191 etcmenu->addAction(EtcEraseDetector);
192
193 EtcEraseEvent = new QAction("Erase event", this);
194 EtcEraseEvent->setFont(*font);
195 connect(EtcEraseEvent, SIGNAL(triggered()), this,
196 SLOT(EtcEraseEventCB()));
197 etcmenu->addAction(EtcEraseEvent);
198
199 EtcSetSolid = new QAction("Set solid", this);
200 EtcSetSolid->setFont(*font);
201 connect(EtcSetSolid, SIGNAL(triggered()), this, SLOT(EtcSetSolidCB()));
202 etcmenu->addAction(EtcSetSolid);
203
204 EtcSetReducedWireframe = new QAction("Set (G4) reduced wireframe", this);
205 EtcSetReducedWireframe->setFont(*font);
206 connect(EtcSetReducedWireframe, SIGNAL(triggered()), this,
207 SLOT(EtcSetReducedWireframeCB()));
208 etcmenu->addAction(EtcSetReducedWireframe);
209
210 EtcSetFullWireframe = new QAction("Set full wireframe", this);
211 EtcSetFullWireframe->setFont(*font);
212 connect(EtcSetFullWireframe, SIGNAL(triggered()), this,
213 SLOT(EtcSetFullWireframeCB()));
214 etcmenu->addAction(EtcSetFullWireframe);
215
216 EtcVisibMInvisibD = new QAction("Visible mothers + invisible daughters",
217 this);
218 EtcVisibMInvisibD->setFont(*font);
219 connect(EtcVisibMInvisibD, SIGNAL(triggered()), this,
220 SLOT(EtcVisibMInvisibDCB()));
221 etcmenu->addAction(EtcVisibMInvisibD);
222
223 EtcVisibMVisibD = new QAction("Visible mothers + visible daughters", this);
224 EtcVisibMVisibD->setFont(*font);
225 connect(EtcVisibMVisibD, SIGNAL(triggered()), this,
226 SLOT(EtcVisibMVisibDCB()));
227 etcmenu->addAction(EtcVisibMVisibD);
228
229 EtcUpdateScene = new QAction("Update scene", this);
230 EtcUpdateScene->setFont(*font);
231 connect(EtcUpdateScene, SIGNAL(triggered()), this,
232 SLOT(EtcUpdateSceneCB()));
233 etcmenu->addAction(EtcUpdateScene);
234
235 EtcSceneGraphStats = new QAction("Scene graph stats", this);
236 EtcSceneGraphStats->setFont(*font);
237 connect(EtcSceneGraphStats, SIGNAL(triggered()), this,
238 SLOT(EtcSceneGraphStatsCB()));
239 etcmenu->addAction(EtcSceneGraphStats);
240
241
242 // Have a GL2PS render action :
243 const SbViewportRegion& vpRegion = fViewer->getViewportRegion();
244 fGL2PSAction = new SoGL2PSAction(vpRegion);
245 fViewer->setGLRenderAction(fGL2PSAction);
246
247 // Else :
248
249 // FWJ DEBUG
250 // G4cout << "G4OpenInventorQtViewer: setting scene graph " <<
251 // fSoSelection << G4endl;
252 // G4cout << "G4OpenInventorQtViewer: getNumChildren " <<
253 // fSoSelection->getNumChildren() << G4endl;
254
255 fViewer->setSceneGraph(fSoSelection);
256 fViewer->setTransparencyType(SoGLRenderAction::SORTED_OBJECT_ADD);
257 fViewer->viewAll();
258 fViewer->saveHomePosition();
259 // SOMEHOW this also the OIQt main window title
260 if (!uiQt) fViewer->setTitle(fName);
261#if QT_VERSION < 0x060000
262 fViewer->show();
263
264 // This SHOULD invoke the event loop:
265 // if(fShell) {
266
267 QWidget* mainWin = SoQt::getTopLevelWidget();
268
269 // FWJ DEBUG
270 // G4cout << "G4OIQtViewer: calling SoQt::show on mainWin = " << mainWin
271 // << G4endl;
272
273 SoQt::show(mainWin);
274 fInteractorManager->FlushAndWaitExecution();
275
276 // }
277 fInteractorManager->SetCreatedInteractor(fViewer->getWidget());
278#else
279 fViewer->setupSceneGraph();
280#endif
281}
#define SoGL2PSAction
G4VInteractorManager * fInteractorManager
Geant4_SoGL2PSAction * fGL2PSAction
static G4UImanager * GetUIpointer()
G4ViewParameters fVP
Definition G4VViewer.hh:257
#define TRUE
Definition globals.hh:41

◆ SetView()

void G4OpenInventorQtViewer::SetView ( )
virtual

Reimplemented from G4OpenInventorViewer.

Definition at line 306 of file G4OpenInventorQtViewer.cc.

307{
309 if(!fViewer) return;
310 // Background.
311 G4Colour b = fVP.GetBackgroundColour();
312 fViewer->setBackgroundColor
313 (SbColor((float)b.GetRed(),(float)b.GetGreen(),(float)b.GetBlue()));
314}
G4double GetBlue() const
Definition G4Colour.hh:172
G4double GetRed() const
Definition G4Colour.hh:170
G4double GetGreen() const
Definition G4Colour.hh:171

◆ ViewerRender()

void G4OpenInventorQtViewer::ViewerRender ( )
protectedvirtual

Implements G4OpenInventorViewer.

Definition at line 316 of file G4OpenInventorQtViewer.cc.

317{
318 if(!fViewer) return;
319 fViewer->render();
320}

Member Data Documentation

◆ fViewer


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