aboutsummaryrefslogtreecommitdiff
path: root/Hotline/Utility/NSWindowBridge.swift
diff options
context:
space:
mode:
authorDustin Mierau <dustin@mierau.me>2025-11-07 12:44:55 -0800
committerDustin Mierau <dustin@mierau.me>2025-11-07 12:44:55 -0800
commita55318fa8d643160900bec3e6b14e7404c63497a (patch)
treeab6a9eca9a368b35e1490becc70f94ebde6ac271 /Hotline/Utility/NSWindowBridge.swift
parent786a387d58fc66ae20716a9dee46b74dff8e6894 (diff)
Organize Library folder a bit. Update Tracker add/edit sheet design.
Diffstat (limited to 'Hotline/Utility/NSWindowBridge.swift')
-rw-r--r--Hotline/Utility/NSWindowBridge.swift46
1 files changed, 0 insertions, 46 deletions
diff --git a/Hotline/Utility/NSWindowBridge.swift b/Hotline/Utility/NSWindowBridge.swift
deleted file mode 100644
index 8f766d9..0000000
--- a/Hotline/Utility/NSWindowBridge.swift
+++ /dev/null
@@ -1,46 +0,0 @@
-import SwiftUI
-
-fileprivate class NSWindowAccessorView: NSView {
- let executeBlock: (_ window: NSWindow? ) -> ()
-
- init(_ inConfigFunction: @escaping (_ window: NSWindow? ) -> () ) {
- executeBlock = inConfigFunction
- super.init( frame: NSRect() )
- }
-
- required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") }
-
- public override func viewDidMoveToWindow() {
- super.viewDidMoveToWindow()
- executeBlock( self.window ) // We pass it through even if it is nil.
- }
-}
-
-public struct NSWindowAccessor: NSViewRepresentable {
- var configCode: (_ window: NSWindow? ) -> ()
-
- public init(_ configCode: @escaping (_: NSWindow?) -> Void) { self.configCode = configCode }
- public func makeNSView(context: Context) -> NSView { return NSWindowAccessorView( configCode ) }
- public func updateNSView(_ nsView: NSView, context: Context) {}
-}
-
-
-//import SwiftUI
-
- /// A helper view you can embed once per window to run a closure
-/// with the underlying NSWindow reference.
-struct WindowConfigurator: NSViewRepresentable {
- let configure: (NSWindow) -> Void
-
- func makeNSView(context: Context) -> NSView {
- let view = NSView()
- DispatchQueue.main.async {
- if let window = view.window {
- configure(window)
- }
- }
- return view
- }
-
- func updateNSView(_ nsView: NSView, context: Context) { }
-}