107 lines
4.1 KiB
Objective-C
107 lines
4.1 KiB
Objective-C
/*****************************************************************************
|
|
* CompatibilityFixes.h: MacOS X interface module
|
|
*****************************************************************************
|
|
* Copyright (C) 2011-2012 VLC authors and VideoLAN
|
|
* $Id: cc0d504301101cdd6f7630450c9303e88bfc6c57 $
|
|
*
|
|
* Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#pragma mark -
|
|
#pragma OS detection code
|
|
#define OSX_LEOPARD (NSAppKitVersionNumber < 1038 && NSAppKitVersionNumber >= 949)
|
|
#define OSX_SNOW_LEOPARD (NSAppKitVersionNumber < 1115 && NSAppKitVersionNumber >= 1038)
|
|
#define OSX_LION NSAppKitVersionNumber >= 1115.2
|
|
|
|
#pragma mark -
|
|
#pragma Fixes for OS X Leopard (10.5)
|
|
|
|
#ifndef MAC_OS_X_VERSION_10_6
|
|
|
|
@protocol NSAnimationDelegate <NSObject> @end
|
|
@protocol NSWindowDelegate <NSObject> @end
|
|
@protocol NSComboBoxDataSource <NSObject> @end
|
|
@protocol NSTextFieldDelegate <NSObject> @end
|
|
@protocol NSTableViewDataSource <NSObject> @end
|
|
@protocol NSOutlineViewDelegate <NSObject> @end
|
|
@protocol NSOutlineViewDataSource <NSObject> @end
|
|
@protocol NSToolbarDelegate <NSObject> @end
|
|
@protocol NSSplitViewDelegate <NSObject> @end
|
|
|
|
enum {
|
|
NSApplicationPresentationDefault = 0,
|
|
NSApplicationPresentationAutoHideDock = (1 << 0),
|
|
NSApplicationPresentationHideDock = (1 << 1),
|
|
NSApplicationPresentationAutoHideMenuBar = (1 << 2),
|
|
NSApplicationPresentationHideMenuBar = (1 << 3),
|
|
NSApplicationPresentationDisableAppleMenu = (1 << 4),
|
|
NSApplicationPresentationDisableProcessSwitching = (1 << 5),
|
|
NSApplicationPresentationDisableForceQuit = (1 << 6),
|
|
NSApplicationPresentationDisableSessionTermination = (1 << 7),
|
|
NSApplicationPresentationDisableHideApplication = (1 << 8),
|
|
NSApplicationPresentationDisableMenuBarTransparency = (1 << 9)
|
|
};
|
|
typedef NSUInteger NSApplicationPresentationOptions;
|
|
|
|
#if defined( __LP64__) && !defined(__POWER__) /* Bug in the 10.5.sdk in 64bits */
|
|
extern OSErr UpdateSystemActivity(UInt8 activity);
|
|
#define UsrActivity 1
|
|
#endif
|
|
|
|
/* the following is just to fix warnings, not for implementation! */
|
|
@interface NSMenu (IntroducedInSnowLeopard)
|
|
- (void)removeAllItems;
|
|
@end
|
|
|
|
@interface NSApplication (IntroducedInSnowLeopard)
|
|
- (NSApplicationPresentationOptions)presentationOptions;
|
|
- (void)setPresentationOptions:(NSApplicationPresentationOptions)newOptions;
|
|
- (NSApplicationPresentationOptions)currentSystemPresentationOptions;
|
|
@end
|
|
#endif
|
|
|
|
#pragma mark -
|
|
#pragma Fixes for OS X Snow Leopard (10.6)
|
|
|
|
#ifndef MAC_OS_X_VERSION_10_7
|
|
enum {
|
|
NSWindowCollectionBehaviorFullScreenPrimary = 1 << 7,
|
|
NSWindowCollectionBehaviorFullScreenAuxiliary = 1 << 8
|
|
};
|
|
|
|
enum {
|
|
NSApplicationPresentationFullScreen = (1 << 10),
|
|
NSApplicationPresentationAutoHideToolbar = (1 << 11)
|
|
};
|
|
|
|
/* the following is just to fix warnings, not for implementation! */
|
|
@interface NSWindow (IntroducedInLion)
|
|
- (void)setRestorable:(BOOL)b_value;
|
|
- (void)toggleFullScreen:(id)id_value;
|
|
- (void)windowWillEnterFullScreen:(NSNotification *)notification;
|
|
- (void)windowDidEnterFullScreen:(NSNotification *)notification;
|
|
- (void)windowWillExitFullScreen:(NSNotification *)notification;
|
|
@end
|
|
|
|
@interface NSEvent (IntroducedInLion)
|
|
- (BOOL)isDirectionInvertedFromDevice;
|
|
@end
|
|
|
|
#endif
|