mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 22:45:54 +03:00
29 lines
711 B
Swift
29 lines
711 B
Swift
// Copyright © 2021 Encrypted Ink. 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()
|
|
}
|
|
|
|
}
|