// // KMPDFViewAnnotationOnceModeStore.swift // PDF Office // // Created by tangchao on 2023/4/20. // import Cocoa class KMPDFViewAnnotationOnceModeStore: KMMemorandumPattern { internal var annotationType = CAnnotationType.unkown internal var toolMode = CToolMode.textToolMode override func store(t: CPDFListView) { self.toolMode = t.toolMode self.annotationType = t.annotationType } override func restore(t: CPDFListView) { t.toolMode = self.toolMode t.annotationType = self.annotationType } }