OOFullScreenControlsTopBar.h
1 //
2 // OOFullScreenControlsTopBar.h
3 // OoyalaSDK
4 //
5 // Copyright © 2017 Brightcove, Inc. All rights reserved.
6 //
7 
8 #import <UIKit/UIKit.h>
9 #import "OOClosedCaptionsButton.h"
10 #import "OOVideoGravityButton.h"
11 #import "OOProgressSliderView.h"
12 
13 
14 @interface OOFullScreenControlsTopBar : UIView
15 
16 #pragma mark - Public properties
17 
18 @property (nonatomic) UIButton *doneButton;
19 @property (nonatomic) OOProgressSliderView *scrubberSlider;
22 
23 @property (nonatomic) BOOL closedCaptionsButtonShowing;
24 @property (nonatomic) BOOL gravityButtonShowing;
25 @property (nonatomic) BOOL gravityFillShowing;
26 
27 #pragma mark - Public methods
28 
30 
31 
32 @end
A view that can display the the current time, duration, and scrubber.
Definition: OOProgressSliderView.h:17
BOOL gravityFillShowing
Definition: OOFullScreenControlsTopBar.h:25
OOVideoGravityButton * videoGravityButton
Definition: OOFullScreenControlsTopBar.h:21
BOOL gravityButtonShowing
Definition: OOFullScreenControlsTopBar.h:24
BOOL closedCaptionsButtonShowing
Definition: OOFullScreenControlsTopBar.h:23
Definition: OOVideoGravityButton.h:13
Definition: OOFullScreenControlsTopBar.h:14
OOProgressSliderView * scrubberSlider
Definition: OOFullScreenControlsTopBar.h:19
OOClosedCaptionsButton * closedCaptionsButton
Definition: OOFullScreenControlsTopBar.h:20
Definition: OOClosedCaptionsButton.h:13
UIButton * doneButton
Definition: OOFullScreenControlsTopBar.h:18