ish/app/TerminalView.h
Christoffer Tønnessen 0ece6a57c4 Let caps lock be overwritten from settings
Now you can go to settings and iSH and chose what you want the caps lock
to be verwritten to!
2018-11-11 18:39:12 +01:00

23 lines
500 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>
- (void)registerExternalKeyboardNotificationsToNotificationCenter:(NSNotificationCenter *)center;
@property (weak) IBOutlet UIInputView *inputAccessoryView;
@property (weak) IBOutlet UIButton *controlKey;
@property (nonatomic) Terminal *terminal;
@property (readonly) UIScrollView *scrollView;
@end