mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			210 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			210 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Objective-C
		
	
//
 | 
						|
//  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#import <PureLayout/PureLayout.h>
 | 
						|
#import <UIKit/UIKit.h>
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_BEGIN
 | 
						|
 | 
						|
typedef void (^UIViewVisitorBlock)(UIView *view);
 | 
						|
 | 
						|
// A convenience method for doing responsive layout. Scales between two
 | 
						|
// reference values (for iPhone 5 and iPhone 7 Plus) to the current device
 | 
						|
// based on screen width, linearly interpolating.
 | 
						|
CGFloat ScaleFromIPhone5To7Plus(CGFloat iPhone5Value, CGFloat iPhone7PlusValue);
 | 
						|
 | 
						|
// A convenience method for doing responsive layout. Scales a reference
 | 
						|
// value (for iPhone 5) to the current device based on screen width,
 | 
						|
// linearly interpolating through the origin.
 | 
						|
CGFloat ScaleFromIPhone5(CGFloat iPhone5Value);
 | 
						|
 | 
						|
// A set of helper methods for doing layout with PureLayout.
 | 
						|
@interface UIView (OWS)
 | 
						|
 | 
						|
// Pins the width of this view to the width of its superview, with uniform margins.
 | 
						|
- (NSArray<NSLayoutConstraint *> *)autoPinWidthToSuperviewWithMargin:(CGFloat)margin;
 | 
						|
- (NSArray<NSLayoutConstraint *> *)autoPinWidthToSuperview;
 | 
						|
// Pins the height of this view to the height of its superview, with uniform margins.
 | 
						|
- (NSArray<NSLayoutConstraint *> *)autoPinHeightToSuperviewWithMargin:(CGFloat)margin;
 | 
						|
- (NSArray<NSLayoutConstraint *> *)autoPinHeightToSuperview;
 | 
						|
 | 
						|
- (NSArray<NSLayoutConstraint *> *)ows_autoPinToSuperviewEdges;
 | 
						|
- (NSArray<NSLayoutConstraint *> *)ows_autoPinToSuperviewMargins;
 | 
						|
 | 
						|
- (NSLayoutConstraint *)autoHCenterInSuperview;
 | 
						|
- (NSLayoutConstraint *)autoVCenterInSuperview;
 | 
						|
 | 
						|
- (void)autoPinWidthToWidthOfView:(UIView *)view;
 | 
						|
- (void)autoPinHeightToHeightOfView:(UIView *)view;
 | 
						|
 | 
						|
- (NSLayoutConstraint *)autoPinToSquareAspectRatio;
 | 
						|
- (NSLayoutConstraint *)autoPinToAspectRatio:(CGFloat)ratio;
 | 
						|
 | 
						|
#pragma mark - Content Hugging and Compression Resistance
 | 
						|
 | 
						|
- (void)setContentHuggingLow;
 | 
						|
- (void)setContentHuggingHigh;
 | 
						|
- (void)setContentHuggingHorizontalLow;
 | 
						|
- (void)setContentHuggingHorizontalHigh;
 | 
						|
- (void)setContentHuggingVerticalLow;
 | 
						|
- (void)setContentHuggingVerticalHigh;
 | 
						|
 | 
						|
- (void)setCompressionResistanceLow;
 | 
						|
- (void)setCompressionResistanceHigh;
 | 
						|
- (void)setCompressionResistanceHorizontalLow;
 | 
						|
- (void)setCompressionResistanceHorizontalHigh;
 | 
						|
- (void)setCompressionResistanceVerticalLow;
 | 
						|
- (void)setCompressionResistanceVerticalHigh;
 | 
						|
 | 
						|
#pragma mark - Manual Layout
 | 
						|
 | 
						|
- (CGFloat)left;
 | 
						|
- (CGFloat)right;
 | 
						|
- (CGFloat)top;
 | 
						|
- (CGFloat)bottom;
 | 
						|
- (CGFloat)width;
 | 
						|
- (CGFloat)height;
 | 
						|
 | 
						|
- (void)centerOnSuperview;
 | 
						|
 | 
						|
#pragma mark - RTL
 | 
						|
 | 
						|
// For correct right-to-left layout behavior, use "leading" and "trailing",
 | 
						|
// not "left" and "right".
 | 
						|
//
 | 
						|
// These methods use layoutMarginsGuide anchors, which behave differently than
 | 
						|
// the PureLayout alternatives you indicated. Honoring layoutMargins is
 | 
						|
// particularly important in cell layouts, where it lets us align with the
 | 
						|
// complicated built-in behavior of table and collection view cells' default
 | 
						|
// contents.
 | 
						|
//
 | 
						|
// NOTE: the margin values are inverted in RTL layouts.
 | 
						|
 | 
						|
- (NSArray<NSLayoutConstraint *> *)autoPinLeadingAndTrailingToSuperviewMargin;
 | 
						|
- (NSLayoutConstraint *)autoPinLeadingToSuperviewMargin;
 | 
						|
- (NSLayoutConstraint *)autoPinLeadingToSuperviewMarginWithInset:(CGFloat)margin;
 | 
						|
- (NSLayoutConstraint *)autoPinTrailingToSuperviewMargin;
 | 
						|
- (NSLayoutConstraint *)autoPinTrailingToSuperviewMarginWithInset:(CGFloat)margin;
 | 
						|
 | 
						|
- (NSLayoutConstraint *)autoPinTopToSuperviewMargin;
 | 
						|
- (NSLayoutConstraint *)autoPinTopToSuperviewMarginWithInset:(CGFloat)margin;
 | 
						|
- (NSLayoutConstraint *)autoPinBottomToSuperviewMargin;
 | 
						|
