X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/8b06c48ba29b681cd97ca543733467e2a6c6cd0a..2d58e7c682543939c0ae261514af569f7ac51fa3:/ITMTRemote.m diff --git a/ITMTRemote.m b/ITMTRemote.m index 3c49e72..d5e0c62 100755 --- a/ITMTRemote.m +++ b/ITMTRemote.m @@ -2,11 +2,6 @@ @implementation ITMTRemote -+ (void)initialize -{ -[self setVersion:2]; -} - + (id)remote { return nil; @@ -69,147 +64,27 @@ 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 +- (ITMTRemotePlayerRunningState)playerRunningState { 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 +- (ITMTRemotePlayerPlayingState)playerPlayingState { 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; -} - -- (BOOL)switchToEqualizerPreset:(int)index -{ - return NO; -} - -- (ITMTRemoteControlState)controlState -{ - return nil; -} - -- (ITMTRemotePlaylistMode)playlistMode +- (NSArray *)playlists { return nil; } -- (NSArray *)playlists +- (int)numberOfSongsInPlaylistAtIndex:(int)index { return nil; } -- (int)numberOfSongsInPlaylistAtIndex:(int)index +- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass { return nil; } @@ -324,12 +199,12 @@ return NO; } -- (ITMTRemoteRepeatMode)repeatMode +- (ITMTRemotePlayerRepeatMode)repeatMode { - return ITMTRemoteRepeatNone; + return ITMTRemotePlayerRepeatOff; } -- (BOOL)setRepeatMode:(ITMTRemoteRepeatMode)repeatMode +- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode { return NO; }