IBOutlet NSButton *trackInfoButton;
IBOutlet NSButton *trackTimeCheckbox;
IBOutlet NSButton *upcomingSongsButton;
+ IBOutlet NSButton *visualizerButton;
IBOutlet NSButton *volumeDecrementButton;
IBOutlet NSButton *volumeIncrementButton;
IBOutlet NSWindow *window;
NSMutableArray *availableItems;
NSMutableArray *myItems;
NSArray *submenuItems;
-
- KeyCombo *combo;
- KeyCombo *playPauseCombo;
- KeyCombo *nextTrackCombo;
- KeyCombo *prevTrackCombo;
- KeyCombo *trackInfoCombo;
- KeyCombo *upcomingSongsCombo;
- KeyCombo *volumeIncrementCombo;
- KeyCombo *volumeDecrementCombo;
- KeyCombo *ratingIncrementCombo;
- KeyCombo *ratingDecrementCombo;
- KeyCombo *toggleLoopCombo;
- KeyCombo *toggleShuffleCombo;
- NSString *setHotKey;
+ KeyCombo *combo;
+ NSString *currentHotKey;
+ NSMutableDictionary *hotKeysDictionary;
}
+ (PreferencesController *)sharedPrefs;
- (IBAction)clearHotKey:(id)sender;
- (IBAction)okHotKey:(id)sender;
-- (void)setHotKey:(NSString *)key;
+- (void)setCurrentHotKey:(NSString *)key;
- (void)setKeyCombo:(KeyCombo *)newCombo;
@end