// // TerminalView.h // iSH // // Created by Theodore Dubois on 11/3/17. // #import #import "Terminal.h" @interface TerminalView : UIView @property (nonatomic) CGFloat overrideFontSize; @property (readonly) CGFloat effectiveFontSize; @property (nonatomic) UIKeyboardAppearance keyboardAppearance; @property (weak) IBOutlet UIInputView *inputAccessoryView; @property (weak) IBOutlet UIButton *controlKey; @property (nonatomic) Terminal *terminal; @end