ish/app/TerminalView.h
2018-12-02 18:14:30 -08:00

22 lines
464 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 (nonatomic) UIKeyboardAppearance keyboardAppearance;
@property (weak) IBOutlet UIInputView *inputAccessoryView;
@property (weak) IBOutlet UIButton *controlKey;
@property (nonatomic) Terminal *terminal;
@property (readonly) UIScrollView *scrollView;
@end