Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 1,167 changed files with 5,553 additions and 1,246 deletions.
Expand Up @@ -3,14 +3,14 @@
<plist version="1.0">
<dict>
<key>ProductBuildVersion</key>
<string>14A383</string>
<string>14D125</string>
<key>ProductCopyright</key>
<string>1983-2014 Apple Inc.</string>
<string>1983-2015 Apple Inc.</string>
<key>ProductName</key>
<string>Mac OS X</string>
<key>ProductUserVisibleVersion</key>
<string>10.10</string>
<string>10.10.3</string>
<key>ProductVersion</key>
<string>10.10</string>
<string>10.10.3</string>
</dict>
</plist>
Binary file not shown.
@@ -1,4 +1,4 @@
framework module AGL [system] {
framework module AGL [extern_c] [system] {
header "agl.h"
export *

Expand All @@ -22,3 +22,4 @@ framework module AGL [system] {
export *
}
}

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Expand Up @@ -3,7 +3,7 @@
Contains: Basic Algebraic Operations for AltiVec
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: � 1999-2014 by Apple Computer, Inc., all rights reserved.
Expand Down
Expand Up @@ -3,7 +3,7 @@
Contains: Algebraic and logical operations on large operands.
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: © 1999-2014 by Apple Computer, Inc., all rights reserved.
Expand Down
Expand Up @@ -3,7 +3,7 @@
Contains: AltiVec DSP Interfaces
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: � 2000-2014 by Apple Inc., all rights reserved.
Expand Down Expand Up @@ -222,7 +222,7 @@ extern "C" {
vDSP_Version0 is a major version number.
vDSP_Version1 is a minor version number.
*/
#define vDSP_Version0 512
#define vDSP_Version0 516
#define vDSP_Version1 0


Expand Down
Expand Up @@ -3,7 +3,7 @@
Contains: Master include for vecLib framework
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: © 2000-2014 by Apple Computer, Inc., all rights reserved.
Expand Down
@@ -1,5 +1,5 @@
/*
vForce.h (from vecLib-512.0)
vForce.h (from vecLib-516.0)
Copyright 1999-2014 Apple Inc. All rights reserved.
@APPLE_LICENSE_HEADER_START@
Expand Down
Expand Up @@ -3,7 +3,7 @@
Contains: Master include for vecLib framework
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: 2000-2014 by Apple Computer, Inc., all rights reserved.
Expand Down
Expand Up @@ -3,7 +3,7 @@
Contains: Master include for vecLib framework
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: © 2000-2014 by Apple Inc., all rights reserved.
Expand Down
Expand Up @@ -3,7 +3,7 @@
Contains: vector and matrix functions for AltiVec
Version: vecLib-512.0
Version: vecLib-516.0
Copyright: © 1999-2014 by Apple Computer, Inc., all rights reserved.
Expand Down
@@ -1,4 +1,4 @@
/* vfp.h (from vecLib-512.0)
/* vfp.h (from vecLib-516.0)
* Copyright 1999-2014 Apple Inc. All rights reserved.
*
* Overview:
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,17 @@
framework module Accelerate {
umbrella header "Accelerate.h"
export *
module * { export * }

framework module vImage [extern_c] [system] {
umbrella header "vImage.h"
export *
module * { export * }
}
framework module vecLib {
umbrella header "vecLib.h"
export *
module * { export * }
}
}

Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
framework module AddressBook [system] {
framework module AddressBook [extern_c] [system] {
umbrella header "AddressBook.h"

export *
Expand Down
Binary file not shown.
Expand Up @@ -49,7 +49,8 @@ APPKIT_EXTERN NSString *NSAnimationProgressMark; // NSNumber(float) with NSAnima
unsigned int delegateAnimationDidReachProgressMark:1;
unsigned int animating:1;
unsigned int blocking:1;
unsigned int reserved:25;
unsigned int sendProgressAllTheTime:1;
unsigned int reserved:24;
} _aFlags;
struct __aSettings {
unsigned int animationCurve:8;
Expand Down
Expand Up @@ -44,6 +44,7 @@ APPKIT_EXTERN const double NSAppKitVersionNumber;
#define NSAppKitVersionNumber10_7_4 1138.47
#define NSAppKitVersionNumber10_8 1187
#define NSAppKitVersionNumber10_9 1265
#define NSAppKitVersionNumber10_10 1343


/* Modes passed to NSRunLoop */
Expand Down
Expand Up @@ -429,7 +429,7 @@ APPKIT_EXTERN NSString *NSBrowserColumnConfigurationDidChangeNotification;
*/

/* Optional for browsers with resize type NSBrowserNoColumnResizing, and NSBrowserUserColumnResizing.
This method is used for both constraining column resize, and determining a columns initial size. If 'forUserResize' is NO, this method should return the initial width for a newly added column. If 'forUserResize' is YES, this method can be used to constrain resizing on a per-column basis. (Currently per-column constraining is not implemented, so forUserResize will always be NO).
This method is used for both constraining column resize, and determining a columns initial size. If 'forUserResize' is NO, this method should return the initial width for a newly added column. If 'forUserResize' is YES, this method can be used to constrain resizing on a per-column basis. (Currently per-column constraining is only implemented for single column resize).
*/
- (CGFloat)browser:(NSBrowser *)browser shouldSizeColumn:(NSInteger)columnIndex forUserResize:(BOOL)forUserResize toWidth:(CGFloat)suggestedWidth;

Expand Down
Expand Up @@ -29,6 +29,9 @@
- (void)highlight:(BOOL)flag;
- (BOOL)performKeyEquivalent:(NSEvent *)key;

@property (getter=isSpringLoaded) BOOL springLoaded NS_AVAILABLE_MAC(10_10_3); // sends action on deep-press or extended hover while dragging. Defaults to NO.
@property NSInteger maxAcceleratorLevel NS_AVAILABLE_MAC(10_10_3); // Configures the maximum allowed level for an NSMultiLevelAcceleratorButton, allowed values range from [1,5]. Defaults to 2.

@end

@interface NSButton(NSButtonAttributedStringMethods)
Expand Down
Expand Up @@ -18,6 +18,9 @@ typedef NS_ENUM(NSUInteger, NSButtonType) {
NSMomentaryChangeButton = 5,
NSOnOffButton = 6,
NSMomentaryPushInButton = 7, // was NSMomentaryLight
NSAcceleratorButton NS_ENUM_AVAILABLE_MAC(10_10_3) = 8,
NSMultiLevelAcceleratorButton NS_ENUM_AVAILABLE_MAC(10_10_3) = 9,

/* These constants were accidentally reversed so that NSMomentaryPushButton lit and
NSMomentaryLight pushed. These names are now deprecated */
NSMomentaryPushButton NS_ENUM_DEPRECATED_MAC(10_0, 10_9) = 0, // NSMomentaryLightButton should be used instead
Expand Down Expand Up @@ -159,6 +162,7 @@ typedef struct __BCFlags2 {
- (void)drawImage:(NSImage*)image withFrame:(NSRect)frame inView:(NSView*)controlView;
- (NSRect)drawTitle:(NSAttributedString*)title withFrame:(NSRect)frame inView:(NSView*)controlView;
- (void)drawBezelWithFrame:(NSRect)frame inView:(NSView*)controlView;

@end

// NSGradientType :
Expand Down
Expand Up @@ -18,8 +18,8 @@ NS_CLASS_AVAILABLE(10_10, NA)
NSInteger _currentButtonCount;
NSInteger _activeButtonCount;
NSInteger _currentClickCount;
id _reserved0;
#ifndef __OBJC2__
NSInteger _reserved0;
NSInteger _reserved1;
#endif
}
Expand Down
Expand Up @@ -51,7 +51,11 @@ typedef NS_ENUM(NSUInteger, NSEventType) { /* various types of events */
#if __LP64__
NSEventTypeSmartMagnify NS_ENUM_AVAILABLE_MAC(10_8) = 32,
#endif
NSEventTypeQuickLook NS_ENUM_AVAILABLE_MAC(10_8) = 33
NSEventTypeQuickLook NS_ENUM_AVAILABLE_MAC(10_8) = 33,

#if __LP64__
NSEventTypePressure NS_ENUM_AVAILABLE_MAC(10_10_3) = 34
#endif
};


Expand Down Expand Up @@ -92,6 +96,7 @@ typedef NS_OPTIONS(unsigned long long, NSEventMask) { /* masks for the types of
/* Note: You can only use these event masks on 64 bit. In other words, you cannot setup a local, nor global, event monitor for these event types on 32 bit. Also, you cannot search the event que for them (nextEventMatchingMask:...) on 32 bit.
*/
NSEventMaskSmartMagnify NS_ENUM_AVAILABLE_MAC(10_8) = 1ULL << NSEventTypeSmartMagnify,
NSEventMaskPressure NS_ENUM_AVAILABLE_MAC(10_10_3) = 1ULL << NSEventTypePressure,
#endif

NSAnyEventMask = NSUIntegerMax
Expand Down Expand Up @@ -277,7 +282,7 @@ typedef NS_ENUM(short, NSEventSubtype) {
/* these messages are valid for all mouse down/up/drag and enter/exit events */
@property (readonly) NSInteger eventNumber;

/* -pressure is valid for all mouse down/up/drag events, and is also valid for NSTabletPoint events on 10.4 or later */
/* -pressure is valid for all mouse down/up/drag events, and is also valid for NSTabletPoint events on 10.4 or later and NSEventTypePressure on 10.10.3 or later */
@property (readonly) float pressure;
/* -locationInWindow is valid for all mouse-related events */
@property (readonly) NSPoint locationInWindow;
Expand Down Expand Up @@ -405,6 +410,19 @@ typedef NS_ENUM(short, NSEventSubtype) {
*/
@property (readonly) NSEventPhase phase NS_AVAILABLE_MAC(10_7);

/* This message is valid for NSEventTypePressure events. Pressure gesture events go through multiple stages.
*/
@property (readonly) NSInteger stage NS_AVAILABLE_MAC(10_10_3);

/* This message is valid for NSEventTypePressure events. Positive stageTransition describes approaching the next stage of the pressure gesture. Negative stageTransition describes approaching release of the current stage.
*/
@property (readonly) CGFloat stageTransition NS_AVAILABLE_MAC(10_10_3);

/* This message is valid for Mouse events. The event mask describing the various events that you may also get during this event sequence. Useful for determining if the input device issuing this mouse event can also simultaneously issue NSEventTypePressure events.
*/
@property (readonly) NSEventMask associatedEventsMask NS_AVAILABLE_MAC(10_10_3);


/* Returns the user's preference about using gesture scrolls as a way to track fluid swipes. This value is determined by the Mouse / Trackpad preference panel for the current user. Generally, NSScrollView will check this for you. However, if your app is not using an NSScrollView, or your NSResponder can receive scrollWheel messages without first being sent to an NSScrollView, then you should check this preference before calling -trackSwipeEventWithOptions:dampenAmountThresholdMin:max:usingHandler:
*/
+ (BOOL)isSwipeTrackingFromScrollEventsEnabled NS_AVAILABLE_MAC(10_7);
Expand Down
Expand Up @@ -85,8 +85,10 @@ NS_AUTOMATED_REFCOUNT_WEAK_UNAVAILABLE
id _fontEffectsBox;
int _sizeStyle;

NSInteger _mode;

#if !__LP64__
id _fpUnused[72];
id _fpUnused[71];
#endif /* !__LP64__ */
}

Expand Down
Expand Up @@ -47,9 +47,7 @@ NS_CLASS_AVAILABLE_MAC(10_10)
NSMutableSet *_dynamicFailureDependents;
id _failureMap;

#ifndef __OBJC2__
id _reserved;
#endif
}

/* valid action method signatures:
Expand Down Expand Up @@ -156,5 +154,6 @@ NS_CLASS_AVAILABLE_MAC(10_10)
- (void)tabletPoint:(NSEvent *)event;
- (void)magnifyWithEvent:(NSEvent *)event;
- (void)rotateWithEvent:(NSEvent *)event;
- (void)pressureChangeWithEvent:(NSEvent *)event NS_AVAILABLE_MAC(10_10_3);

@end
Expand Up @@ -53,7 +53,8 @@
unsigned int indent:4;
unsigned int keShareMode:3;
unsigned int state:2;
unsigned int RESERVED1:2;
unsigned int destructive:1;
unsigned int RESERVED1:1;
unsigned int limitedView:1;
unsigned int nextItemIsAlternate:1;
unsigned int blockKE:1;
Expand Down
Expand Up @@ -33,7 +33,7 @@ typedef struct __OvFlags {
unsigned int delegateWillDisplayOutlineCell:1;
unsigned int subclassRowForItem:1;
unsigned int selectionAdjustmentDisabled:1;
unsigned int autoExpandFlashState:1;
unsigned int unused:1;
unsigned int animateExpandAndCollapse:1;
unsigned int delegateHeightOfRowByItem:1;
unsigned int delayRowEntryFreeDisabled:1;
Expand All @@ -46,8 +46,8 @@ typedef struct __OvFlags {
unsigned int delegateAutoExpandItem:1;
unsigned int delegateAutoCollapseItem:1;
unsigned int delegateShouldAutoExpandItem:1;
unsigned int flashingEntireRow:1;
unsigned int flashingOutlineCell:1;
unsigned int unused2:1;
unsigned int _isSpringLoadingFlashing:1;
unsigned int dontRedisplayOnFrameChange:1;
unsigned int allowAutomaticAnimations:1;
unsigned int dataSourceObjectValueByItem:1;
Expand All @@ -57,8 +57,8 @@ typedef struct __OvFlags {
unsigned int dataSourceObjectValueByItem:1;
unsigned int allowAutomaticAnimations:1;
unsigned int dontRedisplayOnFrameChange:1;
unsigned int flashingOutlineCell:1;
unsigned int flashingEntireRow:1;
unsigned int _isSpringLoadingFlashing:1;
unsigned int unused2:1;
unsigned int delegateShouldAutoExpandItem:1;
unsigned int delegateAutoCollapseItem:1;
unsigned int delegateAutoExpandItem:1;
Expand All @@ -71,7 +71,7 @@ typedef struct __OvFlags {
unsigned int delayRowEntryFreeDisabled:1;
unsigned int delegateHeightOfRowByItem:1;
unsigned int animateExpandAndCollapse:1;
unsigned int autoExpandFlashState:1;
unsigned int unused:1;
unsigned int selectionAdjustmentDisabled:1;
unsigned int subclassRowForItem:1;
unsigned int delegateWillDisplayOutlineCell:1;
Expand Down
Expand Up @@ -19,10 +19,10 @@ NS_CLASS_AVAILABLE(10_10, NA)
CGFloat private0;
CGFloat private1;
struct __pgrFlags {
unsigned int reserved:32;
unsigned int reserved:32;
} __pgrFlags;
id _reserved0;
#ifndef __OBJC2__
NSInteger _reserved0;
NSInteger _reserved1;
#endif
}
Expand Down
Expand Up @@ -9,7 +9,7 @@
#import <AppKit/NSGestureRecognizer.h>

NS_CLASS_AVAILABLE(10_10, NA)
@interface NSPressGestureRecognizer : NSGestureRecognizer {
@interface NSPressGestureRecognizer : NSGestureRecognizer <NSCoding> {
@private
NSPoint _location;
NSUInteger _buttonMask;
Expand Down
Expand Up @@ -73,6 +73,8 @@
/* Perform a Quick Look on the content at location in the event. If there are no Quick Look items at the location, call super. Also, see quickLookPreviewItems: further below. */
- (void)quickLookWithEvent:(NSEvent *)event NS_AVAILABLE_MAC(10_8);

- (void)pressureChangeWithEvent:(NSEvent *)event NS_AVAILABLE_MAC(10_10_3);

- (void)noResponderFor:(SEL)eventSelector;
@property (readonly) BOOL acceptsFirstResponder;
- (BOOL)becomeFirstResponder;
Expand Down
Expand Up @@ -9,13 +9,6 @@
#import <AppKit/NSActionCell.h>
#import <AppKit/NSSegmentedControl.h>


typedef NS_ENUM(NSUInteger, NSSegmentSwitchTracking) {
NSSegmentSwitchTrackingSelectOne = 0, // only one button can be selected
NSSegmentSwitchTrackingSelectAny = 1, // any button can be selected
NSSegmentSwitchTrackingMomentary = 2 // only selected while tracking
};

@class NSMutableArray;

@interface NSSegmentedCell : NSActionCell {
Expand Down

0 comments on commit 9f14425

Please sign in to comment.