X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/cefefd3e817015f9b8e5708bedc52539cfa88799..0948b4b6166bbee8caefca1278b6551d264068a8:/ITMTRemote.m diff --git a/ITMTRemote.m b/ITMTRemote.m index d2f2ccc..3b4a828 100755 --- a/ITMTRemote.m +++ b/ITMTRemote.m @@ -44,7 +44,24 @@ - (NSDictionary *)capabilities { - return nil; + 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 @@ -62,12 +79,37 @@ return nil; } +- (NSArray *)artists +{ + return nil; +} + +- (NSArray *)albums +{ + return nil; +} + +- (int)numberOfSources +{ + return nil; +} + - (int)numberOfSongsInPlaylistAtIndex:(int)index { return nil; } -- (NSString *)classOfPlaylistAtIndex:(int)index +- (ITMTRemotePlayerSource)currentSource +{ + return nil; +} + +- (int)currentSourceIndex +{ + return nil; +} + +- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass { return nil; } @@ -82,6 +124,21 @@ return nil; } +- (int)currentAlbumTrackCount +{ + return nil; +} + +- (int)currentSongTrack +{ + return nil; +} + +- (NSString *)playerStateUniqueIdentifier +{ + return nil; +} + - (int)currentSongIndex { return nil; @@ -97,6 +154,11 @@ return nil; } +- (NSString *)currentSongComposer +{ + return nil; +} + - (NSString *)currentSongAlbum { return nil; @@ -117,6 +179,21 @@ return nil; } +- (NSString *)currentSongElapsed +{ + return nil; +} + +- (NSImage *)currentSongAlbumArt +{ + return nil; +} + +- (int)currentSongPlayCount +{ + return nil; +} + - (float)currentSongRating { return nil; @@ -212,6 +289,11 @@ return NO; } +- (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2 +{ + return NO; +} + - (BOOL)switchToSongAtIndex:(int)index { return NO; @@ -222,4 +304,9 @@ return NO; } +- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type +{ + return NO; +} + @end