home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 100-199 / ff193.lzh / KeyMapEd / Source / KME_Window.h < prev   
C/C++ Source or Header  |  1989-03-13  |  642b  |  24 lines

  1. /*
  2.  * Define Key Map Editor Window
  3.  *
  4.  * by: Tim Friest
  5.  * on: December 31, 1988
  6.  * using: Power Windows v2.5
  7.  */
  8.  
  9. struct NewWindow NewKMEWindow = {
  10.     0,10,    /* origin */
  11.     640,103,    /* width and height */
  12.     0,1,    /* detail and block pens */
  13.     GADGETUP|CLOSEWINDOW|MENUPICK,    /* IDCMP flags */
  14.     WINDOWDRAG|WINDOWDEPTH|WINDOWCLOSE|ACTIVATE|NOCAREREFRESH,    /* flags */
  15.     GadgetList,    /* gadget list */
  16.     NULL,    /* custom CHECKMARK imagery */
  17.     KeyMapEdVer,    /* title */
  18.     NULL,    /* custom screen pointer */
  19.     NULL,    /* custom bitmap */
  20.     640,103,    /* minimum width and height */
  21.     -1,-1,    /* maximum width and height */
  22.     WBENCHSCREEN    /* destination screen type */
  23. };
  24.