54 lines
1.8 KiB
Swift
54 lines
1.8 KiB
Swift
//
|
|
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
@objc
|
|
public class ViewOnceTooltip: TooltipView {
|
|
|
|
private override init(fromView: UIView,
|
|
widthReferenceView: UIView,
|
|
tailReferenceView: UIView,
|
|
wasTappedBlock: (() -> Void)?) {
|
|
|
|
super.init(fromView: fromView, widthReferenceView: widthReferenceView, tailReferenceView: tailReferenceView, wasTappedBlock: wasTappedBlock)
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
@objc
|
|
public class func present(fromView: UIView,
|
|
widthReferenceView: UIView,
|
|
tailReferenceView: UIView,
|
|
wasTappedBlock: (() -> Void)?) -> ViewOnceTooltip {
|
|
return ViewOnceTooltip(fromView: fromView, widthReferenceView: widthReferenceView, tailReferenceView: tailReferenceView, wasTappedBlock: wasTappedBlock)
|
|
}
|
|
|
|
public override func bubbleContentView() -> UIView {
|
|
let label = UILabel()
|
|
label.text = NSLocalizedString("VIEW_ONCE_MESSAGES_TOOLTIP",
|
|
comment: "Tooltip highlighting the view once messages button.")
|
|
label.font = UIFont.ows_dynamicTypeSubheadline
|
|
label.textColor = UIColor.ows_white
|
|
label.numberOfLines = 0
|
|
label.lineBreakMode = .byWordWrapping
|
|
|
|
return horizontalStack(forSubviews: [label])
|
|
}
|
|
|
|
public override var bubbleColor: UIColor {
|
|
return UIColor.ows_accentBlue
|
|
}
|
|
|
|
public override var bubbleInsets: UIEdgeInsets {
|
|
return UIEdgeInsets(top: 13, left: 12, bottom: 13, right: 12)
|
|
}
|
|
|
|
public override var bubbleHSpacing: CGFloat {
|
|
return 10
|
|
}
|
|
}
|