VLCMovieViewControlPanelView.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*****************************************************************************
  2. * VLCMovieViewControlPanelView.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: 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. #import "VLCVolumeView.h"
  14. #import "VLCFrostedGlasView.h"
  15. @interface VLCMovieViewControlPanelView : VLCFrostedGlasView
  16. @property (nonatomic, strong) UIButton *playbackSpeedButton;
  17. @property (nonatomic, strong) UIButton *trackSwitcherButton;
  18. @property (nonatomic, strong) UIButton *bwdButton;
  19. @property (nonatomic, strong) UIButton *playPauseButton;
  20. @property (nonatomic, strong) UIButton *fwdButton;
  21. @property (nonatomic, strong) UIButton *videoFilterButton;
  22. @property (nonatomic, strong) UIButton *moreActionsButton;
  23. @property (nonatomic, strong) VLCVolumeView *volumeView;
  24. - (void)updateButtons;
  25. @end