mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-26 17:43:22 +01:00
18 lines
338 B
Swift
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
|
||
|
}
|