AIHeaderView.swift 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. //
  2. // AIHeaderView.swift
  3. // PDF Reader Pro Edition
  4. //
  5. // Created by Niehaoyu on 2024/4/17.
  6. //
  7. import Cocoa
  8. class AIHeaderView: NSView, NibLoadable {
  9. @IBOutlet weak var contendView: NSView!
  10. @IBOutlet weak var titleLabel: NSTextField!
  11. @IBOutlet weak var seplineView: NSView!
  12. @IBOutlet weak var myCreditLabel: NSTextField!
  13. var guideWindowVC: KMFunctionGuideWindowController!
  14. override func draw(_ dirtyRect: NSRect) {
  15. super.draw(dirtyRect)
  16. // Drawing code here.
  17. }
  18. override func awakeFromNib() {
  19. super.awakeFromNib()
  20. self.titleLabel.font = NSFont.SFProTextSemiboldFont(14)
  21. self.myCreditLabel.font = NSFont.SFProTextSemiboldFont(11)
  22. self.titleLabel.stringValue = NSLocalizedString("AI Tools Title", comment: "")
  23. self.myCreditLabel.stringValue = NSLocalizedString("My AI Credit", comment: "")
  24. self.seplineView.wantsLayer = true
  25. self.refreshViewColor()
  26. }
  27. func refreshViewColor() {
  28. if KMAppearance.isDarkMode() {
  29. self.titleLabel.textColor = KMAppearance.KMColor_Layout_W0()
  30. self.myCreditLabel.textColor = NSColor.white
  31. self.seplineView.layer?.backgroundColor = NSColor.white.withAlphaComponent(0.1).cgColor
  32. } else {
  33. self.titleLabel.textColor = KMAppearance.KMColor_Layout_M()
  34. self.myCreditLabel.textColor = NSColor.white
  35. self.seplineView.layer?.backgroundColor = NSColor.black.withAlphaComponent(0.05).cgColor
  36. }
  37. }
  38. //MARK: IBAction
  39. @IBAction func creditInfoAction(_ sender: NSButton) {
  40. AIInfoManager.default().fetchAIInfo { dict, error in
  41. }
  42. KMUserInfoVCModel().refreshUserInfo { success, msg in
  43. NotificationCenter.default.post(name: NSNotification.Name(rawValue: kDeviceAIStatusChangeNotification), object: nil)
  44. }
  45. let controller = AIUserInfoController.init()
  46. controller.purchaseHandle = { vc in
  47. #if VERSION_DMG
  48. // let url = URL(string: AIProduct_Link)
  49. // NSWorkspace.shared.open(url!)
  50. let embeddedWC = KMPurchaseEmbeddedWindowController.currentFirstTrialWC("com.brother.pdfreaderpro.ai.product_1")
  51. embeddedWC.showWindow(self)
  52. embeddedWC.window?.center()
  53. #else
  54. AIPurchaseWindowController.currentWC().showWindow(nil)
  55. #endif
  56. }
  57. controller.enterLicenseHandle = { vc in
  58. let verifyVC = KMVerificationWindowController.verification(with: .activateAIInfo)
  59. verifyVC?.callback = {
  60. KMProductCompareWC.shared.orientation = false
  61. KMProductCompareWC.shared.showWindow(nil)
  62. }
  63. verifyVC?.showWindow(nil)
  64. }
  65. controller.guideHandle = {[weak self] vc in
  66. if self?.guideWindowVC == nil {
  67. let guideWindowVC = KMFunctionGuideWindowController.init(windowNibName: "KMFunctionGuideWindowController")
  68. self?.guideWindowVC = guideWindowVC
  69. }
  70. self?.guideWindowVC.type = .functionMulti
  71. self?.guideWindowVC.showWindow(nil)
  72. KMFunctionGuideWindowController.setDidShowFor(.functionMultiAIGuide)
  73. self?.guideWindowVC.window?.orderFront(nil)
  74. }
  75. let popover = NSPopover.init()
  76. popover.contentViewController = controller
  77. popover.behavior = .transient
  78. popover.show(relativeTo: sender.bounds, of: sender, preferredEdge: .minY)
  79. }
  80. }