VLCTransportBar.h 1017 B

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. IB_DESIGNABLE @interface VLCTransportBar : UIView
  14. @property (nonatomic) IBInspectable CGFloat bufferStartFraction;
  15. @property (nonatomic) IBInspectable CGFloat bufferEndFraction;
  16. @property (nonatomic) IBInspectable CGFloat playbackFraction;
  17. @property (nonatomic) IBInspectable CGFloat scrubbingFraction;
  18. @property (nonatomic, getter=isScrubbing) IBInspectable BOOL scrubbing;
  19. @property (nonatomic, readonly) UILabel *markerTimeLabel;
  20. @property (nonatomic, readonly) UILabel *remainingTimeLabel;
  21. @end
  22. NS_ASSUME_NONNULL_END