KMAnnotationLinkViewController.swift 516 B

12345678910111213141516171819202122
  1. //
  2. // KMAnnotationLinkViewController.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by wanjun on 2023/10/11.
  6. //
  7. import Cocoa
  8. class KMAnnotationLinkViewController: NSViewController {
  9. var annotationMode: CAnnotationType?
  10. @IBOutlet var linkActionLabel: NSTextField!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. // Do view setup here.
  14. linkActionLabel.stringValue = KMLocalizedString("Select an area or text on a page for a link to be inserted.", nil)
  15. }
  16. }