cog/Preferences/General/HotKeyPane.h

23 lines
500 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 <Cocoa/Cocoa.h>
#import "GeneralPreferencePane.h"
2006-09-10 21:27:20 +00:00
#import "HotKeyControl.h"
2006-09-04 18:06:23 +00:00
@interface HotKeyPane : GeneralPreferencePane {
2006-09-10 21:27:20 +00:00
IBOutlet HotKeyControl *playHotKeyControl;
IBOutlet HotKeyControl *prevHotKeyControl;
IBOutlet HotKeyControl *nextHotKeyControl;
IBOutlet HotKeyControl *spamHotKeyControl;
2006-09-04 18:06:23 +00:00
}
2006-09-10 21:27:20 +00:00
- (IBAction) hotKeyChanged:(id)sender;
2006-09-04 18:06:23 +00:00
@end