cog/Preferences/General/HotKeyPane.h

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