-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathITMTRemote.h
executable file
·461 lines (385 loc) · 11.4 KB
/
ITMTRemote.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/*
* MenuTunes
* ITMTRemote.h
*
* Plugin definition for audio player control via MenuTunes.
*
* This header defines the Objective-C protocol which all MenuTunes Remote
* plugins must implement. To build a remote, create a subclass of this
* object, and implement each method in the @protocol below.
*
* Copyright (c) 2002-2003 iThink Software
*
*/
/*!
* @header ITMTRemote
* @discussion This header defines the Objective-C protocol which all MenuTunes Remote plugins must implement. To build a remote, create a subclass of the ITMTRemote object, and implement each method in the ITMTRemote protocol.
*/
#import <Cocoa/Cocoa.h>
/*!
* @enum ITMTRemotePlayerRunningState
* @abstract Possible running states for the remote's player.
* @discussion Used in fuctions that report or take the running state of the remote's player application.
* @constant ITMTRemotePlayerNotRunning The remote's player isn't running.
* @constant ITMTRemotePlayerLaunching The remote's player is starting up, or is running, but not yet accepting remote commands.
* @constant ITMTRemotePlayerRunning The remote's player is running, and as such, is accepting remote commands.
*/
typedef enum {
ITMTRemotePlayerNotRunning = -1,
ITMTRemotePlayerLaunching,
ITMTRemotePlayerRunning
} ITMTRemotePlayerRunningState;
/*!
* @enum ITMTRemotePlayerPlayingState
* @abstract Possible playing states for the remote's player.
* @discussion Used in functions that report or take the playing state of the remote's player application.
* @constant ITMTRemotePlayerStopped The remote's player is stopped.
* @constant ITMTRemotePlayerPaused The remote's player is paused.
* @constant ITMTRemotePlayerPlaying The remote's player is playing.
* @constant ITMTRemotePlayerRewinding The remote's player is rewinding.
* @constant ITMTRemotePlayerForwarding The remote's player is forwarding.
*/
typedef enum {
ITMTRemotePlayerStopped = -1,
ITMTRemotePlayerPaused,
ITMTRemotePlayerPlaying,
ITMTRemotePlayerRewinding,
ITMTRemotePlayerForwarding
} ITMTRemotePlayerPlayingState;
/*!
* @enum ITMTRemotePlayerPlaylistClass
* @abstract Possible playlist classes used by a remote's player
* @discussion Used in functions that report the class of a playlist to MenuTunes. While we borrow the terms/descriptions from iTunes, these should work fine with any other player. If your player doesn't support a given type of playlist, then just return
ITMTRemotePlayerPlaylist.
* @constant ITMTRemotePlayerLibraryPlaylist For players that have one playlist that contains all of a user's music, or for players that don't have the concept of multiple playlists, this is the class for that "Master" list.
* @constant ITMTRemotePlayerPlaylist The generic playlist. Created and maintained by the user.
* @constant ITMTRemotePlayerSmartPlaylist A smart playlist is a playlist who's contents are dynamic, based on a set of criteria or updated by a script. These are usually not edited directly by the user, but instead maintained by the player.
* @constant ITMTRemotePlayerRadioPlaylist This is for when playing tracks off of (online) radio stations.
*/
typedef enum {
ITMTRemotePlayerLibraryPlaylist = -1,
ITMTRemotePlayerPlaylist,
ITMTRemotePlayerSmartPlaylist,
ITMTRemotePlayerRadioPlaylist
} ITMTRemotePlayerPlaylistClass;
typedef enum {
ITMTRemoteLibrarySource = -1,
ITMTRemoteCDSource,
ITMTRemoteRadioSource,
ITMTRemoteiPodSource,
ITMTRemoteGenericDeviceSource,
ITMTRemoteSharedLibrarySource
} ITMTRemotePlayerSource;
/*!
* @enum ITMTRemotePlayerRepeatMode
* @abstract Possible repeat modes for the remote's player.
* @discussion Used in functions that report or set the remote's player's repeat mode.
* @constant ITMTRemotePlayerRepeatOff The player plays all of the songs in a playlist through to the end, and then stops.
* @constant ITMTRemotePlayerRepeatAll The player plays all of the songs in a playlist through to the end, and then starts over again from the beginning.
* @constant ITMTRemotePlayerRepeatOne The player loops playing the selected song.
*/
typedef enum {
ITMTRemotePlayerRepeatOff = -1,
ITMTRemotePlayerRepeatAll,
ITMTRemotePlayerRepeatOne
} ITMTRemotePlayerRepeatMode;
/*!
* @protocol ITMTRemote
* @discussion The Objective-C protocol which all MenuTunes remotes must implement.
*/
@protocol ITMTRemote
/*!
* @method remote
* @abstract Returns an autoreleased instance of the remote.
* @discussion Should be very quick and compact.
*
* EXAMPLE:<br>
* + (id)remote<br>
* {<br>
* return [[[MyRemote alloc] init] autorelease];<br>
* }
*
* @result An instance of the remote.
*/
+ (id)remote;
/*!
* @method remoteTitle
* @abstract Returns the remote's title/name.
* @discussion This title is shown while the user is selecting which remote to use. This is for informational purposes only.
* @result An NSString containing the title/name of the remote.
*/
- (NSString *)remoteTitle;
/*!
* @method remoteInformation
* @abstract Returns the remote's information.
* @discussion Information on the remote that the user will see when selecting which remote to use. The information returned here has no bearing on how the remote works, it's simply here for informing the user.
* @result An NSString containing the information for the remote.
*/
- (NSString *)remoteInformation;
/*!
* @method remoteIcon
* @abstract Returns the remote's icon.
* @discussion This icon is shown while the user is selecting which remote to use. Typically, this is the remote's player's application icon, however it can be anything you like.
* @result An NSImage containing the icon of the remote.
*/
- (NSImage *)remoteIcon;
/*!
* @method begin
* @abstract Sent when the remote should begin operation.
* @result A result code signifying success.
*/
- (BOOL)begin;
/*!
* @method halt
* @abstract Sent when the remote should cease operation.
* @result A result code signifying success.
*/
- (BOOL)halt;
/*!
* @method playerFullName
* @abstract Returns the remote's player's application filename.
* @discussion This string should be the name typically used by the remote's player's application bundle/file. For example, Panic's Audion audio player is known simply as "Audion", however, the application bundle is called "Audion 3" for version 3 of thei
r application. This should return "Audion 3", not simply "Audion". See playerSimpleName.
* @result An NSString containing the remote's player's application filename
*/
- (NSString *)playerFullName;
/*!
* @method playerSimpleName
* @abstract Returns the simplified name of the remote's player.
* @discussion This is the name used in the User Interface for when referring to the remote's player. Continuing the example from the playerFullName method, this method would return simply "Audion", as that is how the player is known.
* @result An NSString containing the simplified name of the remote's player.
*/
- (NSString *)playerSimpleName;
/*!
* @method capabilities
* @abstract Returns a dictionary defining the capabilities of the remote and it's player.
* @discussion Discussion Forthcoming.
* @result An NSDictionary defining the capabilities of the remote and it's player.
*/
- (NSDictionary *)capabilities;
/*!
* @method showPrimaryInterface
*/
- (BOOL)showPrimaryInterface;
/*!
* @method playerRunningState
* @abstract Returns the running state of the remote's player.
* @discussion While most remotes will use only ITMTRemotePlayerNotRunning or ITMTRemotePlayerRunning, we have included support for ITMTRemotePlayerLaunching (see ITMTRemotePlayerRunningState) for remotes that want the most precise control over their play
er's process managment.
* @result An ITMTRemotePlayerRunningState defining the running state of the remote's player.
*/
- (ITMTRemotePlayerRunningState)playerRunningState;
/*!
* @method playerPlayingState
*/
- (ITMTRemotePlayerPlayingState)playerPlayingState;
/*!
* @method playlists
*/
- (NSArray *)playlists;
/*!
* @method artists
*/
- (NSArray *)artists;
/*!
* @method albums
*/
- (NSArray *)albums;
/*!
* @method numberOfSongsInPlaylistAtIndex:
*/
- (int)numberOfSongsInPlaylistAtIndex:(int)index;
/*!
* @method currentSource
*/
- (ITMTRemotePlayerSource)currentSource;
/*!
* @method currentSourceIndex
*/
- (int)currentSourceIndex;
/*!
* @method currentPlaylistClass
*/
- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass;
/*!
* @method currentPlaylistIndex
*/
- (int)currentPlaylistIndex;
/*!
* @method songTitleAtIndex:
*/
- (NSString *)songTitleAtIndex:(int)index;
/*!
* @method songEnabledAtIndex:
*/
- (BOOL)songEnabledAtIndex:(int)index;
/*!
* @method currentAlbumTrackCount:
*/
- (int)currentAlbumTrackCount;
/*!
* @method currentSongTrack:
*/
- (int)currentSongTrack;
/*!
* @method playerStateUniqueIdentifier:
*/
- (NSString *)playerStateUniqueIdentifier;
/*!
* @method currentSongIndex
*/
- (int)currentSongIndex;
/*!
* @method currentSongTitle
*/
- (NSString *)currentSongTitle;
/*!
* @method currentSongArtist
*/
- (NSString *)currentSongArtist;
/*!
* @method currentSongComposer
*/
- (NSString *)currentSongComposer;
/*!
* @method currentSongAlbum
*/
- (NSString *)currentSongAlbum;
/*!
* @method currentSongGenre
*/
- (NSString *)currentSongGenre;
/*!
* @method currentSongLength
*/
- (NSString *)currentSongLength;
/*!
* @method currentSongPlayed
*/
- (int)currentSongPlayed;
/*!
* @method currentSongDuration
*/
- (int)currentSongDuration;
/*!
* @method currentSongRemaining
*/
- (NSString *)currentSongRemaining;
/*!
* @method currentSongElapsed
*/
- (NSString *)currentSongElapsed;
/*!
* @method currentSongAlbumArt
*/
- (NSImage *)currentSongAlbumArt;
/*!
* @method currentSongPlayCount
*/
- (int)currentSongPlayCount;
/*!
* @method currentSongRating
*/
- (float)currentSongRating;
/*!
* @method setCurrentSongRating:
*/
- (BOOL)setCurrentSongRating:(float)rating;
/*!
* @method currentSongShuffable
*/
- (BOOL)currentSongShufflable;
/*!
* @method setCurrentSongShuffable:
*/
- (BOOL)setCurrentSongShufflable:(BOOL)shufflable;
/*!
* @method equalizerEnabled
*/
- (BOOL)equalizerEnabled;
/*!
* @method setEqualizerEnabled:
*/
- (BOOL)setEqualizerEnabled:(BOOL)enabled;
/*!
* @method eqPresets
*/
- (NSArray *)eqPresets;
/*!
* @method currentEQPresetIndex
*/
- (int)currentEQPresetIndex;
/*!
* @method volume
*/
- (float)volume;
/*!
* @method setVolume:
*/
- (BOOL)setVolume:(float)volume;
/*!
* @method shuffleEnabled
*/
- (BOOL)shuffleEnabled;
/*!
* @method setShuffleEnabled:
*/
- (BOOL)setShuffleEnabled:(BOOL)enabled;
/*!
* @method repeatMode
*/
- (ITMTRemotePlayerRepeatMode)repeatMode;
/*!
* @method setRepeatMode:
*/
- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode;
/*!
* @method play
*/
- (BOOL)play;
/*!
* @method pause
*/
- (BOOL)pause;
/*!
* @method goToNextSong
*/
- (BOOL)goToNextSong;
/*!
* @method goToPreviousSong
*/
- (BOOL)goToPreviousSong;
/*!
* @method forward
*/
- (BOOL)forward;
/*!
* @method rewind
*/
- (BOOL)rewind;
/*!
* @method switchToPlaylistAtIndex:
*/
- (BOOL)switchToPlaylistAtIndex:(int)index;
/*!
* @method switchToPlaylistAtIndex:
*/
- (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2;
/*!
* @method switchToSongAtIndex:
*/
- (BOOL)switchToSongAtIndex:(int)index;
/*!
* @method switchToEQAtIndex:
*/
- (BOOL)switchToEQAtIndex:(int)index;
/*!
* @method makePlaylistWithTerm:ofType:
*/
- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type;
@end
/*!
* @class ITMTRemote
*/
@interface ITMTRemote : NSObject <ITMTRemote>
@end