24 changed files with 119 additions and 62 deletions
@ -0,0 +1,76 @@ |
|||
/*****************************************************************************
|
|||
* sdkfixes.h: MacOS X interface module |
|||
***************************************************************************** |
|||
* Copyright (C) 2011 VideoLAN |
|||
* $Id$ |
|||
* |
|||
* 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 |
|||
|
|||
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) |
|||
}; |
|||
#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) |
|||
}; |
|||
|
|||
#endif |
|||
Loading…
Reference in new issue