home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / k / myhelp / !MyHelp / SWI / Create next >
Encoding:
Text File  |  1990-11-13  |  604 b   |  21 lines

  1. Wimp_CreateWindow  (&400C1)
  2.  
  3. =>   R1 = Pointer to window block
  4.  
  5. \<=   R0 = Window handle
  6.  
  7.  
  8. This call tells the Wimp what the characteristics of a window are. You
  9. should subsequently call <Wimp_OpenWindow=>Open> to add it to the list of
  10. active windows (ones that are to be displayed). The format of a window
  11. block is as follows:
  12.  
  13. R1+0    visible area minimum x coordinate (inclusive)
  14. R1+4    visible area minimum y coordinate (inclusive)
  15. R1+8    visible area maximum x coordinate (exclusive)
  16. R1+12   visible area maximum y coordinate (exclusive)
  17. R1+16   scroll x offset relative to work area origin
  18. ...
  19.  
  20.  
  21.