123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 |
- //
- // KMMainViewController+MenuAction.swift
- // PDF Master
- //
- // Created by tangchao on 2023/2/19.
- //
- import Foundation
- // MARK: File Menu
- extension KMMainViewController {
- @IBAction func menuItemClick_mergePDF(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .merge, index: 0)
- }
-
- @IBAction func menuItemClick_Compress(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .compress, index: 0)
- }
-
- @IBAction func menuItemClick_Convert(_ sender: Any) {
- }
-
- @IBAction func menuItemAction_ConvertToWord(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .word, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToExcel(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .excel, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToPPT(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .ppt, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToRTF(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .rtf, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToHTML(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .html, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToText(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .conversion_text, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToCSV(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .csv, index: 0)
- }
-
- @IBAction func menuItemAction_ConvertToImage(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .conversion_image, index: 0)
- }
-
- @IBAction func menuItemClick_SettingPassword(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 1)
- }
-
- @IBAction func menuItemClick_RemovePassword(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .secure, index: 2)
- }
-
- @IBAction func menuItemAction_closeWindow(_ sender: Any) {
- self.view.window?.close()
- }
-
- @IBAction func menuItemAction_closeAllWindows(_ sender: Any) {
- for window in NSApp.windows {
- window.close()
- }
- }
-
- @IBAction func menuItemAction_closeTagPage(_ sender: Any) {
- self.browserWindowController?.browser.closeTab()
- }
-
- @IBAction func menuItemAction_showInFinder(_ sender: Any) {
- NSWorkspace.shared.activateFileViewerSelecting([self.listView.document.documentURL])
- }
-
- @IBAction func menuItemAction_property(_ sender: Any) {
- KMInfoWindowController.shared.showWindow(sender)
- }
-
- @IBAction func menuItemAction_print(_ sender: Any) {
- self.showPrintWindow()
- }
- }
- extension KMMainViewController: KMSystemFileMenuProtocol {
- @IBAction func menuItemClick_saveAsFlattenedPDF(_ sender: Any) {
- Task { @MainActor in
- #if VERSION_DMG
- if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
- let _ = KMComparativeTableViewController.show(window: self.view.window!)
- return
- }
- #endif
- if await (KMLightMemberManager.manager.canPayFunction() == false) {
- let _ = KMSubscribeWaterMarkWindowController.show(window: self.view.window!) { isSubscribeSuccess, isWaterMarkExport, isClose in
- if (isClose) {
- return
- }
- if (isSubscribeSuccess) {
- self.saveAsFlattenedPDFAction()
- return
- }
- if (isWaterMarkExport) {
- self.saveAsFlattenedPDFAction(limit: true)
- return
- }
- }
- return
- }
- self.saveAsFlattenedPDFAction()
- }
- }
-
- func saveAsFlattenedPDFAction(limit: Bool = false) {
- DispatchQueue.main.async {
- NSPanel.savePanel(self.view.window!, true) { panel in
- panel.nameFieldStringValue = self.listView.document.documentURL.deletingPathExtension().lastPathComponent + "_flatten" + ".pdf"
- } completion: { response, url, isOpen in
- if (response == .cancel) {
- return
- }
-
- var result = false
- if (limit) {
- let data = KMTools.saveWatermarkDocumentForFlatten(document: self.listView.document, to: url!)
- result = data != nil
- } else {
- result = self.listView.document.writeFlatten(to: url!)
- }
- if (!result) {
- return
- }
-
- if (isOpen) {
- NSDocumentController.shared.km_safe_openDocument(withContentsOf: url!, display: true) { _, _, _ in
-
- }
- } else {
- NSWorkspace.shared.activateFileViewerSelecting([url!])
- }
- }
- }
- }
- }
- // MARK: Edit Menu
- @objc protocol KMEditMenuProtocol: NSObjectProtocol {
- @objc optional func undo(_ sender: Any)
- @objc optional func redo(_ sender: Any)
-
- @objc optional func cut(_ sender: Any)
- @objc optional func copy(_ sender: Any)
- @objc optional func paste(_ sender: Any)
- @objc optional func delete(_ sender: Any)
- }
- extension KMMainViewController: KMEditMenuProtocol {
- @IBAction func menuItemAction_find(_ sender: Any) {
- if (self.leftSideViewController.isShowPanel) {
- self.toolbarController.cancelSelected(KMLeftControlToolbarItemIdentifier)
- self.toolbarController.toolbarType = .None
- self.leftSideViewController.showPanelView(show: false)
- }
- // else {
- let isSearch = self.leftSideViewController.type.methodType == .Search
- self.leftSideViewController.refreshMethodType(methodType: .Search)
- if (isSearch) { // 关闭
- self.view.window?.makeFirstResponder(self.listView)
- }
- // }
- }
- }
- // MARK: View Menu
- extension KMMainViewController {
-
- // scale
-
- @IBAction func menuItemAction_adjustWidth(_ sender: Any) {
- self.selectZoom(.width)
- }
- @IBAction func menuItemAction_adjustPage(_ sender: Any) {
- self.selectZoom(.fit)
- }
- @IBAction func menuItemAction_size(_ sender: Any) {
- self.selectZoom(.actualSize)
- }
- @IBAction func menuItemAction_zoomOut(_ sender: Any) {
- if (self.listView.canZoomOut) {
- self.listView.zoomOut(nil)
- }
- }
- @IBAction func menuItemAction_zoomIn(_ sender: Any) {
- if (self.listView.canZoomIn) {
- self.listView.zoomIn(nil)
- }
- }
-
- // page show
-
- @IBAction func menuItemAction_singlePage(_ sender: Any) {
- self.selectDisplay(display: .singlePage)
- }
- @IBAction func menuItemAction_singlePageContinue(_ sender: Any) {
- self.selectDisplay(display: .singlePageContinuous)
- }
- @IBAction func menuItemAction_doublePage(_ sender: Any) {
- self.selectDisplay(display: .twoUp)
- }
- @IBAction func menuItemAction_doublePageContinue(_ sender: Any) {
- self.selectDisplay(display: .twoUpContinuous)
- }
- @IBAction func menuItemAction_bookMode(_ sender: Any) {
- self.selectDisplay(display: .bookMode)
- }
-
- @IBAction func menuItemAction_readMode(_ sender: Any) {
- if (self.isReadMode) {
- self.closeReadModel()
- } else {
- self.openReadModel()
- }
- }
- @IBAction func menuItemAction_showSplitPage(_ sender: Any) {
- self.listView?.displaysPageBreaks = !(self.listView?.displaysPageBreaks ?? false)
- self.listView.layoutDocumentView()
- }
- @IBAction func menuItemAction_autoScrol(_ sender: Any) {
- }
- @IBAction func menuItemAction_autoScrolSetting(_ sender: Any) {
- }
-
- // rotate
-
- @IBAction func menuItemAction_rotateLeft(_ sender: Any) {
- Task { @MainActor in
- #if VERSION_DMG
- if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
- let _ = KMComparativeTableViewController.show(window: self.view.window!)
- return
- }
- #endif
- let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
- let rotation = page.rotation
- page.leftRotate()
-
- self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
- }
- }
-
- func rotatePageItems(pageItems: [KMThumbnailPageItem]) {
- let tempPageItems = pageItems
- for pageItem in tempPageItems {
- pageItem.page.rotation = pageItem.rotate
- }
-
- self.listView.layoutDocumentView()
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "KMPDFViewRotatePage"), object: self.listView.document)
-
- self.listView.undoManager?.registerUndo(withTarget: self) { [unowned self] targetType in
- var tempPageItems: [KMThumbnailPageItem] = []
- for pageItem in pageItems {
- let item = KMThumbnailPageItem(page: pageItem.page, rotate: pageItem.oldRotate, oldRotate: pageItem.rotate)
- tempPageItems.append(item)
- }
- self.rotatePageItems(pageItems: tempPageItems)
- }
- }
- @IBAction func menuItemAction_rotateRight(_ sender: Any) {
- Task { @MainActor in
- #if VERSION_DMG
- if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
- let _ = KMComparativeTableViewController.show(window: self.view.window!)
- return
- }
- #endif
-
- let page : CPDFPage = self.listView?.currentPage() ?? CPDFPage()
- let rotation = page.rotation
- page.rightRotate()
-
- self.rotatePageItems(pageItems: [KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation)])
- }
- }
- @IBAction func menuItemAction_rotateAllPageLeft(_ sender: Any) {
- Task { @MainActor in
- #if VERSION_DMG
- if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
- let _ = KMComparativeTableViewController.show(window: self.view.window!)
- return
- }
- #endif
-
- var pageItems: [KMThumbnailPageItem] = []
- for index in 0 ... self.listView.document.pageCount - 1 {
- let page: CPDFPage = self.listView.document.page(at: index)
- let rotation = page.rotation
- page.leftRotate()
- pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
- }
- self.rotatePageItems(pageItems: pageItems)
- }
- }
- @IBAction func menuItemAction_rotateAllPageRight(_ sender: Any) {
- Task { @MainActor in
- #if VERSION_DMG
- if await (KMLightMemberManager.manager.canUseAdvanced() == false) {
- let _ = KMComparativeTableViewController.show(window: self.view.window!)
- return
- }
- #endif
-
- var pageItems: [KMThumbnailPageItem] = []
- for index in 0 ... self.listView.document.pageCount - 1 {
- let page : CPDFPage = self.listView.document.page(at: index)
- let rotation = page.rotation
- page.rightRotate()
- pageItems.append(KMThumbnailPageItem(page: page, rotate: page.rotation, oldRotate: rotation))
- }
- self.rotatePageItems(pageItems: pageItems)
- }
- }
-
- // split screen
-
- @IBAction func menuItemAction_splitScreenVerti(_ sender: Any) {
- }
- @IBAction func menuItemAction_splitScreenHorti(_ sender: Any) {
- }
- @IBAction func menuItemAction_splitScreenNo(_ sender: Any) {
- }
-
- @IBAction func menuItemAction_view_readMode(_ sender: Any) {
- if (self.isReadMode) {
- self.closeReadModel()
- } else {
- self.openReadModel()
- }
- }
- @IBAction func menuItemAction_enterFullScreen(_ sender: Any) {
- }
- @IBAction func menuItemAction_hiddenLeftSide(_ sender: Any) {
- if (self.leftSideViewController.type.methodType != .None) {
- self.leftSideViewController.selectType(self.leftSideViewController.type.methodType)
- } else {
- self.toolbarController.selectItem(KMLeftControlToolbarItemIdentifier)
- }
- }
-
- @IBAction func menuItemAction_hiddenRightSide(_ sender: Any) {
- self.toolbarController.selectItem(KMRightControlToolbarItemIdentifier)
- }
-
- @IBAction func menuItemAction_thumai(_ sender: Any) {
- self.leftSideViewController.refreshMethodType(methodType: .Thumbnail)
- }
- @IBAction func menuItemAction_outline(_ sender: Any) {
- self.leftSideViewController.refreshMethodType(methodType: .Outline)
- }
- @IBAction func menuItemAction_bookmark(_ sender: Any) {
- self.leftSideViewController.refreshMethodType(methodType: .BookMark)
- }
-
- @IBAction func menuItemAction_annotation(_ sender: Any) {
- self.leftSideViewController.refreshMethodType(methodType: .Annotation)
- }
- @IBAction func menuItemAction_search(_ sender: Any) {
- self.leftSideViewController.refreshMethodType(methodType: .Search)
- }
- @IBAction func menuItemAction_topic(_ sender: Any) {
- }
-
- @IBAction func menuItemAction_hiddenPageIndicator(_ sender: Any) {
-
- }
- }
- // MARK: Annotation Menu
- extension KMMainViewController {
- @IBAction func menuItemAction_highlight(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarHighlightAnnotationItemIdentifier)
- }
- @IBAction func menuItemAction_underline(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarUnderlineAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_deleteLine(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarStrikeOutAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_freehand(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarInkAnnotationItemIdentifier)
- }
- @IBAction func menuItemAction_text(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarFreeTextAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_note(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarAnchoredAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_squre(_ sender: Any) {
- UserDefaults.standard.set(6, forKey: KMToolBarToolPDFShapeStyle)
- if (self.listView.annotationType == .square) {
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- } else {
- if (self.listView.annotationType == .circle || self.listView.annotationType == .line || self.listView.annotationType == .arrow) {
- self.listView.annotationType = .square
- self.rightSideViewController.annotationProperties.annotationMode = .square
- } else {
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- }
- }
- }
- @IBAction func menuItemAction_circle(_ sender: Any) {
- UserDefaults.standard.set(7, forKey: KMToolBarToolPDFShapeStyle)
- if (self.listView.annotationType == .circle) { // 取消
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- } else {
- if (self.listView.annotationType == .square || self.listView.annotationType == .line || self.listView.annotationType == .arrow) { // 切换
- self.listView.annotationType = .circle
- self.rightSideViewController.annotationProperties.annotationMode = .circle
- } else { // 选中
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- }
- }
- }
-
- @IBAction func menuItemAction_arrow(_ sender: Any) {
- UserDefaults.standard.set(5, forKey: KMToolBarToolPDFShapeStyle)
- if (self.listView.annotationType == .arrow) { // 取消
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- } else { // 选中
- if (self.listView.annotationType == .square || self.listView.annotationType == .circle || self.listView.annotationType == .line) { // 切换
- self.listView.annotationType = .arrow
- self.rightSideViewController.annotationProperties.annotationMode = .arrow
- } else {
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- }
- }
- }
-
- @IBAction func menuItemAction_line(_ sender: Any) {
- UserDefaults.standard.set(4, forKey: KMToolBarToolPDFShapeStyle)
- if (self.listView.annotationType == .line) { // 取消
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- } else { // 选中
- if (self.listView.annotationType == .square || self.listView.annotationType == .circle || self.listView.annotationType == .arrow) { // 切换
- self.listView.annotationType = .line
- self.rightSideViewController.annotationProperties.annotationMode = .line
- } else {
- self.toolbarController.clickItem(KMToolbarSquareAnnotationItemIdentifier)
- }
- }
- }
- // link
-
- @IBAction func menuItemAction_link(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarLinkAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_linkPage(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarLinkAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_linkHttps(_ sender: Any) {
- }
-
- @IBAction func menuItemAction_linkEmail(_ sender: Any) {
- }
-
- // stamp
-
- @IBAction func menuItemAction_stamp(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMAnnotationStampToolbarItemIdentifier)
- }
-
- @IBAction func menuItemAction_stampStandard(_ sender: Any) {
-
- }
-
- @IBAction func menuItemAction_stampDynamic(_ sender: Any) {
- }
-
- @IBAction func menuItemAction_stampCustom(_ sender: Any) {
- }
-
- @IBAction func menuItemAction_signure(_ sender: Any) {
- self.mainMenuUpdateAnnotationStyle(identifier: KMToolbarSignSignatureAnnotationItemIdentifier)
- }
-
- @IBAction func menuItemAction_hiddenAllAnnotation(_ sender: Any) {
- self.showOrHideNotes()
- }
-
- @IBAction func menuItemAction_clearAllAnnotation(_ sender: Any) {
- self.removeAllAnnotations()
- }
-
- private func mainMenuUpdateAnnotationStyle(identifier : String) {
- if self.toolbarController.toolbarType != .Annatiton {
- let item : KMToolBoxItem = (self.toolbarController.mainToolBarView?.toolbarItemFindItemIdentifiers(value: KMDocumentAnnotationToolbarItemIdentifier))!
- self.toolbarController.mainToolBarView?.delegate?.toolbarViewController?(self.toolbarController.mainToolBarView!, clickMode: .Annatiton, toolbar: item, [])
- }
- let childitem : KMToolBoxItem = (self.toolbarController.childToolBarView?.toolbarItemFindItemIdentifiers(value: identifier))!
- self.toolbarController.mainToolBarView?.delegate?.changeAnnotationModeAction?(item: childitem.clickButton)
- }
- }
- // MARK: goto Menu
- extension KMMainViewController {
- @IBAction func menuItemAction_nextPage(_ sender: Any) {
- if (self.listView.canGoToNextPage()) {
- self.listView.goToNextPage(nil)
- }
- }
-
- @IBAction func menuItemAction_forwardPage(_ sender: Any) {
- if (self.listView.canGoToPreviousPage()) {
- self.listView.goToPreviousPage(nil)
- }
- }
-
- @IBAction func menuItemAction_firstPage(_ sender: Any) {
- if (self.listView.canGoToFirstPage()) {
- self.listView.goToFirstPage(nil)
- }
- }
-
- @IBAction func menuItemAction_lastPage(_ sender: Any) {
- if (self.listView.canGoToLastPage()) {
- self.listView.goToLastPage(nil)
- }
- }
-
- @IBAction func menuItemAction_forward(_ sender: Any) {
- if (self.listView.km_canGoForward()) {
- self.listView.km_goForward(nil)
- }
- }
-
- @IBAction func menuItemAction_goback(_ sender: Any) {
- if (self.listView.km_canGoBack()) {
- self.listView.km_goBack(nil)
- }
- }
-
- @IBAction func menuItemAction_gotoPage(_ sender: Any) {
- let sheet = KMTextFieldSheetController.init(windowNibName: "PageSheet")
- var pages : [String] = []
- for i in 0 ..< self.listView.document.pageCount {
- pages.append("\(i)")
- }
- sheet.callback = { [weak self] stringValue in
- if (stringValue == nil) {
- return
- }
- guard let index = Int(stringValue) else {
- return
- }
- if (self?.listView == nil) {
- return
- }
- if (index > 0 && index <= self!.listView.document.pageCount) {
- self?.listView.go(toPageIndex: index-1, animated: true)
- }
- }
- sheet.showWindow(nil)
- sheet.pageBox.addItems(withObjectValues: pages)
- sheet.stringValue = "\(self.listView.currentPageIndex+1)"
- }
- }
- // MARK: tool Menu
- extension KMMainViewController {
- @IBAction func menuItemAction_textTool(_ sender: Any) {
- self.toolbarController.selectItem(KMToolbarZoomToSelectionItemIdentifier)
- }
-
- @IBAction func menuItemAction_scrolTool(_ sender: Any) {
- self.toolbarController.selectItem(KMToolbarMoveToolModeItemIdentifier)
- }
-
- @IBAction func menuItemAction_zoomOutTool(_ sender: Any) {
- self.toolbarController.selectItem(KMToolbarMagnifyToolModeItemIdentifier)
- }
-
- @IBAction func menuItemAction_selectTool(_ sender: Any) {
- self.toolbarController.selectItem(KMToolbarSelectToolModeItemIdentifier)
- }
-
- @IBAction func menuItemAction_redact(_ sender: Any) {
- self.toolbarController.enterRedact()
- }
-
- @IBAction func menuItemAction_warkmark(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .watermark, index: 0)
- }
-
- @IBAction func menuItemAction_background(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .background, index: 0)
- }
-
- @IBAction func menuItemAction_headerfooter(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .headerAndFooter, index: 0)
- }
-
- @IBAction func menuItemAction_bates(_ sender: Any) {
- self.toolbarController.delegate?.clickChildTool?(type: .bates, index: 0)
- }
-
- @IBAction func menuItemAction_batch(_ sender: Any) {
- KMBatchWindowController.openFile(self.listView.document?.documentURL, .Batch)
- }
- }
- // MARK: window Menu
- extension KMMainViewController {
- @IBAction func menuItemAction_showForwardTagPage(_ sender: Any) {
- (self.myDocument as? KMMainDocument)?.browser.selectPreviousTab()
- }
-
- @IBAction func menuItemAction_showNextTagPage(_ sender: Any) {
- (self.myDocument as? KMMainDocument)?.browser.selectNextTab()
- }
-
- @IBAction func menuItemAction_newTagPageToNewWindow(_ sender: Any) {
- self.browserWindowController?.openNewWindow(sender)
- }
-
- @IBAction func menuItemAction_mergeAllWindow(_ sender: Any) {
- ((self.myDocument as? KMMainDocument)?.browser.windowController as? KMBrowserWindowController)?.mergeAllWindow(sender)
- }
-
- @IBAction func menuItemAction_currentWindowName(_ sender: Any) {
-
- }
- }
- extension KMMainViewController: NSMenuItemValidation, NSMenuDelegate {
- func validateMenuItem(_ menuItem: NSMenuItem) -> Bool {
- if (menuItem.action == #selector(menuItemAction_currentWindowName)) {
- menuItem.title = (self.myDocument?.fileURL!.lastPathComponent)!
- return true
- }
-
- if (menuItem.action == #selector(menuItemAction_thumai) ||
- menuItem.action == #selector(menuItemAction_outline) ||
- menuItem.action == #selector(menuItemAction_bookmark) ||
- menuItem.action == #selector(menuItemAction_annotation) ||
- menuItem.action == #selector(menuItemAction_search)) {
- menuItem.state = .off
- let type = self.leftSideViewController.type.methodType
- if (menuItem.action == #selector(menuItemAction_thumai) && type == .Thumbnail) {
- menuItem.state = .on
- }
- if (menuItem.action == #selector(menuItemAction_outline) && type == .Outline) {
- menuItem.state = .on
- }
- if (menuItem.action == #selector(menuItemAction_bookmark) && type == .BookMark) {
- menuItem.state = .on
- }
- if (menuItem.action == #selector(menuItemAction_annotation) && type == .Annotation) {
- menuItem.state = .on
- }
- if (menuItem.action == #selector(menuItemAction_search) && type == .Search) {
- menuItem.state = .on
- }
- }
- if (menuItem.action == #selector(menuItemAction_hiddenLeftSide)) {
- if (self.leftPanelOpen) {
- menuItem.title = NSLocalizedString("Hide Left Side Panel", comment: "")
- } else {
- menuItem.title = NSLocalizedString("Show Left Side Panel", comment: "")
- }
- }
- if (menuItem.action == #selector(menuItemAction_hiddenRightSide)) {
- if (self.rightPanelIsOpen) {
- menuItem.title = NSLocalizedString("Hide Right Side Panel", comment: "")
- } else {
- menuItem.title = NSLocalizedString("Show Right Side Panel", comment: "")
- }
- }
-
- if (menuItem.action == #selector(menuItemAction_hiddenAllAnnotation)) {
- if (self.listView.hideNotes) {
- menuItem.title = NSLocalizedString("Show Notes", comment: "")
- } else {
- menuItem.title = NSLocalizedString("Hide Notes", comment: "")
- }
- }
-
- if (menuItem.action == #selector(menuItemAction_showForwardTagPage) ||
- menuItem.action == #selector(menuItemAction_showNextTagPage)) {
- let browser = self.browserWindowController?.browser
- if (browser != nil && (browser is KMBrowser)) {
- if (menuItem.action == #selector(menuItemAction_showForwardTagPage)) {
- return (browser as! KMBrowser).canSelectPreviousTab()
- }
- if (menuItem.action == #selector(menuItemAction_showNextTagPage)) {
- return (browser as! KMBrowser).canSelectNextTab()
- }
- }
- }
- if (menuItem.action == #selector(menuItemAction_mergeAllWindow)) {
- if let _browserWindowC = ((self.myDocument as? KMMainDocument)?.browser.windowController as? KMBrowserWindowController) {
- return _browserWindowC.canMergeAllWindow()
- }
- }
-
- if (menuItem.action == #selector(menuItemAction_nextPage) ||
- menuItem.action == #selector(menuItemAction_forwardPage) ||
- menuItem.action == #selector(menuItemAction_firstPage) ||
- menuItem.action == #selector(menuItemAction_lastPage) ||
- menuItem.action == #selector(menuItemAction_forward) ||
- menuItem.action == #selector(menuItemAction_goback)) {
- if (menuItem.action == #selector(menuItemAction_nextPage)) {
- if self.listView.isEditing() && self.listView.isEditable() {
- return false
- }
- return (self.pdfViewCanHorizontalScroll() == false && self.listView.canGoToNextPage())
- }
- if (menuItem.action == #selector(menuItemAction_forwardPage)) {
- if self.listView.isEditing() && self.listView.isEditable() {
- return false
- }
- return (self.pdfViewCanHorizontalScroll() == false && self.listView.canGoToPreviousPage())
- }
- if (menuItem.action == #selector(menuItemAction_firstPage)) {
- return self.listView.canGoToFirstPage()
- }
- if (menuItem.action == #selector(menuItemAction_lastPage)) {
- return self.listView.canGoToLastPage()
- }
- if (menuItem.action == #selector(menuItemAction_forward)) {
- return self.listView.km_canGoForward()
- }
- if (menuItem.action == #selector(menuItemAction_goback)) {
- return self.listView.km_canGoBack()
- }
- }
- return true
- }
- }
|