NetNewsWire/Evergreen/MainWindow/KeyboardDelegateProtocol.swift

18 lines
336 B
Swift

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