#ifndef _wbbuttonP_h_
#define _wbbuttonP_h_

#include "wbbutton.h"

struct button_widget_struct {
    char *label;
    int   height;
    int   width;
    int   borderWidth;
    };

/* Initialization Values for a Command Button Widget */
Arg button_arg_list[] = {
  /* Command Button related instance variables, about appearance */
  { XtNfont, NULL},
  { XtNborderWidth, (XtArgVal) 1},
  { XtNjustify, (XtArgVal) XtJustifyCenter},
  { XtNresizable, TRUE},
  { XtNlabel, (XtArgVal) "Unlabelled Button"},
  { NULL, NULL}
 };

/*****************************************************************************/
#endif      /* end of ifndef _wbbuttonP_h_  :: DO NOT WRITE BELOW THIS LINE. */
