123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987 |
- //
- // KMToolbarController.swift
- // PDF Reader Pro
- //
- // Created by wanjun on 2022/12/29.
- //
- import Cocoa
- extension CAnnotationType {
- func isAdvanced() -> Bool {
- if (self == .link || self == .stamp || self == .signSignature) {
- return true
- }
- if (self == .signText || self == .signTure || self == .signFalse || self == .signCircle || self == .signLine || self == .signDot || self == .signDate) {
- return true
- }
- if (self == .addText || self == .addImage) {
- return true
- }
- return false
- }
-
- func isMarkup() -> Bool {
- if self == .highlight || self == .underline || self == .strikeOut || self == .ink {
- return true
- }
- return false
- }
-
- func isSquare() -> Bool {
- if self == .square || self == .circle || self == .line || self == .arrow {
- return true
- }
- return false
- }
- }
- @objc protocol KMToolbarControllerDelegate {
- @objc optional func toolbarController(_ viewController: KMToolbarController, heightOffsetChange heightOffset: Float, animated: Bool)
- @objc optional func changeAnnotationModeAction(item:KMToolbarClickButton)
- @objc optional func showPDFLayoutModeAction(show:Bool)
- @objc optional func clickChildTool(type: KMToolbarType, index: Int)
- @objc optional func changePDFViewZoomModelAction(selectedTag:Int)
- @objc optional func changePDFViewZoomInAction()
- @objc optional func changePDFViewZoomOutAction()
- @objc optional func changePDFViewGotoNextPageAction()
- @objc optional func changePDFViewGoToPreviousPageAction()
- @objc optional func changePDFViewGotoBackAction()
- @objc optional func changePDFViewGoToForwardAction()
- @objc optional func aiTranslationPDFFileAction()
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, zoomModel selectedTag:Int)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, zoomSting : String)
- @objc optional func mainToolDidClicked(_ toolController: KMToolbarController, _ beforeType: KMToolbarViewType, _ type: KMToolbarViewType, _ item: KMToolbarItemView, _ pages: [Int])
-
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, shareAction toolbarItem: KMToolbarItemView)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, shareDocument item:NSMenuItem)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, shareFlatten item:NSMenuItem)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, shareOriginalPDF item:NSMenuItem)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, scanOCRModel selectedTag:Int)
-
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, itemDidClick toolbarItem: KMToolbarItemView)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, searchAction searchString: String, forward: Bool)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, findSearchAction searchString: String, forward: Bool)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, findSearchAllAction searchString: String, forward: Bool)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, menuItemDidClick toolbarItem: KMToolbarItemView, index: Int, info: Any?)
- @objc optional func toolbarViewController(_ viewController:KMToolbarViewController, viewItemDidClick toolbarItem: KMToolbarItemView, index: Int, info: Any?)
- }
- class KMToolbarController: NSViewController {
- static let mainToolBarHeight: Float = 48
- static let childToolBarHeightValue: Float = 41
- static let findBarHeight: Float = 25
-
- @IBOutlet weak var mainToolBarBox: NSBox!
- @IBOutlet weak var childToolBarBox: NSBox!
- @IBOutlet weak var secondaryToolBarBox: NSBox!
- @IBOutlet weak var mainToolBarHeight: NSLayoutConstraint!
- @IBOutlet weak var childToolBarHeight: NSLayoutConstraint!
- @IBOutlet weak var secondaryToolBarHeight: NSLayoutConstraint!
- @IBOutlet weak var bottomOffset: NSLayoutConstraint!
- var mainToolBarView: KMToolbarViewController?
- var childToolBarView: KMToolbarViewController?
- var _toolbarType : KMToolbarViewType = KMToolbarViewType.None
- weak var mainViewController: KMMainViewController?
- open weak var delegate: KMToolbarControllerDelegate?
- var toolbarItems : [NSToolbarItem.Identifier : Any] = [:]
- var listView : CPDFListView?
- var lastItemBox : KMToolbarItemView = KMToolbarItemView()
- var lastChildItemBox : KMToolbarItemView = KMToolbarItemView()
-
- var popover: NSPopover?
-
- //find seaarch
- @IBOutlet weak var findSearchView: KMSearchFindView!
-
- // 是否显示所有注释
- private var _isShowAllAnnotations = true
- // 是否显示所有注释
- var isShowAllAnnotations: Bool {
- get {
- return _isShowAllAnnotations
- }
- set {
- _isShowAllAnnotations = newValue
-
- self.childToolBarView?.isShowAllAnnotations = newValue
-
- self.findChildItem(KMToolbarShowToolbarItemIdentifier)?.isSelected = !newValue
- }
- }
-
-
- private var _ignoreCurrentAnnotationTypeChange = false
- var ignoreCurrentAnnotationTypeChange: Bool {
- get {
- return self._ignoreCurrentAnnotationTypeChange
- }
- set {
- self._ignoreCurrentAnnotationTypeChange = newValue
-
- self.childToolBarView?.ignoreCurrentAnnotationTypeChange = self.ignoreCurrentAnnotationTypeChange
- // 忽略后重置 这个属性是基于单次添加,所以使用后会重置
- // self._ignoreCurrentAnnotationTypeChange = false
- }
- }
-
- var mainToolBarisVisable: Bool {
- get {
- return self.mainToolBarBox.isHidden == false
- }
- set {
- let needShow = newValue
- let currentIsShow = self.mainToolBarisVisable
- let toolBarH: Float = Self.mainToolBarHeight
- if needShow {
- if currentIsShow { // 当前已显示
- return
- }
- let height = self.view.frame.size.height
- self.mainToolBarBox.animator().isHidden = false
- self.mainToolBarHeight.animator().constant = toolBarH.cgFloat
- self.delegate?.toolbarController?(self, heightOffsetChange: Float(height)+toolBarH, animated: true)
- } else {
- if currentIsShow == false { // 当前已隐藏
- return
- }
- let height = self.view.frame.size.height
- self.mainToolBarBox.isHidden = true
- self.mainToolBarHeight.animator().constant = 0
- self.delegate?.toolbarController?(self, heightOffsetChange: Float(height)-toolBarH, animated: true)
- }
- }
- }
- override func viewDidLoad() {
- super.viewDidLoad()
- // Do view setup here.
-
- updateViewColor()
-
- mainToolBarView = KMToolbarViewController.init()
- mainToolBarView?.view.wantsLayer = true
- mainToolBarView?.view.layer?.backgroundColor = NSColor.km_init(hex: "#F7F8FA").cgColor
- mainToolBarBox.contentView = mainToolBarView?.view
- mainToolBarView?.delegate = self
- if let data = self.listView {
- mainToolBarView?.pdfView = data
- }
-
- childToolBarView = KMToolbarViewController.init()
- childToolBarView?.view.wantsLayer = true
- childToolBarView?.view.layer?.backgroundColor = NSColor.km_init(hex: "#F7F8FA").cgColor
- childToolBarBox.contentView = childToolBarView?.view
- childToolBarView?.view.frame = childToolBarBox.frame
- childToolBarView?.delegate = self
- childToolBarView?.view.autoresizingMask = [.width, .height]
- if let data = self.listView {
- childToolBarView?.pdfView = data
- }
-
- toolbarType = .None
- mainToolBarView?.toolbarType = .Main
- mainToolBarView?.reloadateToolbar()
- mainToolBarView?.toolbar?.allowsUserCustomization = true
-
- self.findSearchView.isHidden = true
-
- NotificationCenter.default.addObserver(self, selector: #selector(selectedShapAnnotationChangeNotification(_:)), name: NSNotification.Name.init(rawValue: "KMSelectedShapAnnotationChangeNotification"), object: nil)
- NotificationCenter.default.addObserver(self, selector: #selector(PDFChangedNotification(_:)), name: NSNotification.Name.init(rawValue: "PDFChangedNotification"), object: nil)
- NotificationCenter.default.addObserver(self, selector: #selector(PDFTextEditPDFChangedNotification(_:)), name: NSNotification.Name.init(rawValue: "KMPDFTextEditPDFChangedNotification"), object: nil)
- }
-
- // MARK:
-
- func updateViewColor() -> Void {
-
- }
-
- // MARK: Setter&Getter
-
- var toolbarType: KMToolbarViewType {
- set {
- if newValue == _toolbarType {
- if newValue == .Move || newValue == .Magnify || newValue == .Select || newValue == .SelectZoom {
- _toolbarType = .Annatiton
- } else {
- _toolbarType = .None
- }
- } else {
- _toolbarType = newValue
- }
- mainToolBarView?.toolbar?.isHidden = false
- secondaryToolBarBox.isHidden = true
- secondaryToolBarHeight.constant = 51
- let mainToolbarH = self.mainToolBarisVisable ? Self.mainToolBarHeight : 0
- if self.mainViewController!.isReadMode {
- if (_toolbarType == .Annatiton) {
- let childToolbarH = Self.childToolBarHeightValue
- bottomOffset.constant = childToolbarH.cgFloat
- mainToolBarHeight.constant = 0
- childToolBarBox.isHidden = false
- self.delegate?.toolbarController?(self, heightOffsetChange: 41, animated: false)
- } else {
- mainToolBarHeight.constant = 0
- bottomOffset.constant = 0
- childToolBarBox.isHidden = true
- mainToolBarView?.toolbar?.isHidden = true
- self.delegate?.toolbarController?(self, heightOffsetChange: 0, animated: false)
- }
- } else {
- if _toolbarType == .None {
- bottomOffset.constant = 0
- childToolBarBox.isHidden = true
- self.delegate?.toolbarController?(self, heightOffsetChange: mainToolbarH, animated: false)
- } else if _toolbarType == .Page || _toolbarType == .LeftPanel || _toolbarType == .redact {
- bottomOffset.constant = 0
- childToolBarBox.isHidden = true
- self.delegate?.toolbarController?(self, heightOffsetChange: mainToolbarH, animated: false)
- } else {
- let childToolbarH = Self.childToolBarHeightValue
- bottomOffset.constant = childToolbarH.cgFloat
- childToolBarBox.isHidden = false
- self.delegate?.toolbarController?(self, heightOffsetChange: mainToolbarH + childToolbarH, animated: false)
- }
- }
- childToolBarView?.toolbarType = _toolbarType
- childToolBarView?.reloadateToolbar()
- }
- get {
- return _toolbarType
- }
- }
-
- // MARK: -
- // MARK: Public Methods
-
- // 取消选中 [只是取消选中状态,不会执行具体的方法]
- public func cancelSelected(_ identifier: String) {
- if (isMainToolItem(identifier)) {
- self.findMainItem(identifier)?.isSelected = false
- return
- }
-
- self.findChildItem(identifier)?.isSelected = false
- }
-
- public func clickItem(_ identifier: String) {
- self.selectItem(identifier)
- }
-
- public func selectItem(_ identifier: String) {
- if (isMainToolItem(identifier)) {
- self.selectMainItem(identifier)
- return
- }
-
- if let parentItem = self.findItem(parentIdentifier(identifier)), parentItem.isSelected {
- if (self.trySelectChildItem(identifier)) { // 尝试去选子工具栏
- return
- }
- }
-
- // 当前主工具栏未开启
- let mainToolIdentifier = parentIdentifier(identifier)
- if (mainToolIdentifier.isEmpty) {
- return
- }
- // 找到主工具栏
- self.selectMainItem(mainToolIdentifier)
- DispatchQueue.main.async {
- // 再去选择子工具栏
- self.selectChildItem(identifier)
- }
- }
-
- public func findItem(_ identifier: String) -> KMToolbarItemView? {
- if (isMainToolItem(identifier)) {
- return self.findMainItem(identifier)
- }
- return self.findChildItem(identifier)
- }
-
- // MARK: -
- // MARK: private Methods
-
- private func selectMainItem(_ identifier: String) {
- if (self.mainToolBarView?.toolbarItems == nil) {
- return
- }
-
- var item: KMToolbarItemView?
- for (key, value) in self.mainToolBarView?.toolbarItems ?? [:] {
- if (key == identifier) {
- item = (value as? KMToolbarItemView)
- break
- }
- }
- // 主工具栏 item
- if let data = item {
- if (identifier == KMDocumentAnnotationToolbarItemIdentifier ||
- identifier == KMDocumentPageToolbarItemIdentifier ||
- identifier == KMDocumentConversonToolbarItemIdentifier ||
- identifier == KMDocumentEditToolbarItemIdentifier ||
- identifier == KMDocumentFormToolbarItemIdentifier ||
- identifier == KMDocumentFillSginToolbarItemIdentifier ||
- identifier == KMDocumentToolToolbarItemIdentifier) {
- self.mainToolBarView?.leftControllButtonAction(item: data.clickButton)
- } else if (identifier == KMRightControlToolbarItemIdentifier) {
- self.mainToolBarView?.itemAction(data)
- } else if (identifier == KMLeftControlToolbarItemIdentifier) {
- self.mainToolBarView?.itemAction(data)
- } else if identifier == KMDocumentRedactToolbarItemIdentifier {
- self.mainToolBarView?.itemAction(data)
- } else if identifier == KMDocumentScanOCRToolbarItemIdentifier {
- self.mainToolBarView?.itemAction(data)
- } else if identifier == KMDocumentAIToolsToolbarItemIdentifier {
- self.mainToolBarView?.itemAction(data)
- }
-
- return
- }
- }
-
- private func trySelectChildItem(_ identifier: String) -> Bool {
- // 子工具栏 item [当前主工具栏已开启]
- var item: KMToolbarItemView?
- if let items = self.childToolBarView?.toolbarItems, items.count > 0 {
- for (key, value) in items {
- if (key == identifier) {
- item = (value as? KMToolbarItemView)
- break
- }
- }
- // 子工具栏[找到]
- if (item != nil) {
- self.selectChildItem(identifier)
- return true
- }
- }
- return false
- }
-
- private func selectChildItem(_ identifier: String) {
- // 子工具栏 item [当前主工具栏已开启]
- var item: KMToolbarItemView?
- if let items = self.childToolBarView?.toolbarItems, items.count > 0 {
- for (key, value) in items {
- if (key == identifier) {
- item = (value as? KMToolbarItemView)
- break
- }
- }
- // 子工具栏[找到]
- if let data = item {
- if (identifier == KMToolbarMoveToolModeItemIdentifier ||
- identifier == KMToolbarMagnifyToolModeItemIdentifier ||
- identifier == KMToolbarSelectToolModeItemIdentifier ||
- identifier == KMToolbarZoomToSelectionItemIdentifier) {
- self.childToolBarView?.leftControllButtonAction(item: data.clickButton)
- } else if identifier == KMToolbarViewSettingIdentifier ||
- identifier == KMAnnotationImageToolbarItemIdentifier ||
- identifier == KMAnnotationTableToolbarItemIdentifier {
- self.childToolBarView?.itemAction(data)
- } else {
- self.childToolBarView?.changeAnnotationMode(item: data.clickButton)
- }
- }
- }
- }
-
- private func findMainItem(_ identifier: String) -> KMToolbarItemView? {
- if (self.mainToolBarView?.toolbarItems == nil) {
- return nil
- }
-
- var item: KMToolbarItemView?
- if (isMainToolItem(identifier)) {
- for (key, value) in self.mainToolBarView?.toolbarItems ?? [:] {
- if (key == identifier) {
- item = (value as? KMToolbarItemView)
- break
- }
- }
- return item
- }
- return nil
- }
-
- private func findChildItem(_ identifier: String) -> KMToolbarItemView? {
- if (self.childToolBarView?.toolbarItems == nil || self.childToolBarView!.toolbarItems.count == 0) {
- return nil
- }
-
- var item: KMToolbarItemView?
- for (key, value) in self.childToolBarView?.toolbarItems ?? [:] {
- if (key == identifier) {
- item = (value as? KMToolbarItemView)
- break
- }
- }
- return item
- }
-
- func exitPageEdit() -> Void {
- if let data = self.mainToolBarView {
- resetToolbarViewController(data)
- exitPageEditToolbarViewController(data)
- }
- }
-
- func exitTextEdit() -> Void {
- secondaryToolBarBox.isHidden = true
- secondaryToolBarHeight.constant = 50
- bottomOffset.constant = 51
- childToolBarBox.isHidden = false
- self.delegate?.toolbarController?(self, heightOffsetChange: 102, animated: false)
- }
-
- func enterWatermarkAdjective(_ type: KMToolbarType, _ itemTitles: Array<Array<String>>) {
- self.toolbarType = .None
-
- let topBarView = KMWatermarkAdjectiveTopBarView()
- topBarView.frame = (self.mainToolBarView?.toolbar?.bounds) ?? .zero
- self.mainToolBarView?.toolbar?.addSubview(topBarView)
- topBarView.autoresizingMask = NSView.AutoresizingMask(rawValue: 18)
- topBarView.wantsLayer = true
- topBarView.layer?.backgroundColor = NSColor.white.cgColor
-
- topBarView.isCanApply(can: false)
-
- var itemModels: Array<Array<KMWatermarkAdjectiveTopBarItemModel>> = []
- for items in itemTitles {
- var array: Array<KMWatermarkAdjectiveTopBarItemModel> = []
- for title in items {
- let model = KMWatermarkAdjectiveTopBarItemModel()
- model.iconName = ""
- model.itemTitle = title
- array.append(model)
- }
- itemModels.append(array)
- }
-
- topBarView.initItemData(itemArrays: itemModels)
-
- topBarView.cancelClick = { [weak self] in
- self?.delegate?.clickChildTool?(type: type, index: 1)
- }
-
- topBarView.applyClick = { [weak self] in
- self?.delegate?.clickChildTool?(type: type, index: 2)
- }
-
- topBarView.itemClick = { [weak self] section,item in
- self?.delegate?.clickChildTool?(type: type, index: 3+item)
- }
- }
-
- func exitWatermarkAdjective() {
- let topBarView = self.mainToolBarView?.toolbar?.subviews.last
- if (topBarView == nil || topBarView?.isKind(of: KMWatermarkAdjectiveTopBarView.self) == false) {
- return
- }
-
- topBarView?.removeFromSuperview()
- }
-
- func fetchTopBarView() -> NSView? {
- let topBarView = self.mainToolBarView?.toolbar?.subviews.last
- if (topBarView == nil) {
- return nil
- }
- if (topBarView?.isKind(of: KMWatermarkAdjectiveTopBarView.self) == true) {
- return topBarView
- }
-
- if (topBarView?.isKind(of: KMRedactTopToolBar.self) == true) {
- return topBarView
- }
-
- return nil
- }
-
- func enterRedact() {
- self.toolbarType = .None
-
- let topBarView = KMRedactTopToolBar()
- topBarView.frame = (self.mainToolBarView?.toolbar?.bounds) ?? .zero
- self.mainToolBarView?.toolbar?.addSubview(topBarView)
- topBarView.autoresizingMask = [.width, .height]
- topBarView.wantsLayer = true
- topBarView.layer?.backgroundColor = NSColor.white.cgColor
-
- topBarView.selectItem(0)
- self.delegate?.clickChildTool?(type: .redact, index: 4)
-
- topBarView.itemClick = { [weak self] index in
- self?.delegate?.clickChildTool?(type: .redact, index: index)
- }
- }
-
- func exitRedact() {
- let topBarView = self.mainToolBarView?.toolbar?.subviews.last
- if (topBarView == nil || topBarView?.isKind(of: KMRedactTopToolBar.self) == false) {
- return
- }
-
- topBarView?.removeFromSuperview()
- }
-
- // MARK: NSNotification
-
- @objc func selectedShapAnnotationChangeNotification(_ notification: Notification) -> Void {
-
- }
-
- @objc func PDFChangedNotification(_ notification: Notification) -> Void {
-
- }
-
- @objc func PDFTextEditPDFChangedNotification(_ notification: Notification) -> Void {
-
- }
-
- // MARK:
-
- func resetToolbarViewController(_ toolbarViewController: KMToolbarViewController) -> Void {
- self.toolbarType = .None
- self.mainToolBarView?.resetToolbar()
- self.mainViewController?.listView.annotationType = .unkown
- }
-
- func exitPageEditToolbarViewController(_ toolbarViewController: KMToolbarViewController) -> Void {
-
- }
-
- // MARK: item actions
-
- @objc func cropItemAction(sender: NSMenuItem) {
- if (sender.tag == 0) { /// 裁剪当前页面
- self.delegate?.clickChildTool?(type: .crop, index: 1)
- return
- }
-
- if (sender.tag == 1) { /// 裁剪所有页面
- self.delegate?.clickChildTool?(type: .crop, index: 2)
- return
- }
-
- /// 自定义裁剪区域
- self.delegate?.clickChildTool?(type: .crop, index: 3)
- }
-
- @objc func secureItemAction(sender: NSMenuItem) {
- var index: Int = 1
- if (sender.tag == 1) { /// 删除安全性设置
- index = 2
- }
-
- self.delegate?.clickChildTool?(type: .secure, index: index)
- }
-
- override func interfaceThemeDidChanged(_ appearance: NSAppearance.Name) {
- super.interfaceThemeDidChanged(appearance)
-
- self.mainToolBarView?.interfaceThemeDidChanged(appearance)
- self.childToolBarView?.interfaceThemeDidChanged(appearance)
- }
- }
- //MARK: Find Search
- extension KMToolbarController {
- func showFindBar() {
- self.findSearchView.isHidden = false
- let height: Float = self.fetchHeight(type: _toolbarType)
- self.delegate?.toolbarController?(self, heightOffsetChange: height, animated: false)
-
- self.findSearchView.findField.becomeFirstResponder()
- self.findSearchView.doneAction = { [weak self] view in
- self?.exitFindBar()
- }
-
- self.findSearchView.searchAction = { [weak self] view, searchString, forward in
- if let data = self?.mainToolBarView {
- self?.toolbarViewController(data, findSearchAction: searchString, forward: forward)
- }
- return true
- }
-
- self.findSearchView.showAllAction = { [weak self] view, searchString, forward in
- if let data = self?.mainToolBarView {
- self?.toolbarViewController(data, findSearchAllAction: searchString, forward: forward)
- }
- }
- }
-
- func showFindString(forward: Bool) {
- if let data = self.mainToolBarView {
- self.toolbarViewController(data, findSearchAction: self.findSearchView.findString ?? "", forward: forward)
- }
-
- }
-
- func showAllAction() {
- if let data = self.mainToolBarView {
- self.toolbarViewController(data, findSearchAllAction: self.findSearchView.findString ?? "", forward: true)
- }
- }
-
- func exitFindBar() {
- self.findSearchView.isHidden = true
- let height: Float = self.fetchHeight(type: _toolbarType, isShow: false)
- self.delegate?.toolbarController?(self, heightOffsetChange: height, animated: false)
- }
-
- func fetchHeight(type: KMToolbarViewType, isShow: Bool = true) -> Float {
- var height: Float = 0.0
- let mainToolbarH = self.mainToolBarisVisable ? Self.mainToolBarHeight : 0
- let childToolbarH = Self.childToolBarHeightValue
- let findBarH = Self.findBarHeight
- if isShow {
- if _toolbarType == .None {
- bottomOffset.constant = findBarH.cgFloat
- height = mainToolbarH
- } else if _toolbarType == .Page || _toolbarType == .LeftPanel || _toolbarType == .redact {
- bottomOffset.constant = findBarH.cgFloat
- height = mainToolbarH
- } else {
- bottomOffset.constant = childToolbarH.cgFloat + findBarH.cgFloat
- height = mainToolbarH + childToolbarH
- }
- height = height + findBarH
- } else {
- if _toolbarType == .None {
- bottomOffset.constant = 0
- height = mainToolbarH
- } else if _toolbarType == .Page || _toolbarType == .LeftPanel || _toolbarType == .redact {
- bottomOffset.constant = 0
- height = mainToolbarH
- } else {
- bottomOffset.constant = childToolbarH.cgFloat
- height = mainToolbarH + childToolbarH
- }
- }
- return height
- }
- }
- extension KMToolbarController: KMToolbarViewControllerDelegate {
- func changeAnnotationModeAction(item: KMToolbarClickButton) {
- let type = CAnnotationType(rawValue: item.tag) ?? CAnnotationType.unkown
- if (type.isAdvanced() == false) {
- if self.toolbarType == .Magnify || self.toolbarType == .Move || self.toolbarType == .Select || self.toolbarType == .SelectZoom {
- self.toolbarType = .Annatiton
- }
-
- self.delegate?.changeAnnotationModeAction?(item: item)
- return
- }
-
- // 高级功能
- Task { @MainActor in
- //文字编辑 图片编辑 选中按钮逻辑(只能同时选中其中一个)
- if type == .addText || type == .addImage {
- let boxItem = item.clickObject as? KMToolbarItemView
- if let data = boxItem {
- if self.lastChildItemBox != data {
- self.lastChildItemBox.isSelected = false
- data.isSelected = true
- } else {
- data.isSelected = !data.isSelected
- }
- self.lastChildItemBox = data
- }
- }
-
- if self.toolbarType == .Magnify || self.toolbarType == .Move || self.toolbarType == .Select || self.toolbarType == .SelectZoom {
- self.toolbarType = .Annatiton
- }
- self.trackEvent(type: type)
- self.delegate?.changeAnnotationModeAction?(item: item)
- }
- }
-
- func trackEvent(type: CAnnotationType) {
- var eventStr = "Btn_SubTbr_Fill&Sign_Check"
- switch type {
- case .signTure:
- eventStr = "Btn_SubTbr_Fill&Sign_Check"
- case .signFalse:
- eventStr = "Btn_SubTbr_Fill&Sign_X"
- case .signDate:
- eventStr = "Btn_SubTbr_Fill&Sign_Date"
- case .signDot:
- eventStr = "Btn_SubTbr_Fill&Sign_Dot"
- case .signCircle:
- eventStr = "Btn_SubTbr_Fill&Sign_Circle"
- case .signLine:
- eventStr = "Btn_SubTbr_Fill&Sign_Line"
- default:
- eventStr = ""
- break
- }
- if eventStr.count > 1{
- FMTrackEventManager.defaultManager.trackEvent(event: "SubTbr_Fill&Sign", withProperties: ["SubTbr_Btn": eventStr])
- }
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, clickMode toolMode: KMToolbarViewType, toolbar toolbarItem: KMToolbarItemView, _ pages: [Int]) {
- let beforeModel = KMToolbarViewType(rawValue: self.lastItemBox.clickButton.tag) ?? .None
- if self.lastItemBox != nil {
- if (toolbarItem.isSelected && toolMode.isToolMode()) {
- // no nothings
- } else {
- self.lastItemBox.isSelected = false
- }
- }
-
- if self.lastChildItemBox != nil {
- if toolMode == .editPDF {
- if !self.lastItemBox.isSelected {
- self.lastChildItemBox.isSelected = false
- }
- }
- }
-
- if toolMode != .Magnify && toolMode != .Move && toolMode != .Select && toolMode != .SelectZoom && toolMode != .LeftPanel && toolMode != .RightPanel {
- if(toolMode == self.toolbarType) {
- toolbarItem.isSelected = false
- } else {
- toolbarItem.isSelected = true
- self.lastItemBox = toolbarItem
- self.trackEvent(toolType: toolMode)
- }
- } else {
- if(toolMode != self.toolbarType && toolMode != .LeftPanel) {
- let item : KMToolbarItemView = (self.mainToolBarView?.toolbarItemFindItemIdentifiers(value: KMDocumentAnnotationToolbarItemIdentifier))!
- item.isSelected = true
- self.lastItemBox = item
- if toolMode == .Select {
- FMTrackEventManager.defaultManager.trackEvent(event: "SubTbr_Tools", withProperties: ["SubTbr_Btn" : "Btn_SubTbr_Tools_ContentSelection"])
- }
- if toolMode == .SelectZoom {
- FMTrackEventManager.defaultManager.trackEvent(event: "SubTbr_Tools", withProperties: ["SubTbr_Btn" : "Btn_SubTbr_Tools_Zoom"])
- }
- } else if (toolMode == .LeftPanel) {
- if(toolMode == self.toolbarType) {
- toolbarItem.isSelected = false
- } else {
- toolbarItem.isSelected = true
- }
- }
- }
- self.toolbarType = toolMode
-
- self.delegate?.mainToolDidClicked?(self, beforeModel, toolMode, toolbarItem, pages)
- }
-
- func trackEvent(toolType type: KMToolbarViewType) -> Void {
- if (type == .Annatiton) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_Tools"])
- } else if (type == .editPDF) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_EditPDF"])
- } else if (type == .Page) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_PageEdit"])
- } else if (type == .Conversion) {
-
- } else if (type == .Tool) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_Editor"])
- } else if (type == .Conversion) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_Converter"])
- } else if (type == .Form) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_Form"])
- } else if (type == .FillSign) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_Fill & Sign"])
- } else if (type == .redact) {
- FMTrackEventManager.defaultManager.trackEvent(event: "Tbr", withProperties: ["Tbr_Btn" : "Btn_Tbr_Redact"])
- }
- }
-
- func showPDFLayoutModeAction(show: Bool) {
- self.delegate?.showPDFLayoutModeAction?(show: show)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, clickChaildToolType: KMToolbarType, toolbar toolbarItem: KMToolbarItemView) {
- if (clickChaildToolType == .crop) {
- let titles = [NSLocalizedString("Crop Current Page - White Margins", comment: ""), NSLocalizedString("Crop All Pages - Auto", comment: "")]
- let vc: KMHomePopViewController = KMHomePopViewController().initWithPopViewDataArr(titles)
- let createFilePopover: NSPopover = NSPopover.init()
- createFilePopover.contentViewController = vc
- createFilePopover.animates = true
- createFilePopover.behavior = .transient
- createFilePopover.setValue(true, forKey: "shouldHideAnchor")
- createFilePopover.show(relativeTo: NSZeroRect, of: toolbarItem, preferredEdge: .maxY)
- self.popover = createFilePopover
-
- vc.downCallback = { [weak self] (downEntered: Bool, count: String) -> Void in
- self?.popover?.close()
- self?.popover = nil
-
- if downEntered {
- if (count == titles.first) {
- self?.delegate?.clickChildTool?(type: .crop, index: 1)
- } else {
- self?.delegate?.clickChildTool?(type: .crop, index: 2)
- }
- }
- }
- } else if (clickChaildToolType == .bates || clickChaildToolType == .headerAndFooter || clickChaildToolType == .background || clickChaildToolType == .watermark) {
- toolbarItem.isSelected = false
-
- self.delegate?.clickChildTool?(type: clickChaildToolType, index: 0)
- } else if (clickChaildToolType == .redact) {
- toolbarItem.isSelected = false
-
- self.enterRedact()
- } else if (clickChaildToolType == .compress) {
- self.delegate?.clickChildTool?(type: .compress, index: 0)
- } else if (clickChaildToolType == .secure) {
- // toolbarItem.isSelected = fals
- let titles = [NSLocalizedString("Set Passwords", comment: ""), NSLocalizedString("Remove Security", comment: "")]
- let vc: KMHomePopViewController = KMHomePopViewController().initWithPopViewDataArr(titles)
- let createFilePopover: NSPopover = NSPopover.init()
- createFilePopover.contentViewController = vc
- createFilePopover.animates = true
- createFilePopover.behavior = .transient
- createFilePopover.setValue(true, forKey: "shouldHideAnchor")
- createFilePopover.show(relativeTo: CGRect(x: toolbarItem.bounds.origin.x, y: 10, width: toolbarItem.bounds.size.width, height: toolbarItem.bounds.size.height), of: toolbarItem, preferredEdge: .minY)
-
- vc.downCallback = { [weak self] (downEntered: Bool, count: String) -> Void in
- if downEntered {
- if (count == titles.first) {
- self?.delegate?.clickChildTool?(type: .secure, index: 1)
- } else {
- self?.delegate?.clickChildTool?(type: .secure, index: 2)
- }
- }
- }
- } else if ((KMToolbarType.word.rawValue ... KMToolbarType.conversion_image.rawValue).contains(clickChaildToolType.rawValue)) { /// 转档
- self.delegate?.clickChildTool?(type: clickChaildToolType, index: 0)
- } else if (clickChaildToolType == .merge) {
- self.delegate?.clickChildTool?(type: clickChaildToolType, index: 0)
- }
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, zoomModel selectedTag: Int) {
- self.delegate?.toolbarViewController?(viewController, zoomModel: selectedTag)
- }
- func toolbarViewController(_ viewController:KMToolbarViewController, zoomSting : String) {
- self.delegate?.toolbarViewController?(viewController, zoomSting: zoomSting)
- }
-
- func changePDFViewZoomInAction() {
- self.delegate?.changePDFViewZoomInAction?()
- }
-
- func changePDFViewZoomOutAction() {
- self.delegate?.changePDFViewZoomOutAction?()
- }
-
- func changePDFViewGotoNextPageAction() {
- self.delegate?.changePDFViewGotoNextPageAction?()
- }
-
- func changePDFViewGoToPreviousPageAction() {
- self.delegate?.changePDFViewGoToPreviousPageAction?()
- }
-
- func changePDFViewGotoBackAction() {
- self.delegate?.changePDFViewGotoBackAction?()
- }
-
- func changePDFViewGoToForwardAction() {
- self.delegate?.changePDFViewGoToForwardAction?()
- }
-
- func aiTranslationPDFFileAction() {
- self.delegate?.aiTranslationPDFFileAction?()
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, shareAction toolbarItem: KMToolbarItemView) {
- self.delegate?.toolbarViewController?(viewController, shareAction: toolbarItem)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, shareDocument item: NSMenuItem) {
- self.delegate?.toolbarViewController?(viewController, shareDocument: item)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, shareFlatten item: NSMenuItem) {
- self.delegate?.toolbarViewController?(viewController, shareFlatten: item)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, shareOriginalPDF item: NSMenuItem) {
- self.delegate?.toolbarViewController?(viewController, shareOriginalPDF: item)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, scanOCRModel selectedTag: Int) {
- self.delegate?.toolbarViewController?(viewController, scanOCRModel: selectedTag)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, itemDidClick toolbarItem: KMToolbarItemView) {
- let itemIdentifier = toolbarItem.itemIdentifier
- if itemIdentifier != KMRightControlToolbarItemIdentifier {
- if self.lastItemBox != nil {
- if (toolbarItem.isSelected) {
- // no nothings
- } else {
- let p_itemIdentifier = parentIdentifier(itemIdentifier ?? "")
- if p_itemIdentifier != self.lastItemBox.itemIdentifier {
- self.lastItemBox.isSelected = false
- }
- }
- }
- }
-
- self.delegate?.toolbarViewController?(viewController, itemDidClick: toolbarItem)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, searchAction searchString: String, forward: Bool) {
- self.delegate?.toolbarViewController?(viewController, searchAction: searchString, forward: forward)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, findSearchAction searchString: String, forward: Bool) {
- self.delegate?.toolbarViewController?(viewController, findSearchAction: searchString, forward: forward)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, findSearchAllAction searchString: String, forward: Bool) {
- self.delegate?.toolbarViewController?(viewController, findSearchAllAction: searchString, forward: forward)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, menuItemDidClick toolbarItem: KMToolbarItemView, index: Int, info: Any?) {
- let itemIdentifier = toolbarItem.itemIdentifier
- if itemIdentifier != KMRightControlToolbarItemIdentifier {
- if self.lastItemBox != nil {
- if (toolbarItem.isSelected) {
- // no nothings
- } else {
- let p_itemIdentifier = parentIdentifier(itemIdentifier ?? "")
- if p_itemIdentifier != self.lastItemBox.itemIdentifier {
- self.lastItemBox.isSelected = false
- }
- }
- }
- }
-
- self.delegate?.toolbarViewController?(viewController, menuItemDidClick: toolbarItem, index: index, info: info)
- }
-
- func toolbarViewController(_ viewController: KMToolbarViewController, viewItemDidClick toolbarItem: KMToolbarItemView, index: Int, info: Any?) {
- self.delegate?.toolbarViewController?(viewController, viewItemDidClick: toolbarItem, index: index, info: info)
- }
- }
- extension KMToolbarController {
- func updataItemVisible() {
- guard let isCompareModel = self.mainViewController?.isCompareModel else { return }
- if isCompareModel {
- self.toolbarType = .None
- self.mainToolBarView?.isEnable(isEnable: false)
- } else {
- self.mainToolBarView?.isEnable()
- }
- }
- }
|