123456789101112131415161718192021222324252627282930313233343536 |
- /*****************************************************************************
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Tobias Conradi <videolan # tobias-conradi.de>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <UIKit/UIKit.h>
- 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
|