KMCompareSaveWindow.swift 619 B

12345678910111213141516171819202122232425
  1. //
  2. // KMCompareSaveWindow.swift
  3. // PDF Master
  4. //
  5. // Created by lizhe on 2023/11/22.
  6. //
  7. import Cocoa
  8. class KMCompareSaveWindow: NSWindowController {
  9. @IBOutlet weak var saveView: KMCompareSaveView!
  10. var fileSaveFolderPath = ""
  11. var cancelHandle:((_ controller: KMCompareSaveWindow) -> Void)?
  12. var saveHandle:((_ controller: KMCompareSaveWindow, _ saveType: Int) -> Void)?
  13. override func windowDidLoad() {
  14. super.windowDidLoad()
  15. // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
  16. }
  17. }