- (NSLayoutConstraint *)autoPinBottomToSuperviewMarginWithInset:(CGFloat)margin;
 | 
						|
 | 
						|
- (NSLayoutConstraint *)autoPinLeadingToTrailingEdgeOfView:(UIView *)view;
 | 
						|
- (NSLayoutConstraint *)autoPinLeadingToTrailingEdgeOfView:(UIView *)view offset:(CGFloat)margin;
 | 
						|
- (NSLayoutConstraint *)autoPinTrailingToLeadingEdgeOfView:(UIView *)view;
 | 
						|
- (NSLayoutConstraint *)autoPinTrailingToLeadingEdgeOfView:(UIView *)view offset:(CGFloat)margin;
 | 
						|
- (NSLayoutConstraint *)autoPinLeadingToEdgeOfView:(UIView *)view;
 | 
						|
- (NSLayoutConstraint *)autoPinLeadingToEdgeOfView:(UIView *)view offset:(CGFloat)margin;
 | 
						|
- (NSLayoutConstraint *)autoPinTrailingToEdgeOfView:(UIView *)view;
 | 
						|
- (NSLayoutConstraint *)autoPinTrailingToEdgeOfView:(UIView *)view offset:(CGFloat)margin;
 | 
						|
// Return Right on LTR and Left on RTL.
 | 
						|
- (NSTextAlignment)textAlignmentUnnatural;
 | 
						|
// Leading and trailing anchors honor layout margins.
 | 
						|
// When using a UIView as a "div" to structure layout, we don't want it to have margins.
 | 
						|
- (void)setHLayoutMargins:(CGFloat)value;
 | 
						|
 | 
						|
- (NSArray<NSLayoutConstraint *> *)autoPinToEdgesOfView:(UIView *)view;
 | 
						|
 | 
						|
- (void)traverseViewHierarchyWithVisitor:(UIViewVisitorBlock)visitor;
 | 
						|
 | 
						|
#pragma mark - Containers
 | 
						|
 | 
						|
+ (UIView *)containerView;
 | 
						|
 | 
						|
+ (UIView *)verticalStackWithSubviews:(NSArray<UIView *> *)subviews spacing:(int)spacing;
 | 
						|
 | 
						|
#pragma mark - Debugging
 | 
						|
 | 
						|
- (void)addBorderWithColor:(UIColor *)color;
 | 
						|
- (void)addRedBorder;
 | 
						|
 | 
						|
// Add red border to self, and all subviews recursively.
 | 
						|
- (void)addRedBorderRecursively;
 | 
						|
 | 
						|
#ifdef DEBUG
 | 
						|
- (void)logFrame;
 | 
						|
- (void)logFrameWithLabel:(NSString *)label;
 | 
						|
- (void)logFrameLater;
 | 
						|
- (void)logFrameLaterWithLabel:(NSString *)label;
 | 
						|
- (void)logHierarchyUpwardLaterWithLabel:(NSString *)label;
 | 
						|
#endif
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
#pragma mark -
 | 
						|
 | 
						|
@interface UIScrollView (OWS)
 | 
						|
 | 
						|
// Returns YES if contentInsetAdjustmentBehavior is disabled.
 | 
						|
- (BOOL)applyScrollViewInsetsFix;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
#pragma mark -
 | 
						|
 | 
						|
@interface UIStackView (OWS)
 | 
						|
 | 
						|
- (UIView *)addBackgroundViewWithBackgroundColor:(UIColor *)backgroundColor;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
#pragma mark - Macros
 | 
						|
 | 
						|
CG_INLINE CGSize CGSizeCeil(CGSize size)
 | 
						|
{
 | 
						|
    return CGSizeMake((CGFloat)ceil(size.width), (CGFloat)ceil(size.height));
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGSize CGSizeFloor(CGSize size)
 | 
						|
{
 | 
						|
    return CGSizeMake((CGFloat)floor(size.width), (CGFloat)floor(size.height));
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGSize CGSizeRound(CGSize size)
 | 
						|
{
 | 
						|
    return CGSizeMake((CGFloat)round(size.width), (CGFloat)round(size.height));
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGSize CGSizeMax(CGSize size1, CGSize size2)
 | 
						|
{
 | 
						|
    return CGSizeMake(MAX(size1.width, size2.width), MAX(size1.height, size2.height));
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGPoint CGPointAdd(CGPoint left, CGPoint right)
 | 
						|
{
 | 
						|
    return CGPointMake(left.x + right.x, left.y + right.y);
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGPoint CGPointSubtract(CGPoint left, CGPoint right)
 | 
						|
{
 | 
						|
    return CGPointMake(left.x - right.x, left.y - right.y);
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGPoint CGPointScale(CGPoint point, CGFloat factor)
 | 
						|
{
 | 
						|
    return CGPointMake(point.x * factor, point.y * factor);
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGFloat CGPointDistance(CGPoint left, CGPoint right)
 | 
						|
{
 | 
						|
    CGPoint delta = CGPointSubtract(left, right);
 | 
						|
    return sqrt(delta.x * delta.x + delta.y * delta.y);
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGSize CGSizeScale(CGSize size, CGFloat factor)
 | 
						|
{
 | 
						|
    return CGSizeMake(size.width * factor, size.height * factor);
 | 
						|
}
 | 
						|
 | 
						|
CG_INLINE CGSize CGSizeAdd(CGSize left, CGSize right)
 | 
						|
{
 | 
						|
    return CGSizeMake(left.width + right.width, left.height + right.height);
 | 
						|
}
 | 
						|
 | 
						|
CGFloat CGHairlineWidth(void);
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |