//
|
// Copyright © 2020 dahua. All rights reserved.
|
//
|
|
#import "LCLivePreviewPresenter.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface LCLivePreviewPresenter (Control)
|
|
/**
|
获取中间控制视图的子模块
|
|
@return 子模块列表
|
*/
|
-(NSMutableArray *)getMiddleControlItems;
|
|
/**
|
获取底部控制视图的子模块
|
|
@return 子模块列表
|
*/
|
-(NSMutableArray *)getBottomControlItems;
|
|
//全屏
|
- (void)onFullScreen:(LCButton *)btn;
|
|
//点击音频
|
- (void)onAudio:(LCButton *)btn;
|
|
//点击对讲
|
- (void)onAudioTalk:(LCButton *)btn;
|
|
//点击对讲
|
- (void)onPlay:(nullable LCButton *)btn;
|
|
//点击云台
|
- (void)onPtz:(LCButton *)btn;
|
|
//点击抓图
|
- (void)onSnap:(LCButton *)btn;
|
|
//点击录制
|
- (void)onRecording:(LCButton *)btn;
|
|
//点击清晰度
|
- (void)onQuality:(LCButton *)btn;
|
|
- (void)stopPlay;
|
|
- (void)startPlay;
|
|
/**
|
点击锁定全屏
|
*/
|
-(void)onLockFullScreen:(LCButton *)btn;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|