VLCMovieViewControlPanelViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*****************************************************************************
  2. * VLCMovieViewControlPanelViewController.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 <MediaPlayer/MediaPlayer.h>
  14. #import "VLCPlaybackController.h"
  15. @interface VLCMovieViewControlPanelViewController : UIViewController
  16. @property (nonatomic, strong) IBOutlet UIButton *playbackSpeedButton;
  17. @property (nonatomic, strong) IBOutlet UIButton *trackSwitcherButton;
  18. @property (nonatomic, strong) IBOutlet UIButton *bwdButton;
  19. @property (nonatomic, strong) IBOutlet UIButton *playPauseButton;
  20. @property (nonatomic, strong) IBOutlet UIButton *fwdButton;
  21. @property (nonatomic, strong) IBOutlet UIButton *videoFilterButton;
  22. @property (nonatomic, strong) IBOutlet UIButton *moreActionsButton;
  23. @property (nonatomic, strong) IBOutlet MPVolumeView *volumeView;
  24. @property (nonatomic, weak) VLCPlaybackController *playbackController;
  25. - (void)updateButtons;
  26. @end