KMLeftSideViewController+Note.swift 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063
  1. //
  2. // KMLeftSideViewController+Note.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by tangchao on 2023/12/23.
  6. //
  7. import Foundation
  8. extension KMLeftSideViewController.Key {
  9. static let noteAscendSortKey = "KMLeftSideViewAscendSortBoolKey"
  10. static let noteSortTypeKey = "KMLeftSideViewNoteSortTypeKey"
  11. static let noteTableColumn = "KMNoteOutlineViewTableColumnKey"
  12. static let noteFilterPage = "kKMNoteFilterAnnotationPageKey"
  13. static let noteFilterTime = "kKMNoteFilterAnnotationTimeKey"
  14. static let noteFilterAuther = "kKMNoteFilterAnnotationAutherKey"
  15. }
  16. // MARK: - Action
  17. extension KMLeftSideViewController {
  18. func note_initSubViews() {
  19. self.noteSearchField.backgroundColor = KMAppearance.Layout.l_1Color()
  20. self.noteSearchField.wantsLayer = true
  21. self.noteSearchField.layer?.backgroundColor = KMAppearance.Layout.l_1Color().cgColor
  22. self.noteSearchField.layer?.borderWidth = 1.0
  23. self.noteMoreButton.target = self
  24. self.noteMoreButton.tag = 304
  25. self.noteMoreButton.action = #selector(leftSideViewMoreButtonAction)
  26. self.moreButtonLayer = KMButtonLayer()
  27. self.noteMoreButton.layer?.addSublayer(self.moreButtonLayer!)
  28. self.moreButtonLayer?.frame = NSMakeRect(0, 0, NSWidth(self.noteMoreButton.bounds), NSHeight(self.noteMoreButton.bounds))
  29. self.noteFilterButton.target = self
  30. self.noteFilterButton.action = #selector(noteFilterAction)
  31. self.filterButtonLayer = NSView()
  32. self.noteFilterButton.addSubview(self.filterButtonLayer!)
  33. self.filterButtonLayer?.frame = NSMakeRect(14, 2, 8, 8)
  34. self.noteDoneButton.action = #selector(leftSideViewDoneButtonAction)
  35. self.noteDoneButton.target = self
  36. self.noteDoneButton.tag = 311
  37. self.noteDoneButton.isHidden = true
  38. self.noteSearchField.delegate = self
  39. self.noteSearchField.isHidden = true
  40. self.noteSearchField.endEditCallBack = { [weak self] isEndEdit in
  41. // if (isEndEdit) {
  42. // self.noteSearchField.isHidden = true
  43. // self.noteSearchButton.isHidden = false
  44. // self.noteTitleLabel.isHidden = false
  45. // }
  46. }
  47. self.sortTypeBox.downCallback = { [unowned self] downEntered, mouseBox, _ in
  48. if (downEntered) {
  49. let menu = NSMenu()
  50. let timeItem = menu.addItem(title: KMLocalizedString("Time", nil), action: #selector(sortTypeAction), target: self)
  51. timeItem?.representedObject = self
  52. timeItem?.tag = 0
  53. let pageItem = menu.addItem(title: KMLocalizedString("Page", nil), action: #selector(sortTypeAction), target: self)
  54. pageItem?.representedObject = self
  55. timeItem?.tag = 1
  56. if (self.noteSortType == .time) {
  57. timeItem?.state = .on
  58. pageItem?.state = .off
  59. } else if (self.noteSortType == .page) {
  60. timeItem?.state = .off
  61. pageItem?.state = .on
  62. }
  63. menu.popUp(positioning: nil, at: NSMakePoint(-10, 0), in: self.sortTypeBox)
  64. }
  65. }
  66. self.noteOutlineView.delegate = self
  67. self.noteOutlineView.dataSource = self
  68. self.noteOutlineView.botaDelegate = self
  69. self.noteOutlineView.botaDataSource = self
  70. self.noteOutlineView.noteDelegate = self
  71. self.noteOutlineView.menu = NSMenu()
  72. self.noteOutlineView.menu?.delegate = self
  73. self.noteOutlineView.typeSelectHelper = SKTypeSelectHelper(matchOption: .SKSubstringMatch)
  74. self.noteOutlineView.registerForDraggedTypes(NSColor.readableTypes(for: NSPasteboard(name: .drag)))
  75. self.noteOutlineView.target = self
  76. self.noteOutlineView.doubleAction = #selector(selectSelectedNote)
  77. }
  78. func note_initDefalutValue() {
  79. self.noteView.wantsLayer = true
  80. self.noteView.layer?.backgroundColor = KMAppearance.Layout.l0Color().cgColor
  81. let sud = UserDefaults.standard
  82. if let dict = sud.dictionary(forKey: Self.Key.noteTableColumn) {
  83. self.noteTypeDict = dict
  84. } else {
  85. self.noteTypeDict = [Self.Key.noteFilterPage : false,
  86. Self.Key.noteFilterTime : false,
  87. Self.Key.noteFilterAuther : false]
  88. sud.sync_setValue(self.noteTypeDict, forKey: Self.Key.noteTableColumn)
  89. }
  90. self.caseInsensitiveNoteSearch = sud.bool(forKey: SKCaseInsensitiveNoteSearchKey)
  91. self.isAscendSort = KMDataManager.ud_bool(forKey: Self.Key.noteAscendSortKey)
  92. self.noteTitleLabel.stringValue = KMLocalizedString("Notes", nil);
  93. self.noteTitleLabel.textColor = KMAppearance.Layout.h0Color()
  94. self.noteSearchField.layer?.borderColor = KMAppearance.Interactive.a0Color().cgColor
  95. self.noteMoreButton.wantsLayer = true
  96. self.moreButtonLayer?.layerType = .none
  97. self.moreButtonLayer?.isHidden = true
  98. self.noteFilterButton.toolTip = KMLocalizedString("Sort", nil)
  99. self.noteFilterButton.wantsLayer = true
  100. self.filterButtonLayer?.isHidden = true
  101. self.filterButtonLayer?.wantsLayer = true
  102. self.filterButtonLayer?.layer?.backgroundColor = KMAppearance.Interactive.a0Color().cgColor
  103. self.filterButtonLayer?.layer?.cornerRadius = 4.0
  104. if (self.isAscendSort) {
  105. self.noteSortButton.image = NSImage(named: KMImageNameBtnSidebarRankReverse)
  106. self.noteSortButton.toolTip = KMLocalizedString("ascending sort", nil)
  107. } else {
  108. self.noteSortButton.image = NSImage(named: KMImageNameBtnSidebarRankPositive)
  109. self.noteSortButton.toolTip = KMLocalizedString("descending sort", nil)
  110. }
  111. self.noteSearchButton.toolTip = KMLocalizedString("Search", nil)
  112. self.noteDoneButton.title = KMLocalizedString("Done", nil)
  113. self.noteDoneButton.toolTip = KMLocalizedString("Done", nil)
  114. self.noteDoneButton.setTitleColor(KMAppearance.Layout.w0Color())
  115. self.noteDoneButton.wantsLayer = true
  116. self.noteDoneButton.layer?.backgroundColor = KMAppearance.Interactive.a0Color().cgColor
  117. self.noteDoneButton.layer?.cornerRadius = 4.0
  118. self.noteHeaderView.wantsLayer = true
  119. self.noteHeaderView.layer?.backgroundColor = KMAppearance.Else.textTagColor().cgColor
  120. self.noteHeaderView.layer?.cornerRadius = 1.0
  121. let sortType = KMDataManager.ud_integer(forKey: Self.Key.noteSortTypeKey)
  122. if (sortType == 1) {
  123. self.noteSortType = KMNoteSortType(rawValue: sortType) ?? .none
  124. if (self.noteSortType == .time) {
  125. self.sortTypeLabel.stringValue = KMLocalizedString("Time", nil)
  126. self.sortTypeBox.toolTip = KMLocalizedString("Time", nil)
  127. } else if (self.noteSortType == .page) {
  128. self.sortTypeLabel.stringValue = KMLocalizedString("Page", nil)
  129. self.sortTypeBox.toolTip = KMLocalizedString("Page", nil)
  130. }
  131. } else {
  132. self.noteSortType = .time
  133. self.sortTypeLabel.stringValue = KMLocalizedString("Time", nil)
  134. }
  135. self.sortTypeLabel.textColor = KMAppearance.Layout.h1Color()
  136. self.noteOutlineView.backgroundColor = KMAppearance.Layout.l0Color()
  137. self.noteOutlineView.autoresizesOutlineColumn = false
  138. self.noteOutlineView.indentationPerLevel = 0
  139. }
  140. func annoListIsShowPage() -> Bool {
  141. return !(self.noteTypeDict[Self.Key.noteFilterPage] as? Bool ?? false)
  142. }
  143. func annoListIsShowTime() -> Bool {
  144. return !(self.noteTypeDict[Self.Key.noteFilterTime] as? Bool ?? false)
  145. }
  146. func annoListIsShowAnther() -> Bool {
  147. return !(self.noteTypeDict[Self.Key.noteFilterAuther] as? Bool ?? false)
  148. }
  149. }
  150. // MARK: - Menu
  151. extension KMLeftSideViewController {
  152. func annoListMenu(_ menu: NSMenu) {
  153. var item: NSMenuItem?
  154. var items: NSArray?
  155. var rowIndexes = self.noteOutlineView.selectedRowIndexes
  156. let row = self.noteOutlineView.clickedRow
  157. if row == -1 {
  158. _ = self._addExportPDFMenu(menu)
  159. _ = self._addDeleteAllAnnoItem(menu)
  160. return
  161. }
  162. if rowIndexes.contains(row) == false {
  163. rowIndexes = IndexSet(integer: row)
  164. }
  165. items = self.noteOutlineView.itemsAtRowIndexes(rowIndexes) as NSArray
  166. guard let model = self.fetchAnnoModel(for: row) else {
  167. return
  168. }
  169. let isFold = model.isFold()
  170. item = menu.addItem(title: KMLocalizedString("Expand", nil), action: #selector(unfoldNoteAction), target: self)
  171. item?.state = isFold ? .off : .on
  172. item?.representedObject = items
  173. item = menu.addItem(title: KMLocalizedString("Collapse", nil), action: #selector(foldNoteAction), target: self)
  174. item?.state = isFold ? .on : .off
  175. item?.representedObject = items
  176. menu.addItem(.separator())
  177. let hideNotes = self.hideNotes()
  178. if hideNotes == false && (items?.count ?? 0) == 1 {
  179. let annotation = self.noteItems(items!).lastObject as? CPDFAnnotation
  180. if let data = annotation?.isEditable(), data {
  181. if annotation?.type == nil {
  182. let isNote = annotation?.isNote() ?? false
  183. if isNote {
  184. // [NSLocalizedString(@"Edit", @"Menu item title") stringByAppendingEllipsis]
  185. item = menu.addItem(title: KMLocalizedString("Edit", "Menu item title"), action: #selector(editNoteTextFromTable), target: self)
  186. item?.representedObject = annotation
  187. }
  188. } else if let data = self.noteOutlineView.tableColumn(withIdentifier: NSUserInterfaceItemIdentifier("note"))?.isHidden, data {
  189. // [NSLocalizedString(@"Edit", @"Menu item title") stringByAppendingEllipsis]
  190. item = menu.addItem(title: KMLocalizedString("Edit", "Menu item title"), action: #selector(editThisAnnotation), target: self)
  191. item?.representedObject = annotation
  192. } else {
  193. item = menu.addItem(title: KMLocalizedString("Edit", "Menu item title"), action: #selector(editNoteFromTable), target: self)
  194. item?.representedObject = annotation
  195. item = menu.addItem(title: KMLocalizedString("Edit", "Menu item title"), action: #selector(editThisAnnotation), target: self)
  196. item?.representedObject = annotation
  197. item?.keyEquivalentModifierMask = [.option]
  198. item?.isAlternate = true
  199. }
  200. }
  201. }
  202. if menu.numberOfItems > 0 {
  203. _ = self._addExportPDFMenu(menu)
  204. menu.addItem(.separator())
  205. if self.outlineView(self.noteOutlineView, canDeleteItems: items as? [Any] ?? []) {
  206. item = menu.addItem(title: KMLocalizedString("Delete", "Menu item title"), action: #selector(deleteNotes), target: self)
  207. item?.representedObject = items
  208. }
  209. _ = self._addDeleteAllAnnoItem(menu)
  210. }
  211. }
  212. private func _addExportPDFMenu(_ menu: NSMenu) -> NSMenu {
  213. var item = menu.addItem(title: NSLocalizedString("Export Annotations…", tableName: "", comment: ""), action: nil, target: self)
  214. let subMenu = NSMenu()
  215. item?.submenu = subMenu
  216. item = subMenu.addItem(title: NSLocalizedString("PDF", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  217. item?.tag = 0
  218. item = subMenu.addItem(title: NSLocalizedString("PDF Bundle", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  219. item?.tag = 1
  220. item = subMenu.addItem(title: NSLocalizedString("PDF Reader Pro Edition Notes", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  221. item?.tag = 2
  222. item = subMenu.addItem(title: NSLocalizedString("Notes as Text", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  223. item?.tag = 3
  224. item = subMenu.addItem(title: NSLocalizedString("Notes as RTF", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  225. item?.tag = 4
  226. item = subMenu.addItem(title: NSLocalizedString("Notes as RTFD", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  227. item?.tag = 5
  228. item = subMenu.addItem(title: NSLocalizedString("Notes as FDF", tableName: "", comment: ""), action: #selector(exportAnnotationNotes), target: self)
  229. item?.tag = 6
  230. return menu
  231. }
  232. private func _addDeleteAllAnnoItem(_ menu: NSMenu) -> NSMenuItem? {
  233. return menu.addItem(title: NSLocalizedString("Remove All Annotations", tableName: "", comment: ""), action: #selector(removeAllAnnotations), target: self)
  234. }
  235. func annoListMoreMenu(_ view: NSButton) {
  236. let menu = NSMenu()
  237. let object = KMPopupMenuObject()
  238. object.menuTag = 1001
  239. menu.delegate = object
  240. object.enterControllerCallback = { [weak self] isEnter in
  241. if (isEnter) {
  242. self?.moreButtonLayer?.isHidden = false
  243. } else {
  244. self?.moreButtonLayer?.isHidden = true
  245. }
  246. }
  247. let expandAllItem = menu.addItem(title: KMLocalizedString("Expand All", nil), action: #selector(note_expandAllComments), target: self)
  248. expandAllItem?.representedObject = self.noteOutlineView
  249. let foldAllItem = menu.addItem(title: KMLocalizedString("Collapse All", nil), action: #selector(note_foldAllComments), target: self)
  250. foldAllItem?.representedObject = self.noteOutlineView
  251. let type = self.annoListModel?.foldType ?? .none
  252. expandAllItem?.state = type == .unfold ? .on : .off
  253. foldAllItem?.state = type == .fold ? .on : .off
  254. let showItem = menu.addItem(title: KMLocalizedString("Show Note", nil), action: nil, target: self)
  255. let subMenu = NSMenu()
  256. let pageItem = subMenu.addItem(title: KMLocalizedString("Page", nil), action: #selector(noteShowNoteAction), target: self)
  257. pageItem?.state = self.annoListIsShowPage() ? .on : .off
  258. pageItem?.representedObject = self.noteOutlineView
  259. pageItem?.tag = 101
  260. let timeItem = subMenu.addItem(title: KMLocalizedString("Time", nil) , action: #selector(noteShowNoteAction), target: self)
  261. timeItem?.state = self.annoListIsShowTime() ? .on : .off
  262. timeItem?.representedObject = self.noteOutlineView
  263. timeItem?.tag = 102
  264. let authorItem = subMenu.addItem(title: KMLocalizedString("Author", nil) , action: #selector(noteShowNoteAction), target: self)
  265. authorItem?.state = self.annoListIsShowAnther() ? .on : .off
  266. authorItem?.representedObject = self.noteOutlineView
  267. authorItem?.tag = 103
  268. showItem?.submenu = subMenu
  269. menu.addItem(.separator())
  270. _ = self._addExportPDFMenu(menu)
  271. menu.addItem(.separator())
  272. _ = self._addDeleteAllAnnoItem(menu)
  273. if let data = NSApp.currentEvent {
  274. NSMenu.popUpContextMenu(menu, with: data, for: view, with: nil)
  275. }
  276. }
  277. func annoListValidateMenuItem(_ menuItem: NSMenuItem) -> Bool {
  278. let action = menuItem.action
  279. if (action == #selector(note_expandAllComments) ||
  280. action == #selector(note_foldAllComments) ||
  281. action == #selector(exportAnnotationNotes) ||
  282. action == #selector(removeAllAnnotations)) {
  283. let cnt = self.annoListModel?.datas.count ?? 0
  284. return cnt > 0
  285. } else if (action == #selector(unfoldNoteAction) ||
  286. action == #selector(foldNoteAction)) {
  287. let row = self.noteOutlineView.clickedRow
  288. let foldNote = self.fetchNote(for: row)
  289. // SKNPDFAnnotationNote
  290. if foldNote is CPDFMarkupAnnotation || foldNote is CPDFTextAnnotation {
  291. return true
  292. } else {
  293. return false
  294. }
  295. } else if (action == #selector(editNoteFromTable)) {
  296. let row = self.noteOutlineView.clickedRow
  297. let foldNote = self.fetchNote(for: row)
  298. // if (@available(macOS 10.13, *)) {
  299. // if ([foldNote.widgetFieldType isEqualToString:PDFAnnotationWidgetSubtypeSignature]) {
  300. // return NO;
  301. // }
  302. // }
  303. if foldNote is CPDFStampAnnotation || foldNote is KMAnnotationStamp || foldNote is CPDFListStampAnnotation {
  304. return false
  305. } else {
  306. return true
  307. }
  308. }
  309. return true
  310. }
  311. @IBAction func note_expandAllComments(_ sender: AnyObject?) {
  312. guard let model = self.annoListModel else {
  313. return
  314. }
  315. if (model.foldType == .unfold) { // 已全部展开
  316. return
  317. }
  318. model.foldType = .unfold
  319. self.noteOutlineView.reloadData()
  320. }
  321. @IBAction func note_foldAllComments(_ sender: AnyObject?) {
  322. guard let model = self.annoListModel else {
  323. return
  324. }
  325. if (model.foldType == .fold) {
  326. return
  327. }
  328. model.foldType = .fold
  329. self.noteOutlineView.reloadData()
  330. }
  331. @IBAction func noteShowNoteAction(_ sender: AnyObject?) {
  332. let item = sender as? NSMenuItem
  333. let tag = item?.tag ?? 0
  334. if (tag == 100) {
  335. } else if (tag == 101) {
  336. let isPage = !self.annoListIsShowPage()
  337. self.noteTypeDict[Self.Key.noteFilterPage] = !isPage
  338. } else if (tag == 102) {
  339. let isTime = !self.annoListIsShowTime()
  340. self.noteTypeDict[Self.Key.noteFilterTime] = !isTime
  341. } else if (tag == 103) {
  342. let isAuther = !self.annoListIsShowAnther()
  343. self.noteTypeDict[Self.Key.noteFilterAuther] = !isAuther
  344. }
  345. UserDefaults.standard.sync_setValue(self.noteTypeDict, forKey: Self.Key.noteTableColumn)
  346. // 更新数据
  347. var models: [KMBotaAnnotationModel] = []
  348. if self.noteSearchMode {
  349. models = self.noteSearchArray
  350. } else {
  351. models = self.annoListModel?.datas ?? []
  352. }
  353. for model in models {
  354. model.showPage = self.annoListIsShowPage()
  355. model.showTime = self.annoListIsShowTime()
  356. model.showAuthor = self.annoListIsShowAnther()
  357. }
  358. let selectRow = self.noteOutlineView.selectedRow
  359. self.noteOutlineView.reloadData()
  360. self.noteOutlineView.selectRowIndexes(IndexSet(integer: selectRow), byExtendingSelection: false)
  361. }
  362. @objc func exportAnnotationNotes(_ sender: AnyObject?) {
  363. let doc = self.view.window?.windowController?.document as? NSDocument
  364. doc?.saveTo(sender)
  365. }
  366. // 展开
  367. @objc func unfoldNoteAction(_ sender: NSMenuItem) {
  368. if sender.state == .on {
  369. return
  370. }
  371. let row = self.noteOutlineView.clickedRow
  372. guard let model = self.fetchAnnoModel(for: row) else {
  373. return
  374. }
  375. model.foldType = .unfold
  376. let viewS = self.noteOutlineView.view(atColumn: 0, row: row, makeIfNecessary: true)
  377. (viewS as? KMNoteTableViewCell)?.isFold = false
  378. }
  379. @objc func foldNoteAction(_ sender: NSMenuItem) {
  380. if sender.state == .on {
  381. return
  382. }
  383. let row = self.noteOutlineView.clickedRow
  384. guard let model = self.fetchAnnoModel(for: row) else {
  385. return
  386. }
  387. model.foldType = .fold
  388. let viewS = self.noteOutlineView.view(atColumn: 0, row: row, makeIfNecessary: true)
  389. (viewS as? KMNoteTableViewCell)?.isFold = true
  390. }
  391. @objc func deleteNotes(_ sender: NSMenuItem) {
  392. self.outlineView(self.noteOutlineView, deleteItems: sender.representedObject as? [Any] ?? [])
  393. }
  394. @objc func removeAllAnnotations(_ sender: AnyObject?) {
  395. guard let doc = self.pdfDocument() else {
  396. return
  397. }
  398. Task {
  399. let response = await KMAlertTool.runModel(message: KMLocalizedString("This will permanently remove all annotations. Are you sure to continue?", nil), buttons: [KMLocalizedString("Yes", nil), KMLocalizedString("No", nil)])
  400. if response == .alertFirstButtonReturn {
  401. // var annos: [CPDFAnnotation] = []
  402. // for i in 0 ..< doc.pageCount {
  403. // let page = self.pdfDocument()?.page(at: i)
  404. // for anno in page?.annotations ?? [] {
  405. // if anno is CPDFTextWidgetAnnotation || anno is CPDFButtonWidgetAnnotation || anno is CPDFChoiceWidgetAnnotation {
  406. // continue
  407. // }
  408. // // if ([annotation.widgetFieldType isEqualToString:PDFAnnotationWidgetSubtypeSignature]) {
  409. // // continue;
  410. // // }
  411. // if anno is CPDFLinkAnnotation {
  412. // continue
  413. // }
  414. // annos.append(anno)
  415. // }
  416. // }
  417. self.dataUpdating = true
  418. // for anno in annos {
  419. // self.listView?.remove(anno)
  420. // }
  421. for model in self.annoListModel?.datas ?? [] {
  422. if let anno = model.anno {
  423. self.listView?.remove(anno)
  424. }
  425. }
  426. self.dataUpdating = false
  427. self.note_refrshUIIfNeed()
  428. }
  429. }
  430. }
  431. @objc func editNoteTextFromTable(_ sender: NSMenuItem) {
  432. // PDFAnnotation *annotation = [sender representedObject];
  433. guard let annotation = sender.representedObject as? CPDFAnnotation else {
  434. return
  435. }
  436. self.listView?.scrollAnnotationToVisible(annotation)
  437. // self.listView.activeAnnotation = annotation
  438. // [self showNote:annotation];
  439. // SKNoteWindowController *noteController = (SKNoteWindowController *)[self windowControllerForNote:annotation];
  440. // [[noteController window] makeFirstResponder:[noteController textView]];
  441. // [[noteController textView] selectAll:nil];
  442. }
  443. @objc func editThisAnnotation(_ sender: AnyObject?) {
  444. guard let annotation = (sender as? NSMenuItem)?.representedObject as? CPDFAnnotation else {
  445. NSSound.beep()
  446. return
  447. }
  448. self.listView?.edit(annotation)
  449. }
  450. @objc func editNoteFromTable(_ sender: AnyObject?) {
  451. guard let annotation = (sender as? NSMenuItem)?.representedObject as? CPDFAnnotation else {
  452. NSSound.beep()
  453. return
  454. }
  455. let model = fetchAnnoModel(for: annotation)
  456. let row = self.noteOutlineView.row(forItem: model)
  457. self.noteOutlineView.km_safe_selectRowIndexes(.init(integer: row), byExtendingSelection: false)
  458. let noteIndex = self.noteOutlineView.column(withIdentifier: .init("note"))
  459. if (noteIndex >= 0) {
  460. self.noteOutlineView.scrollColumnToVisible(noteIndex)
  461. //
  462. self.isRenameNoteOutline = true
  463. // self.renamePDFOutline = [rightSideController.noteOutlineView itemAtRow:rightSideController.noteOutlineView.clickedRow];
  464. let viewS = self.noteOutlineView.view(atColumn: 0, row: row, makeIfNecessary: true) as? KMNoteTableViewCell
  465. let targrtTextField = viewS?.noteContentLabel
  466. self.editNoteTextField = targrtTextField
  467. self.editNote = annotation
  468. targrtTextField?.delegate = self
  469. targrtTextField?.isEditable = true
  470. targrtTextField?.becomeFirstResponder()
  471. }
  472. }
  473. @IBAction func noteSortAction(_ sender: AnyObject?) {
  474. if (self.isAscendSort) {
  475. self.isAscendSort = false
  476. self.noteSortButton.image = NSImage(named: KMImageNameBtnSidebarRankPositive)
  477. self.noteSortButton.toolTip = KMLocalizedString("descending sort", nil)
  478. } else {
  479. self.isAscendSort = true
  480. self.noteSortButton.image = NSImage(named: KMImageNameBtnSidebarRankReverse)
  481. self.noteSortButton.toolTip = KMLocalizedString("ascending sort", nil)
  482. }
  483. KMDataManager.ud_set(self.isAscendSort, forKey: Self.Key.noteAscendSortKey)
  484. if self.noteSearchMode {
  485. self.reloadNoteForSearchMode()
  486. } else {
  487. self.reloadAnnotation()
  488. }
  489. }
  490. @IBAction func noteSearchAction(_ sender: NSButton) {
  491. self.noteSearchField.isHidden = false
  492. self.noteTitleLabel.isHidden = true
  493. self.noteSearchButton.isHidden = true
  494. self.noteDoneButton.isHidden = false
  495. self.noteFilterButton.isHidden = true
  496. self.noteMoreButton.isHidden = true
  497. self.noteSearchField.becomeFirstResponder()
  498. }
  499. @IBAction func noteFilterAction(_ sender: AnyObject?) {
  500. let button = sender as? NSButton
  501. let menu = NSMenu()
  502. let filterViewController = KMNoteOutlineFilterViewController()
  503. filterViewController.listView = self.listView
  504. filterViewController.view.layer?.backgroundColor = .clear
  505. filterViewController.setNotesArray(self.allAnnotations as NSArray)
  506. filterViewController.applyFilterCallback = { [weak self] typeArr, colorArr, authorArr, isEmpty in
  507. menu.cancelTracking()
  508. if (isEmpty) {
  509. self?.filterButtonLayer?.isHidden = true
  510. } else {
  511. self?.filterButtonLayer?.isHidden = false
  512. }
  513. self?.reloadAnnotation()
  514. }
  515. filterViewController.cancelCallback = { isCancel in
  516. if (isCancel) {
  517. menu.cancelTracking()
  518. }
  519. }
  520. let item = menu.addItem(withTitle: "", action: nil, keyEquivalent: "")
  521. item.target = self
  522. item.representedObject = filterViewController
  523. item.view = filterViewController.view
  524. menu.popUp(positioning: nil, at: NSMakePoint(-130, 30), in: button)
  525. }
  526. func fetchNote(for index: Int) -> CPDFAnnotation? {
  527. return self.fetchAnnoModel(for: index)?.anno
  528. }
  529. func fetchAnnoModel(for index: Int) -> KMBotaAnnotationModel? {
  530. if self.noteSearchMode { // 搜索模式
  531. return self.noteSearchArray.safe_element(for: index) as? KMBotaAnnotationModel
  532. } else { // 常规模式(非搜索)
  533. return self.annoListModel?.datas.safe_element(for: index) as? KMBotaAnnotationModel
  534. }
  535. }
  536. func fetchAnnoModel(for anno: CPDFAnnotation) -> KMBotaAnnotationModel? {
  537. if self.noteSearchMode { // 搜索模式
  538. for model in self.noteSearchArray {
  539. if anno.isEqual(to: model.anno) {
  540. return model
  541. }
  542. }
  543. } else { // 常规模式(非搜索)
  544. for model in self.annoListModel?.datas ?? [] {
  545. if anno.isEqual(to: model.anno) {
  546. return model
  547. }
  548. }
  549. }
  550. return nil
  551. }
  552. @IBAction @objc func sortTypeAction(_ sender: NSMenuItem) {
  553. let item = sender
  554. let tag = item.tag
  555. if (item.state == .on) {
  556. item.state = .off
  557. } else {
  558. item.state = .on
  559. }
  560. if (tag == 0) {
  561. self.noteSortType = .page
  562. self.sortTypeLabel.stringValue = KMLocalizedString("Page", nil)
  563. self.sortTypeBox.toolTip = KMLocalizedString("Page", nil)
  564. } else if (tag == 1) {
  565. self.noteSortType = .time
  566. self.sortTypeLabel.stringValue = KMLocalizedString("Time", nil)
  567. self.sortTypeBox.toolTip = KMLocalizedString("Time", nil)
  568. }
  569. KMDataManager.ud_set(self.noteSortType.rawValue, forKey: Self.Key.noteSortTypeKey)
  570. if self.noteSearchMode {
  571. self.reloadNoteForSearchMode()
  572. } else {
  573. self.reloadAnnotation()
  574. }
  575. }
  576. func showNoteEmptyView() {
  577. let view = self.noteOutlineView.enclosingScrollView?.documentView
  578. let viewFrame = view?.frame ?? .zero
  579. let emptyVcSize = self.leftSideEmptyVC.emptyAnnotationView.frame.size
  580. self.leftSideEmptyVC.emptyAnnotationView.frame = NSMakeRect((viewFrame.size.width-emptyVcSize.width)/2.0,(viewFrame.size.height-emptyVcSize.height)/2.0, emptyVcSize.width, emptyVcSize.height)
  581. self.leftSideEmptyVC.emptyAnnotationView.autoresizingMask = [.minXMargin, .maxXMargin, .minYMargin, .maxYMargin]
  582. self.noteOutlineView.enclosingScrollView?.documentView?.addSubview(self.leftSideEmptyVC.emptyAnnotationView)
  583. self.leftSideEmptyVC.exportAnnotationBtn.isEnabled = false
  584. self.leftSideEmptyVC.deleteAnnotationBtn.isEnabled = false
  585. if (self.leftView.segmentedControl.selectedSegment == KMSelectedSegmentType.annotation.rawValue) {
  586. self.noteHeaderView.isHidden = true
  587. self.toolButtonBoxLayoutConstraint.constant = 40.0
  588. }
  589. }
  590. func hideNoteEmptyView() {
  591. self.leftSideEmptyVC.emptyAnnotationView.removeFromSuperview()
  592. self.leftSideEmptyVC.exportAnnotationBtn.isEnabled = true
  593. self.leftSideEmptyVC.deleteAnnotationBtn.isEnabled = true
  594. if (self.leftView.segmentedControl.selectedSegment == KMSelectedSegmentType.annotation.rawValue) {
  595. self.noteHeaderView.isHidden = false
  596. self.toolButtonBoxLayoutConstraint.constant = 64.0
  597. }
  598. }
  599. }
  600. // MARK: - Note
  601. extension KMLeftSideViewController {
  602. public func refreshUIForAddAnnotation(annos: [CPDFAnnotation]?, page: CPDFPage?) {
  603. let need = self._annoList_needRefreshUI(annos: annos)
  604. if need == false {
  605. return
  606. }
  607. self.updateThumbnail(at: Int(page?.pageIndex() ?? 0))
  608. self.note_reloadDataIfNeed()
  609. }
  610. public func refreshUIForAnnoAttributeDidChange(_ anno: CPDFAnnotation?, attributes: [String : Any]?) {
  611. let need = self._annoList_needRefreshUI(annos: anno != nil ? [anno!] : [])
  612. if need == false {
  613. return
  614. }
  615. self.updateThumbnail(at: Int(anno?.page?.pageIndex() ?? 0))
  616. if let data = anno {
  617. self.note_reloadDataForAnnoIfNeed(anno: data)
  618. }
  619. }
  620. public func annoList_refreshUIForDeleteAnnotations(annos: [CPDFAnnotation]?, page: CPDFPage?) {
  621. if self.type.methodType != .Annotation {
  622. return
  623. }
  624. let need = self._annoList_needRefreshUI(annos: annos)
  625. if need == false {
  626. return
  627. }
  628. for anno in annos ?? [] {
  629. if let model = self.fetchAnnoModel(for: anno) {
  630. self.noteSearchArray.removeObject(model)
  631. self.annoListModel?.datas.removeObject(model)
  632. if self.allAnnotations.contains(anno) {
  633. self.allAnnotations.removeObject(anno)
  634. }
  635. }
  636. }
  637. if self.dataUpdating == false {
  638. self.note_refrshUIIfNeed()
  639. }
  640. }
  641. func note_refrshUIIfNeed() {
  642. if self.type.methodType != .Annotation {
  643. return
  644. }
  645. Task { @MainActor in
  646. self.noteOutlineView.reloadData()
  647. }
  648. }
  649. func note_reloadDataIfNeed() {
  650. if self.type.methodType != .Annotation {
  651. return
  652. }
  653. self.reloadAnnotation()
  654. }
  655. func note_reloadDataForAnnoIfNeed(anno: CPDFAnnotation) {
  656. if self.type.methodType != .Annotation {
  657. return
  658. }
  659. if anno is CPDFLineAnnotation || anno is CPDFSquareAnnotation || anno is CPDFCircleAnnotation || anno is CPDFInkAnnotation {
  660. // 形状注释 + Ink 需要显示框住的内容【刷新】
  661. for item in self.annoListModel?.datas ?? [] {
  662. if anno.isEqual(to: item.anno) {
  663. self.noteOutlineView.reloadItem(item)
  664. break
  665. }
  666. }
  667. } else {
  668. for item in self.annoListModel?.datas ?? [] {
  669. if anno.isEqual(to: item.anno) {
  670. self.noteOutlineView.reloadItem(item)
  671. break
  672. }
  673. }
  674. }
  675. }
  676. func reloadAnnotation() {
  677. if self.listView != nil {
  678. let filterKey = self.pdfDocument()?.documentURL.path ?? ""
  679. let typeArr: [Any] = KMBotaTools.noteFilterAnnoTypes(key: filterKey)
  680. let colorArr: [Any] = KMBotaTools.noteFilterColors(key: filterKey)
  681. let authorArr: [Any] = KMBotaTools.noteFilterAuthors(key: filterKey)
  682. if typeArr.count == 0 && colorArr.count == 0 && authorArr.count == 0 {
  683. // self.filtrateButton.image = NSImage(named: "KMImageNameAnnotationsFiltrate")
  684. self.filterButtonLayer?.isHidden = true
  685. } else {
  686. // self.filtrateButton.image = NSImage(named: "icon_annotation_screening_select")self.filterButtonLayer?.isHidden = true
  687. self.filterButtonLayer?.isHidden = false
  688. }
  689. var annotationArray: [CPDFAnnotation] = []
  690. var allAnnotation: [CPDFAnnotation] = []
  691. for i in 0 ..< self.pageCount() {
  692. let page = self.pdfDocument()?.page(at: UInt(i))
  693. var annos: [CPDFAnnotation] = []
  694. // 处理过滤
  695. let types = ["Highlight","Underline","Strikeout","Freehand","FreeText","Note","Square","Circle","Line","Stamp","Arrow","Image","Redact","Sign"/*, "table"*/]
  696. if typeArr.count == 0 && colorArr.count == 0 && authorArr.count == 0 {
  697. annos = KMOCToolClass.filterAnnotation(annotations: page?.annotations ?? [],types: types) as? [CPDFAnnotation] ?? []
  698. annotationArray += annos
  699. } else {
  700. var filterAnnos: [CPDFAnnotation] = page?.annotations ?? []
  701. let allAnnos = KMOCToolClass.filterAnnotation(annotations: filterAnnos,types: types) as? [CPDFAnnotation] ?? []
  702. annotationArray += allAnnos
  703. if typeArr.count > 0 {
  704. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos, types: typeArr) as? [CPDFAnnotation]) ?? []
  705. }
  706. if (colorArr.count > 0) {
  707. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos,colors: colorArr) as? [CPDFAnnotation]) ?? []
  708. }
  709. if (authorArr.count > 0) {
  710. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos,authors: authorArr) as? [CPDFAnnotation]) ?? []
  711. }
  712. annos = filterAnnos
  713. }
  714. //添加签名注释
  715. for annotation in page?.annotations ?? [] {
  716. if annotation.isKind(of: CPDFSignatureAnnotation.self) {
  717. annos.append(annotation)
  718. annotationArray.append(annotation)
  719. }
  720. }
  721. for annotation in annos {
  722. if annotation.isKind(of: KMTableAnnotation.self) {
  723. annos.removeObject(annotation)
  724. if annotationArray.contains(annotation) {
  725. annotationArray.removeObject(annotation)
  726. }
  727. } else if annotation.annotationShouldDisplay() == false {
  728. annos.removeObject(annotation)
  729. if annotationArray.contains(annotation) {
  730. annotationArray.removeObject(annotation)
  731. }
  732. } else if annotation.isKind(of: CPDFLinkAnnotation.self) {
  733. annos.removeObject(annotation)
  734. if annotationArray.contains(annotation) {
  735. annotationArray.removeObject(annotation)
  736. }
  737. }
  738. }
  739. // 添加刷选后的注释
  740. allAnnotation += annos
  741. //添加所有annotation 用于筛选
  742. // annotationArray += (page?.annotations ?? [])
  743. // annotationArray += annos
  744. }
  745. // 处理排序
  746. if self.noteSortType == .page {
  747. /// 排序(升序)
  748. if self.isAscendSort {
  749. allAnnotation.sort {
  750. let idx0 = $0.page?.pageIndex() ?? 0
  751. let idx1 = $1.page?.pageIndex() ?? 0
  752. return idx0 <= idx1
  753. }
  754. } else {
  755. allAnnotation.sort {
  756. let idx0 = $0.page?.pageIndex() ?? 0
  757. let idx1 = $1.page?.pageIndex() ?? 0
  758. return idx0 > idx1
  759. }
  760. }
  761. } else if self.noteSortType == .time {
  762. /// 排序(升序)
  763. if self.isAscendSort {
  764. allAnnotation.sort {
  765. if $0.modificationDate() == nil {
  766. return false
  767. }
  768. if $1.modificationDate() == nil {
  769. return false
  770. }
  771. return $0.modificationDate() <= $1.modificationDate()
  772. }
  773. } else {
  774. allAnnotation.sort {
  775. if $0.modificationDate() == nil {
  776. return false
  777. }
  778. if $1.modificationDate() == nil {
  779. return false
  780. }
  781. return $0.modificationDate() > $1.modificationDate()
  782. }
  783. }
  784. }
  785. // 数据模型\化
  786. let model = KMAnnotationListModel()
  787. var datas: [KMBotaAnnotationModel] = []
  788. for anno in allAnnotation {
  789. let item = KMBotaAnnotationModel()
  790. item.anno = anno
  791. item.showPage = self.annoListIsShowPage()
  792. item.showTime = self.annoListIsShowTime()
  793. item.showAuthor = self.annoListIsShowAnther()
  794. datas.append(item)
  795. }
  796. model.datas = datas
  797. self.annoListModel = model
  798. // 转换对象,用于数据显示
  799. self.allAnnotations = annotationArray
  800. self.noteFilterButton.isEnabled = self.allAnnotations.count >= 1
  801. }
  802. self.note_refrshUIIfNeed()
  803. }
  804. func reloadNoteForSearchMode() {
  805. if self.noteSearchMode == false {
  806. return
  807. }
  808. // 处理排序
  809. if self.noteSortType == .page {
  810. if self.isAscendSort { /// 排序(升序)
  811. self.noteSearchArray.sort {
  812. let idx0 = $0.anno?.page?.pageIndex() ?? 0
  813. let idx1 = $1.anno?.page?.pageIndex() ?? 0
  814. return idx0 <= idx1
  815. }
  816. } else {
  817. self.noteSearchArray.sort {
  818. let idx0 = $0.anno?.page?.pageIndex() ?? 0
  819. let idx1 = $1.anno?.page?.pageIndex() ?? 0
  820. return idx0 > idx1
  821. }
  822. }
  823. } else if self.noteSortType == .time {
  824. if self.isAscendSort { /// 排序(升序)
  825. self.noteSearchArray.sort {
  826. if $0.anno?.modificationDate() == nil {
  827. return false
  828. }
  829. if $1.anno?.modificationDate() == nil {
  830. return false
  831. }
  832. return $0.anno!.modificationDate() <= $1.anno!.modificationDate()
  833. }
  834. } else {
  835. self.noteSearchArray.sort {
  836. if $0.anno?.modificationDate() == nil {
  837. return false
  838. }
  839. if $1.anno?.modificationDate() == nil {
  840. return false
  841. }
  842. return $0.anno!.modificationDate() > $1.anno!.modificationDate()
  843. }
  844. }
  845. }
  846. self.note_refrshUIIfNeed()
  847. }
  848. // 搜索 Action
  849. func updateNoteFilterPredicate() {
  850. var stringValue = self.noteSearchField.stringValue
  851. // 清空数据
  852. self.noteSearchArray.removeAll()
  853. if stringValue.isEmpty {
  854. for model in self.annoListModel?.datas ?? [] {
  855. guard let _ = model.anno else {
  856. continue
  857. }
  858. self.noteSearchArray.append(model)
  859. }
  860. } else {
  861. // 忽略大小写
  862. let caseInsensite = self.caseInsensitiveNoteSearch
  863. if caseInsensite {
  864. stringValue = stringValue.lowercased()
  865. }
  866. for model in self.annoListModel?.datas ?? [] {
  867. guard let note = model.anno else {
  868. continue
  869. }
  870. var noteString = ""
  871. if let anno = note as? CPDFMarkupAnnotation {
  872. noteString = anno.markupContent()
  873. } else {
  874. noteString = KMBOTAAnnotationTool.fetchContentLabelString(annotation: note)
  875. }
  876. if caseInsensite {
  877. noteString = noteString.lowercased()
  878. }
  879. if noteString.contains(stringValue) {
  880. self.noteSearchArray.append(model)
  881. }
  882. }
  883. }
  884. self.note_refrshUIIfNeed()
  885. }
  886. @objc func selectSelectedNote(_ sender: AnyObject?) {
  887. if self.hideNotes() == false {
  888. let selectedNotes = self.selectedNotes()
  889. if selectedNotes.count == 1 {
  890. let annotation = selectedNotes.last!
  891. self.listView?.go(to: annotation.bounds, on: annotation.page, animated: true)
  892. // [pdfView scrollAnnotationToVisible:annotation];
  893. // [pdfView setActiveAnnotation:annotation];
  894. self.listView?.updateActiveAnnotations([annotation])
  895. self.listView?.setNeedsDisplayAnnotationViewForVisiblePages()
  896. // }
  897. }
  898. // NSInteger column = [sender clickedColumn];
  899. // if (column != -1) {
  900. // NSString *colID = [[[sender tableColumns] objectAtIndex:column] identifier];
  901. //
  902. // if ([colID isEqualToString:@"color"]){
  903. // for (PDFAnnotation *annotation in self.pdfView.activeAnnotations) {
  904. // if (![annotation isKindOfClass:[PDFAnnotationChoiceWidget class]] &&
  905. // ![annotation isKindOfClass:[PDFAnnotationButtonWidget class]] &&
  906. // ![annotation isKindOfClass:[PDFAnnotationTextWidget class]]) {
  907. // [[NSColorPanel sharedColorPanel] orderFront:nil];
  908. // break;
  909. // }
  910. //
  911. // }
  912. // }
  913. // }
  914. }
  915. }
  916. func selectedNotes() -> [CPDFAnnotation] {
  917. var selectedNotes: [CPDFAnnotation] = []
  918. let rowIndexes = self.noteOutlineView.selectedRowIndexes
  919. for row in rowIndexes {
  920. let item = self.noteOutlineView.item(atRow: row)
  921. if item is KMBotaAnnotationModel {
  922. if let anno = (item as! KMBotaAnnotationModel).anno {
  923. // if anno.type == nil {
  924. // item = [(SKNoteText *)item note];
  925. // }
  926. if selectedNotes.contains(anno) == false {
  927. selectedNotes.append(anno)
  928. }
  929. }
  930. }
  931. }
  932. return selectedNotes
  933. }
  934. func clearAnnotationFilterData() {
  935. if let _key = self.pdfDocument()?.documentURL?.path {
  936. let userDefaults = UserDefaults.standard
  937. let typeData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  938. userDefaults.set(typeData, forKey: NoteFilterVC.filterSelectTypeKey + _key)
  939. let colorData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  940. userDefaults.set(colorData, forKey: NoteFilterVC.filterSelectColorKey + _key)
  941. let authorData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  942. userDefaults.set(authorData, forKey: NoteFilterVC.filterSelectAuthorKey + _key)
  943. userDefaults.synchronize()
  944. }
  945. }
  946. private func _annoList_needRefreshUI(annos: [CPDFAnnotation]?) -> Bool {
  947. guard let data = annos else {
  948. return false
  949. }
  950. // for anno in data {
  951. // if anno.isKind(of: KMTableAnnotation.self) == false {
  952. // return true
  953. // }
  954. // }
  955. return true
  956. }
  957. }