1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-26 11:29:09 +00:00
CLK/OSBindings/Mac/Clock Signal/AppDelegate.swift
2019-09-21 18:01:16 -04:00

37 lines
1.0 KiB
Swift

//
// AppDelegate.swift
// Clock Signal
//
// Created by Thomas Harte on 16/07/2015.
// Copyright 2015 Thomas Harte. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application.
if NSDocumentController.shared.documents.count == 0 {
NSDocumentController.shared.openDocument(self)
}
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application.
}
func applicationShouldOpenUntitledFile(_ sender: NSApplication) -> Bool {
// Decline to show the 'New...' selector by default; the 'Open...'
// dialogue has already been shown if this application was started
// without a file.
//
// Obiter: I dislike it when other applications do this for me, but it
// seems to be the new norm, and I've had user feedback that showing
// nothing is confusing. So here it is.
return false
}
}