aboutsummaryrefslogtreecommitdiffstats
path: root/MASShortcutView.h
diff options
context:
space:
mode:
Diffstat (limited to 'MASShortcutView.h')
-rw-r--r--MASShortcutView.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/MASShortcutView.h b/MASShortcutView.h
index 2565d6c..707a1e9 100644
--- a/MASShortcutView.h
+++ b/MASShortcutView.h
@@ -1,10 +1,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