mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
572be48f38
This will be necessary only prior to 10.14.
50 lines
1.5 KiB
Swift
50 lines
1.5 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 {
|
|
|
|
private var failedMetalCheck = false
|
|
func applicationDidFinishLaunching(_ notification: Notification) {
|
|
// Insert code here to initialize your application.
|
|
|
|
// Check for at least one Metal-capable GPU; this check
|
|
// will become unnecessary if/when the minimum OS version
|
|
// that this project supports reascends to 10.14.
|
|
if (MTLCopyAllDevices().count == 0) {
|
|
self.failedMetalCheck = true
|
|
|
|
let alert = NSAlert()
|
|
alert.messageText = "This application requires a Metal-capable GPU"
|
|
alert.addButton(withTitle: "Exit")
|
|
alert.runModal()
|
|
|
|
let application = notification.object as! NSApplication
|
|
application.terminate(self)
|
|
}
|
|
}
|
|
|
|
private var hasShownOpenDocument = false
|
|
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.
|
|
if !hasShownOpenDocument {
|
|
NSDocumentController.shared.openDocument(self)
|
|
hasShownOpenDocument = true
|
|
}
|
|
return false
|
|
}
|
|
}
|