mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
b6e4c8209b
As per the prevailing wind.
33 lines
919 B
Swift
33 lines
919 B
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.
|
|
}
|
|
|
|
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, preferring to offer
|
|
// an 'Open...' dialogue.
|
|
//
|
|
// 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.
|
|
NSDocumentController.shared.openDocument(self)
|
|
return false
|
|
}
|
|
}
|