KMLeftSideViewController+Outline.swift 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  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
  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. self.listView?.perform(act)
  358. }
  359. }
  360. }
  361. }
  362. // MARK: - Undo & Redo
  363. extension KMLeftSideViewController {
  364. @objc dynamic func changePDFOutlineDestination(_ destination: CPDFDestination?, PDFoutline outline: CPDFOutline) {
  365. if let des = destination {
  366. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).changePDFOutlineDestination(outline.destination, PDFoutline: outline)
  367. let newDes = CPDFDestination(document: des.document, pageIndex: des.pageIndex, at: des.point, zoom: des.zoom)
  368. outline.destination = newDes
  369. self.tocOutlineView.reloadItem(outline)
  370. }
  371. }
  372. @objc dynamic func changePDFAction(_ action: CPDFAction?, PDFOutline outline: CPDFOutline) {
  373. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).changePDFAction(outline.action, PDFOutline: outline)
  374. outline.action = action
  375. }
  376. @objc dynamic func renamePDFOutline(_ outline: CPDFOutline, label: String) {
  377. if (self.isRenameNoteOutline) {
  378. if outline is CPDFAnnotation {
  379. // if([outline isKindOfClass:[PDFAnnotation class]]) {
  380. // PDFAnnotation *annotation = (PDFAnnotation *)outline;
  381. // annotation.string = label;
  382. // [rightSideController.noteOutlineView reloadData];
  383. // [rightSideController.noteOutlineView selectRowIndexes:[[[NSIndexSet alloc] initWithIndex:[rightSideController.noteOutlineView rowForItem:outline]] autorelease] byExtendingSelection:NO];
  384. }
  385. } else {
  386. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).renamePDFOutline(outline, label: outline.label)
  387. outline.label = label
  388. self.tocOutlineView.reloadData()
  389. self.tocOutlineView.km_selectItem(outline, byExtendingSelection: false)
  390. }
  391. }
  392. @objc dynamic func addoutline(parent parentOutline: CPDFOutline?, addOutline: CPDFOutline, index: Int, needExpand: Bool) {
  393. var tempO: CPDFOutline? = addOutline
  394. if addOutline.label != nil {
  395. parentOutline?.insertChild(addOutline, at: UInt(index))
  396. } else {
  397. let outline = parentOutline?.km_insertChild(label: String(format: "%@ %ld", KMLocalizedString("Page", nil), self.currentPageIndex()+1), dest: self.currentDestination(), at: index)
  398. tempO = outline
  399. }
  400. guard let outline = tempO else {
  401. return
  402. }
  403. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).removeOutline(parent: parentOutline, removeOutline: outline, index: index, needExpand: needExpand)
  404. self.view.window?.makeFirstResponder(nil)
  405. Task { @MainActor in
  406. self.tocOutlineView.reloadData()
  407. if (needExpand) {
  408. self.tocOutlineView.expandItem(parentOutline)
  409. }
  410. let idx = self.tocOutlineView.row(forItem: outline)
  411. self.tocOutlineView.selectRowIndexes(IndexSet(integer: idx), byExtendingSelection: false)
  412. self.newAddOutlineEntryEditingMode(index)
  413. }
  414. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  415. self.tocOutlineView.scrollRowToVisible(self.tocOutlineView.row(forItem: outline))
  416. }
  417. }
  418. @objc dynamic func removeOutline(parent parentOutline: CPDFOutline?, removeOutline: CPDFOutline, index: Int, needExpand: Bool) {
  419. (self.listView?.undoManager?.prepare(withInvocationTarget: self) as AnyObject).addoutline(parent: parentOutline, addOutline: removeOutline, index: index, needExpand: true)
  420. removeOutline.removeFromParent()
  421. if (needExpand) {
  422. self.tocOutlineView.expandItem(parentOutline)
  423. }
  424. Task { @MainActor in
  425. self.tocOutlineView.reloadData()
  426. }
  427. }
  428. @objc dynamic func dragPDFOutline(_ outline: CPDFOutline?, toIndex index: Int, newParentOutline: CPDFOutline?) {
  429. guard let doc = self.view.window?.windowController?.document as? NSDocument else {
  430. NSSound.beep()
  431. return
  432. }
  433. if outline == nil {
  434. NSSound.beep()
  435. return
  436. }
  437. (doc.undoManager?.prepare(withInvocationTarget: self) as AnyObject).dragPDFOutline(outline, toIndex: Int(outline!.index), newParentOutline: outline?.parent)
  438. outline?.removeFromParent()
  439. newParentOutline?.insertChild(outline, at: UInt(index))
  440. self.tocOutlineView.reloadData()
  441. self.tocOutlineView.expandItem(newParentOutline)
  442. self.tocOutlineView.selectRowIndexes(IndexSet(integer: self.tocOutlineView.row(forItem: outline)), byExtendingSelection: false)
  443. }
  444. }
  445. // MARK: - Menu Actions
  446. extension KMLeftSideViewController {
  447. func outlineListMenu(_ menu: NSMenu) {
  448. _ = menu.addItem(withTitle: NSLocalizedString("Add Item", comment: ""), action: #selector(outlineContextMenuItemClicked_AddEntry), target: self, tag: KMOutlineViewMenuItemTag.addEntry.rawValue)
  449. _ = menu.addItem(withTitle: NSLocalizedString("Add Sub-Item", comment: ""), action: #selector(outlineContextMenuItemClicked_AddChildEntry), target: self, tag: KMOutlineViewMenuItemTag.addChild.rawValue)
  450. _ = menu.addItem(withTitle: NSLocalizedString("Add To A Higher Level", comment: ""), action: #selector(outlineContextMenuItemClicked_AddAuntEntry), target: self, tag: KMOutlineViewMenuItemTag.addAunt.rawValue)
  451. menu.addItem(.separator())
  452. _ = menu.addItem(withTitle: NSLocalizedString("Delete", comment: ""), action: #selector(outlineContextMenuItemClicked_RemoveEntry), target: self, tag: KMOutlineViewMenuItemTag.remove.rawValue)
  453. menu.addItem(.separator())
  454. _ = menu.addItem(withTitle: NSLocalizedString("Edit", comment: ""), action: #selector(outlineContextMenuItemClicked_Edit), target: self, tag: KMOutlineViewMenuItemTag.edit.rawValue)
  455. _ = menu.addItem(withTitle: NSLocalizedString("Change Destination", comment: ""), action: #selector(outlineContextMenuItemClicked_SetDestination), target: self, tag: KMOutlineViewMenuItemTag.setDestination.rawValue)
  456. _ = menu.addItem(withTitle: NSLocalizedString("Rename", comment: ""), action: #selector(outlineContextMenuItemClicked_Rename), target: self, tag: KMOutlineViewMenuItemTag.rename.rawValue)
  457. menu.addItem(.separator())
  458. _ = menu.addItem(withTitle: NSLocalizedString("Promote", comment: ""), action: #selector(outlineContextMenuItemClicked_Promote), target: self, tag: KMOutlineViewMenuItemTag.promote.rawValue)
  459. _ = menu.addItem(withTitle: NSLocalizedString("Demote", comment: ""), action: #selector(outlineContextMenuItemClicked_Demote), target: self, tag: KMOutlineViewMenuItemTag.demote.rawValue)
  460. }
  461. func outlineMoreMenu(_ view: NSButton) {
  462. let menu = NSMenu()
  463. let expandAllItem = menu.addItem(title: KMLocalizedString("Expand All", nil), action: #selector(toc_expandAllComments), target: self)
  464. expandAllItem?.representedObject = self.tocOutlineView
  465. let foldAllItem = menu.addItem(title: KMLocalizedString("Collapse All", nil), action: #selector(toc_foldAllComments), target: self)
  466. foldAllItem?.representedObject = self.tocOutlineView
  467. let rootOL = self.outlineRoot()
  468. let childNum = rootOL?.numberOfChildren ?? 0
  469. var num = 0
  470. for i in 0 ..< childNum {
  471. let ol = rootOL?.child(at: i)
  472. if self.tocOutlineView.isItemExpanded(ol) {
  473. num += 1
  474. }
  475. }
  476. self.tocType = .none
  477. if childNum > 0 {
  478. if num == 0 {
  479. self.tocType = .fold
  480. } else if num == childNum {
  481. self.tocType = .unfold
  482. }
  483. }
  484. expandAllItem?.state = self.tocType == .unfold ? .on : .off
  485. foldAllItem?.state = self.tocType == .fold ? .on : .off
  486. let removeEntryItem = menu.addItem(title: KMLocalizedString("Remove All Outlines", nil), action: #selector(leftSideEmptyAnnotationClick_DeleteOutline), target: self)
  487. removeEntryItem?.representedObject = self.tocOutlineView
  488. if let data = NSApp.currentEvent {
  489. NSMenu.popUpContextMenu(menu, with: data, for: view)
  490. }
  491. }
  492. func outlineListValidateMenuItem(_ menuItem: NSMenuItem) -> Bool {
  493. if self.isLocked() {
  494. return false
  495. }
  496. let action = menuItem.action
  497. if (action == #selector(leftSideEmptyAnnotationClick_DeleteOutline)) {
  498. guard let rootOL = self.outlineRoot() else {
  499. return false
  500. }
  501. let childNum = rootOL.numberOfChildren
  502. if (self.isSearchOutlineMode) {
  503. let ols = self.fetchOutlines(for: rootOL, searchString: self.outlineSearchField.stringValue)
  504. return ols.count > 0
  505. } else {
  506. return childNum > 0
  507. }
  508. }
  509. if (self.isSearchOutlineMode) {
  510. if (action == #selector(outlineContextMenuItemClicked_AddEntry) ||
  511. action == #selector(outlineContextMenuItemClicked_AddChildEntry) ||
  512. action == #selector(outlineContextMenuItemClicked_AddAuntEntry) ||
  513. action == #selector(outlineContextMenuItemClicked_Edit) ||
  514. action == #selector(outlineContextMenuItemClicked_Rename)
  515. ) {
  516. return false
  517. }
  518. }
  519. if (self.tocOutlineView.selectedRowIndexes.count > 1) {
  520. if (menuItem.tag == KMOutlineViewMenuItemTag.remove.rawValue) {
  521. return true
  522. }
  523. return false
  524. } else if (self.tocOutlineView.selectedRowIndexes.count > 0) {
  525. if (action == #selector(outlineContextMenuItemClicked_AddChildEntry) ||
  526. action == #selector(outlineContextMenuItemClicked_SetDestination)) {
  527. return true
  528. }
  529. }
  530. if (self.tocOutlineView.clickedRow == -1) {
  531. if (action == #selector(outlineContextMenuItemClicked_AddEntry)) {
  532. return true
  533. } else {
  534. return false
  535. }
  536. } else {
  537. let clickedOutline = self.tocOutlineView.item(atRow: self.tocOutlineView.clickedRow) as? CPDFOutline
  538. if (action == #selector(outlineContextMenuItemClicked_Demote)) {
  539. if let data = clickedOutline {
  540. return self.pdfDocument()?.canDemote(outline: data) ?? false
  541. }
  542. return false
  543. }
  544. if (action == #selector(outlineContextMenuItemClicked_Promote)) {
  545. if let data = clickedOutline {
  546. return self.pdfDocument()?.canPromote(outline: data) ?? false
  547. } else {
  548. return false
  549. }
  550. }
  551. if (action == #selector(outlineContextMenuItemClicked_AddAuntEntry)) {
  552. let parentOutLine = clickedOutline?.parent
  553. let grandparentOutLine = parentOutLine?.parent
  554. if (grandparentOutLine != nil) {
  555. return true
  556. } else {
  557. return false
  558. }
  559. }
  560. }
  561. return true
  562. }
  563. //添加子节点
  564. @objc func outlineContextMenuItemClicked_AddChildEntry(_ sender: AnyObject?) {
  565. guard let row = self.selectedRowIndexes().last else {
  566. return
  567. }
  568. let item = self.tocOutlineView.item(atRow: row) as? CPDFOutline
  569. let ol = CPDFOutline()
  570. ol.label = String(format: "%@ %ld", KMLocalizedString("Page", nil), "\(self.currentPageIndex() + 1)")
  571. ol.destination = self.currentDestination()
  572. self.addoutline(parent: item, addOutline: ol, index: Int(item?.numberOfChildren ?? 0), needExpand: true)
  573. }
  574. //添加上一级节点
  575. @objc func outlineContextMenuItemClicked_AddAuntEntry(_ sender: AnyObject?) {
  576. guard let row = self.selectedRowIndexes().last else {
  577. return
  578. }
  579. let item = self.tocOutlineView.item(atRow: row) as? CPDFOutline
  580. let parentOL = item?.parent
  581. if parentOL?.parent != nil {
  582. let ol = CPDFOutline()
  583. ol.label = String(format: "%@ %ld", KMLocalizedString("Page", nil), "\(self.currentPageIndex() + 1)")
  584. ol.destination = self.currentDestination()
  585. self.addoutline(parent: parentOL?.parent, addOutline: ol, index: Int(parentOL?.index ?? 0) + 1, needExpand: false)
  586. }
  587. }
  588. //移除节点
  589. @objc func outlineContextMenuItemClicked_RemoveEntry(_ sender: AnyObject?) {
  590. for idx in self.selectedRowIndexes() {
  591. let item = self.tocOutlineView.item(atRow: idx)
  592. if let ol = item as? CPDFOutline {
  593. self.removeOutline(parent: ol.parent , removeOutline: ol, index: Int(ol.index), needExpand: false)
  594. }
  595. }
  596. }
  597. //重置目的
  598. @objc func outlineContextMenuItemClicked_SetDestination(_ sender: AnyObject?) {
  599. guard let ol = self.tocOutlineView.clickedItem() as? CPDFOutline else {
  600. return
  601. }
  602. Task {
  603. 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)])
  604. if (res == .alertFirstButtonReturn) {
  605. self.changePDFOutlineDestination(self.currentDestination(), PDFoutline: ol)
  606. let idx = self.tocOutlineView.row(forItem: ol)
  607. self.tocOutlineView.km_safe_selectRowIndexes(.init(integer: idx), byExtendingSelection: false)
  608. }
  609. }
  610. }
  611. //弹出菜单
  612. @objc func outlineContextMenuItemClicked_Edit(_ sender: AnyObject?) {
  613. let popover = NSPopover()
  614. popover.delegate = self
  615. let ol: CPDFOutline? = self.tocOutlineView.km.clickedItem()
  616. let vc = KMOutlineEditViewController(outline: ol, document: self.listView)
  617. if let cell = self.tocOutlineView.rowView(atRow: self.tocOutlineView.clickedRow, makeIfNecessary: true) {
  618. popover.contentViewController = vc
  619. popover.animates = true
  620. popover.behavior = .transient
  621. popover.show(relativeTo: cell.bounds, of: cell, preferredEdge: .minX)
  622. }
  623. }
  624. //重命名
  625. @objc func outlineContextMenuItemClicked_Rename(_ sender: AnyObject?) {
  626. if (self.tocOutlineView.clickedRow < 0) {
  627. return
  628. }
  629. self.renamePDFOutline = self.tocOutlineView.km.clickedItem()
  630. let cell = self.tocOutlineView.view(atColumn: 0, row: self.tocOutlineView.clickedRow, makeIfNecessary: true)
  631. let tf = cell?.subviews.first as? NSTextField
  632. self.renamePDFOutlineTextField = tf
  633. tf?.delegate = self
  634. tf?.isEditable = true
  635. tf?.becomeFirstResponder()
  636. }
  637. //降级节点
  638. @objc func outlineContextMenuItemClicked_Demote(_ sender: AnyObject?) {
  639. self.delegate?.controller?(controller: self, itemClick: sender, itemKey: .demote, params: nil)
  640. }
  641. //升级节点
  642. @objc func outlineContextMenuItemClicked_Promote(_ sender: AnyObject?) {
  643. self.delegate?.controller?(controller: self, itemClick: sender, itemKey: .promote, params: nil)
  644. }
  645. @objc func toggleOutlineCaseInsensitiveSearch(_ sender: NSMenuItem) {
  646. if (sender.state == .on) {
  647. self.outlineIgnoreCaseFlag = false
  648. } else {
  649. self.outlineIgnoreCaseFlag = true
  650. }
  651. if (self.outlineSearchField.stringValue.isEmpty == false) {
  652. self.tocOutlineView.reloadData()
  653. self.tocOutlineView.expandItem(nil, expandChildren: true)
  654. }
  655. }
  656. }
  657. // MARK: - KMTocOutlineViewDelegate
  658. extension KMLeftSideViewController: KMTocOutlineViewDelegate {
  659. func outlineView(_ anOutlineView: NSOutlineView, highlightLevelForRow row: Int) -> Int {
  660. if self.tocOutlineView.isEqual(to: anOutlineView) {
  661. let numRows = anOutlineView.numberOfRows
  662. if let outline = anOutlineView.item(atRow: row) as? CPDFOutline {
  663. let firstPage = outline.km_pageIndex
  664. var lastPage = self.pageCount()
  665. if row + 1 < numRows {
  666. lastPage = Int((anOutlineView.item(atRow: row + 1) as? CPDFOutline)?.km_pageIndex ?? UInt(NSNotFound))
  667. }
  668. // NSRange range = NSMakeRange(firstPage, MAX(1LU, lastPage - firstPage));
  669. // NSUInteger i, iMax = [lastViewedPages count];
  670. // for (i = 0; i < iMax; i++) {
  671. // if (NSLocationInRange((NSUInteger)[lastViewedPages pointerAtIndex:i], range))
  672. // return i;
  673. // }
  674. }
  675. }
  676. return NSNotFound
  677. }
  678. func outlineView(_ anOutlineView: NSOutlineView, imageContextForItem item: Any?) -> AnyObject? {
  679. if anOutlineView.isEqual(to: self.tocOutlineView) {
  680. if item == nil {
  681. return true as AnyObject
  682. }
  683. if item is CPDFOutline {
  684. return (item as! CPDFOutline).destination
  685. }
  686. }
  687. return nil
  688. }
  689. }
  690. extension KMLeftSideViewController: KMNoteOutlineViewDelegate {
  691. func outlineView(_ anOutlineView: NSOutlineView, canResizeRowByItem item: AnyObject?) -> Bool? {
  692. if anOutlineView.isEqual(to: self.noteOutlineView) {
  693. return true
  694. }
  695. return false
  696. }
  697. func outlineView(_ anOutlineView: NSOutlineView, setHeight newHeight: CGFloat, ofRowByItem item: AnyObject?) {
  698. // [rowHeights setFloat:newHeight forKey:item];
  699. }
  700. func outlineView(_ anOutlineView: NSOutlineView, didChangeHiddenOfTableColumn aTableColumn: NSTableColumn) {
  701. // if (mwcFlags.autoResizeNoteRows &&
  702. // [ov isEqual:rightSideController.noteOutlineView] &&
  703. // [[tableColumn identifier] isEqualToString:NOTE_COLUMNID]) {
  704. // [rowHeights removeAllFloats];
  705. // [rightSideController.noteOutlineView noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, [rightSideController.noteOutlineView numberOfRows])]];
  706. // }
  707. }
  708. func outlineViewCommandKeyPressedDuringNavigation(_ anOutlineView: NSOutlineView) {
  709. // PDFAnnotation *annotation = [[self selectedNotes] lastObject];
  710. // if (annotation) {
  711. // [pdfView scrollAnnotationToVisible:annotation];
  712. // [pdfView setActiveAnnotation:annotation];
  713. // }
  714. }
  715. }