Files
Attractor/App/KeyboardShortcuts.swift
2020-11-10 11:57:40 -06:00

36 lines
612 B
Swift

//
// KeyboardShortcuts.swift
// App
//
// Created by James Magahern on 9/21/20.
//
import UIKit
@objc
protocol ShortcutResponder: class {
@objc
optional func focusURLBar(_ sender: Any?)
@objc
optional func goBack(_ sender: Any?)
@objc
optional func goForward(_ sender: Any?)
@objc
optional func createTab(_ sender: Any?)
@objc
optional func previousTab(_ sender: Any?)
@objc
optional func nextTab(_ sender: Any?)
@objc
optional func closeTab(_ sender: Any?)
@objc
optional func findOnPage(_ sender: Any?)
}