2017-05-27 19:43:27 +02:00
|
|
|
//
|
|
|
|
// IndeterminateProgressWindowController.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 8/28/16.
|
2017-05-29 22:17:58 +02:00
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
2017-05-27 19:43:27 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
|
|
|
|
class IndeterminateProgressWindowController: NSWindowController {
|
|
|
|
|
|
|
|
@IBOutlet var messageLabel: NSTextField!
|
|
|
|
@IBOutlet var progressIndicator: NSProgressIndicator!
|
2017-09-17 21:34:10 +02:00
|
|
|
@objc dynamic var message = ""
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
convenience init(message: String) {
|
|
|
|
|
|
|
|
self.init(windowNibName: "IndeterminateProgressWindow")
|
|
|
|
self.message = message
|
|
|
|
}
|
|
|
|
|
|
|
|
override func windowDidLoad() {
|
|
|
|
|
|
|
|
progressIndicator.startAnimation(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func runIndeterminateProgressWithMessage(_ message: String) {
|
|
|
|
|
|
|
|
let windowController = IndeterminateProgressWindowController(message: message)
|
|
|
|
NSApplication.shared().runModal(for: windowController.window!)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stopIndeterminateProgress() {
|
|
|
|
|
|
|
|
NSApplication.shared().stopModal()
|
|
|
|
}
|