tokenary/Encrypted Ink/Window.swift
2021-06-19 21:20:42 +03:00

53 lines
1.6 KiB
Swift

// Copyright © 2021 Encrypted Ink. All rights reserved.
import Cocoa
struct Window {
static func showNew() -> NSWindowController {
closeAll()
let windowController = new
activate(windowController)
return windowController
}
static func activate(_ windowController: NSWindowController) {
windowController.showWindow(nil)
NSApp.activate(ignoringOtherApps: true)
windowController.window?.makeKeyAndOrderFront(nil)
}
static func closeAll() {
NSApplication.shared.windows.forEach { $0.close() }
Agent.shared.setupStatusBarItem()
}
static func activateBrowser() {
// TODO: support more browsers
let apps = NSWorkspace().runningApplications
for bundleId in ["com.apple.Safari", "com.google.Chrome"] {
if let browser = apps.first(where: { $0.bundleIdentifier == bundleId}) {
browser.activate(options: .activateIgnoringOtherApps)
return
}
}
}
static var current: NSWindowController? {
return NSApplication.shared.windows.first?.windowController
}
static var new: NSWindowController {
return NSStoryboard.main.instantiateInitialController() as! NSWindowController
}
}
extension NSStoryboard {
static let main = NSStoryboard(name: "Main", bundle: nil)
}
func instantiate<ViewController: NSViewController>(_ type: ViewController.Type) -> ViewController {
return NSStoryboard.main.instantiateController(withIdentifier: String(describing: type)) as! ViewController
}