diff options
| author | josef <josef@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-10-01 14:44:45 +0000 |
|---|---|---|
| committer | josef <josef@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-10-01 14:44:45 +0000 |
| commit | dcd8d88aed958810a5da30ef2412b06b267043a5 (patch) | |
| tree | 0af416c51308b2c7e9897cc4812a140c13173f4d /packages | |
| parent | 24957617994f2dd275d6c3e2ca0dcdceaf31dc37 (diff) | |
| download | fpc-dcd8d88aed958810a5da30ef2412b06b267043a5.tar.gz | |
* User patches are now working
* Pointers to classes are no longer untyped.
git-svn-id: http://svn.freepascal.org/svn/fpc/branches/objc@13786 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages')
286 files changed, 1339 insertions, 2379 deletions
diff --git a/packages/cocoaint/src/CocoaAll.pas b/packages/cocoaint/src/CocoaAll.pas index 1713a4fbab..f7427b0bc8 100644 --- a/packages/cocoaint/src/CocoaAll.pas +++ b/packages/cocoaint/src/CocoaAll.pas @@ -4,13 +4,13 @@ unit CocoaAll; {$modeswitch objectivec1} {$define NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES} -{NOTE: This is to prevent against a huge list of "never used" private variable notes} -{$notes off} - interface uses ctypes, MacOSAll; + +{$linkframework Cocoa} +{$define INTERFACE} {$include UndefinedTypes.inc} @@ -57,11 +57,14 @@ type {$include appkit/AppKit.inc} {$undef EXTERNAL_SYMBOLS} +{$define USER_PATCHES} +{$include foundation/Foundation.inc} +{$include appkit/AppKit.inc} +{$undef USER_PATCHES} + {define IBOutlet := } {define IBAction := } -{$notes on} - { Inline functions } function NSSTR (inString: PChar): NSString; function NSMakeRange (loc: NSUInteger; len: NSUInteger): NSRange; @@ -86,8 +89,17 @@ function NSPointToCGPoint (aPoint: NSPoint): CGPoint; function NSSizeFromCGSize(aSize: CGSize): NSSize; function NSSizeToCGSize(aSize: NSSize): CGSize; +{$undef INTERFACE} + implementation +{$define IMPLEMENTATION} {$include InlineFunctions.inc} +{$define USER_PATCHES} +{$include foundation/Foundation.inc} +{$include appkit/AppKit.inc} +{$undef USER_PATCHES} + +{$undef IMPLEMENTATION} end.
\ No newline at end of file diff --git a/packages/cocoaint/src/Foundation.pas b/packages/cocoaint/src/Foundation.pas index 5b4ce175dc..8c1baa633b 100644 --- a/packages/cocoaint/src/Foundation.pas +++ b/packages/cocoaint/src/Foundation.pas @@ -4,13 +4,12 @@ unit Foundation; {$modeswitch objectivec1} {$define NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES} -{NOTE: This is to prevent against a huge list of "never used" private variable notes} -{$notes off} - interface uses ctypes, MacOSAll; + +{$linkframework Foundation} {$include UndefinedTypes.inc} @@ -49,10 +48,9 @@ type {$include foundation/Foundation.inc} {$undef EXTERNAL_SYMBOLS} -{define IBOutlet := } -{define IBAction := } - -{$notes on} +{$define USER_PATCHES} +{$include foundation/Foundation.inc} +{$undef USER_PATCHES} { Inline functions } function NSSTR (inString: PChar): NSString; diff --git a/packages/cocoaint/src/UndefinedTypes.inc b/packages/cocoaint/src/UndefinedTypes.inc index 12f368361c..39828db15d 100644 --- a/packages/cocoaint/src/UndefinedTypes.inc +++ b/packages/cocoaint/src/UndefinedTypes.inc @@ -1,6 +1,10 @@ type __NSAppleEventManagerSuspension = Pointer; - CGFloat = Float32; + {$ifdef cpu64} + CGFloat = single; + {$else} + CGFloat = double; + {$endif} UTF = UInt32; NSPointerFunctionsOptions = UInt16; URefCon = UInt32; @@ -34,8 +38,7 @@ type NSIntegerPointer = pclong; NSUIntegerPointer = pculong; NSZonePointer = ^NSZone; - NSTimeIntervalPointer = ^Float32; - + NSTimeIntervalPointer = ^double; { An array of objects } type @@ -47,7 +50,7 @@ const NSIntegerMax = high(clong); NSIntegerMin = low(clong); NSUIntegerMax = high(culong); - NSNotFound = NSUIntegerMax; + NSNotFound = NSIntegerMax; const NX_TABLET_POINTER_UNKNOWN = 0; diff --git a/packages/cocoaint/src/appkit/NSATSTypesetter.inc b/packages/cocoaint/src/appkit/NSATSTypesetter.inc index fa8d6ebbed..3e6632effe 100644 --- a/packages/cocoaint/src/appkit/NSATSTypesetter.inc +++ b/packages/cocoaint/src/appkit/NSATSTypesetter.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSATSTypesetter.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSATSTYPESETTER_PAS_H} -{$define NSATSTYPESETTER_PAS_H} -type - NSATSTypesetterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSATSTYPESETTER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSATSTypesetter = objcclass; + NSATSTypesetterPointer = ^NSATSTypesetter; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAccessibility.inc b/packages/cocoaint/src/appkit/NSAccessibility.inc index 430c5d8e12..bf6c62437a 100644 --- a/packages/cocoaint/src/appkit/NSAccessibility.inc +++ b/packages/cocoaint/src/appkit/NSAccessibility.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSAccessibility.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSActionCell.inc b/packages/cocoaint/src/appkit/NSActionCell.inc index 97e81b6863..63d63c81d0 100644 --- a/packages/cocoaint/src/appkit/NSActionCell.inc +++ b/packages/cocoaint/src/appkit/NSActionCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSActionCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSACTIONCELL_PAS_H} -{$define NSACTIONCELL_PAS_H} -type - NSActionCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSACTIONCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSActionCell = objcclass; + NSActionCellPointer = ^NSActionCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAffineTransform.inc b/packages/cocoaint/src/appkit/NSAffineTransform.inc index df8800928b..05a498a67d 100644 --- a/packages/cocoaint/src/appkit/NSAffineTransform.inc +++ b/packages/cocoaint/src/appkit/NSAffineTransform.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSAffineTransform.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSAFFINETRANSFORM_PAS_H} -{$define NSAFFINETRANSFORM_PAS_H} -type - NSAffineTransformPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSAFFINETRANSFORM_PAS_T} @@ -48,6 +40,7 @@ type {$ifdef FORWARD} NSAffineTransform = objcclass; + NSAffineTransformPointer = ^NSAffineTransform; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAlert.inc b/packages/cocoaint/src/appkit/NSAlert.inc index 6dabd83c4f..6b9d2657db 100644 --- a/packages/cocoaint/src/appkit/NSAlert.inc +++ b/packages/cocoaint/src/appkit/NSAlert.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSAlert.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSALERT_PAS_H} -{$define NSALERT_PAS_H} -type - NSAlertPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSALERT_PAS_T} @@ -56,6 +48,7 @@ type {$ifdef FORWARD} NSAlert = objcclass; + NSAlertPointer = ^NSAlert; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAnimation.inc b/packages/cocoaint/src/appkit/NSAnimation.inc index 0130a21d3d..f35f521aed 100644 --- a/packages/cocoaint/src/appkit/NSAnimation.inc +++ b/packages/cocoaint/src/appkit/NSAnimation.inc @@ -1,15 +1,6 @@ { Parsed from Appkit.framework NSAnimation.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSANIMATION_PAS_H} -{$define NSANIMATION_PAS_H} -type - NSAnimationPointer = Pointer; - NSViewAnimationPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSANIMATION_PAS_T} @@ -55,13 +46,20 @@ type {$ifndef NSANIMATION_PAS_S} {$define NSANIMATION_PAS_S} +{ External string constants } +var + NSAnimationTriggerOrderIn: NSString; external name '_NSAnimationTriggerOrderIn'; + NSAnimationTriggerOrderOut: NSString; external name '_NSAnimationTriggerOrderOut'; + {$endif} {$endif} {$ifdef FORWARD} NSAnimatablePropertyContainerProtocol = objcprotocol; NSAnimation = objcclass; + NSAnimationPointer = ^NSAnimation; NSViewAnimation = objcclass; + NSViewAnimationPointer = ^NSViewAnimation; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAnimationContext.inc b/packages/cocoaint/src/appkit/NSAnimationContext.inc index dd74194a31..be883a1375 100644 --- a/packages/cocoaint/src/appkit/NSAnimationContext.inc +++ b/packages/cocoaint/src/appkit/NSAnimationContext.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSAnimationContext.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSANIMATIONCONTEXT_PAS_H} -{$define NSANIMATIONCONTEXT_PAS_H} -type - NSAnimationContextPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSANIMATIONCONTEXT_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSAnimationContext = objcclass; + NSAnimationContextPointer = ^NSAnimationContext; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAppleScriptExtensions.inc b/packages/cocoaint/src/appkit/NSAppleScriptExtensions.inc index a619f4ffba..91102c20f9 100644 --- a/packages/cocoaint/src/appkit/NSAppleScriptExtensions.inc +++ b/packages/cocoaint/src/appkit/NSAppleScriptExtensions.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSAppleScriptExtensions.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSApplication.inc b/packages/cocoaint/src/appkit/NSApplication.inc index 78673e03bb..e7187e071f 100644 --- a/packages/cocoaint/src/appkit/NSApplication.inc +++ b/packages/cocoaint/src/appkit/NSApplication.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSApplication.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSAPPLICATION_PAS_H} -{$define NSAPPLICATION_PAS_H} -type - NSApplicationPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSAPPLICATION_PAS_T} @@ -98,11 +90,31 @@ procedure NSUnregisterServicesProvider(namePointer: NSString); cdecl; external n var NSAppKitVersionNumber: double; external name '_NSAppKitVersionNumber'; +{ External string constants } +var + NSModalPanelRunLoopMode: NSString; external name '_NSModalPanelRunLoopMode'; + NSEventTrackingRunLoopMode: NSString; external name '_NSEventTrackingRunLoopMode'; + NSApplicationDidBecomeActiveNotification: NSString; external name '_NSApplicationDidBecomeActiveNotification'; + NSApplicationDidHideNotification: NSString; external name '_NSApplicationDidHideNotification'; + NSApplicationDidFinishLaunchingNotification: NSString; external name '_NSApplicationDidFinishLaunchingNotification'; + NSApplicationDidResignActiveNotification: NSString; external name '_NSApplicationDidResignActiveNotification'; + NSApplicationDidUnhideNotification: NSString; external name '_NSApplicationDidUnhideNotification'; + NSApplicationDidUpdateNotification: NSString; external name '_NSApplicationDidUpdateNotification'; + NSApplicationWillBecomeActiveNotification: NSString; external name '_NSApplicationWillBecomeActiveNotification'; + NSApplicationWillHideNotification: NSString; external name '_NSApplicationWillHideNotification'; + NSApplicationWillFinishLaunchingNotification: NSString; external name '_NSApplicationWillFinishLaunchingNotification'; + NSApplicationWillResignActiveNotification: NSString; external name '_NSApplicationWillResignActiveNotification'; + NSApplicationWillUnhideNotification: NSString; external name '_NSApplicationWillUnhideNotification'; + NSApplicationWillUpdateNotification: NSString; external name '_NSApplicationWillUpdateNotification'; + NSApplicationWillTerminateNotification: NSString; external name '_NSApplicationWillTerminateNotification'; + NSApplicationDidChangeScreenParametersNotification: NSString; external name '_NSApplicationDidChangeScreenParametersNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSApplication = objcclass; + NSApplicationPointer = ^NSApplication; {$endif} diff --git a/packages/cocoaint/src/appkit/NSApplicationScripting.inc b/packages/cocoaint/src/appkit/NSApplicationScripting.inc index b7b149aa29..0ab3c850df 100644 --- a/packages/cocoaint/src/appkit/NSApplicationScripting.inc +++ b/packages/cocoaint/src/appkit/NSApplicationScripting.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSApplicationScripting.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSArrayController.inc b/packages/cocoaint/src/appkit/NSArrayController.inc index 9a506b7a6a..2622b45bba 100644 --- a/packages/cocoaint/src/appkit/NSArrayController.inc +++ b/packages/cocoaint/src/appkit/NSArrayController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSArrayController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSARRAYCONTROLLER_PAS_H} -{$define NSARRAYCONTROLLER_PAS_H} -type - NSArrayControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSARRAYCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSArrayController = objcclass; + NSArrayControllerPointer = ^NSArrayController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSAttributedString.inc b/packages/cocoaint/src/appkit/NSAttributedString.inc index 303125d104..0daa568ec6 100644 --- a/packages/cocoaint/src/appkit/NSAttributedString.inc +++ b/packages/cocoaint/src/appkit/NSAttributedString.inc @@ -1,15 +1,6 @@ { Parsed from Appkit.framework NSAttributedString.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSATTRIBUTEDSTRING_PAS_H} -{$define NSATTRIBUTEDSTRING_PAS_H} -type - NSAttributedStringPointer = Pointer; - NSMutableAttributedStringPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSATTRIBUTEDSTRING_PAS_T} @@ -59,6 +50,82 @@ const {$ifndef NSATTRIBUTEDSTRING_PAS_S} {$define NSATTRIBUTEDSTRING_PAS_S} +{ External string constants } +var + NSFontAttributeName: NSString; external name '_NSFontAttributeName'; + NSParagraphStyleAttributeName: NSString; external name '_NSParagraphStyleAttributeName'; + NSForegroundColorAttributeName: NSString; external name '_NSForegroundColorAttributeName'; + NSUnderlineStyleAttributeName: NSString; external name '_NSUnderlineStyleAttributeName'; + NSSuperscriptAttributeName: NSString; external name '_NSSuperscriptAttributeName'; + NSBackgroundColorAttributeName: NSString; external name '_NSBackgroundColorAttributeName'; + NSAttachmentAttributeName: NSString; external name '_NSAttachmentAttributeName'; + NSLigatureAttributeName: NSString; external name '_NSLigatureAttributeName'; + NSBaselineOffsetAttributeName: NSString; external name '_NSBaselineOffsetAttributeName'; + NSKernAttributeName: NSString; external name '_NSKernAttributeName'; + NSLinkAttributeName: NSString; external name '_NSLinkAttributeName'; + NSStrokeWidthAttributeName: NSString; external name '_NSStrokeWidthAttributeName'; + NSStrokeColorAttributeName: NSString; external name '_NSStrokeColorAttributeName'; + NSUnderlineColorAttributeName: NSString; external name '_NSUnderlineColorAttributeName'; + NSStrikethroughStyleAttributeName: NSString; external name '_NSStrikethroughStyleAttributeName'; + NSStrikethroughColorAttributeName: NSString; external name '_NSStrikethroughColorAttributeName'; + NSShadowAttributeName: NSString; external name '_NSShadowAttributeName'; + NSObliquenessAttributeName: NSString; external name '_NSObliquenessAttributeName'; + NSExpansionAttributeName: NSString; external name '_NSExpansionAttributeName'; + NSCursorAttributeName: NSString; external name '_NSCursorAttributeName'; + NSToolTipAttributeName: NSString; external name '_NSToolTipAttributeName'; + NSCharacterShapeAttributeName: NSString; external name '_NSCharacterShapeAttributeName'; + NSGlyphInfoAttributeName: NSString; external name '_NSGlyphInfoAttributeName'; + NSMarkedClauseSegmentAttributeName: NSString; external name '_NSMarkedClauseSegmentAttributeName'; + NSSpellingStateAttributeName: NSString; external name '_NSSpellingStateAttributeName'; + NSPlainTextDocumentType: NSString; external name '_NSPlainTextDocumentType'; + NSRTFTextDocumentType: NSString; external name '_NSRTFTextDocumentType'; + NSRTFDTextDocumentType: NSString; external name '_NSRTFDTextDocumentType'; + NSMacSimpleTextDocumentType: NSString; external name '_NSMacSimpleTextDocumentType'; + NSHTMLTextDocumentType: NSString; external name '_NSHTMLTextDocumentType'; + NSDocFormatTextDocumentType: NSString; external name '_NSDocFormatTextDocumentType'; + NSWordMLTextDocumentType: NSString; external name '_NSWordMLTextDocumentType'; + NSWebArchiveTextDocumentType: NSString; external name '_NSWebArchiveTextDocumentType'; + NSOfficeOpenXMLTextDocumentType: NSString; external name '_NSOfficeOpenXMLTextDocumentType'; + NSOpenDocumentTextDocumentType: NSString; external name '_NSOpenDocumentTextDocumentType'; + NSPaperSizeDocumentAttribute: NSString; external name '_NSPaperSizeDocumentAttribute'; + NSLeftMarginDocumentAttribute: NSString; external name '_NSLeftMarginDocumentAttribute'; + NSRightMarginDocumentAttribute: NSString; external name '_NSRightMarginDocumentAttribute'; + NSTopMarginDocumentAttribute: NSString; external name '_NSTopMarginDocumentAttribute'; + NSBottomMarginDocumentAttribute: NSString; external name '_NSBottomMarginDocumentAttribute'; + NSViewSizeDocumentAttribute: NSString; external name '_NSViewSizeDocumentAttribute'; + NSViewZoomDocumentAttribute: NSString; external name '_NSViewZoomDocumentAttribute'; + NSViewModeDocumentAttribute: NSString; external name '_NSViewModeDocumentAttribute'; + NSDocumentTypeDocumentAttribute: NSString; external name '_NSDocumentTypeDocumentAttribute'; + NSReadOnlyDocumentAttribute: NSString; external name '_NSReadOnlyDocumentAttribute'; + NSConvertedDocumentAttribute: NSString; external name '_NSConvertedDocumentAttribute'; + NSCocoaVersionDocumentAttribute: NSString; external name '_NSCocoaVersionDocumentAttribute'; + NSBackgroundColorDocumentAttribute: NSString; external name '_NSBackgroundColorDocumentAttribute'; + NSHyphenationFactorDocumentAttribute: NSString; external name '_NSHyphenationFactorDocumentAttribute'; + NSDefaultTabIntervalDocumentAttribute: NSString; external name '_NSDefaultTabIntervalDocumentAttribute'; + NSCharacterEncodingDocumentAttribute: NSString; external name '_NSCharacterEncodingDocumentAttribute'; + NSTitleDocumentAttribute: NSString; external name '_NSTitleDocumentAttribute'; + NSCompanyDocumentAttribute: NSString; external name '_NSCompanyDocumentAttribute'; + NSCopyrightDocumentAttribute: NSString; external name '_NSCopyrightDocumentAttribute'; + NSSubjectDocumentAttribute: NSString; external name '_NSSubjectDocumentAttribute'; + NSAuthorDocumentAttribute: NSString; external name '_NSAuthorDocumentAttribute'; + NSKeywordsDocumentAttribute: NSString; external name '_NSKeywordsDocumentAttribute'; + NSCommentDocumentAttribute: NSString; external name '_NSCommentDocumentAttribute'; + NSEditorDocumentAttribute: NSString; external name '_NSEditorDocumentAttribute'; + NSCreationTimeDocumentAttribute: NSString; external name '_NSCreationTimeDocumentAttribute'; + NSModificationTimeDocumentAttribute: NSString; external name '_NSModificationTimeDocumentAttribute'; + NSExcludedElementsDocumentAttribute: NSString; external name '_NSExcludedElementsDocumentAttribute'; + NSTextEncodingNameDocumentAttribute: NSString; external name '_NSTextEncodingNameDocumentAttribute'; + NSPrefixSpacesDocumentAttribute: NSString; external name '_NSPrefixSpacesDocumentAttribute'; + NSDocumentTypeDocumentOption: NSString; external name '_NSDocumentTypeDocumentOption'; + NSDefaultAttributesDocumentOption: NSString; external name '_NSDefaultAttributesDocumentOption'; + NSCharacterEncodingDocumentOption: NSString; external name '_NSCharacterEncodingDocumentOption'; + NSTextEncodingNameDocumentOption: NSString; external name '_NSTextEncodingNameDocumentOption'; + NSBaseURLDocumentOption: NSString; external name '_NSBaseURLDocumentOption'; + NSTimeoutDocumentOption: NSString; external name '_NSTimeoutDocumentOption'; + NSWebPreferencesDocumentOption: NSString; external name '_NSWebPreferencesDocumentOption'; + NSWebResourceLoadDelegateDocumentOption: NSString; external name '_NSWebResourceLoadDelegateDocumentOption'; + NSTextSizeMultiplierDocumentOption: NSString; external name '_NSTextSizeMultiplierDocumentOption'; + { External symbols } var NSUnderlineByWordMask: NSUInteger; external name '_NSUnderlineByWordMask'; @@ -69,7 +136,9 @@ var {$ifdef FORWARD} NSAttributedString = objcclass; + NSAttributedStringPointer = ^NSAttributedString; NSMutableAttributedString = objcclass; + NSMutableAttributedStringPointer = ^NSMutableAttributedString; {$endif} diff --git a/packages/cocoaint/src/appkit/NSBezierPath.inc b/packages/cocoaint/src/appkit/NSBezierPath.inc index 980d58bbae..e74b58bd1d 100644 --- a/packages/cocoaint/src/appkit/NSBezierPath.inc +++ b/packages/cocoaint/src/appkit/NSBezierPath.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSBezierPath.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBEZIERPATH_PAS_H} -{$define NSBEZIERPATH_PAS_H} -type - NSBezierPathPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBEZIERPATH_PAS_T} @@ -69,6 +61,7 @@ type {$ifdef FORWARD} NSBezierPath = objcclass; + NSBezierPathPointer = ^NSBezierPath; {$endif} diff --git a/packages/cocoaint/src/appkit/NSBitmapImageRep.inc b/packages/cocoaint/src/appkit/NSBitmapImageRep.inc index 925f3f014e..84d18a6a59 100644 --- a/packages/cocoaint/src/appkit/NSBitmapImageRep.inc +++ b/packages/cocoaint/src/appkit/NSBitmapImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSBitmapImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBITMAPIMAGEREP_PAS_H} -{$define NSBITMAPIMAGEREP_PAS_H} -type - NSBitmapImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBITMAPIMAGEREP_PAS_T} @@ -80,6 +72,7 @@ type {$ifdef FORWARD} NSBitmapImageRep = objcclass; + NSBitmapImageRepPointer = ^NSBitmapImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSBox.inc b/packages/cocoaint/src/appkit/NSBox.inc index 2bad150600..b18e2e40fc 100644 --- a/packages/cocoaint/src/appkit/NSBox.inc +++ b/packages/cocoaint/src/appkit/NSBox.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSBox.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBOX_PAS_H} -{$define NSBOX_PAS_H} -type - NSBoxPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBOX_PAS_T} @@ -63,6 +55,7 @@ type {$ifdef FORWARD} NSBox = objcclass; + NSBoxPointer = ^NSBox; {$endif} diff --git a/packages/cocoaint/src/appkit/NSBrowser.inc b/packages/cocoaint/src/appkit/NSBrowser.inc index f99ff96314..b6f8336415 100644 --- a/packages/cocoaint/src/appkit/NSBrowser.inc +++ b/packages/cocoaint/src/appkit/NSBrowser.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSBrowser.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBROWSER_PAS_H} -{$define NSBROWSER_PAS_H} -type - NSBrowserPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBROWSER_PAS_T} @@ -125,6 +117,7 @@ var {$ifdef FORWARD} NSBrowser = objcclass; + NSBrowserPointer = ^NSBrowser; {$endif} diff --git a/packages/cocoaint/src/appkit/NSBrowserCell.inc b/packages/cocoaint/src/appkit/NSBrowserCell.inc index 918c6cc42a..69918b286c 100644 --- a/packages/cocoaint/src/appkit/NSBrowserCell.inc +++ b/packages/cocoaint/src/appkit/NSBrowserCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSBrowserCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBROWSERCELL_PAS_H} -{$define NSBROWSERCELL_PAS_H} -type - NSBrowserCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBROWSERCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSBrowserCell = objcclass; + NSBrowserCellPointer = ^NSBrowserCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSButton.inc b/packages/cocoaint/src/appkit/NSButton.inc index 2f0787cd40..729e39ec9b 100644 --- a/packages/cocoaint/src/appkit/NSButton.inc +++ b/packages/cocoaint/src/appkit/NSButton.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSButton.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBUTTON_PAS_H} -{$define NSBUTTON_PAS_H} -type - NSButtonPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBUTTON_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSButton = objcclass; + NSButtonPointer = ^NSButton; {$endif} diff --git a/packages/cocoaint/src/appkit/NSButtonCell.inc b/packages/cocoaint/src/appkit/NSButtonCell.inc index 039186faf0..af150aef49 100644 --- a/packages/cocoaint/src/appkit/NSButtonCell.inc +++ b/packages/cocoaint/src/appkit/NSButtonCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSButtonCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBUTTONCELL_PAS_H} -{$define NSBUTTONCELL_PAS_H} -type - NSButtonCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBUTTONCELL_PAS_T} @@ -158,6 +150,7 @@ _BCFlags2 = __BCFlags2; {$ifdef FORWARD} NSButtonCell = objcclass; + NSButtonCellPointer = ^NSButtonCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSCIImageRep.inc b/packages/cocoaint/src/appkit/NSCIImageRep.inc index 64e6eddf50..c5970716fc 100644 --- a/packages/cocoaint/src/appkit/NSCIImageRep.inc +++ b/packages/cocoaint/src/appkit/NSCIImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSCIImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCIIMAGEREP_PAS_H} -{$define NSCIIMAGEREP_PAS_H} -type - NSCIImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCIIMAGEREP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSCIImageRep = objcclass; + NSCIImageRepPointer = ^NSCIImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSCachedImageRep.inc b/packages/cocoaint/src/appkit/NSCachedImageRep.inc index a005632bbd..8caa487dd1 100644 --- a/packages/cocoaint/src/appkit/NSCachedImageRep.inc +++ b/packages/cocoaint/src/appkit/NSCachedImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSCachedImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCACHEDIMAGEREP_PAS_H} -{$define NSCACHEDIMAGEREP_PAS_H} -type - NSCachedImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCACHEDIMAGEREP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSCachedImageRep = objcclass; + NSCachedImageRepPointer = ^NSCachedImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSCell.inc b/packages/cocoaint/src/appkit/NSCell.inc index bf876da2b5..2fec0ddd12 100644 --- a/packages/cocoaint/src/appkit/NSCell.inc +++ b/packages/cocoaint/src/appkit/NSCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCELL_PAS_H} -{$define NSCELL_PAS_H} -type - NSCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCELL_PAS_T} @@ -193,11 +185,16 @@ procedure NSDrawNinePartImage(frame: NSRect; topLeftCornerPointer: NSImage; topE {$ifndef NSCELL_PAS_S} {$define NSCELL_PAS_S} +{ External string constants } +var + NSControlTintDidChangeNotification: NSString; external name '_NSControlTintDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSCell = objcclass; + NSCellPointer = ^NSCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSClipView.inc b/packages/cocoaint/src/appkit/NSClipView.inc index 838d8ec2bc..a734ab05b5 100644 --- a/packages/cocoaint/src/appkit/NSClipView.inc +++ b/packages/cocoaint/src/appkit/NSClipView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSClipView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCLIPVIEW_PAS_H} -{$define NSCLIPVIEW_PAS_H} -type - NSClipViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCLIPVIEW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSClipView = objcclass; + NSClipViewPointer = ^NSClipView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSCollectionView.inc b/packages/cocoaint/src/appkit/NSCollectionView.inc index f750f16c52..148f16ca9b 100644 --- a/packages/cocoaint/src/appkit/NSCollectionView.inc +++ b/packages/cocoaint/src/appkit/NSCollectionView.inc @@ -1,15 +1,6 @@ { Parsed from Appkit.framework NSCollectionView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLLECTIONVIEW_PAS_H} -{$define NSCOLLECTIONVIEW_PAS_H} -type - NSCollectionViewItemPointer = Pointer; - NSCollectionViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLLECTIONVIEW_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSCollectionViewItem = objcclass; + NSCollectionViewItemPointer = ^NSCollectionViewItem; NSCollectionView = objcclass; + NSCollectionViewPointer = ^NSCollectionView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSColor.inc b/packages/cocoaint/src/appkit/NSColor.inc index 6af1104be0..3223d3adbe 100644 --- a/packages/cocoaint/src/appkit/NSColor.inc +++ b/packages/cocoaint/src/appkit/NSColor.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSColor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLOR_PAS_H} -{$define NSCOLOR_PAS_H} -type - NSColorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLOR_PAS_T} @@ -39,11 +31,16 @@ const {$ifndef NSCOLOR_PAS_S} {$define NSCOLOR_PAS_S} +{ External string constants } +var + NSSystemColorsDidChangeNotification: NSString; external name '_NSSystemColorsDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSColor = objcclass; + NSColorPointer = ^NSColor; {$endif} diff --git a/packages/cocoaint/src/appkit/NSColorList.inc b/packages/cocoaint/src/appkit/NSColorList.inc index 88d58d65f4..b5403dd2f6 100644 --- a/packages/cocoaint/src/appkit/NSColorList.inc +++ b/packages/cocoaint/src/appkit/NSColorList.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSColorList.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLORLIST_PAS_H} -{$define NSCOLORLIST_PAS_H} -type - NSColorListPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLORLIST_PAS_T} @@ -35,11 +27,16 @@ type {$ifndef NSCOLORLIST_PAS_S} {$define NSCOLORLIST_PAS_S} +{ External string constants } +var + NSColorListDidChangeNotification: NSString; external name '_NSColorListDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSColorList = objcclass; + NSColorListPointer = ^NSColorList; {$endif} diff --git a/packages/cocoaint/src/appkit/NSColorPanel.inc b/packages/cocoaint/src/appkit/NSColorPanel.inc index 9c6d991e48..83379026da 100644 --- a/packages/cocoaint/src/appkit/NSColorPanel.inc +++ b/packages/cocoaint/src/appkit/NSColorPanel.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSColorPanel.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLORPANEL_PAS_H} -{$define NSCOLORPANEL_PAS_H} -type - NSColorPanelPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLORPANEL_PAS_T} @@ -63,11 +55,16 @@ const {$ifndef NSCOLORPANEL_PAS_S} {$define NSCOLORPANEL_PAS_S} +{ External string constants } +var + NSColorPanelColorDidChangeNotification: NSString; external name '_NSColorPanelColorDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSColorPanel = objcclass; + NSColorPanelPointer = ^NSColorPanel; {$endif} diff --git a/packages/cocoaint/src/appkit/NSColorPicker.inc b/packages/cocoaint/src/appkit/NSColorPicker.inc index 2672e56266..a636f8a1c8 100644 --- a/packages/cocoaint/src/appkit/NSColorPicker.inc +++ b/packages/cocoaint/src/appkit/NSColorPicker.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSColorPicker.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLORPICKER_PAS_H} -{$define NSCOLORPICKER_PAS_H} -type - NSColorPickerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLORPICKER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSColorPicker = objcclass; + NSColorPickerPointer = ^NSColorPicker; {$endif} diff --git a/packages/cocoaint/src/appkit/NSColorPicking.inc b/packages/cocoaint/src/appkit/NSColorPicking.inc index 22a2d2f3c5..eb37e9ad70 100644 --- a/packages/cocoaint/src/appkit/NSColorPicking.inc +++ b/packages/cocoaint/src/appkit/NSColorPicking.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSColorPicking.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSColorSpace.inc b/packages/cocoaint/src/appkit/NSColorSpace.inc index 1ddd490dcb..dae02d45d6 100644 --- a/packages/cocoaint/src/appkit/NSColorSpace.inc +++ b/packages/cocoaint/src/appkit/NSColorSpace.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSColorSpace.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLORSPACE_PAS_H} -{$define NSCOLORSPACE_PAS_H} -type - NSColorSpacePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLORSPACE_PAS_T} @@ -56,6 +48,7 @@ type {$ifdef FORWARD} NSColorSpace = objcclass; + NSColorSpacePointer = ^NSColorSpace; {$endif} diff --git a/packages/cocoaint/src/appkit/NSColorWell.inc b/packages/cocoaint/src/appkit/NSColorWell.inc index 1ef0decfb5..b7c642c0af 100644 --- a/packages/cocoaint/src/appkit/NSColorWell.inc +++ b/packages/cocoaint/src/appkit/NSColorWell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSColorWell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOLORWELL_PAS_H} -{$define NSCOLORWELL_PAS_H} -type - NSColorWellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOLORWELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSColorWell = objcclass; + NSColorWellPointer = ^NSColorWell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSComboBox.inc b/packages/cocoaint/src/appkit/NSComboBox.inc index b2491ff7e9..a38e28a3d5 100644 --- a/packages/cocoaint/src/appkit/NSComboBox.inc +++ b/packages/cocoaint/src/appkit/NSComboBox.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSComboBox.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOMBOBOX_PAS_H} -{$define NSCOMBOBOX_PAS_H} -type - NSComboBoxPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOMBOBOX_PAS_T} @@ -35,11 +27,19 @@ type {$ifndef NSCOMBOBOX_PAS_S} {$define NSCOMBOBOX_PAS_S} +{ External string constants } +var + NSComboBoxWillPopUpNotification: NSString; external name '_NSComboBoxWillPopUpNotification'; + NSComboBoxWillDismissNotification: NSString; external name '_NSComboBoxWillDismissNotification'; + NSComboBoxSelectionDidChangeNotification: NSString; external name '_NSComboBoxSelectionDidChangeNotification'; + NSComboBoxSelectionIsChangingNotification: NSString; external name '_NSComboBoxSelectionIsChangingNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSComboBox = objcclass; + NSComboBoxPointer = ^NSComboBox; {$endif} diff --git a/packages/cocoaint/src/appkit/NSComboBoxCell.inc b/packages/cocoaint/src/appkit/NSComboBoxCell.inc index 42b4e3bc1e..7549bdc857 100644 --- a/packages/cocoaint/src/appkit/NSComboBoxCell.inc +++ b/packages/cocoaint/src/appkit/NSComboBoxCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSComboBoxCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOMBOBOXCELL_PAS_H} -{$define NSCOMBOBOXCELL_PAS_H} -type - NSComboBoxCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOMBOBOXCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSComboBoxCell = objcclass; + NSComboBoxCellPointer = ^NSComboBoxCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSControl.inc b/packages/cocoaint/src/appkit/NSControl.inc index 458bf8c114..b4610c4043 100644 --- a/packages/cocoaint/src/appkit/NSControl.inc +++ b/packages/cocoaint/src/appkit/NSControl.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSControl.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCONTROL_PAS_H} -{$define NSCONTROL_PAS_H} -type - NSControlPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCONTROL_PAS_T} @@ -35,11 +27,18 @@ type {$ifndef NSCONTROL_PAS_S} {$define NSCONTROL_PAS_S} +{ External string constants } +var + NSControlTextDidBeginEditingNotification: NSString; external name '_NSControlTextDidBeginEditingNotification'; + NSControlTextDidEndEditingNotification: NSString; external name '_NSControlTextDidEndEditingNotification'; + NSControlTextDidChangeNotification: NSString; external name '_NSControlTextDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSControl = objcclass; + NSControlPointer = ^NSControl; {$endif} diff --git a/packages/cocoaint/src/appkit/NSController.inc b/packages/cocoaint/src/appkit/NSController.inc index 79b1fa9dd6..7c65d5c191 100644 --- a/packages/cocoaint/src/appkit/NSController.inc +++ b/packages/cocoaint/src/appkit/NSController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCONTROLLER_PAS_H} -{$define NSCONTROLLER_PAS_H} -type - NSControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSController = objcclass; + NSControllerPointer = ^NSController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSCursor.inc b/packages/cocoaint/src/appkit/NSCursor.inc index 849beca708..d17918128c 100644 --- a/packages/cocoaint/src/appkit/NSCursor.inc +++ b/packages/cocoaint/src/appkit/NSCursor.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSCursor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCURSOR_PAS_H} -{$define NSCURSOR_PAS_H} -type - NSCursorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCURSOR_PAS_T} @@ -44,6 +36,7 @@ const {$ifdef FORWARD} NSCursor = objcclass; + NSCursorPointer = ^NSCursor; {$endif} diff --git a/packages/cocoaint/src/appkit/NSCustomImageRep.inc b/packages/cocoaint/src/appkit/NSCustomImageRep.inc index fe0e5d02c7..fbc532a964 100644 --- a/packages/cocoaint/src/appkit/NSCustomImageRep.inc +++ b/packages/cocoaint/src/appkit/NSCustomImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSCustomImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCUSTOMIMAGEREP_PAS_H} -{$define NSCUSTOMIMAGEREP_PAS_H} -type - NSCustomImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCUSTOMIMAGEREP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSCustomImageRep = objcclass; + NSCustomImageRepPointer = ^NSCustomImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDatePicker.inc b/packages/cocoaint/src/appkit/NSDatePicker.inc index 008596ac9a..bf5571e896 100644 --- a/packages/cocoaint/src/appkit/NSDatePicker.inc +++ b/packages/cocoaint/src/appkit/NSDatePicker.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDatePicker.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDATEPICKER_PAS_H} -{$define NSDATEPICKER_PAS_H} -type - NSDatePickerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDATEPICKER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSDatePicker = objcclass; + NSDatePickerPointer = ^NSDatePicker; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDatePickerCell.inc b/packages/cocoaint/src/appkit/NSDatePickerCell.inc index d245fd392d..455ecd210b 100644 --- a/packages/cocoaint/src/appkit/NSDatePickerCell.inc +++ b/packages/cocoaint/src/appkit/NSDatePickerCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDatePickerCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDATEPICKERCELL_PAS_H} -{$define NSDATEPICKERCELL_PAS_H} -type - NSDatePickerCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDATEPICKERCELL_PAS_T} @@ -65,6 +57,7 @@ type {$ifdef FORWARD} NSDatePickerCell = objcclass; + NSDatePickerCellPointer = ^NSDatePickerCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDictionaryController.inc b/packages/cocoaint/src/appkit/NSDictionaryController.inc index 426925fcee..9df18af0da 100644 --- a/packages/cocoaint/src/appkit/NSDictionaryController.inc +++ b/packages/cocoaint/src/appkit/NSDictionaryController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDictionaryController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDICTIONARYCONTROLLER_PAS_H} -{$define NSDICTIONARYCONTROLLER_PAS_H} -type - NSDictionaryControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDICTIONARYCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSDictionaryController = objcclass; + NSDictionaryControllerPointer = ^NSDictionaryController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDockTile.inc b/packages/cocoaint/src/appkit/NSDockTile.inc index 8c42d50e76..2295429d60 100644 --- a/packages/cocoaint/src/appkit/NSDockTile.inc +++ b/packages/cocoaint/src/appkit/NSDockTile.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDockTile.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDOCKTILE_PAS_H} -{$define NSDOCKTILE_PAS_H} -type - NSDockTilePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDOCKTILE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSDockTile = objcclass; + NSDockTilePointer = ^NSDockTile; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDocument.inc b/packages/cocoaint/src/appkit/NSDocument.inc index ecc97c3ea8..3c3307b398 100644 --- a/packages/cocoaint/src/appkit/NSDocument.inc +++ b/packages/cocoaint/src/appkit/NSDocument.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDocument.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDOCUMENT_PAS_H} -{$define NSDOCUMENT_PAS_H} -type - NSDocumentPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDOCUMENT_PAS_T} @@ -61,6 +53,7 @@ type {$ifdef FORWARD} NSDocument = objcclass; + NSDocumentPointer = ^NSDocument; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDocumentController.inc b/packages/cocoaint/src/appkit/NSDocumentController.inc index fbca76e83a..c9e6703153 100644 --- a/packages/cocoaint/src/appkit/NSDocumentController.inc +++ b/packages/cocoaint/src/appkit/NSDocumentController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDocumentController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDOCUMENTCONTROLLER_PAS_H} -{$define NSDOCUMENTCONTROLLER_PAS_H} -type - NSDocumentControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDOCUMENTCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSDocumentController = objcclass; + NSDocumentControllerPointer = ^NSDocumentController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSDocumentScripting.inc b/packages/cocoaint/src/appkit/NSDocumentScripting.inc index 92014a8239..a65548f657 100644 --- a/packages/cocoaint/src/appkit/NSDocumentScripting.inc +++ b/packages/cocoaint/src/appkit/NSDocumentScripting.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSDocumentScripting.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSDragging.inc b/packages/cocoaint/src/appkit/NSDragging.inc index 87525b3c21..d14aedb985 100644 --- a/packages/cocoaint/src/appkit/NSDragging.inc +++ b/packages/cocoaint/src/appkit/NSDragging.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSDragging.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSDrawer.inc b/packages/cocoaint/src/appkit/NSDrawer.inc index dae93d0658..1c861fe57c 100644 --- a/packages/cocoaint/src/appkit/NSDrawer.inc +++ b/packages/cocoaint/src/appkit/NSDrawer.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSDrawer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDRAWER_PAS_H} -{$define NSDRAWER_PAS_H} -type - NSDrawerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDRAWER_PAS_T} @@ -47,11 +39,19 @@ type {$ifndef NSDRAWER_PAS_S} {$define NSDRAWER_PAS_S} +{ External string constants } +var + NSDrawerWillOpenNotification: NSString; external name '_NSDrawerWillOpenNotification'; + NSDrawerDidOpenNotification: NSString; external name '_NSDrawerDidOpenNotification'; + NSDrawerWillCloseNotification: NSString; external name '_NSDrawerWillCloseNotification'; + NSDrawerDidCloseNotification: NSString; external name '_NSDrawerDidCloseNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSDrawer = objcclass; + NSDrawerPointer = ^NSDrawer; {$endif} diff --git a/packages/cocoaint/src/appkit/NSEPSImageRep.inc b/packages/cocoaint/src/appkit/NSEPSImageRep.inc index 8cb4edf431..5151698f00 100644 --- a/packages/cocoaint/src/appkit/NSEPSImageRep.inc +++ b/packages/cocoaint/src/appkit/NSEPSImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSEPSImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSEPSIMAGEREP_PAS_H} -{$define NSEPSIMAGEREP_PAS_H} -type - NSEPSImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSEPSIMAGEREP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSEPSImageRep = objcclass; + NSEPSImageRepPointer = ^NSEPSImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSErrors.inc b/packages/cocoaint/src/appkit/NSErrors.inc index fe0457f2fb..c41df4cee1 100644 --- a/packages/cocoaint/src/appkit/NSErrors.inc +++ b/packages/cocoaint/src/appkit/NSErrors.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSErrors.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} @@ -27,5 +27,44 @@ {$ifndef NSERRORS_PAS_S} {$define NSERRORS_PAS_S} +{ External string constants } +var + NSTextLineTooLongException: NSString; external name '_NSTextLineTooLongException'; + NSTextNoSelectionException: NSString; external name '_NSTextNoSelectionException'; + NSWordTablesWriteException: NSString; external name '_NSWordTablesWriteException'; + NSWordTablesReadException: NSString; external name '_NSWordTablesReadException'; + NSTextReadException: NSString; external name '_NSTextReadException'; + NSTextWriteException: NSString; external name '_NSTextWriteException'; + NSPasteboardCommunicationException: NSString; external name '_NSPasteboardCommunicationException'; + NSPrintingCommunicationException: NSString; external name '_NSPrintingCommunicationException'; + NSAbortModalException: NSString; external name '_NSAbortModalException'; + NSAbortPrintingException: NSString; external name '_NSAbortPrintingException'; + NSIllegalSelectorException: NSString; external name '_NSIllegalSelectorException'; + NSAppKitVirtualMemoryException: NSString; external name '_NSAppKitVirtualMemoryException'; + NSBadRTFDirectiveException: NSString; external name '_NSBadRTFDirectiveException'; + NSBadRTFFontTableException: NSString; external name '_NSBadRTFFontTableException'; + NSBadRTFStyleSheetException: NSString; external name '_NSBadRTFStyleSheetException'; + NSTypedStreamVersionException: NSString; external name '_NSTypedStreamVersionException'; + NSTIFFException: NSString; external name '_NSTIFFException'; + NSPrintPackageException: NSString; external name '_NSPrintPackageException'; + NSBadRTFColorTableException: NSString; external name '_NSBadRTFColorTableException'; + NSDraggingException: NSString; external name '_NSDraggingException'; + NSColorListIOException: NSString; external name '_NSColorListIOException'; + NSColorListNotEditableException: NSString; external name '_NSColorListNotEditableException'; + NSBadBitmapParametersException: NSString; external name '_NSBadBitmapParametersException'; + NSWindowServerCommunicationException: NSString; external name '_NSWindowServerCommunicationException'; + NSFontUnavailableException: NSString; external name '_NSFontUnavailableException'; + NSPPDIncludeNotFoundException: NSString; external name '_NSPPDIncludeNotFoundException'; + NSPPDParseException: NSString; external name '_NSPPDParseException'; + NSPPDIncludeStackOverflowException: NSString; external name '_NSPPDIncludeStackOverflowException'; + NSPPDIncludeStackUnderflowException: NSString; external name '_NSPPDIncludeStackUnderflowException'; + NSRTFPropertyStackOverflowException: NSString; external name '_NSRTFPropertyStackOverflowException'; + NSAppKitIgnoredException: NSString; external name '_NSAppKitIgnoredException'; + NSBadComparisonException: NSString; external name '_NSBadComparisonException'; + NSImageCacheException: NSString; external name '_NSImageCacheException'; + NSNibLoadingException: NSString; external name '_NSNibLoadingException'; + NSBrowserIllegalDelegateException: NSString; external name '_NSBrowserIllegalDelegateException'; + NSAccessibilityException: NSString; external name '_NSAccessibilityException'; + {$endif} {$endif} diff --git a/packages/cocoaint/src/appkit/NSEvent.inc b/packages/cocoaint/src/appkit/NSEvent.inc index 4c744029a7..80b89553ae 100644 --- a/packages/cocoaint/src/appkit/NSEvent.inc +++ b/packages/cocoaint/src/appkit/NSEvent.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSEvent.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSEVENT_PAS_H} -{$define NSEVENT_PAS_H} -type - NSEventPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSEVENT_PAS_T} @@ -187,6 +179,7 @@ type {$ifdef FORWARD} NSEvent = objcclass; + NSEventPointer = ^NSEvent; {$endif} diff --git a/packages/cocoaint/src/appkit/NSFileWrapper.inc b/packages/cocoaint/src/appkit/NSFileWrapper.inc index 0afdfbfb1a..519867afda 100644 --- a/packages/cocoaint/src/appkit/NSFileWrapper.inc +++ b/packages/cocoaint/src/appkit/NSFileWrapper.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSFileWrapper.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFILEWRAPPER_PAS_H} -{$define NSFILEWRAPPER_PAS_H} -type - NSFileWrapperPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFILEWRAPPER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSFileWrapper = objcclass; + NSFileWrapperPointer = ^NSFileWrapper; {$endif} diff --git a/packages/cocoaint/src/appkit/NSFont.inc b/packages/cocoaint/src/appkit/NSFont.inc index 57c59d0a3f..89217bbf97 100644 --- a/packages/cocoaint/src/appkit/NSFont.inc +++ b/packages/cocoaint/src/appkit/NSFont.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSFont.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFONT_PAS_H} -{$define NSFONT_PAS_H} -type - NSFontPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFONT_PAS_T} @@ -67,11 +59,17 @@ function NSConvertGlyphsToPackedGlyphs(glBufPointer: NSGlyph; count: NSInteger; {$ifndef NSFONT_PAS_S} {$define NSFONT_PAS_S} +{ External string constants } +var + NSAntialiasThresholdChangedNotification: NSString; external name '_NSAntialiasThresholdChangedNotification'; + NSFontSetChangedNotification: NSString; external name '_NSFontSetChangedNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSFont = objcclass; + NSFontPointer = ^NSFont; {$endif} diff --git a/packages/cocoaint/src/appkit/NSFontDescriptor.inc b/packages/cocoaint/src/appkit/NSFontDescriptor.inc index 011db5add9..f9cfaae636 100644 --- a/packages/cocoaint/src/appkit/NSFontDescriptor.inc +++ b/packages/cocoaint/src/appkit/NSFontDescriptor.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSFontDescriptor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFONTDESCRIPTOR_PAS_H} -{$define NSFONTDESCRIPTOR_PAS_H} -type - NSFontDescriptorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFONTDESCRIPTOR_PAS_T} @@ -67,11 +59,38 @@ const {$ifndef NSFONTDESCRIPTOR_PAS_S} {$define NSFONTDESCRIPTOR_PAS_S} +{ External string constants } +var + NSFontFamilyAttribute: NSString; external name '_NSFontFamilyAttribute'; + NSFontNameAttribute: NSString; external name '_NSFontNameAttribute'; + NSFontFaceAttribute: NSString; external name '_NSFontFaceAttribute'; + NSFontSizeAttribute: NSString; external name '_NSFontSizeAttribute'; + NSFontVisibleNameAttribute: NSString; external name '_NSFontVisibleNameAttribute'; + NSFontMatrixAttribute: NSString; external name '_NSFontMatrixAttribute'; + NSFontVariationAttribute: NSString; external name '_NSFontVariationAttribute'; + NSFontCharacterSetAttribute: NSString; external name '_NSFontCharacterSetAttribute'; + NSFontCascadeListAttribute: NSString; external name '_NSFontCascadeListAttribute'; + NSFontTraitsAttribute: NSString; external name '_NSFontTraitsAttribute'; + NSFontFixedAdvanceAttribute: NSString; external name '_NSFontFixedAdvanceAttribute'; + NSFontFeatureSettingsAttribute: NSString; external name '_NSFontFeatureSettingsAttribute'; + NSFontSymbolicTrait: NSString; external name '_NSFontSymbolicTrait'; + NSFontWeightTrait: NSString; external name '_NSFontWeightTrait'; + NSFontWidthTrait: NSString; external name '_NSFontWidthTrait'; + NSFontSlantTrait: NSString; external name '_NSFontSlantTrait'; + NSFontVariationAxisIdentifierKey: NSString; external name '_NSFontVariationAxisIdentifierKey'; + NSFontVariationAxisMinimumValueKey: NSString; external name '_NSFontVariationAxisMinimumValueKey'; + NSFontVariationAxisMaximumValueKey: NSString; external name '_NSFontVariationAxisMaximumValueKey'; + NSFontVariationAxisDefaultValueKey: NSString; external name '_NSFontVariationAxisDefaultValueKey'; + NSFontVariationAxisNameKey: NSString; external name '_NSFontVariationAxisNameKey'; + NSFontFeatureTypeIdentifierKey: NSString; external name '_NSFontFeatureTypeIdentifierKey'; + NSFontFeatureSelectorIdentifierKey: NSString; external name '_NSFontFeatureSelectorIdentifierKey'; + {$endif} {$endif} {$ifdef FORWARD} NSFontDescriptor = objcclass; + NSFontDescriptorPointer = ^NSFontDescriptor; {$endif} diff --git a/packages/cocoaint/src/appkit/NSFontManager.inc b/packages/cocoaint/src/appkit/NSFontManager.inc index be86517466..e668aa8e16 100644 --- a/packages/cocoaint/src/appkit/NSFontManager.inc +++ b/packages/cocoaint/src/appkit/NSFontManager.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSFontManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFONTMANAGER_PAS_H} -{$define NSFONTMANAGER_PAS_H} -type - NSFontManagerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFONTMANAGER_PAS_T} @@ -74,6 +66,7 @@ const {$ifdef FORWARD} NSFontManager = objcclass; + NSFontManagerPointer = ^NSFontManager; {$endif} diff --git a/packages/cocoaint/src/appkit/NSFontPanel.inc b/packages/cocoaint/src/appkit/NSFontPanel.inc index 3808ff692d..7feb59db71 100644 --- a/packages/cocoaint/src/appkit/NSFontPanel.inc +++ b/packages/cocoaint/src/appkit/NSFontPanel.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSFontPanel.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFONTPANEL_PAS_H} -{$define NSFONTPANEL_PAS_H} -type - NSFontPanelPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFONTPANEL_PAS_T} @@ -64,6 +56,7 @@ const {$ifdef FORWARD} NSFontPanel = objcclass; + NSFontPanelPointer = ^NSFontPanel; {$endif} diff --git a/packages/cocoaint/src/appkit/NSForm.inc b/packages/cocoaint/src/appkit/NSForm.inc index fb77743472..5d5abe1cc6 100644 --- a/packages/cocoaint/src/appkit/NSForm.inc +++ b/packages/cocoaint/src/appkit/NSForm.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSForm.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSFormCell.inc b/packages/cocoaint/src/appkit/NSFormCell.inc index b28bef0af1..9b5e7a0091 100644 --- a/packages/cocoaint/src/appkit/NSFormCell.inc +++ b/packages/cocoaint/src/appkit/NSFormCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSFormCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFORMCELL_PAS_H} -{$define NSFORMCELL_PAS_H} -type - NSFormCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFORMCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSFormCell = objcclass; + NSFormCellPointer = ^NSFormCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSGlyphGenerator.inc b/packages/cocoaint/src/appkit/NSGlyphGenerator.inc index 1fb6357a4c..dc8314aef0 100644 --- a/packages/cocoaint/src/appkit/NSGlyphGenerator.inc +++ b/packages/cocoaint/src/appkit/NSGlyphGenerator.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSGlyphGenerator.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSGLYPHGENERATOR_PAS_H} -{$define NSGLYPHGENERATOR_PAS_H} -type - NSGlyphGeneratorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSGLYPHGENERATOR_PAS_T} @@ -48,6 +40,7 @@ const {$ifdef FORWARD} NSGlyphStorageProtocol = objcprotocol; NSGlyphGenerator = objcclass; + NSGlyphGeneratorPointer = ^NSGlyphGenerator; {$endif} diff --git a/packages/cocoaint/src/appkit/NSGlyphInfo.inc b/packages/cocoaint/src/appkit/NSGlyphInfo.inc index 4783a83eb5..8ad1b9d786 100644 --- a/packages/cocoaint/src/appkit/NSGlyphInfo.inc +++ b/packages/cocoaint/src/appkit/NSGlyphInfo.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSGlyphInfo.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSGLYPHINFO_PAS_H} -{$define NSGLYPHINFO_PAS_H} -type - NSGlyphInfoPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSGLYPHINFO_PAS_T} @@ -54,6 +46,7 @@ type {$ifdef FORWARD} NSGlyphInfo = objcclass; + NSGlyphInfoPointer = ^NSGlyphInfo; {$endif} diff --git a/packages/cocoaint/src/appkit/NSGradient.inc b/packages/cocoaint/src/appkit/NSGradient.inc index 7018b2dfe5..43a3b16ab4 100644 --- a/packages/cocoaint/src/appkit/NSGradient.inc +++ b/packages/cocoaint/src/appkit/NSGradient.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSGradient.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSGRADIENT_PAS_H} -{$define NSGRADIENT_PAS_H} -type - NSGradientPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSGRADIENT_PAS_T} @@ -50,6 +42,7 @@ const {$ifdef FORWARD} NSGradient = objcclass; + NSGradientPointer = ^NSGradient; {$endif} diff --git a/packages/cocoaint/src/appkit/NSGraphics.inc b/packages/cocoaint/src/appkit/NSGraphics.inc index 740a799680..062eb9ff6e 100644 --- a/packages/cocoaint/src/appkit/NSGraphics.inc +++ b/packages/cocoaint/src/appkit/NSGraphics.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSGraphics.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} @@ -121,6 +121,25 @@ procedure NSShowAnimationEffect(animationEffect: NSAnimationEffect; centerLocati {$ifndef NSGRAPHICS_PAS_S} {$define NSGRAPHICS_PAS_S} +{ External string constants } +var + NSCalibratedWhiteColorSpace: NSString; external name '_NSCalibratedWhiteColorSpace'; + NSCalibratedBlackColorSpace: NSString; external name '_NSCalibratedBlackColorSpace'; + NSCalibratedRGBColorSpace: NSString; external name '_NSCalibratedRGBColorSpace'; + NSDeviceWhiteColorSpace: NSString; external name '_NSDeviceWhiteColorSpace'; + NSDeviceBlackColorSpace: NSString; external name '_NSDeviceBlackColorSpace'; + NSDeviceRGBColorSpace: NSString; external name '_NSDeviceRGBColorSpace'; + NSDeviceCMYKColorSpace: NSString; external name '_NSDeviceCMYKColorSpace'; + NSNamedColorSpace: NSString; external name '_NSNamedColorSpace'; + NSPatternColorSpace: NSString; external name '_NSPatternColorSpace'; + NSCustomColorSpace: NSString; external name '_NSCustomColorSpace'; + NSDeviceResolution: NSString; external name '_NSDeviceResolution'; + NSDeviceColorSpaceName: NSString; external name '_NSDeviceColorSpaceName'; + NSDeviceBitsPerSample: NSString; external name '_NSDeviceBitsPerSample'; + NSDeviceIsScreen: NSString; external name '_NSDeviceIsScreen'; + NSDeviceIsPrinter: NSString; external name '_NSDeviceIsPrinter'; + NSDeviceSize: NSString; external name '_NSDeviceSize'; + { External symbols } var NSWhite: CGFloat; external name '_NSWhite'; diff --git a/packages/cocoaint/src/appkit/NSGraphicsContext.inc b/packages/cocoaint/src/appkit/NSGraphicsContext.inc index bd42486a30..0b318ba0e4 100644 --- a/packages/cocoaint/src/appkit/NSGraphicsContext.inc +++ b/packages/cocoaint/src/appkit/NSGraphicsContext.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSGraphicsContext.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSGRAPHICSCONTEXT_PAS_H} -{$define NSGRAPHICSCONTEXT_PAS_H} -type - NSGraphicsContextPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSGRAPHICSCONTEXT_PAS_T} @@ -55,11 +47,19 @@ type {$ifndef NSGRAPHICSCONTEXT_PAS_S} {$define NSGRAPHICSCONTEXT_PAS_S} +{ External string constants } +var + NSGraphicsContextDestinationAttributeName: NSString; external name '_NSGraphicsContextDestinationAttributeName'; + NSGraphicsContextRepresentationFormatAttributeName: NSString; external name '_NSGraphicsContextRepresentationFormatAttributeName'; + NSGraphicsContextPSFormat: NSString; external name '_NSGraphicsContextPSFormat'; + NSGraphicsContextPDFFormat: NSString; external name '_NSGraphicsContextPDFFormat'; + {$endif} {$endif} {$ifdef FORWARD} NSGraphicsContext = objcclass; + NSGraphicsContextPointer = ^NSGraphicsContext; {$endif} diff --git a/packages/cocoaint/src/appkit/NSHelpManager.inc b/packages/cocoaint/src/appkit/NSHelpManager.inc index 1ec45fe97f..472b7d1774 100644 --- a/packages/cocoaint/src/appkit/NSHelpManager.inc +++ b/packages/cocoaint/src/appkit/NSHelpManager.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSHelpManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSHELPMANAGER_PAS_H} -{$define NSHELPMANAGER_PAS_H} -type - NSHelpManagerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSHELPMANAGER_PAS_T} @@ -35,11 +27,17 @@ type {$ifndef NSHELPMANAGER_PAS_S} {$define NSHELPMANAGER_PAS_S} +{ External string constants } +var + NSContextHelpModeDidActivateNotification: NSString; external name '_NSContextHelpModeDidActivateNotification'; + NSContextHelpModeDidDeactivateNotification: NSString; external name '_NSContextHelpModeDidDeactivateNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSHelpManager = objcclass; + NSHelpManagerPointer = ^NSHelpManager; {$endif} diff --git a/packages/cocoaint/src/appkit/NSImage.inc b/packages/cocoaint/src/appkit/NSImage.inc index 7bbe54be2b..8f02b7dcfe 100644 --- a/packages/cocoaint/src/appkit/NSImage.inc +++ b/packages/cocoaint/src/appkit/NSImage.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSImage.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSIMAGE_PAS_H} -{$define NSIMAGE_PAS_H} -type - NSImagePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSIMAGE_PAS_T} @@ -107,6 +99,7 @@ var {$ifdef FORWARD} NSImage = objcclass; + NSImagePointer = ^NSImage; {$endif} diff --git a/packages/cocoaint/src/appkit/NSImageCell.inc b/packages/cocoaint/src/appkit/NSImageCell.inc index ee1a6177e7..2b9269d12f 100644 --- a/packages/cocoaint/src/appkit/NSImageCell.inc +++ b/packages/cocoaint/src/appkit/NSImageCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSImageCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSIMAGECELL_PAS_H} -{$define NSIMAGECELL_PAS_H} -type - NSImageCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSIMAGECELL_PAS_T} @@ -65,6 +57,7 @@ type {$ifdef FORWARD} NSImageCell = objcclass; + NSImageCellPointer = ^NSImageCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSImageRep.inc b/packages/cocoaint/src/appkit/NSImageRep.inc index 2e89790e53..c569bece6a 100644 --- a/packages/cocoaint/src/appkit/NSImageRep.inc +++ b/packages/cocoaint/src/appkit/NSImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSIMAGEREP_PAS_H} -{$define NSIMAGEREP_PAS_H} -type - NSImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSIMAGEREP_PAS_T} @@ -40,11 +32,16 @@ const {$ifndef NSIMAGEREP_PAS_S} {$define NSIMAGEREP_PAS_S} +{ External string constants } +var + NSImageRepRegistryDidChangeNotification: NSString; external name '_NSImageRepRegistryDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSImageRep = objcclass; + NSImageRepPointer = ^NSImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSImageView.inc b/packages/cocoaint/src/appkit/NSImageView.inc index 1dd57e286f..c1e8d7fe76 100644 --- a/packages/cocoaint/src/appkit/NSImageView.inc +++ b/packages/cocoaint/src/appkit/NSImageView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSImageView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSIMAGEVIEW_PAS_H} -{$define NSIMAGEVIEW_PAS_H} -type - NSImageViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSIMAGEVIEW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSImageView = objcclass; + NSImageViewPointer = ^NSImageView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSInputManager.inc b/packages/cocoaint/src/appkit/NSInputManager.inc index 2e155c08ac..f5308cadd3 100644 --- a/packages/cocoaint/src/appkit/NSInputManager.inc +++ b/packages/cocoaint/src/appkit/NSInputManager.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSInputManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSINPUTMANAGER_PAS_H} -{$define NSINPUTMANAGER_PAS_H} -type - NSInputManagerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSINPUTMANAGER_PAS_T} @@ -41,6 +33,7 @@ type {$ifdef FORWARD} NSTextInputProtocol = objcprotocol; NSInputManager = objcclass; + NSInputManagerPointer = ^NSInputManager; {$endif} diff --git a/packages/cocoaint/src/appkit/NSInputServer.inc b/packages/cocoaint/src/appkit/NSInputServer.inc index d4cbccfdf0..d5bd4f93b0 100644 --- a/packages/cocoaint/src/appkit/NSInputServer.inc +++ b/packages/cocoaint/src/appkit/NSInputServer.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSInputServer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSINPUTSERVER_PAS_H} -{$define NSINPUTSERVER_PAS_H} -type - NSInputServerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSINPUTSERVER_PAS_T} @@ -42,6 +34,7 @@ type NSInputServiceProviderProtocol = objcprotocol; NSInputServerMouseTrackerProtocol = objcprotocol; NSInputServer = objcclass; + NSInputServerPointer = ^NSInputServer; {$endif} diff --git a/packages/cocoaint/src/appkit/NSInterfaceStyle.inc b/packages/cocoaint/src/appkit/NSInterfaceStyle.inc index 683a2d1563..9a332f9abd 100644 --- a/packages/cocoaint/src/appkit/NSInterfaceStyle.inc +++ b/packages/cocoaint/src/appkit/NSInterfaceStyle.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSInterfaceStyle.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} @@ -42,5 +42,9 @@ function NSInterfaceStyleForKey(keyPointer: NSString; responderPointer: NSRespon {$ifndef NSINTERFACESTYLE_PAS_S} {$define NSINTERFACESTYLE_PAS_S} +{ External string constants } +var + NSInterfaceStyleDefault: NSString; external name '_NSInterfaceStyleDefault'; + {$endif} {$endif} diff --git a/packages/cocoaint/src/appkit/NSKeyValueBinding.inc b/packages/cocoaint/src/appkit/NSKeyValueBinding.inc index 29f30da2ea..e47980b9c8 100644 --- a/packages/cocoaint/src/appkit/NSKeyValueBinding.inc +++ b/packages/cocoaint/src/appkit/NSKeyValueBinding.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSKeyValueBinding.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} @@ -36,5 +36,115 @@ var NSNoSelectionMarker: id; external name '_NSNoSelectionMarker'; NSNotApplicableMarker: id; external name '_NSNotApplicableMarker'; +{ External string constants } +var + NSObservedObjectKey: NSString; external name '_NSObservedObjectKey'; + NSObservedKeyPathKey: NSString; external name '_NSObservedKeyPathKey'; + NSOptionsKey: NSString; external name '_NSOptionsKey'; + NSAlignmentBinding: NSString; external name '_NSAlignmentBinding'; + NSAlternateImageBinding: NSString; external name '_NSAlternateImageBinding'; + NSAlternateTitleBinding: NSString; external name '_NSAlternateTitleBinding'; + NSAnimateBinding: NSString; external name '_NSAnimateBinding'; + NSAnimationDelayBinding: NSString; external name '_NSAnimationDelayBinding'; + NSArgumentBinding: NSString; external name '_NSArgumentBinding'; + NSAttributedStringBinding: NSString; external name '_NSAttributedStringBinding'; + NSContentArrayBinding: NSString; external name '_NSContentArrayBinding'; + NSContentArrayForMultipleSelectionBinding: NSString; external name '_NSContentArrayForMultipleSelectionBinding'; + NSContentBinding: NSString; external name '_NSContentBinding'; + NSContentDictionaryBinding: NSString; external name '_NSContentDictionaryBinding'; + NSContentHeightBinding: NSString; external name '_NSContentHeightBinding'; + NSContentObjectBinding: NSString; external name '_NSContentObjectBinding'; + NSContentObjectsBinding: NSString; external name '_NSContentObjectsBinding'; + NSContentSetBinding: NSString; external name '_NSContentSetBinding'; + NSContentValuesBinding: NSString; external name '_NSContentValuesBinding'; + NSContentWidthBinding: NSString; external name '_NSContentWidthBinding'; + NSCriticalValueBinding: NSString; external name '_NSCriticalValueBinding'; + NSDataBinding: NSString; external name '_NSDataBinding'; + NSDisplayPatternTitleBinding: NSString; external name '_NSDisplayPatternTitleBinding'; + NSDisplayPatternValueBinding: NSString; external name '_NSDisplayPatternValueBinding'; + NSDocumentEditedBinding: NSString; external name '_NSDocumentEditedBinding'; + NSDoubleClickArgumentBinding: NSString; external name '_NSDoubleClickArgumentBinding'; + NSDoubleClickTargetBinding: NSString; external name '_NSDoubleClickTargetBinding'; + NSEditableBinding: NSString; external name '_NSEditableBinding'; + NSEnabledBinding: NSString; external name '_NSEnabledBinding'; + NSExcludedKeysBinding: NSString; external name '_NSExcludedKeysBinding'; + NSFilterPredicateBinding: NSString; external name '_NSFilterPredicateBinding'; + NSFontBinding: NSString; external name '_NSFontBinding'; + NSFontBoldBinding: NSString; external name '_NSFontBoldBinding'; + NSFontFamilyNameBinding: NSString; external name '_NSFontFamilyNameBinding'; + NSFontItalicBinding: NSString; external name '_NSFontItalicBinding'; + NSFontNameBinding: NSString; external name '_NSFontNameBinding'; + NSFontSizeBinding: NSString; external name '_NSFontSizeBinding'; + NSHeaderTitleBinding: NSString; external name '_NSHeaderTitleBinding'; + NSHiddenBinding: NSString; external name '_NSHiddenBinding'; + NSImageBinding: NSString; external name '_NSImageBinding'; + NSIncludedKeysBinding: NSString; external name '_NSIncludedKeysBinding'; + NSInitialKeyBinding: NSString; external name '_NSInitialKeyBinding'; + NSInitialValueBinding: NSString; external name '_NSInitialValueBinding'; + NSIsIndeterminateBinding: NSString; external name '_NSIsIndeterminateBinding'; + NSLabelBinding: NSString; external name '_NSLabelBinding'; + NSLocalizedKeyDictionaryBinding: NSString; external name '_NSLocalizedKeyDictionaryBinding'; + NSManagedObjectContextBinding: NSString; external name '_NSManagedObjectContextBinding'; + NSMaximumRecentsBinding: NSString; external name '_NSMaximumRecentsBinding'; + NSMaxValueBinding: NSString; external name '_NSMaxValueBinding'; + NSMaxWidthBinding: NSString; external name '_NSMaxWidthBinding'; + NSMinValueBinding: NSString; external name '_NSMinValueBinding'; + NSMinWidthBinding: NSString; external name '_NSMinWidthBinding'; + NSMixedStateImageBinding: NSString; external name '_NSMixedStateImageBinding'; + NSOffStateImageBinding: NSString; external name '_NSOffStateImageBinding'; + NSOnStateImageBinding: NSString; external name '_NSOnStateImageBinding'; + NSPredicateBinding: NSString; external name '_NSPredicateBinding'; + NSRecentSearchesBinding: NSString; external name '_NSRecentSearchesBinding'; + NSRepresentedFilenameBinding: NSString; external name '_NSRepresentedFilenameBinding'; + NSRowHeightBinding: NSString; external name '_NSRowHeightBinding'; + NSSelectedIdentifierBinding: NSString; external name '_NSSelectedIdentifierBinding'; + NSSelectedIndexBinding: NSString; external name '_NSSelectedIndexBinding'; + NSSelectedLabelBinding: NSString; external name '_NSSelectedLabelBinding'; + NSSelectedObjectBinding: NSString; external name '_NSSelectedObjectBinding'; + NSSelectedObjectsBinding: NSString; external name '_NSSelectedObjectsBinding'; + NSSelectedTagBinding: NSString; external name '_NSSelectedTagBinding'; + NSSelectedValueBinding: NSString; external name '_NSSelectedValueBinding'; + NSSelectedValuesBinding: NSString; external name '_NSSelectedValuesBinding'; + NSSelectionIndexesBinding: NSString; external name '_NSSelectionIndexesBinding'; + NSSelectionIndexPathsBinding: NSString; external name '_NSSelectionIndexPathsBinding'; + NSSortDescriptorsBinding: NSString; external name '_NSSortDescriptorsBinding'; + NSTargetBinding: NSString; external name '_NSTargetBinding'; + NSTextColorBinding: NSString; external name '_NSTextColorBinding'; + NSTitleBinding: NSString; external name '_NSTitleBinding'; + NSToolTipBinding: NSString; external name '_NSToolTipBinding'; + NSTransparentBinding: NSString; external name '_NSTransparentBinding'; + NSValueBinding: NSString; external name '_NSValueBinding'; + NSValuePathBinding: NSString; external name '_NSValuePathBinding'; + NSValueURLBinding: NSString; external name '_NSValueURLBinding'; + NSVisibleBinding: NSString; external name '_NSVisibleBinding'; + NSWarningValueBinding: NSString; external name '_NSWarningValueBinding'; + NSWidthBinding: NSString; external name '_NSWidthBinding'; + NSAllowsEditingMultipleValuesSelectionBindingOption: NSString; external name '_NSAllowsEditingMultipleValuesSelectionBindingOption'; + NSAllowsNullArgumentBindingOption: NSString; external name '_NSAllowsNullArgumentBindingOption'; + NSAlwaysPresentsApplicationModalAlertsBindingOption: NSString; external name '_NSAlwaysPresentsApplicationModalAlertsBindingOption'; + NSConditionallySetsEditableBindingOption: NSString; external name '_NSConditionallySetsEditableBindingOption'; + NSConditionallySetsEnabledBindingOption: NSString; external name '_NSConditionallySetsEnabledBindingOption'; + NSConditionallySetsHiddenBindingOption: NSString; external name '_NSConditionallySetsHiddenBindingOption'; + NSContinuouslyUpdatesValueBindingOption: NSString; external name '_NSContinuouslyUpdatesValueBindingOption'; + NSCreatesSortDescriptorBindingOption: NSString; external name '_NSCreatesSortDescriptorBindingOption'; + NSDeletesObjectsOnRemoveBindingsOption: NSString; external name '_NSDeletesObjectsOnRemoveBindingsOption'; + NSDisplayNameBindingOption: NSString; external name '_NSDisplayNameBindingOption'; + NSDisplayPatternBindingOption: NSString; external name '_NSDisplayPatternBindingOption'; + NSContentPlacementTagBindingOption: NSString; external name '_NSContentPlacementTagBindingOption'; + NSHandlesContentAsCompoundValueBindingOption: NSString; external name '_NSHandlesContentAsCompoundValueBindingOption'; + NSInsertsNullPlaceholderBindingOption: NSString; external name '_NSInsertsNullPlaceholderBindingOption'; + NSInvokesSeparatelyWithArrayObjectsBindingOption: NSString; external name '_NSInvokesSeparatelyWithArrayObjectsBindingOption'; + NSMultipleValuesPlaceholderBindingOption: NSString; external name '_NSMultipleValuesPlaceholderBindingOption'; + NSNoSelectionPlaceholderBindingOption: NSString; external name '_NSNoSelectionPlaceholderBindingOption'; + NSNotApplicablePlaceholderBindingOption: NSString; external name '_NSNotApplicablePlaceholderBindingOption'; + NSNullPlaceholderBindingOption: NSString; external name '_NSNullPlaceholderBindingOption'; + NSRaisesForNotApplicableKeysBindingOption: NSString; external name '_NSRaisesForNotApplicableKeysBindingOption'; + NSPredicateFormatBindingOption: NSString; external name '_NSPredicateFormatBindingOption'; + NSSelectorNameBindingOption: NSString; external name '_NSSelectorNameBindingOption'; + NSSelectsAllWhenSettingContentBindingOption: NSString; external name '_NSSelectsAllWhenSettingContentBindingOption'; + NSValidatesImmediatelyBindingOption: NSString; external name '_NSValidatesImmediatelyBindingOption'; + NSValueTransformerNameBindingOption: NSString; external name '_NSValueTransformerNameBindingOption'; + NSValueTransformerBindingOption: NSString; external name '_NSValueTransformerBindingOption'; + {$endif} {$endif} diff --git a/packages/cocoaint/src/appkit/NSLayoutManager.inc b/packages/cocoaint/src/appkit/NSLayoutManager.inc index fa3ff994d4..a43e13ebfb 100644 --- a/packages/cocoaint/src/appkit/NSLayoutManager.inc +++ b/packages/cocoaint/src/appkit/NSLayoutManager.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSLayoutManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSLAYOUTMANAGER_PAS_H} -{$define NSLAYOUTMANAGER_PAS_H} -type - NSLayoutManagerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSLAYOUTMANAGER_PAS_T} @@ -68,6 +60,7 @@ type {$ifdef FORWARD} NSLayoutManager = objcclass; + NSLayoutManagerPointer = ^NSLayoutManager; {$endif} diff --git a/packages/cocoaint/src/appkit/NSLevelIndicator.inc b/packages/cocoaint/src/appkit/NSLevelIndicator.inc index 05f4a45381..b09bd359ba 100644 --- a/packages/cocoaint/src/appkit/NSLevelIndicator.inc +++ b/packages/cocoaint/src/appkit/NSLevelIndicator.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSLevelIndicator.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSLEVELINDICATOR_PAS_H} -{$define NSLEVELINDICATOR_PAS_H} -type - NSLevelIndicatorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSLEVELINDICATOR_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSLevelIndicator = objcclass; + NSLevelIndicatorPointer = ^NSLevelIndicator; {$endif} diff --git a/packages/cocoaint/src/appkit/NSLevelIndicatorCell.inc b/packages/cocoaint/src/appkit/NSLevelIndicatorCell.inc index e44ae2fb1b..cf5e1deb48 100644 --- a/packages/cocoaint/src/appkit/NSLevelIndicatorCell.inc +++ b/packages/cocoaint/src/appkit/NSLevelIndicatorCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSLevelIndicatorCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSLEVELINDICATORCELL_PAS_H} -{$define NSLEVELINDICATORCELL_PAS_H} -type - NSLevelIndicatorCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSLEVELINDICATORCELL_PAS_T} @@ -52,6 +44,7 @@ type {$ifdef FORWARD} NSLevelIndicatorCell = objcclass; + NSLevelIndicatorCellPointer = ^NSLevelIndicatorCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMatrix.inc b/packages/cocoaint/src/appkit/NSMatrix.inc index bede9538f7..bf4d3b6f07 100644 --- a/packages/cocoaint/src/appkit/NSMatrix.inc +++ b/packages/cocoaint/src/appkit/NSMatrix.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMatrix.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMATRIX_PAS_H} -{$define NSMATRIX_PAS_H} -type - NSMatrixPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMATRIX_PAS_T} @@ -120,6 +112,7 @@ _MFlags = __MFlags; {$ifdef FORWARD} NSMatrix = objcclass; + NSMatrixPointer = ^NSMatrix; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMenu.inc b/packages/cocoaint/src/appkit/NSMenu.inc index ecf5222366..e8c0fac74f 100644 --- a/packages/cocoaint/src/appkit/NSMenu.inc +++ b/packages/cocoaint/src/appkit/NSMenu.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMenu.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMENU_PAS_H} -{$define NSMENU_PAS_H} -type - NSMenuPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMENU_PAS_T} @@ -35,11 +27,22 @@ type {$ifndef NSMENU_PAS_S} {$define NSMENU_PAS_S} +{ External string constants } +var + NSMenuWillSendActionNotification: NSString; external name '_NSMenuWillSendActionNotification'; + NSMenuDidSendActionNotification: NSString; external name '_NSMenuDidSendActionNotification'; + NSMenuDidAddItemNotification: NSString; external name '_NSMenuDidAddItemNotification'; + NSMenuDidRemoveItemNotification: NSString; external name '_NSMenuDidRemoveItemNotification'; + NSMenuDidChangeItemNotification: NSString; external name '_NSMenuDidChangeItemNotification'; + NSMenuDidBeginTrackingNotification: NSString; external name '_NSMenuDidBeginTrackingNotification'; + NSMenuDidEndTrackingNotification: NSString; external name '_NSMenuDidEndTrackingNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSMenu = objcclass; + NSMenuPointer = ^NSMenu; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMenuItem.inc b/packages/cocoaint/src/appkit/NSMenuItem.inc index 53d7bf44fb..a9b3b8fe6a 100644 --- a/packages/cocoaint/src/appkit/NSMenuItem.inc +++ b/packages/cocoaint/src/appkit/NSMenuItem.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMenuItem.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMENUITEM_PAS_H} -{$define NSMENUITEM_PAS_H} -type - NSMenuItemPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMENUITEM_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSMenuItem = objcclass; + NSMenuItemPointer = ^NSMenuItem; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMenuItemCell.inc b/packages/cocoaint/src/appkit/NSMenuItemCell.inc index f97b57c299..a235dc7093 100644 --- a/packages/cocoaint/src/appkit/NSMenuItemCell.inc +++ b/packages/cocoaint/src/appkit/NSMenuItemCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMenuItemCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMENUITEMCELL_PAS_H} -{$define NSMENUITEMCELL_PAS_H} -type - NSMenuItemCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMENUITEMCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSMenuItemCell = objcclass; + NSMenuItemCellPointer = ^NSMenuItemCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMenuView.inc b/packages/cocoaint/src/appkit/NSMenuView.inc index cdba2ed716..0ead4fe66e 100644 --- a/packages/cocoaint/src/appkit/NSMenuView.inc +++ b/packages/cocoaint/src/appkit/NSMenuView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMenuView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMENUVIEW_PAS_H} -{$define NSMENUVIEW_PAS_H} -type - NSMenuViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMENUVIEW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSMenuView = objcclass; + NSMenuViewPointer = ^NSMenuView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMovie.inc b/packages/cocoaint/src/appkit/NSMovie.inc index 8349c9d3f8..be28b1cb49 100644 --- a/packages/cocoaint/src/appkit/NSMovie.inc +++ b/packages/cocoaint/src/appkit/NSMovie.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMovie.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMOVIE_PAS_H} -{$define NSMOVIE_PAS_H} -type - NSMoviePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMOVIE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSMovie = objcclass; + NSMoviePointer = ^NSMovie; {$endif} diff --git a/packages/cocoaint/src/appkit/NSMovieView.inc b/packages/cocoaint/src/appkit/NSMovieView.inc index a745c3fe7b..db1200b335 100644 --- a/packages/cocoaint/src/appkit/NSMovieView.inc +++ b/packages/cocoaint/src/appkit/NSMovieView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSMovieView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMOVIEVIEW_PAS_H} -{$define NSMOVIEVIEW_PAS_H} -type - NSMovieViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMOVIEVIEW_PAS_T} @@ -64,6 +56,7 @@ _MVFlags = __MVFlags; {$ifdef FORWARD} NSMovieView = objcclass; + NSMovieViewPointer = ^NSMovieView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSNib.inc b/packages/cocoaint/src/appkit/NSNib.inc index 485ce2908c..86dffa1eb0 100644 --- a/packages/cocoaint/src/appkit/NSNib.inc +++ b/packages/cocoaint/src/appkit/NSNib.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSNib.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSNIB_PAS_H} -{$define NSNIB_PAS_H} -type - NSNibPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSNIB_PAS_T} @@ -35,11 +27,17 @@ type {$ifndef NSNIB_PAS_S} {$define NSNIB_PAS_S} +{ External string constants } +var + NSNibOwner: NSString; external name '_NSNibOwner'; + NSNibTopLevelObjects: NSString; external name '_NSNibTopLevelObjects'; + {$endif} {$endif} {$ifdef FORWARD} NSNib = objcclass; + NSNibPointer = ^NSNib; {$endif} diff --git a/packages/cocoaint/src/appkit/NSNibLoading.inc b/packages/cocoaint/src/appkit/NSNibLoading.inc index 94c9a96856..d7e71ddf35 100644 --- a/packages/cocoaint/src/appkit/NSNibLoading.inc +++ b/packages/cocoaint/src/appkit/NSNibLoading.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSNibLoading.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSObjectController.inc b/packages/cocoaint/src/appkit/NSObjectController.inc index 3bc3ee98c0..e36ac75bec 100644 --- a/packages/cocoaint/src/appkit/NSObjectController.inc +++ b/packages/cocoaint/src/appkit/NSObjectController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSObjectController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSOBJECTCONTROLLER_PAS_H} -{$define NSOBJECTCONTROLLER_PAS_H} -type - NSObjectControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSOBJECTCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSObjectController = objcclass; + NSObjectControllerPointer = ^NSObjectController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSOpenGL.inc b/packages/cocoaint/src/appkit/NSOpenGL.inc index 057340f2d3..e395a1d5f2 100644 --- a/packages/cocoaint/src/appkit/NSOpenGL.inc +++ b/packages/cocoaint/src/appkit/NSOpenGL.inc @@ -1,16 +1,6 @@ { Parsed from Appkit.framework NSOpenGL.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSOPENGL_PAS_H} -{$define NSOPENGL_PAS_H} -type - NSOpenGLPixelFormatPointer = Pointer; - NSOpenGLPixelBufferPointer = Pointer; - NSOpenGLContextPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSOPENGL_PAS_T} @@ -113,8 +103,11 @@ type {$ifdef FORWARD} NSOpenGLPixelFormat = objcclass; + NSOpenGLPixelFormatPointer = ^NSOpenGLPixelFormat; NSOpenGLPixelBuffer = objcclass; + NSOpenGLPixelBufferPointer = ^NSOpenGLPixelBuffer; NSOpenGLContext = objcclass; + NSOpenGLContextPointer = ^NSOpenGLContext; {$endif} diff --git a/packages/cocoaint/src/appkit/NSOpenGLView.inc b/packages/cocoaint/src/appkit/NSOpenGLView.inc index da7a8797c8..1dda83b272 100644 --- a/packages/cocoaint/src/appkit/NSOpenGLView.inc +++ b/packages/cocoaint/src/appkit/NSOpenGLView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSOpenGLView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSOPENGLVIEW_PAS_H} -{$define NSOPENGLVIEW_PAS_H} -type - NSOpenGLViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSOPENGLVIEW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSOpenGLView = objcclass; + NSOpenGLViewPointer = ^NSOpenGLView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSOpenPanel.inc b/packages/cocoaint/src/appkit/NSOpenPanel.inc index 9b36601c90..a3c6becdd3 100644 --- a/packages/cocoaint/src/appkit/NSOpenPanel.inc +++ b/packages/cocoaint/src/appkit/NSOpenPanel.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSOpenPanel.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSOPENPANEL_PAS_H} -{$define NSOPENPANEL_PAS_H} -type - NSOpenPanelPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSOPENPANEL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSOpenPanel = objcclass; + NSOpenPanelPointer = ^NSOpenPanel; {$endif} diff --git a/packages/cocoaint/src/appkit/NSOutlineView.inc b/packages/cocoaint/src/appkit/NSOutlineView.inc index e4eeffdf5a..ca7ae9f9fd 100644 --- a/packages/cocoaint/src/appkit/NSOutlineView.inc +++ b/packages/cocoaint/src/appkit/NSOutlineView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSOutlineView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSOUTLINEVIEW_PAS_H} -{$define NSOUTLINEVIEW_PAS_H} -type - NSOutlineViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSOUTLINEVIEW_PAS_T} @@ -87,11 +79,23 @@ _OVFlags = __OvFlags; {$ifndef NSOUTLINEVIEW_PAS_S} {$define NSOUTLINEVIEW_PAS_S} +{ External string constants } +var + NSOutlineViewSelectionDidChangeNotification: NSString; external name '_NSOutlineViewSelectionDidChangeNotification'; + NSOutlineViewColumnDidMoveNotification: NSString; external name '_NSOutlineViewColumnDidMoveNotification'; + NSOutlineViewColumnDidResizeNotification: NSString; external name '_NSOutlineViewColumnDidResizeNotification'; + NSOutlineViewSelectionIsChangingNotification: NSString; external name '_NSOutlineViewSelectionIsChangingNotification'; + NSOutlineViewItemWillExpandNotification: NSString; external name '_NSOutlineViewItemWillExpandNotification'; + NSOutlineViewItemDidExpandNotification: NSString; external name '_NSOutlineViewItemDidExpandNotification'; + NSOutlineViewItemWillCollapseNotification: NSString; external name '_NSOutlineViewItemWillCollapseNotification'; + NSOutlineViewItemDidCollapseNotification: NSString; external name '_NSOutlineViewItemDidCollapseNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSOutlineView = objcclass; + NSOutlineViewPointer = ^NSOutlineView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPDFImageRep.inc b/packages/cocoaint/src/appkit/NSPDFImageRep.inc index 03a3616d18..c67a136346 100644 --- a/packages/cocoaint/src/appkit/NSPDFImageRep.inc +++ b/packages/cocoaint/src/appkit/NSPDFImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPDFImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPDFIMAGEREP_PAS_H} -{$define NSPDFIMAGEREP_PAS_H} -type - NSPDFImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPDFIMAGEREP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPDFImageRep = objcclass; + NSPDFImageRepPointer = ^NSPDFImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPICTImageRep.inc b/packages/cocoaint/src/appkit/NSPICTImageRep.inc index a7b28b5b61..df8ccf74ab 100644 --- a/packages/cocoaint/src/appkit/NSPICTImageRep.inc +++ b/packages/cocoaint/src/appkit/NSPICTImageRep.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPICTImageRep.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPICTIMAGEREP_PAS_H} -{$define NSPICTIMAGEREP_PAS_H} -type - NSPICTImageRepPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPICTIMAGEREP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPICTImageRep = objcclass; + NSPICTImageRepPointer = ^NSPICTImageRep; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPageLayout.inc b/packages/cocoaint/src/appkit/NSPageLayout.inc index f7341ddac6..8600d0a8da 100644 --- a/packages/cocoaint/src/appkit/NSPageLayout.inc +++ b/packages/cocoaint/src/appkit/NSPageLayout.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPageLayout.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPAGELAYOUT_PAS_H} -{$define NSPAGELAYOUT_PAS_H} -type - NSPageLayoutPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPAGELAYOUT_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPageLayout = objcclass; + NSPageLayoutPointer = ^NSPageLayout; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPanel.inc b/packages/cocoaint/src/appkit/NSPanel.inc index 3b1168adcf..d22a0595f0 100644 --- a/packages/cocoaint/src/appkit/NSPanel.inc +++ b/packages/cocoaint/src/appkit/NSPanel.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPanel.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPANEL_PAS_H} -{$define NSPANEL_PAS_H} -type - NSPanelPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPANEL_PAS_T} @@ -77,6 +69,7 @@ procedure NSReleaseAlertPanel(panel: id); cdecl; external name 'NSReleaseAlertPa {$ifdef FORWARD} NSPanel = objcclass; + NSPanelPointer = ^NSPanel; {$endif} diff --git a/packages/cocoaint/src/appkit/NSParagraphStyle.inc b/packages/cocoaint/src/appkit/NSParagraphStyle.inc index 24fc7e6c8d..a597c9756a 100644 --- a/packages/cocoaint/src/appkit/NSParagraphStyle.inc +++ b/packages/cocoaint/src/appkit/NSParagraphStyle.inc @@ -1,16 +1,6 @@ { Parsed from Appkit.framework NSParagraphStyle.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPARAGRAPHSTYLE_PAS_H} -{$define NSPARAGRAPHSTYLE_PAS_H} -type - NSTextTabPointer = Pointer; - NSParagraphStylePointer = Pointer; - NSMutableParagraphStylePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPARAGRAPHSTYLE_PAS_T} @@ -58,13 +48,20 @@ type {$ifndef NSPARAGRAPHSTYLE_PAS_S} {$define NSPARAGRAPHSTYLE_PAS_S} +{ External string constants } +var + NSTabColumnTerminatorsAttributeName: NSString; external name '_NSTabColumnTerminatorsAttributeName'; + {$endif} {$endif} {$ifdef FORWARD} NSTextTab = objcclass; + NSTextTabPointer = ^NSTextTab; NSParagraphStyle = objcclass; + NSParagraphStylePointer = ^NSParagraphStyle; NSMutableParagraphStyle = objcclass; + NSMutableParagraphStylePointer = ^NSMutableParagraphStyle; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPasteboard.inc b/packages/cocoaint/src/appkit/NSPasteboard.inc index 9ccdb3123c..6e5390763f 100644 --- a/packages/cocoaint/src/appkit/NSPasteboard.inc +++ b/packages/cocoaint/src/appkit/NSPasteboard.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPasteboard.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPASTEBOARD_PAS_H} -{$define NSPASTEBOARD_PAS_H} -type - NSPasteboardPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPASTEBOARD_PAS_T} @@ -41,11 +33,39 @@ function NSGetFileTypes(pboardTypesPointer: NSArray): NSArray; cdecl; external n {$ifndef NSPASTEBOARD_PAS_S} {$define NSPASTEBOARD_PAS_S} +{ External string constants } +var + NSStringPboardType: NSString; external name '_NSStringPboardType'; + NSFilenamesPboardType: NSString; external name '_NSFilenamesPboardType'; + NSPostScriptPboardType: NSString; external name '_NSPostScriptPboardType'; + NSTIFFPboardType: NSString; external name '_NSTIFFPboardType'; + NSRTFPboardType: NSString; external name '_NSRTFPboardType'; + NSTabularTextPboardType: NSString; external name '_NSTabularTextPboardType'; + NSFontPboardType: NSString; external name '_NSFontPboardType'; + NSRulerPboardType: NSString; external name '_NSRulerPboardType'; + NSFileContentsPboardType: NSString; external name '_NSFileContentsPboardType'; + NSColorPboardType: NSString; external name '_NSColorPboardType'; + NSRTFDPboardType: NSString; external name '_NSRTFDPboardType'; + NSHTMLPboardType: NSString; external name '_NSHTMLPboardType'; + NSPICTPboardType: NSString; external name '_NSPICTPboardType'; + NSURLPboardType: NSString; external name '_NSURLPboardType'; + NSPDFPboardType: NSString; external name '_NSPDFPboardType'; + NSVCardPboardType: NSString; external name '_NSVCardPboardType'; + NSFilesPromisePboardType: NSString; external name '_NSFilesPromisePboardType'; + NSInkTextPboardType: NSString; external name '_NSInkTextPboardType'; + NSMultipleTextSelectionPboardType: NSString; external name '_NSMultipleTextSelectionPboardType'; + NSGeneralPboard: NSString; external name '_NSGeneralPboard'; + NSFontPboard: NSString; external name '_NSFontPboard'; + NSRulerPboard: NSString; external name '_NSRulerPboard'; + NSFindPboard: NSString; external name '_NSFindPboard'; + NSDragPboard: NSString; external name '_NSDragPboard'; + {$endif} {$endif} {$ifdef FORWARD} NSPasteboard = objcclass; + NSPasteboardPointer = ^NSPasteboard; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPathCell.inc b/packages/cocoaint/src/appkit/NSPathCell.inc index b7db355c5f..0c83a72532 100644 --- a/packages/cocoaint/src/appkit/NSPathCell.inc +++ b/packages/cocoaint/src/appkit/NSPathCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPathCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPATHCELL_PAS_H} -{$define NSPATHCELL_PAS_H} -type - NSPathCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPATHCELL_PAS_T} @@ -52,6 +44,7 @@ type {$ifdef FORWARD} NSPathCellDelegateProtocol = objcprotocol; NSPathCell = objcclass; + NSPathCellPointer = ^NSPathCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPathComponentCell.inc b/packages/cocoaint/src/appkit/NSPathComponentCell.inc index 56de425f1d..e768a70f7f 100644 --- a/packages/cocoaint/src/appkit/NSPathComponentCell.inc +++ b/packages/cocoaint/src/appkit/NSPathComponentCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPathComponentCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPATHCOMPONENTCELL_PAS_H} -{$define NSPATHCOMPONENTCELL_PAS_H} -type - NSPathComponentCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPATHCOMPONENTCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPathComponentCell = objcclass; + NSPathComponentCellPointer = ^NSPathComponentCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPathControl.inc b/packages/cocoaint/src/appkit/NSPathControl.inc index 018bc92432..b8814c2cd4 100644 --- a/packages/cocoaint/src/appkit/NSPathControl.inc +++ b/packages/cocoaint/src/appkit/NSPathControl.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPathControl.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPATHCONTROL_PAS_H} -{$define NSPATHCONTROL_PAS_H} -type - NSPathControlPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPATHCONTROL_PAS_T} @@ -41,6 +33,7 @@ type {$ifdef FORWARD} NSPathControlDelegateProtocol = objcprotocol; NSPathControl = objcclass; + NSPathControlPointer = ^NSPathControl; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPersistentDocument.inc b/packages/cocoaint/src/appkit/NSPersistentDocument.inc index c0cab52985..9a995429ea 100644 --- a/packages/cocoaint/src/appkit/NSPersistentDocument.inc +++ b/packages/cocoaint/src/appkit/NSPersistentDocument.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPersistentDocument.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPERSISTENTDOCUMENT_PAS_H} -{$define NSPERSISTENTDOCUMENT_PAS_H} -type - NSPersistentDocumentPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPERSISTENTDOCUMENT_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPersistentDocument = objcclass; + NSPersistentDocumentPointer = ^NSPersistentDocument; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPopUpButton.inc b/packages/cocoaint/src/appkit/NSPopUpButton.inc index 7752e5351c..a6bcd689a1 100644 --- a/packages/cocoaint/src/appkit/NSPopUpButton.inc +++ b/packages/cocoaint/src/appkit/NSPopUpButton.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPopUpButton.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPOPUPBUTTON_PAS_H} -{$define NSPOPUPBUTTON_PAS_H} -type - NSPopUpButtonPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPOPUPBUTTON_PAS_T} @@ -35,11 +27,16 @@ type {$ifndef NSPOPUPBUTTON_PAS_S} {$define NSPOPUPBUTTON_PAS_S} +{ External string constants } +var + NSPopUpButtonWillPopUpNotification: NSString; external name '_NSPopUpButtonWillPopUpNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSPopUpButton = objcclass; + NSPopUpButtonPointer = ^NSPopUpButton; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPopUpButtonCell.inc b/packages/cocoaint/src/appkit/NSPopUpButtonCell.inc index fe9b1ddd62..a6e3e8f035 100644 --- a/packages/cocoaint/src/appkit/NSPopUpButtonCell.inc +++ b/packages/cocoaint/src/appkit/NSPopUpButtonCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPopUpButtonCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPOPUPBUTTONCELL_PAS_H} -{$define NSPOPUPBUTTONCELL_PAS_H} -type - NSPopUpButtonCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPOPUPBUTTONCELL_PAS_T} @@ -46,11 +38,16 @@ type {$ifndef NSPOPUPBUTTONCELL_PAS_S} {$define NSPOPUPBUTTONCELL_PAS_S} +{ External string constants } +var + NSPopUpButtonCellWillPopUpNotification: NSString; external name '_NSPopUpButtonCellWillPopUpNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSPopUpButtonCell = objcclass; + NSPopUpButtonCellPointer = ^NSPopUpButtonCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPredicateEditor.inc b/packages/cocoaint/src/appkit/NSPredicateEditor.inc index c208d3bda8..532e6f456b 100644 --- a/packages/cocoaint/src/appkit/NSPredicateEditor.inc +++ b/packages/cocoaint/src/appkit/NSPredicateEditor.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPredicateEditor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPREDICATEEDITOR_PAS_H} -{$define NSPREDICATEEDITOR_PAS_H} -type - NSPredicateEditorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPREDICATEEDITOR_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPredicateEditor = objcclass; + NSPredicateEditorPointer = ^NSPredicateEditor; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPrintInfo.inc b/packages/cocoaint/src/appkit/NSPrintInfo.inc index 48fbeac41e..e37c16e0f2 100644 --- a/packages/cocoaint/src/appkit/NSPrintInfo.inc +++ b/packages/cocoaint/src/appkit/NSPrintInfo.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPrintInfo.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPRINTINFO_PAS_H} -{$define NSPRINTINFO_PAS_H} -type - NSPrintInfoPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPRINTINFO_PAS_T} @@ -51,11 +43,62 @@ type {$ifndef NSPRINTINFO_PAS_S} {$define NSPRINTINFO_PAS_S} +{ External string constants } +var + NSPrintSpoolJob: NSString; external name '_NSPrintSpoolJob'; + NSPrintPreviewJob: NSString; external name '_NSPrintPreviewJob'; + NSPrintSaveJob: NSString; external name '_NSPrintSaveJob'; + NSPrintCancelJob: NSString; external name '_NSPrintCancelJob'; + NSPrintPaperName: NSString; external name '_NSPrintPaperName'; + NSPrintPaperSize: NSString; external name '_NSPrintPaperSize'; + NSPrintOrientation: NSString; external name '_NSPrintOrientation'; + NSPrintScalingFactor: NSString; external name '_NSPrintScalingFactor'; + NSPrintLeftMargin: NSString; external name '_NSPrintLeftMargin'; + NSPrintRightMargin: NSString; external name '_NSPrintRightMargin'; + NSPrintTopMargin: NSString; external name '_NSPrintTopMargin'; + NSPrintBottomMargin: NSString; external name '_NSPrintBottomMargin'; + NSPrintHorizontallyCentered: NSString; external name '_NSPrintHorizontallyCentered'; + NSPrintVerticallyCentered: NSString; external name '_NSPrintVerticallyCentered'; + NSPrintHorizontalPagination: NSString; external name '_NSPrintHorizontalPagination'; + NSPrintVerticalPagination: NSString; external name '_NSPrintVerticalPagination'; + NSPrintPrinter: NSString; external name '_NSPrintPrinter'; + NSPrintCopies: NSString; external name '_NSPrintCopies'; + NSPrintAllPages: NSString; external name '_NSPrintAllPages'; + NSPrintFirstPage: NSString; external name '_NSPrintFirstPage'; + NSPrintLastPage: NSString; external name '_NSPrintLastPage'; + NSPrintMustCollate: NSString; external name '_NSPrintMustCollate'; + NSPrintReversePageOrder: NSString; external name '_NSPrintReversePageOrder'; + NSPrintJobDisposition: NSString; external name '_NSPrintJobDisposition'; + NSPrintSavePath: NSString; external name '_NSPrintSavePath'; + NSPrintPagesAcross: NSString; external name '_NSPrintPagesAcross'; + NSPrintPagesDown: NSString; external name '_NSPrintPagesDown'; + NSPrintTime: NSString; external name '_NSPrintTime'; + NSPrintDetailedErrorReporting: NSString; external name '_NSPrintDetailedErrorReporting'; + NSPrintFaxNumber: NSString; external name '_NSPrintFaxNumber'; + NSPrintPrinterName: NSString; external name '_NSPrintPrinterName'; + NSPrintHeaderAndFooter: NSString; external name '_NSPrintHeaderAndFooter'; + NSPrintFormName: NSString; external name '_NSPrintFormName'; + NSPrintJobFeatures: NSString; external name '_NSPrintJobFeatures'; + NSPrintManualFeed: NSString; external name '_NSPrintManualFeed'; + NSPrintPagesPerSheet: NSString; external name '_NSPrintPagesPerSheet'; + NSPrintPaperFeed: NSString; external name '_NSPrintPaperFeed'; + NSPrintFaxCoverSheetName: NSString; external name '_NSPrintFaxCoverSheetName'; + NSPrintFaxHighResolution: NSString; external name '_NSPrintFaxHighResolution'; + NSPrintFaxModem: NSString; external name '_NSPrintFaxModem'; + NSPrintFaxReceiverNames: NSString; external name '_NSPrintFaxReceiverNames'; + NSPrintFaxReceiverNumbers: NSString; external name '_NSPrintFaxReceiverNumbers'; + NSPrintFaxReturnReceipt: NSString; external name '_NSPrintFaxReturnReceipt'; + NSPrintFaxSendTime: NSString; external name '_NSPrintFaxSendTime'; + NSPrintFaxTrimPageEnds: NSString; external name '_NSPrintFaxTrimPageEnds'; + NSPrintFaxUseCoverSheet: NSString; external name '_NSPrintFaxUseCoverSheet'; + NSPrintFaxJob: NSString; external name '_NSPrintFaxJob'; + {$endif} {$endif} {$ifdef FORWARD} NSPrintInfo = objcclass; + NSPrintInfoPointer = ^NSPrintInfo; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPrintOperation.inc b/packages/cocoaint/src/appkit/NSPrintOperation.inc index 548c8909ce..5c3837ddb1 100644 --- a/packages/cocoaint/src/appkit/NSPrintOperation.inc +++ b/packages/cocoaint/src/appkit/NSPrintOperation.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPrintOperation.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPRINTOPERATION_PAS_H} -{$define NSPRINTOPERATION_PAS_H} -type - NSPrintOperationPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPRINTOPERATION_PAS_T} @@ -47,11 +39,16 @@ type {$ifndef NSPRINTOPERATION_PAS_S} {$define NSPRINTOPERATION_PAS_S} +{ External string constants } +var + NSPrintOperationExistsException: NSString; external name '_NSPrintOperationExistsException'; + {$endif} {$endif} {$ifdef FORWARD} NSPrintOperation = objcclass; + NSPrintOperationPointer = ^NSPrintOperation; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPrintPanel.inc b/packages/cocoaint/src/appkit/NSPrintPanel.inc index 2e009773d1..4fb0db76dc 100644 --- a/packages/cocoaint/src/appkit/NSPrintPanel.inc +++ b/packages/cocoaint/src/appkit/NSPrintPanel.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPrintPanel.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPRINTPANEL_PAS_H} -{$define NSPRINTPANEL_PAS_H} -type - NSPrintPanelPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPRINTPANEL_PAS_T} @@ -50,12 +42,19 @@ type {$ifndef NSPRINTPANEL_PAS_S} {$define NSPRINTPANEL_PAS_S} +{ External string constants } +var + NSPrintPhotoJobStyleHint: NSString; external name '_NSPrintPhotoJobStyleHint'; + NSPrintPanelAccessorySummaryItemNameKey: NSString; external name '_NSPrintPanelAccessorySummaryItemNameKey'; + NSPrintPanelAccessorySummaryItemDescriptionKey: NSString; external name '_NSPrintPanelAccessorySummaryItemDescriptionKey'; + {$endif} {$endif} {$ifdef FORWARD} NSPrintPanelAccessorizingProtocol = objcprotocol; NSPrintPanel = objcclass; + NSPrintPanelPointer = ^NSPrintPanel; {$endif} diff --git a/packages/cocoaint/src/appkit/NSPrinter.inc b/packages/cocoaint/src/appkit/NSPrinter.inc index 0f141080fe..215d02fdb6 100644 --- a/packages/cocoaint/src/appkit/NSPrinter.inc +++ b/packages/cocoaint/src/appkit/NSPrinter.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSPrinter.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPRINTER_PAS_H} -{$define NSPRINTER_PAS_H} -type - NSPrinterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPRINTER_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSPrinter = objcclass; + NSPrinterPointer = ^NSPrinter; {$endif} diff --git a/packages/cocoaint/src/appkit/NSProgressIndicator.inc b/packages/cocoaint/src/appkit/NSProgressIndicator.inc index 151524f7dd..af9e361533 100644 --- a/packages/cocoaint/src/appkit/NSProgressIndicator.inc +++ b/packages/cocoaint/src/appkit/NSProgressIndicator.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSProgressIndicator.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPROGRESSINDICATOR_PAS_H} -{$define NSPROGRESSINDICATOR_PAS_H} -type - NSProgressIndicatorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPROGRESSINDICATOR_PAS_T} @@ -59,6 +51,7 @@ const {$ifdef FORWARD} NSProgressIndicator = objcclass; + NSProgressIndicatorPointer = ^NSProgressIndicator; {$endif} diff --git a/packages/cocoaint/src/appkit/NSQuickDrawView.inc b/packages/cocoaint/src/appkit/NSQuickDrawView.inc index 64ee611f9e..4f0f50c6e9 100644 --- a/packages/cocoaint/src/appkit/NSQuickDrawView.inc +++ b/packages/cocoaint/src/appkit/NSQuickDrawView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSQuickDrawView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSQUICKDRAWVIEW_PAS_H} -{$define NSQUICKDRAWVIEW_PAS_H} -type - NSQuickDrawViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSQUICKDRAWVIEW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSQuickDrawView = objcclass; + NSQuickDrawViewPointer = ^NSQuickDrawView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSResponder.inc b/packages/cocoaint/src/appkit/NSResponder.inc index 36cc48660b..d67854ea86 100644 --- a/packages/cocoaint/src/appkit/NSResponder.inc +++ b/packages/cocoaint/src/appkit/NSResponder.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSResponder.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSRESPONDER_PAS_H} -{$define NSRESPONDER_PAS_H} -type - NSResponderPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSRESPONDER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSResponder = objcclass; + NSResponderPointer = ^NSResponder; {$endif} diff --git a/packages/cocoaint/src/appkit/NSRuleEditor.inc b/packages/cocoaint/src/appkit/NSRuleEditor.inc index 7c72f7278e..d2bfc536c1 100644 --- a/packages/cocoaint/src/appkit/NSRuleEditor.inc +++ b/packages/cocoaint/src/appkit/NSRuleEditor.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSRuleEditor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSRULEEDITOR_PAS_H} -{$define NSRULEEDITOR_PAS_H} -type - NSRuleEditorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSRULEEDITOR_PAS_T} @@ -68,6 +60,7 @@ var {$ifdef FORWARD} NSRuleEditor = objcclass; + NSRuleEditorPointer = ^NSRuleEditor; {$endif} @@ -124,7 +117,7 @@ var public class function alloc: NSRuleEditor; message 'alloc'; - procedure setDelegate(sender: id); message 'setDelegate:'; + procedure setDelegate(_delegate: id); message 'setDelegate:'; function delegate: id; message 'delegate'; procedure setFormattingStringsFilename(stringsFilename: NSString); message 'setFormattingStringsFilename:'; function formattingStringsFilename: NSString; message 'formattingStringsFilename'; diff --git a/packages/cocoaint/src/appkit/NSRulerMarker.inc b/packages/cocoaint/src/appkit/NSRulerMarker.inc index ba55f1b069..a14e2cb322 100644 --- a/packages/cocoaint/src/appkit/NSRulerMarker.inc +++ b/packages/cocoaint/src/appkit/NSRulerMarker.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSRulerMarker.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSRULERMARKER_PAS_H} -{$define NSRULERMARKER_PAS_H} -type - NSRulerMarkerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSRULERMARKER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSRulerMarker = objcclass; + NSRulerMarkerPointer = ^NSRulerMarker; {$endif} diff --git a/packages/cocoaint/src/appkit/NSRulerView.inc b/packages/cocoaint/src/appkit/NSRulerView.inc index 7f9ca2d096..d49aef66e6 100644 --- a/packages/cocoaint/src/appkit/NSRulerView.inc +++ b/packages/cocoaint/src/appkit/NSRulerView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSRulerView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSRULERVIEW_PAS_H} -{$define NSRULERVIEW_PAS_H} -type - NSRulerViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSRULERVIEW_PAS_T} @@ -50,6 +42,7 @@ type {$ifdef FORWARD} NSRulerView = objcclass; + NSRulerViewPointer = ^NSRulerView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSavePanel.inc b/packages/cocoaint/src/appkit/NSSavePanel.inc index 965d6d30c4..ac02096911 100644 --- a/packages/cocoaint/src/appkit/NSSavePanel.inc +++ b/packages/cocoaint/src/appkit/NSSavePanel.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSavePanel.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSAVEPANEL_PAS_H} -{$define NSSAVEPANEL_PAS_H} -type - NSSavePanelPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSAVEPANEL_PAS_T} @@ -59,6 +51,7 @@ _SPFlags = __SPFlags; {$ifdef FORWARD} NSSavePanel = objcclass; + NSSavePanelPointer = ^NSSavePanel; {$endif} diff --git a/packages/cocoaint/src/appkit/NSScreen.inc b/packages/cocoaint/src/appkit/NSScreen.inc index 5bc6696ea8..8ec3695935 100644 --- a/packages/cocoaint/src/appkit/NSScreen.inc +++ b/packages/cocoaint/src/appkit/NSScreen.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSScreen.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCREEN_PAS_H} -{$define NSSCREEN_PAS_H} -type - NSScreenPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCREEN_PAS_T} @@ -45,6 +37,7 @@ type {$ifdef FORWARD} NSScreen = objcclass; + NSScreenPointer = ^NSScreen; {$endif} diff --git a/packages/cocoaint/src/appkit/NSScrollView.inc b/packages/cocoaint/src/appkit/NSScrollView.inc index 0d5b746ec0..1b9588431a 100644 --- a/packages/cocoaint/src/appkit/NSScrollView.inc +++ b/packages/cocoaint/src/appkit/NSScrollView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSScrollView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCROLLVIEW_PAS_H} -{$define NSSCROLLVIEW_PAS_H} -type - NSScrollViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCROLLVIEW_PAS_T} @@ -86,6 +78,7 @@ _SFlags = __SFlags; {$ifdef FORWARD} NSScrollView = objcclass; + NSScrollViewPointer = ^NSScrollView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSScroller.inc b/packages/cocoaint/src/appkit/NSScroller.inc index 1e74534811..44511856f0 100644 --- a/packages/cocoaint/src/appkit/NSScroller.inc +++ b/packages/cocoaint/src/appkit/NSScroller.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSScroller.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCROLLER_PAS_H} -{$define NSSCROLLER_PAS_H} -type - NSScrollerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCROLLER_PAS_T} @@ -73,6 +65,7 @@ type {$ifdef FORWARD} NSScroller = objcclass; + NSScrollerPointer = ^NSScroller; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSearchField.inc b/packages/cocoaint/src/appkit/NSSearchField.inc index 7011c66991..29493926a3 100644 --- a/packages/cocoaint/src/appkit/NSSearchField.inc +++ b/packages/cocoaint/src/appkit/NSSearchField.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSearchField.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSEARCHFIELD_PAS_H} -{$define NSSEARCHFIELD_PAS_H} -type - NSSearchFieldPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSEARCHFIELD_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSSearchField = objcclass; + NSSearchFieldPointer = ^NSSearchField; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSearchFieldCell.inc b/packages/cocoaint/src/appkit/NSSearchFieldCell.inc index c1955c793e..9f254e4bb1 100644 --- a/packages/cocoaint/src/appkit/NSSearchFieldCell.inc +++ b/packages/cocoaint/src/appkit/NSSearchFieldCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSearchFieldCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSEARCHFIELDCELL_PAS_H} -{$define NSSEARCHFIELDCELL_PAS_H} -type - NSSearchFieldCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSEARCHFIELDCELL_PAS_T} @@ -47,6 +39,7 @@ const {$ifdef FORWARD} NSSearchFieldCell = objcclass; + NSSearchFieldCellPointer = ^NSSearchFieldCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSecureTextField.inc b/packages/cocoaint/src/appkit/NSSecureTextField.inc index 3dd5f6e1e9..cd4ad9c3f2 100644 --- a/packages/cocoaint/src/appkit/NSSecureTextField.inc +++ b/packages/cocoaint/src/appkit/NSSecureTextField.inc @@ -1,15 +1,6 @@ { Parsed from Appkit.framework NSSecureTextField.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSECURETEXTFIELD_PAS_H} -{$define NSSECURETEXTFIELD_PAS_H} -type - NSSecureTextFieldPointer = Pointer; - NSSecureTextFieldCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSECURETEXTFIELD_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSSecureTextField = objcclass; + NSSecureTextFieldPointer = ^NSSecureTextField; NSSecureTextFieldCell = objcclass; + NSSecureTextFieldCellPointer = ^NSSecureTextFieldCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSegmentedControl.inc b/packages/cocoaint/src/appkit/NSSegmentedControl.inc index 025540b6f1..0e7f91a775 100644 --- a/packages/cocoaint/src/appkit/NSSegmentedControl.inc +++ b/packages/cocoaint/src/appkit/NSSegmentedControl.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSegmentedControl.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSEGMENTEDCONTROL_PAS_H} -{$define NSSEGMENTEDCONTROL_PAS_H} -type - NSSegmentedControlPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSEGMENTEDCONTROL_PAS_T} @@ -55,6 +47,7 @@ type {$ifdef FORWARD} NSSegmentedControl = objcclass; + NSSegmentedControlPointer = ^NSSegmentedControl; {$endif} diff --git a/packages/cocoaint/src/appkit/NSShadow.inc b/packages/cocoaint/src/appkit/NSShadow.inc index 7b69aadc2e..ca6e320cfc 100644 --- a/packages/cocoaint/src/appkit/NSShadow.inc +++ b/packages/cocoaint/src/appkit/NSShadow.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSShadow.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSHADOW_PAS_H} -{$define NSSHADOW_PAS_H} -type - NSShadowPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSHADOW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSShadow = objcclass; + NSShadowPointer = ^NSShadow; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSlider.inc b/packages/cocoaint/src/appkit/NSSlider.inc index 2446b54f51..8a01da4d55 100644 --- a/packages/cocoaint/src/appkit/NSSlider.inc +++ b/packages/cocoaint/src/appkit/NSSlider.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSlider.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSLIDER_PAS_H} -{$define NSSLIDER_PAS_H} -type - NSSliderPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSLIDER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSSlider = objcclass; + NSSliderPointer = ^NSSlider; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSliderCell.inc b/packages/cocoaint/src/appkit/NSSliderCell.inc index 44189545e5..2ddf9b36cf 100644 --- a/packages/cocoaint/src/appkit/NSSliderCell.inc +++ b/packages/cocoaint/src/appkit/NSSliderCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSliderCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSLIDERCELL_PAS_H} -{$define NSSLIDERCELL_PAS_H} -type - NSSliderCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSLIDERCELL_PAS_T} @@ -57,6 +49,7 @@ type {$ifdef FORWARD} NSSliderCell = objcclass; + NSSliderCellPointer = ^NSSliderCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSound.inc b/packages/cocoaint/src/appkit/NSSound.inc index 74b17c8487..74a3f5e551 100644 --- a/packages/cocoaint/src/appkit/NSSound.inc +++ b/packages/cocoaint/src/appkit/NSSound.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSound.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSOUND_PAS_H} -{$define NSSOUND_PAS_H} -type - NSSoundPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSOUND_PAS_T} @@ -44,6 +36,7 @@ var {$ifdef FORWARD} NSSound = objcclass; + NSSoundPointer = ^NSSound; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSpeechRecognizer.inc b/packages/cocoaint/src/appkit/NSSpeechRecognizer.inc index 0a86b0f949..1ab5347e46 100644 --- a/packages/cocoaint/src/appkit/NSSpeechRecognizer.inc +++ b/packages/cocoaint/src/appkit/NSSpeechRecognizer.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSpeechRecognizer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSPEECHRECOGNIZER_PAS_H} -{$define NSSPEECHRECOGNIZER_PAS_H} -type - NSSpeechRecognizerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSPEECHRECOGNIZER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSSpeechRecognizer = objcclass; + NSSpeechRecognizerPointer = ^NSSpeechRecognizer; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSpeechSynthesizer.inc b/packages/cocoaint/src/appkit/NSSpeechSynthesizer.inc index 6afeeb237c..ec9bc55d16 100644 --- a/packages/cocoaint/src/appkit/NSSpeechSynthesizer.inc +++ b/packages/cocoaint/src/appkit/NSSpeechSynthesizer.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSpeechSynthesizer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSPEECHSYNTHESIZER_PAS_H} -{$define NSSPEECHSYNTHESIZER_PAS_H} -type - NSSpeechSynthesizerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSPEECHSYNTHESIZER_PAS_T} @@ -109,6 +101,7 @@ var {$ifdef FORWARD} NSSpeechSynthesizer = objcclass; + NSSpeechSynthesizerPointer = ^NSSpeechSynthesizer; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSpellChecker.inc b/packages/cocoaint/src/appkit/NSSpellChecker.inc index 4f63141760..a055a86399 100644 --- a/packages/cocoaint/src/appkit/NSSpellChecker.inc +++ b/packages/cocoaint/src/appkit/NSSpellChecker.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSpellChecker.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSPELLCHECKER_PAS_H} -{$define NSSPELLCHECKER_PAS_H} -type - NSSpellCheckerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSPELLCHECKER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSSpellChecker = objcclass; + NSSpellCheckerPointer = ^NSSpellChecker; {$endif} diff --git a/packages/cocoaint/src/appkit/NSSpellProtocol.inc b/packages/cocoaint/src/appkit/NSSpellProtocol.inc index e19db66e63..b4d732f651 100644 --- a/packages/cocoaint/src/appkit/NSSpellProtocol.inc +++ b/packages/cocoaint/src/appkit/NSSpellProtocol.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSSpellProtocol.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSSplitView.inc b/packages/cocoaint/src/appkit/NSSplitView.inc index 0f0bc54738..16fa005b9f 100644 --- a/packages/cocoaint/src/appkit/NSSplitView.inc +++ b/packages/cocoaint/src/appkit/NSSplitView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSSplitView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSPLITVIEW_PAS_H} -{$define NSSPLITVIEW_PAS_H} -type - NSSplitViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSPLITVIEW_PAS_T} @@ -45,11 +37,17 @@ type {$ifndef NSSPLITVIEW_PAS_S} {$define NSSPLITVIEW_PAS_S} +{ External string constants } +var + NSSplitViewWillResizeSubviewsNotification: NSString; external name '_NSSplitViewWillResizeSubviewsNotification'; + NSSplitViewDidResizeSubviewsNotification: NSString; external name '_NSSplitViewDidResizeSubviewsNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSSplitView = objcclass; + NSSplitViewPointer = ^NSSplitView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSStatusBar.inc b/packages/cocoaint/src/appkit/NSStatusBar.inc index 14dca16688..c3e2a5a50b 100644 --- a/packages/cocoaint/src/appkit/NSStatusBar.inc +++ b/packages/cocoaint/src/appkit/NSStatusBar.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSStatusBar.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSTATUSBAR_PAS_H} -{$define NSSTATUSBAR_PAS_H} -type - NSStatusBarPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSTATUSBAR_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSStatusBar = objcclass; + NSStatusBarPointer = ^NSStatusBar; {$endif} diff --git a/packages/cocoaint/src/appkit/NSStatusItem.inc b/packages/cocoaint/src/appkit/NSStatusItem.inc index 65059a7e17..49e40cc999 100644 --- a/packages/cocoaint/src/appkit/NSStatusItem.inc +++ b/packages/cocoaint/src/appkit/NSStatusItem.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSStatusItem.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSTATUSITEM_PAS_H} -{$define NSSTATUSITEM_PAS_H} -type - NSStatusItemPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSTATUSITEM_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSStatusItem = objcclass; + NSStatusItemPointer = ^NSStatusItem; {$endif} diff --git a/packages/cocoaint/src/appkit/NSStepper.inc b/packages/cocoaint/src/appkit/NSStepper.inc index da5db8ba93..2c418821fc 100644 --- a/packages/cocoaint/src/appkit/NSStepper.inc +++ b/packages/cocoaint/src/appkit/NSStepper.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSStepper.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSTEPPER_PAS_H} -{$define NSSTEPPER_PAS_H} -type - NSStepperPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSTEPPER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSStepper = objcclass; + NSStepperPointer = ^NSStepper; {$endif} diff --git a/packages/cocoaint/src/appkit/NSStepperCell.inc b/packages/cocoaint/src/appkit/NSStepperCell.inc index 8d6eb800a1..c5330f4ee3 100644 --- a/packages/cocoaint/src/appkit/NSStepperCell.inc +++ b/packages/cocoaint/src/appkit/NSStepperCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSStepperCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSTEPPERCELL_PAS_H} -{$define NSSTEPPERCELL_PAS_H} -type - NSStepperCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSTEPPERCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSStepperCell = objcclass; + NSStepperCellPointer = ^NSStepperCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSStringDrawing.inc b/packages/cocoaint/src/appkit/NSStringDrawing.inc index 5b26b19146..0de4fe60ee 100644 --- a/packages/cocoaint/src/appkit/NSStringDrawing.inc +++ b/packages/cocoaint/src/appkit/NSStringDrawing.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSStringDrawing.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSTabView.inc b/packages/cocoaint/src/appkit/NSTabView.inc index cecae4ecb9..31883c1da1 100644 --- a/packages/cocoaint/src/appkit/NSTabView.inc +++ b/packages/cocoaint/src/appkit/NSTabView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTabView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTABVIEW_PAS_H} -{$define NSTABVIEW_PAS_H} -type - NSTabViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTABVIEW_PAS_T} @@ -59,6 +51,7 @@ type {$ifdef FORWARD} NSTabView = objcclass; + NSTabViewPointer = ^NSTabView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTabViewItem.inc b/packages/cocoaint/src/appkit/NSTabViewItem.inc index 81eacc347d..16e0c96bba 100644 --- a/packages/cocoaint/src/appkit/NSTabViewItem.inc +++ b/packages/cocoaint/src/appkit/NSTabViewItem.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTabViewItem.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTABVIEWITEM_PAS_H} -{$define NSTABVIEWITEM_PAS_H} -type - NSTabViewItemPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTABVIEWITEM_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSTabViewItem = objcclass; + NSTabViewItemPointer = ^NSTabViewItem; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTableColumn.inc b/packages/cocoaint/src/appkit/NSTableColumn.inc index 123644d41e..28e81f4ab5 100644 --- a/packages/cocoaint/src/appkit/NSTableColumn.inc +++ b/packages/cocoaint/src/appkit/NSTableColumn.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTableColumn.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTABLECOLUMN_PAS_H} -{$define NSTABLECOLUMN_PAS_H} -type - NSTableColumnPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTABLECOLUMN_PAS_T} @@ -45,6 +37,7 @@ const {$ifdef FORWARD} NSTableColumn = objcclass; + NSTableColumnPointer = ^NSTableColumn; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTableHeaderCell.inc b/packages/cocoaint/src/appkit/NSTableHeaderCell.inc index d3c183e5dd..4cc6891b62 100644 --- a/packages/cocoaint/src/appkit/NSTableHeaderCell.inc +++ b/packages/cocoaint/src/appkit/NSTableHeaderCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTableHeaderCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTABLEHEADERCELL_PAS_H} -{$define NSTABLEHEADERCELL_PAS_H} -type - NSTableHeaderCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTABLEHEADERCELL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTableHeaderCell = objcclass; + NSTableHeaderCellPointer = ^NSTableHeaderCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTableHeaderView.inc b/packages/cocoaint/src/appkit/NSTableHeaderView.inc index 91d21d2063..f33ac77a5b 100644 --- a/packages/cocoaint/src/appkit/NSTableHeaderView.inc +++ b/packages/cocoaint/src/appkit/NSTableHeaderView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTableHeaderView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTABLEHEADERVIEW_PAS_H} -{$define NSTABLEHEADERVIEW_PAS_H} -type - NSTableHeaderViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTABLEHEADERVIEW_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTableHeaderView = objcclass; + NSTableHeaderViewPointer = ^NSTableHeaderView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTableView.inc b/packages/cocoaint/src/appkit/NSTableView.inc index c657a62a3f..43ffd6231e 100644 --- a/packages/cocoaint/src/appkit/NSTableView.inc +++ b/packages/cocoaint/src/appkit/NSTableView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTableView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTABLEVIEW_PAS_H} -{$define NSTABLEVIEW_PAS_H} -type - NSTableViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTABLEVIEW_PAS_T} @@ -108,11 +100,19 @@ _TvFlags = __TvFlags; {$ifndef NSTABLEVIEW_PAS_S} {$define NSTABLEVIEW_PAS_S} +{ External string constants } +var + NSTableViewSelectionDidChangeNotification: NSString; external name '_NSTableViewSelectionDidChangeNotification'; + NSTableViewColumnDidMoveNotification: NSString; external name '_NSTableViewColumnDidMoveNotification'; + NSTableViewColumnDidResizeNotification: NSString; external name '_NSTableViewColumnDidResizeNotification'; + NSTableViewSelectionIsChangingNotification: NSString; external name '_NSTableViewSelectionIsChangingNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSTableView = objcclass; + NSTableViewPointer = ^NSTableView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSText.inc b/packages/cocoaint/src/appkit/NSText.inc index 71b825a539..49a17685f2 100644 --- a/packages/cocoaint/src/appkit/NSText.inc +++ b/packages/cocoaint/src/appkit/NSText.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSText.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXT_PAS_H} -{$define NSTEXT_PAS_H} -type - NSTextPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXT_PAS_T} @@ -78,11 +70,18 @@ type {$ifndef NSTEXT_PAS_S} {$define NSTEXT_PAS_S} +{ External string constants } +var + NSTextDidBeginEditingNotification: NSString; external name '_NSTextDidBeginEditingNotification'; + NSTextDidEndEditingNotification: NSString; external name '_NSTextDidEndEditingNotification'; + NSTextDidChangeNotification: NSString; external name '_NSTextDidChangeNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSText = objcclass; + NSTextPointer = ^NSText; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextAttachment.inc b/packages/cocoaint/src/appkit/NSTextAttachment.inc index faacdb3620..6461862d7f 100644 --- a/packages/cocoaint/src/appkit/NSTextAttachment.inc +++ b/packages/cocoaint/src/appkit/NSTextAttachment.inc @@ -1,15 +1,6 @@ { Parsed from Appkit.framework NSTextAttachment.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTATTACHMENT_PAS_H} -{$define NSTEXTATTACHMENT_PAS_H} -type - NSTextAttachmentCellPointer = Pointer; - NSTextAttachmentPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTATTACHMENT_PAS_T} @@ -47,7 +38,9 @@ const {$ifdef FORWARD} NSTextAttachmentCellProtocol = objcprotocol; NSTextAttachmentCell = objcclass; + NSTextAttachmentCellPointer = ^NSTextAttachmentCell; NSTextAttachment = objcclass; + NSTextAttachmentPointer = ^NSTextAttachment; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextContainer.inc b/packages/cocoaint/src/appkit/NSTextContainer.inc index 1917eaa9b4..946a603668 100644 --- a/packages/cocoaint/src/appkit/NSTextContainer.inc +++ b/packages/cocoaint/src/appkit/NSTextContainer.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTextContainer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTCONTAINER_PAS_H} -{$define NSTEXTCONTAINER_PAS_H} -type - NSTextContainerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTCONTAINER_PAS_T} @@ -60,6 +52,7 @@ type {$ifdef FORWARD} NSTextContainer = objcclass; + NSTextContainerPointer = ^NSTextContainer; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextField.inc b/packages/cocoaint/src/appkit/NSTextField.inc index 52b96567e3..1f18864b18 100644 --- a/packages/cocoaint/src/appkit/NSTextField.inc +++ b/packages/cocoaint/src/appkit/NSTextField.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTextField.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTFIELD_PAS_H} -{$define NSTEXTFIELD_PAS_H} -type - NSTextFieldPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTFIELD_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTextField = objcclass; + NSTextFieldPointer = ^NSTextField; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextFieldCell.inc b/packages/cocoaint/src/appkit/NSTextFieldCell.inc index 06e44052b0..32fa57c2bc 100644 --- a/packages/cocoaint/src/appkit/NSTextFieldCell.inc +++ b/packages/cocoaint/src/appkit/NSTextFieldCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTextFieldCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTFIELDCELL_PAS_H} -{$define NSTEXTFIELDCELL_PAS_H} -type - NSTextFieldCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTFIELDCELL_PAS_T} @@ -50,6 +42,7 @@ type {$ifdef FORWARD} NSTextFieldCell = objcclass; + NSTextFieldCellPointer = ^NSTextFieldCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextInputClient.inc b/packages/cocoaint/src/appkit/NSTextInputClient.inc index 9c18c80c23..78d580badf 100644 --- a/packages/cocoaint/src/appkit/NSTextInputClient.inc +++ b/packages/cocoaint/src/appkit/NSTextInputClient.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSTextInputClient.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:08 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSTextList.inc b/packages/cocoaint/src/appkit/NSTextList.inc index f99615548a..5e42d507af 100644 --- a/packages/cocoaint/src/appkit/NSTextList.inc +++ b/packages/cocoaint/src/appkit/NSTextList.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTextList.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTLIST_PAS_H} -{$define NSTEXTLIST_PAS_H} -type - NSTextListPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTLIST_PAS_T} @@ -45,6 +37,7 @@ const {$ifdef FORWARD} NSTextList = objcclass; + NSTextListPointer = ^NSTextList; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextStorage.inc b/packages/cocoaint/src/appkit/NSTextStorage.inc index ba2f5d35e1..b12822a8b9 100644 --- a/packages/cocoaint/src/appkit/NSTextStorage.inc +++ b/packages/cocoaint/src/appkit/NSTextStorage.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTextStorage.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTSTORAGE_PAS_H} -{$define NSTEXTSTORAGE_PAS_H} -type - NSTextStoragePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTSTORAGE_PAS_T} @@ -41,11 +33,17 @@ const {$ifndef NSTEXTSTORAGE_PAS_S} {$define NSTEXTSTORAGE_PAS_S} +{ External string constants } +var + NSTextStorageWillProcessEditingNotification: NSString; external name '_NSTextStorageWillProcessEditingNotification'; + NSTextStorageDidProcessEditingNotification: NSString; external name '_NSTextStorageDidProcessEditingNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSTextStorage = objcclass; + NSTextStoragePointer = ^NSTextStorage; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextStorageScripting.inc b/packages/cocoaint/src/appkit/NSTextStorageScripting.inc index 721b6ebf58..1867314cdf 100644 --- a/packages/cocoaint/src/appkit/NSTextStorageScripting.inc +++ b/packages/cocoaint/src/appkit/NSTextStorageScripting.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSTextStorageScripting.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSTextTable.inc b/packages/cocoaint/src/appkit/NSTextTable.inc index d03c163d23..e89866e4f4 100644 --- a/packages/cocoaint/src/appkit/NSTextTable.inc +++ b/packages/cocoaint/src/appkit/NSTextTable.inc @@ -1,16 +1,6 @@ { Parsed from Appkit.framework NSTextTable.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTTABLE_PAS_H} -{$define NSTEXTTABLE_PAS_H} -type - NSTextBlockPointer = Pointer; - NSTextTableBlockPointer = Pointer; - NSTextTablePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTTABLE_PAS_T} @@ -79,8 +69,11 @@ type {$ifdef FORWARD} NSTextBlock = objcclass; + NSTextBlockPointer = ^NSTextBlock; NSTextTableBlock = objcclass; + NSTextTableBlockPointer = ^NSTextTableBlock; NSTextTable = objcclass; + NSTextTablePointer = ^NSTextTable; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTextView.inc b/packages/cocoaint/src/appkit/NSTextView.inc index 33fa446acd..a1cc58b991 100644 --- a/packages/cocoaint/src/appkit/NSTextView.inc +++ b/packages/cocoaint/src/appkit/NSTextView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTextView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTEXTVIEW_PAS_H} -{$define NSTEXTVIEW_PAS_H} -type - NSTextViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTEXTVIEW_PAS_T} @@ -71,11 +63,22 @@ type {$ifndef NSTEXTVIEW_PAS_S} {$define NSTEXTVIEW_PAS_S} +{ External string constants } +var + NSFindPanelSearchOptionsPboardType: NSString; external name '_NSFindPanelSearchOptionsPboardType'; + NSFindPanelCaseInsensitiveSearch: NSString; external name '_NSFindPanelCaseInsensitiveSearch'; + NSFindPanelSubstringMatch: NSString; external name '_NSFindPanelSubstringMatch'; + NSAllRomanInputSourcesLocaleIdentifier: NSString; external name '_NSAllRomanInputSourcesLocaleIdentifier'; + NSTextViewWillChangeNotifyingTextViewNotification: NSString; external name '_NSTextViewWillChangeNotifyingTextViewNotification'; + NSTextViewDidChangeSelectionNotification: NSString; external name '_NSTextViewDidChangeSelectionNotification'; + NSTextViewDidChangeTypingAttributesNotification: NSString; external name '_NSTextViewDidChangeTypingAttributesNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSTextView = objcclass; + NSTextViewPointer = ^NSTextView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTokenField.inc b/packages/cocoaint/src/appkit/NSTokenField.inc index cc39377036..7708647db0 100644 --- a/packages/cocoaint/src/appkit/NSTokenField.inc +++ b/packages/cocoaint/src/appkit/NSTokenField.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTokenField.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTOKENFIELD_PAS_H} -{$define NSTOKENFIELD_PAS_H} -type - NSTokenFieldPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTOKENFIELD_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTokenField = objcclass; + NSTokenFieldPointer = ^NSTokenField; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTokenFieldCell.inc b/packages/cocoaint/src/appkit/NSTokenFieldCell.inc index ceeb9b31a6..04d16ba021 100644 --- a/packages/cocoaint/src/appkit/NSTokenFieldCell.inc +++ b/packages/cocoaint/src/appkit/NSTokenFieldCell.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTokenFieldCell.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTOKENFIELDCELL_PAS_H} -{$define NSTOKENFIELDCELL_PAS_H} -type - NSTokenFieldCellPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTOKENFIELDCELL_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSTokenFieldCell = objcclass; + NSTokenFieldCellPointer = ^NSTokenFieldCell; {$endif} diff --git a/packages/cocoaint/src/appkit/NSToolbar.inc b/packages/cocoaint/src/appkit/NSToolbar.inc index 0a0a593388..75707e01a1 100644 --- a/packages/cocoaint/src/appkit/NSToolbar.inc +++ b/packages/cocoaint/src/appkit/NSToolbar.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSToolbar.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTOOLBAR_PAS_H} -{$define NSTOOLBAR_PAS_H} -type - NSToolbarPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTOOLBAR_PAS_T} @@ -40,11 +32,17 @@ type {$ifndef NSTOOLBAR_PAS_S} {$define NSTOOLBAR_PAS_S} +{ External string constants } +var + NSToolbarWillAddItemNotification: NSString; external name '_NSToolbarWillAddItemNotification'; + NSToolbarDidRemoveItemNotification: NSString; external name '_NSToolbarDidRemoveItemNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSToolbar = objcclass; + NSToolbarPointer = ^NSToolbar; {$endif} diff --git a/packages/cocoaint/src/appkit/NSToolbarItem.inc b/packages/cocoaint/src/appkit/NSToolbarItem.inc index daace4d659..42f2e543d0 100644 --- a/packages/cocoaint/src/appkit/NSToolbarItem.inc +++ b/packages/cocoaint/src/appkit/NSToolbarItem.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSToolbarItem.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTOOLBARITEM_PAS_H} -{$define NSTOOLBARITEM_PAS_H} -type - NSToolbarItemPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTOOLBARITEM_PAS_T} @@ -43,11 +35,22 @@ const {$ifndef NSTOOLBARITEM_PAS_S} {$define NSTOOLBARITEM_PAS_S} +{ External string constants } +var + NSToolbarSeparatorItemIdentifier: NSString; external name '_NSToolbarSeparatorItemIdentifier'; + NSToolbarSpaceItemIdentifier: NSString; external name '_NSToolbarSpaceItemIdentifier'; + NSToolbarFlexibleSpaceItemIdentifier: NSString; external name '_NSToolbarFlexibleSpaceItemIdentifier'; + NSToolbarShowColorsItemIdentifier: NSString; external name '_NSToolbarShowColorsItemIdentifier'; + NSToolbarShowFontsItemIdentifier: NSString; external name '_NSToolbarShowFontsItemIdentifier'; + NSToolbarCustomizeToolbarItemIdentifier: NSString; external name '_NSToolbarCustomizeToolbarItemIdentifier'; + NSToolbarPrintItemIdentifier: NSString; external name '_NSToolbarPrintItemIdentifier'; + {$endif} {$endif} {$ifdef FORWARD} NSToolbarItem = objcclass; + NSToolbarItemPointer = ^NSToolbarItem; {$endif} diff --git a/packages/cocoaint/src/appkit/NSToolbarItemGroup.inc b/packages/cocoaint/src/appkit/NSToolbarItemGroup.inc index 6612862f6e..9501352c3f 100644 --- a/packages/cocoaint/src/appkit/NSToolbarItemGroup.inc +++ b/packages/cocoaint/src/appkit/NSToolbarItemGroup.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSToolbarItemGroup.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTOOLBARITEMGROUP_PAS_H} -{$define NSTOOLBARITEMGROUP_PAS_H} -type - NSToolbarItemGroupPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTOOLBARITEMGROUP_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSToolbarItemGroup = objcclass; + NSToolbarItemGroupPointer = ^NSToolbarItemGroup; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTrackingArea.inc b/packages/cocoaint/src/appkit/NSTrackingArea.inc index 95dc2a7da0..dd5cb58219 100644 --- a/packages/cocoaint/src/appkit/NSTrackingArea.inc +++ b/packages/cocoaint/src/appkit/NSTrackingArea.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTrackingArea.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTRACKINGAREA_PAS_H} -{$define NSTRACKINGAREA_PAS_H} -type - NSTrackingAreaPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTRACKINGAREA_PAS_T} @@ -62,6 +54,7 @@ type {$ifdef FORWARD} NSTrackingArea = objcclass; + NSTrackingAreaPointer = ^NSTrackingArea; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTreeController.inc b/packages/cocoaint/src/appkit/NSTreeController.inc index 6a043acfb0..e1d0935d2c 100644 --- a/packages/cocoaint/src/appkit/NSTreeController.inc +++ b/packages/cocoaint/src/appkit/NSTreeController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTreeController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTREECONTROLLER_PAS_H} -{$define NSTREECONTROLLER_PAS_H} -type - NSTreeControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTREECONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTreeController = objcclass; + NSTreeControllerPointer = ^NSTreeController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSTreeNode.inc b/packages/cocoaint/src/appkit/NSTreeNode.inc index 23592de98b..5316fde2f8 100644 --- a/packages/cocoaint/src/appkit/NSTreeNode.inc +++ b/packages/cocoaint/src/appkit/NSTreeNode.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSTreeNode.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTREENODE_PAS_H} -{$define NSTREENODE_PAS_H} -type - NSTreeNodePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTREENODE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTreeNode = objcclass; + NSTreeNodePointer = ^NSTreeNode; {$endif} diff --git a/packages/cocoaint/src/appkit/NSUserDefaultsController.inc b/packages/cocoaint/src/appkit/NSUserDefaultsController.inc index 6c4d7feb37..4f485ab28a 100644 --- a/packages/cocoaint/src/appkit/NSUserDefaultsController.inc +++ b/packages/cocoaint/src/appkit/NSUserDefaultsController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSUserDefaultsController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSUSERDEFAULTSCONTROLLER_PAS_H} -{$define NSUSERDEFAULTSCONTROLLER_PAS_H} -type - NSUserDefaultsControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSUSERDEFAULTSCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSUserDefaultsController = objcclass; + NSUserDefaultsControllerPointer = ^NSUserDefaultsController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSView.inc b/packages/cocoaint/src/appkit/NSView.inc index 1c00325bfd..8d242e1ea6 100644 --- a/packages/cocoaint/src/appkit/NSView.inc +++ b/packages/cocoaint/src/appkit/NSView.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSView.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSVIEW_PAS_H} -{$define NSVIEW_PAS_H} -type - NSViewPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSVIEW_PAS_T} @@ -121,12 +113,18 @@ var NSFullScreenModeAllScreens: NSString; external name '_NSFullScreenModeAllScreens'; NSFullScreenModeSetting: NSString; external name '_NSFullScreenModeSetting'; NSFullScreenModeWindowLevel: NSString; external name '_NSFullScreenModeWindowLevel'; + NSViewFrameDidChangeNotification: NSString; external name '_NSViewFrameDidChangeNotification'; + NSViewFocusDidChangeNotification: NSString; external name '_NSViewFocusDidChangeNotification'; + NSViewBoundsDidChangeNotification: NSString; external name '_NSViewBoundsDidChangeNotification'; + NSViewGlobalFrameDidChangeNotification: NSString; external name '_NSViewGlobalFrameDidChangeNotification'; + NSViewDidUpdateTrackingAreasNotification: NSString; external name '_NSViewDidUpdateTrackingAreasNotification'; {$endif} {$endif} {$ifdef FORWARD} NSView = objcclass; + NSViewPointer = ^NSView; {$endif} diff --git a/packages/cocoaint/src/appkit/NSViewController.inc b/packages/cocoaint/src/appkit/NSViewController.inc index 77aceea222..505c03cfac 100644 --- a/packages/cocoaint/src/appkit/NSViewController.inc +++ b/packages/cocoaint/src/appkit/NSViewController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSViewController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSVIEWCONTROLLER_PAS_H} -{$define NSVIEWCONTROLLER_PAS_H} -type - NSViewControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSVIEWCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSViewController = objcclass; + NSViewControllerPointer = ^NSViewController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSWindow.inc b/packages/cocoaint/src/appkit/NSWindow.inc index c068a0f2eb..30aae5e120 100644 --- a/packages/cocoaint/src/appkit/NSWindow.inc +++ b/packages/cocoaint/src/appkit/NSWindow.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSWindow.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSWINDOW_PAS_H} -{$define NSWINDOW_PAS_H} -type - NSWindowPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSWINDOW_PAS_T} @@ -96,11 +88,32 @@ type {$ifndef NSWINDOW_PAS_S} {$define NSWINDOW_PAS_S} +{ External string constants } +var + NSWindowDidBecomeKeyNotification: NSString; external name '_NSWindowDidBecomeKeyNotification'; + NSWindowDidBecomeMainNotification: NSString; external name '_NSWindowDidBecomeMainNotification'; + NSWindowDidChangeScreenNotification: NSString; external name '_NSWindowDidChangeScreenNotification'; + NSWindowDidDeminiaturizeNotification: NSString; external name '_NSWindowDidDeminiaturizeNotification'; + NSWindowDidExposeNotification: NSString; external name '_NSWindowDidExposeNotification'; + NSWindowDidMiniaturizeNotification: NSString; external name '_NSWindowDidMiniaturizeNotification'; + NSWindowDidMoveNotification: NSString; external name '_NSWindowDidMoveNotification'; + NSWindowDidResignKeyNotification: NSString; external name '_NSWindowDidResignKeyNotification'; + NSWindowDidResignMainNotification: NSString; external name '_NSWindowDidResignMainNotification'; + NSWindowDidResizeNotification: NSString; external name '_NSWindowDidResizeNotification'; + NSWindowDidUpdateNotification: NSString; external name '_NSWindowDidUpdateNotification'; + NSWindowWillCloseNotification: NSString; external name '_NSWindowWillCloseNotification'; + NSWindowWillMiniaturizeNotification: NSString; external name '_NSWindowWillMiniaturizeNotification'; + NSWindowWillMoveNotification: NSString; external name '_NSWindowWillMoveNotification'; + NSWindowWillBeginSheetNotification: NSString; external name '_NSWindowWillBeginSheetNotification'; + NSWindowDidEndSheetNotification: NSString; external name '_NSWindowDidEndSheetNotification'; + NSWindowDidChangeScreenProfileNotification: NSString; external name '_NSWindowDidChangeScreenProfileNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSWindow = objcclass; + NSWindowPointer = ^NSWindow; {$endif} diff --git a/packages/cocoaint/src/appkit/NSWindowController.inc b/packages/cocoaint/src/appkit/NSWindowController.inc index 33b220377b..1a35054fd2 100644 --- a/packages/cocoaint/src/appkit/NSWindowController.inc +++ b/packages/cocoaint/src/appkit/NSWindowController.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSWindowController.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSWINDOWCONTROLLER_PAS_H} -{$define NSWINDOWCONTROLLER_PAS_H} -type - NSWindowControllerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSWINDOWCONTROLLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSWindowController = objcclass; + NSWindowControllerPointer = ^NSWindowController; {$endif} diff --git a/packages/cocoaint/src/appkit/NSWindowScripting.inc b/packages/cocoaint/src/appkit/NSWindowScripting.inc index ba67959a82..7951248e66 100644 --- a/packages/cocoaint/src/appkit/NSWindowScripting.inc +++ b/packages/cocoaint/src/appkit/NSWindowScripting.inc @@ -1,5 +1,5 @@ { Parsed from Appkit.framework NSWindowScripting.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/appkit/NSWorkspace.inc b/packages/cocoaint/src/appkit/NSWorkspace.inc index 5d0b8942c1..79b59a637b 100644 --- a/packages/cocoaint/src/appkit/NSWorkspace.inc +++ b/packages/cocoaint/src/appkit/NSWorkspace.inc @@ -1,14 +1,6 @@ { Parsed from Appkit.framework NSWorkspace.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:53 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSWORKSPACE_PAS_H} -{$define NSWORKSPACE_PAS_H} -type - NSWorkspacePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSWORKSPACE_PAS_T} @@ -58,11 +50,37 @@ const {$ifndef NSWORKSPACE_PAS_S} {$define NSWORKSPACE_PAS_S} +{ External string constants } +var + NSWorkspaceDidLaunchApplicationNotification: NSString; external name '_NSWorkspaceDidLaunchApplicationNotification'; + NSWorkspaceDidMountNotification: NSString; external name '_NSWorkspaceDidMountNotification'; + NSWorkspaceDidPerformFileOperationNotification: NSString; external name '_NSWorkspaceDidPerformFileOperationNotification'; + NSWorkspaceDidTerminateApplicationNotification: NSString; external name '_NSWorkspaceDidTerminateApplicationNotification'; + NSWorkspaceDidUnmountNotification: NSString; external name '_NSWorkspaceDidUnmountNotification'; + NSWorkspaceWillLaunchApplicationNotification: NSString; external name '_NSWorkspaceWillLaunchApplicationNotification'; + NSWorkspaceWillPowerOffNotification: NSString; external name '_NSWorkspaceWillPowerOffNotification'; + NSWorkspaceWillUnmountNotification: NSString; external name '_NSWorkspaceWillUnmountNotification'; + NSWorkspaceWillSleepNotification: NSString; external name '_NSWorkspaceWillSleepNotification'; + NSWorkspaceDidWakeNotification: NSString; external name '_NSWorkspaceDidWakeNotification'; + NSWorkspaceSessionDidBecomeActiveNotification: NSString; external name '_NSWorkspaceSessionDidBecomeActiveNotification'; + NSWorkspaceSessionDidResignActiveNotification: NSString; external name '_NSWorkspaceSessionDidResignActiveNotification'; + NSWorkspaceMoveOperation: NSString; external name '_NSWorkspaceMoveOperation'; + NSWorkspaceCopyOperation: NSString; external name '_NSWorkspaceCopyOperation'; + NSWorkspaceLinkOperation: NSString; external name '_NSWorkspaceLinkOperation'; + NSWorkspaceCompressOperation: NSString; external name '_NSWorkspaceCompressOperation'; + NSWorkspaceDecompressOperation: NSString; external name '_NSWorkspaceDecompressOperation'; + NSWorkspaceEncryptOperation: NSString; external name '_NSWorkspaceEncryptOperation'; + NSWorkspaceDecryptOperation: NSString; external name '_NSWorkspaceDecryptOperation'; + NSWorkspaceDestroyOperation: NSString; external name '_NSWorkspaceDestroyOperation'; + NSWorkspaceRecycleOperation: NSString; external name '_NSWorkspaceRecycleOperation'; + NSWorkspaceDuplicateOperation: NSString; external name '_NSWorkspaceDuplicateOperation'; + {$endif} {$endif} {$ifdef FORWARD} NSWorkspace = objcclass; + NSWorkspacePointer = ^NSWorkspace; {$endif} diff --git a/packages/cocoaint/src/foundation/NSAppleEventDescriptor.inc b/packages/cocoaint/src/foundation/NSAppleEventDescriptor.inc index 8a82e1c740..03a248a814 100644 --- a/packages/cocoaint/src/foundation/NSAppleEventDescriptor.inc +++ b/packages/cocoaint/src/foundation/NSAppleEventDescriptor.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSAppleEventDescriptor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSAPPLEEVENTDESCRIPTOR_PAS_H} -{$define NSAPPLEEVENTDESCRIPTOR_PAS_H} -type - NSAppleEventDescriptorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSAPPLEEVENTDESCRIPTOR_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSAppleEventDescriptor = objcclass; + NSAppleEventDescriptorPointer = ^NSAppleEventDescriptor; {$endif} diff --git a/packages/cocoaint/src/foundation/NSAppleEventManager.inc b/packages/cocoaint/src/foundation/NSAppleEventManager.inc index 1d8bd78328..1cb43fdc44 100644 --- a/packages/cocoaint/src/foundation/NSAppleEventManager.inc +++ b/packages/cocoaint/src/foundation/NSAppleEventManager.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSAppleEventManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSAPPLEEVENTMANAGER_PAS_H} -{$define NSAPPLEEVENTMANAGER_PAS_H} -type - NSAppleEventManagerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSAPPLEEVENTMANAGER_PAS_T} @@ -44,6 +36,7 @@ type {$ifdef FORWARD} NSAppleEventManager = objcclass; + NSAppleEventManagerPointer = ^NSAppleEventManager; {$endif} diff --git a/packages/cocoaint/src/foundation/NSAppleScript.inc b/packages/cocoaint/src/foundation/NSAppleScript.inc index 717acc23ff..2722453d67 100644 --- a/packages/cocoaint/src/foundation/NSAppleScript.inc +++ b/packages/cocoaint/src/foundation/NSAppleScript.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSAppleScript.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSAPPLESCRIPT_PAS_H} -{$define NSAPPLESCRIPT_PAS_H} -type - NSAppleScriptPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSAPPLESCRIPT_PAS_T} @@ -48,6 +40,7 @@ var {$ifdef FORWARD} NSAppleScript = objcclass; + NSAppleScriptPointer = ^NSAppleScript; {$endif} diff --git a/packages/cocoaint/src/foundation/NSArchiver.inc b/packages/cocoaint/src/foundation/NSArchiver.inc index 81eeaec0e3..e0e122c454 100644 --- a/packages/cocoaint/src/foundation/NSArchiver.inc +++ b/packages/cocoaint/src/foundation/NSArchiver.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSArchiver.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSARCHIVER_PAS_H} -{$define NSARCHIVER_PAS_H} -type - NSArchiverPointer = Pointer; - NSUnarchiverPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSARCHIVER_PAS_T} @@ -45,7 +36,9 @@ var {$ifdef FORWARD} NSArchiver = objcclass; + NSArchiverPointer = ^NSArchiver; NSUnarchiver = objcclass; + NSUnarchiverPointer = ^NSUnarchiver; {$endif} diff --git a/packages/cocoaint/src/foundation/NSArray.inc b/packages/cocoaint/src/foundation/NSArray.inc index cb7db358d3..4d28b503a5 100644 --- a/packages/cocoaint/src/foundation/NSArray.inc +++ b/packages/cocoaint/src/foundation/NSArray.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSArray.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSARRAY_PAS_H} -{$define NSARRAY_PAS_H} -type - NSArrayPointer = Pointer; - NSMutableArrayPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSARRAY_PAS_T} @@ -45,7 +36,9 @@ type {$ifdef FORWARD} NSArray = objcclass; + NSArrayPointer = ^NSArray; NSMutableArray = objcclass; + NSMutableArrayPointer = ^NSMutableArray; {$endif} diff --git a/packages/cocoaint/src/foundation/NSAutoreleasePool.inc b/packages/cocoaint/src/foundation/NSAutoreleasePool.inc index 42c0be0c73..e792314990 100644 --- a/packages/cocoaint/src/foundation/NSAutoreleasePool.inc +++ b/packages/cocoaint/src/foundation/NSAutoreleasePool.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSAutoreleasePool.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSAUTORELEASEPOOL_PAS_H} -{$define NSAUTORELEASEPOOL_PAS_H} -type - NSAutoreleasePoolPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSAUTORELEASEPOOL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSAutoreleasePool = objcclass; + NSAutoreleasePoolPointer = ^NSAutoreleasePool; {$endif} diff --git a/packages/cocoaint/src/foundation/NSBundle.inc b/packages/cocoaint/src/foundation/NSBundle.inc index 531daef5db..30ca780081 100644 --- a/packages/cocoaint/src/foundation/NSBundle.inc +++ b/packages/cocoaint/src/foundation/NSBundle.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSBundle.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSBUNDLE_PAS_H} -{$define NSBUNDLE_PAS_H} -type - NSBundlePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSBUNDLE_PAS_T} @@ -51,8 +43,29 @@ var {$endif} {$endif} +{$ifdef USER_PATCHES} +{ifndef NSBUNDLE_PAS_PATCH} +{define NSBUNDLE_PAS_PATCH} + +{$ifdef INTERFACE} +function NSLocalizedString(key : NSString): NSString; inline; +{$endif} + +{$ifdef IMPLEMENTATION} +function NSLocalizedString(key : NSString): NSString; +var + kEmptyString: NSString; +begin + Result := NSBundle.mainBundle.localizedStringForKey_value_table(key, kEmptyString, nil); +end; +{$endif} + +{endif} +{$endif} + {$ifdef FORWARD} NSBundle = objcclass; + NSBundlePointer = ^NSBundle; {$endif} diff --git a/packages/cocoaint/src/foundation/NSCalendar.inc b/packages/cocoaint/src/foundation/NSCalendar.inc index 2948dc5b7e..05fe362be7 100644 --- a/packages/cocoaint/src/foundation/NSCalendar.inc +++ b/packages/cocoaint/src/foundation/NSCalendar.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSCalendar.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCALENDAR_PAS_H} -{$define NSCALENDAR_PAS_H} -type - NSCalendarPointer = Pointer; - NSDateComponentsPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCALENDAR_PAS_T} @@ -65,7 +56,9 @@ type {$ifdef FORWARD} NSCalendar = objcclass; + NSCalendarPointer = ^NSCalendar; NSDateComponents = objcclass; + NSDateComponentsPointer = ^NSDateComponents; {$endif} diff --git a/packages/cocoaint/src/foundation/NSCalendarDate.inc b/packages/cocoaint/src/foundation/NSCalendarDate.inc index a9ee854ff6..b2f38cc1ed 100644 --- a/packages/cocoaint/src/foundation/NSCalendarDate.inc +++ b/packages/cocoaint/src/foundation/NSCalendarDate.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSCalendarDate.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCALENDARDATE_PAS_H} -{$define NSCALENDARDATE_PAS_H} -type - NSCalendarDatePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCALENDARDATE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSCalendarDate = objcclass; + NSCalendarDatePointer = ^NSCalendarDate; {$endif} diff --git a/packages/cocoaint/src/foundation/NSCharacterSet.inc b/packages/cocoaint/src/foundation/NSCharacterSet.inc index 16cca4f6e6..3adc2e0da0 100644 --- a/packages/cocoaint/src/foundation/NSCharacterSet.inc +++ b/packages/cocoaint/src/foundation/NSCharacterSet.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSCharacterSet.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCHARACTERSET_PAS_H} -{$define NSCHARACTERSET_PAS_H} -type - NSCharacterSetPointer = Pointer; - NSMutableCharacterSetPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCHARACTERSET_PAS_T} @@ -46,7 +37,9 @@ const {$ifdef FORWARD} NSCharacterSet = objcclass; + NSCharacterSetPointer = ^NSCharacterSet; NSMutableCharacterSet = objcclass; + NSMutableCharacterSetPointer = ^NSMutableCharacterSet; {$endif} diff --git a/packages/cocoaint/src/foundation/NSClassDescription.inc b/packages/cocoaint/src/foundation/NSClassDescription.inc index cbd683c635..9d52cd593b 100644 --- a/packages/cocoaint/src/foundation/NSClassDescription.inc +++ b/packages/cocoaint/src/foundation/NSClassDescription.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSClassDescription.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCLASSDESCRIPTION_PAS_H} -{$define NSCLASSDESCRIPTION_PAS_H} -type - NSClassDescriptionPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCLASSDESCRIPTION_PAS_T} @@ -35,11 +27,16 @@ type {$ifndef NSCLASSDESCRIPTION_PAS_S} {$define NSCLASSDESCRIPTION_PAS_S} +{ External string constants } +var + NSClassDescriptionNeededForClassNotification: NSString; external name '_NSClassDescriptionNeededForClassNotification'; + {$endif} {$endif} {$ifdef FORWARD} NSClassDescription = objcclass; + NSClassDescriptionPointer = ^NSClassDescription; {$endif} diff --git a/packages/cocoaint/src/foundation/NSCoder.inc b/packages/cocoaint/src/foundation/NSCoder.inc index 5e767879fd..a7b77af569 100644 --- a/packages/cocoaint/src/foundation/NSCoder.inc +++ b/packages/cocoaint/src/foundation/NSCoder.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSCoder.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCODER_PAS_H} -{$define NSCODER_PAS_H} -type - NSCoderPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCODER_PAS_T} @@ -43,6 +35,7 @@ function NXReadNSObjectFromCoder(decoderPointer: NSCoder): NSObject; cdecl; exte {$ifdef FORWARD} NSCoder = objcclass; + NSCoderPointer = ^NSCoder; {$endif} diff --git a/packages/cocoaint/src/foundation/NSComparisonPredicate.inc b/packages/cocoaint/src/foundation/NSComparisonPredicate.inc index 04adb67a03..78866d7d1c 100644 --- a/packages/cocoaint/src/foundation/NSComparisonPredicate.inc +++ b/packages/cocoaint/src/foundation/NSComparisonPredicate.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSComparisonPredicate.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOMPARISONPREDICATE_PAS_H} -{$define NSCOMPARISONPREDICATE_PAS_H} -type - NSComparisonPredicatePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOMPARISONPREDICATE_PAS_T} @@ -72,6 +64,7 @@ type {$ifdef FORWARD} NSComparisonPredicate = objcclass; + NSComparisonPredicatePointer = ^NSComparisonPredicate; {$endif} diff --git a/packages/cocoaint/src/foundation/NSCompoundPredicate.inc b/packages/cocoaint/src/foundation/NSCompoundPredicate.inc index 0a3025cfcf..fe5a2dadc9 100644 --- a/packages/cocoaint/src/foundation/NSCompoundPredicate.inc +++ b/packages/cocoaint/src/foundation/NSCompoundPredicate.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSCompoundPredicate.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCOMPOUNDPREDICATE_PAS_H} -{$define NSCOMPOUNDPREDICATE_PAS_H} -type - NSCompoundPredicatePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCOMPOUNDPREDICATE_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSCompoundPredicate = objcclass; + NSCompoundPredicatePointer = ^NSCompoundPredicate; {$endif} diff --git a/packages/cocoaint/src/foundation/NSConnection.inc b/packages/cocoaint/src/foundation/NSConnection.inc index 42596b178a..284fa47c43 100644 --- a/packages/cocoaint/src/foundation/NSConnection.inc +++ b/packages/cocoaint/src/foundation/NSConnection.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSConnection.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSCONNECTION_PAS_H} -{$define NSCONNECTION_PAS_H} -type - NSConnectionPointer = Pointer; - NSDistantObjectRequestPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSCONNECTION_PAS_T} @@ -48,7 +39,9 @@ var {$ifdef FORWARD} NSConnection = objcclass; + NSConnectionPointer = ^NSConnection; NSDistantObjectRequest = objcclass; + NSDistantObjectRequestPointer = ^NSDistantObjectRequest; {$endif} diff --git a/packages/cocoaint/src/foundation/NSData.inc b/packages/cocoaint/src/foundation/NSData.inc index bf27ddfb40..d72d51421e 100644 --- a/packages/cocoaint/src/foundation/NSData.inc +++ b/packages/cocoaint/src/foundation/NSData.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSData.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDATA_PAS_H} -{$define NSDATA_PAS_H} -type - NSDataPointer = Pointer; - NSMutableDataPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDATA_PAS_T} @@ -50,7 +41,9 @@ const {$ifdef FORWARD} NSData = objcclass; + NSDataPointer = ^NSData; NSMutableData = objcclass; + NSMutableDataPointer = ^NSMutableData; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDate.inc b/packages/cocoaint/src/foundation/NSDate.inc index a1e20a0ccb..c94c549bd4 100644 --- a/packages/cocoaint/src/foundation/NSDate.inc +++ b/packages/cocoaint/src/foundation/NSDate.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSDate.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDATE_PAS_H} -{$define NSDATE_PAS_H} -type - NSDatePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDATE_PAS_T} @@ -48,6 +40,7 @@ const {$ifdef FORWARD} NSDate = objcclass; + NSDatePointer = ^NSDate; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDateFormatter.inc b/packages/cocoaint/src/foundation/NSDateFormatter.inc index 898b49bce4..60c4c2abaa 100644 --- a/packages/cocoaint/src/foundation/NSDateFormatter.inc +++ b/packages/cocoaint/src/foundation/NSDateFormatter.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSDateFormatter.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDATEFORMATTER_PAS_H} -{$define NSDATEFORMATTER_PAS_H} -type - NSDateFormatterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDATEFORMATTER_PAS_T} @@ -59,6 +51,7 @@ type {$ifdef FORWARD} NSDateFormatter = objcclass; + NSDateFormatterPointer = ^NSDateFormatter; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDecimal.inc b/packages/cocoaint/src/foundation/NSDecimal.inc index fe894cef19..dda31578de 100644 --- a/packages/cocoaint/src/foundation/NSDecimal.inc +++ b/packages/cocoaint/src/foundation/NSDecimal.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSDecimal.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSDecimalNumber.inc b/packages/cocoaint/src/foundation/NSDecimalNumber.inc index f1381e25f0..c9667e36b0 100644 --- a/packages/cocoaint/src/foundation/NSDecimalNumber.inc +++ b/packages/cocoaint/src/foundation/NSDecimalNumber.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSDecimalNumber.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDECIMALNUMBER_PAS_H} -{$define NSDECIMALNUMBER_PAS_H} -type - NSDecimalNumberPointer = Pointer; - NSDecimalNumberHandlerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDECIMALNUMBER_PAS_T} @@ -49,7 +40,9 @@ var {$ifdef FORWARD} NSDecimalNumberBehaviorsProtocol = objcprotocol; NSDecimalNumber = objcclass; + NSDecimalNumberPointer = ^NSDecimalNumber; NSDecimalNumberHandler = objcclass; + NSDecimalNumberHandlerPointer = ^NSDecimalNumberHandler; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDictionary.inc b/packages/cocoaint/src/foundation/NSDictionary.inc index 8dfab08a01..785de5fa32 100644 --- a/packages/cocoaint/src/foundation/NSDictionary.inc +++ b/packages/cocoaint/src/foundation/NSDictionary.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSDictionary.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDICTIONARY_PAS_H} -{$define NSDICTIONARY_PAS_H} -type - NSDictionaryPointer = Pointer; - NSMutableDictionaryPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDICTIONARY_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSDictionary = objcclass; + NSDictionaryPointer = ^NSDictionary; NSMutableDictionary = objcclass; + NSMutableDictionaryPointer = ^NSMutableDictionary; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDistantObject.inc b/packages/cocoaint/src/foundation/NSDistantObject.inc index baaabf23df..a29630a9e9 100644 --- a/packages/cocoaint/src/foundation/NSDistantObject.inc +++ b/packages/cocoaint/src/foundation/NSDistantObject.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSDistantObject.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDISTANTOBJECT_PAS_H} -{$define NSDISTANTOBJECT_PAS_H} -type - NSDistantObjectPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDISTANTOBJECT_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSDistantObject = objcclass; + NSDistantObjectPointer = ^NSDistantObject; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDistributedLock.inc b/packages/cocoaint/src/foundation/NSDistributedLock.inc index 612e1e9a1a..f757a6f21a 100644 --- a/packages/cocoaint/src/foundation/NSDistributedLock.inc +++ b/packages/cocoaint/src/foundation/NSDistributedLock.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSDistributedLock.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDISTRIBUTEDLOCK_PAS_H} -{$define NSDISTRIBUTEDLOCK_PAS_H} -type - NSDistributedLockPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDISTRIBUTEDLOCK_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSDistributedLock = objcclass; + NSDistributedLockPointer = ^NSDistributedLock; {$endif} diff --git a/packages/cocoaint/src/foundation/NSDistributedNotificationCenter.inc b/packages/cocoaint/src/foundation/NSDistributedNotificationCenter.inc index 22f3812ae1..ae1da3a99a 100644 --- a/packages/cocoaint/src/foundation/NSDistributedNotificationCenter.inc +++ b/packages/cocoaint/src/foundation/NSDistributedNotificationCenter.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSDistributedNotificationCenter.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSDISTRIBUTEDNOTIFICATIONCENTER_PAS_H} -{$define NSDISTRIBUTEDNOTIFICATIONCENTER_PAS_H} -type - NSDistributedNotificationCenterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSDISTRIBUTEDNOTIFICATIONCENTER_PAS_T} @@ -60,6 +52,7 @@ var {$ifdef FORWARD} NSDistributedNotificationCenter = objcclass; + NSDistributedNotificationCenterPointer = ^NSDistributedNotificationCenter; {$endif} diff --git a/packages/cocoaint/src/foundation/NSEnumerator.inc b/packages/cocoaint/src/foundation/NSEnumerator.inc index 070b9d0865..fb4bb9660d 100644 --- a/packages/cocoaint/src/foundation/NSEnumerator.inc +++ b/packages/cocoaint/src/foundation/NSEnumerator.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSEnumerator.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSENUMERATOR_PAS_H} -{$define NSENUMERATOR_PAS_H} -type - NSEnumeratorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSENUMERATOR_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSFastEnumerationProtocol = objcprotocol; NSEnumerator = objcclass; + NSEnumeratorPointer = ^NSEnumerator; {$endif} diff --git a/packages/cocoaint/src/foundation/NSError.inc b/packages/cocoaint/src/foundation/NSError.inc index 4efb55e202..0b3d83b591 100644 --- a/packages/cocoaint/src/foundation/NSError.inc +++ b/packages/cocoaint/src/foundation/NSError.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSError.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSERROR_PAS_H} -{$define NSERROR_PAS_H} -type - NSErrorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSERROR_PAS_T} @@ -56,6 +48,7 @@ var {$ifdef FORWARD} NSError = objcclass; + NSErrorPointer = ^NSError; {$endif} diff --git a/packages/cocoaint/src/foundation/NSException.inc b/packages/cocoaint/src/foundation/NSException.inc index c67ce6aaff..c1727f0451 100644 --- a/packages/cocoaint/src/foundation/NSException.inc +++ b/packages/cocoaint/src/foundation/NSException.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSException.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSEXCEPTION_PAS_H} -{$define NSEXCEPTION_PAS_H} -type - NSExceptionPointer = Pointer; - NSAssertionHandlerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSEXCEPTION_PAS_T} @@ -62,7 +53,9 @@ var {$ifdef FORWARD} NSException = objcclass; + NSExceptionPointer = ^NSException; NSAssertionHandler = objcclass; + NSAssertionHandlerPointer = ^NSAssertionHandler; {$endif} diff --git a/packages/cocoaint/src/foundation/NSExpression.inc b/packages/cocoaint/src/foundation/NSExpression.inc index 4522ca93ba..aa5e060a9d 100644 --- a/packages/cocoaint/src/foundation/NSExpression.inc +++ b/packages/cocoaint/src/foundation/NSExpression.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSExpression.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSEXPRESSION_PAS_H} -{$define NSEXPRESSION_PAS_H} -type - NSExpressionPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSEXPRESSION_PAS_T} @@ -58,6 +50,7 @@ type {$ifdef FORWARD} NSExpression = objcclass; + NSExpressionPointer = ^NSExpression; {$endif} diff --git a/packages/cocoaint/src/foundation/NSFileHandle.inc b/packages/cocoaint/src/foundation/NSFileHandle.inc index 304266d36e..8551e3325b 100644 --- a/packages/cocoaint/src/foundation/NSFileHandle.inc +++ b/packages/cocoaint/src/foundation/NSFileHandle.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSFileHandle.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFILEHANDLE_PAS_H} -{$define NSFILEHANDLE_PAS_H} -type - NSFileHandlePointer = Pointer; - NSPipePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFILEHANDLE_PAS_T} @@ -52,7 +43,9 @@ var {$ifdef FORWARD} NSFileHandle = objcclass; + NSFileHandlePointer = ^NSFileHandle; NSPipe = objcclass; + NSPipePointer = ^NSPipe; {$endif} diff --git a/packages/cocoaint/src/foundation/NSFileManager.inc b/packages/cocoaint/src/foundation/NSFileManager.inc index d70471ac2e..d5e6858b0a 100644 --- a/packages/cocoaint/src/foundation/NSFileManager.inc +++ b/packages/cocoaint/src/foundation/NSFileManager.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSFileManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFILEMANAGER_PAS_H} -{$define NSFILEMANAGER_PAS_H} -type - NSFileManagerPointer = Pointer; - NSDirectoryEnumeratorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFILEMANAGER_PAS_T} @@ -78,7 +69,9 @@ var {$ifdef FORWARD} NSFileManager = objcclass; + NSFileManagerPointer = ^NSFileManager; NSDirectoryEnumerator = objcclass; + NSDirectoryEnumeratorPointer = ^NSDirectoryEnumerator; {$endif} diff --git a/packages/cocoaint/src/foundation/NSFormatter.inc b/packages/cocoaint/src/foundation/NSFormatter.inc index 54f2836c55..f9c8ab8eb9 100644 --- a/packages/cocoaint/src/foundation/NSFormatter.inc +++ b/packages/cocoaint/src/foundation/NSFormatter.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSFormatter.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSFORMATTER_PAS_H} -{$define NSFORMATTER_PAS_H} -type - NSFormatterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSFORMATTER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSFormatter = objcclass; + NSFormatterPointer = ^NSFormatter; {$endif} diff --git a/packages/cocoaint/src/foundation/NSGarbageCollector.inc b/packages/cocoaint/src/foundation/NSGarbageCollector.inc index 3bdd5f0364..e56a4fe821 100644 --- a/packages/cocoaint/src/foundation/NSGarbageCollector.inc +++ b/packages/cocoaint/src/foundation/NSGarbageCollector.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSGarbageCollector.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSGARBAGECOLLECTOR_PAS_H} -{$define NSGARBAGECOLLECTOR_PAS_H} -type - NSGarbageCollectorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSGARBAGECOLLECTOR_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSGarbageCollector = objcclass; + NSGarbageCollectorPointer = ^NSGarbageCollector; {$endif} diff --git a/packages/cocoaint/src/foundation/NSHFSFileTypes.inc b/packages/cocoaint/src/foundation/NSHFSFileTypes.inc index d6823f7164..918213adfc 100644 --- a/packages/cocoaint/src/foundation/NSHFSFileTypes.inc +++ b/packages/cocoaint/src/foundation/NSHFSFileTypes.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSHFSFileTypes.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSHTTPCookie.inc b/packages/cocoaint/src/foundation/NSHTTPCookie.inc index 8c950ebfe1..b0f75519c9 100644 --- a/packages/cocoaint/src/foundation/NSHTTPCookie.inc +++ b/packages/cocoaint/src/foundation/NSHTTPCookie.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSHTTPCookie.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSHTTPCOOKIE_PAS_H} -{$define NSHTTPCOOKIE_PAS_H} -type - NSHTTPCookiePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSHTTPCOOKIE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSHTTPCookie = objcclass; + NSHTTPCookiePointer = ^NSHTTPCookie; {$endif} diff --git a/packages/cocoaint/src/foundation/NSHTTPCookieStorage.inc b/packages/cocoaint/src/foundation/NSHTTPCookieStorage.inc index cd70f4c2f8..9207db766d 100644 --- a/packages/cocoaint/src/foundation/NSHTTPCookieStorage.inc +++ b/packages/cocoaint/src/foundation/NSHTTPCookieStorage.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSHTTPCookieStorage.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSHTTPCOOKIESTORAGE_PAS_H} -{$define NSHTTPCOOKIESTORAGE_PAS_H} -type - NSHTTPCookieStoragePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSHTTPCOOKIESTORAGE_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSHTTPCookieStorage = objcclass; + NSHTTPCookieStoragePointer = ^NSHTTPCookieStorage; {$endif} diff --git a/packages/cocoaint/src/foundation/NSHashTable.inc b/packages/cocoaint/src/foundation/NSHashTable.inc index 6dbf3e6213..656d7ff36b 100644 --- a/packages/cocoaint/src/foundation/NSHashTable.inc +++ b/packages/cocoaint/src/foundation/NSHashTable.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSHashTable.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSHASHTABLE_PAS_H} -{$define NSHASHTABLE_PAS_H} -type - NSHashTablePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSHASHTABLE_PAS_T} @@ -92,6 +84,7 @@ var {$ifdef FORWARD} NSHashTable = objcclass; + NSHashTablePointer = ^NSHashTable; {$endif} diff --git a/packages/cocoaint/src/foundation/NSHost.inc b/packages/cocoaint/src/foundation/NSHost.inc index 4e4826c2d5..e0f11ac18e 100644 --- a/packages/cocoaint/src/foundation/NSHost.inc +++ b/packages/cocoaint/src/foundation/NSHost.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSHost.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSHOST_PAS_H} -{$define NSHOST_PAS_H} -type - NSHostPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSHOST_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSHost = objcclass; + NSHostPointer = ^NSHost; {$endif} diff --git a/packages/cocoaint/src/foundation/NSIndexPath.inc b/packages/cocoaint/src/foundation/NSIndexPath.inc index 910b0907f0..7ed6ddb560 100644 --- a/packages/cocoaint/src/foundation/NSIndexPath.inc +++ b/packages/cocoaint/src/foundation/NSIndexPath.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSIndexPath.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSINDEXPATH_PAS_H} -{$define NSINDEXPATH_PAS_H} -type - NSIndexPathPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSINDEXPATH_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSIndexPath = objcclass; + NSIndexPathPointer = ^NSIndexPath; {$endif} diff --git a/packages/cocoaint/src/foundation/NSIndexSet.inc b/packages/cocoaint/src/foundation/NSIndexSet.inc index ce19a916c7..9ca55d98f5 100644 --- a/packages/cocoaint/src/foundation/NSIndexSet.inc +++ b/packages/cocoaint/src/foundation/NSIndexSet.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSIndexSet.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSINDEXSET_PAS_H} -{$define NSINDEXSET_PAS_H} -type - NSIndexSetPointer = Pointer; - NSMutableIndexSetPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSINDEXSET_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSIndexSet = objcclass; + NSIndexSetPointer = ^NSIndexSet; NSMutableIndexSet = objcclass; + NSMutableIndexSetPointer = ^NSMutableIndexSet; {$endif} diff --git a/packages/cocoaint/src/foundation/NSKeyValueCoding.inc b/packages/cocoaint/src/foundation/NSKeyValueCoding.inc index 7b4aa668c2..2d66063ff7 100644 --- a/packages/cocoaint/src/foundation/NSKeyValueCoding.inc +++ b/packages/cocoaint/src/foundation/NSKeyValueCoding.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSKeyValueCoding.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSKeyValueObserving.inc b/packages/cocoaint/src/foundation/NSKeyValueObserving.inc index 54428a8092..7ce5b24d37 100644 --- a/packages/cocoaint/src/foundation/NSKeyValueObserving.inc +++ b/packages/cocoaint/src/foundation/NSKeyValueObserving.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSKeyValueObserving.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSKeyedArchiver.inc b/packages/cocoaint/src/foundation/NSKeyedArchiver.inc index 0d9cd13be1..2004979df5 100644 --- a/packages/cocoaint/src/foundation/NSKeyedArchiver.inc +++ b/packages/cocoaint/src/foundation/NSKeyedArchiver.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSKeyedArchiver.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSKEYEDARCHIVER_PAS_H} -{$define NSKEYEDARCHIVER_PAS_H} -type - NSKeyedArchiverPointer = Pointer; - NSKeyedUnarchiverPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSKEYEDARCHIVER_PAS_T} @@ -46,7 +37,9 @@ var {$ifdef FORWARD} NSKeyedArchiver = objcclass; + NSKeyedArchiverPointer = ^NSKeyedArchiver; NSKeyedUnarchiver = objcclass; + NSKeyedUnarchiverPointer = ^NSKeyedUnarchiver; {$endif} diff --git a/packages/cocoaint/src/foundation/NSLocale.inc b/packages/cocoaint/src/foundation/NSLocale.inc index 5489929603..4ddf18d07c 100644 --- a/packages/cocoaint/src/foundation/NSLocale.inc +++ b/packages/cocoaint/src/foundation/NSLocale.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSLocale.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSLOCALE_PAS_H} -{$define NSLOCALE_PAS_H} -type - NSLocalePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSLOCALE_PAS_T} @@ -65,6 +57,7 @@ var {$ifdef FORWARD} NSLocale = objcclass; + NSLocalePointer = ^NSLocale; {$endif} diff --git a/packages/cocoaint/src/foundation/NSLock.inc b/packages/cocoaint/src/foundation/NSLock.inc index f72fee624a..f4a4f532cc 100644 --- a/packages/cocoaint/src/foundation/NSLock.inc +++ b/packages/cocoaint/src/foundation/NSLock.inc @@ -1,17 +1,6 @@ { Parsed from Foundation.framework NSLock.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSLOCK_PAS_H} -{$define NSLOCK_PAS_H} -type - NSLockPointer = Pointer; - NSConditionLockPointer = Pointer; - NSRecursiveLockPointer = Pointer; - NSConditionPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSLOCK_PAS_T} @@ -44,9 +33,13 @@ type {$ifdef FORWARD} NSLockingProtocol = objcprotocol; NSLock = objcclass; + NSLockPointer = ^NSLock; NSConditionLock = objcclass; + NSConditionLockPointer = ^NSConditionLock; NSRecursiveLock = objcclass; + NSRecursiveLockPointer = ^NSRecursiveLock; NSCondition = objcclass; + NSConditionPointer = ^NSCondition; {$endif} diff --git a/packages/cocoaint/src/foundation/NSMapTable.inc b/packages/cocoaint/src/foundation/NSMapTable.inc index 6bef3bae87..28c4fc72a8 100644 --- a/packages/cocoaint/src/foundation/NSMapTable.inc +++ b/packages/cocoaint/src/foundation/NSMapTable.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSMapTable.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMAPTABLE_PAS_H} -{$define NSMAPTABLE_PAS_H} -type - NSMapTablePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMAPTABLE_PAS_T} @@ -106,6 +98,7 @@ var {$ifdef FORWARD} NSMapTable = objcclass; + NSMapTablePointer = ^NSMapTable; {$endif} diff --git a/packages/cocoaint/src/foundation/NSMetadata.inc b/packages/cocoaint/src/foundation/NSMetadata.inc index 799e790ad5..9d5527d260 100644 --- a/packages/cocoaint/src/foundation/NSMetadata.inc +++ b/packages/cocoaint/src/foundation/NSMetadata.inc @@ -1,17 +1,6 @@ { Parsed from Foundation.framework NSMetadata.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMETADATA_PAS_H} -{$define NSMETADATA_PAS_H} -type - NSMetadataQueryPointer = Pointer; - NSMetadataItemPointer = Pointer; - NSMetadataQueryAttributeValueTuplePointer = Pointer; - NSMetadataQueryResultGroupPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMETADATA_PAS_T} @@ -54,9 +43,13 @@ var {$ifdef FORWARD} NSMetadataQuery = objcclass; + NSMetadataQueryPointer = ^NSMetadataQuery; NSMetadataItem = objcclass; + NSMetadataItemPointer = ^NSMetadataItem; NSMetadataQueryAttributeValueTuple = objcclass; + NSMetadataQueryAttributeValueTuplePointer = ^NSMetadataQueryAttributeValueTuple; NSMetadataQueryResultGroup = objcclass; + NSMetadataQueryResultGroupPointer = ^NSMetadataQueryResultGroup; {$endif} diff --git a/packages/cocoaint/src/foundation/NSMethodSignature.inc b/packages/cocoaint/src/foundation/NSMethodSignature.inc index 179892b309..d695d8e061 100644 --- a/packages/cocoaint/src/foundation/NSMethodSignature.inc +++ b/packages/cocoaint/src/foundation/NSMethodSignature.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSMethodSignature.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSMETHODSIGNATURE_PAS_H} -{$define NSMETHODSIGNATURE_PAS_H} -type - NSMethodSignaturePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSMETHODSIGNATURE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSMethodSignature = objcclass; + NSMethodSignaturePointer = ^NSMethodSignature; {$endif} diff --git a/packages/cocoaint/src/foundation/NSNetServices.inc b/packages/cocoaint/src/foundation/NSNetServices.inc index b20502e15f..57e6e1d132 100644 --- a/packages/cocoaint/src/foundation/NSNetServices.inc +++ b/packages/cocoaint/src/foundation/NSNetServices.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSNetServices.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSNETSERVICES_PAS_H} -{$define NSNETSERVICES_PAS_H} -type - NSNetServicePointer = Pointer; - NSNetServiceBrowserPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSNETSERVICES_PAS_T} @@ -66,7 +57,9 @@ var {$ifdef FORWARD} NSNetService = objcclass; + NSNetServicePointer = ^NSNetService; NSNetServiceBrowser = objcclass; + NSNetServiceBrowserPointer = ^NSNetServiceBrowser; {$endif} diff --git a/packages/cocoaint/src/foundation/NSNotification.inc b/packages/cocoaint/src/foundation/NSNotification.inc index 640cb4d75b..837d5012e9 100644 --- a/packages/cocoaint/src/foundation/NSNotification.inc +++ b/packages/cocoaint/src/foundation/NSNotification.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSNotification.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSNOTIFICATION_PAS_H} -{$define NSNOTIFICATION_PAS_H} -type - NSNotificationPointer = Pointer; - NSNotificationCenterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSNOTIFICATION_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSNotification = objcclass; + NSNotificationPointer = ^NSNotification; NSNotificationCenter = objcclass; + NSNotificationCenterPointer = ^NSNotificationCenter; {$endif} diff --git a/packages/cocoaint/src/foundation/NSNotificationQueue.inc b/packages/cocoaint/src/foundation/NSNotificationQueue.inc index 8e04f11a34..78faad63aa 100644 --- a/packages/cocoaint/src/foundation/NSNotificationQueue.inc +++ b/packages/cocoaint/src/foundation/NSNotificationQueue.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSNotificationQueue.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSNOTIFICATIONQUEUE_PAS_H} -{$define NSNOTIFICATIONQUEUE_PAS_H} -type - NSNotificationQueuePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSNOTIFICATIONQUEUE_PAS_T} @@ -57,6 +49,7 @@ type {$ifdef FORWARD} NSNotificationQueue = objcclass; + NSNotificationQueuePointer = ^NSNotificationQueue; {$endif} diff --git a/packages/cocoaint/src/foundation/NSNull.inc b/packages/cocoaint/src/foundation/NSNull.inc index 3736cf5bc9..2d1d7ed87a 100644 --- a/packages/cocoaint/src/foundation/NSNull.inc +++ b/packages/cocoaint/src/foundation/NSNull.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSNull.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSNULL_PAS_H} -{$define NSNULL_PAS_H} -type - NSNullPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSNULL_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSNull = objcclass; + NSNullPointer = ^NSNull; {$endif} diff --git a/packages/cocoaint/src/foundation/NSNumberFormatter.inc b/packages/cocoaint/src/foundation/NSNumberFormatter.inc index 6acb9cc2ac..1a4b5e5046 100644 --- a/packages/cocoaint/src/foundation/NSNumberFormatter.inc +++ b/packages/cocoaint/src/foundation/NSNumberFormatter.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSNumberFormatter.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSNUMBERFORMATTER_PAS_H} -{$define NSNUMBERFORMATTER_PAS_H} -type - NSNumberFormatterPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSNUMBERFORMATTER_PAS_T} @@ -77,6 +69,7 @@ type {$ifdef FORWARD} NSNumberFormatter = objcclass; + NSNumberFormatterPointer = ^NSNumberFormatter; {$endif} diff --git a/packages/cocoaint/src/foundation/NSObjCRuntime.inc b/packages/cocoaint/src/foundation/NSObjCRuntime.inc index cb34f73811..02ea08b387 100644 --- a/packages/cocoaint/src/foundation/NSObjCRuntime.inc +++ b/packages/cocoaint/src/foundation/NSObjCRuntime.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSObjCRuntime.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} @@ -50,8 +50,8 @@ const { Types } type - NSInteger = clong; - NSUInteger = culong; + NSInteger = cint; + NSUInteger = cuint; NSComparisonResult = NSInteger; {$endif} @@ -95,7 +95,9 @@ var {$ifdef USER_PATCHES} {$ifndef NSOBJCRUNTIME_PAS_PATCH} {$define NSOBJCRUNTIME_PAS_PATCH} +{$ifdef INTERFACE} procedure NSLog(fmt:NSString); cdecl; varargs; external; +{$endif} {$endif} {$endif} diff --git a/packages/cocoaint/src/foundation/NSObjectScripting.inc b/packages/cocoaint/src/foundation/NSObjectScripting.inc index 0b71f7fd30..a6e9248c74 100644 --- a/packages/cocoaint/src/foundation/NSObjectScripting.inc +++ b/packages/cocoaint/src/foundation/NSObjectScripting.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSObjectScripting.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSOperation.inc b/packages/cocoaint/src/foundation/NSOperation.inc index 2bd620bce7..eb98f1aa6d 100644 --- a/packages/cocoaint/src/foundation/NSOperation.inc +++ b/packages/cocoaint/src/foundation/NSOperation.inc @@ -1,16 +1,6 @@ { Parsed from Foundation.framework NSOperation.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSOPERATION_PAS_H} -{$define NSOPERATION_PAS_H} -type - NSOperationPointer = Pointer; - NSInvocationOperationPointer = Pointer; - NSOperationQueuePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSOPERATION_PAS_T} @@ -63,8 +53,11 @@ var {$ifdef FORWARD} NSOperation = objcclass; + NSOperationPointer = ^NSOperation; NSInvocationOperation = objcclass; + NSInvocationOperationPointer = ^NSInvocationOperation; NSOperationQueue = objcclass; + NSOperationQueuePointer = ^NSOperationQueue; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPathUtilities.inc b/packages/cocoaint/src/foundation/NSPathUtilities.inc index 35594670c4..ea67a88692 100644 --- a/packages/cocoaint/src/foundation/NSPathUtilities.inc +++ b/packages/cocoaint/src/foundation/NSPathUtilities.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSPathUtilities.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSPointerArray.inc b/packages/cocoaint/src/foundation/NSPointerArray.inc index a5008d3bc0..fa812c9071 100644 --- a/packages/cocoaint/src/foundation/NSPointerArray.inc +++ b/packages/cocoaint/src/foundation/NSPointerArray.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSPointerArray.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPOINTERARRAY_PAS_H} -{$define NSPOINTERARRAY_PAS_H} -type - NSPointerArrayPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPOINTERARRAY_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPointerArray = objcclass; + NSPointerArrayPointer = ^NSPointerArray; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPort.inc b/packages/cocoaint/src/foundation/NSPort.inc index fb2d0d5e54..f3ba03dc4c 100644 --- a/packages/cocoaint/src/foundation/NSPort.inc +++ b/packages/cocoaint/src/foundation/NSPort.inc @@ -1,17 +1,6 @@ { Parsed from Foundation.framework NSPort.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPORT_PAS_H} -{$define NSPORT_PAS_H} -type - NSPortPointer = Pointer; - NSMachPortPointer = Pointer; - NSMessagePortPointer = Pointer; - NSSocketPortPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPORT_PAS_T} @@ -58,9 +47,13 @@ var {$ifdef FORWARD} NSPort = objcclass; + NSPortPointer = ^NSPort; NSMachPort = objcclass; + NSMachPortPointer = ^NSMachPort; NSMessagePort = objcclass; + NSMessagePortPointer = ^NSMessagePort; NSSocketPort = objcclass; + NSSocketPortPointer = ^NSSocketPort; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPortCoder.inc b/packages/cocoaint/src/foundation/NSPortCoder.inc index 3eacfedcc1..e00ac6cc33 100644 --- a/packages/cocoaint/src/foundation/NSPortCoder.inc +++ b/packages/cocoaint/src/foundation/NSPortCoder.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSPortCoder.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPORTCODER_PAS_H} -{$define NSPORTCODER_PAS_H} -type - NSPortCoderPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPORTCODER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPortCoder = objcclass; + NSPortCoderPointer = ^NSPortCoder; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPortMessage.inc b/packages/cocoaint/src/foundation/NSPortMessage.inc index 1bd00ee18f..784b1e7360 100644 --- a/packages/cocoaint/src/foundation/NSPortMessage.inc +++ b/packages/cocoaint/src/foundation/NSPortMessage.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSPortMessage.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPORTMESSAGE_PAS_H} -{$define NSPORTMESSAGE_PAS_H} -type - NSPortMessagePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPORTMESSAGE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPortMessage = objcclass; + NSPortMessagePointer = ^NSPortMessage; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPortNameServer.inc b/packages/cocoaint/src/foundation/NSPortNameServer.inc index fa30c451b4..fbc5f431b4 100644 --- a/packages/cocoaint/src/foundation/NSPortNameServer.inc +++ b/packages/cocoaint/src/foundation/NSPortNameServer.inc @@ -1,17 +1,6 @@ { Parsed from Foundation.framework NSPortNameServer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPORTNAMESERVER_PAS_H} -{$define NSPORTNAMESERVER_PAS_H} -type - NSPortNameServerPointer = Pointer; - NSMachBootstrapServerPointer = Pointer; - NSMessagePortNameServerPointer = Pointer; - NSSocketPortNameServerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPORTNAMESERVER_PAS_T} @@ -43,9 +32,13 @@ type {$ifdef FORWARD} NSPortNameServer = objcclass; + NSPortNameServerPointer = ^NSPortNameServer; NSMachBootstrapServer = objcclass; + NSMachBootstrapServerPointer = ^NSMachBootstrapServer; NSMessagePortNameServer = objcclass; + NSMessagePortNameServerPointer = ^NSMessagePortNameServer; NSSocketPortNameServer = objcclass; + NSSocketPortNameServerPointer = ^NSSocketPortNameServer; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPredicate.inc b/packages/cocoaint/src/foundation/NSPredicate.inc index 16f0ec76c5..e10201524b 100644 --- a/packages/cocoaint/src/foundation/NSPredicate.inc +++ b/packages/cocoaint/src/foundation/NSPredicate.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSPredicate.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPREDICATE_PAS_H} -{$define NSPREDICATE_PAS_H} -type - NSPredicatePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPREDICATE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSPredicate = objcclass; + NSPredicatePointer = ^NSPredicate; {$endif} diff --git a/packages/cocoaint/src/foundation/NSProcessInfo.inc b/packages/cocoaint/src/foundation/NSProcessInfo.inc index 070fb47b5f..46b1cba214 100644 --- a/packages/cocoaint/src/foundation/NSProcessInfo.inc +++ b/packages/cocoaint/src/foundation/NSProcessInfo.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSProcessInfo.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPROCESSINFO_PAS_H} -{$define NSPROCESSINFO_PAS_H} -type - NSProcessInfoPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPROCESSINFO_PAS_T} @@ -51,6 +43,7 @@ const {$ifdef FORWARD} NSProcessInfo = objcclass; + NSProcessInfoPointer = ^NSProcessInfo; {$endif} diff --git a/packages/cocoaint/src/foundation/NSPropertyList.inc b/packages/cocoaint/src/foundation/NSPropertyList.inc index c14a3b687a..8aff3dec6c 100644 --- a/packages/cocoaint/src/foundation/NSPropertyList.inc +++ b/packages/cocoaint/src/foundation/NSPropertyList.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSPropertyList.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPROPERTYLIST_PAS_H} -{$define NSPROPERTYLIST_PAS_H} -type - NSPropertyListSerializationPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPROPERTYLIST_PAS_T} @@ -55,6 +47,7 @@ type {$ifdef FORWARD} NSPropertyListSerialization = objcclass; + NSPropertyListSerializationPointer = ^NSPropertyListSerialization; {$endif} diff --git a/packages/cocoaint/src/foundation/NSProtocolChecker.inc b/packages/cocoaint/src/foundation/NSProtocolChecker.inc index c0d0bd68b3..e48964832c 100644 --- a/packages/cocoaint/src/foundation/NSProtocolChecker.inc +++ b/packages/cocoaint/src/foundation/NSProtocolChecker.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSProtocolChecker.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPROTOCOLCHECKER_PAS_H} -{$define NSPROTOCOLCHECKER_PAS_H} -type - NSProtocolCheckerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPROTOCOLCHECKER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSProtocolChecker = objcclass; + NSProtocolCheckerPointer = ^NSProtocolChecker; {$endif} diff --git a/packages/cocoaint/src/foundation/NSProxy.inc b/packages/cocoaint/src/foundation/NSProxy.inc index be1361e737..866c0f05f4 100644 --- a/packages/cocoaint/src/foundation/NSProxy.inc +++ b/packages/cocoaint/src/foundation/NSProxy.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSProxy.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSPROXY_PAS_H} -{$define NSPROXY_PAS_H} -type - NSProxyPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSPROXY_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSProxy = objcclass; + NSProxyPointer = ^NSProxy; {$endif} diff --git a/packages/cocoaint/src/foundation/NSRunLoop.inc b/packages/cocoaint/src/foundation/NSRunLoop.inc index 09ce9cce0a..b46b07ca85 100644 --- a/packages/cocoaint/src/foundation/NSRunLoop.inc +++ b/packages/cocoaint/src/foundation/NSRunLoop.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSRunLoop.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSRUNLOOP_PAS_H} -{$define NSRUNLOOP_PAS_H} -type - NSRunLoopPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSRUNLOOP_PAS_T} @@ -45,6 +37,7 @@ var {$ifdef FORWARD} NSRunLoop = objcclass; + NSRunLoopPointer = ^NSRunLoop; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScanner.inc b/packages/cocoaint/src/foundation/NSScanner.inc index a90ddaf310..18a94e2e03 100644 --- a/packages/cocoaint/src/foundation/NSScanner.inc +++ b/packages/cocoaint/src/foundation/NSScanner.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScanner.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCANNER_PAS_H} -{$define NSSCANNER_PAS_H} -type - NSScannerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCANNER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSScanner = objcclass; + NSScannerPointer = ^NSScanner; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptClassDescription.inc b/packages/cocoaint/src/foundation/NSScriptClassDescription.inc index bcc2dd6ae6..388862fc89 100644 --- a/packages/cocoaint/src/foundation/NSScriptClassDescription.inc +++ b/packages/cocoaint/src/foundation/NSScriptClassDescription.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScriptClassDescription.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTCLASSDESCRIPTION_PAS_H} -{$define NSSCRIPTCLASSDESCRIPTION_PAS_H} -type - NSScriptClassDescriptionPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTCLASSDESCRIPTION_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSScriptClassDescription = objcclass; + NSScriptClassDescriptionPointer = ^NSScriptClassDescription; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptCoercionHandler.inc b/packages/cocoaint/src/foundation/NSScriptCoercionHandler.inc index 7b19e783ad..813a0f62a5 100644 --- a/packages/cocoaint/src/foundation/NSScriptCoercionHandler.inc +++ b/packages/cocoaint/src/foundation/NSScriptCoercionHandler.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScriptCoercionHandler.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTCOERCIONHANDLER_PAS_H} -{$define NSSCRIPTCOERCIONHANDLER_PAS_H} -type - NSScriptCoercionHandlerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTCOERCIONHANDLER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSScriptCoercionHandler = objcclass; + NSScriptCoercionHandlerPointer = ^NSScriptCoercionHandler; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptCommand.inc b/packages/cocoaint/src/foundation/NSScriptCommand.inc index b8d2cd2ce1..ccefc37b5d 100644 --- a/packages/cocoaint/src/foundation/NSScriptCommand.inc +++ b/packages/cocoaint/src/foundation/NSScriptCommand.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScriptCommand.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTCOMMAND_PAS_H} -{$define NSSCRIPTCOMMAND_PAS_H} -type - NSScriptCommandPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTCOMMAND_PAS_T} @@ -55,6 +47,7 @@ const {$ifdef FORWARD} NSScriptCommand = objcclass; + NSScriptCommandPointer = ^NSScriptCommand; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptCommandDescription.inc b/packages/cocoaint/src/foundation/NSScriptCommandDescription.inc index b492048ab7..df2147630f 100644 --- a/packages/cocoaint/src/foundation/NSScriptCommandDescription.inc +++ b/packages/cocoaint/src/foundation/NSScriptCommandDescription.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScriptCommandDescription.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTCOMMANDDESCRIPTION_PAS_H} -{$define NSSCRIPTCOMMANDDESCRIPTION_PAS_H} -type - NSScriptCommandDescriptionPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTCOMMANDDESCRIPTION_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSScriptCommandDescription = objcclass; + NSScriptCommandDescriptionPointer = ^NSScriptCommandDescription; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptExecutionContext.inc b/packages/cocoaint/src/foundation/NSScriptExecutionContext.inc index 4182b08a7f..901b0ee589 100644 --- a/packages/cocoaint/src/foundation/NSScriptExecutionContext.inc +++ b/packages/cocoaint/src/foundation/NSScriptExecutionContext.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScriptExecutionContext.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTEXECUTIONCONTEXT_PAS_H} -{$define NSSCRIPTEXECUTIONCONTEXT_PAS_H} -type - NSScriptExecutionContextPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTEXECUTIONCONTEXT_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSScriptExecutionContext = objcclass; + NSScriptExecutionContextPointer = ^NSScriptExecutionContext; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptKeyValueCoding.inc b/packages/cocoaint/src/foundation/NSScriptKeyValueCoding.inc index 090093e73c..636e2caffc 100644 --- a/packages/cocoaint/src/foundation/NSScriptKeyValueCoding.inc +++ b/packages/cocoaint/src/foundation/NSScriptKeyValueCoding.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSScriptKeyValueCoding.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSScriptObjectSpecifiers.inc b/packages/cocoaint/src/foundation/NSScriptObjectSpecifiers.inc index eedca69c59..1a1b2ecf74 100644 --- a/packages/cocoaint/src/foundation/NSScriptObjectSpecifiers.inc +++ b/packages/cocoaint/src/foundation/NSScriptObjectSpecifiers.inc @@ -1,24 +1,6 @@ { Parsed from Foundation.framework NSScriptObjectSpecifiers.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTOBJECTSPECIFIERS_PAS_H} -{$define NSSCRIPTOBJECTSPECIFIERS_PAS_H} -type - NSScriptObjectSpecifierPointer = Pointer; - NSIndexSpecifierPointer = Pointer; - NSMiddleSpecifierPointer = Pointer; - NSNameSpecifierPointer = Pointer; - NSPositionalSpecifierPointer = Pointer; - NSPropertySpecifierPointer = Pointer; - NSRandomSpecifierPointer = Pointer; - NSRangeSpecifierPointer = Pointer; - NSRelativeSpecifierPointer = Pointer; - NSUniqueIDSpecifierPointer = Pointer; - NSWhoseSpecifierPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTOBJECTSPECIFIERS_PAS_T} @@ -85,16 +67,27 @@ type {$ifdef FORWARD} NSScriptObjectSpecifier = objcclass; + NSScriptObjectSpecifierPointer = ^NSScriptObjectSpecifier; NSIndexSpecifier = objcclass; + NSIndexSpecifierPointer = ^NSIndexSpecifier; NSMiddleSpecifier = objcclass; + NSMiddleSpecifierPointer = ^NSMiddleSpecifier; NSNameSpecifier = objcclass; + NSNameSpecifierPointer = ^NSNameSpecifier; NSPositionalSpecifier = objcclass; + NSPositionalSpecifierPointer = ^NSPositionalSpecifier; NSPropertySpecifier = objcclass; + NSPropertySpecifierPointer = ^NSPropertySpecifier; NSRandomSpecifier = objcclass; + NSRandomSpecifierPointer = ^NSRandomSpecifier; NSRangeSpecifier = objcclass; + NSRangeSpecifierPointer = ^NSRangeSpecifier; NSRelativeSpecifier = objcclass; + NSRelativeSpecifierPointer = ^NSRelativeSpecifier; NSUniqueIDSpecifier = objcclass; + NSUniqueIDSpecifierPointer = ^NSUniqueIDSpecifier; NSWhoseSpecifier = objcclass; + NSWhoseSpecifierPointer = ^NSWhoseSpecifier; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptStandardSuiteCommands.inc b/packages/cocoaint/src/foundation/NSScriptStandardSuiteCommands.inc index b33113a41f..7e9bab5e14 100644 --- a/packages/cocoaint/src/foundation/NSScriptStandardSuiteCommands.inc +++ b/packages/cocoaint/src/foundation/NSScriptStandardSuiteCommands.inc @@ -1,23 +1,6 @@ { Parsed from Foundation.framework NSScriptStandardSuiteCommands.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_H} -{$define NSSCRIPTSTANDARDSUITECOMMANDS_PAS_H} -type - NSCloneCommandPointer = Pointer; - NSCloseCommandPointer = Pointer; - NSCountCommandPointer = Pointer; - NSCreateCommandPointer = Pointer; - NSDeleteCommandPointer = Pointer; - NSExistsCommandPointer = Pointer; - NSGetCommandPointer = Pointer; - NSMoveCommandPointer = Pointer; - NSQuitCommandPointer = Pointer; - NSSetCommandPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTSTANDARDSUITECOMMANDS_PAS_T} @@ -60,15 +43,25 @@ type {$ifdef FORWARD} NSCloneCommand = objcclass; + NSCloneCommandPointer = ^NSCloneCommand; NSCloseCommand = objcclass; + NSCloseCommandPointer = ^NSCloseCommand; NSCountCommand = objcclass; + NSCountCommandPointer = ^NSCountCommand; NSCreateCommand = objcclass; + NSCreateCommandPointer = ^NSCreateCommand; NSDeleteCommand = objcclass; + NSDeleteCommandPointer = ^NSDeleteCommand; NSExistsCommand = objcclass; + NSExistsCommandPointer = ^NSExistsCommand; NSGetCommand = objcclass; + NSGetCommandPointer = ^NSGetCommand; NSMoveCommand = objcclass; + NSMoveCommandPointer = ^NSMoveCommand; NSQuitCommand = objcclass; + NSQuitCommandPointer = ^NSQuitCommand; NSSetCommand = objcclass; + NSSetCommandPointer = ^NSSetCommand; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptSuiteRegistry.inc b/packages/cocoaint/src/foundation/NSScriptSuiteRegistry.inc index 6bacee7132..4dd23fe276 100644 --- a/packages/cocoaint/src/foundation/NSScriptSuiteRegistry.inc +++ b/packages/cocoaint/src/foundation/NSScriptSuiteRegistry.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSScriptSuiteRegistry.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTSUITEREGISTRY_PAS_H} -{$define NSSCRIPTSUITEREGISTRY_PAS_H} -type - NSScriptSuiteRegistryPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTSUITEREGISTRY_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSScriptSuiteRegistry = objcclass; + NSScriptSuiteRegistryPointer = ^NSScriptSuiteRegistry; {$endif} diff --git a/packages/cocoaint/src/foundation/NSScriptWhoseTests.inc b/packages/cocoaint/src/foundation/NSScriptWhoseTests.inc index f3a95a7f93..0dc3fe85df 100644 --- a/packages/cocoaint/src/foundation/NSScriptWhoseTests.inc +++ b/packages/cocoaint/src/foundation/NSScriptWhoseTests.inc @@ -1,16 +1,6 @@ { Parsed from Foundation.framework NSScriptWhoseTests.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSCRIPTWHOSETESTS_PAS_H} -{$define NSSCRIPTWHOSETESTS_PAS_H} -type - NSScriptWhoseTestPointer = Pointer; - NSLogicalTestPointer = Pointer; - NSSpecifierTestPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSCRIPTWHOSETESTS_PAS_T} @@ -58,8 +48,11 @@ type {$ifdef FORWARD} NSScriptWhoseTest = objcclass; + NSScriptWhoseTestPointer = ^NSScriptWhoseTest; NSLogicalTest = objcclass; + NSLogicalTestPointer = ^NSLogicalTest; NSSpecifierTest = objcclass; + NSSpecifierTestPointer = ^NSSpecifierTest; {$endif} diff --git a/packages/cocoaint/src/foundation/NSSet.inc b/packages/cocoaint/src/foundation/NSSet.inc index 577500cd73..0f2e72b2ae 100644 --- a/packages/cocoaint/src/foundation/NSSet.inc +++ b/packages/cocoaint/src/foundation/NSSet.inc @@ -1,16 +1,6 @@ { Parsed from Foundation.framework NSSet.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSET_PAS_H} -{$define NSSET_PAS_H} -type - NSSetPointer = Pointer; - NSMutableSetPointer = Pointer; - NSCountedSetPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSET_PAS_T} @@ -42,8 +32,11 @@ type {$ifdef FORWARD} NSSet = objcclass; + NSSetPointer = ^NSSet; NSMutableSet = objcclass; + NSMutableSetPointer = ^NSMutableSet; NSCountedSet = objcclass; + NSCountedSetPointer = ^NSCountedSet; {$endif} diff --git a/packages/cocoaint/src/foundation/NSSortDescriptor.inc b/packages/cocoaint/src/foundation/NSSortDescriptor.inc index a6338de24f..9306affd37 100644 --- a/packages/cocoaint/src/foundation/NSSortDescriptor.inc +++ b/packages/cocoaint/src/foundation/NSSortDescriptor.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSSortDescriptor.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSORTDESCRIPTOR_PAS_H} -{$define NSSORTDESCRIPTOR_PAS_H} -type - NSSortDescriptorPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSORTDESCRIPTOR_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSSortDescriptor = objcclass; + NSSortDescriptorPointer = ^NSSortDescriptor; {$endif} diff --git a/packages/cocoaint/src/foundation/NSSpellServer.inc b/packages/cocoaint/src/foundation/NSSpellServer.inc index 1d42d75208..dd1dd889bd 100644 --- a/packages/cocoaint/src/foundation/NSSpellServer.inc +++ b/packages/cocoaint/src/foundation/NSSpellServer.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSSpellServer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSPELLSERVER_PAS_H} -{$define NSSPELLSERVER_PAS_H} -type - NSSpellServerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSPELLSERVER_PAS_T} @@ -46,6 +38,7 @@ var {$ifdef FORWARD} NSSpellServer = objcclass; + NSSpellServerPointer = ^NSSpellServer; {$endif} diff --git a/packages/cocoaint/src/foundation/NSStream.inc b/packages/cocoaint/src/foundation/NSStream.inc index 3ccbea57d4..a9f8c280c4 100644 --- a/packages/cocoaint/src/foundation/NSStream.inc +++ b/packages/cocoaint/src/foundation/NSStream.inc @@ -1,16 +1,6 @@ { Parsed from Foundation.framework NSStream.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSTREAM_PAS_H} -{$define NSSTREAM_PAS_H} -type - NSStreamPointer = Pointer; - NSInputStreamPointer = Pointer; - NSOutputStreamPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSTREAM_PAS_T} @@ -83,8 +73,11 @@ var {$ifdef FORWARD} NSStream = objcclass; + NSStreamPointer = ^NSStream; NSInputStream = objcclass; + NSInputStreamPointer = ^NSInputStream; NSOutputStream = objcclass; + NSOutputStreamPointer = ^NSOutputStream; {$endif} diff --git a/packages/cocoaint/src/foundation/NSString.inc b/packages/cocoaint/src/foundation/NSString.inc index 05d8d7bf36..3dd866d88e 100644 --- a/packages/cocoaint/src/foundation/NSString.inc +++ b/packages/cocoaint/src/foundation/NSString.inc @@ -1,17 +1,6 @@ { Parsed from Foundation.framework NSString.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSSTRING_PAS_H} -{$define NSSTRING_PAS_H} -type - NSStringPointer = Pointer; - NSMutableStringPointer = Pointer; - NSSimpleCStringPointer = Pointer; - NSConstantStringPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSSTRING_PAS_T} @@ -103,9 +92,13 @@ var {$ifdef FORWARD} NSString = objcclass; + NSStringPointer = ^NSString; NSMutableString = objcclass; + NSMutableStringPointer = ^NSMutableString; NSSimpleCString = objcclass; + NSSimpleCStringPointer = ^NSSimpleCString; NSConstantString = objcclass; + NSConstantStringPointer = ^NSConstantString; {$endif} diff --git a/packages/cocoaint/src/foundation/NSTask.inc b/packages/cocoaint/src/foundation/NSTask.inc index 6283af77be..eea5687f59 100644 --- a/packages/cocoaint/src/foundation/NSTask.inc +++ b/packages/cocoaint/src/foundation/NSTask.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSTask.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTASK_PAS_H} -{$define NSTASK_PAS_H} -type - NSTaskPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTASK_PAS_T} @@ -44,6 +36,7 @@ var {$ifdef FORWARD} NSTask = objcclass; + NSTaskPointer = ^NSTask; {$endif} diff --git a/packages/cocoaint/src/foundation/NSThread.inc b/packages/cocoaint/src/foundation/NSThread.inc index 6179c0bc44..361e4ed122 100644 --- a/packages/cocoaint/src/foundation/NSThread.inc +++ b/packages/cocoaint/src/foundation/NSThread.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSThread.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTHREAD_PAS_H} -{$define NSTHREAD_PAS_H} -type - NSThreadPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTHREAD_PAS_T} @@ -46,6 +38,7 @@ var {$ifdef FORWARD} NSThread = objcclass; + NSThreadPointer = ^NSThread; {$endif} diff --git a/packages/cocoaint/src/foundation/NSTimeZone.inc b/packages/cocoaint/src/foundation/NSTimeZone.inc index 5c7c25b2aa..b02d1e2df7 100644 --- a/packages/cocoaint/src/foundation/NSTimeZone.inc +++ b/packages/cocoaint/src/foundation/NSTimeZone.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSTimeZone.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTIMEZONE_PAS_H} -{$define NSTIMEZONE_PAS_H} -type - NSTimeZonePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTIMEZONE_PAS_T} @@ -56,6 +48,7 @@ var {$ifdef FORWARD} NSTimeZone = objcclass; + NSTimeZonePointer = ^NSTimeZone; {$endif} diff --git a/packages/cocoaint/src/foundation/NSTimer.inc b/packages/cocoaint/src/foundation/NSTimer.inc index 0f4794f5ec..3a3be5ad23 100644 --- a/packages/cocoaint/src/foundation/NSTimer.inc +++ b/packages/cocoaint/src/foundation/NSTimer.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSTimer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSTIMER_PAS_H} -{$define NSTIMER_PAS_H} -type - NSTimerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSTIMER_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSTimer = objcclass; + NSTimerPointer = ^NSTimer; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURL.inc b/packages/cocoaint/src/foundation/NSURL.inc index 589b119d04..7b906a5133 100644 --- a/packages/cocoaint/src/foundation/NSURL.inc +++ b/packages/cocoaint/src/foundation/NSURL.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURL.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURL_PAS_H} -{$define NSURL_PAS_H} -type - NSURLPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURL_PAS_T} @@ -35,11 +27,16 @@ type {$ifndef NSURL_PAS_S} {$define NSURL_PAS_S} +{ External string constants } +var + NSURLFileScheme: NSString; external name '_NSURLFileScheme'; + {$endif} {$endif} {$ifdef FORWARD} NSURL = objcclass; + NSURLPointer = ^NSURL; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLAuthenticationChallenge.inc b/packages/cocoaint/src/foundation/NSURLAuthenticationChallenge.inc index 98afa0091a..3a36ca3f30 100644 --- a/packages/cocoaint/src/foundation/NSURLAuthenticationChallenge.inc +++ b/packages/cocoaint/src/foundation/NSURLAuthenticationChallenge.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLAuthenticationChallenge.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLAUTHENTICATIONCHALLENGE_PAS_H} -{$define NSURLAUTHENTICATIONCHALLENGE_PAS_H} -type - NSURLAuthenticationChallengePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLAUTHENTICATIONCHALLENGE_PAS_T} @@ -41,6 +33,7 @@ type {$ifdef FORWARD} NSURLAuthenticationChallengeSenderProtocol = objcprotocol; NSURLAuthenticationChallenge = objcclass; + NSURLAuthenticationChallengePointer = ^NSURLAuthenticationChallenge; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLCache.inc b/packages/cocoaint/src/foundation/NSURLCache.inc index f6de106109..2275a023bb 100644 --- a/packages/cocoaint/src/foundation/NSURLCache.inc +++ b/packages/cocoaint/src/foundation/NSURLCache.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSURLCache.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLCACHE_PAS_H} -{$define NSURLCACHE_PAS_H} -type - NSCachedURLResponsePointer = Pointer; - NSURLCachePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLCACHE_PAS_T} @@ -45,7 +36,9 @@ type {$ifdef FORWARD} NSCachedURLResponse = objcclass; + NSCachedURLResponsePointer = ^NSCachedURLResponse; NSURLCache = objcclass; + NSURLCachePointer = ^NSURLCache; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLConnection.inc b/packages/cocoaint/src/foundation/NSURLConnection.inc index 36de77f7ef..480357766e 100644 --- a/packages/cocoaint/src/foundation/NSURLConnection.inc +++ b/packages/cocoaint/src/foundation/NSURLConnection.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLConnection.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLCONNECTION_PAS_H} -{$define NSURLCONNECTION_PAS_H} -type - NSURLConnectionPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLCONNECTION_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSURLConnection = objcclass; + NSURLConnectionPointer = ^NSURLConnection; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLCredential.inc b/packages/cocoaint/src/foundation/NSURLCredential.inc index ec68815a63..1a4798b9fd 100644 --- a/packages/cocoaint/src/foundation/NSURLCredential.inc +++ b/packages/cocoaint/src/foundation/NSURLCredential.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLCredential.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLCREDENTIAL_PAS_H} -{$define NSURLCREDENTIAL_PAS_H} -type - NSURLCredentialPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLCREDENTIAL_PAS_T} @@ -51,6 +43,7 @@ type {$ifdef FORWARD} NSURLCredential = objcclass; + NSURLCredentialPointer = ^NSURLCredential; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLCredentialStorage.inc b/packages/cocoaint/src/foundation/NSURLCredentialStorage.inc index 1d7a154c17..d37ffc5d60 100644 --- a/packages/cocoaint/src/foundation/NSURLCredentialStorage.inc +++ b/packages/cocoaint/src/foundation/NSURLCredentialStorage.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLCredentialStorage.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLCREDENTIALSTORAGE_PAS_H} -{$define NSURLCREDENTIALSTORAGE_PAS_H} -type - NSURLCredentialStoragePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLCREDENTIALSTORAGE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSURLCredentialStorage = objcclass; + NSURLCredentialStoragePointer = ^NSURLCredentialStorage; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLDownload.inc b/packages/cocoaint/src/foundation/NSURLDownload.inc index 6105347ff1..49ce8e8f5a 100644 --- a/packages/cocoaint/src/foundation/NSURLDownload.inc +++ b/packages/cocoaint/src/foundation/NSURLDownload.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLDownload.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLDOWNLOAD_PAS_H} -{$define NSURLDOWNLOAD_PAS_H} -type - NSURLDownloadPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLDOWNLOAD_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSURLDownload = objcclass; + NSURLDownloadPointer = ^NSURLDownload; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLError.inc b/packages/cocoaint/src/foundation/NSURLError.inc index f30d33cdd8..6b8f5ae1d9 100644 --- a/packages/cocoaint/src/foundation/NSURLError.inc +++ b/packages/cocoaint/src/foundation/NSURLError.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSURLError.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSURLHandle.inc b/packages/cocoaint/src/foundation/NSURLHandle.inc index 1e381321a4..9884477f6f 100644 --- a/packages/cocoaint/src/foundation/NSURLHandle.inc +++ b/packages/cocoaint/src/foundation/NSURLHandle.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLHandle.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLHANDLE_PAS_H} -{$define NSURLHANDLE_PAS_H} -type - NSURLHandlePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLHANDLE_PAS_T} @@ -53,6 +45,7 @@ type {$ifdef FORWARD} NSURLHandleClientProtocol = objcprotocol; NSURLHandle = objcclass; + NSURLHandlePointer = ^NSURLHandle; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLProtectionSpace.inc b/packages/cocoaint/src/foundation/NSURLProtectionSpace.inc index 095d2e5612..8beb1daf6f 100644 --- a/packages/cocoaint/src/foundation/NSURLProtectionSpace.inc +++ b/packages/cocoaint/src/foundation/NSURLProtectionSpace.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLProtectionSpace.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLPROTECTIONSPACE_PAS_H} -{$define NSURLPROTECTIONSPACE_PAS_H} -type - NSURLProtectionSpacePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLPROTECTIONSPACE_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSURLProtectionSpace = objcclass; + NSURLProtectionSpacePointer = ^NSURLProtectionSpace; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLProtocol.inc b/packages/cocoaint/src/foundation/NSURLProtocol.inc index 81ffb54a6c..5bb16c4b1d 100644 --- a/packages/cocoaint/src/foundation/NSURLProtocol.inc +++ b/packages/cocoaint/src/foundation/NSURLProtocol.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSURLProtocol.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLPROTOCOL_PAS_H} -{$define NSURLPROTOCOL_PAS_H} -type - NSURLProtocolPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLPROTOCOL_PAS_T} @@ -41,6 +33,7 @@ type {$ifdef FORWARD} NSURLProtocolClientProtocol = objcprotocol; NSURLProtocol = objcclass; + NSURLProtocolPointer = ^NSURLProtocol; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLRequest.inc b/packages/cocoaint/src/foundation/NSURLRequest.inc index f330935c8f..8c22af234f 100644 --- a/packages/cocoaint/src/foundation/NSURLRequest.inc +++ b/packages/cocoaint/src/foundation/NSURLRequest.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSURLRequest.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLREQUEST_PAS_H} -{$define NSURLREQUEST_PAS_H} -type - NSURLRequestPointer = Pointer; - NSMutableURLRequestPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLREQUEST_PAS_T} @@ -45,7 +36,9 @@ type {$ifdef FORWARD} NSURLRequest = objcclass; + NSURLRequestPointer = ^NSURLRequest; NSMutableURLRequest = objcclass; + NSMutableURLRequestPointer = ^NSMutableURLRequest; {$endif} diff --git a/packages/cocoaint/src/foundation/NSURLResponse.inc b/packages/cocoaint/src/foundation/NSURLResponse.inc index bf45a20b4b..1594dd888d 100644 --- a/packages/cocoaint/src/foundation/NSURLResponse.inc +++ b/packages/cocoaint/src/foundation/NSURLResponse.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSURLResponse.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:07 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSURLRESPONSE_PAS_H} -{$define NSURLRESPONSE_PAS_H} -type - NSURLResponsePointer = Pointer; - NSHTTPURLResponsePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSURLRESPONSE_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSURLResponse = objcclass; + NSURLResponsePointer = ^NSURLResponse; NSHTTPURLResponse = objcclass; + NSHTTPURLResponsePointer = ^NSHTTPURLResponse; {$endif} diff --git a/packages/cocoaint/src/foundation/NSUndoManager.inc b/packages/cocoaint/src/foundation/NSUndoManager.inc index 20a618e4a1..bac26576ce 100644 --- a/packages/cocoaint/src/foundation/NSUndoManager.inc +++ b/packages/cocoaint/src/foundation/NSUndoManager.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSUndoManager.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSUNDOMANAGER_PAS_H} -{$define NSUNDOMANAGER_PAS_H} -type - NSUndoManagerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSUNDOMANAGER_PAS_T} @@ -55,6 +47,7 @@ var {$ifdef FORWARD} NSUndoManager = objcclass; + NSUndoManagerPointer = ^NSUndoManager; {$endif} diff --git a/packages/cocoaint/src/foundation/NSUserDefaults.inc b/packages/cocoaint/src/foundation/NSUserDefaults.inc index 62d138b3ca..ba7a398694 100644 --- a/packages/cocoaint/src/foundation/NSUserDefaults.inc +++ b/packages/cocoaint/src/foundation/NSUserDefaults.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSUserDefaults.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSUSERDEFAULTS_PAS_H} -{$define NSUSERDEFAULTS_PAS_H} -type - NSUserDefaultsPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSUSERDEFAULTS_PAS_T} @@ -47,6 +39,7 @@ var {$ifdef FORWARD} NSUserDefaults = objcclass; + NSUserDefaultsPointer = ^NSUserDefaults; {$endif} diff --git a/packages/cocoaint/src/foundation/NSValue.inc b/packages/cocoaint/src/foundation/NSValue.inc index a4f0a390a8..3fdd73a769 100644 --- a/packages/cocoaint/src/foundation/NSValue.inc +++ b/packages/cocoaint/src/foundation/NSValue.inc @@ -1,15 +1,6 @@ { Parsed from Foundation.framework NSValue.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSVALUE_PAS_H} -{$define NSVALUE_PAS_H} -type - NSValuePointer = Pointer; - NSNumberPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSVALUE_PAS_T} @@ -41,7 +32,9 @@ type {$ifdef FORWARD} NSValue = objcclass; + NSValuePointer = ^NSValue; NSNumber = objcclass; + NSNumberPointer = ^NSNumber; {$endif} diff --git a/packages/cocoaint/src/foundation/NSValueTransformer.inc b/packages/cocoaint/src/foundation/NSValueTransformer.inc index a39dda8f45..3355e389eb 100644 --- a/packages/cocoaint/src/foundation/NSValueTransformer.inc +++ b/packages/cocoaint/src/foundation/NSValueTransformer.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSValueTransformer.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:51 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSVALUETRANSFORMER_PAS_H} -{$define NSVALUETRANSFORMER_PAS_H} -type - NSValueTransformerPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSVALUETRANSFORMER_PAS_T} @@ -48,6 +40,7 @@ var {$ifdef FORWARD} NSValueTransformer = objcclass; + NSValueTransformerPointer = ^NSValueTransformer; {$endif} diff --git a/packages/cocoaint/src/foundation/NSXMLDTD.inc b/packages/cocoaint/src/foundation/NSXMLDTD.inc index 811c51272b..599e7422eb 100644 --- a/packages/cocoaint/src/foundation/NSXMLDTD.inc +++ b/packages/cocoaint/src/foundation/NSXMLDTD.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSXMLDTD.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSXMLDTD_PAS_H} -{$define NSXMLDTD_PAS_H} -type - NSXMLDTDPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSXMLDTD_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSXMLDTD = objcclass; + NSXMLDTDPointer = ^NSXMLDTD; {$endif} diff --git a/packages/cocoaint/src/foundation/NSXMLDTDNode.inc b/packages/cocoaint/src/foundation/NSXMLDTDNode.inc index 269704ae0c..457217ede1 100644 --- a/packages/cocoaint/src/foundation/NSXMLDTDNode.inc +++ b/packages/cocoaint/src/foundation/NSXMLDTDNode.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSXMLDTDNode.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSXMLDTDNODE_PAS_H} -{$define NSXMLDTDNODE_PAS_H} -type - NSXMLDTDNodePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSXMLDTDNODE_PAS_T} @@ -68,6 +60,7 @@ type {$ifdef FORWARD} NSXMLDTDNode = objcclass; + NSXMLDTDNodePointer = ^NSXMLDTDNode; {$endif} diff --git a/packages/cocoaint/src/foundation/NSXMLDocument.inc b/packages/cocoaint/src/foundation/NSXMLDocument.inc index 07d1b6f3ce..d895cfd7e2 100644 --- a/packages/cocoaint/src/foundation/NSXMLDocument.inc +++ b/packages/cocoaint/src/foundation/NSXMLDocument.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSXMLDocument.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSXMLDOCUMENT_PAS_H} -{$define NSXMLDOCUMENT_PAS_H} -type - NSXMLDocumentPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSXMLDOCUMENT_PAS_T} @@ -52,6 +44,7 @@ type {$ifdef FORWARD} NSXMLDocument = objcclass; + NSXMLDocumentPointer = ^NSXMLDocument; {$endif} diff --git a/packages/cocoaint/src/foundation/NSXMLElement.inc b/packages/cocoaint/src/foundation/NSXMLElement.inc index fc637db227..810113e45e 100644 --- a/packages/cocoaint/src/foundation/NSXMLElement.inc +++ b/packages/cocoaint/src/foundation/NSXMLElement.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSXMLElement.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSXMLELEMENT_PAS_H} -{$define NSXMLELEMENT_PAS_H} -type - NSXMLElementPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSXMLELEMENT_PAS_T} @@ -40,6 +32,7 @@ type {$ifdef FORWARD} NSXMLElement = objcclass; + NSXMLElementPointer = ^NSXMLElement; {$endif} diff --git a/packages/cocoaint/src/foundation/NSXMLNode.inc b/packages/cocoaint/src/foundation/NSXMLNode.inc index dcbd6a8019..de35ebb3cf 100644 --- a/packages/cocoaint/src/foundation/NSXMLNode.inc +++ b/packages/cocoaint/src/foundation/NSXMLNode.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSXMLNode.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSXMLNODE_PAS_H} -{$define NSXMLNODE_PAS_H} -type - NSXMLNodePointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSXMLNODE_PAS_T} @@ -61,6 +53,7 @@ type {$ifdef FORWARD} NSXMLNode = objcclass; + NSXMLNodePointer = ^NSXMLNode; {$endif} diff --git a/packages/cocoaint/src/foundation/NSXMLNodeOptions.inc b/packages/cocoaint/src/foundation/NSXMLNodeOptions.inc index 5deb3e0dea..7290c3db35 100644 --- a/packages/cocoaint/src/foundation/NSXMLNodeOptions.inc +++ b/packages/cocoaint/src/foundation/NSXMLNodeOptions.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSXMLNodeOptions.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/foundation/NSXMLParser.inc b/packages/cocoaint/src/foundation/NSXMLParser.inc index 330f3e7b64..2ba8b1ffad 100644 --- a/packages/cocoaint/src/foundation/NSXMLParser.inc +++ b/packages/cocoaint/src/foundation/NSXMLParser.inc @@ -1,14 +1,6 @@ { Parsed from Foundation.framework NSXMLParser.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } -{$ifdef HEADER} -{$ifndef NSXMLPARSER_PAS_H} -{$define NSXMLPARSER_PAS_H} -type - NSXMLParserPointer = Pointer; - -{$endif} -{$endif} {$ifdef TYPES} {$ifndef NSXMLPARSER_PAS_T} @@ -145,6 +137,7 @@ var {$ifdef FORWARD} NSXMLParser = objcclass; + NSXMLParserPointer = ^NSXMLParser; {$endif} diff --git a/packages/cocoaint/src/foundation/NSZone.inc b/packages/cocoaint/src/foundation/NSZone.inc index 38ef9769e6..391f825bf8 100644 --- a/packages/cocoaint/src/foundation/NSZone.inc +++ b/packages/cocoaint/src/foundation/NSZone.inc @@ -1,5 +1,5 @@ { Parsed from Foundation.framework NSZone.h } -{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Mon Sep 28 15:49:52 ICT 2009 } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Thu Oct 1 18:54:06 ICT 2009 } {$ifdef TYPES} diff --git a/packages/cocoaint/src/iPhoneAll.pas b/packages/cocoaint/src/iPhoneAll.pas index 5ceafee1c8..258444e549 100755 --- a/packages/cocoaint/src/iPhoneAll.pas +++ b/packages/cocoaint/src/iPhoneAll.pas @@ -4,9 +4,6 @@ unit iPhoneAll; {$modeswitch objectivec1} {$define NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES} -{NOTE: This is to prevent against a huge list of "never used" private variable notes} -{$notes off} - interface {$linkframework CoreFoundation} @@ -18,6 +15,8 @@ uses CFBase,CFArray,CFBag,CFCharacterSet,CFData,CFDate,CFDictionary,CFNumber,CFPropertyList,CFSet,CFString,CFStringEncodingExt,CFTimeZone,CFTree,CFURL,CFXMLNode,CFXMLParser,CFMachPort,CFMessagePort,CFRunLoop,CFSocket,CFBinaryHeap,CFBitVector,CFBundle,CFByteOrders,CFPlugIn,CFPreferences,CFURLAccess,CFUUID,CFLocale,CFStream,CFDateFormatter,CFNumberFormatter,CFCalendar,CFUserNotification,CFNotificationCenter,CFAttributedString, CGBase,CGAffineTransforms,CGBitmapContext,CGColor,CGColorSpace,CGContext,CGDataConsumer,CGDataProvider,CGDirectDisplay,CGDirectPalette,CGDisplayConfiguration,CGDisplayFades,CGErrors,CGEvent,CGEventSource,CGEventTypes,CGFont,CGFunction,CGGLContext,CGGeometry,CGImage,CGLayer,CGPDFArray,CGPDFContentStream,CGPDFContext,CGPDFDictionary,CGPDFDocument,CGPDFObject,CGPDFOperatorTable,CGPDFPage,CGPDFScanner,CGPDFStream,CGPDFString,CGPSConverter,CGPath,CGPattern,CGRemoteOperation,CGSession,CGShading,CGWindowLevels, MacTypes, AEDataModel, Icons; + +{$define INTERFACE} {$include UndefinedTypes.inc} @@ -73,7 +72,14 @@ type {$include uikit/UIKit.inc} {$undef EXTERNAL_SYMBOLS} -{$notes on} +{$define USER_PATCHES} +{$include foundation/Foundation.inc} +{$include appkit/AppKit.inc} +{$include uikit/UIKit.inc} +{$undef USER_PATCHES} + +{define IBOutlet := } +{define IBAction := } { Inline functions } function NSSTR (inString: PChar): NSString; @@ -99,8 +105,17 @@ function NSPointToCGPoint (aPoint: NSPoint): CGPoint; function NSSizeFromCGSize(aSize: CGSize): NSSize; function NSSizeToCGSize(aSize: NSSize): CGSize; +{$undef INTERFACE} implementation +{$define IMPLEMENTATION} {$include InlineFunctions.inc} +{$define USER_PATCHES} +{$include foundation/Foundation.inc} +{$include appkit/AppKit.inc} +{$include uikit/UIKit.inc} +{$undef USER_PATCHES} + +{$undef IMPLEMENTATION} end.
\ No newline at end of file diff --git a/packages/cocoaint/src/patches/NSBundle.patch b/packages/cocoaint/src/patches/NSBundle.patch new file mode 100644 index 0000000000..22a48db6de --- /dev/null +++ b/packages/cocoaint/src/patches/NSBundle.patch @@ -0,0 +1,12 @@ +{$ifdef INTERFACE} +function NSLocalizedString(key : NSString): NSString; inline; +{$endif} + +{$ifdef IMPLEMENTATION} +function NSLocalizedString(key : NSString): NSString; +var + kEmptyString: NSString; +begin + Result := NSBundle.mainBundle.localizedStringForKey_value_table(key, kEmptyString, nil); +end; +{$endif}
\ No newline at end of file diff --git a/packages/cocoaint/utils/Using Installer Script.txt b/packages/cocoaint/utils/Using Installer Script.txt new file mode 100755 index 0000000000..897e3c3849 --- /dev/null +++ b/packages/cocoaint/utils/Using Installer Script.txt @@ -0,0 +1,6 @@ +For new users, + +The install_objp.sh script will download the latest FPC compiler, compile, install headers into /Developer/ObjectivePascal and run the iPhone parser in one step. For the iPhone headers make sure you download the latest (Intel only) SDK from Apple's web site. + +1) cd to the directory containing install_objp.sh script. +2) ./install_objp.sh
\ No newline at end of file diff --git a/packages/cocoaint/utils/install_objp.sh b/packages/cocoaint/utils/install_objp.sh new file mode 100755 index 0000000000..b43fa09769 --- /dev/null +++ b/packages/cocoaint/utils/install_objp.sh @@ -0,0 +1,13 @@ +sudo svn co http://svn.freepascal.org/svn/fpc/branches/objc /Developer/ObjectivePascal/fpc +cd /Developer/ObjectivePascal/fpc +sudo make distclean -j 3 +make FPC=/usr/local/lib/fpc/2.2.4/ppc386 OPT="-ap" distclean all -j 2 +export NEWFPCVERSION=`./compiler/ppc386 -iV` +sudo make FPC=`pwd`/compiler/ppc386 install +sudo make distclean -j 3 +make FPC=/usr/local/lib/fpc/$NEWFPCVERSION/ppc386 OPT="-ap" CPU_TARGET=powerpc all -j 2 +sudo make FPC=`pwd`/compiler/ppcrossppc CROSSINSTALL=1 install +sudo mv /usr/local/lib/fpc/$NEWFPCVERSION/ppcrossppc /usr/local/lib/fpc/$NEWFPCVERSION/ppcppc +sudo cp -R /Developer/ObjectivePascal/fpc/packages/cocoaint/src /Developer/ObjectivePascal/Units +sudo chmod 0777 /Developer/ObjectivePascal/Units/uikit +php /Developer/ObjectivePascal/fpc/packages/cocoaint/utils/parser.php -iphone -root="/Developer/ObjectivePascal/Units"
\ No newline at end of file diff --git a/packages/cocoaint/utils/objp_parser.php b/packages/cocoaint/utils/objp_parser.php index 4278015480..18ca3deb62 100644 --- a/packages/cocoaint/utils/objp_parser.php +++ b/packages/cocoaint/utils/objp_parser.php @@ -256,6 +256,7 @@ class TObjPParser extends TPasCocoaParser { $macro = strtoupper(substr($header["name"], 0, (strripos($header["name"], ".")))); + /* if ($header["classes"]) { $this->PrintOutput(0, "{\$ifdef HEADER}"); $this->PrintOutput(0, "{\$ifndef $macro"."_PAS_H}"); @@ -272,6 +273,7 @@ class TObjPParser extends TPasCocoaParser { $this->PrintOutput(0, "{\$endif}"); $this->PrintOutput(0, "{\$endif}"); } + */ $this->PrintOutput(0, ""); $this->PrintOutput(0, "{\$ifdef TYPES}"); @@ -316,11 +318,11 @@ class TObjPParser extends TPasCocoaParser { if ($this->HeaderContainsPatch($header)) { $this->PrintOutput(0, ""); $this->PrintOutput(0, "{\$ifdef USER_PATCHES}"); - $this->PrintOutput(0, "{\$ifndef $macro"."_PAS_PATCH}"); - $this->PrintOutput(0, "{\$define $macro"."_PAS_PATCH}"); + //$this->PrintOutput(0, "{\$ifndef $macro"."_PAS_PATCH}"); + //$this->PrintOutput(0, "{\$define $macro"."_PAS_PATCH}"); $this->InsertPatches($header); $this->PrintOutput(0, ""); - $this->PrintOutput(0, "{\$endif}"); + //$this->PrintOutput(0, "{\$endif}"); $this->PrintOutput(0, "{\$endif}"); } @@ -333,7 +335,10 @@ class TObjPParser extends TPasCocoaParser { } if ($header["classes"]) { - foreach ($header["classes"] as $class) $this->PrintOutput(1, $class["name"]." = objcclass;"); + foreach ($header["classes"] as $class) { + $this->PrintOutput(1, $class["name"]." = objcclass;"); + $this->PrintOutput(1, $class["name"]."Pointer = ^".$class["name"].";"); + } } $this->PrintOutput(0, ""); diff --git a/packages/cocoaint/utils/parser.php b/packages/cocoaint/utils/parser.php index e8baf8a20d..fb86814dc0 100755 --- a/packages/cocoaint/utils/parser.php +++ b/packages/cocoaint/utils/parser.php @@ -105,10 +105,10 @@ function HandleCommandLineOptions ($argv) { } // ??? TESTING -$testing = false; +$testing = true; if ($testing) { - $GLOBALS["argv"][] = "-iphone"; + $GLOBALS["argv"][] = "-cocoa"; $GLOBALS["argv"][] = "-root=/Developer/ObjectivePascal"; //$GLOBALS["argv"][] = "-delegates"; //$GLOBALS["argv"][] = "-reference"; @@ -118,12 +118,12 @@ if ($testing) { //$GLOBALS["argv"][] = "-only=\"UIWindow.h\""; $GLOBALS["argv"][] = "-frameworks=\"appkit,foundation\""; - $GLOBALS["argv"][] = "-framework_path=\"/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/System/Library/Frameworks\""; - $GLOBALS["argv"][] = "-header=\"uikit/UIView.h\""; + //$GLOBALS["argv"][] = "-framework_path=\"/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/System/Library/Frameworks\""; + //$GLOBALS["argv"][] = "-header=\"uikit/UIView.h\""; - //$GLOBALS["argv"][] = "-framework_path=\"/System/Library/Frameworks\""; - //$GLOBALS["argv"][] = "-header=\"foundation/NSXMLNodeOptions.h\""; - //$GLOBALS["argv"][] = "-header=\"appkit/NSBrowser.h\""; + $GLOBALS["argv"][] = "-framework_path=\"/System/Library/Frameworks\""; + $GLOBALS["argv"][] = "-header=\"foundation/NSBundle.h\""; + //$GLOBALS["argv"][] = "-header=\"appkit/NSBundle.h\""; $GLOBALS["argv"][] = "-ignore=\"NSGeometry.h,NSRange.h\""; $GLOBALS["argv"][] = "-objp"; @@ -132,6 +132,19 @@ if ($testing) { /* Notes for master compile (-all): • CocoaAll.pas: + + Compiling /Developer/ObjectivePascal/CocoaAll.pas + 1) NSWorkspace.inc(35,46) Error: Duplicate identifier "NSWorkspaceLaunchAllowingClassicStartup" + 2) NSClassDescription.inc(60,55) Error: Duplicate identifier "description" + 3) NSScriptObjectSpecifiers.inc(194,44) Error: Duplicate identifier "classDescription" + 4) NSScriptSuiteRegistry.inc(75,40) Error: Duplicate identifier "classDescription" + 5) NSControl.inc(136,15) Error: Mismatch between number of declared parameters and number of colons in message string. + 6) NSWorkspace.inc(135,189) Error: Duplicate identifier "description" + 7) NSMenuItemCell.inc(64,9) Error: Duplicate identifier "reserved" + 8) NSRuleEditor.inc(127,15) Error: Mismatch between number of declared parameters and number of colons in message string. + 9) NSObjCRuntime.inc(79,24) Fatal: Syntax error, "identifier" expected but ":" found + Fatal: Compilation aborted + 1) NSWorkspace.h has a duplicate NSWorkspaceLaunchAllowingClassicStartup constant 2) NSObjcRuntime.h contains a bad external function: function __attribute__(: (format(__NSString__; : 1; : 2))): void NSLog(NSStringRef *format, ...); cdecl; external name '__attribute__'; diff --git a/packages/cocoaint/utils/pascocoa_parser.php b/packages/cocoaint/utils/pascocoa_parser.php index 850a570480..3bf410f864 100644 --- a/packages/cocoaint/utils/pascocoa_parser.php +++ b/packages/cocoaint/utils/pascocoa_parser.php @@ -65,6 +65,14 @@ class TPasCocoaParser { "header_pattern" => "^(.*)\.h", "enabled" => false, ), + + "coredata" => array( "root" => "/coredata/CoreData.inc", + "bridge" => "/bridgesupport/coredata.xml", + "headers" => "/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreData.framework/Headers", + "include_pattern" => "{[$]+include (.*).inc}", + "header_pattern" => "^(.*)\.h", + "enabled" => false, + ), ); var $maximum_method_length = 111; // WE GET THIS ERROR: NSDelegatesAll.pas(6109,296) Error: Identifier not found "NSDelegateController_NSLayoutManagerDelegate_layoutManager_shouldUseTemporaryAttributes_forDrawingToScreen_atCharacterIndex_effectiveRange" @@ -144,6 +152,9 @@ class TPasCocoaParser { var $garbage_collector_hints = array("__strong", "__weak"); var $null_macros = array("IBOutlet", "IBAction"); + + // External NSString macros. These should be moved into the frameworks array + var $external_string_macros = "APPKIT_EXTERN|FOUNDATION_EXPORT|UIKIT_EXTERN|COREDATA_EXTERN"; // Types which have known pointers declared in the headers var $pointer_types = array( // MacOSAll types @@ -3266,8 +3277,8 @@ end;"; } // ==== external string constant === - if (ereg("^[APPKIT_EXTERN|FOUNDATION_EXPORT|UIKIT_EXTERN]+[[:space:]]+NSString[[:space:]]+\*[[:space:]]*(const)*[[:space:]]+([a-zA-Z_]+);", $line, $captures)) { - $name = $captures[2]; + if (eregi("^($this->external_string_macros)+[[:space:]]+NSString[[:space:]]+\*[[:space:]]*(const)*[[:space:]]*([a-zA-Z_]+);", $line, $captures)) { + $name = $captures[3]; if (in_array($name, $this->ignore_symbol)) continue; @@ -3275,10 +3286,10 @@ end;"; } // ==== external symbol === - if (ereg("^[APPKIT_EXTERN|FOUNDATION_EXPORT|UIKIT_EXTERN]+[[:space:]]+([a-zA-Z_ ]+)[[:space:]]+([a-zA-Z_]+);", $line, $captures)) { - $name = $captures[2]; - $type = $captures[1]; - + if (eregi("^($this->external_string_macros)+[[:space:]]+([a-zA-Z_ ]+)[[:space:]]+([a-zA-Z_]+);", $line, $captures)) { + $name = $captures[3]; + $type = $captures[2]; + // ignore symbols if (in_array($name, $this->ignore_symbol)) continue; @@ -3290,20 +3301,20 @@ end;"; // ==== external procedures === - if (ereg("^[APPKIT_EXTERN|FOUNDATION_EXPORT|UIKIT_EXTERN]+[[:space:]]+(.*)[[:space:]]+(\*)*([a-zA-Z0-9_]+)\((.*)\)", $line, $captures)) { + if (ereg("^($this->external_string_macros)+[[:space:]]+(.*)[[:space:]]+(\*)*([a-zA-Z0-9_]+)\((.*)\)", $line, $captures)) { - $result = $this->ConvertReturnType($captures[1]); - $name = $captures[3]; + $result = $this->ConvertReturnType($captures[2]); + $name = $captures[4]; $params = ""; - $captures[1] = trim($captures[1], " "); - $captures[4] = trim($captures[4], " "); + $captures[2] = trim($captures[2], " "); + $captures[5] = trim($captures[5], " "); // ignore symbols if (in_array($name, $this->ignore_symbol)) continue; - if ($captures[4] != "void") $params = "(".$this->ConvertCParamsPascal($captures[4]).")"; + if ($captures[5] != "void") $params = "(".$this->ConvertCParamsPascal($captures[5]).")"; - if ($captures[1] == "void") { + if ($captures[2] == "void") { $this->dump[$file_name]["types"]["functions"][] = "procedure $name$params; cdecl; external name '$name';"; } else { $this->dump[$file_name]["types"]["functions"][] = "function $name$params: $result; cdecl; external name '$name';"; |
