2014-07-25 12:24:17 +08:00
|
|
|
//
|
2015-01-09 04:43:43 +08:00
|
|
|
// Snap
|
2014-07-25 12:24:17 +08:00
|
|
|
//
|
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
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
/**
|
2015-01-09 04:43:43 +08:00
|
|
|
* ConstraintMaker is the maker in snap that gets all constraints kickstarted
|
2014-07-29 08:39:59 +08:00
|
|
|
*/
|
2014-09-23 12:28:00 +08:00
|
|
|
public class ConstraintMaker {
|
|
|
|
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) }
|
2014-07-29 08:39:59 +08:00
|
|
|
|
2014-09-23 12:28:00 +08:00
|
|
|
public var edges: Constraint { return addConstraint(ConstraintAttributes.Edges) }
|
|
|
|
public var size: Constraint { return addConstraint(ConstraintAttributes.Size) }
|
|
|
|
public var center: Constraint { return addConstraint(ConstraintAttributes.Center) }
|
2014-07-25 12:24:17 +08:00
|
|
|
|
|
|
|
init(view: View) {
|
|
|
|
self.view = view
|
|
|
|
}
|
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
internal weak var view: View?
|
|
|
|
internal var constraints = Array<Constraint>()
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2014-07-29 08:39:59 +08:00
|
|
|
internal func addConstraint(attributes: ConstraintAttributes) -> Constraint {
|
2015-01-08 09:58:12 +08:00
|
|
|
let item = ConstraintItem(object: self.view, attributes: attributes)
|
2014-07-29 08:39:59 +08:00
|
|
|
let constraint = Constraint(fromItem: item)
|
2014-07-25 12:24:17 +08:00
|
|
|
self.constraints.append(constraint)
|
|
|
|
return constraint
|
|
|
|
}
|
|
|
|
|
2015-02-14 18:37:27 +08:00
|
|
|
internal class func makeConstraints(view: View, block: (make: ConstraintMaker) -> Void) {
|
2014-07-30 08:55:31 +08:00
|
|
|
#if os(iOS)
|
2014-07-29 08:39:59 +08:00
|
|
|
view.setTranslatesAutoresizingMaskIntoConstraints(false)
|
2014-07-30 08:55:31 +08:00
|
|
|
#else
|
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
#endif
|
2014-07-29 08:39:59 +08:00
|
|
|
let maker = ConstraintMaker(view: view)
|
|
|
|
block(make: maker)
|
2014-07-25 15:48:04 +08:00
|
|
|
|
2015-02-14 18:37:27 +08:00
|
|
|
var layoutConstraints = Array<LayoutConstraint>(view.snp_installedLayoutConstraints)
|
2014-07-29 08:39:59 +08:00
|
|
|
for constraint in maker.constraints {
|
|
|
|
layoutConstraints += constraint.install()
|
2014-07-25 12:24:17 +08:00
|
|
|
}
|
2015-01-08 14:04:29 +08:00
|
|
|
|
|
|
|
view.snp_installedLayoutConstraints = layoutConstraints
|
2014-07-25 12:24:17 +08:00
|
|
|
}
|
|
|
|
|
2015-02-14 18:37:27 +08:00
|
|
|
internal class func remakeConstraints(view: View, block: (make: ConstraintMaker) -> Void) {
|
2014-07-30 08:55:31 +08:00
|
|
|
#if os(iOS)
|
2014-07-29 08:39:59 +08:00
|
|
|
view.setTranslatesAutoresizingMaskIntoConstraints(false)
|
2014-07-30 08:55:31 +08:00
|
|
|
#else
|
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
#endif
|
2014-07-29 08:39:59 +08:00
|
|
|
let maker = ConstraintMaker(view: view)
|
|
|
|
block(make: maker)
|
2014-07-25 12:24:17 +08:00
|
|
|
|
2015-02-14 18:37:27 +08:00
|
|
|
var layoutConstraints = Array<LayoutConstraint>(view.snp_installedLayoutConstraints)
|
2014-07-29 08:39:59 +08:00
|
|
|
for existingLayoutConstraint in layoutConstraints {
|
|
|
|
existingLayoutConstraint.constraint?.uninstall()
|
2014-07-25 12:24:17 +08:00
|
|
|
}
|
2014-07-29 08:39:59 +08:00
|
|
|
layoutConstraints = []
|
|
|
|
|
|
|
|
for constraint in maker.constraints {
|
|
|
|
layoutConstraints += constraint.install()
|
2014-07-25 12:24:17 +08:00
|
|
|
}
|
2015-01-08 14:04:29 +08:00
|
|
|
|
|
|
|
view.snp_installedLayoutConstraints = layoutConstraints
|
2014-07-25 12:24:17 +08:00
|
|
|
}
|
2014-12-31 07:47:31 +08:00
|
|
|
|
2015-02-14 18:37:27 +08:00
|
|
|
internal class func updateConstraints(view: View, block: (make: ConstraintMaker) -> Void) {
|
2015-01-08 14:20:34 +08:00
|
|
|
#if os(iOS)
|
|
|
|
view.setTranslatesAutoresizingMaskIntoConstraints(false)
|
|
|
|
#else
|
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
#endif
|
|
|
|
let maker = ConstraintMaker(view: view)
|
|
|
|
block(make: maker)
|
|
|
|
|
2015-02-14 18:37:27 +08:00
|
|
|
var layoutConstraints = Array<LayoutConstraint>(view.snp_installedLayoutConstraints)
|
2015-01-08 14:20:34 +08:00
|
|
|
for constraint in maker.constraints {
|
2015-01-14 09:16:26 +08:00
|
|
|
layoutConstraints += constraint.installOnView(updateExisting: true)
|
2015-01-08 14:20:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
view.snp_installedLayoutConstraints = layoutConstraints
|
|
|
|
}
|
|
|
|
|
2014-12-31 07:47:31 +08:00
|
|
|
internal class func removeConstraints(view: View) {
|
2015-02-14 18:37:27 +08:00
|
|
|
let eixsitingLayoutConstraints = Array<LayoutConstraint>(view.snp_installedLayoutConstraints)
|
|
|
|
for existingLayoutConstraint in eixsitingLayoutConstraints {
|
2014-12-31 07:47:31 +08:00
|
|
|
existingLayoutConstraint.constraint?.uninstall()
|
|
|
|
}
|
2015-01-08 14:04:29 +08:00
|
|
|
|
|
|
|
view.snp_installedLayoutConstraints = []
|
2014-12-31 07:47:31 +08:00
|
|
|
}
|
2014-09-23 12:28:00 +08:00
|
|
|
}
|