//////////////////////////////////////////////////////////////////////////////
// HelloWorld.C
//////////////////////////////////////////////////////////////////////////////
#include "HelloWorld.hh"

#include <Xm/Label.h>
#include <Xm/Form.h>

#include <stdlib.h>

void HelloWorld::ok(Widget button, XtPointer callData)
{
  exit(0);
}

Widget HelloWorld::createShellArea(Widget parent)
{
  Widget form =  XtCreateManagedWidget("form", xmFormWidgetClass, 
				       parent, NULL, 0);

  Widget label =  XtVaCreateManagedWidget("hello world", xmLabelWidgetClass, 
					 form, 
					 XmNtopAttachment,    XmATTACH_FORM,
					 XmNbottomAttachment, XmATTACH_FORM,
					 XmNrightAttachment,  XmATTACH_FORM,
					 XmNleftAttachment,   XmATTACH_FORM,
					 NULL);

  return form;
}

