Browse Source

【2025】【View】自定义主题色模块完善

niehaoyu 4 months ago
parent
commit
f29d45062d

+ 0 - 2
PDF Office/KMComponentLibrary/KMComponentLibrary/View/Button/ComponentButton.swift

@@ -300,7 +300,6 @@ public class ComponentButton: ComponentBaseXibView {
     }
     }
     
     
     public override func mouseDown(with event: NSEvent) {
     public override func mouseDown(with event: NSEvent) {
-        super.mouseDown(with: event)
         
         
         if properties.isDisabled == false && 
         if properties.isDisabled == false && 
             properties.state != .pressed {
             properties.state != .pressed {
@@ -312,7 +311,6 @@ public class ComponentButton: ComponentBaseXibView {
     }
     }
     
     
     public override func mouseUp(with event: NSEvent) {
     public override func mouseUp(with event: NSEvent) {
-        super.mouseUp(with: event)
         
         
         if properties.isDisabled == false {
         if properties.isDisabled == false {
             
             

+ 15 - 0
PDF Office/KMComponentLibrary/KMComponentLibrary/View/Message/ComponentMessage.swift

@@ -168,4 +168,19 @@ public class ComponentMessage: ComponentBaseXibView {
         
         
     }
     }
     
     
+    public func showWithPoint(_ point: CGPoint, inView positioningView: NSView?) {
+        var rect = self.frame
+        rect.origin.x = point.x
+        rect.origin.y = point.y
+        rect.size.width = properties.propertyInfo.viewWidth
+        rect.size.height = properties.propertyInfo.viewHeight
+        self.frame = rect
+        
+        positioningView?.addSubview(self)
+        
+        DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 2) {
+            self.removeFromSuperview()
+        }
+    }
+    
 }
 }

+ 53 - 1
PDF Office/PDF Master/KMClass/KMPDFViewController/KMNDisplayViewController/KMNDisplayViewController.swift

@@ -397,7 +397,17 @@ class KMNDisplayViewController: NSViewController {
         
         
     }
     }
     
     
-    func saveThemeColors() {
+    @objc func saveThemeColors() {
+        themesArray.removeAll()
+        
+        let subviews = themesContendView.subviews
+        for view in subviews {
+            if view is ComponentCColorItem {
+                if let color = (view as! ComponentCColorItem).properties?.color {
+                    themesArray.append(color)
+                }
+            }
+        }
         
         
         let data = NSKeyedArchiver.archivedData(withRootObject: themesArray)
         let data = NSKeyedArchiver.archivedData(withRootObject: themesArray)
         UserDefaults.standard.set(data, forKey: "kKMPDFViewModeThemesArray")
         UserDefaults.standard.set(data, forKey: "kKMPDFViewModeThemesArray")
@@ -443,6 +453,8 @@ class KMNDisplayViewController: NSViewController {
         } else if sender == slideShowSelector {
         } else if sender == slideShowSelector {
             slideShowSelector.properties.state = .normal
             slideShowSelector.properties.state = .normal
             
             
+            delegate?.displayViewControllerDidGotoSlideShow?(self)
+            
         } else if sender == noSplitSelector {
         } else if sender == noSplitSelector {
             pdfView?.viewSplitMode = .disable
             pdfView?.viewSplitMode = .disable
             
             
@@ -495,9 +507,36 @@ class KMNDisplayViewController: NSViewController {
 
 
         setUpThemesItems()
         setUpThemesItems()
         
         
+        let subviews = themesContendView.subviews
+        for view in subviews {
+            if view is ComponentCColorItem {
+                themeEditItem = (view as! ComponentCColorItem)
+            }
+        }
+        showColorPanel()
+        
         saveThemeColors()
         saveThemeColors()
     }
     }
     
     
+    @objc private func showColorPanel() {
+        let panel = NSColorPanel.shared
+        panel.setTarget(self)
+        panel.setAction(#selector(colorPanelAction))
+        panel.orderFront(nil)
+    }
+    
+    @objc private func colorPanelAction(sender: NSColorPanel) {
+        if let item = themeEditItem {
+            item.properties?.color = sender.color
+            item.reloadData()
+            
+            pdfView?.setPageBackgroundColorWith(sender.color, viewMode: .other)
+            
+            NSObject.cancelPreviousPerformRequests(withTarget: self, selector: #selector(saveThemeColors), object: nil)
+            self.perform(#selector(saveThemeColors), with: nil, afterDelay: 0.35)
+        }
+    }
+    
     @objc func splitSelFileButtonClicked(_ sender: ComponentButton) {
     @objc func splitSelFileButtonClicked(_ sender: ComponentButton) {
         let openPanel = NSOpenPanel()
         let openPanel = NSOpenPanel()
         openPanel.allowedFileTypes = ["pdf","PDF"]
         openPanel.allowedFileTypes = ["pdf","PDF"]
@@ -591,6 +630,19 @@ class KMNDisplayViewController: NSViewController {
 extension KMNDisplayViewController: ComponentCColorDelegate {
 extension KMNDisplayViewController: ComponentCColorDelegate {
     
     
     func componentCColorDidChooseColor(_ view: NSView, _ color: NSColor?) {
     func componentCColorDidChooseColor(_ view: NSView, _ color: NSColor?) {
+        
+        if view is ComponentCColorItem {
+            if (view as! ComponentCColorItem) != themeEditItem {
+                themeEditItem = nil
+                if NSColorPanel.shared.isVisible {
+                    NSColorPanel.shared.setTarget(nil)
+                    NSColorPanel.shared.setAction(nil)
+                    NSColorPanel.shared.close()
+                }
+            }
+        }
+        
+        
         let subviews = themesContendView.subviews
         let subviews = themesContendView.subviews
         let index = subviews.firstIndex(of: view) ?? 0
         let index = subviews.firstIndex(of: view) ?? 0
         
         

+ 243 - 67
PDF Office/PDF Reader Pro.xcodeproj/xcuserdata/kdanmobile.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@@ -590,10 +590,42 @@
             filePath = "PDF Master/Class/PDFWindowController/ViewController/KMMainViewController.swift"
             filePath = "PDF Master/Class/PDFWindowController/ViewController/KMMainViewController.swift"
             startingColumnNumber = "9223372036854775807"
             startingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "2519"
-            endingLineNumber = "2519"
+            startingLineNumber = "2520"
+            endingLineNumber = "2520"
             landmarkName = "mouseUp(with:)"
             landmarkName = "mouseUp(with:)"
             landmarkType = "7">
             landmarkType = "7">
+            <Locations>
+               <Location
+                  uuid = "4EE71E45-EE11-4ED4-9B13-446DBCED49C5 - fafb0387eefddcef"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMMainViewController.mouseUp(with: __C.NSEvent) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/Class/PDFWindowController/ViewController/KMMainViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "2519"
+                  endingLineNumber = "2519"
+                  offsetFromSymbolStart = "56">
+               </Location>
+               <Location
+                  uuid = "4EE71E45-EE11-4ED4-9B13-446DBCED49C5 - fafb0387eefddc8e"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMMainViewController.mouseUp(with: __C.NSEvent) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/Class/PDFWindowController/ViewController/KMMainViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "2520"
+                  endingLineNumber = "2520"
+                  offsetFromSymbolStart = "56">
+               </Location>
+            </Locations>
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
       <BreakpointProxy
       <BreakpointProxy
@@ -692,22 +724,6 @@
             landmarkType = "7">
             landmarkType = "7">
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
-      <BreakpointProxy
-         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
-         <BreakpointContent
-            uuid = "430EDCCF-F74D-4DB8-8772-4771D24830C2"
-            shouldBeEnabled = "Yes"
-            ignoreCount = "0"
-            continueAfterRunningActions = "No"
-            filePath = "KMComponentLibrary/KMComponentLibrary/View/Tabs/ComponentTabsItem.swift"
-            startingColumnNumber = "9223372036854775807"
-            endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "234"
-            endingLineNumber = "234"
-            landmarkName = "mouseUp(with:)"
-            landmarkType = "7">
-         </BreakpointContent>
-      </BreakpointProxy>
       <BreakpointProxy
       <BreakpointProxy
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          <BreakpointContent
          <BreakpointContent
@@ -1504,7 +1520,7 @@
             endingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
             startingLineNumber = "151"
             startingLineNumber = "151"
             endingLineNumber = "151"
             endingLineNumber = "151"
-            landmarkName = "fetchWith(edit:)"
+            landmarkName = "mouseDown(with:)"
             landmarkType = "7">
             landmarkType = "7">
             <Locations>
             <Locations>
                <Location
                <Location
@@ -1779,22 +1795,6 @@
             landmarkType = "7">
             landmarkType = "7">
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
-      <BreakpointProxy
-         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
-         <BreakpointContent
-            uuid = "F1FE91F7-A4BD-478A-9116-B67E65351315"
-            shouldBeEnabled = "Yes"
-            ignoreCount = "0"
-            continueAfterRunningActions = "No"
-            filePath = "KMComponentLibrary/KMComponentLibrary/View/Tabs/ComponentTabsItem.swift"
-            startingColumnNumber = "9223372036854775807"
-            endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "223"
-            endingLineNumber = "223"
-            landmarkName = "mouseDown(with:)"
-            landmarkType = "7">
-         </BreakpointContent>
-      </BreakpointProxy>
       <BreakpointProxy
       <BreakpointProxy
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          <BreakpointContent
          <BreakpointContent
@@ -1875,22 +1875,6 @@
             landmarkType = "7">
             landmarkType = "7">
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
-      <BreakpointProxy
-         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
-         <BreakpointContent
-            uuid = "42CE139B-2757-4083-A581-B467E7C5FDA2"
-            shouldBeEnabled = "Yes"
-            ignoreCount = "0"
-            continueAfterRunningActions = "No"
-            filePath = "KMComponentLibrary/KMComponentLibrary/View/Input/ComponentInput/ComponentInput.swift"
-            startingColumnNumber = "9223372036854775807"
-            endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "332"
-            endingLineNumber = "332"
-            landmarkName = "mouseDown(with:)"
-            landmarkType = "7">
-         </BreakpointContent>
-      </BreakpointProxy>
       <BreakpointProxy
       <BreakpointProxy
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          <BreakpointContent
          <BreakpointContent
@@ -1939,22 +1923,6 @@
             landmarkType = "7">
             landmarkType = "7">
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
-      <BreakpointProxy
-         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
-         <BreakpointContent
-            uuid = "0F18BB26-D314-4E8A-8406-5AF9118F9816"
-            shouldBeEnabled = "Yes"
-            ignoreCount = "0"
-            continueAfterRunningActions = "No"
-            filePath = "KMComponentLibrary/KMComponentLibrary/View/Navigation/ComponentNavBarItem.swift"
-            startingColumnNumber = "9223372036854775807"
-            endingColumnNumber = "9223372036854775807"
-            startingLineNumber = "158"
-            endingLineNumber = "158"
-            landmarkName = "mouseDown(with:)"
-            landmarkType = "7">
-         </BreakpointContent>
-      </BreakpointProxy>
       <BreakpointProxy
       <BreakpointProxy
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
          <BreakpointContent
          <BreakpointContent
@@ -2115,5 +2083,213 @@
             landmarkType = "7">
             landmarkType = "7">
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "EA66C38B-D2A9-4701-9F11-166981AF40A6"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/ChromiumTabs/KMBrowserWindowController+Actions.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "41"
+            endingLineNumber = "41"
+            landmarkName = "canEnterPresentation()"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "EEB40690-F689-4389-A1AE-D203D22342F5"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "875"
+            endingLineNumber = "875"
+            landmarkName = "KMPDFViewController"
+            landmarkType = "21">
+            <Locations>
+               <Location
+                  uuid = "EEB40690-F689-4389-A1AE-D203D22342F5 - 1b9cf7aa0a714405"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMPDFViewController.willEnterInteractionModeNotification(Foundation.Notification) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "875"
+                  endingLineNumber = "875"
+                  offsetFromSymbolStart = "3460">
+               </Location>
+               <Location
+                  uuid = "EEB40690-F689-4389-A1AE-D203D22342F5 - 1b9cf7aa0a714405"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMPDFViewController.willEnterInteractionModeNotification(Foundation.Notification) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "875"
+                  endingLineNumber = "875"
+                  offsetFromSymbolStart = "2268">
+               </Location>
+            </Locations>
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "7ECA9E50-3E3B-4FEA-946E-8DB74DD2E719"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "860"
+            endingLineNumber = "860"
+            landmarkName = "KMPDFViewController"
+            landmarkType = "21">
+            <Locations>
+               <Location
+                  uuid = "7ECA9E50-3E3B-4FEA-946E-8DB74DD2E719 - 1b9cf7aa0a71ba74"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMPDFViewController.willEnterInteractionModeNotification(Foundation.Notification) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "860"
+                  endingLineNumber = "860"
+                  offsetFromSymbolStart = "1712">
+               </Location>
+               <Location
+                  uuid = "7ECA9E50-3E3B-4FEA-946E-8DB74DD2E719 - 1b9cf7aa0a71ba74"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMPDFViewController.willEnterInteractionModeNotification(Foundation.Notification) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "860"
+                  endingLineNumber = "860"
+                  offsetFromSymbolStart = "1036">
+               </Location>
+            </Locations>
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "97C9BA92-03E3-4CE4-96E9-9F3E7B344C8D"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "652"
+            endingLineNumber = "652"
+            landmarkName = "presentationTopViewClear(_:withButton:)"
+            landmarkType = "7">
+            <Locations>
+               <Location
+                  uuid = "97C9BA92-03E3-4CE4-96E9-9F3E7B344C8D - a52fdbc99b785c66"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMPDFViewController.presentationTopViewType(_: PDF_Reader_Pro.KMPresentationTopViewController, withButton: __C.NSButton, isSeletion: Swift.Bool) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "652"
+                  endingLineNumber = "652"
+                  offsetFromSymbolStart = "96">
+               </Location>
+               <Location
+                  uuid = "97C9BA92-03E3-4CE4-96E9-9F3E7B344C8D - f3e7fdae63f899c0"
+                  shouldBeEnabled = "Yes"
+                  ignoreCount = "0"
+                  continueAfterRunningActions = "No"
+                  symbolName = "PDF_Reader_Pro.KMPDFViewController.presentationTopViewClear(_: PDF_Reader_Pro.KMPresentationTopViewController, withButton: __C.NSButton) -&gt; ()"
+                  moduleName = "PDF Reader Pro"
+                  usesParentBreakpointCondition = "Yes"
+                  urlString = "file:///Users/kdanmobile/Documents/Git/PDF_Office/PDF%20Office/PDF%20Master/KMClass/KMPDFViewController/KMPDFViewController.swift"
+                  startingColumnNumber = "9223372036854775807"
+                  endingColumnNumber = "9223372036854775807"
+                  startingLineNumber = "652"
+                  endingLineNumber = "652"
+                  offsetFromSymbolStart = "56">
+               </Location>
+            </Locations>
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "66A1F205-6E7B-4861-8736-4900E2EA1DF6"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/PDFWindowController/ViewController/KMMainViewController+UI.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "1335"
+            endingLineNumber = "1335"
+            landmarkName = "pdfListViewKeyDownIsContinue(_:theEvent:)"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "81D8DEFE-B2BE-42FF-9501-C1523A4471DC"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/PDFWindowController/ViewController/KMMainViewController+UI.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "1261"
+            endingLineNumber = "1261"
+            landmarkName = "pdfListViewKeyDownIsContinue(_:theEvent:)"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "2DDDB646-C17B-4DC1-BB14-BC7FD969162C"
+            shouldBeEnabled = "Yes"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "PDF Master/Class/ChromiumTabs/KMBrowserWindowController+Actions.swift"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "72"
+            endingLineNumber = "72"
+            landmarkName = "exitFullscreen()"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
    </Breakpoints>
    </Breakpoints>
 </Bucket>
 </Bucket>