This commit is contained in:
2026-03-04 12:54:57 +08:00
parent 2a122d27a9
commit f30b1d7640
20 changed files with 2190 additions and 1546 deletions

View File

@@ -0,0 +1,22 @@
//
// KBKeyboardLegacyLayoutProvider.h
// CustomKeyboard
//
#import <Foundation/Foundation.h>
@class KBKey;
@class KBKeyboardKeyFactory;
NS_ASSUME_NONNULL_BEGIN
@interface KBKeyboardLegacyLayoutProvider : NSObject
- (NSArray<NSArray<KBKey *> *> *)keysForLayoutStyleIsNumbers:(BOOL)isNumbersLayout
shiftOn:(BOOL)shiftOn
symbolsMoreOn:(BOOL)symbolsMoreOn
keyFactory:(KBKeyboardKeyFactory *)keyFactory;
@end
NS_ASSUME_NONNULL_END