// // ZoomPixmapWindow.h // ZoomCocoa // // Created by Andrew Hunter on Fri Jun 25 2004. // Copyright (c) 2004 Andrew Hunter. All rights reserved. // #import #import "ZoomView.h" @interface ZoomPixmapWindow : NSObject { ZoomView* zView; NSImage* pixmap; NSPoint inputPos; ZStyle* inputStyle; } // Initialisation - (id) initWithZoomView: (ZoomView*) view; - (void) setZoomView: (ZoomView*) view; // Getting the pixmap - (NSSize) size; - (NSImage*) pixmap; // Input information - (NSPoint) inputPos; - (ZStyle*) inputStyle; @end