ish/app/TerminalView.h
2019-11-27 17:21:43 -08:00

24 lines
537 B
Objective-C

//
// TerminalView.h
// iSH
//
// Created by Theodore Dubois on 11/3/17.
//
#import <UIKit/UIKit.h>
#import "Terminal.h"
@interface TerminalView : UIView <UITextInput, WKScriptMessageHandler, UIScrollViewDelegate>
@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