]> git.sesse.net Git - vlc/blob - modules/gui/macosx/CompatibilityFixes.h
macosx: fix typo preventing post-processing (refs #11613)
[vlc] / modules / gui / macosx / CompatibilityFixes.h
1 /*****************************************************************************
2  * CompatibilityFixes.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2011-2012 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #import <Cocoa/Cocoa.h>
25
26 #pragma mark -
27 #pragma OS detection code
28 #define OSX_SNOW_LEOPARD (NSAppKitVersionNumber < 1115 && NSAppKitVersionNumber >= 1038)
29 #define OSX_LION (NSAppKitVersionNumber < 1162 && NSAppKitVersionNumber >= 1115.2)
30 #define OSX_MOUNTAIN_LION (NSAppKitVersionNumber < 1244 && NSAppKitVersionNumber >= 1162)
31 #define OSX_MAVERICKS NSAppKitVersionNumber >= 1244
32
33 #pragma mark -
34 #pragma Fixes for OS X Snow Leopard (10.6)
35
36 #ifndef MAC_OS_X_VERSION_10_7
37 enum {
38     NSWindowCollectionBehaviorFullScreenPrimary = 1 << 7,
39     NSWindowCollectionBehaviorFullScreenAuxiliary = 1 << 8
40 };
41
42 enum {
43     NSApplicationPresentationFullScreen                 = (1 << 10),
44     NSApplicationPresentationAutoHideToolbar            = (1 << 11)
45 };
46
47 enum {
48     NSFullScreenWindowMask      = 1 << 14
49 };
50
51 enum {
52     NSWindowAnimationBehaviorDefault = 0,       // let AppKit infer animation behavior for this window
53     NSWindowAnimationBehaviorNone = 2,          // suppress inferred animations (don't animate)
54     NSWindowAnimationBehaviorDocumentWindow = 3,
55     NSWindowAnimationBehaviorUtilityWindow = 4,
56     NSWindowAnimationBehaviorAlertPanel = 5
57 };
58 typedef NSInteger NSWindowAnimationBehavior;
59
60 /* the following is just to fix warnings, not for implementation! */
61 @interface NSWindow (IntroducedInLion)
62 - (void)setRestorable:(BOOL)b_value;
63 - (void)toggleFullScreen:(id)id_value;
64 - (void)windowWillEnterFullScreen:(NSNotification *)notification;
65 - (void)windowDidEnterFullScreen:(NSNotification *)notification;
66 - (void)windowWillExitFullScreen:(NSNotification *)notification;
67 - (void)setAnimationBehavior:(NSWindowAnimationBehavior)newAnimationBehavior;
68 @end
69
70 @interface NSEvent (IntroducedInLion)
71 - (BOOL)isDirectionInvertedFromDevice;
72 @end
73
74 @interface NSAnimationContext (IntroducedInLion)
75 + (void)runAnimationGroup:(void (^)(NSAnimationContext *context))changes completionHandler:(void (^)(void))completionHandler;
76 @end
77
78 #endif