KMMainViewController+MenuAction.swift 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205
  1. //
  2. // KMMainViewController+MenuAction.swift
  3. // PDF Master
  4. //
  5. // Created by tangchao on 2023/2/19.
  6. //
  7. import Foundation
  8. // MARK: File Menu
  9. extension KMMainViewController {
  10. @IBAction func menuItemClick_mergePDF(_ sender: Any) {
  11. self.toolbarController.delegate?.clickChildTool?(type: .merge, index: 0)
  12. }
  13. @IBAction func menuItemClick_Compress(_ sender: Any) {
  14. self.toolbarController.delegate?.clickChildTool?(type: .compress, index: 0)
  15. }
  16. @IBAction func menuItemClick_Convert(_ sender: Any) {
  17. }
  18. @IBAction func menuItemAction_ConvertToWord(_ sender: Any) {
  19. self.toolbarController.delegate?.clickChildTool?(type: .word, index: 0)
  20. }
  21. @IBAction func menuItemAction_ConvertToExcel(_ sender: Any) {
  22. self.toolbarController.delegate?.clickChildTool?(type: .excel, index: 0)
  23. }
  24. @IBAction func menuItemAction_ConvertToPPT(_ sender: Any) {
  25. self.toolbarController.delegate?.clickChildTool?(type: .ppt, index: 0)
  26. }
  27. @IBAction func menuItemAction_ConvertToRTF(_ sender: Any) {
  28. self.toolbarController.delegate?.clickChildTool?(type: .rtf, index: 0)
  29. }
  30. @IBAction func menuItemAction_ConvertToHTML(_ sender: Any) {
  31. self.toolbarController.delegate?.clickChildTool?(type: .html, index: 0)
  32. }
  33. @IBAction func menuItemAction_ConvertToText(_ sender: Any) {
  34. self.toolbarController.delegate?.clickChildTool?(type: .conversion_text, index: 0)
  35. }
  36. @IBAction func menuItemAction_ConvertToCSV(_ sender: Any) {
  37. self.toolbarController.delegate?.clickChildTool?(type: .csv, index: 0)
  38. }
  39. @IBAction func menuItemAction_ConvertToImage(_ sender: Any) {
  40. self.toolbarController.delegate?.clickChildTool?(type: .conversion_image, index: 0)
  41. }
  42. @IBAction func menuItemClick_SettingPassword(_ sender: Any) {
  43. self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 1)
  44. }
  45. @IBAction func menuItemClick_RemovePassword(_ sender: Any) {
  46. self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 2)
  47. }
  48. @IBAction func menuItemAction_closeWindow(_ sender: Any) {
  49. self.view.window?.close()
  50. }
  51. @IBAction func menuItemAction_closeAllWindows(_ sender: Any) {
  52. for window in NSApp.windows {
  53. window.close()
  54. }
  55. }
  56. @IBAction func menuItemAction_closeTagPage(_ sender: Any) {
  57. self.browserWindowController?.browser.closeTab()
  58. }
  59. @IBAction func menuItemAction_showInFinder(_ sender: Any) {
  60. NSWorkspace.shared.activateFileViewerSelecting([self.listView.document.documentURL])
  61. }
  62. @IBAction func menuItemAction_property(_ sender: Any) {
  63. KMInfoWindowController.shared.showWindow(sender)
  64. }
  65. @IBAction func menuItemAction_print(_ sender: Any) {
  66. self.showPrintWindow()
  67. }
  68. }
  69. extension KMMainViewController: KMSystemFileMenuProtocol {
  70. @IBAction func menuItemClick_saveAsFlattenedPDF(_ sender: Any) {
  71. Task { @MainActor in
  72. #if VERSION_DMG
  73. if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
  74. let _ = KMComparativeTableViewController.show(window: self.view.window!)
  75. return
  76. }
  77. #endif
  78. if await (KMLightMemberManager.manager.canPayFunction() == false) {
  79. let _ = KMSubscribeWaterMarkWindowController.show(window: self.view.window!) { isSubscribeSuccess, isWaterMarkExport, isClose in
  80. if (isClose) {
  81. return
  82. }
  83. if (isSubscribeSuccess) {
  84. self.saveAsFlattenedPDFAction()
  85. return
  86. }
  87. if (isWaterMarkExport) {
  88. self.saveAsFlattenedPDFAction(limit: true)
  89. return
  90. }
  91. }
  92. return
  93. }
  94. self.saveAsFlattenedPDFAction()
  95. }
  96. }
  97. func saveAsFlattenedPDFAction(limit: Bool = false) {
  98. DispatchQueue.main.async {
  99. NSPanel.savePanel(self.view.window!, true) { panel in
  100. panel.nameFieldStringValue = self.listView.document.documentURL.deletingPathExtension().lastPathComponent + "_flatten" + ".pdf"
  101. } completion: { response, url, isOpen in
  102. if (response == .cancel) {
  103. return
  104. }
  105. var result = false
  106. if (limit) {
  107. let data = KMTools.saveWatermarkDocumentForFlatten(document: self.listView.document, to: url!)
  108. result = data != nil
  109. } else {
  110. result = self.listView.document.writeFlatten(to: url!)
  111. }
  112. if (!result) {
  113. return
  114. }
  115. if (isOpen) {
  116. NSDocumentController.shared.km_safe_openDocument(withContentsOf: url!, display: true) { _, _, _ in
  117. }
  118. } else {
  119. NSWorkspace.shared.activateFileViewerSelecting([url!])
  120. }
  121. }
  122. }
  123. }
  124. }
  125. // MARK: Edit Menu
  126. @objc protocol KMEditMenuProtocol: NSObjectProtocol {
  127. @objc optional func undo(_ sender: Any)
  128. @objc optional func redo(_ sender: Any)
  129. @objc optional func cut(_ sender: Any)
  130. @objc optional func copy(_ sender: Any)
  131. @objc optional func paste(_ sender: Any)
  132. @objc optional func delete(_ sender: Any)
  133. }
  134. extension KMMainViewController: KMEditMenuProtocol {
  135. @IBAction func menuItemAction_find(_ sender: Any) {
  136. if (self.leftSideViewController.isShowPanel) {
  137. self.toolbarController.cancelSelected(KMLeftControlToolbarItemIdentifier)
  138. self.toolbarController.toolbarType = .None
  139. self.leftSideViewController.showPanelView(show: false)
  140. }
  141. // else {
  142. let isSearch = self.leftSideViewController.type.methodType == .Search
  143. self.leftSideViewController.refreshMethodType(methodType: .Search)
  144. if (isSearch) { // 关闭
  145. self.view.window?.makeFirstResponder(self.listView)
  146. }
  147. // }
  148. }
  149. }
  150. // MARK: View Menu
  151. extension KMMainViewController {
  152. // scale
  153. @IBAction func menuItemAction_adjustWidth(_ sender: Any) {
  154. self.selectZoom(.width)
  155. }
  156. @IBAction func menuItemAction_adjustPage(_ sender: Any) {
  157. self.selectZoom(.fit)
  158. }
  159. @IBAction func menuItemAction_size(_ sender: Any) {
  160. self.selectZoom(.actualSize)
  161. }
  162. @IBAction func menuItemAction_zoomOut(_ sender: Any) {
  163. if (self.listView.canZoomOut) {
  164. self.listView.zoomOut(nil)
  165. }
  166. }
  167. @IBAction func menuItemAction_zoomIn(_ sender: Any) {
  168. if (self.listView.canZoomIn) {
  169. self.listView.zoomIn(nil)
  170. }
  171. }
  172. // page show
  173. @IBAction func menuItemAction_singlePage(_ sender: Any) {
  174. self.selectDisplay(display: .singlePage)
  175. }
  176. @IBAction func menuItemAction_singlePageContinue(_ sender: Any) {
  177. self.selectDisplay(display: .singlePageContinuous)
  178. }
  179. @IBAction func menuItemAction_doublePage(_ sender: Any) {
  180. self.selectDisplay(display: .twoUp)
  181. }
  182. @IBAction func menuItemAction_doublePageContinue(_ sender: Any) {
  183. self.selectDisplay(display: .twoUpContinuous)
  184. }
  185. @IBAction func menuItemAction_bookMode(_ sender: Any) {
  186. self.selectDisplay(display: .bookMode)
  187. }
  188. @IBAction func menuItemAction_readMode(_ sender: Any) {
  189. if (self.isReadMode) {
  190. self.closeReadModel()
  191. } else {
  192. self.openReadModel()
  193. }
  194. }
  195. @IBAction func menuItemAction_showSplitPage(_ sender: Any) {
  196. self.listView?.displaysPageBreaks = !(self.listView?.displaysPageBreaks ?? false)
  197. self.listView.layoutDocumentView()
  198. }
  199. @IBAction func menuItemAction_autoScrol(_ sender: Any) {
  200. }
  201. @IBAction func menuItemAction_autoScrolSetting(_ sender: Any) {
  202. }
  203. // rotate
  204. @IBAction func menuItemAction_rotateLeft(_ sender: Any) {
  205. Task { @MainActor in
  206. #if VERSION_DMG
  207. if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
  208. let _ = KMComparativeTableViewController.show(window: self.view.window!)
  209. return
  210. }
  211. #endif
  212. let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
  213. let rotation = page.rotation
  214. page.leftRotate()
  215. self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
  216. }
  217. }
  218. func rotatePageItems(pageItems: [KMThumbnailPageItem]) {
  219. let tempPageItems = pageItems
  220. for pageItem in tempPageItems {
  221. pageItem.page.rotation = pageItem.rotate
  222. }
  223. self.listView.layoutDocumentView()
  224. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "KMPDFViewRotatePage"), object: self.listView.document)
  225. self.listView.undoManager?.registerUndo(withTarget: self) { [unowned self] targetType in
  226. var tempPageItems: [KMThumbnailPageItem] = []
  227. for pageItem in pageItems {
  228. let item = KMThumbnailPageItem(page: pageItem.page, rotate: pageItem.oldRotate, oldRotate: pageItem.rotate)
  229. tempPageItems.append(item)
  230. }
  231. self.rotatePageItems(pageItems: tempPageItems)
  232. }
  233. }
  234. @IBAction func menuItemAction_rotateRight(_ sender: Any) {
  235. Task { @MainActor in
  236. #if VERSION_DMG
  237. if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
  238. let _ = KMComparativeTableViewController.show(window: self.view.window!)
  239. return
  240. }
  241. #endif
  242. let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
  243. let rotation = page.rotation
  244. page.rightRotate()
  245. self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
  246. }
  247. }
  248. @IBAction func menuItemAction_rotateAllPageLeft(_ sender: Any) {
  249. Task { @MainActor in
  250. #if VERSION_DMG
  251. if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
  252. let _ = KMComparativeTableViewController.show(window: self.view.window!)
  253. return
  254. }
  255. #endif
  256. var pageItems: [KMThumbnailPageItem] = []
  257. for index in 0 ... self.listView.document.pageCount - 1 {
  258. let page: CPDFPage = self.listView.document.page(at: index)
  259. let rotation = page.rotation
  260. page.leftRotate()
  261. pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
  262. }
  263. self.rotatePageItems(pageItems: pageItems)
  264. }
  265. }
  266. @IBAction func menuItemAction_rotateAllPageRight(_ sender: Any) {
  267. Task { @MainActor in
  268. #if VERSION_DMG
  269. if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
  270. let _ = KMComparativeTableViewController.show(window: self.view.window!)
  271. return
  272. }
  273. #endif
  274. var pageItems: [KMThumbnailPageItem] = []
  275. for index in 0 ... self.listView.document.pageCount - 1 {
  276. let page : CPDFPage = self.listView.document.page(at: index)
  277. let rotation = page.rotation
  278. page.rightRotate()
  279. pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
  280. }
  281. self.rotatePageItems(pageItems: pageItems)
  282. }
  283. }
  284. // split screen
  285. @IBAction func menuItemAction_splitScreenVerti(_ sender: Any) {
  286. }
  287. @IBAction func menuItemAction_splitScreenHorti(_ sender: Any) {
  288. }
  289. @IBAction func menuItemAction_splitScreenNo(_ sender: Any) {
  290. }
  291. @IBAction func menuItemAction_view_readMode(_ sender: Any) {
  292. if (self.isReadMode) {
  293. self.closeReadModel()
  294. } else {
  295. self.openReadModel()
  296. }
  297. }
  298. @IBAction func menuItemAction_enterFullScreen(_ sender: Any) {
  299. }
  300. @IBAction func menuItemAction_hiddenLeftSide(_ sender: Any) {
  301. if (self.leftSideViewController.type.methodType != .None) {
  302. self.leftSideViewController.selectType(self.leftSideViewController.type.methodType)
  303. } else {
  304. self.toolbarController.selectItem(KMLeftControlToolbarItemIdentifier)
  305. }
  306. }
  307. @IBAction func menuItemAction_hiddenRightSide(_ sender: Any) {
  308. self.toolbarController.selectItem(KMRightControlToolbarItemIdentifier)
  309. }
  310. @IBAction func menuItemAction_thumai(_ sender: Any) {
  311. self.leftSideViewController.refreshMethodType(methodType: .Thumbnail)
  312. }
  313. @IBAction func menuItemAction_outline(_ sender: Any) {
  314. self.leftSideViewController.refreshMethodType(methodType: .Outline)
  315. }
  316. @IBAction func menuItemAction_bookmark(_ sender: Any) {
  317. self.leftSideViewController.refreshMethodType(methodType: .BookMark)
  318. }
  319. @IBAction func menuItemAction_annotation(_ sender: Any) {
  320. self.leftSideViewController.refreshMethodType(methodType: .Annotation)
  321. }
  322. @IBAction func menuItemAction_search(_ sender: Any) {
  323. self.leftSideViewController.refreshMethodType(methodType: .Search)
  324. }
  325. @IBAction func menuItemAction_topic(_ sender: Any) {
  326. }
  327. @IBAction func menuItemAction_hiddenPageIndicator(_ sender: Any) {
  328. }
  329. }
  330. // MARK: Annotation Menu
  331. extension KMMainViewController {
  332. @IBAction func menuItemAction_highlight(_ sender: Any) {
  333. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarHighlightAnnotationItemIdentifier)
  334. }
  335. @IBAction func menuItemAction_underline(_ sender: Any) {
  336. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarUnderlineAnnotationItemIdentifier)
  337. }
  338. @IBAction func menuItemAction_deleteLine(_ sender: Any) {
  339. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarStrikeOutAnnotationItemIdentifier)
  340. }
  341. @IBAction func menuItemAction_freehand(_ sender: Any) {
  342. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarInkAnnotationItemIdentifier)
  343. }
  344. @IBAction func menuItemAction_text(_ sender: Any) {
  345. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarFreeTextAnnotationItemIdentifier)
  346. }
  347. @IBAction func menuItemAction_note(_ sender: Any) {
  348. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarAnchoredAnnotationItemIdentifier)
  349. }
  350. @IBAction func menuItemAction_squre(_ sender: Any) {
  351. UserDefaults.standard.set(6, forKey: KMToolBarToolPDFShapeStyle)
  352. if (self.listView.annotationType == .square) {
  353. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  354. } else {
  355. if (self.listView.annotationType == .circle || self.listView.annotationType == .line || self.listView.annotationType == .arrow) {
  356. self.listView.annotationType = .square
  357. self.rightSideViewController.annotationProperties.annotationMode = .square
  358. } else {
  359. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  360. }
  361. }
  362. }
  363. @IBAction func menuItemAction_circle(_ sender: Any) {
  364. UserDefaults.standard.set(7, forKey: KMToolBarToolPDFShapeStyle)
  365. if (self.listView.annotationType == .circle) { // 取消
  366. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  367. } else {
  368. if (self.listView.annotationType == .square || self.listView.annotationType == .line || self.listView.annotationType == .arrow) { // 切换
  369. self.listView.annotationType = .circle
  370. self.rightSideViewController.annotationProperties.annotationMode = .circle
  371. } else { // 选中
  372. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  373. }
  374. }
  375. }
  376. @IBAction func menuItemAction_arrow(_ sender: Any) {
  377. UserDefaults.standard.set(5, forKey: KMToolBarToolPDFShapeStyle)
  378. if (self.listView.annotationType == .arrow) { // 取消
  379. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  380. } else { // 选中
  381. if (self.listView.annotationType == .square || self.listView.annotationType == .circle || self.listView.annotationType == .line) { // 切换
  382. self.listView.annotationType = .arrow
  383. self.rightSideViewController.annotationProperties.annotationMode = .arrow
  384. } else {
  385. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  386. }
  387. }
  388. }
  389. @IBAction func menuItemAction_line(_ sender: Any) {
  390. UserDefaults.standard.set(4, forKey: KMToolBarToolPDFShapeStyle)
  391. if (self.listView.annotationType == .line) { // 取消
  392. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  393. } else { // 选中
  394. if (self.listView.annotationType == .square || self.listView.annotationType == .circle || self.listView.annotationType == .arrow) { // 切换
  395. self.listView.annotationType = .line
  396. self.rightSideViewController.annotationProperties.annotationMode = .line
  397. } else {
  398. self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
  399. }
  400. }
  401. }
  402. // link
  403. @IBAction func menuItemAction_link(_ sender: Any) {
  404. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarLinkAnnotationItemIdentifier)
  405. }
  406. @IBAction func menuItemAction_linkPage(_ sender: Any) {
  407. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarLinkAnnotationItemIdentifier)
  408. }
  409. @IBAction func menuItemAction_linkHttps(_ sender: Any) {
  410. }
  411. @IBAction func menuItemAction_linkEmail(_ sender: Any) {
  412. }
  413. // stamp
  414. @IBAction func menuItemAction_stamp(_ sender: Any) {
  415. self.mainMenuUpdateAnnotationStyle(identifier: KMAnnotationStampToolbarItemIdentifier)
  416. }
  417. @IBAction func menuItemAction_stampStandard(_ sender: Any) {
  418. }
  419. @IBAction func menuItemAction_stampDynamic(_ sender: Any) {
  420. }
  421. @IBAction func menuItemAction_stampCustom(_ sender: Any) {
  422. }
  423. @IBAction func menuItemAction_signure(_ sender: Any) {
  424. self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarSignSignatureAnnotationItemIdentifier)
  425. }
  426. @IBAction func menuItemAction_hiddenAllAnnotation(_ sender: Any) {
  427. self.showOrHideNotes()
  428. }
  429. @IBAction func menuItemAction_clearAllAnnotation(_ sender: Any) {
  430. self.removeAllAnnotations()
  431. }
  432. private func mainMenuUpdateAnnotationStyle(identifier : String) {
  433. if self.toolbarController.toolbarType != .Annatiton {
  434. let item : KMToolbarItemView = (self.toolbarController.mainToolBarView?.toolbarItemFindItemIdentifiers(value: KMDocumentAnnotationToolbarItemIdentifier))!
  435. self.toolbarController.mainToolBarView?.delegate?.toolbarViewController?(self.toolbarController.mainToolBarView!, clickMode: .Annatiton, toolbar: item, [])
  436. }
  437. let childitem : KMToolbarItemView = (self.toolbarController.childToolBarView?.toolbarItemFindItemIdentifiers(value: identifier))!
  438. self.toolbarController.mainToolBarView?.delegate?.changeAnnotationModeAction?(item: childitem.clickButton)
  439. }
  440. }
  441. // MARK: goto Menu
  442. extension KMMainViewController {
  443. @IBAction func menuItemAction_nextPage(_ sender: Any) {
  444. if (self.listView.canGoToNextPage()) {
  445. self.listView.goToNextPage(nil)
  446. }
  447. }
  448. @IBAction func menuItemAction_forwardPage(_ sender: Any) {
  449. if (self.listView.canGoToPreviousPage()) {
  450. self.listView.goToPreviousPage(nil)
  451. }
  452. }
  453. @IBAction func menuItemAction_firstPage(_ sender: Any) {
  454. if (self.listView.canGoToFirstPage()) {
  455. self.listView.goToFirstPage(nil)
  456. }
  457. }
  458. @IBAction func menuItemAction_lastPage(_ sender: Any) {
  459. if (self.listView.canGoToLastPage()) {
  460. self.listView.goToLastPage(nil)
  461. }
  462. }
  463. @IBAction func menuItemAction_forward(_ sender: Any) {
  464. if (self.listView.km_canGoForward()) {
  465. self.listView.km_goForward(nil)
  466. }
  467. }
  468. @IBAction func menuItemAction_goback(_ sender: Any) {
  469. if (self.listView.km_canGoBack()) {
  470. self.listView.km_goBack(nil)
  471. }
  472. }
  473. @IBAction func menuItemAction_gotoPage(_ sender: Any) {
  474. let sheet = KMTextFieldSheetController.init(windowNibName: "PageSheet")
  475. var pages : [String] = []
  476. for i in 0 ..< self.listView.document.pageCount {
  477. pages.append("\(i)")
  478. }
  479. sheet.callback = { [weak self] stringValue in
  480. if (stringValue == nil) {
  481. return
  482. }
  483. guard let index = Int(stringValue) else {
  484. return
  485. }
  486. if (self?.listView == nil) {
  487. return
  488. }
  489. if (index > 0 && index <= self!.listView.document.pageCount) {
  490. self?.listView.go(toPageIndex: index-1, animated: true)
  491. }
  492. }
  493. sheet.showWindow(nil)
  494. sheet.pageBox.addItems(withObjectValues: pages)
  495. sheet.stringValue = "\(self.listView.currentPageIndex+1)"
  496. }
  497. @IBAction func goToMarkedPage(_ sender: Any?) {
  498. guard let pdfDoc = self.listView.document, pdfDoc.isLocked == false && pdfDoc.pageCount > 0 else {
  499. NSSound.beep()
  500. return
  501. }
  502. guard let currentPageIndex = self.listView.currentPage()?.pageIndex() else {
  503. NSSound.beep()
  504. return
  505. }
  506. // if (markedPageIndex == NSNotFound || [pdfDoc isLocked] || [pdfDoc pageCount] == 0) {
  507. // NSBeep();
  508. // } else if (beforeMarkedPageIndex != NSNotFound) {
  509. if self.beforeMarkedPageIndex != NSNotFound {
  510. self.listView.goToPage(at: min(UInt(self.beforeMarkedPageIndex), pdfDoc.pageCount-1), point: self.beforeMarkedPagePoint)
  511. } else if (currentPageIndex != self.markedPageIndex) {
  512. // NSUInteger lastPageIndex = [pdfView currentPageIndexAndPoint:&beforeMarkedPagePoint rotated:NULL];
  513. let lastPageIndex = self.listView.currentPageIndexAndPoint(&self.beforeMarkedPagePoint, rotated: nil)
  514. self.listView.goToPage(at: min(UInt(self.markedPageIndex), pdfDoc.pageCount-1), point: self.markedPagePoint)
  515. self.beforeMarkedPageIndex = Int(lastPageIndex)
  516. }
  517. }
  518. @IBAction func markPage(_ sender: Any?) {
  519. self.markedPageIndex = Int(self.listView.currentPageIndexAndPoint(&self.markedPagePoint, rotated: nil))
  520. self.beforeMarkedPageIndex = NSNotFound
  521. }
  522. }
  523. // MARK: tool Menu
  524. extension KMMainViewController: KMSystemToolMenuProtocol {
  525. func getInfo(_ sender: Any?) {
  526. KMInfoWindowController.shared.showWindow(sender)
  527. }
  528. @IBAction func menuItemAction_textTool(_ sender: Any) {
  529. self.toolbarController.selectItem(KMToolbarZoomToSelectionItemIdentifier)
  530. }
  531. @IBAction func menuItemAction_scrolTool(_ sender: Any) {
  532. self.toolbarController.selectItem(KMToolbarMoveToolModeItemIdentifier)
  533. }
  534. @IBAction func menuItemAction_zoomOutTool(_ sender: Any) {
  535. self.toolbarController.selectItem(KMToolbarMagnifyToolModeItemIdentifier)
  536. }
  537. @IBAction func menuItemAction_selectTool(_ sender: Any) {
  538. self.toolbarController.selectItem(KMToolbarSelectToolModeItemIdentifier)
  539. }
  540. func changeToolMode(_ sender: Any?) {
  541. let isSelected = self.toolbarController.findItem(KMToolbarHighlightAnnotationItemIdentifier)?.isSelected ?? false
  542. if isSelected == false {
  543. self.toolbarController.selectItem(KMToolbarHighlightAnnotationItemIdentifier)
  544. }
  545. }
  546. @IBAction func menuItemAction_redact(_ sender: Any) {
  547. self.toolbarController.clickItem(KMDocumentRedactToolbarItemIdentifier)
  548. }
  549. @IBAction func menuItemAction_warkmark(_ sender: Any) {
  550. self.toolbarController.delegate?.clickChildTool?(type: .watermark, index: 0)
  551. }
  552. @IBAction func menuItemAction_background(_ sender: Any) {
  553. self.toolbarController.delegate?.clickChildTool?(type: .background, index: 0)
  554. }
  555. @IBAction func menuItemAction_headerfooter(_ sender: Any) {
  556. self.toolbarController.delegate?.clickChildTool?(type: .headerAndFooter, index: 0)
  557. }
  558. @IBAction func menuItemAction_bates(_ sender: Any) {
  559. self.toolbarController.delegate?.clickChildTool?(type: .bates, index: 0)
  560. }
  561. @IBAction func menuItemAction_batch(_ sender: Any) {
  562. // KMBatchWindowController.openFile(self.listView.document?.documentURL, .Batch)
  563. }
  564. func compression(_ sender: Any?) {
  565. self.toolbarController.delegate?.clickChildTool?(type: .compress, index: 0)
  566. }
  567. func merge(_ sender: Any?) {
  568. self.toolbarController.delegate?.clickChildTool?(type: .merge, index: 0)
  569. }
  570. func convert(_ sender: Any?) {
  571. self.toolbarController.delegate?.clickChildTool?(type: .word, index: 0)
  572. }
  573. func imageToPDF(_ sender: Any?) {
  574. KMApp.ShowImageToPDFWindow()
  575. }
  576. func ocr(_ sender: Any?) {
  577. self.toolbarController.clickItem(KMDocumentScanOCRToolbarItemIdentifier)
  578. }
  579. func extractImage(_ sender: Any?) {
  580. self.extractImageAction(num: 1)
  581. }
  582. func pageEdit(_ sender: Any?) {
  583. self.toolbarController.clickItem(KMDocumentPageToolbarItemIdentifier)
  584. }
  585. func textEditAction(_ sender: Any?) {
  586. self.toolbarController.clickItem(KMDocumentEditToolbarItemIdentifier)
  587. }
  588. func security(_ sender: Any?) {
  589. self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 1)
  590. }
  591. func decryption(_ sender: Any?) {
  592. self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 2)
  593. }
  594. func cropAll(_ sender: Any?) {
  595. // NSRect rect[2] = {NSIntegralRect([pdfView currentSelectionRect]), NSZeroRect};
  596. // NSPointerArray *rectArray = [NSPointerArray rectPointerArray];
  597. // BOOL emptySelection = NSIsEmptyRect(rect[0]);
  598. //
  599. // if (emptySelection) {
  600. // NSInteger i, j, count = [[pdfView document] pageCount];
  601. // rect[0] = rect[1] = NSZeroRect;
  602. //
  603. // if (count == 0)
  604. // return;
  605. //
  606. // [self beginProgressSheetWithMessage:[NSLocalizedString(@"Cropping Pages", @"Message for progress sheet") stringByAppendingEllipsis] maxValue:MIN(18, count)];
  607. //
  608. // if (count == 1) {
  609. // rect[0] = [[[pdfView document] pageAtIndex:0] foregroundBox];
  610. // [self incrementProgressSheet];
  611. // } else if (count < 19) {
  612. // for (i = 0; i < count; i++) {
  613. // rect[i % 2] = NSUnionRect(rect[i % 2], [[[pdfView document] pageAtIndex:i] foregroundBox]);
  614. // [self incrementProgressSheet];
  615. // }
  616. // } else {
  617. // NSInteger start[3] = {1, (count - 5) / 2, count - 6};
  618. // for (j = 0; j < 3; j++) {
  619. // for (i = start[j]; i < start[j] + 6; i++) {
  620. // rect[i % 2] = NSUnionRect(rect[i % 2], [[[pdfView document] pageAtIndex:i] foregroundBox]);
  621. // [self incrementProgressSheet];
  622. // }
  623. // }
  624. // }
  625. // CGFloat w = fmax(NSWidth(rect[0]), NSWidth(rect[1]));
  626. // CGFloat h = fmax(NSHeight(rect[0]), NSHeight(rect[1]));
  627. // for (j = 0; j < 2; j++)
  628. // rect[j] = NSMakeRect(floor(NSMidX(rect[j]) - 0.5 * w), floor(NSMidY(rect[j]) - 0.5 * h), w, h);
  629. // [rectArray addPointer:rect];
  630. // [rectArray addPointer:rect + 1];
  631. // } else {
  632. // [rectArray addPointer:rect];
  633. // }
  634. //
  635. // [self cropPagesToRects:rectArray];
  636. // [pdfView setCurrentSelectionRect:NSZeroRect];
  637. self.cropAllPage()
  638. }
  639. func crop(_ sender: Any?) {
  640. self.cropCurrentPage()
  641. }
  642. func autoCropAll(_ sender: Any?) {
  643. #warning("暂时这么处理,后续调整")
  644. self.cropAllPage()
  645. }
  646. func smartAutoCropAll(_ sender: Any?) {
  647. #warning("暂时这么处理,后续调整")
  648. self.cropAllPage()
  649. }
  650. func cropOptionsModel(_ sender: Any?) {
  651. KMPrint("cropOptionsModel ...")
  652. }
  653. func selectToolModel(_ sender: Any?) {
  654. self.toolbarController.clickItem(KMToolbarSelectToolModeItemIdentifier)
  655. }
  656. func takeSnapshot(_ sender: Any?) {
  657. self.listView.takeSnapshot(sender)
  658. }
  659. func takeSnapshotSelectContent(_ sender: Any?) {
  660. self.listView.takeSnapshotSelectContent(sender)
  661. }
  662. func changeAnnotationMode(_ sender: Any?) {
  663. if let data = sender as? NSMenuItem {
  664. self.changeAnnotationMode_itemAction(sender: data)
  665. }
  666. }
  667. func addWatermark(_ sender: Any?) {
  668. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  669. if item == nil {
  670. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  671. }
  672. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 1, info: nil)
  673. }
  674. func removeWatermark(_ sender: Any?) {
  675. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  676. if item == nil {
  677. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  678. }
  679. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 2, info: nil)
  680. }
  681. func batchAddWatermark(_ sender: Any?) {
  682. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  683. if item == nil {
  684. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  685. }
  686. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 3, info: nil)
  687. }
  688. func batchRemoveWatermark(_ sender: Any?) {
  689. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  690. if item == nil {
  691. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  692. }
  693. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 4, info: nil)
  694. }
  695. func templateWatermark(_ sender: Any?) {
  696. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  697. if item == nil {
  698. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  699. }
  700. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 5, info: nil)
  701. }
  702. func addBackground(_ sender: Any?) {
  703. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  704. if item == nil {
  705. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  706. }
  707. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 1, info: nil)
  708. }
  709. func removeBackground(_ sender: Any?) {
  710. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  711. if item == nil {
  712. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  713. }
  714. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 2, info: nil)
  715. }
  716. func batchAddBackground(_ sender: Any?) {
  717. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  718. if item == nil {
  719. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  720. }
  721. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 3, info: nil)
  722. }
  723. func batchRemoveBackground(_ sender: Any?) {
  724. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  725. if item == nil {
  726. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  727. }
  728. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 4, info: nil) }
  729. func templateBackground(_ sender: Any?) {
  730. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  731. if item == nil {
  732. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  733. }
  734. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 5, info: nil)
  735. }
  736. func addHeaderFooter(_ sender: Any?) {
  737. var item = self.toolbarController.findItem(KMToolbarToolHeaderFooterItemIdentifier)
  738. if item == nil {
  739. item = KMToolbarItemView(itemIdentifier: KMToolbarToolHeaderFooterItemIdentifier)
  740. }
  741. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 1, info: nil)
  742. }
  743. func removeHeaderFooter(_ sender: Any?) {
  744. var item = self.toolbarController.findItem(KMToolbarToolHeaderFooterItemIdentifier)
  745. if item == nil {
  746. item = KMToolbarItemView(itemIdentifier: KMToolbarToolHeaderFooterItemIdentifier)
  747. }
  748. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 2, info: nil)
  749. }
  750. func batchAddHeaderFooter(_ sender: Any?) {
  751. var item = self.toolbarController.findItem(KMToolbarToolHeaderFooterItemIdentifier)
  752. if item == nil {
  753. item = KMToolbarItemView(itemIdentifier: KMToolbarToolHeaderFooterItemIdentifier)
  754. }
  755. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 3, info: nil)
  756. }
  757. func batchRemoveHeaderFooter(_ sender: Any?) {
  758. var item = self.toolbarController.findItem(KMToolbarToolHeaderFooterItemIdentifier)
  759. if item == nil {
  760. item = KMToolbarItemView(itemIdentifier: KMToolbarToolHeaderFooterItemIdentifier)
  761. }
  762. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 4, info: nil)
  763. }
  764. func templateHeaderFooter(_ sender: Any?) {
  765. var item = self.toolbarController.findItem(KMToolbarToolHeaderFooterItemIdentifier)
  766. if item == nil {
  767. item = KMToolbarItemView(itemIdentifier: KMToolbarToolHeaderFooterItemIdentifier)
  768. }
  769. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 5, info: nil)
  770. }
  771. func addHeaderFooterBates(_ sender: Any?) {
  772. var item = self.toolbarController.findItem(KMToolbarToolBatesItemIdentifier)
  773. if item == nil {
  774. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBatesItemIdentifier)
  775. }
  776. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 1, info: nil)
  777. }
  778. func removeHeaderFooterBates(_ sender: Any?) {
  779. var item = self.toolbarController.findItem(KMToolbarToolBatesItemIdentifier)
  780. if item == nil {
  781. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBatesItemIdentifier)
  782. }
  783. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 2, info: nil)
  784. }
  785. func batchAddBates(_ sender: Any?) {
  786. var item = self.toolbarController.findItem(KMToolbarToolBatesItemIdentifier)
  787. if item == nil {
  788. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBatesItemIdentifier)
  789. }
  790. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 3, info: nil)
  791. }
  792. func batchRemoveBates(_ sender: Any?) {
  793. var item = self.toolbarController.findItem(KMToolbarToolBatesItemIdentifier)
  794. if item == nil {
  795. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBatesItemIdentifier)
  796. }
  797. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 4, info: nil)
  798. }
  799. func templateBates(_ sender: Any?) {
  800. var item = self.toolbarController.findItem(KMToolbarToolBatesItemIdentifier)
  801. if item == nil {
  802. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBatesItemIdentifier)
  803. }
  804. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 5, info: nil)
  805. }
  806. func togglePoster(_ sender: Any?) {
  807. KMPrintWindowController.showNewPrintWindowControll(inputDocument: self.listView.document, inputPageRange: KMPrintPageRange(), printType: .poster)
  808. }
  809. func toggleMultiple(_ sender: Any?) {
  810. KMPrintWindowController.showNewPrintWindowControll(inputDocument: self.listView.document, inputPageRange: KMPrintPageRange(), printType: .multipage)
  811. }
  812. func toggleBooklet(_ sender: Any?) {
  813. KMPrintWindowController.showNewPrintWindowControll(inputDocument: self.listView.document, inputPageRange: KMPrintPageRange(), printType: .pamphlet)
  814. }
  815. func rotateLeft(_ sender: Any?) {
  816. Task { @MainActor in
  817. let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
  818. let rotation = page.rotation
  819. page.leftRotate()
  820. self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
  821. }
  822. }
  823. func rotateRight(_ sender: Any?) {
  824. Task { @MainActor in
  825. let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
  826. let rotation = page.rotation
  827. page.rightRotate()
  828. self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
  829. }
  830. }
  831. func rotateAllLeft(_ sender: Any?) {
  832. Task { @MainActor in
  833. var pageItems: [KMThumbnailPageItem] = []
  834. for index in 0 ... self.listView.document.pageCount - 1 {
  835. let page: CPDFPage = self.listView.document.page(at: index)
  836. let rotation = page.rotation
  837. page.leftRotate()
  838. pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
  839. }
  840. self.rotatePageItems(pageItems: pageItems)
  841. }
  842. }
  843. func rotateAllRight(_ sender: Any?) {
  844. Task { @MainActor in
  845. var pageItems: [KMThumbnailPageItem] = []
  846. for index in 0 ... self.listView.document.pageCount - 1 {
  847. let page: CPDFPage = self.listView.document.page(at: index)
  848. let rotation = page.rotation
  849. page.leftRotate()
  850. pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
  851. }
  852. self.rotatePageItems(pageItems: pageItems)
  853. }
  854. }
  855. func autoSelectContent(_ sender: Any?) {
  856. self.listView.autoSelectContent(sender)
  857. }
  858. }
  859. // MARK: window Menu
  860. extension KMMainViewController {
  861. @IBAction func menuItemAction_showForwardTagPage(_ sender: Any) {
  862. (self.myDocument as? KMMainDocument)?.browser.selectPreviousTab()
  863. }
  864. @IBAction func menuItemAction_showNextTagPage(_ sender: Any) {
  865. (self.myDocument as? KMMainDocument)?.browser.selectNextTab()
  866. }
  867. @IBAction func menuItemAction_newTagPageToNewWindow(_ sender: Any) {
  868. self.browserWindowController?.openNewWindow(sender)
  869. }
  870. @IBAction func menuItemAction_mergeAllWindow(_ sender: Any) {
  871. ((self.myDocument as? KMMainDocument)?.browser.windowController as? KMBrowserWindowController)?.mergeAllWindow(sender)
  872. }
  873. @IBAction func menuItemAction_currentWindowName(_ sender: Any) {
  874. }
  875. }
  876. extension KMMainViewController: NSMenuItemValidation, NSMenuDelegate {
  877. func validateMenuItem(_ menuItem: NSMenuItem) -> Bool {
  878. if (menuItem.action == #selector(menuItemAction_currentWindowName)) {
  879. menuItem.title = (self.myDocument?.fileURL!.lastPathComponent)!
  880. return true
  881. }
  882. if (menuItem.action == #selector(menuItemAction_thumai) ||
  883. menuItem.action == #selector(menuItemAction_outline) ||
  884. menuItem.action == #selector(menuItemAction_bookmark) ||
  885. menuItem.action == #selector(menuItemAction_annotation) ||
  886. menuItem.action == #selector(menuItemAction_search)) {
  887. menuItem.state = .off
  888. let type = self.leftSideViewController.type.methodType
  889. if (menuItem.action == #selector(menuItemAction_thumai) && type == .Thumbnail) {
  890. menuItem.state = .on
  891. }
  892. if (menuItem.action == #selector(menuItemAction_outline) && type == .Outline) {
  893. menuItem.state = .on
  894. }
  895. if (menuItem.action == #selector(menuItemAction_bookmark) && type == .BookMark) {
  896. menuItem.state = .on
  897. }
  898. if (menuItem.action == #selector(menuItemAction_annotation) && type == .Annotation) {
  899. menuItem.state = .on
  900. }
  901. if (menuItem.action == #selector(menuItemAction_search) && type == .Search) {
  902. menuItem.state = .on
  903. }
  904. }
  905. if (menuItem.action == #selector(menuItemAction_hiddenLeftSide)) {
  906. if (self.leftPanelOpen) {
  907. menuItem.title = NSLocalizedString("Hide Left Side Panel", comment: "")
  908. } else {
  909. menuItem.title = NSLocalizedString("Show Left Side Panel", comment: "")
  910. }
  911. }
  912. if (menuItem.action == #selector(menuItemAction_hiddenRightSide)) {
  913. if (self.rightPanelIsOpen) {
  914. menuItem.title = NSLocalizedString("Hide Right Side Panel", comment: "")
  915. } else {
  916. menuItem.title = NSLocalizedString("Show Right Side Panel", comment: "")
  917. }
  918. }
  919. if (menuItem.action == #selector(menuItemAction_hiddenAllAnnotation)) {
  920. if (self.listView.hideNotes) {
  921. menuItem.title = NSLocalizedString("Show Notes", comment: "")
  922. } else {
  923. menuItem.title = NSLocalizedString("Hide Notes", comment: "")
  924. }
  925. }
  926. if (menuItem.action == #selector(menuItemAction_showForwardTagPage) ||
  927. menuItem.action == #selector(menuItemAction_showNextTagPage)) {
  928. let browser = self.browserWindowController?.browser
  929. if (browser != nil && (browser is KMBrowser)) {
  930. if (menuItem.action == #selector(menuItemAction_showForwardTagPage)) {
  931. return (browser as! KMBrowser).canSelectPreviousTab()
  932. }
  933. if (menuItem.action == #selector(menuItemAction_showNextTagPage)) {
  934. return (browser as! KMBrowser).canSelectNextTab()
  935. }
  936. }
  937. }
  938. if (menuItem.action == #selector(menuItemAction_mergeAllWindow)) {
  939. if let _browserWindowC = ((self.myDocument as? KMMainDocument)?.browser.windowController as? KMBrowserWindowController) {
  940. return _browserWindowC.canMergeAllWindow()
  941. }
  942. }
  943. if (menuItem.action == #selector(menuItemAction_nextPage) ||
  944. menuItem.action == #selector(menuItemAction_forwardPage) ||
  945. menuItem.action == #selector(menuItemAction_firstPage) ||
  946. menuItem.action == #selector(menuItemAction_lastPage) ||
  947. menuItem.action == #selector(menuItemAction_forward) ||
  948. menuItem.action == #selector(menuItemAction_goback)) {
  949. if (menuItem.action == #selector(menuItemAction_nextPage)) {
  950. if self.listView.isEditing() && self.listView.isEditable() {
  951. return false
  952. }
  953. return (self.pdfViewCanHorizontalScroll() == false && self.listView.canGoToNextPage())
  954. }
  955. if (menuItem.action == #selector(menuItemAction_forwardPage)) {
  956. if self.listView.isEditing() && self.listView.isEditable() {
  957. return false
  958. }
  959. return (self.pdfViewCanHorizontalScroll() == false && self.listView.canGoToPreviousPage())
  960. }
  961. if (menuItem.action == #selector(menuItemAction_firstPage)) {
  962. return self.listView.canGoToFirstPage()
  963. }
  964. if (menuItem.action == #selector(menuItemAction_lastPage)) {
  965. return self.listView.canGoToLastPage()
  966. }
  967. if (menuItem.action == #selector(menuItemAction_forward)) {
  968. return self.listView.km_canGoForward()
  969. }
  970. if (menuItem.action == #selector(menuItemAction_goback)) {
  971. return self.listView.km_canGoBack()
  972. }
  973. }
  974. if menuItem.action == #selector(changeAnnotationMode) || menuItem.action == #selector(changeAnnotationMode_itemAction) {
  975. // if ([[menuItem menu] numberOfItems] > ANNOTATION_MODE_COUNT)
  976. // [menuItem setState:[self toolMode] == SKNoteToolMode && [self annotationMode] == (SKNoteType)[menuItem tag] ? NSOnState : NSOffState];
  977. // else
  978. // [menuItem setState:[self annotationMode] == (SKNoteType)[menuItem tag] ? NSOnState : NSOffState];
  979. if self.listView.annotationType.rawValue == menuItem.tag {
  980. menuItem.state = .on
  981. } else {
  982. menuItem.state = .off
  983. }
  984. return true
  985. }
  986. guard let action = menuItem.action else {
  987. return false
  988. }
  989. if KMSystemMenu.isToolSelector(sel: action) {
  990. if action == KMSystemMenu.Tool.autoSelectContentSelector {
  991. let toolMode = self.listView?.toolMode ?? .none
  992. return toolMode == .selectToolMode
  993. }
  994. }
  995. return true
  996. }
  997. }