KMLeftSideViewController+Note.swift 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922
  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 = CGRectMake(0, 0, CGRectGetWidth(self.noteMoreButton.bounds), CGRectGetHeight(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 = CGRectMake(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 = { [unowned 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: CGPointMake(-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 Texts", 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. annos.append(anno)
  412. }
  413. }
  414. for anno in annos {
  415. self.listView?.remove(anno)
  416. }
  417. self.reloadAnnotation()
  418. }
  419. }
  420. }
  421. @objc func editNoteTextFromTable(_ sender: NSMenuItem) {
  422. // PDFAnnotation *annotation = [sender representedObject];
  423. guard let annotation = sender.representedObject as? CPDFAnnotation else {
  424. return
  425. }
  426. self.listView?.scrollAnnotationToVisible(annotation)
  427. // self.listView.activeAnnotation = annotation
  428. // [self showNote:annotation];
  429. // SKNoteWindowController *noteController = (SKNoteWindowController *)[self windowControllerForNote:annotation];
  430. // [[noteController window] makeFirstResponder:[noteController textView]];
  431. // [[noteController textView] selectAll:nil];
  432. }
  433. @objc func editThisAnnotation(_ sender: AnyObject?) {
  434. guard let annotation = (sender as? NSMenuItem)?.representedObject as? CPDFAnnotation else {
  435. NSSound.beep()
  436. return
  437. }
  438. self.listView?.edit(annotation)
  439. }
  440. @objc func editNoteFromTable(_ sender: AnyObject?) {
  441. guard let annotation = (sender as? NSMenuItem)?.representedObject as? CPDFAnnotation else {
  442. NSSound.beep()
  443. return
  444. }
  445. let model = fetchAnnoModel(for: annotation)
  446. let row = self.noteOutlineView.row(forItem: model)
  447. self.noteOutlineView.km_safe_selectRowIndexes(.init(integer: row), byExtendingSelection: false)
  448. let noteIndex = self.noteOutlineView.column(withIdentifier: .init("note"))
  449. if (noteIndex >= 0) {
  450. self.noteOutlineView.scrollColumnToVisible(noteIndex)
  451. //
  452. self.isRenameNoteOutline = true
  453. // self.renamePDFOutline = [rightSideController.noteOutlineView itemAtRow:rightSideController.noteOutlineView.clickedRow];
  454. let viewS = self.noteOutlineView.view(atColumn: 0, row: row, makeIfNecessary: true) as? KMNoteTableViewCell
  455. let targrtTextField = viewS?.noteContentLabel
  456. self.renamePDFOutlineTextField = targrtTextField
  457. targrtTextField?.delegate = self
  458. targrtTextField?.isEditable = true
  459. targrtTextField?.becomeFirstResponder()
  460. }
  461. }
  462. @IBAction func noteSortAction(_ sender: AnyObject?) {
  463. if (self.isAscendSort) {
  464. self.isAscendSort = false
  465. self.noteSortButton.image = NSImage(named: KMImageNameBtnSidebarRankPositive)
  466. self.noteSortButton.toolTip = KMLocalizedString("descending sort", nil)
  467. } else {
  468. self.isAscendSort = true
  469. self.noteSortButton.image = NSImage(named: KMImageNameBtnSidebarRankReverse)
  470. self.noteSortButton.toolTip = KMLocalizedString("ascending sort", nil)
  471. }
  472. KMDataManager.ud_set(self.isAscendSort, forKey: Self.Key.noteAscendSortKey)
  473. self.reloadAnnotation()
  474. }
  475. @IBAction func noteSearchAction(_ sender: NSButton) {
  476. self.noteSearchField.isHidden = false
  477. self.noteTitleLabel.isHidden = true
  478. self.noteSearchButton.isHidden = true
  479. self.noteDoneButton.isHidden = false
  480. self.noteFilterButton.isHidden = true
  481. self.noteMoreButton.isHidden = true
  482. self.noteSearchField.becomeFirstResponder()
  483. }
  484. @IBAction func noteFilterAction(_ sender: AnyObject?) {
  485. let button = sender as? NSButton
  486. let menu = NSMenu()
  487. let filterViewController = KMNoteOutlineFilterViewController()
  488. filterViewController.listView = self.listView
  489. filterViewController.view.layer?.backgroundColor = .clear
  490. filterViewController.setNotesArray(self.allAnnotations as NSArray)
  491. filterViewController.applyFilterCallback = { [weak self] typeArr, colorArr, authorArr, isEmpty in
  492. menu.cancelTracking()
  493. if (isEmpty) {
  494. self?.filterButtonLayer?.isHidden = true
  495. } else {
  496. self?.filterButtonLayer?.isHidden = false
  497. }
  498. self?.reloadAnnotation()
  499. }
  500. filterViewController.cancelCallback = { isCancel in
  501. if (isCancel) {
  502. menu.cancelTracking()
  503. }
  504. }
  505. let item = menu.addItem(withTitle: "", action: nil, keyEquivalent: "")
  506. item.target = self
  507. item.representedObject = filterViewController
  508. item.view = filterViewController.view
  509. menu.popUp(positioning: nil, at: CGPointMake(-130, 30), in: button)
  510. }
  511. func fetchNote(for index: Int) -> CPDFAnnotation? {
  512. return self.fetchAnnoModel(for: index)?.anno
  513. }
  514. func fetchAnnoModel(for index: Int) -> KMBotaAnnotationModel? {
  515. if self.noteSearchMode { // 搜索模式
  516. return self.noteSearchArray.safe_element(for: index) as? KMBotaAnnotationModel
  517. } else { // 常规模式(非搜索)
  518. return self.annoListModel?.datas.safe_element(for: index) as? KMBotaAnnotationModel
  519. }
  520. }
  521. func fetchAnnoModel(for anno: CPDFAnnotation) -> KMBotaAnnotationModel? {
  522. if self.noteSearchMode { // 搜索模式
  523. for model in self.noteSearchArray {
  524. if anno.isEqual(to: model.anno) {
  525. return model
  526. }
  527. }
  528. } else { // 常规模式(非搜索)
  529. for model in self.annoListModel?.datas ?? [] {
  530. if anno.isEqual(to: model.anno) {
  531. return model
  532. }
  533. }
  534. }
  535. return nil
  536. }
  537. @IBAction @objc func sortTypeAction(_ sender: NSMenuItem) {
  538. let item = sender
  539. let tag = item.tag
  540. if (item.state == .on) {
  541. item.state = .off
  542. } else {
  543. item.state = .on
  544. }
  545. if (tag == 0) {
  546. self.noteSortType = .page
  547. self.sortTypeLabel.stringValue = KMLocalizedString("Page", nil)
  548. self.sortTypeBox.toolTip = KMLocalizedString("Page", nil)
  549. } else if (tag == 1) {
  550. self.noteSortType = .time
  551. self.sortTypeLabel.stringValue = KMLocalizedString("Time", nil)
  552. self.sortTypeBox.toolTip = KMLocalizedString("Time", nil)
  553. }
  554. KMDataManager.ud_set(self.noteSortType.rawValue, forKey: Self.Key.noteSortTypeKey)
  555. self.reloadAnnotation()
  556. }
  557. func showNoteEmptyView() {
  558. let view = self.noteOutlineView.enclosingScrollView?.documentView
  559. let viewFrame = view?.frame ?? .zero
  560. let emptyVcSize = self.leftSideEmptyVC.emptyAnnotationView.frame.size
  561. self.leftSideEmptyVC.emptyAnnotationView.frame = NSMakeRect((viewFrame.size.width-emptyVcSize.width)/2.0,(viewFrame.size.height-emptyVcSize.height)/2.0, emptyVcSize.width, emptyVcSize.height)
  562. self.leftSideEmptyVC.emptyAnnotationView.autoresizingMask = [.minXMargin, .maxXMargin, .minYMargin, .maxYMargin]
  563. self.noteOutlineView.enclosingScrollView?.documentView?.addSubview(self.leftSideEmptyVC.emptyAnnotationView)
  564. self.leftSideEmptyVC.exportAnnotationBtn.isEnabled = false
  565. self.leftSideEmptyVC.deleteAnnotationBtn.isEnabled = false
  566. if (self.leftView.segmentedControl.selectedSegment == KMSelectedSegmentType.annotation.rawValue) {
  567. self.noteHeaderView.isHidden = true
  568. self.toolButtonBoxLayoutConstraint.constant = 40.0
  569. }
  570. }
  571. func hideNoteEmptyView() {
  572. self.leftSideEmptyVC.emptyAnnotationView.removeFromSuperview()
  573. self.leftSideEmptyVC.exportAnnotationBtn.isEnabled = true
  574. self.leftSideEmptyVC.deleteAnnotationBtn.isEnabled = true
  575. if (self.leftView.segmentedControl.selectedSegment == KMSelectedSegmentType.annotation.rawValue) {
  576. self.noteHeaderView.isHidden = false
  577. self.toolButtonBoxLayoutConstraint.constant = 64.0
  578. }
  579. }
  580. }
  581. // MARK: - Note
  582. extension KMLeftSideViewController {
  583. func note_refrshUIIfNeed() {
  584. if self.type.methodType != .Annotation {
  585. return
  586. }
  587. Task { @MainActor in
  588. self.noteOutlineView.reloadData()
  589. }
  590. }
  591. func note_reloadDataIfNeed() {
  592. if self.type.methodType != .Annotation {
  593. return
  594. }
  595. self.reloadAnnotation()
  596. }
  597. func note_reloadDataForAnnoIfNeed(anno: CPDFAnnotation) {
  598. if self.type.methodType != .Annotation {
  599. return
  600. }
  601. if anno is CPDFLineAnnotation || anno is CPDFSquareAnnotation || anno is CPDFCircleAnnotation || anno is CPDFInkAnnotation {
  602. // 形状注释 + Ink 需要显示框住的内容【刷新】
  603. for item in self.annoListModel?.datas ?? [] {
  604. if anno.isEqual(to: item.anno) {
  605. self.noteOutlineView.reloadItem(item)
  606. break
  607. }
  608. }
  609. }
  610. }
  611. func reloadAnnotation() {
  612. if self.listView != nil {
  613. let filterKey = self.pdfDocument()?.documentURL.path ?? ""
  614. let typeArr: [Any] = KMBotaTools.noteFilterAnnoTypes(key: filterKey)
  615. let colorArr: [Any] = KMBotaTools.noteFilterColors(key: filterKey)
  616. let authorArr: [Any] = KMBotaTools.noteFilterAuthors(key: filterKey)
  617. if typeArr.count == 0 && colorArr.count == 0 && authorArr.count == 0 {
  618. // self.filtrateButton.image = NSImage(named: "KMImageNameAnnotationsFiltrate")
  619. self.filterButtonLayer?.isHidden = true
  620. } else {
  621. // self.filtrateButton.image = NSImage(named: "icon_annotation_screening_select")self.filterButtonLayer?.isHidden = true
  622. self.filterButtonLayer?.isHidden = false
  623. }
  624. var annotationArray: [CPDFAnnotation] = []
  625. var allAnnotation: [CPDFAnnotation] = []
  626. for i in 0 ..< self.pageCount() {
  627. let page = self.pdfDocument()?.page(at: UInt(i))
  628. var annos: [CPDFAnnotation] = []
  629. // 处理过滤
  630. if typeArr.count == 0 && colorArr.count == 0 && authorArr.count == 0 {
  631. let types = ["Highlight","Underline","Strikeout","Freehand","FreeText","Note","Square","Circle","Line","Stamp","Arrow","Image","Redact","Sign"]
  632. annos = KMOCToolClass.filterAnnotation(annotations: page?.annotations ?? [],types: types) as? [CPDFAnnotation] ?? []
  633. } else {
  634. var filterAnnos: [CPDFAnnotation] = page?.annotations ?? []
  635. if typeArr.count > 0 {
  636. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos, types: typeArr) as? [CPDFAnnotation]) ?? []
  637. }
  638. if (colorArr.count > 0) {
  639. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos,colors: colorArr) as? [CPDFAnnotation]) ?? []
  640. }
  641. if (authorArr.count > 0) {
  642. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos,authors: authorArr) as? [CPDFAnnotation]) ?? []
  643. }
  644. annos = filterAnnos
  645. }
  646. //添加签名注释
  647. for annotation in page?.annotations ?? [] {
  648. if annotation.isKind(of: CPDFSignatureAnnotation.self) {
  649. annos.append(annotation)
  650. }
  651. }
  652. for annotation in annos {
  653. if annotation.annotationShouldDisplay() == false {
  654. annos.removeObject(annotation)
  655. }
  656. }
  657. // 添加刷选后的注释
  658. allAnnotation += annos
  659. //添加所有annotation 用于筛选
  660. annotationArray += (page?.annotations ?? [])
  661. }
  662. // 处理排序
  663. if self.noteSortType == .page {
  664. /// 排序(升序)
  665. if self.isAscendSort {
  666. allAnnotation.sort {
  667. let idx0 = $0.page?.pageIndex() ?? 0
  668. let idx1 = $1.page?.pageIndex() ?? 0
  669. return idx0 <= idx1
  670. }
  671. } else {
  672. allAnnotation.sort {
  673. let idx0 = $0.page?.pageIndex() ?? 0
  674. let idx1 = $1.page?.pageIndex() ?? 0
  675. return idx0 > idx1
  676. }
  677. }
  678. } else if self.noteSortType == .time {
  679. /// 排序(升序)
  680. if self.isAscendSort {
  681. allAnnotation.sort {
  682. if $0.modificationDate() == nil {
  683. return false
  684. }
  685. if $1.modificationDate() == nil {
  686. return false
  687. }
  688. return $0.modificationDate() <= $1.modificationDate()
  689. }
  690. } else {
  691. allAnnotation.sort {
  692. if $0.modificationDate() == nil {
  693. return false
  694. }
  695. if $1.modificationDate() == nil {
  696. return false
  697. }
  698. return $0.modificationDate() > $1.modificationDate()
  699. }
  700. }
  701. }
  702. // 数据模型\化
  703. let model = KMAnnotationListModel()
  704. var datas: [KMBotaAnnotationModel] = []
  705. for anno in allAnnotation {
  706. let item = KMBotaAnnotationModel()
  707. item.anno = anno
  708. item.showPage = self.annoListIsShowPage()
  709. item.showTime = self.annoListIsShowTime()
  710. item.showAuthor = self.annoListIsShowAnther()
  711. datas.append(item)
  712. }
  713. model.datas = datas
  714. self.annoListModel = model
  715. // 转换对象,用于数据显示
  716. self.allAnnotations = annotationArray
  717. // if self.annotations.count < 1 {
  718. // self.filtrateButton.isEnabled = false
  719. // } else {
  720. // self.filtrateButton.isEnabled = true
  721. // }
  722. }
  723. Task { @MainActor in
  724. self.noteOutlineView.reloadData()
  725. }
  726. }
  727. // 搜索 Action
  728. func updateNoteFilterPredicate() {
  729. var stringValue = self.noteSearchField.stringValue
  730. if self.caseInsensitiveNoteSearch { // 忽略大小写
  731. stringValue = stringValue.lowercased()
  732. }
  733. // 清空数据
  734. self.noteSearchArray.removeAll()
  735. if stringValue.isEmpty {
  736. for model in self.annoListModel?.datas ?? [] {
  737. guard let note = model.anno else {
  738. continue
  739. }
  740. self.noteSearchArray.append(model)
  741. }
  742. } else {
  743. for model in self.annoListModel?.datas ?? [] {
  744. guard let note = model.anno else {
  745. continue
  746. }
  747. var noteString = KMBOTAAnnotationTool.fetchContentLabelString(annotation: note)
  748. if let anno = note as? CPDFMarkupAnnotation {
  749. noteString = anno.markupContent()
  750. }
  751. if self.caseInsensitiveNoteSearch {
  752. noteString = noteString.lowercased()
  753. }
  754. if noteString.contains(stringValue) {
  755. self.noteSearchArray.append(model)
  756. }
  757. }
  758. }
  759. // 刷新 UI
  760. Task { @MainActor in
  761. self.noteOutlineView.reloadData()
  762. }
  763. }
  764. @objc func selectSelectedNote(_ sender: AnyObject?) {
  765. if self.hideNotes() == false {
  766. let selectedNotes = self.selectedNotes()
  767. if selectedNotes.count == 1 {
  768. let annotation = selectedNotes.last!
  769. self.listView?.go(to: annotation.bounds, on: annotation.page, animated: true)
  770. // [pdfView scrollAnnotationToVisible:annotation];
  771. // [pdfView setActiveAnnotation:annotation];
  772. self.listView?.updateActiveAnnotations([annotation])
  773. self.listView?.setNeedsDisplayAnnotationViewForVisiblePages()
  774. // }
  775. }
  776. // NSInteger column = [sender clickedColumn];
  777. // if (column != -1) {
  778. // NSString *colID = [[[sender tableColumns] objectAtIndex:column] identifier];
  779. //
  780. // if ([colID isEqualToString:@"color"]){
  781. // for (PDFAnnotation *annotation in self.pdfView.activeAnnotations) {
  782. // if (![annotation isKindOfClass:[PDFAnnotationChoiceWidget class]] &&
  783. // ![annotation isKindOfClass:[PDFAnnotationButtonWidget class]] &&
  784. // ![annotation isKindOfClass:[PDFAnnotationTextWidget class]]) {
  785. // [[NSColorPanel sharedColorPanel] orderFront:nil];
  786. // break;
  787. // }
  788. //
  789. // }
  790. // }
  791. // }
  792. }
  793. }
  794. func selectedNotes() -> [CPDFAnnotation] {
  795. var selectedNotes: [CPDFAnnotation] = []
  796. let rowIndexes = self.noteOutlineView.selectedRowIndexes
  797. for row in rowIndexes {
  798. let item = self.noteOutlineView.item(atRow: row)
  799. if item is KMBotaAnnotationModel {
  800. if let anno = (item as! KMBotaAnnotationModel).anno {
  801. // if anno.type == nil {
  802. // item = [(SKNoteText *)item note];
  803. // }
  804. if selectedNotes.contains(anno) == false {
  805. selectedNotes.append(anno)
  806. }
  807. }
  808. }
  809. }
  810. return selectedNotes
  811. }
  812. func clearAnnotationFilterData() {
  813. if let _key = self.pdfDocument()?.documentURL?.path {
  814. let userDefaults = UserDefaults.standard
  815. let typeData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  816. userDefaults.set(typeData, forKey: NoteFilterVC.filterSelectTypeKey + _key)
  817. let colorData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  818. userDefaults.set(colorData, forKey: NoteFilterVC.filterSelectColorKey + _key)
  819. let authorData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  820. userDefaults.set(authorData, forKey: NoteFilterVC.filterSelectAuthorKey + _key)
  821. userDefaults.synchronize()
  822. }
  823. }
  824. }