tokenary/Tokenary macOS/Screens/WaitingViewController.swift
2021-12-02 21:51:45 +03:00

29 lines
706 B
Swift

// Copyright © 2021 Tokenary. All rights reserved.
import Cocoa
class WaitingViewController: NSViewController {
static func withReason(_ reason: String) -> WaitingViewController {
let new = instantiate(WaitingViewController.self)
new.reason = reason
return new
}
private var reason = ""
@IBOutlet weak var progressIndicator: NSProgressIndicator!
@IBOutlet weak var titleLabel: NSTextField!
override func viewDidLoad() {
super.viewDidLoad()
titleLabel.stringValue = reason
progressIndicator.startAnimation(nil)
}
@IBAction func actionButtonTapped(_ sender: Any) {
Window.closeAll()
}
}