aboutsummaryrefslogtreecommitdiffstats
path: root/MASShortcutView.h
blob: 707a1e9e3386854a16610f74285d9b779df5e1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@class MASShortcut;

typedef enum {
    MASShortcutViewAppearanceDefault = 0,
    MASShortcutViewAppearanceTexturedRect
} MASShortcutViewAppearance;

@interface MASShortcutView : NSView

@property (nonatomic, strong) MASShortcut *shortcutValue;
@property (nonatomic, getter = isRecording) BOOL recording;
@property (nonatomic, getter = isEnabled) BOOL enabled;
@property (nonatomic, copy) void (^shortcutValueChange)(MASShortcutView *sender);
@property (nonatomic) MASShortcutViewAppearance appearance;

@end