// // HotKeyPane.h // Preferences // // Created by Vincent Spader on 9/4/06. // Copyright 2006 Vincent Spader. All rights reserved. // #import #import "PreferencePane.h" #import "HotKeyControl.h" @interface HotKeyPane : PreferencePane { IBOutlet HotKeyControl *playHotKeyControl; IBOutlet HotKeyControl *prevHotKeyControl; IBOutlet HotKeyControl *nextHotKeyControl; } - (IBAction) grabPlayHotKey:(id)sender; - (IBAction) grabPrevHotKey:(id)sender; - (IBAction) grabNextHotKey:(id)sender; - (IBAction) hotKeyChanged:(id)sender; @end