NetNewsWire/AppKitExtras/Sources/AppKitExtras/KeyboardDelegateProtocol.swift

19 lines
383 B
Swift

//
// KeyboardDelegateProtocol.swift
// NetNewsWire
//
// Created by Brent Simmons on 10/11/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
#if os(macOS)
import AppKit
//let keypadEnter: unichar = 3
@objc public protocol KeyboardDelegate: AnyObject {
// Return true if handled.
@MainActor func keydown(_: NSEvent, in view: NSView) -> Bool
}
#endif