Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // >> 27 // $Id: G4OpenGLXmFramedBox.cc 66373 2012-12-18 09:41:34Z gcosmo $ 27 // 28 // 28 //Framed box container class 29 //Framed box container class 29 30 >> 31 #ifdef G4VIS_BUILD_OPENGLXM_DRIVER >> 32 30 #include "G4OpenGLXmBox.hh" 33 #include "G4OpenGLXmBox.hh" 31 #include "G4OpenGLXmFramedBox.hh" 34 #include "G4OpenGLXmFramedBox.hh" 32 #include "G4OpenGLXmVWidgetComponent.hh" 35 #include "G4OpenGLXmVWidgetComponent.hh" 33 #include "G4OpenGLXmVWidgetShell.hh" 36 #include "G4OpenGLXmVWidgetShell.hh" 34 #include <Xm/RowColumn.h> 37 #include <Xm/RowColumn.h> 35 #include <Xm/Frame.h> 38 #include <Xm/Frame.h> 36 39 37 G4OpenGLXmFramedBox::G4OpenGLXmFramedBox (cons 40 G4OpenGLXmFramedBox::G4OpenGLXmFramedBox (const char* n, 38 G4bool r) : 41 G4bool r) : 39 G4OpenGLXmBox (n, r) 42 G4OpenGLXmBox (n, r) 40 { 43 { 41 frame = NULL; 44 frame = NULL; 42 } 45 } 43 46 44 G4OpenGLXmFramedBox::~G4OpenGLXmFramedBox () 47 G4OpenGLXmFramedBox::~G4OpenGLXmFramedBox () 45 {} 48 {} 46 49 47 void G4OpenGLXmFramedBox::AddChild (G4OpenGLXm 50 void G4OpenGLXmFramedBox::AddChild (G4OpenGLXmVWidgetComponent* component) 48 { 51 { 49 component->AddYourselfTo(this); 52 component->AddYourselfTo(this); 50 Cardinal num_children; 53 Cardinal num_children; 51 XtVaGetValues (box_row_col, 54 XtVaGetValues (box_row_col, 52 XmNnumChildren, &num_children, 55 XmNnumChildren, &num_children, 53 NULL); 56 NULL); 54 // G4cout << name << " now parents " << num_c 57 // G4cout << name << " now parents " << num_children << " children." << G4endl; 55 } 58 } 56 59 57 void G4OpenGLXmFramedBox::AddYourselfTo (G4Ope 60 void G4OpenGLXmFramedBox::AddYourselfTo (G4OpenGLXmVWidgetShell* window) 58 { 61 { 59 62 60 pView = window->GetView (); 63 pView = window->GetView (); 61 ProcesspView (); 64 ProcesspView (); 62 char framename[50]; 65 char framename[50]; 63 strcpy (framename, name); 66 strcpy (framename, name); 64 strcat (framename, "_frame"); 67 strcat (framename, "_frame"); 65 68 66 parent = window->GetPointerToWidget (); 69 parent = window->GetPointerToWidget (); 67 frame = XtVaCreateManagedWidget (framename, 70 frame = XtVaCreateManagedWidget (framename, 68 xmFrameWidgetClass, 71 xmFrameWidgetClass, 69 *parent, 72 *parent, 70 73 71 XtNvisual, visual, 74 XtNvisual, visual, 72 XtNdepth, depth, 75 XtNdepth, depth, 73 XtNcolormap, cmap, 76 XtNcolormap, cmap, 74 XtNborderColor, borcol, 77 XtNborderColor, borcol, 75 XtNbackground, bgnd, 78 XtNbackground, bgnd, 76 79 77 NULL); 80 NULL); 78 81 79 82 80 83 81 box_row_col = XtVaCreateManagedWidget (name 84 box_row_col = XtVaCreateManagedWidget (name, 82 xmRowColumnWidgetClass, 85 xmRowColumnWidgetClass, 83 frame, 86 frame, 84 87 85 XmNadjustMargin, True, 88 XmNadjustMargin, True, 86 XmNisHomogeneous, False, 89 XmNisHomogeneous, False, 87 XmNlabelString, (XmString)name, 90 XmNlabelString, (XmString)name, 88 XmNradioAlwaysOne, radio, 91 XmNradioAlwaysOne, radio, 89 XmNradioBehavior, radio, 92 XmNradioBehavior, radio, 90 93 91 XtNvisual, visual, 94 XtNvisual, visual, 92 XtNdepth, depth, 95 XtNdepth, depth, 93 XtNcolormap, cmap, 96 XtNcolormap, cmap, 94 XtNborderColor, borcol, 97 XtNborderColor, borcol, 95 XtNbackground, bgnd, 98 XtNbackground, bgnd, 96 99 97 NULL); 100 NULL); 98 101 99 } 102 } >> 103 >> 104 #endif 100 105