// // UKWindowFlipperAppDelegate.h // WindowFlipper // // Created by Uli Kusterer on 29.03.05. // Copyright 2005 M. Uli Kusterer. All rights reserved. // #import <Cocoa/Cocoa.h> @interface UKWindowFlipperAppDelegate : NSObject { IBOutlet NSWindow* win; // Window to snap-shoot. IBOutlet NSTabView* tv; // Tab view to change upon flip. } -(void) resetAnimationFrame: (id)sender; -(void) pageSwitch: (id)sender; @end @interface NSWindow (UKFlipWindow) -(void) flipWindowTransitionWithHalfwayMessage: (SEL)sel target: (id)targ; // private: -(void) takeSnapshot; -(void) nextFlipAnimationFrame: (NSTimer*)sender; @end |