WKInterfaceObject+VLCProgress.h 872 B

1234567891011121314151617181920212223
  1. /*****************************************************************************
  2. * WKInterfaceObject+VLCProgress.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Author: Tobias Conradi <videolan # tobias-conradi.de>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <WatchKit/WatchKit.h>
  13. @interface WKInterfaceObject (VLCProgress)
  14. - (void)vlc_setProgress:(float)progress;
  15. - (void)vlc_setProgress:(float)progress hideForNoProgress:(BOOL)hide;
  16. /* time and duration must be in the same timescale but we don't care about the scale*/
  17. - (void)vlc_setProgressFromPlaybackTime:(float)playbackTime duration:(float)duration hideForNoProgess:(BOOL)hide;
  18. @end