]> git.r.bdr.sh - rbdr/captura/blob - Captura/Presentation/Windows/PreferencesWindow.swift
40eac0d319740606cedb60f5dfbfd3104e5808e1
[rbdr/captura] / Captura / Presentation / Windows / PreferencesWindow.swift
1 import Cocoa
2 import SwiftUI
3
4 import Foundation
5
6 class PreferencesWindow: NSWindow {
7
8 init() {
9 super.init(
10 contentRect: NSRect(x: 0, y: 0, width: 600, height: 600),
11 styleMask: [.titled, .closable, .resizable, .fullSizeContentView],
12 backing: .buffered,
13 defer: false)
14 super.center()
15 self.isReleasedWhenClosed = false
16 super.setFrameAutosaveName("Preferences Window")
17 super.contentView = NSHostingView(rootView: PreferencesScreen())
18 super.makeKeyAndOrderFront(nil)
19 }
20 }