X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/b28cde9af5f0de2466cb62fa8e43c60fc58bf948..fb67a5518acfe2abf1f426ec7cf7b9a80ff74dc3:/ITMTRemote.m diff --git a/ITMTRemote.m b/ITMTRemote.m index 9a4cab8..80cccb7 100755 --- a/ITMTRemote.m +++ b/ITMTRemote.m @@ -1,6 +1,5 @@ #import "ITMTRemote.h" - @implementation ITMTRemote + (id)remote @@ -8,17 +7,17 @@ return nil; } -- (NSString *)title +- (NSString *)remoteTitle { return nil; } -- (NSString *)information; +- (NSString *)remoteInformation { return nil; } -- (NSImage *)icon +- (NSImage *)remoteIcon { return nil; } @@ -33,22 +32,59 @@ return NO; } -- (NSArray *)sources +- (NSString *)playerFullName +{ + return nil; +} + +- (NSString *)playerSimpleName +{ + return nil; +} + +- (NSDictionary *)capabilities +{ + return [NSDictionary dictionaryWithObjectsAndKeys: + [NSNumber numberWithBool: NO], @"Remote", // Set this to YES for a valid remote, otherwise the remote will be unusable. + [NSNumber numberWithBool: NO], @"Basic Track Control", + [NSNumber numberWithBool: NO], @"Track Information", + [NSNumber numberWithBool: NO], @"Track Navigation", + [NSNumber numberWithBool: NO], @"Upcoming Songs", + [NSNumber numberWithBool: NO], @"Playlists", + [NSNumber numberWithBool: NO], @"Volume", + [NSNumber numberWithBool: NO], @"Shuffle", + [NSNumber numberWithBool: NO], @"Repeat Modes", + [NSNumber numberWithBool: NO], @"Equalizer", + [NSNumber numberWithBool: NO], @"Track Rating", + nil]; +} + +- (BOOL)showPrimaryInterface +{ + return NO; +} + +- (ITMTRemotePlayerRunningState)playerRunningState +{ + return nil; +} + +- (ITMTRemotePlayerPlayingState)playerPlayingState { return nil; } -- (int)currentSourceIndex +- (NSArray *)playlists { return nil; } -- (NSString *)sourceTypeOfCurrentPlaylist +- (int)numberOfSongsInPlaylistAtIndex:(int)index { return nil; } -- (NSArray *)playlistsForCurrentSource +- (ITMTRemotePlayerPlaylistClass)classOfPlaylistAtIndex:(int)index { return nil; } @@ -58,7 +94,22 @@ return nil; } -- (NSString *)songTitleAtIndex +- (NSString *)songTitleAtIndex:(int)index +{ + return nil; +} + +- (int)currentAlbumTrackCount +{ + return nil; +} + +- (int)currentSongTrack +{ + return nil; +} + +- (NSString *)currentSongUniqueIdentifier { return nil; } @@ -98,42 +149,92 @@ return nil; } -- (NSArray *)eqPresets; +- (float)currentSongRating { return nil; } -- (BOOL)play +- (BOOL)setCurrentSongRating:(float)rating { return NO; } -- (BOOL)pause +/* - (BOOL)equalizerEnabled { return NO; } -- (BOOL)goToNextSong +- (BOOL)setEqualizerEnabled:(BOOL)enabled { return NO; +} */ + +- (NSArray *)eqPresets +{ + return nil; } -- (BOOL)goToPreviousSong +- (int)currentEQPresetIndex +{ + return nil; +} + +- (float)volume +{ + return nil; +} + +- (BOOL)setVolume:(float)volume +{ + return NO; +} + +- (BOOL)shuffleEnabled +{ + return NO; +} + +- (BOOL)setShuffleEnabled:(BOOL)enabled { return NO; } -- (BOOL)goToNextPlaylist +- (ITMTRemotePlayerRepeatMode)repeatMode +{ + return ITMTRemotePlayerRepeatOff; +} + +- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode { return NO; } -- (BOOL)goToPreviousPlaylist +- (BOOL)play { return NO; } -- (BOOL)switchToSourceAtIndex:(int)index +- (BOOL)pause +{ + return NO; +} + +- (BOOL)goToNextSong +{ + return NO; +} + +- (BOOL)goToPreviousSong +{ + return NO; +} + +- (BOOL)forward +{ + return NO; +} + +- (BOOL)rewind { return NO; } @@ -153,5 +254,4 @@ return NO; } - @end