aboutsummaryrefslogtreecommitdiffstats
path: root/MASShortcutView.h
diff options
context:
space:
mode:
authorVadim Shpakovski2012-09-19 13:16:23 +0300
committerVadim Shpakovski2012-09-19 13:16:23 +0300
commitcbc369c71a79f613ffbc3dbad91086f047d3c221 (patch)
treeb02e8d839ba1183aa6d06657e77f5a3e829e033b /MASShortcutView.h
parent4099b62587959708bd02d1c49ec1c8fa39448cf4 (diff)
downloadMASShortcut-cbc369c71a79f613ffbc3dbad91086f047d3c221.tar.bz2
Removes ARC to support 32-bit.
Diffstat (limited to 'MASShortcutView.h')
-rw-r--r--MASShortcutView.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/MASShortcutView.h b/MASShortcutView.h
deleted file mode 100644
index 5259123..0000000
--- a/MASShortcutView.h
+++ /dev/null
@@ -1,17 +0,0 @@
-@class MASShortcut;
-
-typedef enum {
- MASShortcutViewAppearanceDefault = 0, // Height = 19 px
- MASShortcutViewAppearanceTexturedRect, // Height = 25 px
- MASShortcutViewAppearanceRounded // Height = 43 px
-} 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