2017-05-08 15:21:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright @ 2017-present Atlassian Pty Ltd
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2018-05-01 04:43:47 +00:00
|
|
|
#import "InviteController.h"
|
2017-05-08 15:21:30 +00:00
|
|
|
#import "JitsiMeetViewDelegate.h"
|
|
|
|
|
|
|
|
@interface JitsiMeetView : UIView
|
|
|
|
|
2017-09-28 21:25:04 +00:00
|
|
|
@property (copy, nonatomic, nullable) NSURL *defaultURL;
|
2017-08-22 10:40:47 +00:00
|
|
|
|
2018-03-28 00:49:22 +00:00
|
|
|
@property (nonatomic, nullable, weak) id<JitsiMeetViewDelegate> delegate;
|
|
|
|
|
2018-05-07 02:31:38 +00:00
|
|
|
@property (nonatomic, readonly, nonnull) JMInviteController *inviteController;
|
2018-03-28 00:49:22 +00:00
|
|
|
|
2018-02-19 22:52:21 +00:00
|
|
|
@property (nonatomic) BOOL pictureInPictureEnabled;
|
2018-02-01 16:02:07 +00:00
|
|
|
|
2017-06-09 19:09:23 +00:00
|
|
|
@property (nonatomic) BOOL welcomePageEnabled;
|
2017-05-08 15:21:30 +00:00
|
|
|
|
2017-07-03 09:37:37 +00:00
|
|
|
+ (BOOL)application:(UIApplication *_Nonnull)application
|
|
|
|
didFinishLaunchingWithOptions:(NSDictionary *_Nonnull)launchOptions;
|
|
|
|
|
2017-06-22 15:32:09 +00:00
|
|
|
+ (BOOL)application:(UIApplication * _Nonnull)application
|
|
|
|
continueUserActivity:(NSUserActivity * _Nonnull)userActivity
|
|
|
|
restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler;
|
2017-05-08 15:21:30 +00:00
|
|
|
|
2017-06-22 15:32:09 +00:00
|
|
|
+ (BOOL)application:(UIApplication * _Nonnull)application
|
|
|
|
openURL:(NSURL * _Nonnull)URL
|
|
|
|
sourceApplication:(NSString * _Nullable)sourceApplication
|
|
|
|
annotation:(id _Nullable)annotation;
|
2017-05-08 15:21:30 +00:00
|
|
|
|
2017-06-22 15:32:09 +00:00
|
|
|
- (void)loadURL:(NSURL * _Nullable)url;
|
2017-05-08 15:21:30 +00:00
|
|
|
|
2017-07-26 19:27:29 +00:00
|
|
|
- (void)loadURLObject:(NSDictionary * _Nullable)urlObject;
|
|
|
|
|
2017-07-26 00:06:03 +00:00
|
|
|
- (void)loadURLString:(NSString * _Nullable)urlString;
|
|
|
|
|
2017-05-08 15:21:30 +00:00
|
|
|
@end
|