3 @implementation ITMTRemote
10 - (NSString *)remoteTitle
15 - (NSString *)remoteInformation
20 - (NSImage *)remoteIcon
35 - (NSString *)playerFullName
40 - (NSString *)playerSimpleName
45 - (NSDictionary *)capabilities
47 return [NSDictionary dictionaryWithObjectsAndKeys:
48 [NSNumber numberWithBool: NO], @"Remote", // Set this to YES for a valid remote, otherwise the remote will be unusable.
49 [NSNumber numberWithBool: NO], @"Basic Track Control",
50 [NSNumber numberWithBool: NO], @"Track Information",
51 [NSNumber numberWithBool: NO], @"Track Navigation",
52 [NSNumber numberWithBool: NO], @"Upcoming Songs",
53 [NSNumber numberWithBool: NO], @"Playlists",
54 [NSNumber numberWithBool: NO], @"Volume",
55 [NSNumber numberWithBool: NO], @"Shuffle",
56 [NSNumber numberWithBool: NO], @"Repeat Modes",
57 [NSNumber numberWithBool: NO], @"Equalizer",
58 [NSNumber numberWithBool: NO], @"Track Rating",
62 - (BOOL)showPrimaryInterface
67 - (ITMTRemotePlayerRunningState)playerRunningState
72 - (ITMTRemotePlayerPlayingState)playerPlayingState
77 - (NSArray *)playlists
82 - (int)numberOfSongsInPlaylistAtIndex:(int)index
87 - (ITMTRemotePlayerSource)currentSource
92 - (int)currentSourceIndex
97 - (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
102 - (int)currentPlaylistIndex
107 - (NSString *)songTitleAtIndex:(int)index
112 - (int)currentAlbumTrackCount
117 - (int)currentSongTrack
122 - (NSString *)playerStateUniqueIdentifier
127 - (int)currentSongIndex
132 - (NSString *)currentSongTitle
137 - (NSString *)currentSongArtist
142 - (NSString *)currentSongAlbum
147 - (NSString *)currentSongGenre
152 - (NSString *)currentSongLength
157 - (NSString *)currentSongRemaining
162 - (NSString *)currentSongElapsed
167 - (NSImage *)currentSongAlbumArt
172 - (float)currentSongRating
177 - (BOOL)setCurrentSongRating:(float)rating
182 /* - (BOOL)equalizerEnabled
187 - (BOOL)setEqualizerEnabled:(BOOL)enabled
192 - (NSArray *)eqPresets
197 - (int)currentEQPresetIndex
207 - (BOOL)setVolume:(float)volume
212 - (BOOL)shuffleEnabled
217 - (BOOL)setShuffleEnabled:(BOOL)enabled
222 - (ITMTRemotePlayerRepeatMode)repeatMode
224 return ITMTRemotePlayerRepeatOff;
227 - (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode
247 - (BOOL)goToPreviousSong
262 - (BOOL)switchToPlaylistAtIndex:(int)index
267 - (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2
272 - (BOOL)switchToSongAtIndex:(int)index
277 - (BOOL)switchToEQAtIndex:(int)index