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
92 - (int)numberOfSources
97 - (int)numberOfSongsInPlaylistAtIndex:(int)index
102 - (ITMTRemotePlayerSource)currentSource
107 - (int)currentSourceIndex
112 - (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
117 - (int)currentPlaylistIndex
122 - (NSString *)songTitleAtIndex:(int)index
127 - (BOOL)songEnabledAtIndex:(int)index
132 - (int)currentAlbumTrackCount
137 - (int)currentSongTrack
142 - (NSString *)playerStateUniqueIdentifier
147 - (int)currentSongIndex
152 - (NSString *)currentSongTitle
157 - (NSString *)currentSongArtist
162 - (NSString *)currentSongComposer
167 - (NSString *)currentSongAlbum
172 - (NSString *)currentSongGenre
177 - (NSString *)currentSongLength
182 - (NSString *)currentSongRemaining
187 - (NSString *)currentSongElapsed
192 - (NSImage *)currentSongAlbumArt
197 - (int)currentSongPlayCount
202 - (float)currentSongRating
207 - (BOOL)setCurrentSongRating:(float)rating
212 - (BOOL)currentSongShufflable
217 - (BOOL)setCurrentSongShufflable:(BOOL)shufflable
222 - (BOOL)equalizerEnabled
227 - (BOOL)setEqualizerEnabled:(BOOL)enabled
232 - (NSArray *)eqPresets
237 - (int)currentEQPresetIndex
247 - (BOOL)setVolume:(float)volume
252 - (BOOL)shuffleEnabled
257 - (BOOL)setShuffleEnabled:(BOOL)enabled
262 - (ITMTRemotePlayerRepeatMode)repeatMode
264 return ITMTRemotePlayerRepeatOff;
267 - (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode
287 - (BOOL)goToPreviousSong
302 - (BOOL)switchToPlaylistAtIndex:(int)index
307 - (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2
312 - (BOOL)switchToSongAtIndex:(int)index
317 - (BOOL)switchToEQAtIndex:(int)index
322 - (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type