| [531] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| [915] | 27 | // $Id: G4OpenGLImmediateQt.cc,v 1.6 2009/02/04 16:48:41 lgarnier Exp $
|
|---|
| [1343] | 28 | // GEANT4 tag $Name: $
|
|---|
| [531] | 29 | //
|
|---|
| [539] | 30 | //
|
|---|
| [533] | 31 | // OpenGLImmediateQt graphics system factory.
|
|---|
| [531] | 32 |
|
|---|
| [533] | 33 | #ifdef G4VIS_BUILD_OPENGLQT_DRIVER
|
|---|
| [531] | 34 |
|
|---|
| 35 | #include "G4VisFeaturesOfOpenGL.hh"
|
|---|
| 36 | #include "G4VSceneHandler.hh"
|
|---|
| 37 | #include "G4OpenGLSceneHandler.hh"
|
|---|
| 38 | #include "G4OpenGLViewer.hh"
|
|---|
| [533] | 39 | #include "G4OpenGLImmediateQt.hh"
|
|---|
| 40 | #include "G4OpenGLImmediateQtViewer.hh"
|
|---|
| [531] | 41 | #include "G4OpenGLViewerMessenger.hh"
|
|---|
| [914] | 42 | #include "G4OpenGLImmediateSceneHandler.hh"
|
|---|
| [531] | 43 |
|
|---|
| [533] | 44 | G4OpenGLImmediateQt::G4OpenGLImmediateQt ():
|
|---|
| [539] | 45 | G4VGraphicsSystem ("OpenGLImmediateQt",
|
|---|
| [866] | 46 | "OGLIQt",
|
|---|
| [539] | 47 | G4VisFeaturesOfOpenGLIQt (),
|
|---|
| 48 | G4VGraphicsSystem::threeD)
|
|---|
| 49 | {
|
|---|
| 50 | G4OpenGLViewerMessenger::GetInstance();
|
|---|
| [531] | 51 | }
|
|---|
| 52 |
|
|---|
| [533] | 53 | G4VSceneHandler* G4OpenGLImmediateQt::CreateSceneHandler
|
|---|
| [531] | 54 | (const G4String& name) {
|
|---|
| [539] | 55 | G4VSceneHandler* pScene = new G4OpenGLImmediateSceneHandler (*this, name);
|
|---|
| 56 | return pScene;
|
|---|
| [531] | 57 | }
|
|---|
| 58 |
|
|---|
| [533] | 59 | G4VViewer* G4OpenGLImmediateQt::CreateViewer
|
|---|
| [531] | 60 | (G4VSceneHandler& scene, const G4String& name) {
|
|---|
| [911] | 61 | #ifdef G4DEBUG_VIS_OGL
|
|---|
| [550] | 62 | printf("G4OpenGLImmediateQt::CreateViewer \n");
|
|---|
| [608] | 63 | #endif
|
|---|
| [539] | 64 | G4VViewer* pView =
|
|---|
| 65 | new G4OpenGLImmediateQtViewer
|
|---|
| 66 | ((G4OpenGLImmediateSceneHandler&) scene, name);
|
|---|
| 67 | if (pView) {
|
|---|
| 68 | if (pView -> GetViewId () < 0) {
|
|---|
| 69 | G4cerr << "G4OpenGLImmediateQt::CreateViewer: error flagged by negative"
|
|---|
| 70 | " view id in G4OpenGLImmediateQtViewer creation."
|
|---|
| 71 | "\n Destroying view and returning null pointer."
|
|---|
| 72 | << G4endl;
|
|---|
| 73 | delete pView;
|
|---|
| 74 | pView = 0;
|
|---|
| [531] | 75 | }
|
|---|
| [539] | 76 | }
|
|---|
| 77 | else {
|
|---|
| 78 | G4cerr << "G4OpenGLImmediateQt::CreateViewer: null pointer on"
|
|---|
| 79 | " new G4OpenGLImmediateQtViewer." << G4endl;
|
|---|
| 80 | }
|
|---|
| [911] | 81 | #ifdef G4DEBUG_VIS_OGL
|
|---|
| [550] | 82 | printf("G4OpenGLImmediateQt::CreateViewer END \n");
|
|---|
| [608] | 83 | #endif
|
|---|
| [539] | 84 | return pView;
|
|---|
| [531] | 85 | }
|
|---|
| 86 |
|
|---|
| 87 | #endif
|
|---|