static char LapBoxGuiApp_id[] = "$Header: /u/oreilly/rov/lapBoxGui/RCS/LapBoxGuiApp.cc,v 1.1 1997/03/20 12:27:49 oreilly Exp $";


/*
$Log: LapBoxGuiApp.cc,v $
Revision 1.1  1997/03/20 12:27:49  oreilly
Initial revision

*/
#include <stdlib.h>
#include "LapBoxGuiApp.h"

XtResource LapBoxGuiApp::_resources[] = 
{
  {  
    "okForeground",
    "OkForeground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _okForeground),
    XmRString,
    "Black"
  },

  {  
    "okBackground",
    "OkBackground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _okBackground),
    XmRString,
    "Green"
  },

  {  
    "onForeground",
    "OnForeground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _onForeground),
    XmRString,
    "black"
  },

  {  
    "onBackground",
    "OnBackground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _onBackground),
    XmRString,
    "Green"
  },

  {  
    "offForeground",
    "OffForeground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _offForeground),
    XmRString,
    "white"
  },

  {  
    "offBackground",
    "OffBackground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _offBackground),
    XmRString,
    "black"
  },

  {  
    "faultForeground",
    "FaultForeground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _faultForeground),
    XmRString,
    "white"
  },

  {  
    "faultBackground",
    "FaultBackground",
    XtRPixel,
    sizeof(Pixel),
    XtOffset(LapBoxGuiApp *, _faultBackground),
    XmRString,
    "red"
  }
};


LapBoxGuiApp::LapBoxGuiApp(char *appClassName,
			   int *argc,
			   char **argv,
			   XrmOptionDescRec *optionList,
			   int sizeOfOptionList) : DmGuiApp(appClassName,
							    argc, argv,
							    optionList,
							    sizeOfOptionList)
{
  getResources(_resources, XtNumber(_resources));

}



LapBoxGuiApp::~LapBoxGuiApp()
{
}


