|
|
@@ -1,7 +1,7 @@
|
|
|
//
|
|
|
// SnapKit
|
|
|
//
|
|
|
-// Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
|
|
|
+// Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit
|
|
|
//
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
@@ -22,609 +22,48 @@
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
#if os(iOS) || os(tvOS)
|
|
|
-import UIKit
|
|
|
+ import UIKit
|
|
|
#else
|
|
|
-import AppKit
|
|
|
+ import AppKit
|
|
|
#endif
|
|
|
|
|
|
-/**
|
|
|
- Used to expose the final API of a `ConstraintDescription` which allows getting a constraint from it
|
|
|
- */
|
|
|
-public protocol ConstraintDescriptionFinalizable: class {
|
|
|
-
|
|
|
- var constraint: Constraint { get }
|
|
|
-
|
|
|
- func labeled(label: String) -> ConstraintDescriptionFinalizable
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- Used to expose priority APIs
|
|
|
- */
|
|
|
-public protocol ConstraintDescriptionPriortizable: ConstraintDescriptionFinalizable {
|
|
|
-
|
|
|
- func priority(priority: Float) -> ConstraintDescriptionFinalizable
|
|
|
- func priority(priority: Double) -> ConstraintDescriptionFinalizable
|
|
|
- func priority(priority: CGFloat) -> ConstraintDescriptionFinalizable
|
|
|
- func priority(priority: UInt) -> ConstraintDescriptionFinalizable
|
|
|
- func priority(priority: Int) -> ConstraintDescriptionFinalizable
|
|
|
- func priorityRequired() -> ConstraintDescriptionFinalizable
|
|
|
- func priorityHigh() -> ConstraintDescriptionFinalizable
|
|
|
- func priorityMedium() -> ConstraintDescriptionFinalizable
|
|
|
- func priorityLow() -> ConstraintDescriptionFinalizable
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- Used to expose multiplier & constant APIs
|
|
|
-*/
|
|
|
-public protocol ConstraintDescriptionEditable: ConstraintDescriptionPriortizable {
|
|
|
-
|
|
|
- func multipliedBy(amount: Float) -> ConstraintDescriptionEditable
|
|
|
- func multipliedBy(amount: Double) -> ConstraintDescriptionEditable
|
|
|
- func multipliedBy(amount: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func multipliedBy(amount: Int) -> ConstraintDescriptionEditable
|
|
|
- func multipliedBy(amount: UInt) -> ConstraintDescriptionEditable
|
|
|
-
|
|
|
- func dividedBy(amount: Float) -> ConstraintDescriptionEditable
|
|
|
- func dividedBy(amount: Double) -> ConstraintDescriptionEditable
|
|
|
- func dividedBy(amount: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func dividedBy(amount: Int) -> ConstraintDescriptionEditable
|
|
|
- func dividedBy(amount: UInt) -> ConstraintDescriptionEditable
|
|
|
|
|
|
- func offset(amount: Float) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: Double) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: Int) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: UInt) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: CGPoint) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: CGSize) -> ConstraintDescriptionEditable
|
|
|
- func offset(amount: EdgeInsets) -> ConstraintDescriptionEditable
|
|
|
-
|
|
|
- func inset(amount: Float) -> ConstraintDescriptionEditable
|
|
|
- func inset(amount: Double) -> ConstraintDescriptionEditable
|
|
|
- func inset(amount: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func inset(amount: Int) -> ConstraintDescriptionEditable
|
|
|
- func inset(amount: UInt) -> ConstraintDescriptionEditable
|
|
|
- func inset(amount: EdgeInsets) -> ConstraintDescriptionEditable
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- Used to expose relation APIs
|
|
|
-*/
|
|
|
-public protocol ConstraintDescriptionRelatable: class {
|
|
|
-
|
|
|
- func equalTo(other: ConstraintItem) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: View) -> ConstraintDescriptionEditable
|
|
|
- func equalToSuperview() -> ConstraintDescriptionEditable
|
|
|
- @available(iOS 7.0, *)
|
|
|
- func equalTo(other: LayoutSupport) -> ConstraintDescriptionEditable
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- func equalTo(other: NSLayoutAnchor) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: Float) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: Double) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: Int) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: UInt) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: CGSize) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: CGPoint) -> ConstraintDescriptionEditable
|
|
|
- func equalTo(other: EdgeInsets) -> ConstraintDescriptionEditable
|
|
|
-
|
|
|
- func lessThanOrEqualTo(other: ConstraintItem) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: View) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualToSuperview() -> ConstraintDescriptionEditable
|
|
|
- @available(iOS 7.0, *)
|
|
|
- func lessThanOrEqualTo(other: LayoutSupport) -> ConstraintDescriptionEditable
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- func lessThanOrEqualTo(other: NSLayoutAnchor) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: Float) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: Double) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: Int) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: UInt) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: CGSize) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: CGPoint) -> ConstraintDescriptionEditable
|
|
|
- func lessThanOrEqualTo(other: EdgeInsets) -> ConstraintDescriptionEditable
|
|
|
-
|
|
|
- func greaterThanOrEqualTo(other: ConstraintItem) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: View) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualToSuperview() -> ConstraintDescriptionEditable
|
|
|
- @available(iOS 7.0, *)
|
|
|
- func greaterThanOrEqualTo(other: LayoutSupport) -> ConstraintDescriptionEditable
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- func greaterThanOrEqualTo(other: NSLayoutAnchor) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: Float) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: Double) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: CGFloat) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: Int) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: UInt) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: CGSize) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: CGPoint) -> ConstraintDescriptionEditable
|
|
|
- func greaterThanOrEqualTo(other: EdgeInsets) -> ConstraintDescriptionEditable
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- Used to expose chaining APIs
|
|
|
-*/
|
|
|
-public protocol ConstraintDescriptionExtendable: ConstraintDescriptionRelatable {
|
|
|
-
|
|
|
- var left: ConstraintDescriptionExtendable { get }
|
|
|
- var top: ConstraintDescriptionExtendable { get }
|
|
|
- var bottom: ConstraintDescriptionExtendable { get }
|
|
|
- var right: ConstraintDescriptionExtendable { get }
|
|
|
- var leading: ConstraintDescriptionExtendable { get }
|
|
|
- var trailing: ConstraintDescriptionExtendable { get }
|
|
|
- var width: ConstraintDescriptionExtendable { get }
|
|
|
- var height: ConstraintDescriptionExtendable { get }
|
|
|
- var centerX: ConstraintDescriptionExtendable { get }
|
|
|
- var centerY: ConstraintDescriptionExtendable { get }
|
|
|
- var baseline: ConstraintDescriptionExtendable { get }
|
|
|
-
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var firstBaseline: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var leftMargin: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var rightMargin: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var topMargin: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var bottomMargin: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var leadingMargin: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var trailingMargin: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var centerXWithinMargins: ConstraintDescriptionExtendable { get }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- var centerYWithinMargins: ConstraintDescriptionExtendable { get }
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- Used to internally manage building constraint
|
|
|
- */
|
|
|
-internal class ConstraintDescription: ConstraintDescriptionExtendable, ConstraintDescriptionEditable, ConstraintDescriptionFinalizable {
|
|
|
-
|
|
|
- internal var left: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Left) }
|
|
|
- internal var top: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Top) }
|
|
|
- internal var right: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Right) }
|
|
|
- internal var bottom: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Bottom) }
|
|
|
- internal var leading: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Leading) }
|
|
|
- internal var trailing: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Trailing) }
|
|
|
- internal var width: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Width) }
|
|
|
- internal var height: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Height) }
|
|
|
- internal var centerX: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.CenterX) }
|
|
|
- internal var centerY: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.CenterY) }
|
|
|
- internal var baseline: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.Baseline) }
|
|
|
- internal var label: String?
|
|
|
-
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var firstBaseline: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.FirstBaseline) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var leftMargin: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.LeftMargin) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var rightMargin: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.RightMargin) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var topMargin: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.TopMargin) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var bottomMargin: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.BottomMargin) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var leadingMargin: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.LeadingMargin) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var trailingMargin: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.TrailingMargin) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var centerXWithinMargins: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.CenterXWithinMargins) }
|
|
|
- @available(iOS 8.0, *)
|
|
|
- internal var centerYWithinMargins: ConstraintDescriptionExtendable { return self.addConstraint(ConstraintAttributes.CenterYWithinMargins) }
|
|
|
-
|
|
|
- // MARK: initializer
|
|
|
-
|
|
|
- init(fromItem: ConstraintItem) {
|
|
|
- self.fromItem = fromItem
|
|
|
- self.toItem = ConstraintItem(object: nil, attributes: ConstraintAttributes.None)
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: equalTo
|
|
|
-
|
|
|
- internal func equalTo(other: ConstraintItem) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: View) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalToSuperview() -> ConstraintDescriptionEditable {
|
|
|
- guard let superview = fromItem.view?.superview else {
|
|
|
- fatalError("equalToSuperview() requires the view have a superview before being set.")
|
|
|
- }
|
|
|
-
|
|
|
- return self.equalTo(superview)
|
|
|
- }
|
|
|
- @available(iOS 7.0, *)
|
|
|
- internal func equalTo(other: LayoutSupport) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- internal func equalTo(other: NSLayoutAnchor) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: Float) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: Double) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: Int) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: UInt) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: CGSize) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: CGPoint) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
- internal func equalTo(other: EdgeInsets) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .Equal)
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: lessThanOrEqualTo
|
|
|
-
|
|
|
- internal func lessThanOrEqualTo(other: ConstraintItem) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: View) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualToSuperview() -> ConstraintDescriptionEditable {
|
|
|
- guard let superview = fromItem.view?.superview else {
|
|
|
- fatalError("lessThanOrEqualToSuperview() requires the view have a superview before being set.")
|
|
|
+public class ConstraintDescription {
|
|
|
+
|
|
|
+ internal let view: ConstraintView
|
|
|
+ internal var attributes: ConstraintAttributes
|
|
|
+ internal var relation: ConstraintRelation? = nil
|
|
|
+ internal var sourceLocation: (String, UInt)? = nil
|
|
|
+ internal var label: String? = nil
|
|
|
+ internal var related: ConstraintItem? = nil
|
|
|
+ internal var multiplier: ConstraintMultiplierTarget = 1.0
|
|
|
+ internal var constant: ConstraintConstantTarget = 0.0
|
|
|
+ internal var priority: ConstraintPriorityTarget = 1000.0
|
|
|
+ internal lazy var constraint: Constraint? = {
|
|
|
+ guard let relation = self.relation,
|
|
|
+ let related = self.related,
|
|
|
+ let sourceLocation = self.sourceLocation else {
|
|
|
+ return nil
|
|
|
}
|
|
|
+ let from = ConstraintItem(target: self.view, attributes: self.attributes)
|
|
|
|
|
|
- return self.lessThanOrEqualTo(superview)
|
|
|
- }
|
|
|
- @available(iOS 7.0, *)
|
|
|
- internal func lessThanOrEqualTo(other: LayoutSupport) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- internal func lessThanOrEqualTo(other: NSLayoutAnchor) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: Float) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: Double) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: Int) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: UInt) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: CGSize) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: CGPoint) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func lessThanOrEqualTo(other: EdgeInsets) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
+ return Constraint(
|
|
|
+ from: from,
|
|
|
+ to: related,
|
|
|
+ relation: relation,
|
|
|
+ sourceLocation: sourceLocation,
|
|
|
+ label: self.label,
|
|
|
+ multiplier: self.multiplier,
|
|
|
+ constant: self.constant,
|
|
|
+ priority: self.priority
|
|
|
+ )
|
|
|
+ }()
|
|
|
|
|
|
- // MARK: greaterThanOrEqualTo
|
|
|
+ // MARK: Initialization
|
|
|
|
|
|
- internal func greaterThanOrEqualTo(other: ConstraintItem) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: View) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualToSuperview() -> ConstraintDescriptionEditable {
|
|
|
- guard let superview = fromItem.view?.superview else {
|
|
|
- fatalError("greaterThanOrEqualToSuperview() requires the view have a superview before being set.")
|
|
|
- }
|
|
|
-
|
|
|
- return self.greaterThanOrEqualTo(superview)
|
|
|
- }
|
|
|
- @available(iOS 7.0, *)
|
|
|
- internal func greaterThanOrEqualTo(other: LayoutSupport) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- internal func greaterThanOrEqualTo(other: NSLayoutAnchor) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: Float) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: Double) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: Int) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: UInt) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: CGSize) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: CGPoint) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
- }
|
|
|
- internal func greaterThanOrEqualTo(other: EdgeInsets) -> ConstraintDescriptionEditable {
|
|
|
- return self.constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
+ internal init(view: ConstraintView, attributes: ConstraintAttributes) {
|
|
|
+ self.view = view
|
|
|
+ self.attributes = attributes
|
|
|
}
|
|
|
|
|
|
- // MARK: multiplier
|
|
|
-
|
|
|
- internal func multipliedBy(amount: Float) -> ConstraintDescriptionEditable {
|
|
|
- self.multiplier = amount
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func multipliedBy(amount: Double) -> ConstraintDescriptionEditable {
|
|
|
- return self.multipliedBy(Float(amount))
|
|
|
- }
|
|
|
- internal func multipliedBy(amount: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- return self.multipliedBy(Float(amount))
|
|
|
- }
|
|
|
- internal func multipliedBy(amount: Int) -> ConstraintDescriptionEditable {
|
|
|
- return self.multipliedBy(Float(amount))
|
|
|
- }
|
|
|
- internal func multipliedBy(amount: UInt) -> ConstraintDescriptionEditable {
|
|
|
- return self.multipliedBy(Float(amount))
|
|
|
- }
|
|
|
-
|
|
|
- internal func dividedBy(amount: Float) -> ConstraintDescriptionEditable {
|
|
|
- self.multiplier = 1.0 / amount;
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func dividedBy(amount: Double) -> ConstraintDescriptionEditable {
|
|
|
- return self.dividedBy(Float(amount))
|
|
|
- }
|
|
|
- internal func dividedBy(amount: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- return self.dividedBy(Float(amount))
|
|
|
- }
|
|
|
- internal func dividedBy(amount: Int) -> ConstraintDescriptionEditable {
|
|
|
- return self.dividedBy(Float(amount))
|
|
|
- }
|
|
|
- internal func dividedBy(amount: UInt) -> ConstraintDescriptionEditable {
|
|
|
- return self.dividedBy(Float(amount))
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: offset
|
|
|
-
|
|
|
- internal func offset(amount: Float) -> ConstraintDescriptionEditable {
|
|
|
- self.constant = amount
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func offset(amount: Double) -> ConstraintDescriptionEditable {
|
|
|
- return self.offset(Float(amount))
|
|
|
- }
|
|
|
- internal func offset(amount: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- return self.offset(Float(amount))
|
|
|
- }
|
|
|
- internal func offset(amount: Int) -> ConstraintDescriptionEditable {
|
|
|
- return self.offset(Float(amount))
|
|
|
- }
|
|
|
- internal func offset(amount: UInt) -> ConstraintDescriptionEditable {
|
|
|
- return self.offset(Float(amount))
|
|
|
- }
|
|
|
- internal func offset(amount: CGPoint) -> ConstraintDescriptionEditable {
|
|
|
- self.constant = amount
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func offset(amount: CGSize) -> ConstraintDescriptionEditable {
|
|
|
- self.constant = amount
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func offset(amount: EdgeInsets) -> ConstraintDescriptionEditable {
|
|
|
- self.constant = amount
|
|
|
- return self
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: inset
|
|
|
-
|
|
|
- internal func inset(amount: Float) -> ConstraintDescriptionEditable {
|
|
|
- let value = CGFloat(amount)
|
|
|
- self.constant = EdgeInsets(top: value, left: value, bottom: -value, right: -value)
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func inset(amount: Double) -> ConstraintDescriptionEditable {
|
|
|
- let value = CGFloat(amount)
|
|
|
- self.constant = EdgeInsets(top: value, left: value, bottom: -value, right: -value)
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func inset(amount: CGFloat) -> ConstraintDescriptionEditable {
|
|
|
- self.constant = EdgeInsets(top: amount, left: amount, bottom: -amount, right: -amount)
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func inset(amount: Int) -> ConstraintDescriptionEditable {
|
|
|
- let value = CGFloat(amount)
|
|
|
- self.constant = EdgeInsets(top: value, left: value, bottom: -value, right: -value)
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func inset(amount: UInt) -> ConstraintDescriptionEditable {
|
|
|
- let value = CGFloat(amount)
|
|
|
- self.constant = EdgeInsets(top: value, left: value, bottom: -value, right: -value)
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func inset(amount: EdgeInsets) -> ConstraintDescriptionEditable {
|
|
|
- self.constant = EdgeInsets(top: amount.top, left: amount.left, bottom: -amount.bottom, right: -amount.right)
|
|
|
- return self
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: priority
|
|
|
-
|
|
|
- internal func priority(priority: Float) -> ConstraintDescriptionFinalizable {
|
|
|
- self.priority = priority
|
|
|
- return self
|
|
|
- }
|
|
|
- internal func priority(priority: Double) -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(Float(priority))
|
|
|
- }
|
|
|
- internal func priority(priority: CGFloat) -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(Float(priority))
|
|
|
- }
|
|
|
- func priority(priority: UInt) -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(Float(priority))
|
|
|
- }
|
|
|
- internal func priority(priority: Int) -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(Float(priority))
|
|
|
- }
|
|
|
- internal func priorityRequired() -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(1000.0)
|
|
|
- }
|
|
|
- internal func priorityHigh() -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(750.0)
|
|
|
- }
|
|
|
- internal func priorityMedium() -> ConstraintDescriptionFinalizable {
|
|
|
- #if os(iOS) || os(tvOS)
|
|
|
- return self.priority(500.0)
|
|
|
- #else
|
|
|
- return self.priority(501.0)
|
|
|
- #endif
|
|
|
- }
|
|
|
- internal func priorityLow() -> ConstraintDescriptionFinalizable {
|
|
|
- return self.priority(250.0)
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: Constraint
|
|
|
-
|
|
|
- internal var constraint: Constraint {
|
|
|
- if self.concreteConstraint == nil {
|
|
|
- if self.relation == nil {
|
|
|
- fatalError("Attempting to create a constraint from a ConstraintDescription before it has been fully chained.")
|
|
|
- }
|
|
|
- self.concreteConstraint = ConcreteConstraint(
|
|
|
- fromItem: self.fromItem,
|
|
|
- toItem: self.toItem,
|
|
|
- relation: self.relation!,
|
|
|
- constant: self.constant,
|
|
|
- multiplier: self.multiplier,
|
|
|
- priority: self.priority,
|
|
|
- label: self.label)
|
|
|
- }
|
|
|
- return self.concreteConstraint!
|
|
|
- }
|
|
|
-
|
|
|
- func labeled(label: String) -> ConstraintDescriptionFinalizable {
|
|
|
- self.label = label
|
|
|
- return self
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: Private
|
|
|
-
|
|
|
- private let fromItem: ConstraintItem
|
|
|
- private var toItem: ConstraintItem {
|
|
|
- willSet {
|
|
|
- if self.concreteConstraint != nil {
|
|
|
- fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.")
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- private var relation: ConstraintRelation? {
|
|
|
- willSet {
|
|
|
- if self.concreteConstraint != nil {
|
|
|
- fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.")
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- private var constant: Any = Float(0.0) {
|
|
|
- willSet {
|
|
|
- if self.concreteConstraint != nil {
|
|
|
- fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.")
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- private var multiplier: Float = 1.0 {
|
|
|
- willSet {
|
|
|
- if self.concreteConstraint != nil {
|
|
|
- fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.")
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- private var priority: Float = 1000.0 {
|
|
|
- willSet {
|
|
|
- if self.concreteConstraint != nil {
|
|
|
- fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.")
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- private var concreteConstraint: ConcreteConstraint? = nil
|
|
|
-
|
|
|
- private func addConstraint(attributes: ConstraintAttributes) -> ConstraintDescription {
|
|
|
- if self.relation == nil {
|
|
|
- self.fromItem.attributes += attributes
|
|
|
- }
|
|
|
- return self
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: ConstraintItem, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- if other.attributes != ConstraintAttributes.None {
|
|
|
- let toLayoutAttributes = other.attributes.layoutAttributes
|
|
|
- if toLayoutAttributes.count > 1 {
|
|
|
- let fromLayoutAttributes = self.fromItem.attributes.layoutAttributes
|
|
|
- if toLayoutAttributes != fromLayoutAttributes {
|
|
|
- NSException(name: "Invalid Constraint", reason: "Cannot constrain to multiple non identical attributes", userInfo: nil).raise()
|
|
|
- return self
|
|
|
- }
|
|
|
- other.attributes = ConstraintAttributes.None
|
|
|
- }
|
|
|
- }
|
|
|
- self.toItem = other
|
|
|
- self.relation = relation
|
|
|
- return self
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: View, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- return constrainTo(ConstraintItem(object: other, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- @available(iOS 7.0, *)
|
|
|
- private func constrainTo(other: LayoutSupport, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- return constrainTo(ConstraintItem(object: other, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- @available(iOS 9.0, OSX 10.11, *)
|
|
|
- private func constrainTo(other: NSLayoutAnchor, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- return constrainTo(ConstraintItem(object: other, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: Float, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- self.constant = other
|
|
|
- return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: Double, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- self.constant = other
|
|
|
- return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: CGSize, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- self.constant = other
|
|
|
- return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: CGPoint, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- self.constant = other
|
|
|
- return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
-
|
|
|
- private func constrainTo(other: EdgeInsets, relation: ConstraintRelation) -> ConstraintDescription {
|
|
|
- self.constant = other
|
|
|
- return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
- }
|
|
|
}
|