├── .gitignore ├── .gitmodules ├── Demos └── QCDemos │ ├── QCDemos.xcodeproj │ └── project.pbxproj │ └── QCDemos │ ├── Compositions │ ├── AudioTest.qtz │ ├── Bouncing.qtz │ ├── ImageWithString.qtz │ ├── IteratorTest.qtz │ ├── JavascriptTest.plist │ ├── JavascriptTest.qtz │ ├── JavascriptTestSimple.qtz │ ├── RotateScroll.qtz │ ├── ToggleSmooth.qtz │ ├── TransformTest.qtz │ ├── iMessenger Concept.qtz │ └── lfo-test.qtz │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── JKAppDelegate.h │ ├── JKAppDelegate.m │ ├── JKCompositionViewController.h │ ├── JKCompositionViewController.m │ ├── JKMasterViewController.h │ ├── JKMasterViewController.m │ ├── QCDemos-Info.plist │ ├── QCDemos-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard │ └── main.m ├── ImplementationStatus.md ├── LICENSE ├── README.md ├── Screenshot.jpg └── Source ├── JKComposition.h ├── JKComposition.m ├── JKCompositionPrivate.h ├── JKConnection.h ├── JKConnection.m ├── JKContext.h ├── JKContextUtil.h ├── JKContextUtil.m ├── JKQCView.h ├── JKQCView.m ├── Patches ├── JKBillboard.h ├── JKBillboard.m ├── JKCamera.h ├── JKCamera.m ├── JKClear.h ├── JKClear.m ├── JKClock.h ├── JKClock.m ├── JKColorFromComponents.h ├── JKColorFromComponents.m ├── JKConditional.h ├── JKConditional.m ├── JKCounter.h ├── JKCounter.m ├── JKExpression.h ├── JKExpression.m ├── JKGradient.h ├── JKGradient.m ├── JKImageDimensions.h ├── JKImageDimensions.m ├── JKImageFilter.h ├── JKImageFilter.m ├── JKImageLoader.h ├── JKImageLoader.m ├── JKInterpolation.h ├── JKInterpolation.m ├── JKIterator.h ├── JKIterator.m ├── JKIteratorVariables.h ├── JKIteratorVariables.m ├── JKJavaScript.h ├── JKJavaScript.m ├── JKLFO.h ├── JKLFO.m ├── JKLogic.h ├── JKLogic.m ├── JKMath.h ├── JKMath.m ├── JKMouseInteraction.h ├── JKMouseInteraction.m ├── JKMultiplexer.h ├── JKMultiplexer.m ├── JKPatch.h ├── JKPatch.m ├── JKPhysics.h ├── JKPhysics.m ├── JKRecursor.h ├── JKRecursor.m ├── JKScreenInfo.h ├── JKScreenInfo.m ├── JKSmooth.h ├── JKSmooth.m ├── JKSplitter.h ├── JKSplitter.m ├── JKSprite.h ├── JKSprite.m ├── JKStructureCount.h ├── JKStructureCount.m ├── JKStructureMember.h ├── JKStructureMember.m ├── JKTextImage.h ├── JKTextImage.m ├── JKUnimplementedPatch.h ├── JKUnimplementedPatch.m ├── JKVideoInput.h └── JKVideoInput.m ├── Util ├── NSArray+JKFiltering.h ├── NSArray+JKFiltering.m ├── NSString+LowercaseFirst.h └── NSString+LowercaseFirst.m └── Values ├── JKImage.h ├── JKImage.m ├── JKImageCoreProvider.h ├── JKImageCoreProvider.m ├── JKImageDataProvider.h ├── JKImageDataProvider.m └── JKImageProvider.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/.gitmodules -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/AudioTest.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/AudioTest.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/Bouncing.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/Bouncing.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/ImageWithString.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/ImageWithString.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/IteratorTest.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/IteratorTest.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/JavascriptTest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/JavascriptTest.plist -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/JavascriptTest.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/JavascriptTest.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/JavascriptTestSimple.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/JavascriptTestSimple.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/RotateScroll.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/RotateScroll.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/ToggleSmooth.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/ToggleSmooth.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/TransformTest.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/TransformTest.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/iMessenger Concept.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/iMessenger Concept.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Compositions/lfo-test.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Compositions/lfo-test.qtz -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Default-568h@2x.png -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Default.png -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/Default@2x.png -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/JKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/JKAppDelegate.h -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/JKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/JKAppDelegate.m -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/JKCompositionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/JKCompositionViewController.h -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/JKCompositionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/JKCompositionViewController.m -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/JKMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/JKMasterViewController.h -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/JKMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/JKMasterViewController.m -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/QCDemos-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/QCDemos-Info.plist -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/QCDemos-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/QCDemos-Prefix.pch -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Demos/QCDemos/QCDemos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Demos/QCDemos/QCDemos/main.m -------------------------------------------------------------------------------- /ImplementationStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/ImplementationStatus.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Screenshot.jpg -------------------------------------------------------------------------------- /Source/JKComposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKComposition.h -------------------------------------------------------------------------------- /Source/JKComposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKComposition.m -------------------------------------------------------------------------------- /Source/JKCompositionPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKCompositionPrivate.h -------------------------------------------------------------------------------- /Source/JKConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKConnection.h -------------------------------------------------------------------------------- /Source/JKConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKConnection.m -------------------------------------------------------------------------------- /Source/JKContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKContext.h -------------------------------------------------------------------------------- /Source/JKContextUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKContextUtil.h -------------------------------------------------------------------------------- /Source/JKContextUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKContextUtil.m -------------------------------------------------------------------------------- /Source/JKQCView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKQCView.h -------------------------------------------------------------------------------- /Source/JKQCView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/JKQCView.m -------------------------------------------------------------------------------- /Source/Patches/JKBillboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKBillboard.h -------------------------------------------------------------------------------- /Source/Patches/JKBillboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKBillboard.m -------------------------------------------------------------------------------- /Source/Patches/JKCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKCamera.h -------------------------------------------------------------------------------- /Source/Patches/JKCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKCamera.m -------------------------------------------------------------------------------- /Source/Patches/JKClear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKClear.h -------------------------------------------------------------------------------- /Source/Patches/JKClear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKClear.m -------------------------------------------------------------------------------- /Source/Patches/JKClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKClock.h -------------------------------------------------------------------------------- /Source/Patches/JKClock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKClock.m -------------------------------------------------------------------------------- /Source/Patches/JKColorFromComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKColorFromComponents.h -------------------------------------------------------------------------------- /Source/Patches/JKColorFromComponents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKColorFromComponents.m -------------------------------------------------------------------------------- /Source/Patches/JKConditional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKConditional.h -------------------------------------------------------------------------------- /Source/Patches/JKConditional.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKConditional.m -------------------------------------------------------------------------------- /Source/Patches/JKCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKCounter.h -------------------------------------------------------------------------------- /Source/Patches/JKCounter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKCounter.m -------------------------------------------------------------------------------- /Source/Patches/JKExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKExpression.h -------------------------------------------------------------------------------- /Source/Patches/JKExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKExpression.m -------------------------------------------------------------------------------- /Source/Patches/JKGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKGradient.h -------------------------------------------------------------------------------- /Source/Patches/JKGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKGradient.m -------------------------------------------------------------------------------- /Source/Patches/JKImageDimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKImageDimensions.h -------------------------------------------------------------------------------- /Source/Patches/JKImageDimensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKImageDimensions.m -------------------------------------------------------------------------------- /Source/Patches/JKImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKImageFilter.h -------------------------------------------------------------------------------- /Source/Patches/JKImageFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKImageFilter.m -------------------------------------------------------------------------------- /Source/Patches/JKImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKImageLoader.h -------------------------------------------------------------------------------- /Source/Patches/JKImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKImageLoader.m -------------------------------------------------------------------------------- /Source/Patches/JKInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKInterpolation.h -------------------------------------------------------------------------------- /Source/Patches/JKInterpolation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKInterpolation.m -------------------------------------------------------------------------------- /Source/Patches/JKIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKIterator.h -------------------------------------------------------------------------------- /Source/Patches/JKIterator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKIterator.m -------------------------------------------------------------------------------- /Source/Patches/JKIteratorVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKIteratorVariables.h -------------------------------------------------------------------------------- /Source/Patches/JKIteratorVariables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKIteratorVariables.m -------------------------------------------------------------------------------- /Source/Patches/JKJavaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKJavaScript.h -------------------------------------------------------------------------------- /Source/Patches/JKJavaScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKJavaScript.m -------------------------------------------------------------------------------- /Source/Patches/JKLFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKLFO.h -------------------------------------------------------------------------------- /Source/Patches/JKLFO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKLFO.m -------------------------------------------------------------------------------- /Source/Patches/JKLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKLogic.h -------------------------------------------------------------------------------- /Source/Patches/JKLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKLogic.m -------------------------------------------------------------------------------- /Source/Patches/JKMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKMath.h -------------------------------------------------------------------------------- /Source/Patches/JKMath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKMath.m -------------------------------------------------------------------------------- /Source/Patches/JKMouseInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKMouseInteraction.h -------------------------------------------------------------------------------- /Source/Patches/JKMouseInteraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKMouseInteraction.m -------------------------------------------------------------------------------- /Source/Patches/JKMultiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKMultiplexer.h -------------------------------------------------------------------------------- /Source/Patches/JKMultiplexer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKMultiplexer.m -------------------------------------------------------------------------------- /Source/Patches/JKPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKPatch.h -------------------------------------------------------------------------------- /Source/Patches/JKPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKPatch.m -------------------------------------------------------------------------------- /Source/Patches/JKPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKPhysics.h -------------------------------------------------------------------------------- /Source/Patches/JKPhysics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKPhysics.m -------------------------------------------------------------------------------- /Source/Patches/JKRecursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKRecursor.h -------------------------------------------------------------------------------- /Source/Patches/JKRecursor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKRecursor.m -------------------------------------------------------------------------------- /Source/Patches/JKScreenInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKScreenInfo.h -------------------------------------------------------------------------------- /Source/Patches/JKScreenInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKScreenInfo.m -------------------------------------------------------------------------------- /Source/Patches/JKSmooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKSmooth.h -------------------------------------------------------------------------------- /Source/Patches/JKSmooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKSmooth.m -------------------------------------------------------------------------------- /Source/Patches/JKSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKSplitter.h -------------------------------------------------------------------------------- /Source/Patches/JKSplitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKSplitter.m -------------------------------------------------------------------------------- /Source/Patches/JKSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKSprite.h -------------------------------------------------------------------------------- /Source/Patches/JKSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKSprite.m -------------------------------------------------------------------------------- /Source/Patches/JKStructureCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKStructureCount.h -------------------------------------------------------------------------------- /Source/Patches/JKStructureCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKStructureCount.m -------------------------------------------------------------------------------- /Source/Patches/JKStructureMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKStructureMember.h -------------------------------------------------------------------------------- /Source/Patches/JKStructureMember.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKStructureMember.m -------------------------------------------------------------------------------- /Source/Patches/JKTextImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKTextImage.h -------------------------------------------------------------------------------- /Source/Patches/JKTextImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKTextImage.m -------------------------------------------------------------------------------- /Source/Patches/JKUnimplementedPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKUnimplementedPatch.h -------------------------------------------------------------------------------- /Source/Patches/JKUnimplementedPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKUnimplementedPatch.m -------------------------------------------------------------------------------- /Source/Patches/JKVideoInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKVideoInput.h -------------------------------------------------------------------------------- /Source/Patches/JKVideoInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Patches/JKVideoInput.m -------------------------------------------------------------------------------- /Source/Util/NSArray+JKFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Util/NSArray+JKFiltering.h -------------------------------------------------------------------------------- /Source/Util/NSArray+JKFiltering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Util/NSArray+JKFiltering.m -------------------------------------------------------------------------------- /Source/Util/NSString+LowercaseFirst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Util/NSString+LowercaseFirst.h -------------------------------------------------------------------------------- /Source/Util/NSString+LowercaseFirst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Util/NSString+LowercaseFirst.m -------------------------------------------------------------------------------- /Source/Values/JKImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImage.h -------------------------------------------------------------------------------- /Source/Values/JKImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImage.m -------------------------------------------------------------------------------- /Source/Values/JKImageCoreProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImageCoreProvider.h -------------------------------------------------------------------------------- /Source/Values/JKImageCoreProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImageCoreProvider.m -------------------------------------------------------------------------------- /Source/Values/JKImageDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImageDataProvider.h -------------------------------------------------------------------------------- /Source/Values/JKImageDataProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImageDataProvider.m -------------------------------------------------------------------------------- /Source/Values/JKImageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kluivers/qc-mobile/HEAD/Source/Values/JKImageProvider.h --------------------------------------------------------------------------------