X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/a822d608c6739b4c2cd2c39187a78ca461d4d6d4..01de763e5aad722c6e61891f11ba826beea60992:/ITMTRemote.m diff --git a/ITMTRemote.m b/ITMTRemote.m index 5cd7733..8431051 100755 --- a/ITMTRemote.m +++ b/ITMTRemote.m @@ -79,12 +79,37 @@ return nil; } +- (NSArray *)artists +{ + return nil; +} + +- (NSArray *)albums +{ + return nil; +} + +- (int)numberOfSources +{ + return nil; +} + - (int)numberOfSongsInPlaylistAtIndex:(int)index { return nil; } -- (ITMTRemotePlayerPlaylistClass)classOfPlaylistAtIndex:(int)index +- (ITMTRemotePlayerSource)currentSource +{ + return nil; +} + +- (int)currentSourceIndex +{ + return nil; +} + +- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass { return nil; } @@ -99,7 +124,22 @@ return nil; } -- (NSString *)currentSongUniqueIdentifier +- (BOOL)songEnabledAtIndex:(int)index +{ + return nil; +} + +- (int)currentAlbumTrackCount +{ + return nil; +} + +- (int)currentSongTrack +{ + return nil; +} + +- (NSString *)playerStateUniqueIdentifier { return nil; } @@ -119,6 +159,11 @@ return nil; } +- (NSString *)currentSongComposer +{ + return nil; +} + - (NSString *)currentSongAlbum { return nil; @@ -134,11 +179,36 @@ return nil; } +- (int)currentSongPlayed +{ + return -1; +} + +- (int)currentSongDuration +{ + return -1; +} + - (NSString *)currentSongRemaining { return nil; } +- (NSString *)currentSongElapsed +{ + return nil; +} + +- (NSImage *)currentSongAlbumArt +{ + return nil; +} + +- (int)currentSongPlayCount +{ + return nil; +} + - (float)currentSongRating { return nil; @@ -149,6 +219,16 @@ return NO; } +- (BOOL)currentSongShufflable +{ + return NO; +} + +- (BOOL)setCurrentSongShufflable:(BOOL)shufflable +{ + return NO; +} + - (BOOL)equalizerEnabled { return NO; @@ -234,6 +314,11 @@ return NO; } +- (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2 +{ + return NO; +} + - (BOOL)switchToSongAtIndex:(int)index { return NO; @@ -244,4 +329,9 @@ return NO; } +- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type +{ + return NO; +} + @end