mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-03 00:50:43 +00:00
Implement skeletons
This commit is contained in:
parent
e2752e1bc4
commit
be214374ab
2 changed files with 33 additions and 14 deletions
|
@ -39,6 +39,23 @@ extern "C" {
|
|||
@class NSView, NSLayoutXAxisAnchor, NSLayoutYAxisAnchor, NSLayoutDimension;
|
||||
|
||||
@interface NSLayoutGuide : NSObject <NSCoding, NSUserInterfaceItemIdentification>
|
||||
{
|
||||
NSRect _frame;
|
||||
NSView *_owningView;
|
||||
NSUserInterfaceItemIdentifier _identifier;
|
||||
NSLayoutXAxisAnchor *_leadingAnchor;
|
||||
NSLayoutXAxisAnchor *_trailingAnchor;
|
||||
NSLayoutXAxisAnchor *_leftAnchor;
|
||||
NSLayoutXAxisAnchor *_rightAnchor;
|
||||
NSLayoutYAxisAnchor *_topAnchor;
|
||||
NSLayoutYAxisAnchor *_bottomAnchor;
|
||||
NSLayoutDimension *_widthAnchor;
|
||||
NSLayoutDimension *_heightAnchor;
|
||||
NSLayoutXAxisAnchor *_centerXAnchor;
|
||||
NSLayoutYAxisAnchor *_centerYAnchor;
|
||||
|
||||
BOOL _hasAmbiguousLayout;
|
||||
}
|
||||
|
||||
- (NSRect) frame;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue