X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/d0b1fa0c62ff0b511b3a4dc2bf77bf311f2eed94..d9ea951aa04106a979f9645cd996c9f297fef733:/PreferencesController.h diff --git a/PreferencesController.h b/PreferencesController.h index a593abb..761a518 100755 --- a/PreferencesController.h +++ b/PreferencesController.h @@ -14,7 +14,7 @@ #import -@class MainController, KeyCombo; +@class MainController, ITKeyCombo; @interface PreferencesController : NSObject { @@ -24,6 +24,7 @@ IBOutlet NSTextField *keyComboField; IBOutlet NSPanel *keyComboPanel; IBOutlet NSButton *launchAtLoginCheckbox; + IBOutlet NSButton *launchPlayerAtLaunchCheckbox; IBOutlet NSTableView *menuTableView; IBOutlet NSButton *nameCheckbox; IBOutlet NSButton *nextTrackButton; @@ -35,9 +36,10 @@ IBOutlet NSButton *toggleLoopButton; IBOutlet NSButton *toggleShuffleButton; IBOutlet NSButton *trackInfoButton; + IBOutlet NSButton *trackNumberCheckbox; IBOutlet NSButton *trackTimeCheckbox; IBOutlet NSButton *upcomingSongsButton; - IBOutlet NSButton *visualizerButton; + IBOutlet NSButton *showPlayerButton; IBOutlet NSButton *volumeDecrementButton; IBOutlet NSButton *volumeIncrementButton; IBOutlet NSWindow *window; @@ -47,22 +49,10 @@ NSMutableArray *availableItems; NSMutableArray *myItems; NSArray *submenuItems; - - KeyCombo *combo; - KeyCombo *playPauseCombo; - KeyCombo *nextTrackCombo; - KeyCombo *prevTrackCombo; - KeyCombo *visualizerCombo; - KeyCombo *trackInfoCombo; - KeyCombo *upcomingSongsCombo; - KeyCombo *volumeIncrementCombo; - KeyCombo *volumeDecrementCombo; - KeyCombo *ratingIncrementCombo; - KeyCombo *ratingDecrementCombo; - KeyCombo *toggleLoopCombo; - KeyCombo *toggleShuffleCombo; - NSString *setHotKey; + ITKeyCombo *combo; + NSString *currentHotKey; + NSMutableDictionary *hotKeysDictionary; } + (PreferencesController *)sharedPrefs; @@ -82,6 +72,6 @@ - (IBAction)clearHotKey:(id)sender; - (IBAction)okHotKey:(id)sender; -- (void)setHotKey:(NSString *)key; -- (void)setKeyCombo:(KeyCombo *)newCombo; +- (void)setCurrentHotKey:(NSString *)key; +- (void)setKeyCombo:(ITKeyCombo *)newCombo; @end