Browse Source

【BOTA】快照调整

niehaoyu 7 months ago
parent
commit
aa196d439f

+ 2 - 0
PDF Office/PDF Master/Class/DigtalSignature/ViewControllers/DSignatureDetailsViewController.xib

@@ -339,6 +339,7 @@
                                                             <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                                                             <size key="minSize" width="295" height="55"/>
                                                             <size key="maxSize" width="346" height="10000000"/>
+                                                            <color key="insertionPointColor" name="textInsertionPointColor" catalog="System" colorSpace="catalog"/>
                                                         </textView>
                                                     </subviews>
                                                 </clipView>
@@ -532,6 +533,7 @@
                                                             <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                                                             <size key="minSize" width="416" height="150"/>
                                                             <size key="maxSize" width="1294" height="10000000"/>
+                                                            <color key="insertionPointColor" name="textInsertionPointColor" catalog="System" colorSpace="catalog"/>
                                                         </textView>
                                                     </subviews>
                                                 </clipView>

+ 3 - 3
PDF Office/PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController+Action.swift

@@ -428,8 +428,8 @@ extension KMLeftSideViewController: NSSearchFieldDelegate {
                 self.tocOutlineView.reloadData()
             }
             self.outlineAddButton.isEnabled = !self.isSearchOutlineMode
