Compiles more
[MenuTunes.git] / ITMTRemote.m
index 36b82eb..fb8e855 100755 (executable)
@@ -1,4 +1,4 @@
-pen#import "ITMTRemote.h"
+#import "ITMTRemote.h"
 
 @implementation ITMTRemote
 
@@ -64,27 +64,147 @@ pen#import "ITMTRemote.h"
     return NO;
 }
 
-- (ITMTRemotePlayerRunningState)playerRunningState
+- (BOOL)showExternalWindow
+{
+    return NO;
+}
+
+- (NSString*)externalWindowName
 {
     return nil;
 }
 
-- (ITMTRemotePlayerPlayingState)playerPlayingState
+- (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;
 }
 
-- (NSArray *)playlists
+- (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;
 }
 
-- (int)numberOfSongsInPlaylistAtIndex:(int)index
+- (NSArray*)playlistNames
 {
     return nil;
 }
 
-- (ITMTRemotePlayerPlaylistClass)classOfPlaylistAtIndex:(int)index
+- (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
+{
+    return nil;
+}
+
+- (NSArray *)playlists
+{
+    return nil;
+}
+
+- (int)numberOfSongsInPlaylistAtIndex:(int)index
 {
     return nil;
 }
@@ -99,6 +219,16 @@ pen#import "ITMTRemote.h"
     return nil;
 }
 
+- (int)currentAlbumTrackCount
+{
+    return nil;
+}
+
+- (int)currentSongTrack
+{
+    return nil;
+}
+
 - (NSString *)currentSongUniqueIdentifier
 {
     return nil;
@@ -149,7 +279,7 @@ pen#import "ITMTRemote.h"
     return NO;
 }
 
-- (BOOL)equalizerEnabled
+/* - (BOOL)equalizerEnabled
 {
     return NO;
 }
@@ -157,7 +287,7 @@ pen#import "ITMTRemote.h"
 - (BOOL)setEqualizerEnabled:(BOOL)enabled
 {
     return NO;
-}
+} */
 
 - (NSArray *)eqPresets
 {
@@ -189,12 +319,12 @@ pen#import "ITMTRemote.h"
     return NO;
 }
 
-- (ITMTRemotePlayerRepeatMode)repeatMode
+- (ITMTRemoteRepeatMode)repeatMode
 {
-    return ITMTRemotePlayerRepeatOff;
+    return ITMTRemoteRepeatNone;
 }
 
-- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode
+- (BOOL)setRepeatMode:(ITMTRemoteRepeatMode)repeatMode
 {
     return NO;
 }