mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-18 17:38:28 +02:00
* automatically comment out methods that take blocks as parameters or return
them * handle inline protocol definitions in parameter lists (replace id<protocol> with protocol, and class<protocol[,protocol,..]> with class), and made some fixes to this support for fields (many "id" fields/parameters are now protocols) * fix from Phil Hess for parsing some read-only properties * also translate ..._BUT_DEPRECATED macros (without any "_IN_VERSION..." coming after it) into "deprecated" modifiers * several fixes for handling deprecation macros (in several cases, half the macro was mangled into the name of the symbol itself) * default now to parsing the iOS 4.2 SDK headers, and fixed passing an alternate SDK on the command line to make-ios-headers.sh * updated Cocoa headers as parsed by the new parser, and with the headers from Mac OS X 10.6.5/Safari 5.0.2 (contains some WebKit updates) git-svn-id: trunk@16908 -
This commit is contained in:
parent
9e3a0282ce
commit
d6e7023038
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -1579,7 +1579,8 @@ packages/cocoaint/utils/make-cocoa-headers.sh svneol=native#text/plain
|
||||
packages/cocoaint/utils/make-ios-headers.sh svneol=native#text/plain
|
||||
packages/cocoaint/utils/parser.php svneol=native#text/plain
|
||||
packages/cocoaint/utils/patches/cocoa-coredata-webkit.patch svneol=native#text/plain
|
||||
packages/cocoaint/utils/patches/uikit.patch svneol=native#text/plain
|
||||
packages/cocoaint/utils/patches/uikit-3.2.patch svneol=native#text/plain
|
||||
packages/cocoaint/utils/patches/uikit-4.2.patch svneol=native#text/plain
|
||||
packages/cocoaint/utils/source/objp.php svneol=native#text/plain
|
||||
packages/cocoaint/utils/source/objp_base.php svneol=native#text/plain
|
||||
packages/cocoaint/utils/source/utilities.php svneol=native#text/plain
|
||||
|
@ -204,6 +204,7 @@ type
|
||||
DOMCSSStyleDeclaration = objcclass external;
|
||||
DOMElement = objcclass external;
|
||||
DOMAttr = objcclass external;
|
||||
DOMBlob = objcclass external;
|
||||
DOMCDATASection = objcclass external;
|
||||
DOMCharacterData = objcclass external;
|
||||
DOMComment = objcclass external;
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSATSTypesetter.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAccessibility.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -321,9 +321,9 @@ var
|
||||
NSAccessibilityRatingIndicatorSubrole: NSString; cvar; external;
|
||||
NSAccessibilityContentListSubrole: NSString; cvar; external;
|
||||
NSAccessibilityDefinitionListSubrole: NSString; cvar; external;
|
||||
NSAccessibilitySortButtonRole: NSString; cvar; external;
|
||||
NSAccessibilityHorizontialUnitsAttribute_BUT_DEPRECATED: NSString; cvar; external;
|
||||
NSAccessibilityHorizontialUnitDescriptionAttribute_BUT_DEPRECATED: NSString; cvar; external;
|
||||
NSAccessibilitySortButtonRole: NSString deprecated 'in Mac OS X 10.6 and later'; cvar; external;
|
||||
NSAccessibilityHorizontialUnitsAttribute: NSString deprecated 'in Mac OS X 10.6 and later'; cvar; external;
|
||||
NSAccessibilityHorizontialUnitDescriptionAttribute: NSString deprecated 'in Mac OS X 10.6 and later'; cvar; external;
|
||||
|
||||
{$endif}
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSActionCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAffineTransform.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAlert.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -110,8 +110,8 @@ type
|
||||
function helpAnchor: NSString; message 'helpAnchor';
|
||||
procedure setAlertStyle(style: NSAlertStyle); message 'setAlertStyle:';
|
||||
function alertStyle: NSAlertStyle; message 'alertStyle';
|
||||
procedure setDelegate(delegate_: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(delegate_: NSAlertDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSAlertDelegateProtocol; message 'delegate';
|
||||
procedure setShowsSuppressionButton(flag: Boolean); message 'setShowsSuppressionButton:';
|
||||
function showsSuppressionButton: Boolean; message 'showsSuppressionButton';
|
||||
function suppressionButton: NSButton; message 'suppressionButton';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAnimation.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -138,8 +138,8 @@ var
|
||||
procedure setAnimationCurve(curve: NSAnimationCurve); message 'setAnimationCurve:';
|
||||
function animationCurve: NSAnimationCurve; message 'animationCurve';
|
||||
function currentValue: single; message 'currentValue';
|
||||
procedure setDelegate(delegate_: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(delegate_: NSAnimationDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSAnimationDelegateProtocol; message 'delegate';
|
||||
function progressMarks: NSArray; message 'progressMarks';
|
||||
procedure setProgressMarks(progressMarks_: NSArray); message 'setProgressMarks:';
|
||||
procedure addProgressMark(progressMark: NSAnimationProgress); message 'addProgressMark:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAnimationContext.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAppleScriptExtensions.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSApplication.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -221,8 +221,8 @@ var
|
||||
|
||||
public
|
||||
class function sharedApplication: NSApplication; message 'sharedApplication';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: NSApplicationDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSApplicationDelegateProtocol; message 'delegate';
|
||||
function context: NSGraphicsContext; message 'context';
|
||||
procedure hide(sender: id); message 'hide:';
|
||||
procedure unhide(sender: id); message 'unhide:';
|
||||
@ -266,7 +266,7 @@ var
|
||||
procedure updateWindows; message 'updateWindows';
|
||||
procedure setMainMenu(aMenu: NSMenu); message 'setMainMenu:';
|
||||
function mainMenu: NSMenu; message 'mainMenu';
|
||||
procedure setHelpMenu(helpMenu: NSMenu); message 'setHelpMenu:';
|
||||
procedure setHelpMenu(helpMenu_: NSMenu); message 'setHelpMenu:';
|
||||
function helpMenu: NSMenu; message 'helpMenu';
|
||||
procedure setApplicationIconImage(image: NSImage); message 'setApplicationIconImage:';
|
||||
function applicationIconImage: NSImage; message 'applicationIconImage';
|
||||
@ -288,7 +288,7 @@ var
|
||||
function currentSystemPresentationOptions: NSApplicationPresentationOptions; message 'currentSystemPresentationOptions';
|
||||
|
||||
{ Adopted Protocols }
|
||||
function validateUserInterfaceItem(anItem: id): Boolean;
|
||||
function validateUserInterfaceItem(anItem: NSValidatedUserInterfaceItemProtocol): Boolean;
|
||||
end;
|
||||
|
||||
{ NSWindowsMenuCategory }
|
||||
@ -342,7 +342,7 @@ var
|
||||
NSDeprecated_NSApplicationCategory = objccategory external name 'NSDeprecated' (NSApplication)
|
||||
function runModalForWindow_relativeToWindow(theWindow: NSWindow; docWindow: NSWindow): NSInteger; message 'runModalForWindow:relativeToWindow:'; deprecated 'in Mac OS X 10 and later';
|
||||
function beginModalSessionForWindow_relativeToWindow(theWindow: NSWindow; docWindow: NSWindow): NSModalSession; message 'beginModalSessionForWindow:relativeToWindow:'; deprecated 'in Mac OS X 10 and later';
|
||||
procedure application_printFiles(sender: NSApplication; filenames: NSArray); message 'application:printFiles:';
|
||||
procedure application_printFiles(sender: NSApplication; filenames: NSArray); message 'application:printFiles:'; deprecated 'in Mac OS X 10.4 and later';
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSApplicationScripting.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSArrayController.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSAttributedString.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -240,10 +240,10 @@ var
|
||||
|
||||
{ NSDeprecatedKitAdditionsCategory }
|
||||
NSDeprecatedKitAdditionsCategory = objccategory external (NSAttributedString)
|
||||
class function textFileTypes: NSArray; message 'textFileTypes';
|
||||
class function textPasteboardTypes: NSArray; message 'textPasteboardTypes';
|
||||
class function textUnfilteredFileTypes: NSArray; message 'textUnfilteredFileTypes';
|
||||
class function textUnfilteredPasteboardTypes: NSArray; message 'textUnfilteredPasteboardTypes';
|
||||
class function textFileTypes: NSArray; message 'textFileTypes'; deprecated 'in Mac OS X 10.5 and later';
|
||||
class function textPasteboardTypes: NSArray; message 'textPasteboardTypes'; deprecated 'in Mac OS X 10.5 and later';
|
||||
class function textUnfilteredFileTypes: NSArray; message 'textUnfilteredFileTypes'; deprecated 'in Mac OS X 10.5 and later';
|
||||
class function textUnfilteredPasteboardTypes: NSArray; message 'textUnfilteredPasteboardTypes'; deprecated 'in Mac OS X 10.5 and later';
|
||||
end;
|
||||
|
||||
{ NSMutableAttributedStringKitAdditionsCategory }
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSBezierPath.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSBitmapImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSBox.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSBrowser.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -167,8 +167,8 @@ var
|
||||
procedure setCellClass(factoryId: Pobjc_class); message 'setCellClass:';
|
||||
procedure setCellPrototype(aCell: NSCell); message 'setCellPrototype:';
|
||||
function cellPrototype: id; message 'cellPrototype';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: NSBrowserDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSBrowserDelegateProtocol; message 'delegate';
|
||||
procedure setReusesColumns(flag: Boolean); message 'setReusesColumns:';
|
||||
function reusesColumns: Boolean; message 'reusesColumns';
|
||||
procedure setHasHorizontalScroller(flag: Boolean); message 'setHasHorizontalScroller:';
|
||||
@ -249,7 +249,7 @@ var
|
||||
function getRow_column_forPoint(row: NSIntegerPtr; column: NSIntegerPtr; point: NSPoint): Boolean; message 'getRow:column:forPoint:';
|
||||
function columnWidthForColumnContentWidth(columnContentWidth: CGFloat): CGFloat; message 'columnWidthForColumnContentWidth:';
|
||||
function columnContentWidthForColumnWidth(columnWidth: CGFloat): CGFloat; message 'columnContentWidthForColumnWidth:';
|
||||
procedure setColumnResizingType(columnResizingType: NSBrowserColumnResizingType); message 'setColumnResizingType:';
|
||||
procedure setColumnResizingType(columnResizingType_: NSBrowserColumnResizingType); message 'setColumnResizingType:';
|
||||
function columnResizingType: NSBrowserColumnResizingType; message 'columnResizingType';
|
||||
procedure setPrefersAllColumnUserResizing(prefersAllColumnResizing: Boolean); message 'setPrefersAllColumnUserResizing:';
|
||||
function prefersAllColumnUserResizing: Boolean; message 'prefersAllColumnUserResizing';
|
||||
@ -316,8 +316,8 @@ var
|
||||
function browser_namesOfPromisedFilesDroppedAtDestination_forDraggedRowsWithIndexes_inColumn(browser: NSBrowser; dropDestination: NSURL; rowIndexes: NSIndexSet; column: NSInteger): NSArray; message 'browser:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes:inColumn:';
|
||||
function browser_canDragRowsWithIndexes_inColumn_withEvent(browser: NSBrowser; rowIndexes: NSIndexSet; column: NSInteger; event: NSEvent): Boolean; message 'browser:canDragRowsWithIndexes:inColumn:withEvent:';
|
||||
function browser_draggingImageForRowsWithIndexes_inColumn_withEvent_offset(browser: NSBrowser; rowIndexes: NSIndexSet; column: NSInteger; event: NSEvent; dragImageOffset: NSPointPointer): NSImage; message 'browser:draggingImageForRowsWithIndexes:inColumn:withEvent:offset:';
|
||||
function browser_validateDrop_proposedRow_column_dropOperation(browser: NSBrowser; info: id; row: NSIntegerPtr; column: NSIntegerPtr; dropOperation: NSBrowserDropOperationPtr): NSDragOperation; message 'browser:validateDrop:proposedRow:column:dropOperation:';
|
||||
function browser_acceptDrop_atRow_column_dropOperation(browser: NSBrowser; info: id; row: NSInteger; column: NSInteger; dropOperation: NSBrowserDropOperation): Boolean; message 'browser:acceptDrop:atRow:column:dropOperation:';
|
||||
function browser_validateDrop_proposedRow_column_dropOperation(browser: NSBrowser; info: NSDraggingInfoProtocol; row: NSIntegerPtr; column: NSIntegerPtr; dropOperation: NSBrowserDropOperationPtr): NSDragOperation; message 'browser:validateDrop:proposedRow:column:dropOperation:';
|
||||
function browser_acceptDrop_atRow_column_dropOperation(browser: NSBrowser; info: NSDraggingInfoProtocol; row: NSInteger; column: NSInteger; dropOperation: NSBrowserDropOperation): Boolean; message 'browser:acceptDrop:atRow:column:dropOperation:';
|
||||
function browser_typeSelectStringForRow_inColumn(browser: NSBrowser; row: NSInteger; column: NSInteger): NSString; message 'browser:typeSelectStringForRow:inColumn:';
|
||||
function browser_shouldTypeSelectForEvent_withCurrentSearchString(browser: NSBrowser; event: NSEvent; searchString: NSString): Boolean; message 'browser:shouldTypeSelectForEvent:withCurrentSearchString:';
|
||||
function browser_nextTypeSelectMatchFromRow_toRow_inColumn_forString(browser: NSBrowser; startRow: NSInteger; endRow: NSInteger; column: NSInteger; searchString: NSString): NSInteger; message 'browser:nextTypeSelectMatchFromRow:toRow:inColumn:forString:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSBrowserCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSButton.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -72,7 +72,7 @@
|
||||
function performKeyEquivalent(key: NSEvent): Boolean; message 'performKeyEquivalent:';
|
||||
|
||||
{ Adopted Protocols }
|
||||
function validateUserInterfaceItem(anItem: id): Boolean;
|
||||
function validateUserInterfaceItem(anItem: NSValidatedUserInterfaceItemProtocol): Boolean;
|
||||
end;
|
||||
|
||||
{ NSKeyboardUI_NSButtonCategory }
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSButtonCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSCIImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSCachedImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -49,10 +49,10 @@
|
||||
_cache: Pointer; {garbage collector: __strong }
|
||||
|
||||
public
|
||||
function initWithWindow_rect(win: NSWindow; rect: NSRect): id; message 'initWithWindow:rect:';
|
||||
function initWithSize_depth_separate_alpha(size_: NSSize; depth: NSWindowDepth; flag: Boolean; alpha: Boolean): id; message 'initWithSize:depth:separate:alpha:';
|
||||
function window: NSWindow; message 'window';
|
||||
function rect: NSRect; message 'rect';
|
||||
function initWithWindow_rect(win: NSWindow; rect_: NSRect): id; message 'initWithWindow:rect:'; deprecated 'in Mac OS X 10.6 and later';
|
||||
function initWithSize_depth_separate_alpha(size_: NSSize; depth: NSWindowDepth; flag: Boolean; alpha: Boolean): id; message 'initWithSize:depth:separate:alpha:'; deprecated 'in Mac OS X 10.6 and later';
|
||||
function window: NSWindow; message 'window'; deprecated 'in Mac OS X 10.6 and later';
|
||||
function rect: NSRect; message 'rect'; deprecated 'in Mac OS X 10.6 and later';
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -273,7 +273,7 @@ var
|
||||
procedure setFormatter(newFormatter: NSFormatter); message 'setFormatter:';
|
||||
function formatter: id; message 'formatter';
|
||||
function objectValue: id; message 'objectValue';
|
||||
procedure setObjectValue(obj: id); message 'setObjectValue:';
|
||||
procedure setObjectValue(obj: NSCopyingProtocol); message 'setObjectValue:';
|
||||
function hasValidObjectValue: Boolean; message 'hasValidObjectValue';
|
||||
function stringValue: NSString; message 'stringValue';
|
||||
procedure setStringValue(aString: NSString); message 'setStringValue:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSClipView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSCollectionView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -135,8 +135,8 @@ const
|
||||
_reserved: array[0..15] of Pointer;
|
||||
|
||||
public
|
||||
procedure setDelegate(aDelegate: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(aDelegate: NSCollectionViewDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSCollectionViewDelegateProtocol; message 'delegate';
|
||||
function isFirstResponder: Boolean; message 'isFirstResponder';
|
||||
procedure setContent(content_: NSArray); message 'setContent:';
|
||||
function content: NSArray; message 'content';
|
||||
@ -177,8 +177,8 @@ const
|
||||
function collectionView_writeItemsAtIndexes_toPasteboard(collectionView: NSCollectionView; indexes: NSIndexSet; pasteboard: NSPasteboard): Boolean; message 'collectionView:writeItemsAtIndexes:toPasteboard:';
|
||||
function collectionView_namesOfPromisedFilesDroppedAtDestination_forDraggedItemsAtIndexes(collectionView: NSCollectionView; dropURL: NSURL; indexes: NSIndexSet): NSArray; message 'collectionView:namesOfPromisedFilesDroppedAtDestination:forDraggedItemsAtIndexes:';
|
||||
function collectionView_draggingImageForItemsAtIndexes_withEvent_offset(collectionView: NSCollectionView; indexes: NSIndexSet; event: NSEvent; dragImageOffset: NSPointPointer): NSImage; message 'collectionView:draggingImageForItemsAtIndexes:withEvent:offset:';
|
||||
function collectionView_validateDrop_proposedIndex_dropOperation(collectionView: NSCollectionView; draggingInfo: id; proposedDropIndex: NSIntegerPtr; proposedDropOperation: NSCollectionViewDropOperationPtr): NSDragOperation; message 'collectionView:validateDrop:proposedIndex:dropOperation:';
|
||||
function collectionView_acceptDrop_index_dropOperation(collectionView: NSCollectionView; draggingInfo: id; index: NSInteger; dropOperation: NSCollectionViewDropOperation): Boolean; message 'collectionView:acceptDrop:index:dropOperation:';
|
||||
function collectionView_validateDrop_proposedIndex_dropOperation(collectionView: NSCollectionView; draggingInfo: NSDraggingInfoProtocol; proposedDropIndex: NSIntegerPtr; proposedDropOperation: NSCollectionViewDropOperationPtr): NSDragOperation; message 'collectionView:validateDrop:proposedIndex:dropOperation:';
|
||||
function collectionView_acceptDrop_index_dropOperation(collectionView: NSCollectionView; draggingInfo: NSDraggingInfoProtocol; index: NSInteger; dropOperation: NSCollectionViewDropOperation): Boolean; message 'collectionView:acceptDrop:index:dropOperation:';
|
||||
end;
|
||||
{$endif}
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColor.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColorList.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColorPanel.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColorPicker.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColorPicking.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColorSpace.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -83,7 +83,7 @@ type
|
||||
function ICCProfileData: NSData; message 'ICCProfileData';
|
||||
function initWithColorSyncProfile(prof: Pointer): id; message 'initWithColorSyncProfile:';
|
||||
function colorSyncProfile: Pointer; message 'colorSyncProfile';
|
||||
function initWithCGColorSpace(cgColorSpace: CGColorSpaceRef): id; message 'initWithCGColorSpace:';
|
||||
function initWithCGColorSpace(cgColorSpace_: CGColorSpaceRef): id; message 'initWithCGColorSpace:';
|
||||
function CGColorSpace: CGColorSpaceRef; message 'CGColorSpace';
|
||||
function numberOfColorComponents: NSInteger; message 'numberOfColorComponents';
|
||||
function colorSpaceModel: NSColorSpaceModel; message 'colorSpaceModel';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSColorWell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSComboBox.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -78,10 +78,10 @@ var
|
||||
function numberOfItems: NSInteger; message 'numberOfItems';
|
||||
function completes: Boolean; message 'completes';
|
||||
procedure setCompletes(completes_: Boolean); message 'setCompletes:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function dataSource: id; message 'dataSource';
|
||||
procedure setDataSource(aSource: id); message 'setDataSource:';
|
||||
function delegate: NSComboBoxDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(anObject: NSComboBoxDelegateProtocol); message 'setDelegate:';
|
||||
function dataSource: NSComboBoxDataSourceProtocol; message 'dataSource';
|
||||
procedure setDataSource(aSource: NSComboBoxDataSourceProtocol); message 'setDataSource:';
|
||||
procedure addItemWithObjectValue(object_: id); message 'addItemWithObjectValue:';
|
||||
procedure addItemsWithObjectValues(objects: NSArray); message 'addItemsWithObjectValues:';
|
||||
procedure insertItemWithObjectValue_atIndex(object_: id; index: NSInteger); message 'insertItemWithObjectValue:atIndex:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSComboBoxCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSControl.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -96,7 +96,7 @@ var
|
||||
procedure setFont(fontObj: NSFont); message 'setFont:';
|
||||
procedure setFormatter(newFormatter: NSFormatter); message 'setFormatter:';
|
||||
function formatter: id; message 'formatter';
|
||||
procedure setObjectValue(obj: id); message 'setObjectValue:';
|
||||
procedure setObjectValue(obj: NSCopyingProtocol); message 'setObjectValue:';
|
||||
procedure setStringValue(aString: NSString); message 'setStringValue:';
|
||||
procedure setIntValue(anInt: cint); message 'setIntValue:';
|
||||
procedure setFloatValue(aFloat: single); message 'setFloatValue:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSController.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSCursor.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSCustomImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDatePicker.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -75,8 +75,8 @@
|
||||
procedure setMinDate(date: NSDate); message 'setMinDate:';
|
||||
function maxDate: NSDate; message 'maxDate';
|
||||
procedure setMaxDate(date: NSDate); message 'setMaxDate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: NSDatePickerCellDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(anObject: NSDatePickerCellDelegateProtocol); message 'setDelegate:';
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDatePickerCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -131,8 +131,8 @@ type
|
||||
procedure setMinDate(date: NSDate); message 'setMinDate:';
|
||||
function maxDate: NSDate; message 'maxDate';
|
||||
procedure setMaxDate(date: NSDate); message 'setMaxDate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: NSDatePickerCellDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(anObject: NSDatePickerCellDelegateProtocol); message 'setDelegate:';
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDictionaryController.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDockTile.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDocument.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -173,7 +173,7 @@ type
|
||||
class function isNativeType(type_: NSString): Boolean; message 'isNativeType:';
|
||||
function writableTypesForSaveOperation(saveOperation: NSSaveOperationType): NSArray; message 'writableTypesForSaveOperation:';
|
||||
function fileNameExtensionForType_saveOperation(typeName: NSString; saveOperation: NSSaveOperationType): NSString; message 'fileNameExtensionForType:saveOperation:';
|
||||
function validateUserInterfaceItem(anItem: id): Boolean; message 'validateUserInterfaceItem:';
|
||||
function validateUserInterfaceItem(anItem: NSValidatedUserInterfaceItemProtocol): Boolean; message 'validateUserInterfaceItem:';
|
||||
|
||||
{ Adopted Protocols }
|
||||
end;
|
||||
@ -181,7 +181,7 @@ type
|
||||
{ NSDeprecated_NSDocumentCategory }
|
||||
NSDeprecated_NSDocumentCategory = objccategory external name 'NSDeprecated' (NSDocument)
|
||||
function dataRepresentationOfType(type_: NSString): NSData; message 'dataRepresentationOfType:'; deprecated 'in Mac OS X 10.4 and later';
|
||||
function fileAttributesToWriteToFile_ofType_saveOperation(fullDocumentPath: NSString; documentTypeName: NSString; saveOperationType: NSSaveOperationType): NSDictionary; message 'fileAttributesToWriteToFile:ofType:saveOperation:';
|
||||
function fileAttributesToWriteToFile_ofType_saveOperation(fullDocumentPath: NSString; documentTypeName: NSString; saveOperationType: NSSaveOperationType): NSDictionary; message 'fileAttributesToWriteToFile:ofType:saveOperation:'; deprecated 'in Mac OS X 10.4 and later';
|
||||
function fileName: NSString; message 'fileName'; deprecated 'in Mac OS X 10.4 and later';
|
||||
function fileWrapperRepresentationOfType(type_: NSString): NSFileWrapper; message 'fileWrapperRepresentationOfType:'; deprecated 'in Mac OS X 10.4 and later';
|
||||
function initWithContentsOfFile_ofType(absolutePath: NSString; typeName: NSString): id; message 'initWithContentsOfFile:ofType:'; deprecated 'in Mac OS X 10.4 and later';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDocumentController.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -70,7 +70,7 @@
|
||||
function makeDocumentWithContentsOfURL_ofType_error(absoluteURL: NSURL; typeName: NSString; outError: NSErrorPointer): id; message 'makeDocumentWithContentsOfURL:ofType:error:';
|
||||
function reopenDocumentForURL_withContentsOfURL_error(absoluteDocumentURL: NSURL; absoluteDocumentContentsURL: NSURL; outError: NSErrorPointer): Boolean; message 'reopenDocumentForURL:withContentsOfURL:error:';
|
||||
function makeDocumentForURL_withContentsOfURL_ofType_error(absoluteDocumentURL: NSURL; absoluteDocumentContentsURL: NSURL; typeName: NSString; outError: NSErrorPointer): id; message 'makeDocumentForURL:withContentsOfURL:ofType:error:';
|
||||
procedure setAutosavingDelay(autosavingDelay: NSTimeInterval); message 'setAutosavingDelay:';
|
||||
procedure setAutosavingDelay(autosavingDelay_: NSTimeInterval); message 'setAutosavingDelay:';
|
||||
function autosavingDelay: NSTimeInterval; message 'autosavingDelay';
|
||||
procedure saveAllDocuments(sender: id); message 'saveAllDocuments:';
|
||||
function hasEditedDocuments: Boolean; message 'hasEditedDocuments';
|
||||
@ -89,7 +89,7 @@
|
||||
function documentClassNames: NSArray; message 'documentClassNames';
|
||||
function documentClassForType(typeName: NSString): Pobjc_class; message 'documentClassForType:';
|
||||
function displayNameForType(typeName: NSString): NSString; message 'displayNameForType:';
|
||||
function validateUserInterfaceItem(anItem: id): Boolean; message 'validateUserInterfaceItem:';
|
||||
function validateUserInterfaceItem(anItem: NSValidatedUserInterfaceItemProtocol): Boolean; message 'validateUserInterfaceItem:';
|
||||
|
||||
{ Adopted Protocols }
|
||||
procedure encodeWithCoder(aCoder: NSCoder);
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDocumentScripting.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDragging.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -59,13 +59,13 @@ const
|
||||
|
||||
{ NSDraggingDestinationCategory }
|
||||
NSDraggingDestinationCategory = objccategory external (NSObject)
|
||||
function draggingEntered(sender: id): NSDragOperation; message 'draggingEntered:';
|
||||
function draggingUpdated(sender: id): NSDragOperation; message 'draggingUpdated:';
|
||||
procedure draggingExited(sender: id); message 'draggingExited:';
|
||||
function prepareForDragOperation(sender: id): Boolean; message 'prepareForDragOperation:';
|
||||
function performDragOperation(sender: id): Boolean; message 'performDragOperation:';
|
||||
procedure concludeDragOperation(sender: id); message 'concludeDragOperation:';
|
||||
procedure draggingEnded(sender: id); message 'draggingEnded:';
|
||||
function draggingEntered(sender: NSDraggingInfoProtocol): NSDragOperation; message 'draggingEntered:';
|
||||
function draggingUpdated(sender: NSDraggingInfoProtocol): NSDragOperation; message 'draggingUpdated:';
|
||||
procedure draggingExited(sender: NSDraggingInfoProtocol); message 'draggingExited:';
|
||||
function prepareForDragOperation(sender: NSDraggingInfoProtocol): Boolean; message 'prepareForDragOperation:';
|
||||
function performDragOperation(sender: NSDraggingInfoProtocol): Boolean; message 'performDragOperation:';
|
||||
procedure concludeDragOperation(sender: NSDraggingInfoProtocol); message 'concludeDragOperation:';
|
||||
procedure draggingEnded(sender: NSDraggingInfoProtocol); message 'draggingEnded:';
|
||||
function wantsPeriodicDraggingUpdates: Boolean; message 'wantsPeriodicDraggingUpdates';
|
||||
end;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSDrawer.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -95,8 +95,8 @@ var
|
||||
function contentView: NSView; message 'contentView';
|
||||
procedure setPreferredEdge(edge_: NSRectEdge); message 'setPreferredEdge:';
|
||||
function preferredEdge: NSRectEdge; message 'preferredEdge';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: NSDrawerDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSDrawerDelegateProtocol; message 'delegate';
|
||||
procedure open; message 'open';
|
||||
procedure openOnEdge(edge_: NSRectEdge); message 'openOnEdge:';
|
||||
procedure close; message 'close';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSEPSImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSErrors.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSEvent.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSFileWrapper.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSFont.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -71,23 +71,23 @@ function NSConvertGlyphsToPackedGlyphs(glBuf: NSGlyphPtr; count: NSInteger; pack
|
||||
var
|
||||
NSAntialiasThresholdChangedNotification: NSString; cvar; external;
|
||||
NSFontSetChangedNotification: NSString; cvar; external;
|
||||
NSAFMFamilyName: NSString; cvar; external;
|
||||
NSAFMFontName: NSString; cvar; external;
|
||||
NSAFMFormatVersion: NSString; cvar; external;
|
||||
NSAFMFullName: NSString; cvar; external;
|
||||
NSAFMNotice: NSString; cvar; external;
|
||||
NSAFMVersion: NSString; cvar; external;
|
||||
NSAFMWeight: NSString; cvar; external;
|
||||
NSAFMEncodingScheme: NSString; cvar; external;
|
||||
NSAFMCharacterSet: NSString; cvar; external;
|
||||
NSAFMCapHeight: NSString; cvar; external;
|
||||
NSAFMXHeight: NSString; cvar; external;
|
||||
NSAFMAscender: NSString; cvar; external;
|
||||
NSAFMDescender: NSString; cvar; external;
|
||||
NSAFMUnderlinePosition: NSString; cvar; external;
|
||||
NSAFMUnderlineThickness: NSString; cvar; external;
|
||||
NSAFMItalicAngle: NSString; cvar; external;
|
||||
NSAFMMappingScheme: NSString; cvar; external;
|
||||
NSAFMFamilyName: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMFontName: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMFormatVersion: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMFullName: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMNotice: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMVersion: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMWeight: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMEncodingScheme: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMCharacterSet: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMCapHeight: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMXHeight: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMAscender: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMDescender: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMUnderlinePosition: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMUnderlineThickness: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMItalicAngle: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSAFMMappingScheme: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
|
||||
{$endif}
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSFontDescriptor.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -75,7 +75,7 @@ var
|
||||
NSFontTraitsAttribute: NSString; cvar; external;
|
||||
NSFontFixedAdvanceAttribute: NSString; cvar; external;
|
||||
NSFontFeatureSettingsAttribute: NSString; cvar; external;
|
||||
NSFontColorAttribute: NSString; cvar; external;
|
||||
NSFontColorAttribute: NSString deprecated 'in Mac OS X 10.4 and later'; cvar; external;
|
||||
NSFontSymbolicTrait: NSString; cvar; external;
|
||||
NSFontWeightTrait: NSString; cvar; external;
|
||||
NSFontWidthTrait: NSString; cvar; external;
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSFontManager.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSFontPanel.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSForm.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSFormCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSGlyphGenerator.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -53,7 +53,7 @@ const
|
||||
NSGlyphGenerator = objcclass external (NSObject)
|
||||
|
||||
public
|
||||
procedure generateGlyphsForGlyphStorage_desiredNumberOfCharacters_glyphIndex_characterIndex(glyphStorage: id; nChars: NSUInteger; glyphIndex: NSUIntegerPtr; charIndex: NSUIntegerPtr); message 'generateGlyphsForGlyphStorage:desiredNumberOfCharacters:glyphIndex:characterIndex:';
|
||||
procedure generateGlyphsForGlyphStorage_desiredNumberOfCharacters_glyphIndex_characterIndex(glyphStorage: NSGlyphStorageProtocol; nChars: NSUInteger; glyphIndex: NSUIntegerPtr; charIndex: NSUIntegerPtr); message 'generateGlyphsForGlyphStorage:desiredNumberOfCharacters:glyphIndex:characterIndex:';
|
||||
class function sharedGlyphGenerator: id; message 'sharedGlyphGenerator';
|
||||
end;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSGlyphInfo.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSGradient.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSGraphics.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -156,8 +156,8 @@ var
|
||||
NSNamedColorSpace: NSString; cvar; external;
|
||||
NSPatternColorSpace: NSString; cvar; external;
|
||||
NSCustomColorSpace: NSString; cvar; external;
|
||||
NSCalibratedBlackColorSpace: NSString; cvar; external;
|
||||
NSDeviceBlackColorSpace: NSString; cvar; external;
|
||||
NSCalibratedBlackColorSpace: NSString deprecated 'in Mac OS X 10.6 and later'; cvar; external;
|
||||
NSDeviceBlackColorSpace: NSString deprecated 'in Mac OS X 10.6 and later'; cvar; external;
|
||||
NSDeviceResolution: NSString; cvar; external;
|
||||
NSDeviceColorSpaceName: NSString; cvar; external;
|
||||
NSDeviceBitsPerSample: NSString; cvar; external;
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSGraphicsContext.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSHelpManager.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSImage.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -201,9 +201,9 @@ var
|
||||
procedure lockFocus; message 'lockFocus';
|
||||
procedure lockFocusFlipped(flipped: Boolean); message 'lockFocusFlipped:';
|
||||
procedure unlockFocus; message 'unlockFocus';
|
||||
function bestRepresentationForDevice(deviceDescription: NSDictionary): NSImageRep; message 'bestRepresentationForDevice:';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
function bestRepresentationForDevice(deviceDescription: NSDictionary): NSImageRep; message 'bestRepresentationForDevice:'; deprecated 'in Mac OS X 10.6 and later';
|
||||
procedure setDelegate(anObject: NSImageDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSImageDelegateProtocol; message 'delegate';
|
||||
class function imageUnfilteredFileTypes: NSArray; message 'imageUnfilteredFileTypes';
|
||||
class function imageUnfilteredPasteboardTypes: NSArray; message 'imageUnfilteredPasteboardTypes';
|
||||
class function imageFileTypes: NSArray; message 'imageFileTypes';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSImageCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSImageView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSInputManager.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSInputServer.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSInterfaceStyle.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSKeyValueBinding.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSLayoutManager.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -164,8 +164,8 @@ type
|
||||
procedure setGlyphGenerator(glyphGenerator_: NSGlyphGenerator); message 'setGlyphGenerator:';
|
||||
function typesetter: NSTypesetter; message 'typesetter';
|
||||
procedure setTypesetter(typesetter_: NSTypesetter); message 'setTypesetter:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(delegate_: id); message 'setDelegate:';
|
||||
function delegate: NSLayoutManagerDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(delegate_: NSLayoutManagerDelegateProtocol); message 'setDelegate:';
|
||||
function textContainers: NSArray; message 'textContainers';
|
||||
procedure addTextContainer(container: NSTextContainer); message 'addTextContainer:';
|
||||
procedure insertTextContainer_atIndex(container: NSTextContainer; index: NSUInteger); message 'insertTextContainer:atIndex:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSLevelIndicator.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSLevelIndicatorCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMatrix.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -231,8 +231,8 @@ __MFlagsPtr = ^__MFlags;
|
||||
function performKeyEquivalent(theEvent: NSEvent): Boolean; message 'performKeyEquivalent:';
|
||||
function sendAction: Boolean; message 'sendAction';
|
||||
procedure sendDoubleAction; message 'sendDoubleAction';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: NSMatrixDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(anObject: NSMatrixDelegateProtocol); message 'setDelegate:';
|
||||
function textShouldBeginEditing(textObject: NSText): Boolean; message 'textShouldBeginEditing:';
|
||||
function textShouldEndEditing(textObject: NSText): Boolean; message 'textShouldEndEditing:';
|
||||
procedure textDidBeginEditing(notification: NSNotification); message 'textDidBeginEditing:';
|
||||
@ -246,7 +246,7 @@ __MFlagsPtr = ^__MFlags;
|
||||
function toolTipForCell(cell_: NSCell): NSString; message 'toolTipForCell:';
|
||||
|
||||
{ Adopted Protocols }
|
||||
function validateUserInterfaceItem(anItem: id): Boolean;
|
||||
function validateUserInterfaceItem(anItem: NSValidatedUserInterfaceItemProtocol): Boolean;
|
||||
end;
|
||||
|
||||
{ NSKeyboardUI_NSMatrixCategory }
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMenu.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -103,7 +103,7 @@ var
|
||||
procedure setTitle(aString: NSString); message 'setTitle:';
|
||||
function title: NSString; message 'title';
|
||||
class procedure popUpContextMenu_withEvent_forView(menu: NSMenu; event: NSEvent; view: NSView); message 'popUpContextMenu:withEvent:forView:';
|
||||
class procedure popUpContextMenu_withEvent_forView_withFont(menu: NSMenu; event: NSEvent; view: NSView; font: NSFont); message 'popUpContextMenu:withEvent:forView:withFont:';
|
||||
class procedure popUpContextMenu_withEvent_forView_withFont(menu: NSMenu; event: NSEvent; view: NSView; font_: NSFont); message 'popUpContextMenu:withEvent:forView:withFont:';
|
||||
function popUpMenuPositioningItem_atLocation_inView(item: NSMenuItem; location: NSPoint; view: NSView): Boolean; message 'popUpMenuPositioningItem:atLocation:inView:';
|
||||
class procedure setMenuBarVisible(visible: Boolean); message 'setMenuBarVisible:';
|
||||
class function menuBarVisible: Boolean; message 'menuBarVisible';
|
||||
@ -132,8 +132,8 @@ var
|
||||
function performKeyEquivalent(theEvent: NSEvent): Boolean; message 'performKeyEquivalent:';
|
||||
procedure itemChanged(item: NSMenuItem); message 'itemChanged:';
|
||||
procedure performActionForItemAtIndex(index: NSInteger); message 'performActionForItemAtIndex:';
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(anObject: NSMenuDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSMenuDelegateProtocol; message 'delegate';
|
||||
function menuBarHeight: CGFloat; message 'menuBarHeight';
|
||||
procedure cancelTracking; message 'cancelTracking';
|
||||
procedure cancelTrackingWithoutAnimation; message 'cancelTrackingWithoutAnimation';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMenuItem.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMenuItemCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMenuView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMovie.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -59,7 +59,7 @@
|
||||
|
||||
public
|
||||
function initWithMovie(movie: Pointer): id; message 'initWithMovie:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function initWithURL_byReference(url: NSURL; byRef: Boolean): id; message 'initWithURL:byReference:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function initWithURL_byReference(url_: NSURL; byRef: Boolean): id; message 'initWithURL:byReference:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function initWithPasteboard(pasteboard: NSPasteboard): id; message 'initWithPasteboard:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function QTMovie_: Pointer; message 'QTMovie'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function URL: NSURL; message 'URL'; deprecated 'in Mac OS X 10.5 and later';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSMovieView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -84,7 +84,7 @@ __MVFlagsPtr = ^__MVFlags;
|
||||
_fReserved3: culong;
|
||||
|
||||
public
|
||||
procedure setMovie(movie: NSMovie); message 'setMovie:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure setMovie(movie_: NSMovie); message 'setMovie:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function movie: NSMovie; message 'movie'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function movieController: Pointer; message 'movieController'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function movieRect: NSRect; message 'movieRect'; deprecated 'in Mac OS X 10.5 and later';
|
||||
@ -96,9 +96,9 @@ __MVFlagsPtr = ^__MVFlags;
|
||||
procedure gotoEnd(sender: id); message 'gotoEnd:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure stepForward(sender: id); message 'stepForward:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure stepBack(sender: id); message 'stepBack:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure setRate(rate: single); message 'setRate:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure setRate(rate_: single); message 'setRate:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function rate: single; message 'rate'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure setVolume(volume: single); message 'setVolume:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure setVolume(volume_: single); message 'setVolume:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function volume: single; message 'volume'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure setMuted(mute: Boolean); message 'setMuted:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
function isMuted: Boolean; message 'isMuted'; deprecated 'in Mac OS X 10.5 and later';
|
||||
@ -117,12 +117,12 @@ __MVFlagsPtr = ^__MVFlags;
|
||||
procedure cut(sender: id); message 'cut:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure copy_(sender: id); message 'copy:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure paste(sender: id); message 'paste:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure delete(sender: id); message 'delete:';
|
||||
procedure delete(sender: id); message 'delete:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure selectAll(sender: id); message 'selectAll:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
procedure clear(sender: id); message 'clear:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
|
||||
{ Adopted Protocols }
|
||||
function validateUserInterfaceItem(anItem: id): Boolean;
|
||||
function validateUserInterfaceItem(anItem: NSValidatedUserInterfaceItemProtocol): Boolean;
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSNib.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSNibLoading.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSObjectController.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -87,7 +87,7 @@
|
||||
function canAdd: Boolean; message 'canAdd';
|
||||
procedure remove(sender: id); message 'remove:';
|
||||
function canRemove: Boolean; message 'canRemove';
|
||||
function validateUserInterfaceItem(item: id): Boolean; message 'validateUserInterfaceItem:';
|
||||
function validateUserInterfaceItem(item: NSValidatedUserInterfaceItemProtocol): Boolean; message 'validateUserInterfaceItem:';
|
||||
end;
|
||||
|
||||
{ NSManagedControllerCategory }
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSOpenGL.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSOpenGLView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSOpenPanel.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSOutlineView.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -159,10 +159,10 @@ var
|
||||
_ovReserved: id;
|
||||
|
||||
public
|
||||
procedure setDelegate(anObject: id); message 'setDelegate:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDataSource(aSource: id); message 'setDataSource:';
|
||||
function dataSource: id; message 'dataSource';
|
||||
procedure setDelegate(anObject: NSOutlineViewDelegateProtocol); message 'setDelegate:';
|
||||
function delegate: NSOutlineViewDelegateProtocol; message 'delegate';
|
||||
procedure setDataSource(aSource: NSOutlineViewDataSourceProtocol); message 'setDataSource:';
|
||||
function dataSource: NSOutlineViewDataSourceProtocol; message 'dataSource';
|
||||
procedure setOutlineTableColumn(outlineTableColumn_: NSTableColumn); message 'setOutlineTableColumn:';
|
||||
function outlineTableColumn: NSTableColumn; message 'outlineTableColumn';
|
||||
function isExpandable(item: id): Boolean; message 'isExpandable:';
|
||||
@ -220,8 +220,8 @@ var
|
||||
function outlineView_persistentObjectForItem(outlineView: NSOutlineView; item: id): id; message 'outlineView:persistentObjectForItem:';
|
||||
procedure outlineView_sortDescriptorsDidChange(outlineView: NSOutlineView; oldDescriptors: NSArray); message 'outlineView:sortDescriptorsDidChange:';
|
||||
function outlineView_writeItems_toPasteboard(outlineView: NSOutlineView; items: NSArray; pasteboard: NSPasteboard): Boolean; message 'outlineView:writeItems:toPasteboard:';
|
||||
function outlineView_validateDrop_proposedItem_proposedChildIndex(outlineView: NSOutlineView; info: id; item: id; index: NSInteger): NSDragOperation; message 'outlineView:validateDrop:proposedItem:proposedChildIndex:';
|
||||
function outlineView_acceptDrop_item_childIndex(outlineView: NSOutlineView; info: id; item: id; index: NSInteger): Boolean; message 'outlineView:acceptDrop:item:childIndex:';
|
||||
function outlineView_validateDrop_proposedItem_proposedChildIndex(outlineView: NSOutlineView; info: NSDraggingInfoProtocol; item: id; index: NSInteger): NSDragOperation; message 'outlineView:validateDrop:proposedItem:proposedChildIndex:';
|
||||
function outlineView_acceptDrop_item_childIndex(outlineView: NSOutlineView; info: NSDraggingInfoProtocol; item: id; index: NSInteger): Boolean; message 'outlineView:acceptDrop:item:childIndex:';
|
||||
function outlineView_namesOfPromisedFilesDroppedAtDestination_forDraggedItems(outlineView: NSOutlineView; dropDestination: NSURL; items: NSArray): NSArray; message 'outlineView:namesOfPromisedFilesDroppedAtDestination:forDraggedItems:';
|
||||
end;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPDFImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPICTImageRep.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPageLayout.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPanel.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSParagraphStyle.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPasteboard.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:19 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:55 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPasteboardItem.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -54,7 +54,7 @@
|
||||
public
|
||||
function types: NSArray; message 'types';
|
||||
function availableTypeFromArray(types_: NSArray): NSString; message 'availableTypeFromArray:';
|
||||
function setDataProvider_forTypes(dataProvider: id; types_: NSArray): Boolean; message 'setDataProvider:forTypes:';
|
||||
function setDataProvider_forTypes(dataProvider: NSPasteboardItemDataProviderProtocol; types_: NSArray): Boolean; message 'setDataProvider:forTypes:';
|
||||
function setData_forType(data: NSData; type_: NSString): Boolean; message 'setData:forType:';
|
||||
function setString_forType(string_: NSString; type_: NSString): Boolean; message 'setString:forType:';
|
||||
function setPropertyList_forType(propertyList: id; type_: NSString): Boolean; message 'setPropertyList:forType:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPathCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -83,11 +83,11 @@ type
|
||||
procedure setPathStyle(style: NSPathStyle); message 'setPathStyle:';
|
||||
function URL: NSURL; message 'URL';
|
||||
procedure setURL(url_: NSURL); message 'setURL:';
|
||||
procedure setObjectValue(obj: id); message 'setObjectValue:';
|
||||
procedure setObjectValue(obj: NSCopyingProtocol); message 'setObjectValue:';
|
||||
function allowedTypes: NSArray; message 'allowedTypes';
|
||||
procedure setAllowedTypes(allowedTypes_: NSArray); message 'setAllowedTypes:';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(value: id); message 'setDelegate:';
|
||||
function delegate: NSPathCellDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(value: NSPathCellDelegateProtocol); message 'setDelegate:';
|
||||
class function pathComponentCellClass: Pobjc_class; message 'pathComponentCellClass';
|
||||
function pathComponentCells: NSArray; message 'pathComponentCells';
|
||||
procedure setPathComponentCells(cells: NSArray); message 'setPathComponentCells:';
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPathComponentCell.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPathControl.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -63,8 +63,8 @@
|
||||
procedure setPathComponentCells(cells: NSArray); message 'setPathComponentCells:';
|
||||
procedure setBackgroundColor(color: NSColor); message 'setBackgroundColor:';
|
||||
function backgroundColor: NSColor; message 'backgroundColor';
|
||||
function delegate: id; message 'delegate';
|
||||
procedure setDelegate(delegate_: id); message 'setDelegate:';
|
||||
function delegate: NSPathControlDelegateProtocol; message 'delegate';
|
||||
procedure setDelegate(delegate_: NSPathControlDelegateProtocol); message 'setDelegate:';
|
||||
procedure setDraggingSourceOperationMask_forLocal(mask: NSDragOperation; isLocal: Boolean); message 'setDraggingSourceOperationMask:forLocal:';
|
||||
procedure setMenu(menu_: NSMenu); message 'setMenu:';
|
||||
function menu: NSMenu; message 'menu';
|
||||
@ -79,8 +79,8 @@
|
||||
{ NSPathControlDelegate Protocol }
|
||||
NSPathControlDelegateProtocol = objcprotocol external name 'NSPathControlDelegate'
|
||||
function pathControl_shouldDragPathComponentCell_withPasteboard(pathControl: NSPathControl; pathComponentCell: NSPathComponentCell; pasteboard: NSPasteboard): Boolean; message 'pathControl:shouldDragPathComponentCell:withPasteboard:';
|
||||
function pathControl_validateDrop(pathControl: NSPathControl; info: id): NSDragOperation; message 'pathControl:validateDrop:';
|
||||
function pathControl_acceptDrop(pathControl: NSPathControl; info: id): Boolean; message 'pathControl:acceptDrop:';
|
||||
function pathControl_validateDrop(pathControl: NSPathControl; info: NSDraggingInfoProtocol): NSDragOperation; message 'pathControl:validateDrop:';
|
||||
function pathControl_acceptDrop(pathControl: NSPathControl; info: NSDraggingInfoProtocol): Boolean; message 'pathControl:acceptDrop:';
|
||||
procedure pathControl_willDisplayOpenPanel(pathControl: NSPathControl; openPanel: NSOpenPanel); message 'pathControl:willDisplayOpenPanel:';
|
||||
procedure pathControl_willPopUpMenu(pathControl: NSPathControl; menu: NSMenu); message 'pathControl:willPopUpMenu:';
|
||||
end;
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ Parsed from Appkit.framework NSPersistentDocument.h }
|
||||
{ Version: 2.1.4 - Sun Jan 2 15:08:20 CET 2011 }
|
||||
{ Version: 2.1.5 - Fri Feb 11 21:45:56 CET 2011 }
|
||||
|
||||
|
||||
{$ifdef TYPES}
|
||||
@ -65,7 +65,7 @@
|
||||
|
||||
{ NSDeprecated_NSPersistentDocumentCategory }
|
||||
NSDeprecated_NSPersistentDocumentCategory = objccategory external name 'NSDeprecated' (NSPersistentDocument)
|
||||
function configurePersistentStoreCoordinatorForURL_ofType_error(url: NSURL; fileType_: NSString; error: NSErrorPointer): Boolean; message 'configurePersistentStoreCoordinatorForURL:ofType:error:';
|
||||
function configurePersistentStoreCoordinatorForURL_ofType_error(url: NSURL; fileType_: NSString; error: NSErrorPointer): Boolean; message 'configurePersistentStoreCoordinatorForURL:ofType:error:'; deprecated 'in Mac OS X 10.5 and later';
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user