VLCFullscreenMovieTVViewController.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. #import "VLCPlaybackController.h"
  13. #import "VLCTransportBar.h"
  14. @interface VLCFullscreenMovieTVViewController : UIViewController <VLCPlaybackControllerDelegate>
  15. @property (readwrite, nonatomic, weak) IBOutlet UIView *movieView;
  16. @property (readwrite, nonatomic, weak) IBOutlet UIView *bottomOverlayView;
  17. @property (readwrite, nonatomic, weak) IBOutlet VLCTransportBar *transportBar;
  18. @property (readwrite, nonatomic, weak) IBOutlet UILabel *titleLabel;
  19. @property (readwrite, nonatomic, weak) IBOutlet UILabel *bufferingLabel;
  20. @property (readwrite, nonatomic, weak) IBOutlet UIActivityIndicatorView *activityIndicator;
  21. @property (readwrite, nonatomic, weak) IBOutlet UIView *dimmingView;
  22. + (instancetype) fullscreenMovieTVViewController;
  23. @end