Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AppKit b3 changes #2347

Merged
merged 2 commits into from
Jul 20, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/appkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9391,6 +9391,10 @@ public enum NSImageName
[Mac (10, 12, 2)]
[Field ("NSImageNameTouchBarVolumeUpTemplate")]
TouchBarVolumeUpTemplate,

[Mac (10, 13)]
[Field ("NSImageNameTouchBarRemoveTemplate")]
TouchBarRemoveTemplate
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor: missing trailing comma.

}

interface NSStringAttributes {
Expand Down Expand Up @@ -10060,6 +10064,10 @@ interface NSLevelIndicator {
[Mac (10, 13)]
[NullAllowed, Export ("ratingPlaceholderImage", ArgumentSemantic.Strong)]
NSImage RatingPlaceholderImage { get; set; }

[Mac (10, 13)]
[Export ("editable")]
bool Editable { [Bind ("isEditable")] get; set; }
}

[BaseType (typeof (NSActionCell))]
Expand Down Expand Up @@ -11323,6 +11331,14 @@ partial interface NSPasteboard // NSPasteboard does _not_ implement NSPasteboard
[Field ("NSPasteboardTypeFindPanelSearchOptions")]
NSString NSPasteboardTypeFindPanelSearchOptions { get; }

[Mac (10, 13)]
[Field ("NSPasteboardTypeURL")]
NSString NSPasteboardTypeURL { get; }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Url, not URL


[Mac (10, 13)]
[Field ("NSPasteboardTypeFileURL")]
NSString NSPasteboardTypeFileURL { get; }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Url, not URL

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really need to burn Url in my head, it always "looks wrong".


[Mac (10,12)]
[Export ("prepareForNewContentsWithOptions:")]
nint PrepareForNewContents (NSPasteboardContentsOptions options);
Expand Down