X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/8c2086efaf1ee7419fc91275fdc7426de3fbe7fd..26e7dbbdfdddcb98beb83c19a83b8e35416821ff:/ITMTRemote.h diff --git a/ITMTRemote.h b/ITMTRemote.h index 735e11e..b20eaee 100755 --- a/ITMTRemote.h +++ b/ITMTRemote.h @@ -28,7 +28,13 @@ #import -typedef enum {stopped = -1, paused, playing, rewinding, forwarding} PlayerState; +typedef enum { + stopped = -1, + paused, + playing, + rewinding, + forwarding +} PlayerState; /*! @protocol ITMTRemote * @abstract Declares what a MenuTunes Remote must be able to do. @@ -50,7 +56,7 @@ typedef enum {stopped = -1, paused, playing, rewinding, forwarding} PlayerState; + (id)remote; /*! @method title: - * @abstract Returns an autoreleased instance of the remote. + * @abstract Returns the title of the plugin, which should be player name. * @result An NSString containing the title. */ - (NSString *)title; @@ -79,6 +85,7 @@ typedef enum {stopped = -1, paused, playing, rewinding, forwarding} PlayerState; */ - (BOOL)halt; +- (BOOL)isAppRunning; - (PlayerState)playerState; - (NSArray *)playlists; @@ -96,6 +103,9 @@ typedef enum {stopped = -1, paused, playing, rewinding, forwarding} PlayerState; - (NSString *)currentSongLength; - (NSString *)currentSongRemaining; +- (int)currentSongRating; +- (BOOL)setCurrentSongRating:(int)rating; + - (NSArray *)eqPresets; - (int)currentEQPresetIndex;