ish/app/TerminalView.h

26 lines
604 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 IBInspectable (nonatomic) BOOL canBecomeFirstResponder;
@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