|
@@ -59,7 +59,7 @@ class PQVideoCutingOprateView: UIView {
|
|
|
lazy var durationLabel: UILabel = {
|
|
|
let durationLabel = UILabel()
|
|
|
durationLabel.font = UIFont.systemFont(ofSize: 11, weight: .medium)
|
|
|
- durationLabel.backgroundColor = UIColor.hexColor(hexadecimal: PQConfigUtil.shared.styleColor.rawValue)
|
|
|
+ durationLabel.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
durationLabel.alpha = 0.1
|
|
|
durationLabel.textColor = UIColor.white
|
|
|
durationLabel.textAlignment = .center
|
|
@@ -71,7 +71,7 @@ class PQVideoCutingOprateView: UIView {
|
|
|
leftOprateView.tintColor = UIColor.white
|
|
|
leftOprateView.contentMode = .scaleAspectFill
|
|
|
leftOprateView.isUserInteractionEnabled = true
|
|
|
- leftOprateView.backgroundColor = UIColor.hexColor(hexadecimal: PQConfigUtil.shared.styleColor.rawValue)
|
|
|
+ leftOprateView.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
let panGes = UIPanGestureRecognizer(target: self, action: #selector(panGesture(gesture:)))
|
|
|
panGes.maximumNumberOfTouches = 1
|
|
|
panGes.minimumNumberOfTouches = 1
|
|
@@ -82,7 +82,7 @@ class PQVideoCutingOprateView: UIView {
|
|
|
lazy var rightOprateView: UIImageView = {
|
|
|
let rightOprateView = UIImageView(image: UIImage.init().BF_Image(named: "videomk_crop_right").withRenderingMode(.alwaysTemplate))
|
|
|
rightOprateView.tintColor = UIColor.white
|
|
|
- rightOprateView.backgroundColor = UIColor.hexColor(hexadecimal: PQConfigUtil.shared.styleColor.rawValue)
|
|
|
+ rightOprateView.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
rightOprateView.contentMode = .scaleAspectFill
|
|
|
rightOprateView.isUserInteractionEnabled = true
|
|
|
let panGes = UIPanGestureRecognizer(target: self, action: #selector(panGesture(gesture:)))
|
|
@@ -94,13 +94,13 @@ class PQVideoCutingOprateView: UIView {
|
|
|
|
|
|
lazy var topLineView: UIImageView = {
|
|
|
let topLineView = UIImageView()
|
|
|
- topLineView.backgroundColor = UIColor.hexColor(hexadecimal: PQConfigUtil.shared.styleColor.rawValue)
|
|
|
+ topLineView.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
return topLineView
|
|
|
}()
|
|
|
|
|
|
lazy var bottomLineView: UIImageView = {
|
|
|
let bottomLineView = UIImageView()
|
|
|
- bottomLineView.backgroundColor = UIColor.hexColor(hexadecimal: PQConfigUtil.shared.styleColor.rawValue)
|
|
|
+ bottomLineView.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
return bottomLineView
|
|
|
}()
|
|
|
|