Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4OpenInventorXtExtended.cc
이 파일의 문서화 페이지로 가기
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 //
29 //
30 // Jeff Kallenbach 01 Aug 1996
31 // OpenInventor graphics system factory.
32 // Frederick Jones and TJR October 2012
33 // Extended driver based on G4OpenInventorXt.hh
34 // Uses G4OpenInventorXtExaminerViewer.
35 
36 #ifdef G4VIS_BUILD_OIX_DRIVER
37 
38 // this :
40 
41 #include <Inventor/Xt/SoXt.h>
42 
43 #include "G4Xt.hh"
47 
48 // Work around for gcc8 Coverity cast warning
49 inline bool soxt_dispatch_event(void* a_event) {
50  return SoXt::dispatchEvent((XEvent*)a_event);
51 }
52 
54 :G4OpenInventor("OpenInventorXtExtended","OIXE",G4VGraphicsSystem::threeD)
55 ,fInited(false)
56 {
58 }
59 
61 {
62  // G4cout << "DEBUG G4OpenInventorXtExtended::Initialize() CALLED" << G4endl;
63  if(fInited) return; //Done
64 
65  SetInteractorManager (G4Xt::getInstance ());
67  RemoveDispatcher(G4Xt::xt_dispatch_event);
68  // Coverity gcc8 cast warning
69  // RemoveDispatcher((G4DispatchFunction)XtDispatchEvent);
71  AddDispatcher(soxt_dispatch_event);
72  // Coverity gcc8 cast warning
73  // AddDispatcher ((G4DispatchFunction)SoXt::dispatchEvent);
74 
75  Widget top = (Widget)GetInteractorManager()->GetMainInteractor();
76  G4cout << "TOP LEVEL WIDGET FOR SoXt::init() = " << top << G4endl;
77 
78  if(getenv("XENVIRONMENT")==NULL) {
79  XrmDatabase database = XrmGetDatabase(XtDisplay(top));
80  if(database!=NULL) {
81  XrmPutLineResource(&database,"*topShadowColor:white");
82  XrmPutLineResource(&database,"*bottomShadowColor:black");
83  XrmPutLineResource(&database,"*foreground:black");
84  XrmPutLineResource(&database,"*background:lightgrey");
85  XrmPutLineResource(&database,"*borderColor:lightgrey");
86  XrmPutLineResource(&database,"*fontList:-*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-1");
87  XrmPutLineResource(&database,"*help_popup.title:Help");
88  XrmPutLineResource(&database,"*helpCancel.labelString:Cancel");
89  XrmPutLineResource(&database,"*helpText.editMode:multi_line_edit");
90  XrmPutLineResource(&database,"*helpText.columns:60");
91  XrmPutLineResource(&database,"*helpText.rows:20");
92  XrmPutLineResource(&database,"*helpText.background:white");
93  XrmPutLineResource(&database,"*helpText.fontList:*courier*-r-*--14-*");
94  XrmPutLineResource(&database,"*helpText.maxLength:8000");
95  }
96  }
97 
98  if(!SoXt::getTopLevelWidget()) SoXt::init(top);
99 
100  InitNodes();
101 
102  fInited = true;
103 }
104 
106 
108 {
109  // FWJ
110  // Initialize();
111  G4OpenInventorSceneHandler* pScene = (G4OpenInventorSceneHandler*)&scene;
112  return new G4OpenInventorXtExtendedViewer (*pScene, name);
113 }
114 
115 
116 #endif
const XML_Char * name
Definition: expat.h:151
#define G4endl
Definition: G4ios.hh:61
void SetInteractorManager(G4VInteractorManager *)
G4VInteractorManager * GetInteractorManager()
std::map< G4String, G4AttDef > * GetInstance(const G4String &storeKey, G4bool &isNew)
virtual ~G4OpenInventorXtExtended()
G4GLOB_DLL std::ostream G4cout
G4Interactor GetMainInteractor()
virtual void Initialize()
G4VViewer * CreateViewer(G4VSceneHandler &, const G4String &name="")