123456789101112131415161718192021222324252627 |
- /*****************************************************************************
- * 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
- 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;
- @end
- NS_ASSUME_NONNULL_END
|