Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4OpenInventorXt.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 110811 2018-06-15 07:09:36Z gcosmo $
28 //
29 //
30 // Jeff Kallenbach 01 Aug 1996
31 // OpenInventor graphics system factory.
32 
33 #ifdef G4VIS_BUILD_OIX_DRIVER
34 
35 // this :
36 #include "G4OpenInventorXt.hh"
37 
38 #include <Inventor/Xt/SoXt.h>
39 
40 #include "G4Xt.hh"
43 
44 // Work around for gcc8 Coverity cast warning
45 inline bool soxt_dispatch_event(void* a_event) {
46  return SoXt::dispatchEvent((XEvent*)a_event);
47 }
48 
50 :G4OpenInventor("OpenInventorXt","OIX",G4VGraphicsSystem::threeD)
51 ,fInited(false)
52 {
53 }
54 
56 {
57  if(fInited) return; //Done
58 
59  SetInteractorManager (G4Xt::getInstance ());
61  RemoveDispatcher(G4Xt::xt_dispatch_event);
62  // Coverity gcc8 cast warning
63  // RemoveDispatcher((G4DispatchFunction)XtDispatchEvent);
65  AddDispatcher(soxt_dispatch_event);
66  // Coverity gcc8 cast warning
67  // AddDispatcher ((G4DispatchFunction)SoXt::dispatchEvent);
68 
69  Widget top = (Widget)GetInteractorManager()->GetMainInteractor();
70 
71  if(getenv("XENVIRONMENT")==NULL) {
72  XrmDatabase database = XrmGetDatabase(XtDisplay(top));
73  if(database!=NULL) {
74  XrmPutLineResource(&database,"*topShadowColor:white");
75  XrmPutLineResource(&database,"*bottomShadowColor:black");
76  XrmPutLineResource(&database,"*foreground:black");
77  XrmPutLineResource(&database,"*background:lightgrey");
78  XrmPutLineResource(&database,"*borderColor:lightgrey");
79  XrmPutLineResource(&database,"*fontList:-*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-1");
80  XrmPutLineResource(&database,"*help_popup.title:Help");
81  XrmPutLineResource(&database,"*helpCancel.labelString:Cancel");
82  XrmPutLineResource(&database,"*helpText.editMode:multi_line_edit");
83  XrmPutLineResource(&database,"*helpText.columns:60");
84  XrmPutLineResource(&database,"*helpText.rows:20");
85  XrmPutLineResource(&database,"*helpText.background:white");
86  XrmPutLineResource(&database,"*helpText.fontList:*courier*-r-*--14-*");
87  XrmPutLineResource(&database,"*helpText.maxLength:8000");
88  }
89  }
90 
91  if(!SoXt::getTopLevelWidget()) SoXt::init(top);
92 
93  InitNodes();
94 
95  fInited = true;
96 }
97 
100 {
101  Initialize();
102  G4OpenInventorSceneHandler* pScene = (G4OpenInventorSceneHandler*)&scene;
103  return new G4OpenInventorXtViewer (*pScene, name);
104 }
105 
106 
107 #endif
G4VViewer * CreateViewer(G4VSceneHandler &, const G4String &name="")
const XML_Char * name
Definition: expat.h:151
void SetInteractorManager(G4VInteractorManager *)
virtual void Initialize()
G4VInteractorManager * GetInteractorManager()
virtual ~G4OpenInventorXt()
G4Interactor GetMainInteractor()