cog/Preferences/Preferences/HotKeyPane.h

23 lines
582 B
C
Raw Normal View History

2006-09-04 18:06:23 +00:00
//
// HotKeyPane.h
// Preferences
//
// Created by Vincent Spader on 9/4/06.
// Copyright 2006 Vincent Spader. All rights reserved.
2006-09-04 18:06:23 +00:00
//
#import "GeneralPreferencePane.h"
#import <Cocoa/Cocoa.h>
#import <MASShortcut/Shortcut.h>
2006-09-04 18:06:23 +00:00
@interface HotKeyPane : GeneralPreferencePane
2006-09-04 18:06:23 +00: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 21:27:20 +00:00
2006-09-04 18:06:23 +00:00
@end