-
Notifications
You must be signed in to change notification settings - Fork 514
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
AppKit b3 changes #2347
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9391,6 +9391,10 @@ public enum NSImageName | |
[Mac (10, 12, 2)] | ||
[Field ("NSImageNameTouchBarVolumeUpTemplate")] | ||
TouchBarVolumeUpTemplate, | ||
|
||
[Mac (10, 13)] | ||
[Field ("NSImageNameTouchBarRemoveTemplate")] | ||
TouchBarRemoveTemplate | ||
} | ||
|
||
interface NSStringAttributes { | ||
|
@@ -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))] | ||
|
@@ -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; } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
[Mac (10, 13)] | ||
[Field ("NSPasteboardTypeFileURL")] | ||
NSString NSPasteboardTypeFileURL { get; } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor: missing trailing comma.