macOS SDK API Reference
Loading...
Searching...
No Matches
ZoomSDKMeetingUIController.h
Go to the documentation of this file.
2@protocol ZoomSDKMeetingUIControllerDelegate <NSObject>
6- (void)onToolbarInviteButtonClick;
7
12- (void)onClickLeaveMeeting:(unsigned int)participantID;
13
17- (void)onToolbarShareButtonClick;
18
22-(void)onParticipantButtonClicked;
23
27-(void)onCustomLiveButtonClicked;
28
32-(void)onAudioSettingMenuButtonClicked;
33
39-(void)onAudioButtonClicked:(unsigned int)userid audioSession:(ZoomSDKAudioActionInfo)info;
40
44-(void)onBreakoutRoomsButtonClick;
45
49-(void)onCloseCaptionButtonClick;
50@end
51
52@interface ZoomSDKMeetingUIController :NSObject
53{
54 id<ZoomSDKMeetingUIControllerDelegate> _delegate;
55}
56@property(nonatomic, assign) id<ZoomSDKMeetingUIControllerDelegate> delegate;
57
67- (ZoomSDKError)showMeetingComponent:(MeetingComponent)component window:(NSWindow**)window show:(BOOL)show InPanel:(BOOL)inPanel frame:(NSRect)componentFrame;
68
76- (ZoomSDKError)enterFullScreen:(BOOL)fullScreen firstMonitor:(BOOL)firstView DualMonitor:(BOOL)secondView;
81- (ZoomSDKError)switchToVideoWallView;
86- (ZoomSDKError)switchToActiveSpeakerView;
91- (BOOL)isInMiniVideoMode;
92
97- (ZoomSDKError)switchMiniVideoModeUI;
98
103- (ZoomSDKError)switchFloatVideoToMinimizeMode;
108- (ZoomSDKError)switchFloatVideoToWallMode;
113- (ZoomSDKError)switchFloatVideoToActiveSpeakerMode;
118- (ZoomSDKError)switchFloatVideoToGalleryMode;
119
124- (ZoomSDKError)hideOrShowNoVideoUserOnVideoWall:(BOOL)hide;
125
132- (ZoomSDKError)getWallViewPageInfo:(int*)currentPageNum TotalPageNum:(int*)totalPageNum;
133
139- (ZoomSDKError)showPreOrNextPageWallView:(BOOL)nextPage;
140
145- (ZoomSDKError)backToMeeting;
146
151- (BOOL)showVideoPreviewWhenJoinMeeting;
152
158- (ZoomSDKError)isShowVideoPreviewWhenJoinMeeting:(BOOL)isShow;
159
165- (ZoomSDKError)pagingToPreOrNextViewWhenSharing:(BOOL)nextPage;
166
172- (ZoomSDKError)setCustomizedInvitationDomain:(NSString*)invitationDomain;
173
180- (ZoomSDKError)setCustomizedPollingUrl:(NSString*)urlString bCreate:(BOOL)bCreate;
181
187- (ZoomSDKError)setCloudWhiteboardFeedbackUrl:(NSString*)feedbackUrl;
188
193- (void)hideRequestRecordPrivilegeDialog:(BOOL)bHide;
194@end
ZoomSDKAudioActionInfo
Enumerations of Audio action info.
ZoomSDKError
Enumeration of common errors of SDK.
MeetingComponent
In-meeting UI components.
id< ZoomSDKMeetingUIControllerDelegate > _delegate