├── .gitignore ├── Readme.md ├── Sketch Documents └── SketchKit Shape Test.sketch ├── SketchKit-remote.coscript ├── SketchKit.sketchplugin ├── Contents │ └── Sketch │ │ ├── manifest.json │ │ └── src │ │ ├── SketchKit.js │ │ └── SketchKit_cached.js └── SketchKit.framework │ ├── Headers │ ├── Resources │ ├── SketchKit │ └── Versions │ ├── A │ ├── Headers │ │ ├── SKKPluginContext.h │ │ ├── SKKProxyObject-Private.h │ │ ├── SKKProxyObject.h │ │ ├── SKKTestController.h │ │ ├── SKKXMLProtocol.h │ │ ├── SKK_MSColor-Private.h │ │ ├── SKK_MSColor.h │ │ ├── SKK_MSDocument-Private.h │ │ ├── SKK_MSDocument.h │ │ ├── SKK_MSDocumentData-Private.h │ │ ├── SKK_MSDocumentData.h │ │ ├── SKK_MSDocumentFile-Private.h │ │ ├── SKK_MSDocumentFile.h │ │ ├── SKK_MSLayer-Private.h │ │ ├── SKK_MSLayer.h │ │ ├── SKK_MSPage-Private.h │ │ ├── SKK_MSPage.h │ │ ├── SKK_MSShapePath.h │ │ ├── SKK_MSShapePathLayer.h │ │ ├── SKK_MSStyle-Private.h │ │ ├── SKK_MSStyle.h │ │ ├── SKK_MSStyleBasicFill-Private.h │ │ ├── SKK_MSStyleBasicFill.h │ │ ├── SKK_MSStyleBorder-Private.h │ │ ├── SKK_MSStyleBorder.h │ │ ├── SKK_MSStylePart-Private.h │ │ ├── SKK_MSStylePart.h │ │ ├── SKK_MSStylePartCollection-Private.h │ │ ├── SKK_MSStylePartCollection.h │ │ ├── SKK_MSTextLayer-Private.h │ │ ├── SKK_MSTextLayer.h │ │ ├── SKK_MShapeGroup-Private.h │ │ ├── SKK_MShapeGroup.h │ │ ├── STUBObject.h │ │ ├── STUB_MSColor.h │ │ ├── STUB_MSCurvePoint.h │ │ ├── STUB_MSDocument.h │ │ ├── STUB_MSDocumentData.h │ │ ├── STUB_MSDocumentFile.h │ │ ├── STUB_MSImmutableShapeGroup.h │ │ ├── STUB_MSLayer.h │ │ ├── STUB_MSModelBase.h │ │ ├── STUB_MSPage.h │ │ ├── STUB_MSShapeGroup.h │ │ ├── STUB_MSShapePath.h │ │ ├── STUB_MSShapePathLayer.h │ │ ├── STUB_MSStyle.h │ │ ├── STUB_MSStyleBasicFill.h │ │ ├── STUB_MSStyleBorder.h │ │ ├── STUB_MSStyleFill.h │ │ ├── STUB_MSStylePart.h │ │ ├── STUB_MSStylePartCollection.h │ │ ├── STUB_MSTextLayer.h │ │ ├── SketchKit-Private.h │ │ └── SketchKit.h │ ├── Resources │ │ └── Info.plist │ └── SketchKit │ └── Current ├── SketchKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── SketchKit.xcscmblueprint └── xcshareddata │ └── xcschemes │ ├── SketchKit.xcscheme │ └── Test Launcher.xcscheme ├── Test Launcher └── main.m ├── resources └── Info.plist └── src ├── Controllers └── Testing │ ├── SKKTestController.h │ └── SKKTestController.m ├── Headers ├── SKKXMLProtocol.h └── SketchKit-Private.h ├── Models ├── Object Proxies │ ├── Document │ │ ├── Page │ │ │ ├── SKK_MSPage-Private.h │ │ │ ├── SKK_MSPage.h │ │ │ └── SKK_MSPage.m │ │ ├── SKK_MSDocument-Private.h │ │ ├── SKK_MSDocument.h │ │ ├── SKK_MSDocument.m │ │ ├── SKK_MSDocumentData-Private.h │ │ ├── SKK_MSDocumentData.h │ │ ├── SKK_MSDocumentData.m │ │ ├── SKK_MSDocumentFile-Private.h │ │ ├── SKK_MSDocumentFile.h │ │ └── SKK_MSDocumentFile.m │ ├── Layers │ │ ├── SKK_MSLayer-Private.h │ │ ├── SKK_MSLayer.h │ │ ├── SKK_MSLayer.m │ │ ├── Shapes │ │ │ ├── SKK_MSShapePathLayer.h │ │ │ ├── SKK_MSShapePathLayer.m │ │ │ ├── SKK_MShapeGroup-Private.h │ │ │ ├── SKK_MShapeGroup.h │ │ │ └── SKK_MShapeGroup.m │ │ ├── Style │ │ │ ├── SKK_MSColor-Private.h │ │ │ ├── SKK_MSColor.h │ │ │ ├── SKK_MSColor.m │ │ │ ├── SKK_MSStyle-Private.h │ │ │ ├── SKK_MSStyle.h │ │ │ ├── SKK_MSStyle.m │ │ │ ├── SKK_MSStyleBasicFill-Private.h │ │ │ ├── SKK_MSStyleBasicFill.h │ │ │ ├── SKK_MSStyleBasicFill.m │ │ │ ├── SKK_MSStyleBorder-Private.h │ │ │ ├── SKK_MSStyleBorder.h │ │ │ ├── SKK_MSStyleBorder.m │ │ │ ├── SKK_MSStylePart-Private.h │ │ │ ├── SKK_MSStylePart.h │ │ │ ├── SKK_MSStylePart.m │ │ │ ├── SKK_MSStylePartCollection-Private.h │ │ │ ├── SKK_MSStylePartCollection.h │ │ │ └── SKK_MSStylePartCollection.m │ │ └── Text │ │ │ ├── SKK_MSTextLayer-Private.h │ │ │ ├── SKK_MSTextLayer.h │ │ │ └── SKK_MSTextLayer.m │ ├── Plugin │ │ ├── SKKPluginContext.h │ │ └── SKKPluginContext.m │ ├── Root │ │ ├── SKKProxyObject-Private.h │ │ ├── SKKProxyObject.h │ │ └── SKKProxyObject.m │ └── Shapes │ │ ├── SKK_MSShapePath.h │ │ └── SKK_MSShapePath.m └── Stubs │ ├── Base │ ├── STUB_MSModelBase.h │ └── STUB_MSModelBase.m │ ├── Categories │ └── NSObject+TreeAsDictionarySupport.h │ ├── Document │ ├── Page │ │ ├── STUB_MSPage.h │ │ └── STUB_MSPage.m │ ├── STUB_MSDocument.h │ ├── STUB_MSDocument.m │ ├── STUB_MSDocumentData.h │ ├── STUB_MSDocumentData.m │ ├── STUB_MSDocumentFile.h │ └── STUB_MSDocumentFile.m │ ├── Layers │ ├── STUB_MSLayer.h │ ├── STUB_MSLayer.m │ ├── Shapes │ │ ├── STUB_MSImmutableShapeGroup.h │ │ ├── STUB_MSImmutableShapeGroup.m │ │ ├── STUB_MSShapeGroup.h │ │ ├── STUB_MSShapeGroup.m │ │ ├── STUB_MSShapePathLayer.h │ │ └── STUB_MSShapePathLayer.m │ ├── Style │ │ ├── STUB_MSColor.h │ │ ├── STUB_MSColor.m │ │ ├── STUB_MSStyle.h │ │ ├── STUB_MSStyle.m │ │ ├── STUB_MSStyleBasicFill.h │ │ ├── STUB_MSStyleBasicFill.m │ │ ├── STUB_MSStyleBorder.h │ │ ├── STUB_MSStyleBorder.m │ │ ├── STUB_MSStyleFill.h │ │ ├── STUB_MSStyleFill.m │ │ ├── STUB_MSStylePart.h │ │ ├── STUB_MSStylePart.m │ │ ├── STUB_MSStylePartCollection.h │ │ └── STUB_MSStylePartCollection.m │ └── Text │ │ ├── STUB_MSTextLayer.h │ │ └── STUB_MSTextLayer.m │ ├── Root │ ├── STUBObject.h │ └── STUBObject.m │ └── Shapes │ ├── STUB_MSCurvePoint.h │ ├── STUB_MSCurvePoint.m │ ├── STUB_MSShapePath.h │ └── STUB_MSShapePath.m ├── SketchKit.h └── SketchKitPrefix.pch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/Readme.md -------------------------------------------------------------------------------- /Sketch Documents/SketchKit Shape Test.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/Sketch Documents/SketchKit Shape Test.sketch -------------------------------------------------------------------------------- /SketchKit-remote.coscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit-remote.coscript -------------------------------------------------------------------------------- /SketchKit.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /SketchKit.sketchplugin/Contents/Sketch/src/SketchKit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/Contents/Sketch/src/SketchKit.js -------------------------------------------------------------------------------- /SketchKit.sketchplugin/Contents/Sketch/src/SketchKit_cached.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/Contents/Sketch/src/SketchKit_cached.js -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/SketchKit: -------------------------------------------------------------------------------- 1 | Versions/Current/SketchKit -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKPluginContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKPluginContext.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKProxyObject-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKProxyObject-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKProxyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKProxyObject.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKTestController.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKXMLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKKXMLProtocol.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSColor-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSColor-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSColor.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocument-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocument-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocument.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentData-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentData-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentData.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentFile-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentFile-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSDocumentFile.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSLayer-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSLayer-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSLayer.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSPage-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSPage-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSPage.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSShapePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSShapePath.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSShapePathLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSShapePathLayer.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyle-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyle-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyle.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBasicFill-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBasicFill-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBasicFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBasicFill.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBorder-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBorder-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStyleBorder.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePart-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePart-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePart.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePartCollection-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePartCollection-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePartCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSStylePartCollection.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSTextLayer-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSTextLayer-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MSTextLayer.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MShapeGroup-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MShapeGroup-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SKK_MShapeGroup.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUBObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUBObject.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSColor.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSCurvePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSCurvePoint.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSDocument.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSDocumentData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSDocumentData.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSDocumentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSDocumentFile.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSImmutableShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSImmutableShapeGroup.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSLayer.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSModelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSModelBase.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSPage.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSShapeGroup.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSShapePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSShapePath.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSShapePathLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSShapePathLayer.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyle.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyleBasicFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyleBasicFill.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyleBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyleBorder.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyleFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStyleFill.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStylePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStylePart.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStylePartCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSStylePartCollection.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/STUB_MSTextLayer.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SketchKit-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SketchKit-Private.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SketchKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Headers/SketchKit.h -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/A/SketchKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.sketchplugin/SketchKit.framework/Versions/A/SketchKit -------------------------------------------------------------------------------- /SketchKit.sketchplugin/SketchKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SketchKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SketchKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SketchKit.xcodeproj/project.xcworkspace/xcshareddata/SketchKit.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.xcodeproj/project.xcworkspace/xcshareddata/SketchKit.xcscmblueprint -------------------------------------------------------------------------------- /SketchKit.xcodeproj/xcshareddata/xcschemes/SketchKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.xcodeproj/xcshareddata/xcschemes/SketchKit.xcscheme -------------------------------------------------------------------------------- /SketchKit.xcodeproj/xcshareddata/xcschemes/Test Launcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/SketchKit.xcodeproj/xcshareddata/xcschemes/Test Launcher.xcscheme -------------------------------------------------------------------------------- /Test Launcher/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/Test Launcher/main.m -------------------------------------------------------------------------------- /resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/resources/Info.plist -------------------------------------------------------------------------------- /src/Controllers/Testing/SKKTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Controllers/Testing/SKKTestController.h -------------------------------------------------------------------------------- /src/Controllers/Testing/SKKTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Controllers/Testing/SKKTestController.m -------------------------------------------------------------------------------- /src/Headers/SKKXMLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Headers/SKKXMLProtocol.h -------------------------------------------------------------------------------- /src/Headers/SketchKit-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Headers/SketchKit-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/Page/SKK_MSPage-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/Page/SKK_MSPage-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/Page/SKK_MSPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/Page/SKK_MSPage.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/Page/SKK_MSPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/Page/SKK_MSPage.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocument-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocument-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocument.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocument.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocumentData-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocumentData-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocumentData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocumentData.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocumentData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocumentData.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocumentFile-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocumentFile-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocumentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocumentFile.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Document/SKK_MSDocumentFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Document/SKK_MSDocumentFile.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/SKK_MSLayer-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/SKK_MSLayer-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/SKK_MSLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/SKK_MSLayer.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/SKK_MSLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/SKK_MSLayer.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Shapes/SKK_MSShapePathLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Shapes/SKK_MSShapePathLayer.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Shapes/SKK_MSShapePathLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Shapes/SKK_MSShapePathLayer.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Shapes/SKK_MShapeGroup-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Shapes/SKK_MShapeGroup-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Shapes/SKK_MShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Shapes/SKK_MShapeGroup.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Shapes/SKK_MShapeGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Shapes/SKK_MShapeGroup.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSColor-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSColor-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSColor.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSColor.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyle-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyle-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyle.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyle.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyleBasicFill-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyleBasicFill-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyleBasicFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyleBasicFill.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyleBasicFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyleBasicFill.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyleBorder-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyleBorder-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyleBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyleBorder.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStyleBorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStyleBorder.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStylePart-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStylePart-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStylePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStylePart.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStylePart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStylePart.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStylePartCollection-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStylePartCollection-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStylePartCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStylePartCollection.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Style/SKK_MSStylePartCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Style/SKK_MSStylePartCollection.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Text/SKK_MSTextLayer-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Text/SKK_MSTextLayer-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Text/SKK_MSTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Text/SKK_MSTextLayer.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Layers/Text/SKK_MSTextLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Layers/Text/SKK_MSTextLayer.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Plugin/SKKPluginContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Plugin/SKKPluginContext.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Plugin/SKKPluginContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Plugin/SKKPluginContext.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Root/SKKProxyObject-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Root/SKKProxyObject-Private.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Root/SKKProxyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Root/SKKProxyObject.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Root/SKKProxyObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Root/SKKProxyObject.m -------------------------------------------------------------------------------- /src/Models/Object Proxies/Shapes/SKK_MSShapePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Shapes/SKK_MSShapePath.h -------------------------------------------------------------------------------- /src/Models/Object Proxies/Shapes/SKK_MSShapePath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Object Proxies/Shapes/SKK_MSShapePath.m -------------------------------------------------------------------------------- /src/Models/Stubs/Base/STUB_MSModelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Base/STUB_MSModelBase.h -------------------------------------------------------------------------------- /src/Models/Stubs/Base/STUB_MSModelBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Base/STUB_MSModelBase.m -------------------------------------------------------------------------------- /src/Models/Stubs/Categories/NSObject+TreeAsDictionarySupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Categories/NSObject+TreeAsDictionarySupport.h -------------------------------------------------------------------------------- /src/Models/Stubs/Document/Page/STUB_MSPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/Page/STUB_MSPage.h -------------------------------------------------------------------------------- /src/Models/Stubs/Document/Page/STUB_MSPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/Page/STUB_MSPage.m -------------------------------------------------------------------------------- /src/Models/Stubs/Document/STUB_MSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/STUB_MSDocument.h -------------------------------------------------------------------------------- /src/Models/Stubs/Document/STUB_MSDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/STUB_MSDocument.m -------------------------------------------------------------------------------- /src/Models/Stubs/Document/STUB_MSDocumentData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/STUB_MSDocumentData.h -------------------------------------------------------------------------------- /src/Models/Stubs/Document/STUB_MSDocumentData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/STUB_MSDocumentData.m -------------------------------------------------------------------------------- /src/Models/Stubs/Document/STUB_MSDocumentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/STUB_MSDocumentFile.h -------------------------------------------------------------------------------- /src/Models/Stubs/Document/STUB_MSDocumentFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Document/STUB_MSDocumentFile.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/STUB_MSLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/STUB_MSLayer.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/STUB_MSLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/STUB_MSLayer.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Shapes/STUB_MSImmutableShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Shapes/STUB_MSImmutableShapeGroup.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Shapes/STUB_MSImmutableShapeGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Shapes/STUB_MSImmutableShapeGroup.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Shapes/STUB_MSShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Shapes/STUB_MSShapeGroup.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Shapes/STUB_MSShapeGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Shapes/STUB_MSShapeGroup.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Shapes/STUB_MSShapePathLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Shapes/STUB_MSShapePathLayer.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Shapes/STUB_MSShapePathLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Shapes/STUB_MSShapePathLayer.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSColor.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSColor.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyle.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyle.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyleBasicFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyleBasicFill.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyleBasicFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyleBasicFill.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyleBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyleBorder.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyleBorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyleBorder.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyleFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyleFill.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStyleFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStyleFill.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStylePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStylePart.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStylePart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStylePart.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStylePartCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStylePartCollection.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Style/STUB_MSStylePartCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Style/STUB_MSStylePartCollection.m -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Text/STUB_MSTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Text/STUB_MSTextLayer.h -------------------------------------------------------------------------------- /src/Models/Stubs/Layers/Text/STUB_MSTextLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Layers/Text/STUB_MSTextLayer.m -------------------------------------------------------------------------------- /src/Models/Stubs/Root/STUBObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Root/STUBObject.h -------------------------------------------------------------------------------- /src/Models/Stubs/Root/STUBObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Root/STUBObject.m -------------------------------------------------------------------------------- /src/Models/Stubs/Shapes/STUB_MSCurvePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Shapes/STUB_MSCurvePoint.h -------------------------------------------------------------------------------- /src/Models/Stubs/Shapes/STUB_MSCurvePoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Shapes/STUB_MSCurvePoint.m -------------------------------------------------------------------------------- /src/Models/Stubs/Shapes/STUB_MSShapePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Shapes/STUB_MSShapePath.h -------------------------------------------------------------------------------- /src/Models/Stubs/Shapes/STUB_MSShapePath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/Models/Stubs/Shapes/STUB_MSShapePath.m -------------------------------------------------------------------------------- /src/SketchKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/SketchKit.h -------------------------------------------------------------------------------- /src/SketchKitPrefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoatesOSS/SketchKit/HEAD/src/SketchKitPrefix.pch --------------------------------------------------------------------------------