This commit is contained in:
2025-10-28 15:10:38 +08:00
parent 377e88b6db
commit 2f2f20cfc2
5 changed files with 225 additions and 42 deletions

View File

@@ -6,16 +6,18 @@
//
#import "KeyboardViewController.h"
#import "KBToolBar.h"
#import "KBKeyboardView.h"
#import "KBKeyBoardMainView.h"
#import "KBKey.h"
#import "KBFunctionView.h"
#import "Masonry.h"
static CGFloat KEYBOARDHEIGHT = 256;
@interface KeyboardViewController () <KBToolBarDelegate, KBKeyboardViewDelegate>
@interface KeyboardViewController () <KBKeyBoardMainViewDelegate>
@property (nonatomic, strong) UIButton *nextKeyboardButton; //
@property (nonatomic, strong) KBToolBar *topBar;
@property (nonatomic, strong) KBKeyboardView *keyboardView;
@property (nonatomic, strong) KBKeyBoardMainView *keyBoardMainView; // 0
@property (nonatomic, strong) KBFunctionView *functionView; // 0
@end
@implementation KeyboardViewController
@@ -28,7 +30,6 @@ static CGFloat KEYBOARDHEIGHT = 256;
- (void)viewDidLoad {
[super viewDidLoad];
[self setupUI];
}
@@ -36,45 +37,47 @@ static CGFloat KEYBOARDHEIGHT = 256;
- (void)setupUI {
//
[self.view.heightAnchor constraintEqualToConstant:KEYBOARDHEIGHT].active = YES;
//
self.topBar = [[KBToolBar alloc] init];
self.topBar.delegate = self;
[self.view addSubview:self.topBar];
[self.topBar mas_makeConstraints:^(MASConstraintMaker *make) {
//
self.functionView.hidden = YES;
[self.view addSubview:self.functionView];
[self.functionView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.equalTo(self.view);
make.top.equalTo(self.view.mas_top).offset(6);
make.height.mas_equalTo(40);
make.top.equalTo(self.view).offset(4);
make.bottom.equalTo(self.view.mas_bottom).offset(-4);
}];
//
self.keyboardView = [[KBKeyboardView alloc] init];
self.keyboardView.delegate = self;
[self.view addSubview:self.keyboardView];
[self.keyboardView mas_makeConstraints:^(MASConstraintMaker *make) {
self.keyBoardMainView.delegate = self;
[self.view addSubview:self.keyBoardMainView];
[self.keyBoardMainView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.equalTo(self.view);
make.top.equalTo(self.topBar.mas_bottom).offset(4);
make.top.equalTo(self.view).offset(4);
make.bottom.equalTo(self.view.mas_bottom).offset(-4);
}];
}
#pragma mark - KBToolBarDelegate
- (void)toolBar:(KBToolBar *)toolBar didTapActionAtIndex:(NSInteger)index {
// [A1]..[A4]
// NSString *placeholder = [NSString stringWithFormat:@"[A%ld]", (long)index+1];
#pragma mark - Private
/// /
- (void)showFunctionPanel:(BOOL)show {
//
self.functionView.hidden = !show;
self.keyBoardMainView.hidden = show;
//
if (show) {
[self.view bringSubviewToFront:self.functionView];
} else {
[self.view bringSubviewToFront:self.keyBoardMainView];
}
}
- (void)toolBarDidTapSettings:(KBToolBar *)toolBar {
//
[self.textDocumentProxy insertText:@"[settings]"];
}
#pragma mark - KBKeyboardViewDelegate
- (void)keyboardView:(KBKeyboardView *)keyboard didTapKey:(KBKey *)key {
// MARK: - KBKeyBoardMainViewDelegate
- (void)keyBoardMainView:(KBKeyBoardMainView *)keyBoardMainView didTapKey:(KBKey *)key {
switch (key.type) {
case KBKeyTypeCharacter:
[self.textDocumentProxy insertText:key.output ?: key.title ?: @""]; break;
@@ -84,20 +87,41 @@ static CGFloat KEYBOARDHEIGHT = 256;
[self.textDocumentProxy insertText:@" "]; break;
case KBKeyTypeReturn:
[self.textDocumentProxy insertText:@"\n"]; break;
case KBKeyTypeModeChange: {
// <->
keyboard.layoutStyle = (keyboard.layoutStyle == KBKeyboardLayoutStyleLetters) ? KBKeyboardLayoutStyleNumbers : KBKeyboardLayoutStyleLetters;
[keyboard reloadKeys];
} break;
case KBKeyTypeGlobe:
[self advanceToNextInputMode]; break;
case KBKeyTypeCustom:
//
[self.textDocumentProxy insertText:@"[lang]"]; break;
case KBKeyTypeModeChange:
case KBKeyTypeShift:
// Shift KBKeyboardView
// KBKeyBoardMainView/KBKeyboardView
break;
}
}
- (void)keyBoardMainView:(KBKeyBoardMainView *)keyBoardMainView didTapToolActionAtIndex:(NSInteger)index {
//
if (index == 0) {
[self showFunctionPanel:YES];
} else {
[self showFunctionPanel:NO];
}
}
#pragma mark - lazy
- (KBKeyBoardMainView *)keyBoardMainView{
if (!_keyBoardMainView) {
_keyBoardMainView = [[KBKeyBoardMainView alloc] init];
}
return _keyBoardMainView;
}
- (KBFunctionView *)functionView{
if (!_functionView) {
_functionView = [[KBFunctionView alloc] init];
}
return _functionView;
}
@end