NetNewsWire/Evergreen/MainWindow/KeyboardDelegateProtocol.swift
2017-05-26 13:25:02 -07:00

18 lines
338 B
Swift

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