2021-01-01 10:13:41 +00:00
|
|
|
//
|
|
|
|
// WindowManager.swift
|
2021-01-01 16:53:28 +00:00
|
|
|
// Passepartout
|
2021-01-01 10:13:41 +00:00
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 8/12/19.
|
|
|
|
// Copyright (c) 2021 Davide De Rosa. All rights reserved.
|
|
|
|
//
|
|
|
|
// https://github.com/passepartoutvpn
|
|
|
|
//
|
|
|
|
// This file is part of Passepartout.
|
|
|
|
//
|
|
|
|
// Passepartout is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Passepartout is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
import PassepartoutCore
|
|
|
|
|
|
|
|
class WindowManager: NSObject {
|
|
|
|
static let shared = WindowManager()
|
|
|
|
|
|
|
|
private var organizer: NSWindowController?
|
|
|
|
|
|
|
|
// private var preferences: NSWindowController?
|
|
|
|
|
|
|
|
private override init() {
|
|
|
|
}
|
|
|
|
|
|
|
|
@discardableResult func showOrganizer() -> NSWindowController? {
|
2021-01-26 17:59:03 +00:00
|
|
|
organizer = presentWindowController(StoryboardScene.Main.organizerWindowController, existing: organizer)
|
2021-01-01 10:13:41 +00:00
|
|
|
return organizer
|
|
|
|
}
|
|
|
|
|
|
|
|
// @discardableResult func showPreferences() -> NSWindowController? {
|
|
|
|
// preferences = presentWindowController(
|
|
|
|
// StoryboardScene.Preferences.initialScene.instantiate(),
|
|
|
|
// existing: preferences,
|
2021-01-26 20:41:51 +00:00
|
|
|
// title: L10n.App.Preferences.title
|
2021-01-01 10:13:41 +00:00
|
|
|
// )
|
|
|
|
// return preferences
|
|
|
|
// }
|
|
|
|
|
|
|
|
func showAbout() {
|
|
|
|
NSApp.orderFrontStandardAboutPanel(nil)
|
|
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Helpers
|
|
|
|
|
2021-01-26 17:59:03 +00:00
|
|
|
private func presentWindowController(_ wcScene: SceneType<NSWindowController>, existing: NSWindowController?) -> NSWindowController? {
|
2021-01-01 10:13:41 +00:00
|
|
|
var wc: NSWindowController?
|
|
|
|
if existing == nil {
|
|
|
|
wc = wcScene.instantiate()
|
|
|
|
wc?.window?.delegate = self
|
|
|
|
wc?.window?.center()
|
|
|
|
wc?.showWindow(nil)
|
|
|
|
} else {
|
|
|
|
existing?.window?.makeKeyAndOrderFront(self)
|
|
|
|
}
|
|
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
|
|
return existing ?? wc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension WindowManager: NSWindowDelegate {
|
|
|
|
func windowWillClose(_ notification: Notification) {
|
|
|
|
switch notification.object as? NSWindowController {
|
|
|
|
case organizer:
|
|
|
|
organizer = nil
|
|
|
|
|
|
|
|
// case preferences:
|
|
|
|
// preferences = nil
|
|
|
|
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|