12345678910111213141516171819202122232425262728293031 |
- /*****************************************************************************
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <UIKit/UIKit.h>
- #import "VLCPlaybackController.h"
- #import "VLCTransportBar.h"
- @interface VLCFullscreenMovieTVViewController : UIViewController <VLCPlaybackControllerDelegate>
- @property (readwrite, nonatomic, weak) IBOutlet UIView *movieView;
- @property (readwrite, nonatomic, weak) IBOutlet UIView *bottomOverlayView;
- @property (readwrite, nonatomic, weak) IBOutlet VLCTransportBar *transportBar;
- @property (readwrite, nonatomic, weak) IBOutlet UILabel *titleLabel;
- @property (readwrite, nonatomic, weak) IBOutlet UILabel *bufferingLabel;
- @property (readwrite, nonatomic, weak) IBOutlet UIActivityIndicatorView *activityIndicator;
- @property (readwrite, nonatomic, weak) IBOutlet UIView *dimmingView;
- + (instancetype) fullscreenMovieTVViewController;
- @end
|