Created
December 13, 2011 08:52
-
-
Save GenjiApp/1471278 to your computer and use it in GitHub Desktop.
NSWindow's category for full screen mode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <AppKit/AppKit.h> | |
@interface NSWindow (FullScreen) | |
- (BOOL)isInFullScreenMode; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "NSWindow+FullScreen.h" | |
@implementation NSWindow (FullScreen) | |
- (BOOL)isInFullScreenMode | |
{ | |
return ([self styleMask] & NSFullScreenWindowMask) ? YES : NO; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment