diff options
Diffstat (limited to 'QSFoundation.framework/Versions/A/PrivateHeaders/NSWindow_BLTRExtensions.h')
| -rwxr-xr-x | QSFoundation.framework/Versions/A/PrivateHeaders/NSWindow_BLTRExtensions.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/QSFoundation.framework/Versions/A/PrivateHeaders/NSWindow_BLTRExtensions.h b/QSFoundation.framework/Versions/A/PrivateHeaders/NSWindow_BLTRExtensions.h new file mode 100755 index 0000000..b095730 --- /dev/null +++ b/QSFoundation.framework/Versions/A/PrivateHeaders/NSWindow_BLTRExtensions.h @@ -0,0 +1,22 @@ + +#import <Cocoa/Cocoa.h> + +@interface NSWindow (Fade) +-(void)setSticky:(BOOL)flag; +-(void)setAlphaValue:(float)fadeOut fadeTime:(float)seconds; +- (void)setFrame:(NSRect)frameRect alphaValue:(float)alpha display:(BOOL)displayFlag animate:(BOOL)animationFlag; +-(void)reallyCenter; ++(NSWindow *)windowWithImage:(NSImage *)image; +- (id)windowPropertyForKey:(NSString *)key; +@end + +@interface NSWindow (Physics) +-(void)animateVelocity:(float)velocity inDirection:(float)angle withFriction:(float)friction startTime:(NSTimeInterval)startTime; +@end + + +@interface NSWindow (Widgets) +- (void) addInternalWidgets; +- (void) addInternalWidgetsForStyleMask:(int)styleMask; +@end + |