X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/31ab86a87f78edfdd32810db1ff708ca8f5eaaca..8b06c48ba29b681cd97ca543733467e2a6c6cd0a:/ITMTRemote.m?ds=inline diff --git a/ITMTRemote.m b/ITMTRemote.m index f232224..3c49e72 100755 --- a/ITMTRemote.m +++ b/ITMTRemote.m @@ -1,24 +1,28 @@ #import "ITMTRemote.h" - @implementation ITMTRemote ++ (void)initialize +{ +[self setVersion:2]; +} + + (id)remote { return nil; } -- (NSString *)title +- (NSString *)remoteTitle { return nil; } -- (NSString *)information; +- (NSString *)remoteInformation { return nil; } -- (NSImage *)icon +- (NSImage *)remoteIcon { return nil; } @@ -33,17 +37,179 @@ 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; +} + +- (BOOL)showExternalWindow +{ + return NO; +} + +- (NSString*)externalWindowName +{ + return nil; +} + +- (BOOL)setShuffle:(BOOL)toggle +{ + return NO; +} + +- (BOOL)supportsVolume +{ + return NO; +} + +- (BOOL)supportsShuffle +{ + return NO; +} + +- (BOOL)shuffle +{ + return NO; +} + +- (BOOL)setTrackProperty:(ITMTRemoteTrackProperty)property toValue:(id)value atIndex:(int)index +{ + return NO; +} + +- (id)trackProperty:(ITMTRemoteTrackProperty)property atIndex:(int)index +{ + return nil; +} + +- (BOOL)supportsTrackProperty:(ITMTRemoteTrackProperty)property +{ + return NO; +} + +- (BOOL)supportsRepeatMode:(ITMTRemoteRepeatMode)repeatMode +{ + return NO; +} + +- (BOOL)sendControlAction:(ITMTRemoteControlAction)action +{ + return NO; +} + +- (BOOL)supportsControlAction:(ITMTRemoteControlAction)action +{ + return NO; +} + +- (int)indexForTrack:(int)identifier inPlaylist:(int)playlistIndex +{ + return 0; +} + +- (NSImage*)icon +{ + return nil; +} + +- (NSArray*)playlistNames +{ + return nil; +} + +- (NSString*)informationString:(ITMTRemoteInformationString)string; +{ + return nil; +} + +- (BOOL)switchToPlaylist:(int)playlistIndex +{ + return 0; +} + +- (BOOL)switchToTrackAtIndex:(int)index +{ + return 0; +} + +- (int)identifierForTrackAtIndex:(int)index inPlaylist:(int)playlistIndex +{ + return 0; +} + +- (BOOL)supportsCustomEqualizer +{ + return NO; +} + +- (BOOL)showEqualizerWindow +{ + return NO; +} + +- (BOOL)supportsEqualizerPresets +{ + return NO; +} + +- (BOOL)supportsExternalWindow +{ + return NO; +} + +- (NSArray*)equalizerPresetNames { return nil; } -- (int)currentSourceIndex +- (BOOL)switchToEqualizerPreset:(int)index +{ + return NO; +} + +- (ITMTRemoteControlState)controlState { return nil; } -- (NSArray *)playlistsForCurrentSource +- (ITMTRemotePlaylistMode)playlistMode +{ + return nil; +} + +- (NSArray *)playlists +{ + return nil; +} + +- (int)numberOfSongsInPlaylistAtIndex:(int)index { return nil; } @@ -53,7 +219,22 @@ return nil; } -- (NSString *)songTitleAtIndex +- (NSString *)songTitleAtIndex:(int)index +{ + return nil; +} + +- (int)currentAlbumTrackCount +{ + return nil; +} + +- (int)currentSongTrack +{ + return nil; +} + +- (NSString *)currentSongUniqueIdentifier { return nil; } @@ -93,42 +274,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; +} + +- (ITMTRemoteRepeatMode)repeatMode +{ + return ITMTRemoteRepeatNone; +} + +- (BOOL)setRepeatMode:(ITMTRemoteRepeatMode)repeatMode +{ + return NO; +} + +- (BOOL)play +{ + return NO; +} + +- (BOOL)pause { return NO; } -- (BOOL)goToNextPlaylist +- (BOOL)goToNextSong { return NO; } -- (BOOL)goToPreviousPlaylist +- (BOOL)goToPreviousSong { return NO; } -- (BOOL)switchToSourceAtIndex:(int)index +- (BOOL)forward +{ + return NO; +} + +- (BOOL)rewind { return NO; } @@ -148,5 +379,4 @@ return NO; } - @end