KMMainViewController+MenuAction.swift 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076
  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. }
  498. // MARK: tool Menu
  499. extension KMMainViewController: KMSystemToolMenuProtocol {
  500. @IBAction func menuItemAction_textTool(_ sender: Any) {
  501. self.toolbarController.selectItem(KMToolbarZoomToSelectionItemIdentifier)
  502. }
  503. @IBAction func menuItemAction_scrolTool(_ sender: Any) {
  504. self.toolbarController.selectItem(KMToolbarMoveToolModeItemIdentifier)
  505. }
  506. @IBAction func menuItemAction_zoomOutTool(_ sender: Any) {
  507. self.toolbarController.selectItem(KMToolbarMagnifyToolModeItemIdentifier)
  508. }
  509. @IBAction func menuItemAction_selectTool(_ sender: Any) {
  510. self.toolbarController.selectItem(KMToolbarSelectToolModeItemIdentifier)
  511. }
  512. @IBAction func menuItemAction_redact(_ sender: Any) {
  513. self.toolbarController.clickItem(KMDocumentRedactToolbarItemIdentifier)
  514. }
  515. @IBAction func menuItemAction_warkmark(_ sender: Any) {
  516. self.toolbarController.delegate?.clickChildTool?(type: .watermark, index: 0)
  517. }
  518. @IBAction func menuItemAction_background(_ sender: Any) {
  519. self.toolbarController.delegate?.clickChildTool?(type: .background, index: 0)
  520. }
  521. @IBAction func menuItemAction_headerfooter(_ sender: Any) {
  522. self.toolbarController.delegate?.clickChildTool?(type: .headerAndFooter, index: 0)
  523. }
  524. @IBAction func menuItemAction_bates(_ sender: Any) {
  525. self.toolbarController.delegate?.clickChildTool?(type: .bates, index: 0)
  526. }
  527. @IBAction func menuItemAction_batch(_ sender: Any) {
  528. // KMBatchWindowController.openFile(self.listView.document?.documentURL, .Batch)
  529. }
  530. func compression(_ sender: Any?) {
  531. self.toolbarController.delegate?.clickChildTool?(type: .compress, index: 0)
  532. }
  533. func merge(_ sender: Any?) {
  534. self.toolbarController.delegate?.clickChildTool?(type: .merge, index: 0)
  535. }
  536. func convert(_ sender: Any?) {
  537. self.toolbarController.delegate?.clickChildTool?(type: .word, index: 0)
  538. }
  539. func imageToPDF(_ sender: Any?) {
  540. KMApp.ShowImageToPDFWindow()
  541. }
  542. func extractImage(_ sender: Any?) {
  543. self.extractImageAction(num: 1)
  544. }
  545. func security(_ sender: Any?) {
  546. self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 1)
  547. }
  548. func decryption(_ sender: Any?) {
  549. self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 2)
  550. }
  551. func cropAll(_ sender: Any?) {
  552. // NSRect rect[2] = {NSIntegralRect([pdfView currentSelectionRect]), NSZeroRect};
  553. // NSPointerArray *rectArray = [NSPointerArray rectPointerArray];
  554. // BOOL emptySelection = NSIsEmptyRect(rect[0]);
  555. //
  556. // if (emptySelection) {
  557. // NSInteger i, j, count = [[pdfView document] pageCount];
  558. // rect[0] = rect[1] = NSZeroRect;
  559. //
  560. // if (count == 0)
  561. // return;
  562. //
  563. // [self beginProgressSheetWithMessage:[NSLocalizedString(@"Cropping Pages", @"Message for progress sheet") stringByAppendingEllipsis] maxValue:MIN(18, count)];
  564. //
  565. // if (count == 1) {
  566. // rect[0] = [[[pdfView document] pageAtIndex:0] foregroundBox];
  567. // [self incrementProgressSheet];
  568. // } else if (count < 19) {
  569. // for (i = 0; i < count; i++) {
  570. // rect[i % 2] = NSUnionRect(rect[i % 2], [[[pdfView document] pageAtIndex:i] foregroundBox]);
  571. // [self incrementProgressSheet];
  572. // }
  573. // } else {
  574. // NSInteger start[3] = {1, (count - 5) / 2, count - 6};
  575. // for (j = 0; j < 3; j++) {
  576. // for (i = start[j]; i < start[j] + 6; i++) {
  577. // rect[i % 2] = NSUnionRect(rect[i % 2], [[[pdfView document] pageAtIndex:i] foregroundBox]);
  578. // [self incrementProgressSheet];
  579. // }
  580. // }
  581. // }
  582. // CGFloat w = fmax(NSWidth(rect[0]), NSWidth(rect[1]));
  583. // CGFloat h = fmax(NSHeight(rect[0]), NSHeight(rect[1]));
  584. // for (j = 0; j < 2; j++)
  585. // rect[j] = NSMakeRect(floor(NSMidX(rect[j]) - 0.5 * w), floor(NSMidY(rect[j]) - 0.5 * h), w, h);
  586. // [rectArray addPointer:rect];
  587. // [rectArray addPointer:rect + 1];
  588. // } else {
  589. // [rectArray addPointer:rect];
  590. // }
  591. //
  592. // [self cropPagesToRects:rectArray];
  593. // [pdfView setCurrentSelectionRect:NSZeroRect];
  594. self.cropAllPage()
  595. }
  596. func crop(_ sender: Any?) {
  597. self.cropCurrentPage()
  598. }
  599. func autoCropAll(_ sender: Any?) {
  600. #warning("暂时这么处理,后续调整")
  601. self.cropAllPage()
  602. }
  603. func smartAutoCropAll(_ sender: Any?) {
  604. #warning("暂时这么处理,后续调整")
  605. self.cropAllPage()
  606. }
  607. func cropOptionsModel(_ sender: Any?) {
  608. KMPrint("cropOptionsModel ...")
  609. }
  610. func selectToolModel(_ sender: Any?) {
  611. self.toolbarController.clickItem(KMToolbarSelectToolModeItemIdentifier)
  612. }
  613. func takeSnapshot(_ sender: Any?) {
  614. self.listView.takeSnapshot(sender)
  615. }
  616. func takeSnapshotSelectContent(_ sender: Any?) {
  617. self.listView.takeSnapshotSelectContent(sender)
  618. }
  619. func changeAnnotationMode(_ sender: Any?) {
  620. if let data = sender as? NSMenuItem {
  621. self.changeAnnotationMode_itemAction(sender: data)
  622. }
  623. }
  624. func addWatermark(_ sender: Any?) {
  625. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  626. if item == nil {
  627. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  628. }
  629. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 1, info: nil)
  630. }
  631. func removeWatermark(_ sender: Any?) {
  632. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  633. if item == nil {
  634. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  635. }
  636. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 2, info: nil)
  637. }
  638. func batchAddWatermark(_ sender: Any?) {
  639. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  640. if item == nil {
  641. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  642. }
  643. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 3, info: nil)
  644. }
  645. func batchRemoveWatermark(_ sender: Any?) {
  646. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  647. if item == nil {
  648. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  649. }
  650. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 4, info: nil)
  651. }
  652. func templateWatermark(_ sender: Any?) {
  653. var item = self.toolbarController.findItem(KMToolbarToolWatermarkItemIdentifier)
  654. if item == nil {
  655. item = KMToolbarItemView(itemIdentifier: KMToolbarToolWatermarkItemIdentifier)
  656. }
  657. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 5, info: nil)
  658. }
  659. func addBackground(_ sender: Any?) {
  660. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  661. if item == nil {
  662. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  663. }
  664. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 1, info: nil)
  665. }
  666. func removeBackground(_ sender: Any?) {
  667. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  668. if item == nil {
  669. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  670. }
  671. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 2, info: nil)
  672. }
  673. func batchAddBackground(_ sender: Any?) {
  674. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  675. if item == nil {
  676. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  677. }
  678. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 3, info: nil)
  679. }
  680. func batchRemoveBackground(_ sender: Any?) {
  681. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  682. if item == nil {
  683. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  684. }
  685. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 4, info: nil) }
  686. func templateBackground(_ sender: Any?) {
  687. var item = self.toolbarController.findItem(KMToolbarToolBackgroundItemIdentifier)
  688. if item == nil {
  689. item = KMToolbarItemView(itemIdentifier: KMToolbarToolBackgroundItemIdentifier)
  690. }
  691. self.toolbarController.toolbarViewController(self.toolbarController.childToolBarView!, menuItemDidClick: item!, index: 5, info: nil)
  692. }
  693. func togglePoster(_ sender: Any?) {
  694. KMPrintWindowController.showNewPrintWindowControll(inputData: self.listView.document?.documentURL, inputDocument: nil, inputPageRange: KMPrintPageRange(), printType: .poster)
  695. }
  696. func toggleMultiple(_ sender: Any?) {
  697. KMPrintWindowController.showNewPrintWindowControll(inputData: self.listView.document?.documentURL, inputDocument: nil, inputPageRange: KMPrintPageRange(), printType: .multipage)
  698. }
  699. func toggleBooklet(_ sender: Any?) {
  700. KMPrintWindowController.showNewPrintWindowControll(inputData: self.listView.document?.documentURL, inputDocument: nil, inputPageRange: KMPrintPageRange(), printType: .pamphlet)
  701. }
  702. func rotateLeft(_ sender: Any?) {
  703. Task { @MainActor in
  704. let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
  705. let rotation = page.rotation
  706. page.leftRotate()
  707. self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
  708. }
  709. }
  710. func rotateRight(_ sender: Any?) {
  711. Task { @MainActor in
  712. let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
  713. let rotation = page.rotation
  714. page.rightRotate()
  715. self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
  716. }
  717. }
  718. func rotateAllLeft(_ sender: Any?) {
  719. Task { @MainActor in
  720. var pageItems: [KMThumbnailPageItem] = []
  721. for index in 0 ... self.listView.document.pageCount - 1 {
  722. let page: CPDFPage = self.listView.document.page(at: index)
  723. let rotation = page.rotation
  724. page.leftRotate()
  725. pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
  726. }
  727. self.rotatePageItems(pageItems: pageItems)
  728. }
  729. }
  730. func rotateAllRight(_ sender: Any?) {
  731. Task { @MainActor in
  732. var pageItems: [KMThumbnailPageItem] = []
  733. for index in 0 ... self.listView.document.pageCount - 1 {
  734. let page: CPDFPage = self.listView.document.page(at: index)
  735. let rotation = page.rotation
  736. page.leftRotate()
  737. pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
  738. }
  739. self.rotatePageItems(pageItems: pageItems)
  740. }
  741. }
  742. func autoSelectContent(_ sender: Any?) {
  743. self.listView.autoSelectContent(sender)
  744. }
  745. }
  746. // MARK: window Menu
  747. extension KMMainViewController {
  748. @IBAction func menuItemAction_showForwardTagPage(_ sender: Any) {
  749. (self.myDocument as? KMMainDocument)?.browser.selectPreviousTab()
  750. }
  751. @IBAction func menuItemAction_showNextTagPage(_ sender: Any) {
  752. (self.myDocument as? KMMainDocument)?.browser.selectNextTab()
  753. }
  754. @IBAction func menuItemAction_newTagPageToNewWindow(_ sender: Any) {
  755. self.browserWindowController?.openNewWindow(sender)
  756. }
  757. @IBAction func menuItemAction_mergeAllWindow(_ sender: Any) {
  758. ((self.myDocument as? KMMainDocument)?.browser.windowController as? KMBrowserWindowController)?.mergeAllWindow(sender)
  759. }
  760. @IBAction func menuItemAction_currentWindowName(_ sender: Any) {
  761. }
  762. }
  763. extension KMMainViewController: NSMenuItemValidation, NSMenuDelegate {
  764. func validateMenuItem(_ menuItem: NSMenuItem) -> Bool {
  765. if (menuItem.action == #selector(menuItemAction_currentWindowName)) {
  766. menuItem.title = (self.myDocument?.fileURL!.lastPathComponent)!
  767. return true
  768. }
  769. if (menuItem.action == #selector(menuItemAction_thumai) ||
  770. menuItem.action == #selector(menuItemAction_outline) ||
  771. menuItem.action == #selector(menuItemAction_bookmark) ||
  772. menuItem.action == #selector(menuItemAction_annotation) ||
  773. menuItem.action == #selector(menuItemAction_search)) {
  774. menuItem.state = .off
  775. let type = self.leftSideViewController.type.methodType
  776. if (menuItem.action == #selector(menuItemAction_thumai) && type == .Thumbnail) {
  777. menuItem.state = .on
  778. }
  779. if (menuItem.action == #selector(menuItemAction_outline) && type == .Outline) {
  780. menuItem.state = .on
  781. }
  782. if (menuItem.action == #selector(menuItemAction_bookmark) && type == .BookMark) {
  783. menuItem.state = .on
  784. }
  785. if (menuItem.action == #selector(menuItemAction_annotation) && type == .Annotation) {
  786. menuItem.state = .on
  787. }
  788. if (menuItem.action == #selector(menuItemAction_search) && type == .Search) {
  789. menuItem.state = .on
  790. }
  791. }
  792. if (menuItem.action == #selector(menuItemAction_hiddenLeftSide)) {
  793. if (self.leftPanelOpen) {
  794. menuItem.title = NSLocalizedString("Hide Left Side Panel", comment: "")
  795. } else {
  796. menuItem.title = NSLocalizedString("Show Left Side Panel", comment: "")
  797. }
  798. }
  799. if (menuItem.action == #selector(menuItemAction_hiddenRightSide)) {
  800. if (self.rightPanelIsOpen) {
  801. menuItem.title = NSLocalizedString("Hide Right Side Panel", comment: "")
  802. } else {
  803. menuItem.title = NSLocalizedString("Show Right Side Panel", comment: "")
  804. }
  805. }
  806. if (menuItem.action == #selector(menuItemAction_hiddenAllAnnotation)) {
  807. if (self.listView.hideNotes) {
  808. menuItem.title = NSLocalizedString("Show Notes", comment: "")
  809. } else {
  810. menuItem.title = NSLocalizedString("Hide Notes", comment: "")
  811. }
  812. }
  813. if (menuItem.action == #selector(menuItemAction_showForwardTagPage) ||
  814. menuItem.action == #selector(menuItemAction_showNextTagPage)) {
  815. let browser = self.browserWindowController?.browser
  816. if (browser != nil && (browser is KMBrowser)) {
  817. if (menuItem.action == #selector(menuItemAction_showForwardTagPage)) {
  818. return (browser as! KMBrowser).canSelectPreviousTab()
  819. }
  820. if (menuItem.action == #selector(menuItemAction_showNextTagPage)) {
  821. return (browser as! KMBrowser).canSelectNextTab()
  822. }
  823. }
  824. }
  825. if (menuItem.action == #selector(menuItemAction_mergeAllWindow)) {
  826. if let _browserWindowC = ((self.myDocument as? KMMainDocument)?.browser.windowController as? KMBrowserWindowController) {
  827. return _browserWindowC.canMergeAllWindow()
  828. }
  829. }
  830. if (menuItem.action == #selector(menuItemAction_nextPage) ||
  831. menuItem.action == #selector(menuItemAction_forwardPage) ||
  832. menuItem.action == #selector(menuItemAction_firstPage) ||
  833. menuItem.action == #selector(menuItemAction_lastPage) ||
  834. menuItem.action == #selector(menuItemAction_forward) ||
  835. menuItem.action == #selector(menuItemAction_goback)) {
  836. if (menuItem.action == #selector(menuItemAction_nextPage)) {
  837. if self.listView.isEditing() && self.listView.isEditable() {
  838. return false
  839. }
  840. return (self.pdfViewCanHorizontalScroll() == false && self.listView.canGoToNextPage())
  841. }
  842. if (menuItem.action == #selector(menuItemAction_forwardPage)) {
  843. if self.listView.isEditing() && self.listView.isEditable() {
  844. return false
  845. }
  846. return (self.pdfViewCanHorizontalScroll() == false && self.listView.canGoToPreviousPage())
  847. }
  848. if (menuItem.action == #selector(menuItemAction_firstPage)) {
  849. return self.listView.canGoToFirstPage()
  850. }
  851. if (menuItem.action == #selector(menuItemAction_lastPage)) {
  852. return self.listView.canGoToLastPage()
  853. }
  854. if (menuItem.action == #selector(menuItemAction_forward)) {
  855. return self.listView.km_canGoForward()
  856. }
  857. if (menuItem.action == #selector(menuItemAction_goback)) {
  858. return self.listView.km_canGoBack()
  859. }
  860. }
  861. if menuItem.action == #selector(changeAnnotationMode) || menuItem.action == #selector(changeAnnotationMode_itemAction) {
  862. // if ([[menuItem menu] numberOfItems] > ANNOTATION_MODE_COUNT)
  863. // [menuItem setState:[self toolMode] == SKNoteToolMode && [self annotationMode] == (SKNoteType)[menuItem tag] ? NSOnState : NSOffState];
  864. // else
  865. // [menuItem setState:[self annotationMode] == (SKNoteType)[menuItem tag] ? NSOnState : NSOffState];
  866. if self.listView.annotationType.rawValue == menuItem.tag {
  867. menuItem.state = .on
  868. } else {
  869. menuItem.state = .off
  870. }
  871. return true
  872. }
  873. guard let action = menuItem.action else {
  874. return false
  875. }
  876. if KMSystemMenu.isToolSelector(sel: action) {
  877. if action == KMSystemMenu.Tool.autoSelectContentSelector {
  878. let toolMode = self.listView?.toolMode ?? .none
  879. return toolMode == .selectToolMode
  880. }
  881. }
  882. return true
  883. }
  884. }