home *** CD-ROM | disk | FTP | other *** search
- /*
- * Puppeteer 1.1
- *
- * Copyright (c) 1994 Primitive Software Ltd. All rights reserved.
- *
- * Author: Dave Griffiths <dave@prim.demon.co.uk>
- */
-
- #import <appkit/appkit.h>
-
- @interface WindowInfo:Object
- {
- int localWindowNumber;
- int globalWindowNumber;
- }
-
- - initLocalNumber:(int)localNumber globalNumber:(int)globalNumber;
- /*
- * Return the window's frame.
- */
- - getFrame:(NXRect *)frame;
- /*
- * The following two methods return the local and global postscript window numbers
- * respectively.
- */
- - (int)localWindowNumber;
- - (int)globalWindowNumber;
- /*
- * Returns an NXImage containing the window's contents.
- */
- - windowImage;
- - copyWindowToImage:image;
-
- @end
-