├── .gitignore ├── CCCalc.plist ├── CCCalcUI ├── CCCalcBrain.h ├── CCCalcBrain.m ├── CCCalcButton.h ├── CCCalcButtons.h ├── CCCalcDisplayView.h ├── CCCalcDisplayView.m ├── CCCalcFunction.h ├── CCCalcFunction.m ├── CCCalcPage.h ├── CCCalcPage.m ├── CCCalcScrollView.h ├── CCCalcScrollView.m ├── CCCalcUI.h └── CCCalcViewController.h ├── Makefile ├── README.md ├── Resources ├── back.png ├── cosine.png ├── cube.png ├── cuberoot.png ├── eulersnumber.png ├── exponential.png ├── inversecosine.png ├── inversesine.png ├── inversetangent.png ├── ln.png ├── logarithm.png ├── multiply.png ├── naturallogarithm.png ├── pi.png ├── plus-minus.png ├── reciprocal.png ├── sine.png ├── square.png ├── squareroot.png ├── tangent.png └── tenraisedtox.png ├── Tweak.h ├── Tweak.xm ├── control └── packages └── com.gilesgc.cccalc_1.2.1_iphoneos-arm.deb /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | .theos -------------------------------------------------------------------------------- /CCCalc.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalc.plist -------------------------------------------------------------------------------- /CCCalcUI/CCCalcBrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcBrain.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcBrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcBrain.m -------------------------------------------------------------------------------- /CCCalcUI/CCCalcButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcButton.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcButtons.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcDisplayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcDisplayView.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcDisplayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcDisplayView.m -------------------------------------------------------------------------------- /CCCalcUI/CCCalcFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcFunction.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcFunction.m -------------------------------------------------------------------------------- /CCCalcUI/CCCalcPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcPage.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcPage.m -------------------------------------------------------------------------------- /CCCalcUI/CCCalcScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcScrollView.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcScrollView.m -------------------------------------------------------------------------------- /CCCalcUI/CCCalcUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcUI.h -------------------------------------------------------------------------------- /CCCalcUI/CCCalcViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/CCCalcUI/CCCalcViewController.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/README.md -------------------------------------------------------------------------------- /Resources/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/back.png -------------------------------------------------------------------------------- /Resources/cosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/cosine.png -------------------------------------------------------------------------------- /Resources/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/cube.png -------------------------------------------------------------------------------- /Resources/cuberoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/cuberoot.png -------------------------------------------------------------------------------- /Resources/eulersnumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/eulersnumber.png -------------------------------------------------------------------------------- /Resources/exponential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/exponential.png -------------------------------------------------------------------------------- /Resources/inversecosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/inversecosine.png -------------------------------------------------------------------------------- /Resources/inversesine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/inversesine.png -------------------------------------------------------------------------------- /Resources/inversetangent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/inversetangent.png -------------------------------------------------------------------------------- /Resources/ln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/ln.png -------------------------------------------------------------------------------- /Resources/logarithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/logarithm.png -------------------------------------------------------------------------------- /Resources/multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/multiply.png -------------------------------------------------------------------------------- /Resources/naturallogarithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/naturallogarithm.png -------------------------------------------------------------------------------- /Resources/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/pi.png -------------------------------------------------------------------------------- /Resources/plus-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/plus-minus.png -------------------------------------------------------------------------------- /Resources/reciprocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/reciprocal.png -------------------------------------------------------------------------------- /Resources/sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/sine.png -------------------------------------------------------------------------------- /Resources/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/square.png -------------------------------------------------------------------------------- /Resources/squareroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/squareroot.png -------------------------------------------------------------------------------- /Resources/tangent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/tangent.png -------------------------------------------------------------------------------- /Resources/tenraisedtox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Resources/tenraisedtox.png -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/control -------------------------------------------------------------------------------- /packages/com.gilesgc.cccalc_1.2.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilesgc/CCCalc/HEAD/packages/com.gilesgc.cccalc_1.2.1_iphoneos-arm.deb --------------------------------------------------------------------------------