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