:( It got the best of me... Removing NSLog I had for testing
[MenuTunes.git] / ITMTRemote.m
index fb8e855..8cb5178 100755 (executable)
     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;
+- (ITMTRemotePlayerRunningState)playerRunningState
 {
     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
+- (ITMTRemotePlayerPlayingState)playerPlayingState
 {
     return nil;
 }
 
-- (BOOL)switchToEqualizerPreset:(int)index
-{
-    return NO;
-}
-
-- (ITMTRemoteControlState)controlState
+- (NSArray *)playlists
 {
     return nil;
 }
 
-- (ITMTRemotePlaylistMode)playlistMode
+- (int)numberOfSongsInPlaylistAtIndex:(int)index
 {
     return nil;
 }
 
-- (NSArray *)playlists
+- (ITMTRemotePlayerSource)currentSource
 {
     return nil;
 }
 
-- (int)numberOfSongsInPlaylistAtIndex:(int)index
+- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
 {
     return nil;
 }
     return nil;
 }
 
-- (NSString *)currentSongUniqueIdentifier
+- (NSString *)playerStateUniqueIdentifier
 {
     return nil;
 }
     return nil;
 }
 
+- (NSString *)currentSongElapsed
+{
+    return nil;
+}
+
 - (float)currentSongRating
 {
     return nil;
     return NO;
 }
 
-- (ITMTRemoteRepeatMode)repeatMode
+- (ITMTRemotePlayerRepeatMode)repeatMode
 {
-    return ITMTRemoteRepeatNone;
+    return ITMTRemotePlayerRepeatOff;
 }
 
-- (BOOL)setRepeatMode:(ITMTRemoteRepeatMode)repeatMode
+- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode
 {
     return NO;
 }