feat: initial Swift version

This commit is contained in:
relikd
2025-10-28 21:21:21 +01:00
parent 9b0761318c
commit 22a17494c8
27 changed files with 2883 additions and 35 deletions

View File

@@ -1,30 +1,20 @@
//
// AppDelegate.swift
// QLApps
//
// Created by - on 28.07.25.
//
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet var window: NSWindow!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}