/***************************************************************************** * WKInterfaceObject+VLCProgress.h * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Author: Tobias Conradi * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import @interface WKInterfaceObject (VLCProgress) - (void)vlc_setProgress:(float)progress; - (void)vlc_setProgress:(float)progress hideForNoProgress:(BOOL)hide; /* time and duration must be in the same timescale but we don't care about the scale*/ - (void)vlc_setProgressFromPlaybackTime:(float)playbackTime duration:(float)duration hideForNoProgess:(BOOL)hide; @end