]> git.sesse.net Git - vlc/blob - modules/gui/macosx/CompatibilityFixes.h
Useless #includes
[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 >= 1162
31
32 #pragma mark -
33 #pragma Fixes for OS X Snow Leopard (10.6)
34
35 #ifndef MAC_OS_X_VERSION_10_7
36 enum {
37     NSWindowCollectionBehaviorFullScreenPrimary = 1 << 7,
38     NSWindowCollectionBehaviorFullScreenAuxiliary = 1 << 8
39 };
40
41 enum {
42     NSApplicationPresentationFullScreen                 = (1 << 10),
43     NSApplicationPresentationAutoHideToolbar            = (1 << 11)
44 };
45
46 /* the following is just to fix warnings, not for implementation! */
47 @interface NSWindow (IntroducedInLion)
48 - (void)setRestorable:(BOOL)b_value;
49 - (void)toggleFullScreen:(id)id_value;
50 - (void)windowWillEnterFullScreen:(NSNotification *)notification;
51 - (void)windowDidEnterFullScreen:(NSNotification *)notification;
52 - (void)windowWillExitFullScreen:(NSNotification *)notification;
53 @end
54
55 @interface NSEvent (IntroducedInLion)
56 - (BOOL)isDirectionInvertedFromDevice;
57 @end
58
59 #endif