-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPiPViewController.h
25 lines (20 loc) · 979 Bytes
/
PiPViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import <UIKit/UIKit.h>
#import "MediaRemote.h"
@interface PGPlaybackProgressIndicator : UIView
@end
@interface PGPictureInPictureControlsViewController : UIViewController
-(void)_stopButtonTapped:(UIButton *)arg1;
-(void)_actionButtonTapped:(UIButton *)arg1;
-(void)_cancelButtonTapped:(UIButton *)arg1;
@end
@interface PiPViewController : UIViewController
@property (strong, nonatomic) UIButton *exitButton;
@property (strong, nonatomic) UIButton *returnToFullscreenButton;
@property (strong, nonatomic) UIView *transportControlsView;
@property (strong, nonatomic) UIButton *playPauseButton;
@property (strong, nonatomic) UIButton *leftSeekButton;
@property (strong, nonatomic) UIButton *rightSeekButton;
-(instancetype)initWithControlsViewController:(PGPictureInPictureControlsViewController *)controlsViewController;
@property (strong, nonatomic) PGPictureInPictureControlsViewController *controlsViewController;
@property (strong, nonatomic) UIView *gradientView;
@end