mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-18 12:28:37 +01:00
18 lines
337 B
Swift
18 lines
337 B
Swift
//
|
|
// KeyboardDelegateProtocol.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 10/11/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
let keypadEnter: unichar = 3
|
|
|
|
@objc protocol KeyboardDelegate: class {
|
|
|
|
// Return true if handled.
|
|
func keydown(_: NSEvent, in view: NSView) -> Bool
|
|
}
|