128 lines
4.0 KiB
Swift
128 lines
4.0 KiB
Swift
//
|
|
// PopupDialogOverlayView.swift
|
|
//
|
|
// Copyright (c) 2016 Orderella Ltd. (http://orderella.co.uk)
|
|
// Author - Martin Wildfeuer (http://www.mwfire.de)
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// The (blurred) overlay view below the popup dialog
|
|
final public class PopupDialogOverlayView: UIView {
|
|
|
|
// MARK: - Appearance
|
|
|
|
/// Turns the blur of the overlay view on or off
|
|
@objc public dynamic var blurEnabled: Bool {
|
|
get { return !blurView.isHidden }
|
|
set { blurView.isHidden = !newValue }
|
|
}
|
|
|
|
/// The blur radius of the overlay view
|
|
@objc public dynamic var blurRadius: CGFloat {
|
|
get { return blurView.blurRadius }
|
|
set { blurView.blurRadius = newValue }
|
|
}
|
|
|
|
/// Whether the blur view should allow for
|
|
/// live rendering of the background
|
|
@objc public dynamic var liveBlurEnabled: Bool {
|
|
get { return blurView.trackingMode == .common }
|
|
set {
|
|
if newValue {
|
|
blurView.trackingMode = .common
|
|
} else {
|
|
blurView.trackingMode = .none
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The background color of the overlay view
|
|
@objc public dynamic var color: UIColor? {
|
|
get { return overlay.backgroundColor }
|
|
set { overlay.backgroundColor = newValue }
|
|
}
|
|
|
|
/// The opacity of the overlay view
|
|
@objc public dynamic var opacity: CGFloat {
|
|
get { return overlay.alpha }
|
|
set { overlay.alpha = newValue }
|
|
}
|
|
|
|
// MARK: - Views
|
|
|
|
internal lazy var blurView: DynamicBlurView = {
|
|
let blurView = DynamicBlurView(frame: .zero)
|
|
blurView.blurRadius = 8
|
|
blurView.trackingMode = .none
|
|
blurView.isDeepRendering = true
|
|
blurView.tintColor = .clear
|
|
blurView.autoresizingMask = [.flexibleHeight, .flexibleWidth]
|
|
return blurView
|
|
}()
|
|
|
|
internal lazy var overlay: UIView = {
|
|
let overlay = UIView(frame: .zero)
|
|
overlay.backgroundColor = .black
|
|
overlay.alpha = 0.7
|
|
overlay.autoresizingMask = [.flexibleHeight, .flexibleWidth]
|
|
return overlay
|
|
}()
|
|
|
|
// MARK: - Inititalizers
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
setupView()
|
|
}
|
|
|
|
required public init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
// MARK: - View setup
|
|
|
|
fileprivate func setupView() {
|
|
|
|
autoresizingMask = [.flexibleHeight, .flexibleWidth]
|
|
backgroundColor = .clear
|
|
alpha = 0
|
|
|
|
addSubview(blurView)
|
|
addSubview(overlay)
|
|
}
|
|
|
|
}
|
|
|
|
// MARK: - Deprecated
|
|
|
|
extension PopupDialogOverlayView {
|
|
|
|
/// Whether the blur view should allow for
|
|
/// dynamic rendering of the background
|
|
@available(*, deprecated, message: "liveBlur has been deprecated and will be removed with future versions of PopupDialog. Please use isLiveBlurEnabled instead.")
|
|
@objc public dynamic var liveBlur: Bool {
|
|
get { return liveBlurEnabled }
|
|
set { liveBlurEnabled = newValue }
|
|
}
|
|
|
|
}
|