├── .gitattributes ├── README.md ├── bin ├── XW-d.dll ├── XW-d.vc140.dll ├── XW.dll └── XW.vc140.dll ├── demo ├── README.md ├── XW.demo.gif ├── XW.duo.7z ├── XW.mono.7z ├── XWQ RealTimeSpeedUp V2.7z ├── XWQ RealTimeSpeedUp.7z ├── XWQ.demo.gif └── testing.txt ├── doc ├── CAAnimation.md ├── CALayer.md ├── CARootLayer.md ├── CATextLayer.md ├── CGAffineTransform.md ├── CGContext.md ├── CGContextPolicy.md ├── NSAutoReleasePool.md ├── NSDispatcher.md ├── NSObject.md ├── __autoreleasing.md ├── __strong.md ├── __weak.md ├── changelog.md └── changelogs │ ├── changelog0816.md │ ├── changelog0831.md │ ├── changelog0914.md │ ├── changelog0916.md │ ├── changelog0918.md │ └── changelog1004.md ├── include ├── CAAnimation.h ├── CALayer.h ├── CARootLayer.h ├── CATextLayer.h ├── CGAffineTransform.h ├── CGBase.h ├── CGColor.h ├── CGContext+Func.h ├── CGContext.h ├── CGGradient.h ├── CoreGraphics.h ├── NSArray.h ├── NSAutoreleasePool.h ├── NSDispatcher.h ├── NSObject.h ├── NSObjectCoreRuntime.h ├── NSObjectRuntime.h ├── NSRange.h ├── NSString.h ├── UIImage.h ├── XWExport.h ├── ZXOC2CPP.h ├── class_id.h └── helper.h ├── lib ├── XW-d.lib ├── XW-d.vc140.lib ├── XW.lib └── XW.vc140.lib ├── ndk-build-libevent.zip ├── ocni.zip ├── sample ├── AboutDlg.h ├── CARootLayer.cpp ├── CARootLayer.h ├── CATestLayer.cpp ├── CATestLayer.h ├── CATipsPanelLayer.cpp ├── CATipsPanelLayer.h ├── MainFrm.h ├── XW.cpp ├── XW.h ├── XW.rc ├── XW.vcproj ├── XWView.h ├── XWViewFoundation.h ├── readme.md ├── res │ ├── XW.ico │ └── toolbar.bmp ├── resource.h ├── stdafx.cpp └── stdafx.h └── test.sqlite.in-memory.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/README.md -------------------------------------------------------------------------------- /bin/XW-d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/bin/XW-d.dll -------------------------------------------------------------------------------- /bin/XW-d.vc140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/bin/XW-d.vc140.dll -------------------------------------------------------------------------------- /bin/XW.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/bin/XW.dll -------------------------------------------------------------------------------- /bin/XW.vc140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/bin/XW.vc140.dll -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/XW.demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/XW.demo.gif -------------------------------------------------------------------------------- /demo/XW.duo.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/XW.duo.7z -------------------------------------------------------------------------------- /demo/XW.mono.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/XW.mono.7z -------------------------------------------------------------------------------- /demo/XWQ RealTimeSpeedUp V2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/XWQ RealTimeSpeedUp V2.7z -------------------------------------------------------------------------------- /demo/XWQ RealTimeSpeedUp.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/XWQ RealTimeSpeedUp.7z -------------------------------------------------------------------------------- /demo/XWQ.demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/XWQ.demo.gif -------------------------------------------------------------------------------- /demo/testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/demo/testing.txt -------------------------------------------------------------------------------- /doc/CAAnimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CAAnimation.md -------------------------------------------------------------------------------- /doc/CALayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CALayer.md -------------------------------------------------------------------------------- /doc/CARootLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CARootLayer.md -------------------------------------------------------------------------------- /doc/CATextLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CATextLayer.md -------------------------------------------------------------------------------- /doc/CGAffineTransform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CGAffineTransform.md -------------------------------------------------------------------------------- /doc/CGContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CGContext.md -------------------------------------------------------------------------------- /doc/CGContextPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/CGContextPolicy.md -------------------------------------------------------------------------------- /doc/NSAutoReleasePool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/NSAutoReleasePool.md -------------------------------------------------------------------------------- /doc/NSDispatcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/NSDispatcher.md -------------------------------------------------------------------------------- /doc/NSObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/NSObject.md -------------------------------------------------------------------------------- /doc/__autoreleasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/__autoreleasing.md -------------------------------------------------------------------------------- /doc/__strong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/__strong.md -------------------------------------------------------------------------------- /doc/__weak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/__weak.md -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/changelogs/changelog0816.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelogs/changelog0816.md -------------------------------------------------------------------------------- /doc/changelogs/changelog0831.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelogs/changelog0831.md -------------------------------------------------------------------------------- /doc/changelogs/changelog0914.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelogs/changelog0914.md -------------------------------------------------------------------------------- /doc/changelogs/changelog0916.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelogs/changelog0916.md -------------------------------------------------------------------------------- /doc/changelogs/changelog0918.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelogs/changelog0918.md -------------------------------------------------------------------------------- /doc/changelogs/changelog1004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/doc/changelogs/changelog1004.md -------------------------------------------------------------------------------- /include/CAAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CAAnimation.h -------------------------------------------------------------------------------- /include/CALayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CALayer.h -------------------------------------------------------------------------------- /include/CARootLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CARootLayer.h -------------------------------------------------------------------------------- /include/CATextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CATextLayer.h -------------------------------------------------------------------------------- /include/CGAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CGAffineTransform.h -------------------------------------------------------------------------------- /include/CGBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CGBase.h -------------------------------------------------------------------------------- /include/CGColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CGColor.h -------------------------------------------------------------------------------- /include/CGContext+Func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CGContext+Func.h -------------------------------------------------------------------------------- /include/CGContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CGContext.h -------------------------------------------------------------------------------- /include/CGGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CGGradient.h -------------------------------------------------------------------------------- /include/CoreGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/CoreGraphics.h -------------------------------------------------------------------------------- /include/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSArray.h -------------------------------------------------------------------------------- /include/NSAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSAutoreleasePool.h -------------------------------------------------------------------------------- /include/NSDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSDispatcher.h -------------------------------------------------------------------------------- /include/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSObject.h -------------------------------------------------------------------------------- /include/NSObjectCoreRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSObjectCoreRuntime.h -------------------------------------------------------------------------------- /include/NSObjectRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSObjectRuntime.h -------------------------------------------------------------------------------- /include/NSRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSRange.h -------------------------------------------------------------------------------- /include/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/NSString.h -------------------------------------------------------------------------------- /include/UIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/UIImage.h -------------------------------------------------------------------------------- /include/XWExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/XWExport.h -------------------------------------------------------------------------------- /include/ZXOC2CPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/ZXOC2CPP.h -------------------------------------------------------------------------------- /include/class_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/class_id.h -------------------------------------------------------------------------------- /include/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/include/helper.h -------------------------------------------------------------------------------- /lib/XW-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/lib/XW-d.lib -------------------------------------------------------------------------------- /lib/XW-d.vc140.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/lib/XW-d.vc140.lib -------------------------------------------------------------------------------- /lib/XW.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/lib/XW.lib -------------------------------------------------------------------------------- /lib/XW.vc140.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/lib/XW.vc140.lib -------------------------------------------------------------------------------- /ndk-build-libevent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/ndk-build-libevent.zip -------------------------------------------------------------------------------- /ocni.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/ocni.zip -------------------------------------------------------------------------------- /sample/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/AboutDlg.h -------------------------------------------------------------------------------- /sample/CARootLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/CARootLayer.cpp -------------------------------------------------------------------------------- /sample/CARootLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/CARootLayer.h -------------------------------------------------------------------------------- /sample/CATestLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/CATestLayer.cpp -------------------------------------------------------------------------------- /sample/CATestLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/CATestLayer.h -------------------------------------------------------------------------------- /sample/CATipsPanelLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/CATipsPanelLayer.cpp -------------------------------------------------------------------------------- /sample/CATipsPanelLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/CATipsPanelLayer.h -------------------------------------------------------------------------------- /sample/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/MainFrm.h -------------------------------------------------------------------------------- /sample/XW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/XW.cpp -------------------------------------------------------------------------------- /sample/XW.h: -------------------------------------------------------------------------------- 1 | // XW.h 2 | -------------------------------------------------------------------------------- /sample/XW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/XW.rc -------------------------------------------------------------------------------- /sample/XW.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/XW.vcproj -------------------------------------------------------------------------------- /sample/XWView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/XWView.h -------------------------------------------------------------------------------- /sample/XWViewFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/XWViewFoundation.h -------------------------------------------------------------------------------- /sample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/readme.md -------------------------------------------------------------------------------- /sample/res/XW.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/res/XW.ico -------------------------------------------------------------------------------- /sample/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/res/toolbar.bmp -------------------------------------------------------------------------------- /sample/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/resource.h -------------------------------------------------------------------------------- /sample/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/stdafx.cpp -------------------------------------------------------------------------------- /sample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/sample/stdafx.h -------------------------------------------------------------------------------- /test.sqlite.in-memory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbqz007/xw/HEAD/test.sqlite.in-memory.zip --------------------------------------------------------------------------------