├── DSCapture ├── DSCapture.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── kiding.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── kiding.xcuserdatad │ │ └── xcschemes │ │ ├── DSCapture.xcscheme │ │ └── xcschememanagement.plist └── DSCapture │ ├── DSCapture-Info.plist │ ├── DSCapture-Prefix.pch │ ├── DSCapture.h │ ├── DSCapture.m │ ├── DSCaptureData.h │ ├── DSCaptureData.m │ ├── DSCaptureFullController+CoreGraphics.m │ ├── DSCaptureFullController+System.m │ ├── DSCaptureFullController.h │ ├── DSCaptureFullController.m │ ├── DSCaptureSelectionController+CoreGraphics.m │ ├── DSCaptureSelectionController+System.m │ ├── DSCaptureSelectionController.h │ ├── DSCaptureSelectionController.m │ ├── DSCaptureSelectionView.h │ ├── DSCaptureSelectionView.m │ ├── DSCaptureSelectionWindow.h │ ├── DSCaptureSelectionWindow.m │ ├── LICENSE │ └── en.lproj │ └── InfoPlist.strings ├── ScreenCaptureTest ├── ScreenCaptureTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── kiding.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── kiding.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── DSCapture.xcscheme │ │ ├── ScreenCaptureTest.xcscheme │ │ └── xcschememanagement.plist └── ScreenCaptureTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ScreenCaptureTest-Info.plist │ ├── ScreenCaptureTest-Prefix.pch │ ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib │ └── main.m └── readme.md /DSCapture/DSCapture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DSCapture/DSCapture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DSCapture/DSCapture.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DSCapture/DSCapture.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DSCapture/DSCapture.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/DSCapture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/DSCapture.xcscheme -------------------------------------------------------------------------------- /DSCapture/DSCapture.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCapture-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCapture-Info.plist -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCapture-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCapture-Prefix.pch -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCapture.h -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCapture.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureData.h -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureData.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureFullController+CoreGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureFullController+CoreGraphics.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureFullController+System.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureFullController+System.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureFullController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureFullController.h -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureFullController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureFullController.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionController+CoreGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionController+CoreGraphics.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionController+System.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionController+System.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionController.h -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionController.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionView.h -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionView.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionWindow.h -------------------------------------------------------------------------------- /DSCapture/DSCapture/DSCaptureSelectionWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/DSCaptureSelectionWindow.m -------------------------------------------------------------------------------- /DSCapture/DSCapture/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/DSCapture/DSCapture/LICENSE -------------------------------------------------------------------------------- /DSCapture/DSCapture/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/project.xcworkspace/xcuserdata/kiding.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/DSCapture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/DSCapture.xcscheme -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/ScreenCaptureTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/ScreenCaptureTest.xcscheme -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest.xcodeproj/xcuserdata/kiding.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/AppDelegate.h -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/AppDelegate.m -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/ScreenCaptureTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/ScreenCaptureTest-Info.plist -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/ScreenCaptureTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/ScreenCaptureTest-Prefix.pch -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /ScreenCaptureTest/ScreenCaptureTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/ScreenCaptureTest/ScreenCaptureTest/main.m -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiding/DSCapture.framework/HEAD/readme.md --------------------------------------------------------------------------------