#ifndef _wbvideoP_h_
#define _wbvideoP_h_

#include "wb_include.h"

/* Initialization Values for a Video Widget */
Arg video_arg_list[] = {
  /* Form related instance variables, about placement */
  { XtNvertDistance, (XtArgVal) 0},
  { XtNhorizDistance, (XtArgVal) 0},
  { XtNtop, (XtArgVal) XtRubber},
  { XtNleft, (XtArgVal) XtChainLeft},
  { XtNright, (XtArgVal) XtChainRight},
  { XtNbottom, (XtArgVal) XtRubber},
  { XtNresizable, (XtArgVal) FALSE},
  { XtNfromHoriz, NULL},  
  { XtNfromVert, NULL},
  /* Video related instance variables, about appearance */
  { XtNborderWidth, (XtArgVal) 1},
  { XtNheight, (XtArgVal) 482},
  { XtNwidth, (XtArgVal) 640},
/*
  { XtNlabel,
      (XtArgVal) "A Video Window goes here. Awaiting a video signal..."},
*/
  { NULL, NULL}
 };
Arg videos_label_arg_list[] = {
  /* Form related instance variables, about placement */
  { XtNvertDistance, (XtArgVal) 4},
  { XtNhorizDistance, (XtArgVal) 4},
  { XtNtop, (XtArgVal) XtRubber},
  { XtNleft, (XtArgVal) XtChainLeft},
  { XtNright, (XtArgVal) XtChainRight},
  { XtNbottom, (XtArgVal) XtRubber},
  { XtNresizable, (XtArgVal) TRUE},
  { XtNfromHoriz, NULL},  
  { XtNfromVert, NULL},
  /* Video related instance variables, about appearance */
  { XtNborderWidth, (XtArgVal) 0},
  { XtNlabel,
      (XtArgVal) "A Video Window goes here. Awaiting a video signal..."},
  { NULL, NULL}
 };

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