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/Media Players/MPlayer classes/CMPMPPlayer.m

    r1271 r1301  
    168168                        return NO; 
    169169        } 
     170        return NO; 
    170171} 
    171172 
     
    247248        [self sendCommand:MPSeekTenBackwards]; 
    248249} 
     250 
     251- (void)seekSixtyForward 
     252{ 
     253        [self sendCommand:MPSeekSixtyForward]; 
     254} 
     255 
     256- (void)seekSixtyBack 
     257{ 
     258        [self sendCommand:MPSeekTenBackwards]; 
     259} 
     260 
     261- (void)seekSixHundredForward 
     262{ 
     263        [self sendCommand:MPSeek600Forwards]; 
     264} 
     265 
     266- (void)seekSixHundredBackwards 
     267{ 
     268        [self sendCommand:MPSeek600Backwards]; 
     269} 
     270 
     271- (void)nextPlaylistItem 
     272{ 
     273        [self sendCommand:MPNextPlaylistItem]; 
     274} 
     275 
     276- (void)previousePlaylistItem 
     277{ 
     278        [self sendCommand:MPPreviousPlaylistItem]; 
     279} 
     280 
     281- (int)currentKeymap { 
     282    return currentKeymap; 
     283} 
     284 
     285- (void)setCurrentKeymap:(int)value { 
     286    if (currentKeymap != value) { 
     287        currentKeymap = value; 
     288    } 
     289} 
     290 
     291 
    249292 
    250293- (void)initiatePlaybackWithResume:(BOOL *)resume;