| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // ZXVideoPlayerControlView.h
- // ZXVideoPlayer
- //
- // Created by Shawn on 16/4/21.
- // Copyright © 2016年 Shawn. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZXVideoPlayerTimeIndicatorView.h"
- #import "ZXVideoPlayerBrightnessView.h"
- #import "ZXVideoPlayerVolumeView.h"
- #import "ZXVideoPlayerBatteryView.h"
- #define kZXPlayerControlViewHideNotification @"ZXPlayerControlViewHideNotification"
- @protocol ZXVideoPlayerControlViewDelegage <NSObject>
- @optional
- - (void)videoPlayerControlViewDidTapped;
- @end
- @interface ZXVideoPlayerControlView : UIView
- @property (nonatomic, assign, readwrite) id<ZXVideoPlayerControlViewDelegage> delegate;
- @property (nonatomic, strong, readonly) UIView *topBar;
- @property (nonatomic, strong, readonly) UIView *bottomBar;
- @property (nonatomic, strong, readonly) UIButton *playButton;
- @property (nonatomic, strong, readonly) UIButton *pauseButton;
- @property (nonatomic, strong, readonly) UIButton *fullScreenButton;
- @property (nonatomic, strong, readonly) UIButton *shrinkScreenButton;
- @property (nonatomic, strong, readonly) UISlider *progressSlider;
- @property (nonatomic, strong, readonly) UILabel *timeLabel;
- @property (nonatomic, strong, readonly) UIActivityIndicatorView *indicatorView;
- @property (nonatomic, assign, readonly) BOOL isBarShowing;
- /// 返回按钮
- @property (nonatomic, strong, readwrite) UIButton *backButton;
- /// 屏幕锁定按钮
- @property (nonatomic, strong, readwrite) UIButton *lockButton;
- /// 缓冲进度条
- @property (nonatomic, strong, readwrite) UIProgressView *bufferProgressView;
- /// 快进、快退指示器
- @property (nonatomic, strong, readwrite) ZXVideoPlayerTimeIndicatorView *timeIndicatorView;
- /// 亮度指示器
- @property (nonatomic, strong, readwrite) ZXVideoPlayerBrightnessView *brightnessIndicatorView;
- /// 音量指示器
- @property (nonatomic, strong, readwrite) ZXVideoPlayerVolumeView *volumeIndicatorView;
- /// 电池条
- @property (nonatomic, strong, readwrite) ZXVideoPlayerBatteryView *batteryView;
- /// 标题
- @property (nonatomic, strong, readwrite) UILabel *titleLabel;
- - (void)animateHide;
- - (void)animateShow;
- - (void)autoFadeOutControlBar;
- - (void)cancelAutoFadeOutControlBar;
- @end
|