-
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] Xcode 12.0 Beta 1 #9106
Merged
Merged
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5af0244
[AppKit] Xcode 12.0 Beta 1
chamons 2296d72
Apply suggestions from code review
chamons f8fde5e
More code review changes
chamons e9dc224
Apply suggestions from code review
chamons b749937
Code review changes
chamons 51a6f04
Apply suggestions from code review
chamons 0f412b4
Remove unnecessary 10.7 mac attribute
chamons File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -327,9 +327,11 @@ public enum NSControlTint : ulong { | |
|
||
[Native] | ||
public enum NSControlSize : ulong { | ||
Regular, | ||
Small, | ||
Mini | ||
Regular = 0, | ||
Small = 1, | ||
Mini = 2, | ||
[Mac (10,16)] | ||
Large = 3, | ||
} | ||
|
||
[Native] | ||
|
@@ -1514,6 +1516,7 @@ public enum NSFontSymbolicTraits : int { // uint32_t NSFontSymbolicTraits | |
TraitTightLeading = 1 << 15, | ||
[Mac (10,13)] | ||
TraitLooseLeading = 1 << 16, | ||
TraitEmphasized = BoldTrait, | ||
UnknownClass = 0 << 28, | ||
OldStyleSerifsClass = 1 << 28, | ||
TransitionalSerifsClass = 2 << 28, | ||
|
@@ -1737,6 +1740,7 @@ public enum NSTokenStyle : ulong { | |
|
||
[Flags] | ||
[Native] | ||
[Deprecated (PlatformName.MacOSX, 10, 16)] | ||
public enum NSWorkspaceLaunchOptions : ulong { | ||
Print = 2, | ||
InhibitingBackgroundOnly = 0x80, | ||
|
@@ -3009,4 +3013,48 @@ public enum NSWorkspaceAuthorizationType : long { | |
SetAttributes, | ||
ReplaceFile, | ||
} | ||
|
||
[Mac (10,16)] | ||
[Native] | ||
public enum NSTableViewStyle : long | ||
{ | ||
Automatic, | ||
FullWidth, | ||
Inset, | ||
SourceList, | ||
} | ||
|
||
[Mac (10,16)] | ||
[Native] | ||
public enum NSTitlebarSeparatorStyle : long | ||
{ | ||
Automatic, | ||
None, | ||
Line, | ||
Shadow, | ||
} | ||
|
||
[Mac (10,16)] | ||
[Native] | ||
public enum NSWindowToolbarStyle : long | ||
{ | ||
Automatic, | ||
Expanded, | ||
Preference, | ||
Unified, | ||
UnifiedCompact, | ||
} | ||
|
||
[Flags, Mac (10,7)] | ||
[Native] | ||
public enum NSTableViewAnimationOptions : ulong | ||
{ | ||
EffectNone = 0x0, | ||
EffectFade = 0x1, | ||
EffectGap = 0x2, | ||
SlideUp = 0x10, | ||
SlideDown = 0x20, | ||
SlideLeft = 0x30, | ||
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. ^ really ?!? 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. Hm, these are bitfields, so |
||
SlideRight = 0x40, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
weird, it's not in the diff
it's used but not defined, maybe it's an older type ?
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.
[Flags, NoiOS, Mac (0xa,0x7)]
10.7
https://github.com/xamarin/ObjectiveSharpie/issues/139