AIHeaderView.swift 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. let controller = AIUserInfoController.init()
  43. controller.purchaseHandle = { vc in
  44. #if VERSION_DMG
  45. // let url = URL(string: AIProduct_Link)
  46. // NSWorkspace.shared.open(url!)
  47. // let embeddedWC = KMPurchaseEmbeddedWindowController.currentFirstTrialWC("com.brother.pdfreaderpro.ai.product_1")
  48. // embeddedWC.showWindow(self)
  49. // embeddedWC.window?.center()
  50. #else
  51. AIPurchaseWindowController.currentWC().showWindow(nil)
  52. #endif
  53. }
  54. controller.enterLicenseHandle = { vc in
  55. let verifyVC = KMVerificationWindowController.verification(with: .activateAIInfo)
  56. verifyVC?.callback = {
  57. KMPurchaseCompareWindowController.sharedInstance().showWindow(nil)
  58. }
  59. verifyVC?.showWindow(nil)
  60. }
  61. controller.guideHandle = {[unowned self] vc in
  62. // if self.guideWindowVC == nil {
  63. // let guideWindowVC = KMFunctionGuideWindowController.init(windowNibName: "KMFunctionGuideWindowController")
  64. // self.guideWindowVC = guideWindowVC
  65. // }
  66. // self.guideWindowVC.type = .functionMulti
  67. // self.guideWindowVC.showWindow(nil)
  68. // KMFunctionGuideWindowController.setDidShowFor(.functionMultiAIGuide)
  69. // self.guideWindowVC.window?.orderFront(nil)
  70. }
  71. let popover = NSPopover.init()
  72. popover.contentViewController = controller
  73. popover.behavior = .transient
  74. popover.show(relativeTo: sender.bounds, of: sender, preferredEdge: .minY)
  75. }
  76. }