VLCFullscreenMovieTVViewController.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 "VLCPlaybackService.h"
  13. #import "VLCTransportBar.h"
  14. @class VLCNetworkImageView;
  15. @interface VLCFullscreenMovieTVViewController : UIViewController <VLCPlaybackServiceDelegate>
  16. @property (readwrite, nonatomic, weak) IBOutlet UIView *movieView;
  17. @property (readwrite, nonatomic, weak) IBOutlet UIView *bottomOverlayView;
  18. @property (readwrite, nonatomic, weak) IBOutlet VLCTransportBar *transportBar;
  19. @property (readwrite, nonatomic, weak) IBOutlet UILabel *titleLabel;
  20. @property (readwrite, nonatomic, weak) IBOutlet UILabel *bufferingLabel;
  21. @property (readwrite, nonatomic, weak) IBOutlet UIActivityIndicatorView *activityIndicator;
  22. @property (readwrite, nonatomic, weak) IBOutlet UIView *dimmingView;
  23. @property (readwrite, nonatomic, weak) IBOutlet UIView *audioView;
  24. @property (readwrite, nonatomic, weak) IBOutlet VLCNetworkImageView *audioLargeBackgroundImageView;
  25. @property (readwrite, nonatomic, weak) IBOutlet UIVisualEffectView *audioVisualEffectView;
  26. @property (readwrite, nonatomic, weak) IBOutlet VLCNetworkImageView *audioArtworkImageView;
  27. @property (readwrite, nonatomic, weak) IBOutlet UILabel *audioTitleLabel;
  28. @property (readwrite, nonatomic, weak) IBOutlet UILabel *audioArtistLabel;
  29. @property (readwrite, nonatomic, weak) IBOutlet UILabel *audioAlbumNameLabel;
  30. @property (readwrite, nonatomic, weak) IBOutlet UITextView *audioDescriptionTextView;
  31. + (instancetype) fullscreenMovieTVViewController;
  32. @end