Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
ZoomSDKMeetingUIController.h
Go to the documentation of this file.
1
2NS_ASSUME_NONNULL_BEGIN
3@protocol ZoomSDKMeetingUIControllerDelegate <NSObject>
7- (void)onToolbarInviteButtonClick;
8
13- (void)onClickLeaveMeeting:(unsigned int)participantID;
14
18- (void)onToolbarShareButtonClick;
19
23- (void)onParticipantButtonClicked;
24
28- (void)onCustomLiveButtonClicked;
29
33- (void)onAudioSettingMenuButtonClicked;
34
40- (void)onAudioButtonClicked:(unsigned int)userid audioSession:(ZoomSDKAudioActionInfo)info;
41
45- (void)onBreakoutRoomsButtonClick;
46
50- (void)onCloseCaptionButtonClick;
51@end
52
53@interface ZoomSDKMeetingUIController :NSObject
54{
55 id<ZoomSDKMeetingUIControllerDelegate> _delegate;
56}
57@property(nonatomic, assign, nullable) id<ZoomSDKMeetingUIControllerDelegate> delegate;
58
68- (ZoomSDKError)showMeetingComponent:(MeetingComponent)component window:(NSWindow*_Nullable*_Nullable)window show:(BOOL)show InPanel:(BOOL)inPanel frame:(NSRect)componentFrame;
69
77- (ZoomSDKError)enterFullScreen:(BOOL)fullScreen firstMonitor:(BOOL)firstView DualMonitor:(BOOL)secondView;
82- (ZoomSDKError)switchToVideoWallView;
87- (ZoomSDKError)switchToActiveSpeakerView;
92- (BOOL)isInMiniVideoMode;
93
98- (ZoomSDKError)switchMiniVideoModeUI;
99
104- (ZoomSDKError)switchFloatVideoToMinimizeMode;
109- (ZoomSDKError)switchFloatVideoToWallMode;
114- (ZoomSDKError)switchFloatVideoToActiveSpeakerMode;
119- (ZoomSDKError)switchFloatVideoToGalleryMode;
120
125- (ZoomSDKError)hideOrShowNoVideoUserOnVideoWall:(BOOL)hide;
126
133- (ZoomSDKError)getWallViewPageInfo:(int*)currentPageNum TotalPageNum:(int*)totalPageNum;
134
140- (ZoomSDKError)showPreOrNextPageWallView:(BOOL)nextPage;
141
146- (ZoomSDKError)backToMeeting;
147
152- (BOOL)showVideoPreviewWhenJoinMeeting;
153
159- (ZoomSDKError)isShowVideoPreviewWhenJoinMeeting:(BOOL)isShow;
160
166- (ZoomSDKError)pagingToPreOrNextViewWhenSharing:(BOOL)nextPage;
167
173- (ZoomSDKError)setCustomizedInvitationDomain:(NSString*)invitationDomain;
174
181- (ZoomSDKError)setCustomizedPollingUrl:(NSString*)urlString bCreate:(BOOL)bCreate;
182
188- (ZoomSDKError)setCloudWhiteboardFeedbackUrl:(NSString*)feedbackUrl;
189
194- (void)hideRequestRecordPrivilegeDialog:(BOOL)bHide;
195@end
196NS_ASSUME_NONNULL_END
ZoomSDKAudioActionInfo
Enumeration of audio button action info.
ZoomSDKError
Enumeration of common errors of SDK.
MeetingComponent
In-meeting UI components.
id< ZoomSDKMeetingUIControllerDelegate > _delegate