VLCTimeNavigationTitleView.h 888 B

12345678910111213141516171819202122232425
  1. /*****************************************************************************
  2. * VLCTimeNavigationTitleView.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Author: Tobias Conradi <videolan # tobias-conradi.de>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <UIKit/UIKit.h>
  13. @class VLCOBSlider;
  14. @interface VLCTimeNavigationTitleView : UIView
  15. @property (weak, nonatomic) IBOutlet UIButton *minimizePlaybackButton;
  16. @property (weak, nonatomic) IBOutlet VLCOBSlider *positionSlider;
  17. @property (weak, nonatomic) IBOutlet UIButton *timeDisplayButton;
  18. @property (weak, nonatomic) IBOutlet UIButton *aspectRatioButton;
  19. @property (nonatomic) BOOL hideAspectRatio;
  20. @end