Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

JitsiMeetViewDelegate.h 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright @ 2017-present Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. @protocol JitsiMeetViewDelegate <NSObject>
  17. @optional
  18. /**
  19. * Called when a conference was joined.
  20. *
  21. * The `data` dictionary contains a `url` key with the conference URL.
  22. */
  23. - (void)conferenceJoined:(NSDictionary *)data;
  24. /**
  25. * Called when the active conference ends, be it because of user choice or
  26. * because of a failure.
  27. *
  28. * The `data` dictionary contains an `error` key with the error and a `url` key
  29. * with the conference URL. If the conference finished gracefully no `error`
  30. * key will be present.
  31. */
  32. - (void)conferenceTerminated:(NSDictionary *)data;
  33. /**
  34. * Called before a conference is joined.
  35. *
  36. * The `data` dictionary contains a `url` key with the conference URL.
  37. */
  38. - (void)conferenceWillJoin:(NSDictionary *)data;
  39. /**
  40. * Called when entering Picture-in-Picture is requested by the user. The app
  41. * should now activate its Picture-in-Picture implementation (and resize the
  42. * associated `JitsiMeetView`. The latter will automatically detect its new size
  43. * and adjust its user interface to a variant appropriate for the small size
  44. * ordinarily associated with Picture-in-Picture.)
  45. *
  46. * The `data` dictionary is empty.
  47. */
  48. - (void)enterPictureInPicture:(NSDictionary *)data;
  49. @end