69 lines
2.6 KiB
Swift
69 lines
2.6 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2024-2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
enum WindowManagerWindowType: Hashable, Codable {
|
|
case room(roomID: String)
|
|
case settings
|
|
}
|
|
|
|
protocol SecureWindowManagerDelegate: AnyObject {
|
|
/// The window manager has configured its windows.
|
|
func windowManagerDidConfigureWindows(_ windowManager: SecureWindowManagerProtocol)
|
|
}
|
|
|
|
@MainActor
|
|
protocol SecureWindowManagerProtocol: WindowManagerProtocol {
|
|
var delegate: SecureWindowManagerDelegate? { get set }
|
|
|
|
/// Configures the window manager to operate on the supplied scene.
|
|
func configure(withScene scene: UIWindowScene, session: UISceneSession)
|
|
|
|
func configure(withOpenWinddowAction openWindowAction: OpenWindowAction, dismissWindowAction: DismissWindowAction)
|
|
|
|
func handleRoute(_ appRoute: AppRoute, windowType: WindowManagerWindowType)
|
|
|
|
func windowForType(_ type: WindowManagerWindowType) -> AnyView
|
|
|
|
/// Shows the main and overlay window combo, hiding the alternate window.
|
|
func switchToMain()
|
|
|
|
/// Shows the alternate window, hiding the main and overlay combo.
|
|
func switchToAlternate()
|
|
}
|
|
|
|
/// A window manager that supports switching between a main app window with an overlay and
|
|
/// an alternate window to switch contexts whilst also preserving the main view hierarchy.
|
|
/// Heavily inspired by https://www.fivestars.blog/articles/swiftui-windows/
|
|
protocol WindowManagerProtocol: AnyObject, OrientationManagerProtocol {
|
|
/// The app's main window (we only support a single scene).
|
|
var mainWindow: UIWindow! { get }
|
|
/// Presented on top of the main window, to display e.g. user indicators.
|
|
var overlayWindow: UIWindow! { get }
|
|
/// A window layered on top of the main one. Used by the global search function
|
|
var globalSearchWindow: UIWindow! { get }
|
|
/// A secondary window that can be presented instead of the main/overlay window combo.
|
|
var alternateWindow: UIWindow! { get }
|
|
|
|
/// All the windows being managed
|
|
var windows: [UIWindow] { get }
|
|
|
|
func registerCoordinator(_ coordinator: CoordinatorProtocol, flowCoordinator: FlowCoordinatorProtocol?, forWindowType type: WindowManagerWindowType)
|
|
|
|
func closeAllAuxiliaryWindows()
|
|
|
|
/// Makes the global search window key. Used to get automatic text field focus.
|
|
func showGlobalSearch()
|
|
|
|
func hideGlobalSearch()
|
|
}
|
|
|
|
// sourcery: AutoMockable
|
|
extension WindowManagerProtocol { }
|