Files
geant4/source/visualization/OpenGL/src/G4OpenGLXmPushButton.cc
T
2016-06-08 16:10:37 +02:00

106 lines
3.1 KiB
C++

//
// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. *
// * *
// * This code implementation is the intellectual property of the *
// * GEANT4 collaboration. *
// * By copying, distributing or modifying the Program (or any work *
// * based on the Program) you indicate your acceptance of this *
// * statement, and all its terms. *
// ********************************************************************
//
//
// $Id: G4OpenGLXmPushButton.cc,v 1.4.2.1 2001/06/28 19:15:46 gunter Exp $
// GEANT4 tag $Name: $
//
//Push button class. Inherits from G4OpenGLXmVWidgetComponent
#ifdef G4VIS_BUILD_OPENGLXM_DRIVER
#include "G4OpenGLXmVWidgetComponent.hh"
#include "G4OpenGLXmVWidgetContainer.hh"
#include "G4OpenGLXmPushButton.hh"
#include <X11/Intrinsic.h>
#include "globals.hh"
G4OpenGLXmPushButton::G4OpenGLXmPushButton (const char* n,
XtCallbackRec* c)
{
name = n;
callback = c;
}
G4OpenGLXmPushButton::~G4OpenGLXmPushButton ()
{}
void G4OpenGLXmPushButton::SetName (const char* n)
{
name = n;
XmString button_string = XmStringCreateLocalized ((char*)name);
XtVaSetValues (button,
XmNlabelString, button_string,
NULL);
XmStringFree (button_string);
}
const char* G4OpenGLXmPushButton::GetName ()
{
return name;
}
void G4OpenGLXmPushButton::AddYourselfTo (G4OpenGLXmVWidgetContainer* container)
{
pView = container->GetView ();
ProcesspView ();
parent = container->GetPointerToWidget ();
XmString button_str = XmStringCreateLocalized ((char*)name);
button = XtVaCreateManagedWidget
(name,
xmPushButtonWidgetClass,
*parent,
XmNlabelString, button_str,
XmNalignment, XmALIGNMENT_CENTER,
XmNuserData, pView,
XtNvisual, visual,
XtNdepth, depth,
XtNcolormap, cmap,
XtNborderColor, borcol,
XtNbackground, bgnd,
NULL);
XtAddCallbacks (button,
XmNarmCallback,
callback);
XmStringFree (button_str);
}
Widget* G4OpenGLXmPushButton::GetPointerToParent ()
{
return parent;
}
Widget* G4OpenGLXmPushButton::GetPointerToWidget ()
{
return &button;
}
#endif