/***************************************************************************** * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Tobias Conradi * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, VLCTransportBarHint) { VLCTransportBarHintNone, VLCTransportBarHintScanForward, VLCTransportBarHintJumpForward10, VLCTransportBarHintJumpBackward10, }; IB_DESIGNABLE @interface VLCTransportBar : UIView @property (nonatomic) IBInspectable CGFloat bufferStartFraction; @property (nonatomic) IBInspectable CGFloat bufferEndFraction; @property (nonatomic) IBInspectable CGFloat playbackFraction; @property (nonatomic) IBInspectable CGFloat scrubbingFraction; @property (nonatomic, getter=isScrubbing) IBInspectable BOOL scrubbing; @property (nonatomic, readonly) UILabel *markerTimeLabel; @property (nonatomic, readonly) UILabel *remainingTimeLabel; @property (nonatomic) VLCTransportBarHint hint; @end NS_ASSUME_NONNULL_END