KMLeftSideViewController+Outline.swift 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. //
  2. // KMLeftSideViewController+Outline.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by tangchao on 2023/12/22.
  6. //
  7. import Foundation
  8. enum KMOutlineViewMenuItemTag: Int {
  9. case addEntry = 0
  10. case addChild
  11. case addAunt
  12. case remove
  13. case edit
  14. case setDestination
  15. case rename
  16. case promote
  17. case demote
  18. }
  19. extension KMLeftSideViewController {
  20. func outline_initSubViews() {
  21. self.outlineSearchField.delegate = self
  22. self.outlineAddButton.target = self
  23. self.outlineAddButton.action = #selector(outlineContextMenuItemClicked_AddEntry)
  24. self.outlineMoreButton.target = self
  25. self.outlineMoreButton.tag = 302
  26. self.outlineMoreButton.action = #selector(leftSideViewMoreButtonAction)
  27. self.outlineDoneButton.target = self
  28. self.outlineDoneButton.tag = 310
  29. self.outlineDoneButton.action = #selector(leftSideViewDoneButtonAction)
  30. let menuOutline = NSMenu()
  31. _ = menuOutline.addItem(title: KMLocalizedString("Ignore Case", "Menu item title"), action: #selector(toggleOutlineCaseInsensitiveSearch), target: self)
  32. (self.outlineSearchField.cell as? NSSearchFieldCell)?.searchMenuTemplate = menuOutline
  33. self.outlineSearchField.target = self
  34. self.tocOutlineView.menu = NSMenu()
  35. self.tocOutlineView.menu?.delegate = self
  36. self.tocOutlineView.delegate = self
  37. self.tocOutlineView.dataSource = self
  38. self.tocOutlineView.botaDelegate = self
  39. self.tocOutlineView.botaDataSource = self
  40. self.tocOutlineView.tocDelegate = self
  41. self.tocOutlineView.registerForDraggedTypes([.localDraggedTypes])
  42. self.tocOutlineView.target = self
  43. self.tocOutlineView.doubleAction = #selector(outlineContextMenuItemClicked_Rename)
  44. }
  45. func outline_initDefalutValue() {
  46. self.outlineView.wantsLayer = true
  47. self.outlineView.layer?.backgroundColor = KMAppearance.Layout.l0Color().cgColor
  48. self.outlineLabel.stringValue = KMLocalizedString("Outline", nil);
  49. self.outlineLabel.textColor = KMAppearance.Layout.h0Color()
  50. self.outlineAddButton.toolTip = KMLocalizedString("Add Item", nil)
  51. self.outlineSearchButton.toolTip = KMLocalizedString("Search", nil)
  52. self.outlineDoneButton.title = KMLocalizedString("Done", nil);
  53. self.outlineDoneButton.toolTip = KMLocalizedString("Done", nil);
  54. self.outlineDoneButton.setTitleColor(KMAppearance.Layout.w0Color())
  55. self.outlineDoneButton.wantsLayer = true
  56. self.outlineDoneButton.layer?.backgroundColor = KMAppearance.Interactive.a0Color().cgColor
  57. self.outlineDoneButton.layer?.cornerRadius = 4.0
  58. self.outlineSearchField.wantsLayer = true
  59. self.outlineSearchField.backgroundColor = KMAppearance.Layout.l_1Color()
  60. self.outlineSearchField.layer?.backgroundColor = KMAppearance.Layout.l_1Color().cgColor
  61. self.outlineSearchField.layer?.borderWidth = 1.0
  62. self.outlineSearchField.layer?.borderColor = KMAppearance.Interactive.a0Color().cgColor
  63. self.outlineDoneButton.isHidden = true
  64. self.outlineSearchField.isHidden = true
  65. (self.outlineSearchField.cell as? NSSearchFieldCell)?.placeholderString = KMLocalizedString("Search Outline", nil)
  66. self.tocOutlineView.backgroundColor = KMAppearance.Layout.l0Color()
  67. self.tocOutlineView.autoresizesOutlineColumn = false
  68. self.tocOutlineView.allowsMultipleSelection = true
  69. self.tocOutlineView.allowsEmptySelection = true
  70. self.tocOutlineView.focusRingType = .none
  71. self.tocOutlineView.autoresizesSubviews = true
  72. }
  73. func updateOutlineSelection() {
  74. if self.outlineRoot() == nil || self.updatingOutlineSelection {
  75. return
  76. }
  77. self.updatingOutlineSelection = true
  78. let numRows = self.tocOutlineView.numberOfRows
  79. let currentPage = self.currentPage()
  80. var flagIdx = NSNotFound
  81. for i in 0 ..< numRows {
  82. guard let ol = self.tocOutlineView.item(atRow: i) as? CPDFOutline else {
  83. continue
  84. }
  85. guard let page = ol.km_page else {
  86. continue
  87. }
  88. if page.isEqual(to: currentPage) {
  89. flagIdx = i
  90. break
  91. }
  92. }
  93. if flagIdx != NSNotFound {
  94. self.tocOutlineView.km_safe_selectRowIndexes(.init(integer: flagIdx), byExtendingSelection: false)
  95. self.tocOutlineView.scrollRowToVisible(flagIdx)
  96. } else {
  97. self.tocOutlineView.deselectRow(self.tocOutlineView.selectedRow)
  98. }
  99. self.updatingOutlineSelection = false
  100. }
  101. func newAddOutlineEntryEditingMode(_ index: Int) {
  102. self.renamePDFOutline = self.tocOutlineView.item(atRow: self.tocOutlineView.selectedRow) as? CPDFOutline
  103. let row = self.tocOutlineView.selectedRow
  104. let viewS = self.tocOutlineView.view(atColumn: 0, row: row, makeIfNecessary: true)
  105. let targrtTextField = viewS?.subviews.first as? NSTextField
  106. self.renamePDFOutlineTextField = targrtTextField
  107. targrtTextField?.delegate = self
  108. targrtTextField?.isEditable = true
  109. targrtTextField?.becomeFirstResponder()
  110. }
  111. func selectedRowIndexes() -> IndexSet {
  112. var selectedIndexes = self.tocOutlineView.selectedRowIndexes
  113. let clickedRow = self.tocOutlineView.clickedRow
  114. if clickedRow != -1 && selectedIndexes.contains(clickedRow) == false {
  115. let indexes = IndexSet(integer: clickedRow)
  116. selectedIndexes = indexes
  117. }
  118. return selectedIndexes
  119. }
  120. func editOutlineUI(_ editVC: KMOutlineEditViewController) {
  121. guard let ol = editVC.outline else {
  122. return
  123. }
  124. if editVC.pageButton.state == .on {
  125. let numberString = editVC.outlineTargetPageIndexTextField.stringValue
  126. let idx = Int(numberString) ?? 1
  127. let newPage = editVC.pdfView?.document.page(at: UInt(idx-1))
  128. if let data = newPage?.pageIndex(), data != editVC.originalPageIndex {
  129. //新page不存在
  130. if (newPage == nil) {
  131. } else {
  132. let pageSize = newPage?.bounds(for: .cropBox).size ?? .zero
  133. if let dest = CPDFDestination(page: newPage, at: CGPointMake(pageSize.width, pageSize.height)) {
  134. self.changePDFOutlineDestination(dest, PDFoutline: ol)
  135. }
  136. }
  137. }
  138. } else if editVC.urlButton.state == .on {
  139. var urlString = editVC.outlineURLTextField.stringValue
  140. let tLowerUrl = urlString.lowercased()
  141. if tLowerUrl.hasPrefix(kHTTPSPrefix) == false && tLowerUrl.hasPrefix(kFTPPrefix) == false && tLowerUrl.hasPrefix(kHTTPPrefix) == false && urlString.isEmpty == false {
  142. urlString = "\(kHTTPPrefix)\(urlString)"
  143. }
  144. if let act = CPDFURLAction(url: urlString) {
  145. if editVC.originalURLString != editVC.outlineURLTextField.stringValue {
  146. self.changePDFAction(act, PDFOutline: ol)
  147. }
  148. }
  149. } else if editVC.mailButton.state == .on {
  150. var mailString = editVC.mailAddressTextField.stringValue
  151. let tLowerStr = mailString.lowercased()
  152. if tLowerStr.hasPrefix(kEmailPrefix) == false {
  153. mailString = "\(kEmailPrefix)\(mailString)"
  154. }
  155. if var urlAction = CPDFURLAction(url: mailString) {
  156. if urlAction.url() == nil {
  157. urlAction = CPDFURLAction(url: kEmailPrefix)
  158. }
  159. if mailString != editVC.originalURLString {
  160. self.changePDFAction(urlAction, PDFOutline: ol)
  161. }
  162. }
  163. }
  164. if editVC.outlineNameTextView.string != editVC.originalLabel {
  165. self.renamePDFOutline(ol, label: editVC.outlineNameTextView.string)
  166. }
  167. }
  168. @objc func outlineContextMenuItemClicked_AddEntry(_ sender: AnyObject?) {
  169. let ris = self.selectedRowIndexes()
  170. if ris.isEmpty {
  171. var rootOL = self.outlineRoot()
  172. if rootOL == nil {
  173. rootOL = self.setNewOutlineRoot()
  174. }
  175. let ol = CPDFOutline()
  176. ol.label = String(format: "%@ %ld", KMLocalizedString("Page", nil), self.currentPageIndex()+1)
  177. ol.destination = self.currentDestination()
  178. self.addoutline(parent: rootOL, addOutline: ol, index: Int(rootOL?.numberOfChildren ?? 0), needExpand: false)
  179. return
  180. }
  181. if let row = ris.last {
  182. let item = self.tocOutlineView.item(atRow: row) as? CPDFOutline
  183. let ol = CPDFOutline()
  184. ol.label = String(format: "%@ %ld", KMLocalizedString("Page", nil), self.currentPageIndex()+1)
  185. ol.destination = self.currentDestination()
  186. let idx = Int(item?.index ?? 0) + 1
  187. self.addoutline(parent: item?.parent, addOutline: ol, index: idx, needExpand: false)
  188. self.tocOutlineView.scrollRowToVisible(idx)
  189. self.tocOutlineView.deselectRow(idx)
  190. }
  191. }
  192. @IBAction func outlineNormalSearchButtonAction(_ sender: NSButton) {
  193. self.outlineSearchField.isHidden = false
  194. self.outlineDoneButton.isHidden = false
  195. self.outlineLabel.isHidden = true
  196. self.outlineSearchButton.isHidden = true
  197. self.outlineMoreButton.isHidden = true
  198. self.outlineAddButton.isHidden = true
  199. self.outlineSearchField.becomeFirstResponder()
  200. }
  201. @IBAction func toc_expandAllComments(_ sender: AnyObject?) {
  202. if (self.tocType == .unfold) {
  203. return
  204. }
  205. self.tocType = .unfold
  206. self.tocOutlineView.reloadData()
  207. self.tocOutlineView.expandItem(nil, expandChildren: true)
  208. }
  209. @IBAction func toc_foldAllComments(_ sender: AnyObject?) {
  210. if (self.tocType == .fold) {
  211. return
  212. }
  213. self.tocType = .fold
  214. self.tocOutlineView.reloadData()
  215. self.tocOutlineView.collapseItem(nil, collapseChildren: true)
  216. }
  217. @objc func leftSideEmptyAnnotationClick_DeleteOutline(_ sender: AnyObject?) {
  218. let alert = NSAlert()
  219. alert.alertStyle = .critical
  220. alert.messageText = ""
  221. alert.informativeText = KMLocalizedString("This will permanently remove all outlines. Are you sure to continue?", nil)
  222. alert.addButton(withTitle: KMLocalizedString("Yes", nil))
  223. alert.addButton(withTitle: KMLocalizedString("No", nil))
  224. let response = alert.runModal()
  225. if response == .alertFirstButtonReturn {
  226. if let item = self.outlineRoot() {
  227. self.removeAllOutline(item)
  228. }
  229. }
  230. }
  231. func showSearchOutlineBlankState(_ toShowState: Bool) {
  232. if (toShowState) {
  233. let documentViewFrame = self.tocOutlineView.enclosingScrollView?.documentView?.frame ?? .zero
  234. let width = self.leftSideEmptyVC.outlineSearchView.bounds.size.width
  235. let height = self.leftSideEmptyVC.outlineSearchView.bounds.size.height
  236. self.leftSideEmptyVC.outlineSearchView.frame = CGRectMake((documentViewFrame.size.width - width)/2.0, (documentViewFrame.size.height - height)/2.0, width, height)
  237. self.tocOutlineView.enclosingScrollView?.documentView?.addSubview(self.leftSideEmptyVC.outlineSearchView)
  238. self.leftSideEmptyVC.outlineSearchView.autoresizingMask = [.minXMargin, .maxXMargin, .minYMargin, .maxYMargin]
  239. } else {
  240. self.leftSideEmptyVC.outlineSearchView.removeFromSuperview()
  241. }
  242. }
  243. func removeAllOutline(_ outline: CPDFOutline) {
  244. _ = self.setNewOutlineRoot()
  245. for i in 0 ..< self.pageCount() {
  246. self.pdfDocument()?.removeBookmark(forPageIndex: UInt(i))
  247. }
  248. self.layoutDocumentView()
  249. DispatchQueue.main.async {
  250. self.tocOutlineView.reloadData()
  251. }
  252. }
  253. func updateSelectRowHeight() {
  254. guard let ol = self.tocOutlineView.selectedItem() as? CPDFOutline else {
  255. return
  256. }
  257. let attriString = NSMutableAttributedString()
  258. let attri = [NSAttributedString.Key.foregroundColor : KMAppearance.Layout.h0Color()]
  259. attriString.append(.init(string: ol.label ?? "", attributes: attri))
  260. let row = self.tocOutlineView.selectedRow
  261. let column = self.tocOutlineView.tableColumn(withIdentifier: kLabelColumnId)
  262. let cell = column?.dataCell(forRow: row)
  263. (cell as? NSCell)?.objectValue = attriString
  264. let w = self.view.frame.size.width-86
  265. let num = self.getNum(ol)
  266. let gap = self.tocOutlineView.indentationPerLevel
  267. var rowH = ((cell as? NSCell)?.cellSize(forBounds: NSMakeRect(0, 0, w - (num > 0 ? 16 : 0) - gap * num.cgFloat, CGFLOAT_MAX)).height) ?? 0
  268. rowH = fmax(rowH, self.tocOutlineView.rowHeight) + 25
  269. let view = self.tocOutlineView.view(atColumn: 0, row: row, makeIfNecessary: true)
  270. let frame = view?.frame ?? .zero
  271. view?.frame = NSMakeRect(frame.origin.x, frame.origin.y, frame.size.width, rowH)
  272. self.tocOutlineView.reloadData()
  273. }
  274. func getNum(_ ol: CPDFOutline?) -> Int {
  275. var num = 0
  276. var outline = ol?.parent
  277. repeat {
  278. outline = outline?.parent
  279. if outline != nil {
  280. num += 1
  281. }
  282. } while outline != nil
  283. return num
  284. }
  285. func addOutlineAfter(_ ol: CPDFOutline) {
  286. if self.leftView.segmentedControl.selectedSegment == 1 {
  287. } else {
  288. self.leftView.segmentedControl.selectedSegment = 1
  289. }
  290. Task { @MainActor in
  291. self.tocOutlineView.reloadData()
  292. let idx = self.tocOutlineView.row(forItem: ol)
  293. self.tocOutlineView.km_selectItem(ol, byExtendingSelection: false)
  294. self.newAddOutlineEntryEditingMode(idx)
  295. }
  296. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  297. self.tocOutlineView.scrollRowToVisible(self.tocOutlineView.row(forItem: ol))
  298. }
  299. }
  300. func removeOutlineAfter(_ ol: CPDFOutline) {
  301. Task { @MainActor in
  302. self.tocOutlineView.reloadData()
  303. }
  304. }
  305. func demoteOutlineAfter(_ ol: CPDFOutline) {
  306. Task { @MainActor in
  307. self.tocOutlineView.reloadData()
  308. self.tocOutlineView.expandItem(ol.parent)
  309. self.tocOutlineView.km_selectItem(ol, byExtendingSelection: false)
  310. }
  311. }
  312. func promoteOutlineAfter(_ ol: CPDFOutline) {
  313. Task { @MainActor in
  314. self.tocOutlineView.reloadData()
  315. self.tocOutlineView.km_selectItem(ol, byExtendingSelection: false)
  316. }
  317. }
  318. func showOutlineEmptyView() {
  319. let view = self.tocOutlineView.enclosingScrollView?.documentView
  320. let viewFrame = view?.frame ?? .zero
  321. let emptyVcSize = self.leftSideEmptyVC.emptyOutlineView.frame.size
  322. self.leftSideEmptyVC.emptyOutlineView.frame = NSMakeRect((viewFrame.size.width-emptyVcSize.width)/2.0,(viewFrame.size.height-emptyVcSize.height)/2.0, emptyVcSize.width, emptyVcSize.height)
  323. self.leftSideEmptyVC.emptyOutlineView.autoresizingMask = [.minXMargin, .maxXMargin, .minYMargin, .maxYMargin]
  324. self.tocOutlineView.enclosingScrollView?.documentView?.addSubview(self.leftSideEmptyVC.emptyOutlineView)
  325. self.leftSideEmptyVC.deleteOutlineBtn.isEnabled = false
  326. }
  327. func hideOutlineEmptyView() {
  328. self.leftSideEmptyVC.emptyOutlineView.removeFromSuperview()
  329. self.leftSideEmptyVC.deleteOutlineBtn.isEnabled = true
  330. }
  331. func fetchOutlines(for ol: CPDFOutline, searchString: String) -> [CPDFOutline] {
  332. var ols: [CPDFOutline] = []
  333. for i in 0 ..< ol.numberOfChildren {
  334. guard let child = ol.child(at: i) else {
  335. continue
  336. }
  337. if self.hasContainString(searchString, rootOutline: child) {
  338. ols.append(child)
  339. }
  340. }
  341. return ols
  342. }
  343. @objc func goToSelectedOutlineItem(_ sender: AnyObject?) {
  344. let cnt = self.tocOutlineView.selectedRowIndexes.count
  345. if cnt == 0 || cnt > 1 {
  346. return
  347. }
  348. guard let item = self.tocOutlineView.selectedItem() else {
  349. return
  350. }
  351. if let bk = item as? CPDFBookmark {
  352. self.listView?.go(toPageIndex: bk.pageIndex, animated: true)
  353. } else if let ol = item as? CPDFOutline {
  354. if let dest = ol.destination {
  355. self.listView?.go(to: dest)
  356. } else if let act = ol.action {
  357. if !self.isFirst {
  358. self.listView?.perform(act)
  359. }
  360. }
  361. }
  362. self.isFirst = false
  363. }
  364. public func refreshUIOfOutlineIfNeed() {
  365. if self.type.methodType != .Outline {
  366. return
  367. }
  368. Task { @MainActor in
  369. self.tocOutlineView.reloadData()
  370. }
  371. }
  372. }
  373. // MARK: - Undo & Redo
  374. extension KMLeftSideViewController {
  375. @objc dynamic func changePDFOutlineDestination(_ destination: CPDFDestination?, PDFoutline outline: CPDFOutline) {
  376. if let des = destination {
  377. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).changePDFOutlineDestination(outline.destination, PDFoutline: outline)
  378. let newDes = CPDFDestination(document: des.document, pageIndex: des.pageIndex, at: des.point, zoom: des.zoom)
  379. outline.destination = newDes
  380. self.tocOutlineView.reloadItem(outline)
  381. }
  382. }
  383. @objc dynamic func changePDFAction(_ action: CPDFAction?, PDFOutline outline: CPDFOutline) {
  384. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).changePDFAction(outline.action, PDFOutline: outline)
  385. outline.action = action
  386. }
  387. @objc dynamic func renamePDFOutline(_ outline: CPDFOutline, label: String) {
  388. if (self.isRenameNoteOutline) {
  389. if outline is CPDFAnnotation {
  390. // if([outline isKindOfClass:[PDFAnnotation class]]) {
  391. // PDFAnnotation *annotation = (PDFAnnotation *)outline;
  392. // annotation.string = label;
  393. // [rightSideController.noteOutlineView reloadData];
  394. // [rightSideController.noteOutlineView selectRowIndexes:[[[NSIndexSet alloc] initWithIndex:[rightSideController.noteOutlineView rowForItem:outline]] autorelease] byExtendingSelection:NO];
  395. }
  396. } else {
  397. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).renamePDFOutline(outline, label: outline.label)
  398. outline.label = label
  399. self.tocOutlineView.reloadData()
  400. self.tocOutlineView.km_selectItem(outline, byExtendingSelection: false)
  401. }
  402. }
  403. @objc dynamic func addoutline(parent parentOutline: CPDFOutline?, addOutline: CPDFOutline, index: Int, needExpand: Bool) {
  404. var tempO: CPDFOutline? = addOutline
  405. if addOutline.label != nil {
  406. parentOutline?.insertChild(addOutline, at: UInt(index))
  407. } else {
  408. let outline = parentOutline?.km_insertChild(label: String(format: "%@ %ld", KMLocalizedString("Page", nil), self.currentPageIndex()+1), dest: self.currentDestination(), at: index)
  409. tempO = outline
  410. }
  411. guard let outline = tempO else {
  412. return
  413. }
  414. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).removeOutline(parent: parentOutline, removeOutline: outline, index: index, needExpand: needExpand)
  415. self.view.window?.makeFirstResponder(nil)
  416. Task { @MainActor in
  417. self.tocOutlineView.reloadData()
  418. if (needExpand) {
  419. self.tocOutlineView.expandItem(parentOutline)
  420. }
  421. let idx = self.tocOutlineView.row(forItem: outline)
  422. self.tocOutlineView.selectRowIndexes(IndexSet(integer: idx), byExtendingSelection: false)
  423. self.newAddOutlineEntryEditingMode(index)
  424. }
  425. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  426. self.tocOutlineView.scrollRowToVisible(self.tocOutlineView.row(forItem: outline))
  427. }
  428. }
  429. @objc dynamic func removeOutline(parent parentOutline: CPDFOutline?, removeOutline: CPDFOutline, index: Int, needExpand: Bool) {
  430. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).addoutline(parent: parentOutline, addOutline: removeOutline, index: index, needExpand: true)
  431. removeOutline.removeFromParent()
  432. if (needExpand) {
  433. self.tocOutlineView.expandItem(parentOutline)
  434. }
  435. Task { @MainActor in
  436. self.tocOutlineView.reloadData()
  437. }
  438. }
  439. @objc dynamic func dragPDFOutline(_ outline: CPDFOutline?, toIndex index: Int, newParentOutline: CPDFOutline?) {
  440. guard let doc = self.view.window?.windowController?.document as? NSDocument else {
  441. NSSound.beep()
  442. return
  443. }
  444. if outline == nil {
  445. NSSound.beep()
  446. return
  447. }
  448. (doc.undoManager?.prepare(withInvocationTarget: self) as AnyObject).dragPDFOutline(outline, toIndex: Int(outline!.index), newParentOutline: outline?.parent)
  449. outline?.removeFromParent()
  450. newParentOutline?.insertChild(outline, at: UInt(index))
  451. self.tocOutlineView.reloadData()
  452. self.tocOutlineView.expandItem(newParentOutline)
  453. self.tocOutlineView.selectRowIndexes(IndexSet(integer: self.tocOutlineView.row(forItem: outline)), byExtendingSelection: false)
  454. }
  455. }
  456. // MARK: - Menu Actions
  457. extension KMLeftSideViewController {
  458. func outlineListMenu(_ menu: NSMenu) {
  459. _ = menu.addItem(withTitle: NSLocalizedString("Add Item", comment: ""), action: #selector(outlineContextMenuItemClicked_AddEntry), target: self, tag: KMOutlineViewMenuItemTag.addEntry.rawValue)
  460. _ = menu.addItem(withTitle: NSLocalizedString("Add Sub-Item", comment: ""), action: #selector(outlineContextMenuItemClicked_AddChildEntry), target: self, tag: KMOutlineViewMenuItemTag.addChild.rawValue)
  461. _ = menu.addItem(withTitle: NSLocalizedString("Add To A Higher Level", comment: ""), action: #selector(outlineContextMenuItemClicked_AddAuntEntry), target: self, tag: KMOutlineViewMenuItemTag.addAunt.rawValue)
  462. menu.addItem(.separator())
  463. _ = menu.addItem(withTitle: NSLocalizedString("Delete", comment: ""), action: #selector(outlineContextMenuItemClicked_RemoveEntry), target: self, tag: KMOutlineViewMenuItemTag.remove.rawValue)
  464. menu.addItem(.separator())
  465. _ = menu.addItem(withTitle: NSLocalizedString("Edit", comment: ""), action: #selector(outlineContextMenuItemClicked_Edit), target: self, tag: KMOutlineViewMenuItemTag.edit.rawValue)
  466. _ = menu.addItem(withTitle: NSLocalizedString("Change Destination", comment: ""), action: #selector(outlineContextMenuItemClicked_SetDestination), target: self, tag: KMOutlineViewMenuItemTag.setDestination.rawValue)
  467. _ = menu.addItem(withTitle: NSLocalizedString("Rename", comment: ""), action: #selector(outlineContextMenuItemClicked_Rename), target: self, tag: KMOutlineViewMenuItemTag.rename.rawValue)
  468. menu.addItem(.separator())
  469. _ = menu.addItem(withTitle: NSLocalizedString("Promote", comment: ""), action: #selector(outlineContextMenuItemClicked_Promote), target: self, tag: KMOutlineViewMenuItemTag.promote.rawValue)
  470. _ = menu.addItem(withTitle: NSLocalizedString("Demote", comment: ""), action: #selector(outlineContextMenuItemClicked_Demote), target: self, tag: KMOutlineViewMenuItemTag.demote.rawValue)
  471. }
  472. func outlineMoreMenu(_ view: NSButton) {
  473. let menu = NSMenu()
  474. let expandAllItem = menu.addItem(title: KMLocalizedString("Expand All", nil), action: #selector(toc_expandAllComments), target: self)
  475. expandAllItem?.representedObject = self.tocOutlineView
  476. let foldAllItem = menu.addItem(title: KMLocalizedString("Collapse All", nil), action: #selector(toc_foldAllComments), target: self)
  477. foldAllItem?.representedObject = self.tocOutlineView
  478. let rootOL = self.outlineRoot()
  479. let childNum = rootOL?.numberOfChildren ?? 0
  480. var num = 0
  481. for i in 0 ..< childNum {
  482. let ol = rootOL?.child(at: i)
  483. if self.tocOutlineView.isItemExpanded(ol) {
  484. num += 1
  485. }
  486. }
  487. self.tocType = .none
  488. if childNum > 0 {
  489. if num == 0 {
  490. self.tocType = .fold
  491. } else if num == childNum {
  492. self.tocType = .unfold
  493. }
  494. }
  495. expandAllItem?.state = self.tocType == .unfold ? .on : .off
  496. foldAllItem?.state = self.tocType == .fold ? .on : .off
  497. let removeEntryItem = menu.addItem(title: KMLocalizedString("Remove All Outlines", nil), action: #selector(leftSideEmptyAnnotationClick_DeleteOutline), target: self)
  498. removeEntryItem?.representedObject = self.tocOutlineView
  499. if let data = NSApp.currentEvent {
  500. NSMenu.popUpContextMenu(menu, with: data, for: view)
  501. }
  502. }
  503. func outlineListValidateMenuItem(_ menuItem: NSMenuItem) -> Bool {
  504. if self.isLocked() {
  505. return false
  506. }
  507. let action = menuItem.action
  508. if (action == #selector(leftSideEmptyAnnotationClick_DeleteOutline)) {
  509. guard let rootOL = self.outlineRoot() else {
  510. return false
  511. }
  512. let childNum = rootOL.numberOfChildren
  513. if (self.isSearchOutlineMode) {
  514. let ols = self.fetchOutlines(for: rootOL, searchString: self.outlineSearchField.stringValue)
  515. return ols.count > 0
  516. } else {
  517. return childNum > 0
  518. }
  519. } else if action == #selector(toggleOutlineCaseInsensitiveSearch) {
  520. menuItem.state = self.outlineIgnoreCaseFlag ? .on : .off
  521. return true
  522. }
  523. if (self.isSearchOutlineMode) {
  524. if (action == #selector(outlineContextMenuItemClicked_AddEntry) ||
  525. action == #selector(outlineContextMenuItemClicked_AddChildEntry) ||
  526. action == #selector(outlineContextMenuItemClicked_AddAuntEntry) ||
  527. action == #selector(outlineContextMenuItemClicked_Edit) ||
  528. action == #selector(outlineContextMenuItemClicked_Rename)
  529. ) {
  530. return false
  531. }
  532. }
  533. if (self.tocOutlineView.selectedRowIndexes.count > 1) {
  534. if (menuItem.tag == KMOutlineViewMenuItemTag.remove.rawValue) {
  535. return true
  536. }
  537. return false
  538. } else if (self.tocOutlineView.selectedRowIndexes.count > 0) {
  539. if (action == #selector(outlineContextMenuItemClicked_AddChildEntry) ||
  540. action == #selector(outlineContextMenuItemClicked_SetDestination)) {
  541. return true
  542. }
  543. }
  544. if (self.tocOutlineView.clickedRow == -1) {
  545. if (action == #selector(outlineContextMenuItemClicked_AddEntry)) {
  546. return true
  547. } else {
  548. return false
  549. }
  550. } else {
  551. let clickedOutline = self.tocOutlineView.item(atRow: self.tocOutlineView.clickedRow) as? CPDFOutline
  552. if (action == #selector(outlineContextMenuItemClicked_Demote)) {
  553. if let data = clickedOutline {
  554. return self.pdfDocument()?.canDemote(outline: data) ?? false
  555. }
  556. return false
  557. }
  558. if (action == #selector(outlineContextMenuItemClicked_Promote)) {
  559. if let data = clickedOutline {
  560. return self.pdfDocument()?.canPromote(outline: data) ?? false
  561. } else {
  562. return false
  563. }
  564. }
  565. if (action == #selector(outlineContextMenuItemClicked_AddAuntEntry)) {
  566. let parentOutLine = clickedOutline?.parent
  567. let grandparentOutLine = parentOutLine?.parent
  568. if (grandparentOutLine != nil) {
  569. return true
  570. } else {
  571. return false
  572. }
  573. }
  574. }
  575. return true
  576. }
  577. //添加子节点
  578. @objc func outlineContextMenuItemClicked_AddChildEntry(_ sender: AnyObject?) {
  579. guard let row = self.selectedRowIndexes().last else {
  580. return
  581. }
  582. let item = self.tocOutlineView.item(atRow: row) as? CPDFOutline
  583. let ol = CPDFOutline()
  584. ol.label = String(format: "%@ %ld", KMLocalizedString("Page", nil), "\(self.currentPageIndex() + 1)")
  585. ol.destination = self.currentDestination()
  586. self.addoutline(parent: item, addOutline: ol, index: Int(item?.numberOfChildren ?? 0), needExpand: true)
  587. }
  588. //添加上一级节点
  589. @objc func outlineContextMenuItemClicked_AddAuntEntry(_ sender: AnyObject?) {
  590. guard let row = self.selectedRowIndexes().last else {
  591. return
  592. }
  593. let item = self.tocOutlineView.item(atRow: row) as? CPDFOutline
  594. let parentOL = item?.parent
  595. if parentOL?.parent != nil {
  596. let ol = CPDFOutline()
  597. ol.label = String(format: "%@ %ld", KMLocalizedString("Page", nil), "\(self.currentPageIndex() + 1)")
  598. ol.destination = self.currentDestination()
  599. self.addoutline(parent: parentOL?.parent, addOutline: ol, index: Int(parentOL?.index ?? 0) + 1, needExpand: false)
  600. }
  601. }
  602. //移除节点
  603. @objc func outlineContextMenuItemClicked_RemoveEntry(_ sender: AnyObject?) {
  604. for idx in self.selectedRowIndexes() {
  605. let item = self.tocOutlineView.item(atRow: idx)
  606. if let ol = item as? CPDFOutline {
  607. self.removeOutline(parent: ol.parent , removeOutline: ol, index: Int(ol.index), needExpand: false)
  608. }
  609. }
  610. }
  611. //重置目的
  612. @objc func outlineContextMenuItemClicked_SetDestination(_ sender: AnyObject?) {
  613. guard let ol = self.tocOutlineView.clickedItem() as? CPDFOutline else {
  614. return
  615. }
  616. Task {
  617. let res = await KMAlertTool.runModel(style: .informational, message: KMLocalizedString("Are you sure you want to set the destination as the current location?", nil), buttons: [KMLocalizedString("Yes", nil), KMLocalizedString("No", nil)])
  618. if (res == .alertFirstButtonReturn) {
  619. self.changePDFOutlineDestination(self.currentDestination(), PDFoutline: ol)
  620. let idx = self.tocOutlineView.row(forItem: ol)
  621. self.tocOutlineView.km_safe_selectRowIndexes(.init(integer: idx), byExtendingSelection: false)
  622. }
  623. }
  624. }
  625. //弹出菜单
  626. @objc func outlineContextMenuItemClicked_Edit(_ sender: AnyObject?) {
  627. let popover = NSPopover()
  628. popover.delegate = self
  629. let ol: CPDFOutline? = self.tocOutlineView.km.clickedItem()
  630. let vc = KMOutlineEditViewController(outline: ol, document: self.listView)
  631. if let cell = self.tocOutlineView.rowView(atRow: self.tocOutlineView.clickedRow, makeIfNecessary: true) {
  632. popover.contentViewController = vc
  633. popover.animates = true
  634. popover.behavior = .transient
  635. popover.show(relativeTo: cell.bounds, of: cell, preferredEdge: .minX)
  636. }
  637. }
  638. //重命名
  639. @objc func outlineContextMenuItemClicked_Rename(_ sender: AnyObject?) {
  640. if (self.tocOutlineView.clickedRow < 0) {
  641. return
  642. }
  643. self.renamePDFOutline = self.tocOutlineView.km.clickedItem()
  644. let cell = self.tocOutlineView.view(atColumn: 0, row: self.tocOutlineView.clickedRow, makeIfNecessary: true)
  645. let tf = cell?.subviews.first as? NSTextField
  646. self.renamePDFOutlineTextField = tf
  647. tf?.delegate = self
  648. tf?.isEditable = true
  649. tf?.becomeFirstResponder()
  650. }
  651. //降级节点
  652. @objc func outlineContextMenuItemClicked_Demote(_ sender: AnyObject?) {
  653. self.delegate?.controller?(controller: self, itemClick: sender, itemKey: .demote, params: nil)
  654. }
  655. //升级节点
  656. @objc func outlineContextMenuItemClicked_Promote(_ sender: AnyObject?) {
  657. self.delegate?.controller?(controller: self, itemClick: sender, itemKey: .promote, params: nil)
  658. }
  659. @objc func toggleOutlineCaseInsensitiveSearch(_ sender: NSMenuItem) {
  660. if (sender.state == .on) {
  661. self.outlineIgnoreCaseFlag = false
  662. } else {
  663. self.outlineIgnoreCaseFlag = true
  664. }
  665. if (self.outlineSearchField.stringValue.isEmpty == false) {
  666. self.tocOutlineView.reloadData()
  667. self.tocOutlineView.expandItem(nil, expandChildren: true)
  668. }
  669. }
  670. }
  671. // MARK: - KMTocOutlineViewDelegate
  672. extension KMLeftSideViewController: KMTocOutlineViewDelegate {
  673. func outlineView(_ anOutlineView: NSOutlineView, highlightLevelForRow row: Int) -> Int {
  674. if self.tocOutlineView.isEqual(to: anOutlineView) {
  675. let numRows = anOutlineView.numberOfRows
  676. if let outline = anOutlineView.item(atRow: row) as? CPDFOutline {
  677. let firstPage = outline.km_pageIndex
  678. var lastPage = self.pageCount()
  679. if row + 1 < numRows {
  680. lastPage = Int((anOutlineView.item(atRow: row + 1) as? CPDFOutline)?.km_pageIndex ?? UInt(NSNotFound))
  681. }
  682. // NSRange range = NSMakeRange(firstPage, MAX(1LU, lastPage - firstPage));
  683. // NSUInteger i, iMax = [lastViewedPages count];
  684. // for (i = 0; i < iMax; i++) {
  685. // if (NSLocationInRange((NSUInteger)[lastViewedPages pointerAtIndex:i], range))
  686. // return i;
  687. // }
  688. }
  689. }
  690. return NSNotFound
  691. }
  692. func outlineView(_ anOutlineView: NSOutlineView, imageContextForItem item: Any?) -> AnyObject? {
  693. if anOutlineView.isEqual(to: self.tocOutlineView) {
  694. if item == nil {
  695. return true as AnyObject
  696. }
  697. if item is CPDFOutline {
  698. return (item as! CPDFOutline).destination
  699. }
  700. }
  701. return nil
  702. }
  703. }
  704. extension KMLeftSideViewController: KMNoteOutlineViewDelegate {
  705. func outlineView(_ anOutlineView: NSOutlineView, canResizeRowByItem item: AnyObject?) -> Bool? {
  706. if anOutlineView.isEqual(to: self.noteOutlineView) {
  707. return true
  708. }
  709. return false
  710. }
  711. func outlineView(_ anOutlineView: NSOutlineView, setHeight newHeight: CGFloat, ofRowByItem item: AnyObject?) {
  712. // [rowHeights setFloat:newHeight forKey:item];
  713. }
  714. func outlineView(_ anOutlineView: NSOutlineView, didChangeHiddenOfTableColumn aTableColumn: NSTableColumn) {
  715. // if (mwcFlags.autoResizeNoteRows &&
  716. // [ov isEqual:rightSideController.noteOutlineView] &&
  717. // [[tableColumn identifier] isEqualToString:NOTE_COLUMNID]) {
  718. // [rowHeights removeAllFloats];
  719. // [rightSideController.noteOutlineView noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, [rightSideController.noteOutlineView numberOfRows])]];
  720. // }
  721. }
  722. func outlineViewCommandKeyPressedDuringNavigation(_ anOutlineView: NSOutlineView) {
  723. // PDFAnnotation *annotation = [[self selectedNotes] lastObject];
  724. // if (annotation) {
  725. // [pdfView scrollAnnotationToVisible:annotation];
  726. // [pdfView setActiveAnnotation:annotation];
  727. // }
  728. }
  729. }