2020-05-10 06:26:06 +00:00
|
|
|
/* Interface of class NSLayoutGuide
|
|
|
|
Copyright (C) 2020 Free Software Foundation, Inc.
|
|
|
|
|
2020-05-10 10:38:06 +00:00
|
|
|
By: Gregory Casamento <greg.casamento@gmail.com>
|
2020-05-10 06:26:06 +00:00
|
|
|
Date: Sat May 9 16:30:36 EDT 2020
|
|
|
|
|
|
|
|
This file is part of the GNUstep Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NSLayoutGuide_h_GNUSTEP_GUI_INCLUDE
|
|
|
|
#define _NSLayoutGuide_h_GNUSTEP_GUI_INCLUDE
|
|
|
|
|
|
|
|
#import <Foundation/NSObject.h>
|
2020-05-11 11:08:01 +00:00
|
|
|
#import <AppKit/NSUserInterfaceItemIdentification.h>
|
|
|
|
#import <AppKit/NSLayoutConstraint.h>
|
|
|
|
#import <AppKit/NSView.h>
|
2020-05-10 06:26:06 +00:00
|
|
|
|
2020-05-10 10:38:06 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_10, GS_API_LATEST)
|
2020-05-10 06:26:06 +00:00
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-05-11 11:00:46 +00:00
|
|
|
@class NSView, NSLayoutXAxisAnchor, NSLayoutYAxisAnchor, NSLayoutDimension;
|
|
|
|
|
|
|
|
@interface NSLayoutGuide : NSObject <NSCoding, NSUserInterfaceItemIdentification>
|
|
|
|
|
|
|
|
- (NSRect) frame;
|
|
|
|
|
|
|
|
- (NSView *) owningView;
|
|
|
|
- (void) setOwningView: (NSView *)owningView;
|
|
|
|
|
|
|
|
- (NSUserInterfaceItemIdentifier) identifier;
|
|
|
|
- (void) setIdentifier: (NSUserInterfaceItemIdentifier)identifier;
|
|
|
|
|
|
|
|
- (NSLayoutXAxisAnchor *) leadingAnchor;
|
|
|
|
- (NSLayoutXAxisAnchor *) trailingAnchor;
|
|
|
|
- (NSLayoutXAxisAnchor *) leftAnchor;
|
|
|
|
- (NSLayoutXAxisAnchor *) rightAnchor;
|
|
|
|
- (NSLayoutYAxisAnchor *) topAnchor;
|
|
|
|
- (NSLayoutYAxisAnchor *) bottomAnchor;
|
|
|
|
- (NSLayoutDimension *) widthAnchor;
|
|
|
|
- (NSLayoutDimension *) heightAnchor;
|
|
|
|
- (NSLayoutXAxisAnchor *) centerXAnchor;
|
|
|
|
- (NSLayoutYAxisAnchor *) centerYAnchor;
|
|
|
|
|
|
|
|
- (BOOL) hasAmbiguousLayout;
|
|
|
|
|
|
|
|
- (NSArray *) constraintsAffectingLayoutForOrientation: (NSLayoutConstraintOrientation)orientation;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSView (NSLayoutGuideSupport)
|
|
|
|
|
|
|
|
- (void) addLayoutGuide: (NSLayoutGuide *)guide;
|
|
|
|
- (void) removeLayoutGuide: (NSLayoutGuide *)guide;
|
|
|
|
|
|
|
|
- (NSArray *) layoutGuides;
|
2020-05-10 06:26:06 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* GS_API_MACOSX */
|
|
|
|
|
|
|
|
#endif /* _NSLayoutGuide_h_GNUSTEP_GUI_INCLUDE */
|
|
|
|
|