Cog/Preferences/Preferences/HotKeyPane.h
Christopher Snowhill d19c2f1e95 Cleanup: Remove unused code
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2025-03-07 04:38:04 -08:00

23 lines
726 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;
@property(strong) IBOutlet MASShortcutView *fadeShortcutView;
@property(strong) IBOutlet MASShortcutView *seekBkwdShortcutView;
@property(strong) IBOutlet MASShortcutView *seekFwdShortcutView;
@end