1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
//
// MobileRTCMeetingSettings.h
// MobileRTC
//
// Created by Zoom Video Communications on 7/2/15.
// Copyright (c) 2019 Zoom Video Communications, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
/*!
@class MobileRTCMeetingSettings
@brief Set to modify the configurations of the meeting.
*/
@interface MobileRTCMeetingSettings : NSObject
/*!
@brief Show/Hide meeting title in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingTitleHidden;
/*!
@brief Show/Hide meeting password in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingPasswordHidden;
/*!
@brief Show/Hide the END/LEAVE MEETING button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingLeaveHidden;
/*!
@brief Show/Hide AUDIO button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingAudioHidden;
/*!
@brief Show/Hide VIDEO button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingVideoHidden;
/*!
@brief Show/Hide INVITE button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingInviteHidden;
/*!
@brief Show/Hide Chat in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingChatHidden;
/*!
@brief Show/Hide PARTICIPANT button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingParticipantHidden;
/*!
@brief Show/Hide SHARE button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingShareHidden;
/*!
@brief Show/Hide MORE button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL meetingMoreHidden;
/*!
@brief Show/Hide the BAR ON THE TOP of view in the meeting.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL topBarHidden;
/*!
@brief Show/Hide BAR at the bottom of the view in the meeting.
@warning The BAR at the bottom of the view is available on iPhone.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL bottomBarHidden;
/*!
@brief Show/Hide disconnect audio button
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL disconnectAudioHidden;
/*!
@brief Show/Hide record button
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL recordButtonHidden;
/*!
@brief Enable/Disable Kubi Device in the meeting.
@warning The option is available only on iPad if you want to use Kubi device.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL enableKubi;
/*!
@brief Change thumbnail video layout while viewing a share in the meeting.
@warning If you set it to YES, the video of attendees will be placed at right of the Landscape(the device screen is oriented horizontally) or the bottom of Portrait(the device screen is oriented vertically) apart from the shared content, which means the video won't cover the content; if you set to NO, it will show only the video of active speaker and the video will be placed in the bottom right of the screen.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL thumbnailInShare;
/*!
@brief Show/Hide LEAVE MEETING item for the host in the pop up view after click the end/leave meeting button in the meeting bar.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL hostLeaveHidden;
/*!
@brief Show/Hide the hint message in the meeting.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL hintHidden;
/*!
@brief Show/Hide the waiting HUD while starting/joining a meeting.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL waitingHUDHidden;
/*!
@brief Show/Hide "Call in Room System" item in Invite h.323/SIP Room System.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL callinRoomSystemHidden;
/*!
@brief Show/Hide "Call out Room System" item in Invite h.323/SIP Room System.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL calloutRoomSystemHidden;
/*!
@brief Show/Hide "Enter Host Key to Claim Host" item in Menu More.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL claimHostWithHostKeyHidden;
/*!
@brief Show/Hide CLOSE CAPTION in a meeting.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL closeCaptionHidden;
/*!
@brief Show/Hide Q&A button in webinar meeting.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL qaButtonHidden;
/*!
@brief Show/Hide "Promote to Panelist" in webinar meeting.
@warning Only host/co-host can see the option in webinar meeting‘s participants.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL promoteToPanelistHidden;
/*!
@brief Show/Hide "Change to Attendee" in webinar meeting.
@warning Only host/co-host can see the option in webinar meeting‘s participants.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL changeToAttendeeHidden;
/*!
@brief Enable/Disable Proximity Sensors Monitoring in a meeting.
@warning The function only for Zoom UI.
*/
@property (assign, nonatomic) BOOL proximityMonitoringDisable;
/*!
@brief Enable Custom In-Meeting UI in meeting.
*/
@property (assign, nonatomic) BOOL enableCustomMeeting;
/*!
@brief Query if the user joins meeting with audio device.
@return YES means the audio device is automatically connected, otherwise not.
*/
- (BOOL)autoConnectInternetAudio;
/*!
@brief Set to auto-connect the audio when user joins meeting.
@param connected The option value.
*/
- (void)setAutoConnectInternetAudio:(BOOL)connected;
/*!
@brief Query if user's audio is muted when he joins the meeting.
@return YES means muted, otherwise not.
*/
- (BOOL)muteAudioWhenJoinMeeting;
/*!
@brief Set to mute user's audio when he joins the meeting.
@param muted YES means to mute the audio, otherwise not.
*/
- (void)setMuteAudioWhenJoinMeeting:(BOOL)muted;
/*!
@brief Query if user's video is muted when he joins the meeting.
@return YES means muted, otherwise not.
*/
- (BOOL)muteVideoWhenJoinMeeting;
/*!
@brief Set to mute user's video when he joins the meeting.
@param muted YES means to mute the video, otherwise not.
*/
- (void)setMuteVideoWhenJoinMeeting:(BOOL)muted;
/*!
@brief Query Touch up my appearance enable or not
@param muted YES means enable, otherwise not.
*/
- (BOOL)faceBeautyEnabled;
/*!
@brief Set Touch up my appearance enable or not.
@param muted YES means successful, otherwise not.
*/
- (void)setFaceBeautyEnabled:(BOOL)enable;
/*!
@brief Query if driving mode is disabled.
@return YES means muted, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)driveModeDisabled;
/*!
@brief Set to disable the Driving mode in the meeting.
@param disabled YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (void)disableDriveMode:(BOOL)disabled;
/*!
@brief Query if Gallery View is disabled.
@return YES means muted, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)galleryViewDisabled;
/*!
@brief Set to disable the Gallery View in the meeting.
@param disabled YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (void)disableGalleryView:(BOOL)disabled;
/*!
@brief Query if it is disabled to call in.
@return YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)callInDisabled;
/*!
@brief Set to disable the incoming calls.
@param disabled The option value.
@warning The function only for Zoom UI.
*/
- (void)disableCallIn:(BOOL)disabled;
/*!
@brief Query if it is disabled to call out.
@return YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)callOutDisabled;
/*!
@brief Set to disable the outgoing calls.
@param disabled The option value.
@warning The function only for Zoom UI.
*/
- (void)disableCallOut:(BOOL)disabled;
/*!
@brief Query if it is disabled to Minimize Meeting.
@return YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)minimizeMeetingDisabled;
/*!
@brief Set to disable the Minimize Meeting.
@param disabled The option value.
@warning The function only for Zoom UI.
*/
- (void)disableMinimizeMeeting:(BOOL)disabled;
/*!
@brief Query if it is disabled free meeting upgrade tips.
@return YES means disabled, otherwise not.
*/
- (BOOL)freeMeetingUpgradeTipsDisabled;
/*!
@brief Set to disable free meeting upgrade tips.
@param disabled The option value.
*/
- (void)disableFreeMeetingUpgradeTips:(BOOL)disabled;
/*!
@brief Query Meeting setting of speaker off when present meeting.
@return YES means speaker off, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)speakerOffWhenInMeeting;
/*!
@brief Set speaker off. Default value is No, Need set to NO when not used.
@param YES means speaker off, otherwise not.
@warning The function only for Zoom UI.
*/
- (void)setSpeakerOffWhenInMeeting:(BOOL)speakerOff;
/*!
@brief Query show meeting elapse time.
@return YES means show meeting elapse time, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)showMyMeetingElapseTime;
/*!
@brief Enable show meeting elapse time.
@param enable YES means show meeting elapse time, otherwise not.
@warning The function only for Zoom UI.
*/
- (void)enableShowMyMeetingElapseTime:(BOOL)enable;
/*!
@brief Query mic original input enable or not.
@return YES means mic original input enable, otherwise not.
*/
- (BOOL)micOriginalInputEnabled;
/*!
@brief Enable mic original input.
@param enable YES means enable mic original input, otherwise not.
*/
- (void)enableMicOriginalInput:(BOOL)enable;
/*!
@brief Query reactions on MeetingUI is hidden or not.
@warning YES means reactions on MeetingUI is hidden, otherwise not.
*/
- (BOOL)reactionsOnMeetingUIHidden;
/*!
@brief Set the visibility of reaction on meeting UI. Default is displaying.
@param hidden YES means hide reaction emotion.
@warning The function only for Zoom UI.
*/
- (void)hideReactionsOnMeetingUI:(BOOL)hidden;
/*!
@brief Query if it is disabled to show video preview when join meeting.
@return YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)showVideoPreviewWhenJoinMeetingDisabled;
/*!
@brief Set to disable show video preview when join meeting.
@param disabled The option value.
@warning The function only for Zoom UI.
*/
- (void)disableShowVideoPreviewWhenJoinMeeting:(BOOL)disabled;
/*!
@brief Query if it is disabled for virtual background.
@return YES means disabled, otherwise not.
*/
- (BOOL)virtualBackgroundDisabled;
/*!
@brief Set to disable virtual background.
@param disabled The option value.
*/
- (void)disableVirtualBackground:(BOOL)disabled;
/*!
@brief pre populate webinar registration info.
@param email registration email address.
@param username registration username.
*/
- (void)prePopulateWebinarRegistrationInfo:(nonnull NSString *)email username:(nonnull NSString *)username;
/*!
@brief Set to disable confidential watermark.
@param disabled The option value.
@return YES means confidential watermark is disable, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)disableConfidentialWatermark:(BOOL)disable;
/*!
@brief Query if it is disabled for copy meeting url.
@return YES means disabled, otherwise not.
@warning The function only for Zoom UI.
*/
- (BOOL)copyMeetingUrlDisabled;
/*!
@brief Set to disable copy meeting url in the meeting info view.
@param disabled The option value.
@warning The function only for Zoom UI.
*/
- (void)disableCopyMeetingUrl:(BOOL)disabled;
/*!
@brief Set emoji reaction skin tone.
@param skinTone The reaction skin tone.
@warning The function only for Zoom UI.
*/
- (MobileRTCMeetError)setReactionSkinTone:(MobileRTCEmojiReactionSkinTone)skinTone;
/*!
@brief Get reaction skin tone.
@return skinTone for emoji reaction.
@warning The function only for Zoom UI.
*/
- (MobileRTCEmojiReactionSkinTone)reactionSkinTone;
@end