Cog/Preferences/Preferences/HotKeyPane.h
Christopher Snowhill 85c7073649 Reformat my own source code with clang-format
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-02-06 21:49:27 -08:00

22 lines
582 B
Objective-C

//
// HotKeyPane.h
// Preferences
//
// Created by Vincent Spader on 9/4/06.
// Copyright 2006 Vincent Spader. All rights reserved.
//
#import "GeneralPreferencePane.h"
#import <Cocoa/Cocoa.h>
#import <MASShortcut/Shortcut.h>
@interface HotKeyPane : GeneralPreferencePane
@property(strong) IBOutlet MASShortcutView *playShortcutView;
@property(strong) IBOutlet MASShortcutView *nextShortcutView;
@property(strong) IBOutlet MASShortcutView *prevShortcutView;
@property(strong) IBOutlet MASShortcutView *spamShortcutView;
- (IBAction)resetToDefaultShortcuts:(id)sender;
@end