mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
58 lines
1.5 KiB
Objective-C
58 lines
1.5 KiB
Objective-C
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
extern NSString *const OWSWindowManagerCallDidChangeNotification;
|
|
|
|
extern NSString *const IsScreenBlockActiveDidChangeNotification;
|
|
|
|
// This VC can become first responder
|
|
// when presented to ensure that the input accessory is updated.
|
|
@interface OWSWindowRootViewController : UIViewController
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
const CGFloat OWSWindowManagerCallBannerHeight(void);
|
|
|
|
extern const UIWindowLevel UIWindowLevel_Background;
|
|
|
|
@interface OWSWindowManager : NSObject
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
- (instancetype)initDefault NS_DESIGNATED_INITIALIZER;
|
|
|
|
+ (instancetype)sharedManager;
|
|
|
|
- (void)setupWithRootWindow:(UIWindow *)rootWindow screenBlockingWindow:(UIWindow *)screenBlockingWindow;
|
|
|
|
@property (nonatomic, readonly) UIWindow *rootWindow;
|
|
@property (nonatomic, readonly) UIWindow *menuActionsWindow;
|
|
@property (nonatomic) BOOL isScreenBlockActive;
|
|
|
|
- (BOOL)isAppWindow:(UIWindow *)window;
|
|
|
|
#pragma mark - Message Actions
|
|
|
|
@property (nonatomic, readonly) BOOL isPresentingMenuActions;
|
|
|
|
- (void)showMenuActionsWindow:(UIViewController *)menuActionsViewController;
|
|
- (void)hideMenuActionsWindow;
|
|
|
|
#pragma mark - Calls
|
|
|
|
@property (nonatomic, readonly) BOOL shouldShowCallView;
|
|
|
|
- (void)startCall:(UIViewController *)callViewController;
|
|
- (void)endCall:(UIViewController *)callViewController;
|
|
- (void)leaveCallView;
|
|
- (BOOL)hasCall;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|