mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
22 lines
464 B
Objective-C
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
|