]> git.sesse.net Git - vlc/blob - modules/gui/macosx/CompatibilityFixes.h
macosx: fixed use of [VLCMain localizedString] pointed by David Fuhrmann
[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_LEOPARD (NSAppKitVersionNumber < 1038 && NSAppKitVersionNumber >= 949)
29 #define OSX_SNOW_LEOPARD (NSAppKitVersionNumber < 1115 && NSAppKitVersionNumber >= 1038)
30 #define OSX_LION NSAppKitVersionNumber >= 1115.2
31
32 #pragma mark -
33 #pragma Fixes for OS X Leopard (10.5)
34
35 #ifndef MAC_OS_X_VERSION_10_6
36
37 @protocol NSAnimationDelegate <NSObject> @end
38 @protocol NSWindowDelegate <NSObject> @end
39 @protocol NSComboBoxDataSource <NSObject> @end
40 @protocol NSTextFieldDelegate <NSObject> @end
41 @protocol NSTableViewDataSource <NSObject> @end
42 @protocol NSOutlineViewDelegate <NSObject> @end
43 @protocol NSOutlineViewDataSource <NSObject> @end
44 @protocol NSToolbarDelegate <NSObject> @end
45 @protocol NSSplitViewDelegate <NSObject> @end
46
47 enum {
48     NSApplicationPresentationDefault                    = 0,
49     NSApplicationPresentationAutoHideDock               = (1 <<  0),
50     NSApplicationPresentationHideDock                   = (1 <<  1),
51     NSApplicationPresentationAutoHideMenuBar            = (1 <<  2),
52     NSApplicationPresentationHideMenuBar                = (1 <<  3),
53     NSApplicationPresentationDisableAppleMenu           = (1 <<  4),
54     NSApplicationPresentationDisableProcessSwitching    = (1 <<  5),
55     NSApplicationPresentationDisableForceQuit           = (1 <<  6),
56     NSApplicationPresentationDisableSessionTermination  = (1 <<  7),
57     NSApplicationPresentationDisableHideApplication     = (1 <<  8),
58     NSApplicationPresentationDisableMenuBarTransparency = (1 <<  9)
59 };
60 typedef NSUInteger NSApplicationPresentationOptions;
61
62 #if defined( __LP64__) && !defined(__POWER__) /* Bug in the 10.5.sdk in 64bits */
63 extern OSErr UpdateSystemActivity(UInt8 activity);
64 #define UsrActivity 1
65 #endif
66
67 /* the following is just to fix warnings, not for implementation! */
68 @interface NSMenu (IntroducedInSnowLeopard)
69 - (void)removeAllItems;
70 @end
71
72 @interface NSApplication (IntroducedInSnowLeopard)
73 - (NSApplicationPresentationOptions)presentationOptions;
74 - (void)setPresentationOptions:(NSApplicationPresentationOptions)newOptions;
75 @end
76 #endif
77
78 #pragma mark -
79 #pragma Fixes for OS X Snow Leopard (10.6)
80
81 #ifndef MAC_OS_X_VERSION_10_7
82 enum {
83     NSWindowCollectionBehaviorFullScreenPrimary = 1 << 7,
84     NSWindowCollectionBehaviorFullScreenAuxiliary = 1 << 8
85 };
86
87 enum {
88     NSApplicationPresentationFullScreen                 = (1 << 10),
89     NSApplicationPresentationAutoHideToolbar            = (1 << 11)
90 };
91
92 /* the following is just to fix warnings, not for implementation! */
93 @interface NSWindow (IntroducedInLion)
94 - (void)setRestorable:(BOOL)b_value;
95 - (void)toggleFullScreen:(id)id_value;
96 - (void)windowWillEnterFullScreen:(NSNotification *)notification;
97 - (void)windowWillExitFullScreen:(NSNotification *)notification;
98 @end
99
100 @interface NSEvent (IntroducedInLion)
101 - (BOOL)isDirectionInvertedFromDevice;
102 @end
103
104 #endif