home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / projmot_453.lzh / ProjMot / src / window.h < prev    next >
C/C++ Source or Header  |  1991-02-18  |  835b  |  24 lines

  1. /* window.h (ProjMot)
  2.  * ~~~~~~~~~~~~~~~~~~
  3.  * This is struct for main graph window (Win)
  4.  * © Copyright 1991 Christian E. Hopps (can you legally copyright
  5.  * a NewWindow structure :-) )
  6. */ 
  7.  
  8.  
  9. struct NewWindow NewWindowStructure1 = {
  10.     0,0,    /* window XY origin relative to TopLeft of screen */
  11.     640,200,    /* window width and height */
  12.     0,1,    /* detail and block pens */
  13.     CLOSEWINDOW+NEWSIZE+MOUSEBUTTONS,    /* IDCMP flags */
  14.     RMBTRAP+WINDOWDRAG+WINDOWSIZING+WINDOWDEPTH+WINDOWCLOSE+GIMMEZEROZERO+ACTIVATE+SMART_REFRESH,    /* other window flags */
  15.     NULL,    /* first gadget in gadget list */
  16.     NULL,    /* custom CHECKMARK imagery */
  17.     "Graph",    /* window title */
  18.     NULL,    /* custom screen pointer */
  19.     NULL,    /* custom bitmap */
  20.     50,30,    /* minimum width and height */
  21.     -1,-1,    /* maximum width and height */
  22.     WBENCHSCREEN    /* destination screen type */
  23. };
  24.