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
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-03-07 22:49:50 -03:00
|
|
|
#import "GeneralPreferencePane.h"
|
2006-09-10 17:27:20 -04:00
|
|
|
#import "HotKeyControl.h"
|
2006-09-04 14:06:23 -04:00
|
|
|
|
2009-03-07 22:49:50 -03:00
|
|
|
@interface HotKeyPane : GeneralPreferencePane {
|
2006-09-10 17:27:20 -04:00
|
|
|
IBOutlet HotKeyControl *playHotKeyControl;
|
|
|
|
IBOutlet HotKeyControl *prevHotKeyControl;
|
|
|
|
IBOutlet HotKeyControl *nextHotKeyControl;
|
2006-09-04 14:06:23 -04:00
|
|
|
}
|
|
|
|
|
2006-09-10 17:27:20 -04:00
|
|
|
- (IBAction) grabPlayHotKey:(id)sender;
|
|
|
|
- (IBAction) grabPrevHotKey:(id)sender;
|
|
|
|
- (IBAction) grabNextHotKey:(id)sender;
|
|
|
|
|
|
|
|
- (IBAction) hotKeyChanged:(id)sender;
|
|
|
|
|
2006-09-04 14:06:23 -04:00
|
|
|
@end
|