aboutsummaryrefslogtreecommitdiffstats
path: root/MASShortcutView.h
diff options
context:
space:
mode:
Diffstat (limited to 'MASShortcutView.h')
-rw-r--r--MASShortcutView.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/MASShortcutView.h b/MASShortcutView.h
deleted file mode 100644
index c8a46bb..0000000
--- a/MASShortcutView.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#import <AppKit/AppKit.h>
-
-@class MASShortcut;
-
-typedef enum {
- MASShortcutViewAppearanceDefault = 0, // Height = 19 px
- MASShortcutViewAppearanceTexturedRect, // Height = 25 px
- MASShortcutViewAppearanceRounded, // Height = 43 px
- MASShortcutViewAppearanceFlat
-} 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;
-
-/// Returns custom class for drawing control.
-+ (Class)shortcutCellClass;
-
-@end