mirror of
https://github.com/zydeco/minivmac4ios.git
synced 2024-11-17 16:06:18 +00:00
34 lines
605 B
Objective-C
34 lines
605 B
Objective-C
//
|
|
// KBKey.h
|
|
// BasiliskII
|
|
//
|
|
// Created by Jesús A. Álvarez on 16/03/2014.
|
|
// Copyright (c) 2014-2018 namedfork. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
extern const NSUInteger KBKeyEventStickyKey;
|
|
|
|
@interface KBKey : UIButton
|
|
|
|
@property (nonatomic, copy, nullable) NSString *label;
|
|
@property (nonatomic, assign) int16_t scancode;
|
|
@property (nonatomic, assign) BOOL dark;
|
|
|
|
@end
|
|
|
|
@interface KBStickyKey : KBKey
|
|
@property (nonatomic, assign) BOOL down;
|
|
@end
|
|
|
|
@interface KBHideKey : KBKey
|
|
|
|
@end
|
|
|
|
@interface KBShiftCapsKey : KBStickyKey
|
|
|
|
@property (nonatomic, assign) BOOL capsLocked;
|
|
|
|
@end
|