KMLeftSideViewController+Note.swift 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062
  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. if let data = anno {
  616. self.note_reloadDataForAnnoIfNeed(anno: data)
  617. }
  618. }
  619. public func annoList_refreshUIForDeleteAnnotations(annos: [CPDFAnnotation]?, page: CPDFPage?) {
  620. if self.type.methodType != .Annotation {
  621. return
  622. }
  623. let need = self._annoList_needRefreshUI(annos: annos)
  624. if need == false {
  625. return
  626. }
  627. for anno in annos ?? [] {
  628. if let model = self.fetchAnnoModel(for: anno) {
  629. self.noteSearchArray.removeObject(model)
  630. self.annoListModel?.datas.removeObject(model)
  631. if self.allAnnotations.contains(anno) {
  632. self.allAnnotations.removeObject(anno)
  633. }
  634. }
  635. }
  636. if self.dataUpdating == false {
  637. self.note_refrshUIIfNeed()
  638. }
  639. }
  640. func note_refrshUIIfNeed() {
  641. if self.type.methodType != .Annotation {
  642. return
  643. }
  644. Task { @MainActor in
  645. self.noteOutlineView.reloadData()
  646. }
  647. }
  648. func note_reloadDataIfNeed() {
  649. if self.type.methodType != .Annotation {
  650. return
  651. }
  652. self.reloadAnnotation()
  653. }
  654. func note_reloadDataForAnnoIfNeed(anno: CPDFAnnotation) {
  655. if self.type.methodType != .Annotation {
  656. return
  657. }
  658. if anno is CPDFLineAnnotation || anno is CPDFSquareAnnotation || anno is CPDFCircleAnnotation || anno is CPDFInkAnnotation {
  659. // 形状注释 + Ink 需要显示框住的内容【刷新】
  660. for item in self.annoListModel?.datas ?? [] {
  661. if anno.isEqual(to: item.anno) {
  662. self.noteOutlineView.reloadItem(item)
  663. break
  664. }
  665. }
  666. } else {
  667. for item in self.annoListModel?.datas ?? [] {
  668. if anno.isEqual(to: item.anno) {
  669. self.noteOutlineView.reloadItem(item)
  670. break
  671. }
  672. }
  673. }
  674. }
  675. func reloadAnnotation() {
  676. if self.listView != nil {
  677. let filterKey = self.pdfDocument()?.documentURL.path ?? ""
  678. let typeArr: [Any] = KMBotaTools.noteFilterAnnoTypes(key: filterKey)
  679. let colorArr: [Any] = KMBotaTools.noteFilterColors(key: filterKey)
  680. let authorArr: [Any] = KMBotaTools.noteFilterAuthors(key: filterKey)
  681. if typeArr.count == 0 && colorArr.count == 0 && authorArr.count == 0 {
  682. // self.filtrateButton.image = NSImage(named: "KMImageNameAnnotationsFiltrate")
  683. self.filterButtonLayer?.isHidden = true
  684. } else {
  685. // self.filtrateButton.image = NSImage(named: "icon_annotation_screening_select")self.filterButtonLayer?.isHidden = true
  686. self.filterButtonLayer?.isHidden = false
  687. }
  688. var annotationArray: [CPDFAnnotation] = []
  689. var allAnnotation: [CPDFAnnotation] = []
  690. for i in 0 ..< self.pageCount() {
  691. let page = self.pdfDocument()?.page(at: UInt(i))
  692. var annos: [CPDFAnnotation] = []
  693. // 处理过滤
  694. let types = ["Highlight","Underline","Strikeout","Freehand","FreeText","Note","Square","Circle","Line","Stamp","Arrow","Image","Redact","Sign"/*, "table"*/]
  695. if typeArr.count == 0 && colorArr.count == 0 && authorArr.count == 0 {
  696. annos = KMOCToolClass.filterAnnotation(annotations: page?.annotations ?? [],types: types) as? [CPDFAnnotation] ?? []
  697. annotationArray += annos
  698. } else {
  699. var filterAnnos: [CPDFAnnotation] = page?.annotations ?? []
  700. let allAnnos = KMOCToolClass.filterAnnotation(annotations: filterAnnos,types: types) as? [CPDFAnnotation] ?? []
  701. annotationArray += allAnnos
  702. if typeArr.count > 0 {
  703. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos, types: typeArr) as? [CPDFAnnotation]) ?? []
  704. }
  705. if (colorArr.count > 0) {
  706. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos,colors: colorArr) as? [CPDFAnnotation]) ?? []
  707. }
  708. if (authorArr.count > 0) {
  709. filterAnnos = (KMOCToolClass.filterAnnotation(annotations: filterAnnos,authors: authorArr) as? [CPDFAnnotation]) ?? []
  710. }
  711. annos = filterAnnos
  712. }
  713. //添加签名注释
  714. for annotation in page?.annotations ?? [] {
  715. if annotation.isKind(of: CPDFSignatureAnnotation.self) {
  716. annos.append(annotation)
  717. annotationArray.append(annotation)
  718. }
  719. }
  720. for annotation in annos {
  721. if annotation.isKind(of: KMTableAnnotation.self) {
  722. annos.removeObject(annotation)
  723. if annotationArray.contains(annotation) {
  724. annotationArray.removeObject(annotation)
  725. }
  726. } else if annotation.annotationShouldDisplay() == false {
  727. annos.removeObject(annotation)
  728. if annotationArray.contains(annotation) {
  729. annotationArray.removeObject(annotation)
  730. }
  731. } else if annotation.isKind(of: CPDFLinkAnnotation.self) {
  732. annos.removeObject(annotation)
  733. if annotationArray.contains(annotation) {
  734. annotationArray.removeObject(annotation)
  735. }
  736. }
  737. }
  738. // 添加刷选后的注释
  739. allAnnotation += annos
  740. //添加所有annotation 用于筛选
  741. // annotationArray += (page?.annotations ?? [])
  742. // annotationArray += annos
  743. }
  744. // 处理排序
  745. if self.noteSortType == .page {
  746. /// 排序(升序)
  747. if self.isAscendSort {
  748. allAnnotation.sort {
  749. let idx0 = $0.page?.pageIndex() ?? 0
  750. let idx1 = $1.page?.pageIndex() ?? 0
  751. return idx0 <= idx1
  752. }
  753. } else {
  754. allAnnotation.sort {
  755. let idx0 = $0.page?.pageIndex() ?? 0
  756. let idx1 = $1.page?.pageIndex() ?? 0
  757. return idx0 > idx1
  758. }
  759. }
  760. } else if self.noteSortType == .time {
  761. /// 排序(升序)
  762. if self.isAscendSort {
  763. allAnnotation.sort {
  764. if $0.modificationDate() == nil {
  765. return false
  766. }
  767. if $1.modificationDate() == nil {
  768. return false
  769. }
  770. return $0.modificationDate() <= $1.modificationDate()
  771. }
  772. } else {
  773. allAnnotation.sort {
  774. if $0.modificationDate() == nil {
  775. return false
  776. }
  777. if $1.modificationDate() == nil {
  778. return false
  779. }
  780. return $0.modificationDate() > $1.modificationDate()
  781. }
  782. }
  783. }
  784. // 数据模型\化
  785. let model = KMAnnotationListModel()
  786. var datas: [KMBotaAnnotationModel] = []
  787. for anno in allAnnotation {
  788. let item = KMBotaAnnotationModel()
  789. item.anno = anno
  790. item.showPage = self.annoListIsShowPage()
  791. item.showTime = self.annoListIsShowTime()
  792. item.showAuthor = self.annoListIsShowAnther()
  793. datas.append(item)
  794. }
  795. model.datas = datas
  796. self.annoListModel = model
  797. // 转换对象,用于数据显示
  798. self.allAnnotations = annotationArray
  799. self.noteFilterButton.isEnabled = self.allAnnotations.count >= 1
  800. }
  801. self.note_refrshUIIfNeed()
  802. }
  803. func reloadNoteForSearchMode() {
  804. if self.noteSearchMode == false {
  805. return
  806. }
  807. // 处理排序
  808. if self.noteSortType == .page {
  809. if self.isAscendSort { /// 排序(升序)
  810. self.noteSearchArray.sort {
  811. let idx0 = $0.anno?.page?.pageIndex() ?? 0
  812. let idx1 = $1.anno?.page?.pageIndex() ?? 0
  813. return idx0 <= idx1
  814. }
  815. } else {
  816. self.noteSearchArray.sort {
  817. let idx0 = $0.anno?.page?.pageIndex() ?? 0
  818. let idx1 = $1.anno?.page?.pageIndex() ?? 0
  819. return idx0 > idx1
  820. }
  821. }
  822. } else if self.noteSortType == .time {
  823. if self.isAscendSort { /// 排序(升序)
  824. self.noteSearchArray.sort {
  825. if $0.anno?.modificationDate() == nil {
  826. return false
  827. }
  828. if $1.anno?.modificationDate() == nil {
  829. return false
  830. }
  831. return $0.anno!.modificationDate() <= $1.anno!.modificationDate()
  832. }
  833. } else {
  834. self.noteSearchArray.sort {
  835. if $0.anno?.modificationDate() == nil {
  836. return false
  837. }
  838. if $1.anno?.modificationDate() == nil {
  839. return false
  840. }
  841. return $0.anno!.modificationDate() > $1.anno!.modificationDate()
  842. }
  843. }
  844. }
  845. self.note_refrshUIIfNeed()
  846. }
  847. // 搜索 Action
  848. func updateNoteFilterPredicate() {
  849. var stringValue = self.noteSearchField.stringValue
  850. // 清空数据
  851. self.noteSearchArray.removeAll()
  852. if stringValue.isEmpty {
  853. for model in self.annoListModel?.datas ?? [] {
  854. guard let _ = model.anno else {
  855. continue
  856. }
  857. self.noteSearchArray.append(model)
  858. }
  859. } else {
  860. // 忽略大小写
  861. let caseInsensite = self.caseInsensitiveNoteSearch
  862. if caseInsensite {
  863. stringValue = stringValue.lowercased()
  864. }
  865. for model in self.annoListModel?.datas ?? [] {
  866. guard let note = model.anno else {
  867. continue
  868. }
  869. var noteString = ""
  870. if let anno = note as? CPDFMarkupAnnotation {
  871. noteString = anno.markupContent()
  872. } else {
  873. noteString = KMBOTAAnnotationTool.fetchContentLabelString(annotation: note)
  874. }
  875. if caseInsensite {
  876. noteString = noteString.lowercased()
  877. }
  878. if noteString.contains(stringValue) {
  879. self.noteSearchArray.append(model)
  880. }
  881. }
  882. }
  883. self.note_refrshUIIfNeed()
  884. }
  885. @objc func selectSelectedNote(_ sender: AnyObject?) {
  886. if self.hideNotes() == false {
  887. let selectedNotes = self.selectedNotes()
  888. if selectedNotes.count == 1 {
  889. let annotation = selectedNotes.last!
  890. self.listView?.go(to: annotation.bounds, on: annotation.page, animated: true)
  891. // [pdfView scrollAnnotationToVisible:annotation];
  892. // [pdfView setActiveAnnotation:annotation];
  893. self.listView?.updateActiveAnnotations([annotation])
  894. self.listView?.setNeedsDisplayAnnotationViewForVisiblePages()
  895. // }
  896. }
  897. // NSInteger column = [sender clickedColumn];
  898. // if (column != -1) {
  899. // NSString *colID = [[[sender tableColumns] objectAtIndex:column] identifier];
  900. //
  901. // if ([colID isEqualToString:@"color"]){
  902. // for (PDFAnnotation *annotation in self.pdfView.activeAnnotations) {
  903. // if (![annotation isKindOfClass:[PDFAnnotationChoiceWidget class]] &&
  904. // ![annotation isKindOfClass:[PDFAnnotationButtonWidget class]] &&
  905. // ![annotation isKindOfClass:[PDFAnnotationTextWidget class]]) {
  906. // [[NSColorPanel sharedColorPanel] orderFront:nil];
  907. // break;
  908. // }
  909. //
  910. // }
  911. // }
  912. // }
  913. }
  914. }
  915. func selectedNotes() -> [CPDFAnnotation] {
  916. var selectedNotes: [CPDFAnnotation] = []
  917. let rowIndexes = self.noteOutlineView.selectedRowIndexes
  918. for row in rowIndexes {
  919. let item = self.noteOutlineView.item(atRow: row)
  920. if item is KMBotaAnnotationModel {
  921. if let anno = (item as! KMBotaAnnotationModel).anno {
  922. // if anno.type == nil {
  923. // item = [(SKNoteText *)item note];
  924. // }
  925. if selectedNotes.contains(anno) == false {
  926. selectedNotes.append(anno)
  927. }
  928. }
  929. }
  930. }
  931. return selectedNotes
  932. }
  933. func clearAnnotationFilterData() {
  934. if let _key = self.pdfDocument()?.documentURL?.path {
  935. let userDefaults = UserDefaults.standard
  936. let typeData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  937. userDefaults.set(typeData, forKey: NoteFilterVC.filterSelectTypeKey + _key)
  938. let colorData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  939. userDefaults.set(colorData, forKey: NoteFilterVC.filterSelectColorKey + _key)
  940. let authorData = try?NSKeyedArchiver.archivedData(withRootObject: [Any](), requiringSecureCoding: false)
  941. userDefaults.set(authorData, forKey: NoteFilterVC.filterSelectAuthorKey + _key)
  942. userDefaults.synchronize()
  943. }
  944. }
  945. private func _annoList_needRefreshUI(annos: [CPDFAnnotation]?) -> Bool {
  946. guard let data = annos else {
  947. return false
  948. }
  949. // for anno in data {
  950. // if anno.isKind(of: KMTableAnnotation.self) == false {
  951. // return true
  952. // }
  953. // }
  954. return true
  955. }
  956. }