Signal-iOS/SignalUI/Views/ImageEditor/ImageEditorToolbar.swift
Evan Hahn 370ff654e7
Change license to AGPL
Change license to AGPL

This commit:

- Updates the `LICENSE` file

- Start every file with something like:

      // Copyright YEAR_FIRST_PUBLISHED Signal Messenger, LLC
      // SPDX-License-Identifier: AGPL-3.0-only

---

First, I removed existing license headers with this Ruby 3.1.2 script:

    require 'set'

    EXTENSIONS_TO_CHECK = Set['.h', '.hpp', '.cpp', '.m', '.mm', '.pch', '.swift']

    same = 0
    different = 0

    all_files = `git ls-files`.lines.map { |line| line.strip }
    all_files.each do |relative_path|
      if relative_path == 'Pods'
        next
      end

      unless EXTENSIONS_TO_CHECK.include? File.extname(relative_path)
        next
      end

      path = File.expand_path(relative_path)

      contents = File.read(path)
      new_contents = contents.sub(/\/\/\n\/\/  Copyright .*\n\/\/\n\n/, '')

      if contents == new_contents
        same += 1
      else
        different += 1
      end

      File.write(path, new_contents)
    end

    puts "updated #{different} file(s), left #{same} untouched"

I'm sure this script could be improved, but it worked well enough.

Then, I created `Scripts/lint/lint-license-headers` and ran it to auto-
fix a lot of files. This changed the mode of some files, but I think
that's actually desirable. For example,
`SignalServiceKit/src/Util/AppContext.m` previously had a mode of
`0755/-rwxr-xr-x`, and it's now `0644/-rw-r--r--`.

Then I fixed some stragglers and updated the precommit script.

See [a similar change in the Desktop app][0].

[0]: 8bfaf598af
2022-10-13 08:25:37 -05:00

135 lines
5.2 KiB
Swift

//
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import UIKit
class ImageEditorTopBar: MediaTopBar {
let undoButton = RoundMediaButton(image: #imageLiteral(resourceName: "media-editor-undo"), backgroundStyle: .blur)
var isUndoButtonHidden: Bool {
get { undoButton.alpha == 0 }
set { undoButton.alpha = newValue ? 0 : 1 }
}
let clearAllButton = RoundMediaButton(image: nil, backgroundStyle: .blur)
var isClearAllButtonHidden: Bool {
get { clearAllButton.alpha == 0 }
set { clearAllButton.alpha = newValue ? 0 : 1 }
}
override init(frame: CGRect) {
super.init(frame: frame)
let clearAllButtonTitle =
OWSLocalizedString("MEDIA_EDITOR_CLEAR_ALL",
comment: "Title for the button that discards all edits in media editor.")
clearAllButton.setTitle(clearAllButtonTitle, for: .normal)
clearAllButton.contentEdgeInsets = UIEdgeInsets(hMargin: 26, vMargin: 15)
let stackView = UIStackView(arrangedSubviews: [ undoButton, UIView.hStretchingSpacer(), clearAllButton ])
for button in stackView.arrangedSubviews {
button.setContentHuggingPriority(.defaultHigh, for: .vertical)
button.setCompressionResistanceVerticalHigh()
}
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .horizontal
stackView.alignment = .center
stackView.isOpaque = false
addSubview(stackView)
addConstraints([
undoButton.layoutMarginsGuide.leadingAnchor.constraint(equalTo: controlsLayoutGuide.leadingAnchor),
stackView.topAnchor.constraint(equalTo: controlsLayoutGuide.topAnchor),
stackView.bottomAnchor.constraint(equalTo: controlsLayoutGuide.bottomAnchor),
stackView.trailingAnchor.constraint(equalTo: controlsLayoutGuide.trailingAnchor)
])
}
@available(*, unavailable, message: "Use init(frame:)")
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
protocol ImageEditorBottomBarButtonProvider: AnyObject {
var middleButtons: [UIButton] { get }
}
protocol ImageEditorBottomBarProvider: AnyObject {
func bottomBar(for viewController: UIViewController) -> ImageEditorBottomBar
}
class ImageEditorBottomBar: UIView {
let cancelButton: UIButton = RoundMediaButton(image: #imageLiteral(resourceName: "media-editor-toolbar-discard"),
backgroundStyle: .solid(RoundMediaButton.defaultBackgroundColor))
let doneButton: UIButton = RoundMediaButton(image: #imageLiteral(resourceName: "media-editor-toolbar-done"),
backgroundStyle: .solid(RoundMediaButton.defaultBackgroundColor))
let buttons: [UIButton]
let stackView = UIStackView()
private var areControlsHidden = false
private var stackViewPositionConstraint: NSLayoutConstraint?
required init(buttonProvider: ImageEditorBottomBarButtonProvider?) {
let middleButtons = buttonProvider?.middleButtons ?? []
self.buttons = [ cancelButton ] + middleButtons + [ doneButton ]
super.init(frame: .zero)
preservesSuperviewLayoutMargins = true
setContentHuggingVerticalHigh()
// Constrain bottom edge to bottom safe area.
if UIDevice.current.hasIPhoneXNotch {
layoutMargins.bottom = 0
}
buttons.forEach { button in
button.setContentHuggingHigh()
button.setCompressionResistanceVerticalHigh()
}
let middleStackView = UIStackView(arrangedSubviews: middleButtons)
middleStackView.spacing = 2
stackView.addArrangedSubviews([ cancelButton, middleStackView, doneButton ])
stackView.distribution = .equalSpacing
stackView.isOpaque = false
addSubview(stackView)
stackView.autoPinLeadingToSuperviewMargin(withInset: -cancelButton.layoutMargins.leading)
stackView.autoPinTrailingToSuperviewMargin(withInset: -doneButton.layoutMargins.trailing)
stackView.heightAnchor.constraint(equalTo: layoutMarginsGuide.heightAnchor).isActive = true
setControls(hidden: false)
}
@available(*, unavailable, message: "Use init(buttonProvider:)")
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func setControls(hidden: Bool) {
guard hidden != areControlsHidden || stackViewPositionConstraint == nil else { return }
if let stackViewPositionConstraint = stackViewPositionConstraint {
removeConstraint(stackViewPositionConstraint)
self.stackViewPositionConstraint = nil
}
let stackViewPositionConstraint: NSLayoutConstraint
if hidden {
stackViewPositionConstraint = stackView.topAnchor.constraint(equalTo: bottomAnchor)
} else {
stackViewPositionConstraint = stackView.topAnchor.constraint(equalTo: layoutMarginsGuide.topAnchor)
}
addConstraint(stackViewPositionConstraint)
self.stackViewPositionConstraint = stackViewPositionConstraint
areControlsHidden = hidden
}
}