X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/6703bfe7928b4a1e570cbf8617ef79c3185accad..03c0449f8664bc77b4aaa4681732382b8fcee91c:/ITMTRemote.m diff --git a/ITMTRemote.m b/ITMTRemote.m index 780ce4c..d1cac3e 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,14 +32,39 @@ return NO; } -- (int)numberOfPlaylists +- (NSString *)playerFullName +{ + return nil; +} + +- (NSString *)playerSimpleName +{ + return nil; +} + +- (NSDictionary *)capabilities +{ + return nil; +} + +- (ITMTRemotePlayerRunningStatus)playerRunningState +{ + return nil; +} + +- (ITMTRemotePlayerPlayingState)playerPlayingState +{ + return nil; +} + +- (NSArray *)playlists { - return 0; + return nil; } - (int)numberOfSongsInPlaylistAtIndex:(int)index { - return 0; + return nil; } - (NSString *)classOfPlaylistAtIndex:(int)index @@ -93,11 +117,46 @@ return nil; } -- (NSArray *)eqPresets; +- (float)currentSongRating +{ + return nil; +} + +- (BOOL)setCurrentSongRating:(float)rating +{ + 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)play { return NO; @@ -118,6 +177,16 @@ return NO; } +- (BOOL)forward +{ + return NO; +} + +- (BOOL)rewind +{ + return NO; +} + - (BOOL)switchToPlaylistAtIndex:(int)index { return NO; @@ -133,5 +202,4 @@ return NO; } - @end