home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 580a.lha / HDFView_v3.01 / source.LZH / source / src / view_window.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-11  |  1.0 KB  |  28 lines

  1. /* Initialization of the image window structure. */
  2. struct NewWindow newwindow =
  3. {
  4.    W_LEFTEDGE,        /* SHORT LeftEdge */
  5.    W_TOPEDGE,         /* SHORT TopEdge */
  6.    WIDTH,           /* SHORT Width */
  7.    LACE_HEIGHT,          /* SHORT Height */
  8.    DETAIL_PEN,                   /* UBYTE DetailPen */
  9.    BLOCK_PEN,                  /* UBYTE BlockPen */
  10.    NULL,                /* ULONG IDCMPFlags */
  11.    ACTIVATE | RMBTRAP |
  12.    SMART_REFRESH | NOCAREREFRESH | BACKDROP | BORDERLESS,
  13.                                                /* ULONG Flags */
  14.    NULL,                /* struct Gadget *FirstGadget */
  15.    NULL,                /* struct Image *CheckMark */
  16.    NULL,                              /* UBYTE  *Title */
  17.    NULL,                /* struct Screen *Screen */
  18.    NULL,                /* struct BitMap *BitMap */
  19.    WIDTH,                /* SHORT MinWidth */
  20.    HEIGHT,                /* SHORT MinHeight */
  21.    ~0,                /* USHORT MaxWidth */
  22.    ~0,                /* USHORT MaxHeight */
  23.    CUSTOMSCREEN         /* USHORT Type */
  24. };
  25.  
  26.  
  27.             
  28.