Commit f8d6e492 authored by Felix Paul Kühne's avatar Felix Paul Kühne Committed by Felix Paul Kühne

macosx: fix compatibility header for compilation on 10.6

parent 4ebe9811
...@@ -44,6 +44,15 @@ enum { ...@@ -44,6 +44,15 @@ enum {
NSApplicationPresentationAutoHideToolbar = (1 << 11) NSApplicationPresentationAutoHideToolbar = (1 << 11)
}; };
enum {
NSWindowAnimationBehaviorDefault = 0, // let AppKit infer animation behavior for this window
NSWindowAnimationBehaviorNone = 2, // suppress inferred animations (don't animate)
NSWindowAnimationBehaviorDocumentWindow = 3,
NSWindowAnimationBehaviorUtilityWindow = 4,
NSWindowAnimationBehaviorAlertPanel = 5
};
typedef NSInteger NSWindowAnimationBehavior;
/* the following is just to fix warnings, not for implementation! */ /* the following is just to fix warnings, not for implementation! */
@interface NSWindow (IntroducedInLion) @interface NSWindow (IntroducedInLion)
- (void)setRestorable:(BOOL)b_value; - (void)setRestorable:(BOOL)b_value;
...@@ -51,6 +60,7 @@ enum { ...@@ -51,6 +60,7 @@ enum {
- (void)windowWillEnterFullScreen:(NSNotification *)notification; - (void)windowWillEnterFullScreen:(NSNotification *)notification;
- (void)windowDidEnterFullScreen:(NSNotification *)notification; - (void)windowDidEnterFullScreen:(NSNotification *)notification;
- (void)windowWillExitFullScreen:(NSNotification *)notification; - (void)windowWillExitFullScreen:(NSNotification *)notification;
- (void)setAnimationBehavior:(NSWindowAnimationBehavior)newAnimationBehavior;
@end @end
@interface NSEvent (IntroducedInLion) @interface NSEvent (IntroducedInLion)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment