1 /*****************************************************************************
2 * CompatibilityFixes.h: MacOS X interface module
3 *****************************************************************************
4 * Copyright (C) 2011-2012 VLC authors and VideoLAN
7 * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
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.
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.
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 *****************************************************************************/
24 #import <Cocoa/Cocoa.h>
27 #pragma OS detection code
28 #define OSX_LION (NSAppKitVersionNumber < 1162 && NSAppKitVersionNumber >= 1115.2)
29 #define OSX_MOUNTAIN_LION (NSAppKitVersionNumber < 1244 && NSAppKitVersionNumber >= 1162)
30 #define OSX_MAVERICKS (NSAppKitVersionNumber < 1334 && NSAppKitVersionNumber >= 1244)
31 #define OSX_YOSEMITE (NSAppKitVersionNumber < 1404 && NSAppKitVersionNumber >= 1334)
32 #define OSX_EL_CAPITAN (NSAppKitVersionNumber >= 1404 && NSAppKitVersionNumber < 1485)
33 #define OSX_SIERRA (NSAppKitVersionNumber >= 1485)
36 #ifndef MAC_OS_X_VERSION_10_12
38 typedef NS_OPTIONS(NSUInteger, NSStatusItemBehavior) {
40 NSStatusItemBehaviorRemovalAllowed = (1 << 1),
41 NSStatusItemBehaviorTerminationOnRemoval = (1 << 2),
44 @interface NSStatusItem(IntroducedInSierra)
46 @property (assign) NSStatusItemBehavior behavior;
47 @property (assign, getter=isVisible) BOOL visible;
48 @property (null_resettable, copy) NSString *autosaveName;