Show
Ignore:
Timestamp:
07/07/10 23:17:04 (23 months ago)
Author:
lechium
Message:

Forgot to check this in a while ago, may need some tweaking but want to add it before any major conflicts arise. added CMPSettings class which isnt used yet, added support for the harmony remote play, pause, ff, rewind buttons

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/CommonMediaPlayer/Classes/CMPATVVersion.h

    r1179 r1301  
    6767} BREventRemoteAction; 
    6868 
     69 
     70typedef enum { 
     71         
     72        /*  
     73         when you program a custom remote there are "playback" buttons that can be programmed, this is to account for those 
     74         12 = skip forward 
     75         13 = skip back 
     76         14 = Pause 
     77         15 = Play 
     78         16 = stop 
     79         17 = ff 
     80         18 = rw 
     81         19 = previous chapter 
     82         20 = next chapter 
     83          
     84         */ 
     85         
     86        kBREventPlaybackActionSkipAhead = 12, 
     87        kBREventPlaybackActionSkipBack, 
     88        kBREventPlaybackActionPause, 
     89        kBREventPlaybackActionPlay, 
     90        kBREventPlaybackActionStop, 
     91        kBREventPlaybackActionFastForward, 
     92        kBREventPlaybackActionRewind, 
     93        kBREventPlaybackActionNextChapter, 
     94        kBREventPlaybackActionPreviousChapter, 
     95         
     96} BREventPlaybackAction; 
     97 
    6998@interface CMPATVVersion : NSObject { 
    7099}