-        } else if ((self.snapshotController?.snapshotSearchField.isEqual(to: obj.object)) != nil) {
-            let searchString = self.snapshotController?.snapshotSearchField.stringValue ?? ""
+        } else if ((self.snapshotController.snapshotSearchField.isEqual(to: obj.object)) != nil) {
+            let searchString = self.snapshotController.snapshotSearchField.stringValue ?? ""
             self.searchSnapshots.removeAll()
             if searchString.isEmpty {
                 self.isSearchSnapshotMode = false
@@ -537,7 +537,7 @@ extension KMLeftSideViewController {
     }
     
     func updateSnapshotFilterPredicate() {
-        let searchString = self.snapshotController?.snapshotSearchField.stringValue ?? ""
+        let searchString = self.snapshotController.snapshotSearchField?.stringValue ?? ""
         self.searchSnapshots.removeAll()
         if self.findState == .snapshot && searchString.isEmpty == false {
             self.searchSnapshots = self.snapshots.filter({ model in

+ 46 - 46
PDF Office/PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController+Snapshot.swift

@@ -118,20 +118,20 @@ extension KMLeftSideViewController {
     }
     
     func snapshot_initSubViews() {
-        self.snapshotController?.snapshotNormalZoomInButton.target = self
-        self.snapshotController?.snapshotNormalZoomInButton.tag = 2
-        self.snapshotController?.snapshotNormalZoomInButton.action = #selector(thumbnailSizeScaling)
-        self.snapshotController?.snapshotNormalZoomOutButton.target = self
-        self.snapshotController?.snapshotNormalZoomOutButton.tag = 3
-        self.snapshotController?.snapshotNormalZoomOutButton.action = #selector(thumbnailSizeScaling)
+        self.snapshotController.snapshotNormalZoomInButton.target = self
+        self.snapshotController.snapshotNormalZoomInButton.tag = 2
+        self.snapshotController.snapshotNormalZoomInButton.action = #selector(thumbnailSizeScaling)
+        self.snapshotController.snapshotNormalZoomOutButton.target = self
+        self.snapshotController.snapshotNormalZoomOutButton.tag = 3
+        self.snapshotController.snapshotNormalZoomOutButton.action = #selector(thumbnailSizeScaling)
   
-        self.snapshotController?.snapshotNormalMoreButton.target = self
-        self.snapshotController?.snapshotNormalMoreButton.tag = 300
-        self.snapshotController?.snapshotNormalMoreButton.action = #selector(leftSideViewMoreButtonAction)
+        self.snapshotController.snapshotNormalMoreButton.target = self
+        self.snapshotController.snapshotNormalMoreButton.tag = 300
+        self.snapshotController.snapshotNormalMoreButton.action = #selector(leftSideViewMoreButtonAction)
  
-        self.snapshotController?.snapshotDoneButton.target = self
-        self.snapshotController?.snapshotDoneButton.tag = 312
-        self.snapshotController?.snapshotDoneButton.action = #selector(leftSideViewDoneButtonAction)
+        self.snapshotController.snapshotDoneButton.target = self
+        self.snapshotController.snapshotDoneButton.tag = 312
+        self.snapshotController.snapshotDoneButton.action = #selector(leftSideViewDoneButtonAction)
         
         self.snapshotTableView.delegate = self
         self.snapshotTableView.dataSource = self
@@ -143,7 +143,7 @@ extension KMLeftSideViewController {
         
         self.snapshotTableView.setDraggingSourceOperationMask(.every, forLocal: false)
         
-        self.snapshotController?.snapshotSearchField.changeCallBack = { [weak self] changeContent in
+        self.snapshotController.snapshotSearchField.changeCallBack = { [weak self] changeContent in
             var editContent = ""
             if changeContent != nil {
                 editContent = changeContent!
@@ -157,42 +157,42 @@ extension KMLeftSideViewController {
     }
     
     func updataLeftSideSnapView() {
-        if (snapshots.count < 1) {
-            self.snapshotController?.snapshotNormalSearchButton.isEnabled = false
-            self.snapshotController?.snapshotNormalZoomOutButton.isEnabled = false
-            self.snapshotController?.snapshotNormalZoomInButton.isEnabled = false
-            self.snapshotController?.snapshotNormalMoreButton.isEnabled = false
-            
-            self.leftSideEmptyVC.deleteSnapBtn.isEnabled = false
-            self.leftSideEmptyVC.exportSnapBtn.isEnabled = false
-            self.leftSideEmptyVC.printSnapBtn.isEnabled = false
-            self.snapshotTableView.usesAlternatingRowBackgroundColors = false
-
-            self.snapshotController?.emptySnapView.isHidden = false
-            
-        } else {
-            self.snapshotController?.snapshotNormalSearchButton.isEnabled = true
-            self.snapshotController?.snapshotNormalZoomOutButton.isEnabled = true
-            self.snapshotController?.snapshotNormalZoomInButton.isEnabled = true
-            self.snapshotController?.snapshotNormalMoreButton.isEnabled = true
-
-            self.snapshotController?.emptySnapView.isHidden = true
-            
-            self.leftSideEmptyVC.deleteSnapBtn.isEnabled = true
-            self.leftSideEmptyVC.exportSnapBtn.isEnabled = true
-            self.leftSideEmptyVC.printSnapBtn.isEnabled = true
-        }
+//        if (snapshots.count < 1) {
+//            self.snapshotController.snapshotNormalSearchButton.isEnabled = false
+//            self.snapshotController.snapshotNormalZoomOutButton.isEnabled = false
+//            self.snapshotController.snapshotNormalZoomInButton.isEnabled = false
+//            self.snapshotController.snapshotNormalMoreButton.isEnabled = false
+//            
+//            self.leftSideEmptyVC.deleteSnapBtn.isEnabled = false
+//            self.leftSideEmptyVC.exportSnapBtn.isEnabled = false
+//            self.leftSideEmptyVC.printSnapBtn.isEnabled = false
+//            self.snapshotTableView.usesAlternatingRowBackgroundColors = false
+//
+//            self.snapshotController.emptySnapView.isHidden = false
+//            
+//        } else {
+//            self.snapshotController.snapshotNormalSearchButton.isEnabled = true
+//            self.snapshotController.snapshotNormalZoomOutButton.isEnabled = true
+//            self.snapshotController.snapshotNormalZoomInButton.isEnabled = true
+//            self.snapshotController.snapshotNormalMoreButton.isEnabled = true
+//
+//            self.snapshotController.emptySnapView.isHidden = true
+//            
+//            self.leftSideEmptyVC.deleteSnapBtn.isEnabled = true
+//            self.leftSideEmptyVC.exportSnapBtn.isEnabled = true
+//            self.leftSideEmptyVC.printSnapBtn.isEnabled = true
+//        }
     }
     
     @IBAction func snapshotNormalSearchButtonAction(_ sender: NSButton) {
-        self.snapshotController?.snapshotSearchField.isHidden = false
-        self.snapshotController?.snapshotNormalSearchButton.isHidden = true
-        self.snapshotController?.snapshotDoneButton.isHidden = false
-        self.snapshotController?.snapshotLabel.isHidden = true
-        self.snapshotController?.snapshotNormalZoomOutButton.isHidden = true
-        self.snapshotController?.snapshotNormalZoomInButton.isHidden = true
-        
-        self.snapshotController?.snapshotSearchField.becomeFirstResponder()
+//        self.snapshotController.snapshotSearchField.isHidden = false
+//        self.snapshotController.snapshotNormalSearchButton.isHidden = true
+//        self.snapshotController.snapshotDoneButton.isHidden = false
+//        self.snapshotController.snapshotLabel.isHidden = true
+//        self.snapshotController.snapshotNormalZoomOutButton.isHidden = true
+//        self.snapshotController.snapshotNormalZoomInButton.isHidden = true
+//        
+//        self.snapshotController.snapshotSearchField.becomeFirstResponder()
     }
 }
 

+ 38 - 27
PDF Office/PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift

@@ -211,7 +211,7 @@ class KMLeftSideViewController: KMSideViewController {
     
     private var deletePages_ = Set<CPDFPage>()
     
-    var snapshotController: KMSnapshotViewController?
+    var snapshotController = KMSnapshotViewController()
     
     
     deinit {
@@ -269,6 +269,10 @@ class KMLeftSideViewController: KMSideViewController {
         self.initSubView()
         self.initDefalutValue()
 
+        self.snapshotController = KMSnapshotViewController(nibName: "KMSnapshotViewController", bundle: Bundle.main)
+        self.snapshotController.view.isHidden = true
+//        self.view.addSubview(self.snapshotController.view)
+        
         self.searchViewController.loadView()
         self.searchViewController.contentView = self.findTableView.enclosingScrollView
         self.searchField = self.searchViewController.searchField
@@ -289,6 +293,7 @@ class KMLeftSideViewController: KMSideViewController {
                 self.displayGroupedFindViewAnimating(false)
             }
         }
+        
         self.leftView.segmentedControl.block = { [unowned self] segIndex in
             self.toolButtonBox.isHidden = false
             self.toolButtonBoxLayoutConstraint.constant = 40.0
@@ -336,11 +341,17 @@ class KMLeftSideViewController: KMSideViewController {
                     return
                 }
                 FMTrackEventManager.defaultManager.trackEvent(event: "LeftSidebar", withProperties: ["LeftSidebar_Btn": "Btn_LeftSidebar_Snapshot"])
+                
+                if self.snapshotController == nil {
+                    self.snapshotController = KMSnapshotViewController.init()
+                }
+                
                 self.refreshMethodType(methodType: .snapshot)
-                self.toolButtonBox.contentView = self.snapshotController?.snapshotNormalView
+//                self.toolButtonBox.contentView = self.snapshotController.snapshotNormalView
                 self.updateSnapshotFilterPredicate()
                 self.displaySnapshotViewAnimating(false)
                 self.updataLeftSideSnapView()
+                
             } else if (segIndex == 4) {
                 if self.type.methodType == .Search {
                     self.leftView.segmentedControl.selectedSegment = UInt8.max
@@ -389,7 +400,7 @@ class KMLeftSideViewController: KMSideViewController {
         self.thumb_initSubViews()
         self.outline_initSubViews()
         self.note_initSubViews()
-        self.snapshot_initSubViews()
+//        self.snapshot_initSubViews()
         self.search_initSubViews()
     }
     
@@ -465,7 +476,7 @@ class KMLeftSideViewController: KMSideViewController {
         frame.origin.y = 0
         frame.size.height = self.snapshotTableView.enclosingScrollView?.superview?.frame.size.height ?? 0
         self.snapshotTableView.enclosingScrollView?.frame = frame
-        self.snapshotController?.emptySnapView.isHidden = true
+        self.snapshotController.emptySnapView.isHidden = true
         
         self.updataLeftSideSnapView()
     }
@@ -659,15 +670,15 @@ class KMLeftSideViewController: KMSideViewController {
     }
     
     func displaySnapshotFind() {
-        self.searchField = self.snapshotController?.snapshotSearchField;
-        
-        let menu = NSMenu()
-        _ = menu.addItem(title: KMLocalizedString("Ignore Case", "Menu item title"), action: #selector(toggleCaseInsensitiveNoteSearch), target: self)
-        (self.snapshotController?.snapshotSearchField.cell as? NSSearchFieldCell)?.searchMenuTemplate = menu
-        (self.snapshotController?.snapshotSearchField.cell as? NSSearchFieldCell)?.placeholderString = KMLocalizedString("Search Snapshots", "placeholder")
-        self.snapshotController?.snapshotSearchField.action = #selector(searchNotes)
-        self.snapshotController?.snapshotSearchField.target = self
-        self.snapshotController?.snapshotSearchField.delegate = self
+//        self.searchField = self.snapshotController.snapshotSearchField;
+//        
+//        let menu = NSMenu()
+//        _ = menu.addItem(title: KMLocalizedString("Ignore Case", "Menu item title"), action: #selector(toggleCaseInsensitiveNoteSearch), target: self)
+//        (self.snapshotController.snapshotSearchField.cell as? NSSearchFieldCell)?.searchMenuTemplate = menu
+//        (self.snapshotController.snapshotSearchField.cell as? NSSearchFieldCell)?.placeholderString = KMLocalizedString("Search Snapshots", "placeholder")
+//        self.snapshotController.snapshotSearchField.action = #selector(searchNotes)
+//        self.snapshotController.snapshotSearchField.target = self
+//        self.snapshotController.snapshotSearchField.delegate = self
     }
     
     func resetThumbnails(ks: Bool = true) {
@@ -708,12 +719,12 @@ class KMLeftSideViewController: KMSideViewController {
             self.noteFilterButton.isHidden = false
             self.noteMoreButton.isHidden = false
         } else if (tag == 312) {
-            self.snapshotController?.snapshotSearchField.isHidden = true
-            self.snapshotController?.snapshotNormalSearchButton.isHidden = false
-            self.snapshotController?.snapshotDoneButton.isHidden = true
-            self.snapshotController?.snapshotLabel.isHidden = false
-            self.snapshotController?.snapshotNormalZoomOutButton.isHidden = false
-            self.snapshotController?.snapshotNormalZoomInButton.isHidden = false
+            self.snapshotController.snapshotSearchField.isHidden = true
+            self.snapshotController.snapshotNormalSearchButton.isHidden = false
+            self.snapshotController.snapshotDoneButton.isHidden = true
+            self.snapshotController.snapshotLabel.isHidden = false
+            self.snapshotController.snapshotNormalZoomOutButton.isHidden = false
+            self.snapshotController.snapshotNormalZoomInButton.isHidden = false
         }
     }
 
@@ -960,12 +971,12 @@ extension KMLeftSideViewController {
             self.tocOutlineView.backgroundColor = NSColor(red: 0.149, green: 0.157, blue: 0.169, alpha: 1)
             self.findTableView.backgroundColor = NSColor(red: 0.149, green: 0.157, blue: 0.169, alpha: 1)
             
-            self.snapshotController?.snapshotSearchField.layer?.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1).cgColor
+            self.snapshotController.snapshotSearchField.layer?.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1).cgColor
             self.outlineSearchField.layer?.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1).cgColor
             self.noteSearchField.layer?.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1).cgColor
             self.segmentedControl.layer?.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1).cgColor
             
-            self.snapshotController?.snapshotSearchField.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1)
+            self.snapshotController.snapshotSearchField.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1)
             self.outlineSearchField.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1)
             self.noteSearchField.backgroundColor = NSColor(red: 0.224, green: 0.235, blue: 0.243, alpha: 1)
         } else {
@@ -980,12 +991,12 @@ extension KMLeftSideViewController {
             self.tocOutlineView.backgroundColor = NSColor(red: 0.988, green: 0.992, blue: 1.000, alpha: 1)
             self.findTableView.backgroundColor = NSColor(red: 0.988, green: 0.992, blue: 1.000, alpha: 1)
             
-            self.snapshotController?.snapshotSearchField.layer?.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1).cgColor
+            self.snapshotController.snapshotSearchField.layer?.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1).cgColor
             self.outlineSearchField.layer?.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1).cgColor
             self.noteSearchField.layer?.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1).cgColor
             self.segmentedControl.layer?.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1).cgColor
             
-            self.snapshotController?.snapshotSearchField.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1)
+            self.snapshotController.snapshotSearchField.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1)
             self.outlineSearchField.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1)
             self.noteSearchField.backgroundColor = NSColor(red: 0.922, green: 0.925, blue: 0.941, alpha: 1)
         }
