2014-07-25 12:24:17 +08:00
|
|
|
//
|
|
|
|
// Snappy
|
|
|
|
//
|
2014-07-29 08:39:59 +08:00
|
|
|
// Copyright (c) 2011-2014 Masonry Team - https://github.com/Masonry
|
2014-07-25 12:24:17 +08:00
|
|
|
//
|
2014-07-29 08:39:59 +08:00
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-30 08:55:31 +08:00
|
|
|
#if os(iOS)
|
2014-07-25 12:24:17 +08:00
|
|
|
import UIKit
|
2014-07-30 08:55:31 +08:00
|
|
|
#else
|
|
|
|
import AppKit
|
|
|
|
#endif
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2015-01-08 14:04:29 +08:00
|
|
|
public protocol FloatConstantConstraint {
|
|
|
|
func update(float: Float)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol DoubleConstantConstraint {
|
|
|
|
func update(float: Float)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol CGFloatConstantConstraint {
|
|
|
|
func update(float: Float)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol IntConstantConstraint {
|
|
|
|
func update(float: Float)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol UIntConstantConstraint {
|
|
|
|
func update(float: Float)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol CGPointConstantConstraint {
|
|
|
|
func update(float: Float)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol CGSizeConstantConstraint {
|
|
|
|
func update(size: CGSize)
|
|
|
|
}
|
|
|
|
|
|
|
|
public protocol EdgeInsetsConstantConstraint {
|
|
|
|
func update(insets: EdgeInsets)
|
|
|
|
}
|
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
/**
|
|
|
|
* Constraint is a single item that defines all the properties for a single ConstraintMaker chain
|
|
|
|
*/
|
2014-09-23 12:28:00 +08:00
|
|
|
public class Constraint {
|
|
|
|
public var left: Constraint { return addConstraint(ConstraintAttributes.Left) }
|
|
|
|
public var top: Constraint { return addConstraint(ConstraintAttributes.Top) }
|
|
|
|
public var right: Constraint { return addConstraint(ConstraintAttributes.Right) }
|
|
|
|
public var bottom: Constraint { return addConstraint(ConstraintAttributes.Bottom) }
|
|
|
|
public var leading: Constraint { return addConstraint(ConstraintAttributes.Leading) }
|
|
|
|
public var trailing: Constraint { return addConstraint(ConstraintAttributes.Trailing) }
|
|
|
|
public var width: Constraint { return addConstraint(ConstraintAttributes.Width) }
|
|
|
|
public var height: Constraint { return addConstraint(ConstraintAttributes.Height) }
|
|
|
|
public var centerX: Constraint { return addConstraint(ConstraintAttributes.CenterX) }
|
|
|
|
public var centerY: Constraint { return addConstraint(ConstraintAttributes.CenterY) }
|
|
|
|
public var baseline: Constraint { return addConstraint(ConstraintAttributes.Baseline) }
|
|
|
|
|
|
|
|
public var and: Constraint { return self }
|
|
|
|
public var with: Constraint { return self }
|
2014-07-29 08:39:59 +08:00
|
|
|
|
|
|
|
// MARK: initializer
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
internal init(fromItem: ConstraintItem) {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.fromItem = fromItem
|
2015-01-08 09:58:12 +08:00
|
|
|
self.toItem = ConstraintItem(object: nil, attributes: ConstraintAttributes.None)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// MARK: equalTo
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: ConstraintItem) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: View) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
2015-01-08 09:58:12 +08:00
|
|
|
#if os(iOS)
|
|
|
|
public func equalTo(other: UILayoutSupport) -> Constraint {
|
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func equalTo(other: Double) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .Equal)
|
|
|
|
}
|
|
|
|
public func equalTo(other: CGFloat) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .Equal)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: Int) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(Float(other), relation: .Equal)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func equalTo(other: UInt) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .Equal)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: CGSize) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: CGPoint) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func equalTo(other: EdgeInsets) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .Equal)
|
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// MARK: lessThanOrEqualTo
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: ConstraintItem) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: View) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2015-01-08 09:58:12 +08:00
|
|
|
#if os(iOS)
|
|
|
|
public func lessThanOrEqualTo(other: UILayoutSupport) -> Constraint {
|
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func lessThanOrEqualTo(other: Double) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
|
}
|
|
|
|
public func lessThanOrEqualTo(other: CGFloat) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: Int) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func lessThanOrEqualTo(other: UInt) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: CGSize) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: CGPoint) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func lessThanOrEqualTo(other: EdgeInsets) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .LessThanOrEqualTo)
|
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// MARK: greaterThanOrEqualTo
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func greaterThanOrEqualTo(other: ConstraintItem) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
|
|
|
func greaterThanOrEqualTo(other: View) -> Constraint {
|
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2015-01-08 09:58:12 +08:00
|
|
|
#if os(iOS)
|
|
|
|
public func greaterThanOrEqualTo(other: UILayoutSupport) -> Constraint {
|
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-23 12:28:00 +08:00
|
|
|
public func greaterThanOrEqualTo(other: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func greaterThanOrEqualTo(other: Double) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
|
|
|
public func greaterThanOrEqualTo(other: CGFloat) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func greaterThanOrEqualTo(other: Int) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func greaterThanOrEqualTo(other: UInt) -> Constraint {
|
|
|
|
return constrainTo(Float(other), relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func greaterThanOrEqualTo(other: CGSize) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func greaterThanOrEqualTo(other: CGPoint) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func greaterThanOrEqualTo(other: EdgeInsets) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// MARK: multiplier
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func multipliedBy(amount: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.multiplier = amount
|
|
|
|
return self
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func multipliedBy(amount: Double) -> Constraint {
|
|
|
|
return self.multipliedBy(Float(amount))
|
|
|
|
}
|
|
|
|
public func multipliedBy(amount: CGFloat) -> Constraint {
|
|
|
|
return self.multipliedBy(Float(amount))
|
|
|
|
}
|
|
|
|
public func multipliedBy(amount: Int) -> Constraint {
|
|
|
|
return self.multipliedBy(Float(amount))
|
|
|
|
}
|
|
|
|
public func multipliedBy(amount: UInt) -> Constraint {
|
|
|
|
return self.multipliedBy(Float(amount))
|
|
|
|
}
|
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func dividedBy(amount: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.multiplier = 1.0 / amount;
|
|
|
|
return self
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func dividedBy(amount: Double) -> Constraint {
|
|
|
|
return self.dividedBy(Float(amount))
|
|
|
|
}
|
|
|
|
public func dividedBy(amount: CGFloat) -> Constraint {
|
|
|
|
return self.dividedBy(Float(amount))
|
|
|
|
}
|
|
|
|
public func dividedBy(amount: Int) -> Constraint {
|
|
|
|
return self.dividedBy(Float(amount))
|
|
|
|
}
|
|
|
|
public func dividedBy(amount: UInt) -> Constraint {
|
|
|
|
return self.dividedBy(Float(amount))
|
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// MARK: priority
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func priority(priority: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.priority = priority
|
|
|
|
return self
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func priority(priority: Double) -> Constraint {
|
|
|
|
return self.priority(Float(priority))
|
|
|
|
}
|
|
|
|
public func priority(priority: CGFloat) -> Constraint {
|
|
|
|
return self.priority(Float(priority))
|
|
|
|
}
|
|
|
|
public func priority(priority: UInt) -> Constraint {
|
|
|
|
return self.priority(Float(priority))
|
|
|
|
}
|
|
|
|
public func priority(priority: Int) -> Constraint {
|
|
|
|
return self.priority(Float(priority))
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func priorityRequired() -> Constraint {
|
2014-10-03 09:59:47 +08:00
|
|
|
return self.priority(1000.0)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func priorityHigh() -> Constraint {
|
2014-10-03 09:59:47 +08:00
|
|
|
return self.priority(750.0)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func priorityLow() -> Constraint {
|
2014-10-03 09:59:47 +08:00
|
|
|
return self.priority(250.0)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// MARK: offset
|
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func offset(amount: Float) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.offset = amount
|
|
|
|
return self
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
public func offset(amount: Double) -> Constraint {
|
|
|
|
return self.offset(Float(amount))
|
|
|
|
}
|
|
|
|
public func offset(amount: CGFloat) -> Constraint {
|
|
|
|
return self.offset(Float(amount))
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func offset(amount: Int) -> Constraint {
|
2014-10-03 09:59:47 +08:00
|
|
|
return self.offset(Float(amount))
|
|
|
|
}
|
|
|
|
public func offset(amount: UInt) -> Constraint {
|
|
|
|
return self.offset(Float(amount))
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func offset(amount: CGPoint) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.offset = amount
|
|
|
|
return self
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func offset(amount: CGSize) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.offset = amount
|
|
|
|
return self
|
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
public func offset(amount: EdgeInsets) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.offset = amount
|
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: insets
|
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public func insets(amount: EdgeInsets) -> Constraint {
|
2014-07-29 19:50:50 +08:00
|
|
|
self.offset = amount
|
2014-07-29 08:39:59 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
2015-01-08 14:04:29 +08:00
|
|
|
// MARK: internal
|
2014-07-29 08:39:59 +08:00
|
|
|
|
2015-01-08 14:20:34 +08:00
|
|
|
internal func install(updateExisting: Bool = false) -> Array<LayoutConstraint> {
|
2015-01-08 14:04:29 +08:00
|
|
|
if self.installedOnView != nil {
|
|
|
|
NSException(name: "Cannot Install Constraint", reason: "Already installed", userInfo: nil).raise()
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
var installOnView: View? = nil
|
2014-08-05 09:23:13 +08:00
|
|
|
if self.toItem.view != nil {
|
2014-07-29 08:39:59 +08:00
|
|
|
installOnView = Constraint.closestCommonSuperviewFromView(self.fromItem.view, toView: self.toItem.view)
|
2014-08-05 09:23:13 +08:00
|
|
|
if installOnView == nil {
|
2014-07-29 08:39:59 +08:00
|
|
|
NSException(name: "Cannot Install Constraint", reason: "No common superview between views", userInfo: nil).raise()
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
installOnView = self.fromItem.view?.superview
|
2014-08-05 09:23:13 +08:00
|
|
|
if installOnView == nil {
|
2014-07-29 08:39:59 +08:00
|
|
|
NSException(name: "Cannot Install Constraint", reason: "Missing superview", userInfo: nil).raise()
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var layoutConstraints: Array<LayoutConstraint> = []
|
|
|
|
let layoutFromAttributes = self.fromItem.attributes.layoutAttributes
|
|
|
|
let layoutToAttributes = self.toItem.attributes.layoutAttributes
|
|
|
|
|
|
|
|
// get layout from
|
|
|
|
let layoutFrom: View? = self.fromItem.view
|
|
|
|
|
|
|
|
// get layout relation
|
2014-08-05 09:23:13 +08:00
|
|
|
let layoutRelation: NSLayoutRelation = (self.relation != nil) ? self.relation!.layoutRelation : .Equal
|
2014-07-29 08:39:59 +08:00
|
|
|
|
|
|
|
for layoutFromAttribute in layoutFromAttributes {
|
|
|
|
// get layout to attribute
|
|
|
|
let layoutToAttribute = (layoutToAttributes.count > 0) ? layoutToAttributes[0] : layoutFromAttribute
|
|
|
|
|
|
|
|
// get layout constant
|
|
|
|
var layoutConstant: CGFloat = layoutToAttribute.snp_constantForValue(self.constant)
|
|
|
|
layoutConstant += layoutToAttribute.snp_offsetForValue(self.offset)
|
|
|
|
|
2014-08-05 14:51:42 +08:00
|
|
|
// get layout to
|
|
|
|
var layoutTo: View? = self.toItem.view
|
|
|
|
if layoutTo == nil && layoutToAttribute != .Width && layoutToAttribute != .Height {
|
|
|
|
layoutTo = installOnView
|
|
|
|
}
|
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
// create layout constraint
|
|
|
|
let layoutConstraint = LayoutConstraint(
|
2014-09-23 12:28:00 +08:00
|
|
|
item: layoutFrom!,
|
2014-07-29 08:39:59 +08:00
|
|
|
attribute: layoutFromAttribute,
|
|
|
|
relatedBy: layoutRelation,
|
|
|
|
toItem: layoutTo,
|
|
|
|
attribute: layoutToAttribute,
|
|
|
|
multiplier: CGFloat(self.multiplier),
|
|
|
|
constant: layoutConstant)
|
|
|
|
|
|
|
|
// set priority
|
|
|
|
layoutConstraint.priority = self.priority
|
|
|
|
|
|
|
|
// set constraint
|
|
|
|
layoutConstraint.constraint = self
|
|
|
|
|
|
|
|
layoutConstraints.append(layoutConstraint)
|
|
|
|
}
|
|
|
|
|
2015-01-08 14:20:34 +08:00
|
|
|
// special logic for updating
|
|
|
|
if updateExisting {
|
|
|
|
// get existing constraints for this view
|
|
|
|
let existingLayoutConstraints = reverse(layoutFrom!.snp_installedLayoutConstraints)
|
|
|
|
|
|
|
|
// array that will contain only new layout constraints
|
|
|
|
var newLayoutConstraints = Array<LayoutConstraint>()
|
|
|
|
|
|
|
|
// begin looping
|
|
|
|
for layoutConstraint in layoutConstraints {
|
|
|
|
// layout constraint that should be updated
|
|
|
|
var updateLayoutConstraint: LayoutConstraint? = nil
|
|
|
|
|
|
|
|
// loop through existing and check for match
|
|
|
|
for existingLayoutConstraint in existingLayoutConstraints {
|
|
|
|
if existingLayoutConstraint == layoutConstraint {
|
|
|
|
updateLayoutConstraint = existingLayoutConstraint
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we have existing one lets just update the constant
|
|
|
|
if updateLayoutConstraint != nil {
|
|
|
|
updateLayoutConstraint!.constant = layoutConstraint.constant
|
|
|
|
}
|
|
|
|
// otherwise add this layout constraint to new list
|
|
|
|
else {
|
|
|
|
newLayoutConstraints.append(layoutConstraint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set constraints to only new ones
|
|
|
|
layoutConstraints = newLayoutConstraints
|
|
|
|
}
|
|
|
|
|
|
|
|
// add constarints
|
2015-01-08 14:04:29 +08:00
|
|
|
installOnView!.addConstraints(layoutConstraints)
|
2014-07-29 08:39:59 +08:00
|
|
|
|
|
|
|
self.installedOnView = installOnView
|
|
|
|
return layoutConstraints
|
|
|
|
}
|
|
|
|
|
2015-01-08 14:04:29 +08:00
|
|
|
internal func uninstall() {
|
2014-07-29 08:39:59 +08:00
|
|
|
if let view = self.installedOnView {
|
2014-07-30 08:55:31 +08:00
|
|
|
#if os(iOS)
|
2015-01-08 09:58:12 +08:00
|
|
|
var installedConstraints = view.constraints()
|
|
|
|
#else
|
|
|
|
var installedConstraints = view.constraints
|
2014-07-30 08:55:31 +08:00
|
|
|
#endif
|
2014-07-29 08:39:59 +08:00
|
|
|
var constraintsToRemove: Array<LayoutConstraint> = []
|
|
|
|
for installedConstraint in installedConstraints {
|
|
|
|
if let layoutConstraint = installedConstraint as? LayoutConstraint {
|
|
|
|
if layoutConstraint.constraint === self {
|
|
|
|
constraintsToRemove.append(layoutConstraint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if constraintsToRemove.count > 0 {
|
|
|
|
view.removeConstraints(constraintsToRemove)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.installedOnView = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: private
|
|
|
|
|
|
|
|
private let fromItem: ConstraintItem
|
|
|
|
private var toItem: ConstraintItem
|
|
|
|
private var relation: ConstraintRelation?
|
|
|
|
private var constant: Any?
|
|
|
|
private var multiplier: Float = 1.0
|
|
|
|
private var priority: Float = 1000.0
|
|
|
|
private var offset: Any?
|
|
|
|
|
|
|
|
private weak var installedOnView: View?
|
|
|
|
|
|
|
|
private func addConstraint(attributes: ConstraintAttributes) -> Constraint {
|
2014-08-05 09:23:13 +08:00
|
|
|
if self.relation == nil {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.fromItem.attributes += attributes
|
|
|
|
}
|
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
private func constrainTo(other: ConstraintItem, relation: ConstraintRelation) -> Constraint {
|
|
|
|
if other.attributes != ConstraintAttributes.None {
|
|
|
|
var toLayoutAttributes = other.attributes.layoutAttributes
|
|
|
|
if toLayoutAttributes.count > 1 {
|
|
|
|
var 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) -> Constraint {
|
2015-01-08 09:58:12 +08:00
|
|
|
return constrainTo(ConstraintItem(object: other, attributes: ConstraintAttributes.None), relation: relation)
|
|
|
|
}
|
|
|
|
#if os(iOS)
|
|
|
|
private func constrainTo(other: UILayoutSupport, relation: ConstraintRelation) -> Constraint {
|
|
|
|
return constrainTo(ConstraintItem(object: other, attributes: ConstraintAttributes.None), relation: relation)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2015-01-08 09:58:12 +08:00
|
|
|
#endif
|
2014-07-29 08:39:59 +08:00
|
|
|
private func constrainTo(other: Float, relation: ConstraintRelation) -> Constraint {
|
|
|
|
self.constant = other
|
2015-01-08 09:58:12 +08:00
|
|
|
return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
private func constrainTo(other: Double, relation: ConstraintRelation) -> Constraint {
|
|
|
|
self.constant = other
|
2015-01-08 09:58:12 +08:00
|
|
|
return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
2014-10-03 09:59:47 +08:00
|
|
|
}
|
2014-07-29 08:39:59 +08:00
|
|
|
private func constrainTo(other: CGSize, relation: ConstraintRelation) -> Constraint {
|
|
|
|
self.constant = other
|
2015-01-08 09:58:12 +08:00
|
|
|
return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
|
|
|
private func constrainTo(other: CGPoint, relation: ConstraintRelation) -> Constraint {
|
|
|
|
self.constant = other
|
2015-01-08 09:58:12 +08:00
|
|
|
return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
2014-07-30 08:55:31 +08:00
|
|
|
private func constrainTo(other: EdgeInsets, relation: ConstraintRelation) -> Constraint {
|
2014-07-29 08:39:59 +08:00
|
|
|
self.constant = other
|
2015-01-08 09:58:12 +08:00
|
|
|
return constrainTo(ConstraintItem(object: nil, attributes: ConstraintAttributes.None), relation: relation)
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private class func closestCommonSuperviewFromView(fromView: View?, toView: View?) -> View? {
|
|
|
|
var closestCommonSuperview: View?
|
|
|
|
var secondViewSuperview: View? = toView
|
2014-08-05 09:23:13 +08:00
|
|
|
while closestCommonSuperview == nil && secondViewSuperview != nil {
|
2014-07-29 08:39:59 +08:00
|
|
|
var firstViewSuperview = fromView
|
2014-08-05 09:23:13 +08:00
|
|
|
while closestCommonSuperview == nil && firstViewSuperview != nil {
|
2014-07-29 08:39:59 +08:00
|
|
|
if secondViewSuperview == firstViewSuperview {
|
|
|
|
closestCommonSuperview = secondViewSuperview
|
|
|
|
}
|
|
|
|
firstViewSuperview = firstViewSuperview?.superview
|
|
|
|
}
|
|
|
|
secondViewSuperview = secondViewSuperview?.superview
|
|
|
|
}
|
|
|
|
return closestCommonSuperview
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension NSLayoutAttribute {
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
private func snp_offsetForValue(value: Any?) -> CGFloat {
|
2014-07-29 08:39:59 +08:00
|
|
|
// Float
|
|
|
|
if let float = value as? Float {
|
|
|
|
return CGFloat(float)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// Double
|
|
|
|
else if let double = value as? Double {
|
|
|
|
return CGFloat(double)
|
|
|
|
}
|
|
|
|
// UInt
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let int = value as? Int {
|
|
|
|
return CGFloat(int)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// Int
|
|
|
|
else if let uint = value as? UInt {
|
|
|
|
return CGFloat(uint)
|
|
|
|
}
|
|
|
|
// CGFloat
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let float = value as? CGFloat {
|
|
|
|
return float
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// CGSize
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let size = value as? CGSize {
|
|
|
|
if self == .Width {
|
|
|
|
return size.width
|
|
|
|
} else if self == .Height {
|
|
|
|
return size.height
|
|
|
|
}
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// CGPoint
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let point = value as? CGPoint {
|
|
|
|
if self == .Left || self == .CenterX {
|
|
|
|
return point.x
|
|
|
|
} else if self == .Top || self == .CenterY {
|
|
|
|
return point.y
|
|
|
|
} else if self == .Right {
|
|
|
|
return -point.x
|
|
|
|
} else if self == .Bottom {
|
|
|
|
return -point.y
|
|
|
|
}
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// EdgeInsets
|
2014-07-30 08:55:31 +08:00
|
|
|
else if let insets = value as? EdgeInsets {
|
2014-07-29 08:39:59 +08:00
|
|
|
if self == .Left {
|
|
|
|
return insets.left
|
|
|
|
} else if self == .Top {
|
|
|
|
return insets.top
|
|
|
|
} else if self == .Right {
|
|
|
|
return -insets.right
|
|
|
|
} else if self == .Bottom {
|
|
|
|
return -insets.bottom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return CGFloat(0)
|
|
|
|
}
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
private func snp_constantForValue(value: Any?) -> CGFloat {
|
2014-07-29 08:39:59 +08:00
|
|
|
// Float
|
|
|
|
if let float = value as? Float {
|
|
|
|
return CGFloat(float)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// Double
|
|
|
|
else if let double = value as? Double {
|
|
|
|
return CGFloat(double)
|
|
|
|
}
|
|
|
|
// UInt
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let int = value as? Int {
|
|
|
|
return CGFloat(int)
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// Int
|
|
|
|
else if let uint = value as? UInt {
|
|
|
|
return CGFloat(uint)
|
|
|
|
}
|
|
|
|
// CGFloat
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let float = value as? CGFloat {
|
|
|
|
return float
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// CGSize
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let size = value as? CGSize {
|
|
|
|
if self == .Width {
|
|
|
|
return size.width
|
|
|
|
} else if self == .Height {
|
|
|
|
return size.height
|
|
|
|
}
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// CGPoint
|
2014-07-29 08:39:59 +08:00
|
|
|
else if let point = value as? CGPoint {
|
|
|
|
if self == .Left || self == .CenterX {
|
|
|
|
return point.x
|
|
|
|
} else if self == .Top || self == .CenterY {
|
|
|
|
return point.y
|
|
|
|
} else if self == .Right {
|
|
|
|
return point.x
|
|
|
|
} else if self == .Bottom {
|
|
|
|
return point.y
|
|
|
|
}
|
|
|
|
}
|
2014-10-03 09:59:47 +08:00
|
|
|
// EdgeInsets
|
2014-07-30 08:55:31 +08:00
|
|
|
else if let insets = value as? EdgeInsets {
|
2014-07-29 08:39:59 +08:00
|
|
|
if self == .Left {
|
|
|
|
return insets.left
|
|
|
|
} else if self == .Top {
|
|
|
|
return insets.top
|
|
|
|
} else if self == .Right {
|
2014-10-29 06:45:56 +08:00
|
|
|
return -insets.right
|
2014-07-29 08:39:59 +08:00
|
|
|
} else if self == .Bottom {
|
2014-10-29 06:45:56 +08:00
|
|
|
return -insets.bottom
|
2014-07-29 08:39:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return CGFloat(0);
|
|
|
|
}
|
2015-01-08 14:04:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
internal func ==(left: Constraint, right: Constraint) -> Bool {
|
|
|
|
return (left.fromItem == right.fromItem &&
|
|
|
|
left.toItem == right.toItem &&
|
|
|
|
left.relation == right.relation &&
|
|
|
|
left.multiplier == right.multiplier &&
|
|
|
|
left.priority == right.priority)
|
2014-09-23 12:28:00 +08:00
|
|
|
}
|