ish/app/TerminalView.h
Theodore Dubois f7877506d6 Switch to hterm
xterm.js can't support selection sanely. I originally thought hterm was
kind of abandoned, but it turns out thousands of Googlers rely on it.
So now I can live at head, and have a place to send patches.
2019-09-06 23:30:41 -07:00

21 lines
439 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, UIScrollViewDelegate>
@property (nonatomic) UIKeyboardAppearance keyboardAppearance;
@property (weak) IBOutlet UIInputView *inputAccessoryView;
@property (weak) IBOutlet UIButton *controlKey;
@property (nonatomic) Terminal *terminal;
@end