mirror of
https://github.com/TermiT/Flycut.git
synced 2025-02-21 22:43:15 +08:00
38 lines
843 B
Objective-C
38 lines
843 B
Objective-C
//
|
|
// SGKeyCombo.h
|
|
// SGHotKeyCenter
|
|
//
|
|
// Created by Justin Williams on 7/26/09.
|
|
// Copyright 2009 Second Gear. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface SGKeyCombo : NSObject {
|
|
NSInteger keyCode;
|
|
NSInteger modifiers;
|
|
}
|
|
|
|
@property (nonatomic, assign) NSInteger keyCode;
|
|
@property (nonatomic, assign) NSInteger modifiers;
|
|
|
|
+ (id)clearKeyCombo;
|
|
+ (id)keyComboWithKeyCode:(NSInteger)theKeyCode modifiers:(NSInteger)theModifiers;
|
|
- (id)initWithKeyCode:(NSInteger)theKeyCode modifiers:(NSInteger)theModifiers;
|
|
|
|
- (id)initWithPlistRepresentation:(id)thePlist;
|
|
- (id)plistRepresentation;
|
|
|
|
- (BOOL)isEqual:(SGKeyCombo *)theCombo;
|
|
|
|
- (BOOL)isClearCombo;
|
|
- (BOOL)isValidHotKeyCombo;
|
|
|
|
@end
|
|
|
|
@interface SGKeyCombo (UserDisplayAdditions)
|
|
- (NSString *)description;
|
|
- (NSString *)keyCodeString;
|
|
- (NSUInteger)modifierMask;
|
|
@end
|
|
|