source: trunk/source/visualization/OpenInventor/src/G4OpenInventorXt.cc @ 1347

Last change on this file since 1347 was 1347, checked in by garnier, 13 years ago

geant4 tag 9.4

  • Property svn:mime-type set to text/cpp
File size: 3.9 KB
Line 
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//
27// $Id: G4OpenInventorXt.cc,v 1.5 2010/05/26 14:30:46 allison Exp $
28// GEANT4 tag $Name: geant4-09-04-ref-00 $
29//
30//
31// Jeff Kallenbach 01 Aug 1996
32// OpenInventor graphics system factory.
33
34#ifdef G4VIS_BUILD_OIX_DRIVER
35
36// this :
37#include "G4OpenInventorXt.hh"
38
39#include <Inventor/Xt/SoXt.h>
40
41#include "G4Xt.hh"
42#include "G4OpenInventorSceneHandler.hh"
43#include "G4OpenInventorXtViewer.hh"
44
45G4OpenInventorXt::G4OpenInventorXt ()
46:G4OpenInventor("OpenInventorXt","OIX",G4VGraphicsSystem::threeD)
47,fInited(false)
48{
49}
50
51void G4OpenInventorXt::Initialize()
52{
53  if(fInited) return; //Done
54
55  SetInteractorManager (G4Xt::getInstance ());
56  GetInteractorManager () ->
57    RemoveDispatcher((G4DispatchFunction)XtDispatchEvent); 
58  GetInteractorManager () ->
59    AddDispatcher   ((G4DispatchFunction)SoXt::dispatchEvent);
60
61  Widget top = (Widget)GetInteractorManager()->GetMainInteractor();
62
63  if(getenv("XENVIRONMENT")==NULL) {
64    XrmDatabase database = XrmGetDatabase(XtDisplay(top));
65    if(database!=NULL) {
66      XrmPutLineResource(&database,"*topShadowColor:white");
67      XrmPutLineResource(&database,"*bottomShadowColor:black");
68      XrmPutLineResource(&database,"*foreground:black");
69      XrmPutLineResource(&database,"*background:lightgrey");
70      XrmPutLineResource(&database,"*borderColor:lightgrey");
71      XrmPutLineResource(&database,"*fontList:-*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-1");
72      XrmPutLineResource(&database,"*help_popup.title:Help");
73      XrmPutLineResource(&database,"*helpCancel.labelString:Cancel");
74      XrmPutLineResource(&database,"*helpText.editMode:multi_line_edit");
75      XrmPutLineResource(&database,"*helpText.columns:60");
76      XrmPutLineResource(&database,"*helpText.rows:20");
77      XrmPutLineResource(&database,"*helpText.background:white");
78      XrmPutLineResource(&database,"*helpText.fontList:*courier*-r-*--14-*");
79      XrmPutLineResource(&database,"*helpText.maxLength:8000");
80    }
81  }
82
83  if(!SoXt::getTopLevelWidget()) SoXt::init(top);
84
85  InitNodes();
86
87  fInited = true;
88}
89
90G4OpenInventorXt::~G4OpenInventorXt () {}
91G4VViewer* G4OpenInventorXt::CreateViewer (G4VSceneHandler& scene, const G4String& name)
92{
93  Initialize();
94  G4OpenInventorSceneHandler* pScene = (G4OpenInventorSceneHandler*)&scene;
95  return new G4OpenInventorXtViewer (*pScene, name);
96}
97
98
99#endif
Note: See TracBrowser for help on using the repository browser.