@@ -1143,14 +1154,14 @@ extension KMLeftSideViewController: NSTableViewDelegate, NSTableViewDataSource {
             var newScaling = scaling + 0.1
             let newSnapshotHeight = snapshotSize.width * newScaling.cgFloat
             if (newSnapshotHeight > Self.kMinSidePaneWidth) {
-                self.snapshotController?.snapshotNormalZoomInButton.isEnabled = false
+                self.snapshotController.snapshotNormalZoomInButton.isEnabled = false
             } else {
-                self.snapshotController?.snapshotNormalZoomInButton.isEnabled = true
+                self.snapshotController.snapshotNormalZoomInButton.isEnabled = true
             }
             if ((scaling - 0.1) < 0.3 || (newSnapshotHeight < 150.0)) {
-                self.snapshotController?.snapshotNormalZoomOutButton.isEnabled = false
+                self.snapshotController.snapshotNormalZoomOutButton.isEnabled = false
             } else {
-                self.snapshotController?.snapshotNormalZoomOutButton.isEnabled = true
+                self.snapshotController.snapshotNormalZoomOutButton.isEnabled = true
             }
 
             let cellHeight = snapshotSize.height + 24.0

+ 21 - 0
PDF Office/PDF Master/Class/PDFWindowController/Side/LeftSide/Snapshot/KMSnapshotViewController.swift

@@ -23,6 +23,20 @@ class KMSnapshotViewController: NSViewController {
     @IBOutlet var emptySnapView: NSView!
     @IBOutlet weak var emptySnapLabel: NSTextField!
     @IBOutlet weak var snapshotNotCreatedLabel: NSTextField!
+//    
+//    convenience init(type : KMLeftMethodMode) {
+//        self.init()
+//
+//    }
+    
+    override init(nibName nibNameOrNil: NSNib.Name?, bundle nibBundleOrNil: Bundle?) {
+        super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
+        
+    }
+    
+    required init?(coder: NSCoder) {
+        super.init(coder: coder)
+    }
     
     override func viewDidLoad() {
         super.viewDidLoad()
@@ -74,4 +88,11 @@ class KMSnapshotViewController: NSViewController {
         
     }
     
+    
+    func reloadData() {
+        
+        self.snapshotTableView.reloadData()
+        
+    }
+    
 }

File diff suppressed because it is too large
+ 64 - 53
PDF Office/PDF Master/Class/PDFWindowController/Side/LeftSide/Snapshot/KMSnapshotViewController.xib


+ 120 - 8
PDF Office/PDF Reader Pro.xcodeproj/xcuserdata/kdanmobile.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@@ -1075,43 +1075,155 @@
             filePath = "PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
             startingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "722"
-            endingLineNumber = "722"
+            startingLineNumber = "733"
+            endingLineNumber = "733"
             landmarkName = "thumbnailSizeScaling(_:)"
             landmarkType = "7">
+            <Locations>
+               <Location
+                  uuid = "116B29E6-A655-459E-A23E-D754648851EB - 45ca2ec70b99d452"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMLeftSideViewController.thumbnailSizeScaling(__C.NSButton) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "733"
+                  endingLineNumber = "733"
+                  offsetFromSymbolStart = "272">
+               </Location>
+               <Location
+                  uuid = "116B29E6-A655-459E-A23E-D754648851EB - 45ca2ec70b99d452"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMLeftSideViewController.thumbnailSizeScaling(__C.NSButton) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "733"
+                  endingLineNumber = "733"
+                  offsetFromSymbolStart = "228">
+               </Location>
+            </Locations>
          </BreakpointContent>
       </BreakpointProxy>
       <BreakpointProxy
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          <BreakpointContent
-            uuid = "600600A0-2E98-4C47-B308-B421E623CB98"
+            uuid = "F9E4389F-6A13-4B01-9776-EB7D4F3A5259"
             shouldBeEnabled = "Yes"
             ignoreCount = "0"
             continueAfterRunningActions = "No"
             filePath = "PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
             startingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "425"
-            endingLineNumber = "425"
+            startingLineNumber = "430"
+            endingLineNumber = "430"
             landmarkName = "displayThumbnailViewAnimating(_:)"
             landmarkType = "7">
+            <Locations>
+               <Location
+                  uuid = "F9E4389F-6A13-4B01-9776-EB7D4F3A5259 - 3cff3039f8f7dabc"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMLeftSideViewController.displayThumbnailViewAnimating(Swift.Bool) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "430"
+                  endingLineNumber = "430"
+                  offsetFromSymbolStart = "152">
+               </Location>
+               <Location
+                  uuid = "F9E4389F-6A13-4B01-9776-EB7D4F3A5259 - 3cff3039f8f7dabc"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMLeftSideViewController.displayThumbnailViewAnimating(Swift.Bool) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "430"
+                  endingLineNumber = "430"
+                  offsetFromSymbolStart = "396">
+               </Location>
+            </Locations>
          </BreakpointContent>
       </BreakpointProxy>
       <BreakpointProxy
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          <BreakpointContent
-            uuid = "2F4152D6-9535-4AAF-9C30-3C2C48856162"
+            uuid = "FE804B93-772C-4E6A-8B96-D452D186D9A9"
             shouldBeEnabled = "Yes"
             ignoreCount = "0"
             continueAfterRunningActions = "No"
             filePath = "PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
             startingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "465"
-            endingLineNumber = "465"
+            startingLineNumber = "458"
+            endingLineNumber = "458"
             landmarkName = "displayFindViewAnimating(_:)"
             landmarkType = "7">
          </BreakpointContent>
       </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "B716086E-3FB8-4709-90CC-7491AAF49235"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "509"
+            endingLineNumber = "509"
+            landmarkName = "displayGroupedFindViewAnimating(_:)"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "92CEF9A9-51DD-476A-836E-A2A273B5525A"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "564"
+            endingLineNumber = "564"
+            landmarkName = "displaySnapshotViewAnimating(_:)"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "420A0856-E4A3-42B5-A2A5-BAA27C37997E"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/PDFWindowController/Side/LeftSide/KMLeftSideViewController.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "352"
+            endingLineNumber = "352"
+            landmarkName = "loadView()"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
    </Breakpoints>
 </Bucket>