Files
NetNewsWire/RSCore/Sources/RSCore/AppKit/KeyboardDelegateProtocol.swift
2025-04-21 21:53:25 -07:00

19 lines
368 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: class {
// Return true if handled.
func keydown(_: NSEvent, in view: NSView) -> Bool
}
#endif