├── .DS_Store ├── .gitignore ├── .project ├── .settings └── com.aptana.editor.common.prefs ├── Barcode.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── Barcode.xccheckout │ └── xcuserdata │ │ ├── mfogg.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── sebastian.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ ├── mfogg.xcuserdatad │ └── xcschemes │ │ ├── Barcode.xcscheme │ │ ├── Build & Test.xcscheme │ │ └── xcschememanagement.plist │ └── sebastian.xcuserdatad │ └── xcschemes │ ├── Barcode.xcscheme │ ├── Build & Test.xcscheme │ └── xcschememanagement.plist ├── CHANGELOG.txt ├── Classes ├── .gitignore ├── ComMfoggBarcodeModule.h ├── ComMfoggBarcodeModule.m ├── ComMfoggBarcodeModuleAssets.h ├── ComMfoggBarcodeModuleAssets.m ├── ComMfoggBarcodeView.h ├── ComMfoggBarcodeView.m ├── ComMfoggBarcodeViewProxy.h └── ComMfoggBarcodeViewProxy.m ├── ComMfoggBarcode_Prefix.pch ├── LICENSE ├── LICENSE.txt ├── README.md ├── ZBarSDK ├── .DS_Store ├── Headers │ ├── .DS_Store │ ├── ZBarCameraSimulator.h │ ├── ZBarCaptureReader.h │ ├── ZBarHelpController.h │ ├── ZBarImage.h │ ├── ZBarImageScanner.h │ ├── ZBarReaderController.h │ ├── ZBarReaderView.h │ ├── ZBarReaderViewController.h │ ├── ZBarSDK.h │ ├── ZBarSymbol.h │ ├── zbar.h │ └── zbar │ │ ├── Decoder.h │ │ ├── Exception.h │ │ ├── Image.h │ │ ├── ImageScanner.h │ │ ├── Processor.h │ │ ├── Scanner.h │ │ ├── Symbol.h │ │ ├── Video.h │ │ └── Window.h └── libzbar.a ├── assets └── README ├── dist ├── com.mfogg.barcode-iphone-0.3.zip └── com.mfogg.barcode-iphone-0.4.zip ├── documentation └── index.md ├── example └── app.js ├── hooks ├── README ├── add.py ├── install.py ├── remove.py └── uninstall.py ├── manifest ├── module.xcconfig ├── platform └── README ├── timodule.xml └── titanium.xcconfig /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/.project -------------------------------------------------------------------------------- /.settings/com.aptana.editor.common.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/.settings/com.aptana.editor.common.prefs -------------------------------------------------------------------------------- /Barcode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Barcode.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Barcode.xcodeproj/project.xcworkspace/xcshareddata/Barcode.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/project.xcworkspace/xcshareddata/Barcode.xccheckout -------------------------------------------------------------------------------- /Barcode.xcodeproj/project.xcworkspace/xcuserdata/mfogg.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/project.xcworkspace/xcuserdata/mfogg.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Barcode.xcodeproj/project.xcworkspace/xcuserdata/sebastian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/project.xcworkspace/xcuserdata/sebastian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Barcode.xcodeproj/project.xcworkspace/xcuserdata/sebastian.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/project.xcworkspace/xcuserdata/sebastian.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Barcode.xcodeproj/xcuserdata/mfogg.xcuserdatad/xcschemes/Barcode.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/xcuserdata/mfogg.xcuserdatad/xcschemes/Barcode.xcscheme -------------------------------------------------------------------------------- /Barcode.xcodeproj/xcuserdata/mfogg.xcuserdatad/xcschemes/Build & Test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/xcuserdata/mfogg.xcuserdatad/xcschemes/Build & Test.xcscheme -------------------------------------------------------------------------------- /Barcode.xcodeproj/xcuserdata/mfogg.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/xcuserdata/mfogg.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Barcode.xcodeproj/xcuserdata/sebastian.xcuserdatad/xcschemes/Barcode.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/xcuserdata/sebastian.xcuserdatad/xcschemes/Barcode.xcscheme -------------------------------------------------------------------------------- /Barcode.xcodeproj/xcuserdata/sebastian.xcuserdatad/xcschemes/Build & Test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/xcuserdata/sebastian.xcuserdatad/xcschemes/Build & Test.xcscheme -------------------------------------------------------------------------------- /Barcode.xcodeproj/xcuserdata/sebastian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Barcode.xcodeproj/xcuserdata/sebastian.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Classes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/.gitignore -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeModule.h -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeModule.m -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeModuleAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeModuleAssets.h -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeModuleAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeModuleAssets.m -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeView.h -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeView.m -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeViewProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeViewProxy.h -------------------------------------------------------------------------------- /Classes/ComMfoggBarcodeViewProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/Classes/ComMfoggBarcodeViewProxy.m -------------------------------------------------------------------------------- /ComMfoggBarcode_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ComMfoggBarcode_Prefix.pch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/README.md -------------------------------------------------------------------------------- /ZBarSDK/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/.DS_Store -------------------------------------------------------------------------------- /ZBarSDK/Headers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/.DS_Store -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarCameraSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarCameraSimulator.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarCaptureReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarCaptureReader.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarHelpController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarHelpController.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarImage.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarImageScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarImageScanner.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarReaderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarReaderController.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarReaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarReaderView.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarReaderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarReaderViewController.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarSDK.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/ZBarSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/ZBarSymbol.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Decoder.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Exception.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Image.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/ImageScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/ImageScanner.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Processor.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Scanner.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Symbol.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Video.h -------------------------------------------------------------------------------- /ZBarSDK/Headers/zbar/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/Headers/zbar/Window.h -------------------------------------------------------------------------------- /ZBarSDK/libzbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/ZBarSDK/libzbar.a -------------------------------------------------------------------------------- /assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/assets/README -------------------------------------------------------------------------------- /dist/com.mfogg.barcode-iphone-0.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/dist/com.mfogg.barcode-iphone-0.3.zip -------------------------------------------------------------------------------- /dist/com.mfogg.barcode-iphone-0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/dist/com.mfogg.barcode-iphone-0.4.zip -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/example/app.js -------------------------------------------------------------------------------- /hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/hooks/README -------------------------------------------------------------------------------- /hooks/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/hooks/add.py -------------------------------------------------------------------------------- /hooks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/hooks/install.py -------------------------------------------------------------------------------- /hooks/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/hooks/remove.py -------------------------------------------------------------------------------- /hooks/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/hooks/uninstall.py -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/manifest -------------------------------------------------------------------------------- /module.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/module.xcconfig -------------------------------------------------------------------------------- /platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/platform/README -------------------------------------------------------------------------------- /timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/timodule.xml -------------------------------------------------------------------------------- /titanium.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikefogg/BarcodeView/HEAD/titanium.xcconfig --------------------------------------------------------------------------------