53 lines
1.7 KiB
Swift
53 lines
1.7 KiB
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
|
|
import UIKit
|
|
|
|
class TunnelEditKeyValueCell: KeyValueCell {
|
|
|
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
|
|
|
keyLabel.textAlignment = .right
|
|
valueTextField.textAlignment = .left
|
|
|
|
let widthRatioConstraint = NSLayoutConstraint(item: keyLabel, attribute: .width, relatedBy: .equal, toItem: self, attribute: .width, multiplier: 0.4, constant: 0)
|
|
// In case the key doesn't fit into 0.4 * width,
|
|
// set a CR priority > the 0.4-constraint's priority.
|
|
widthRatioConstraint.priority = .defaultHigh + 1
|
|
widthRatioConstraint.isActive = true
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
}
|
|
|
|
class TunnelEditEditableKeyValueCell: TunnelEditKeyValueCell {
|
|
|
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
|
|
|
copyableGesture = false
|
|
if #available(iOS 13.0, *) {
|
|
valueTextField.textColor = .label
|
|
} else {
|
|
valueTextField.textColor = .black
|
|
}
|
|
valueTextField.isEnabled = true
|
|
valueLabelScrollView.isScrollEnabled = false
|
|
valueTextField.widthAnchor.constraint(equalTo: valueLabelScrollView.widthAnchor).isActive = true
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func prepareForReuse() {
|
|
super.prepareForReuse()
|
|
copyableGesture = false
|
|
}
|
|
|
|
}
|