2006-09-04 14:06:23 -04:00
|
|
|
//
|
|
|
|
// HotKeyPane.h
|
|
|
|
// Preferences
|
|
|
|
//
|
2006-09-04 14:46:18 -04:00
|
|
|
// Created by Vincent Spader on 9/4/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
2006-09-04 14:06:23 -04:00
|
|
|
//
|
|
|
|
|
2009-03-07 22:49:50 -03:00
|
|
|
#import "GeneralPreferencePane.h"
|
2022-02-07 02:49:27 -03:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2021-01-24 23:44:17 -03:00
|
|
|
#import <MASShortcut/Shortcut.h>
|
2006-09-04 14:06:23 -04:00
|
|
|
|
2021-01-24 23:44:17 -03:00
|
|
|
@interface HotKeyPane : GeneralPreferencePane
|
2006-09-04 14:06:23 -04:00
|
|
|
|
2021-01-24 23:44:17 -03:00
|
|
|
@property(strong) IBOutlet MASShortcutView *playShortcutView;
|
|
|
|
@property(strong) IBOutlet MASShortcutView *nextShortcutView;
|
|
|
|
@property(strong) IBOutlet MASShortcutView *prevShortcutView;
|
|
|
|
@property(strong) IBOutlet MASShortcutView *spamShortcutView;
|
|
|
|
|
|
|
|
- (IBAction)resetToDefaultShortcuts:(id)sender;
|
2006-09-10 17:27:20 -04:00
|
|
|
|
2006-09-04 14:06:23 -04:00
|
|
|
@end
|