X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/b28cde9af5f0de2466cb62fa8e43c60fc58bf948..01de763e5aad722c6e61891f11ba826beea60992:/ITMTRemote.m diff --git a/ITMTRemote.m b/ITMTRemote.m index 9a4cab8..8431051 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,84 @@ return NO; } -- (NSArray *)sources +- (NSString *)playerFullName { return nil; } -- (int)currentSourceIndex +- (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; } -- (NSString *)sourceTypeOfCurrentPlaylist +- (NSArray *)playlists { return nil; } -- (NSArray *)playlistsForCurrentSource +- (NSArray *)artists +{ + return nil; +} + +- (NSArray *)albums +{ + return nil; +} + +- (int)numberOfSources +{ + return nil; +} + +- (int)numberOfSongsInPlaylistAtIndex:(int)index +{ + return nil; +} + +- (ITMTRemotePlayerSource)currentSource +{ + return nil; +} + +- (int)currentSourceIndex +{ + return nil; +} + +- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass { return nil; } @@ -58,7 +119,27 @@ return nil; } -- (NSString *)songTitleAtIndex +- (NSString *)songTitleAtIndex:(int)index +{ + return nil; +} + +- (BOOL)songEnabledAtIndex:(int)index +{ + return nil; +} + +- (int)currentAlbumTrackCount +{ + return nil; +} + +- (int)currentSongTrack +{ + return nil; +} + +- (NSString *)playerStateUniqueIdentifier { return nil; } @@ -78,6 +159,11 @@ return nil; } +- (NSString *)currentSongComposer +{ + return nil; +} + - (NSString *)currentSongAlbum { return nil; @@ -93,16 +179,106 @@ return nil; } +- (int)currentSongPlayed +{ + return -1; +} + +- (int)currentSongDuration +{ + return -1; +} + - (NSString *)currentSongRemaining { return nil; } -- (NSArray *)eqPresets; +- (NSString *)currentSongElapsed { return nil; } +- (NSImage *)currentSongAlbumArt +{ + return nil; +} + +- (int)currentSongPlayCount +{ + return nil; +} + +- (float)currentSongRating +{ + return nil; +} + +- (BOOL)setCurrentSongRating:(float)rating +{ + return NO; +} + +- (BOOL)currentSongShufflable +{ + return NO; +} + +- (BOOL)setCurrentSongShufflable:(BOOL)shufflable +{ + return NO; +} + +- (BOOL)equalizerEnabled +{ + return NO; +} + +- (BOOL)setEqualizerEnabled:(BOOL)enabled +{ + return NO; +} + +- (NSArray *)eqPresets +{ + return nil; +} + +- (int)currentEQPresetIndex +{ + return nil; +} + +- (float)volume +{ + return nil; +} + +- (BOOL)setVolume:(float)volume +{ + return NO; +} + +- (BOOL)shuffleEnabled +{ + return NO; +} + +- (BOOL)setShuffleEnabled:(BOOL)enabled +{ + return NO; +} + +- (ITMTRemotePlayerRepeatMode)repeatMode +{ + return ITMTRemotePlayerRepeatOff; +} + +- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode +{ + return NO; +} + - (BOOL)play { return NO; @@ -123,22 +299,22 @@ return NO; } -- (BOOL)goToNextPlaylist +- (BOOL)forward { return NO; } -- (BOOL)goToPreviousPlaylist +- (BOOL)rewind { return NO; } -- (BOOL)switchToSourceAtIndex:(int)index +- (BOOL)switchToPlaylistAtIndex:(int)index { return NO; } -- (BOOL)switchToPlaylistAtIndex:(int)index +- (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2 { return NO; } @@ -153,5 +329,9 @@ return NO; } +- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type +{ + return NO; +} @end