ish/app/TerminalView.h
2018-09-23 16:19:14 -07:00

21 lines
376 B
Objective-C

//
// TerminalView.h
// iSH
//
// Created by Theodore Dubois on 11/3/17.
//
#import <UIKit/UIKit.h>
#import "Terminal.h"
@interface TerminalView : UIView <UIKeyInput, WKScriptMessageHandler>
@property UIInputView *inputAccessoryView;
@property (nonatomic) Terminal *terminal;
@property (readonly) UIScrollView *scrollView;
@property (weak) UIButton *controlKey;
@end