2022-06-25 20:11:45 +00:00
|
|
|
//
|
|
|
|
// AppDelegate.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
2024-09-23 13:02:26 +00:00
|
|
|
// Created by Davide De Rosa on 9/18/24.
|
2024-01-14 13:34:21 +00:00
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
2022-06-25 20:11:45 +00:00
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
//
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
#if os(iOS)
|
|
|
|
|
2024-09-30 15:22:16 +00:00
|
|
|
import AppUI
|
2023-04-04 07:50:45 +00:00
|
|
|
import UIKit
|
2022-06-25 20:11:45 +00:00
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
final class AppDelegate: NSObject, UIApplicationDelegate {
|
2024-09-30 15:22:16 +00:00
|
|
|
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
|
|
|
|
ImporterPipe.shared.send([url])
|
|
|
|
return true
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
import AppKit
|
2024-09-28 15:58:48 +00:00
|
|
|
import AppUI
|
|
|
|
import CommonLibrary
|
2024-09-28 17:05:47 +00:00
|
|
|
import PassepartoutKit
|
2024-09-28 15:58:48 +00:00
|
|
|
import SwiftUI
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
final class AppDelegate: NSObject, NSApplicationDelegate {
|
2024-09-28 15:58:48 +00:00
|
|
|
|
|
|
|
@AppStorage(AppPreference.confirmsQuit.key)
|
|
|
|
private var confirmsQuit = true
|
|
|
|
|
|
|
|
func applicationDidFinishLaunching(_ notification: Notification) {
|
|
|
|
NSApp.windows[0].styleMask.remove(.closable)
|
|
|
|
}
|
|
|
|
|
|
|
|
func applicationShouldTerminate(_ sender: NSApplication) -> NSApplication.TerminateReply {
|
|
|
|
if confirmsQuit {
|
|
|
|
return quitConfirmationAlert()
|
|
|
|
}
|
|
|
|
return .terminateNow
|
|
|
|
}
|
2024-09-30 15:22:16 +00:00
|
|
|
|
|
|
|
func application(_ application: NSApplication, open urls: [URL]) {
|
|
|
|
ImporterPipe.shared.send(urls)
|
|
|
|
}
|
2024-09-28 15:58:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@MainActor
|
|
|
|
private extension AppDelegate {
|
|
|
|
func quitConfirmationAlert() -> NSApplication.TerminateReply {
|
|
|
|
let alert = NSAlert()
|
|
|
|
alert.alertStyle = .warning
|
2024-09-28 17:05:47 +00:00
|
|
|
alert.messageText = Strings.Alerts.ConfirmQuit.title(BundleConfiguration.mainDisplayName)
|
2024-09-28 15:58:48 +00:00
|
|
|
alert.informativeText = Strings.Alerts.ConfirmQuit.message
|
|
|
|
alert.addButton(withTitle: Strings.Global.ok)
|
|
|
|
alert.addButton(withTitle: Strings.Global.cancel)
|
|
|
|
alert.addButton(withTitle: Strings.Global.doNotAskAgain)
|
|
|
|
|
|
|
|
switch alert.runModal() {
|
|
|
|
case .alertSecondButtonReturn:
|
|
|
|
return .terminateCancel
|
|
|
|
|
|
|
|
case .alertThirdButtonReturn:
|
|
|
|
confirmsQuit = false
|
|
|
|
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
return .terminateNow
|
|
|
|
}
|
2022-06-25 20:11:45 +00:00
|
|
|
}
|
2024-09-28 10:47:33 +00:00
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
#endif
|