2016-01-26 18:49:04 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
#if os(iOS) || os(tvOS)
|
|
|
|
import UIKit
|
|
|
|
#else
|
|
|
|
import AppKit
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
public class ConstraintMakerExtendable: ConstraintMakerRelatable {
|
|
|
|
|
|
|
|
public var left: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .left
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var top: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .top
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var bottom: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .bottom
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var right: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .right
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var leading: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .leading
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var trailing: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .trailing
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var width: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .width
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var height: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .height
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var centerX: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .centerX
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var centerY: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .centerY
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
2016-08-06 18:38:02 +08:00
|
|
|
@available(*, deprecated:0.40.0, message:"Use lastBaseline instead")
|
2016-01-26 18:49:04 +08:00
|
|
|
public var baseline: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .lastBaseline
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
2016-08-06 18:38:02 +08:00
|
|
|
public var lastBaseline: ConstraintMakerExtendable {
|
|
|
|
self.description.attributes += .lastBaseline
|
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, OSX 10.11, *)
|
2016-01-26 18:49:04 +08:00
|
|
|
public var firstBaseline: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .firstBaseline
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var leftMargin: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .leftMargin
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var rightMargin: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .rightMargin
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var bottomMargin: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .bottomMargin
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var leadingMargin: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .leadingMargin
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var trailingMargin: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .trailingMargin
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var centerXWithinMargins: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .centerXWithinMargins
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var centerYWithinMargins: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .centerYWithinMargins
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
public var edges: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .edges
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
public var size: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .size
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var margins: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .margins
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(iOS 8.0, *)
|
|
|
|
public var centerWithinMargins: ConstraintMakerExtendable {
|
2016-08-06 18:38:02 +08:00
|
|
|
self.description.attributes += .centerWithinMargins
|
2016-01-26 18:49:04 +08:00
|
|
|
return self
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|